{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/37OTJLgmc8ZiKDmvfmbO/8CvGavGKOaDWW21at8fD/mSWM2gwDI.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import NavigationNavigation from\"#framer/local/canvasComponent/ix9pn5Gsn/ix9pn5Gsn.js\";import ButtonsTextLink from\"#framer/local/canvasComponent/krcLY0eGH/krcLY0eGH.js\";import ProjectProjectThumbnail from\"#framer/local/canvasComponent/lpSBFFJJA/lpSBFFJJA.js\";import FooterFooter from\"#framer/local/canvasComponent/oewhQuPw4/oewhQuPw4.js\";import BlogBlogItem from\"#framer/local/canvasComponent/pfhz7waBu/pfhz7waBu.js\";import ButtonsButtonPrimary from\"#framer/local/canvasComponent/SaXVWGpZp/SaXVWGpZp.js\";import Blog from\"#framer/local/collection/ajpW3RDtm/ajpW3RDtm.js\";import Works from\"#framer/local/collection/ZPxiZ9t6y/ZPxiZ9t6y.js\";import*as sharedStyle5 from\"#framer/local/css/awEeXZjmw/awEeXZjmw.js\";import*as sharedStyle from\"#framer/local/css/Bj70EX_tk/Bj70EX_tk.js\";import*as sharedStyle3 from\"#framer/local/css/D6UTxwC91/D6UTxwC91.js\";import*as sharedStyle4 from\"#framer/local/css/DGETOLP3v/DGETOLP3v.js\";import*as sharedStyle2 from\"#framer/local/css/HcsM_gy1X/HcsM_gy1X.js\";import*as sharedStyle1 from\"#framer/local/css/MS8b1juRc/MS8b1juRc.js\";import metadataProvider from\"#framer/local/webPageMetadata/mSWM2gwDI/mSWM2gwDI.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const VideoFonts=getFonts(Video);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsButtonPrimaryFonts=getFonts(ButtonsButtonPrimary);const ProjectProjectThumbnailFonts=getFonts(ProjectProjectThumbnail);const ButtonsTextLinkFonts=getFonts(ButtonsTextLink);const RichTextWithFX=withFX(RichText);const BlogBlogItemFonts=getFonts(BlogBlogItem);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={D5wlZneJb:\"(max-width: 809px)\",R70mOL7pM:\"(min-width: 810px) and (max-width: 1199px)\",tVzu9opKG:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ul7FZ\";const variantClassNames={D5wlZneJb:\"framer-v-n8qp3r\",R70mOL7pM:\"framer-v-1ls7utu\",tVzu9opKG:\"framer-v-22x4x1\"};const transition1={delay:.7,duration:1.8,ease:[.25,1,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transition2={delay:.2,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:.2,duration:1.5,ease:[.25,1,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition4={delay:.4,duration:1.5,ease:[.25,1,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:1,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition6={delay:0,duration:1.5,ease:[.25,1,.5,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition7={delay:.1,duration:1.5,ease:[.25,1,.5,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:.3,duration:2,ease:[.25,1,.5,1],type:\"tween\"};const transition9={delay:.4,duration:2,ease:[.25,1,.5,1],type:\"tween\"};const transition10={delay:.3,duration:1.5,ease:[.25,1,.5,1],type:\"tween\"};const transition11={delay:.5,duration:2,ease:[.25,1,.5,1],type:\"tween\"};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tVzu9opKG\",Phone:\"D5wlZneJb\",Tablet:\"R70mOL7pM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tVzu9opKG\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,sHZPaJXfrlJheOiNff,N78BlVPNDlJheOiNff,BD7rbcWgLlJheOiNff,x3raI20RelJheOiNff,a3spYSJHRlJheOiNff,idlJheOiNff,pgABsoEktBRiGmcdjh,B_RTOfIMZBRiGmcdjh,bvNpENgkpBRiGmcdjh,q62g1bwOSBRiGmcdjh,idBRiGmcdjh,pgABsoEktF5LIdyqlo,B_RTOfIMZF5LIdyqlo,bvNpENgkpF5LIdyqlo,q62g1bwOSF5LIdyqlo,idF5LIdyqlo,pgABsoEktmrCwKH31b,B_RTOfIMZmrCwKH31b,bvNpENgkpmrCwKH31b,q62g1bwOSmrCwKH31b,idmrCwKH31b,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"D5wlZneJb\")return false;return true;};const ref2=React.useRef(null);const elementId=useRouteElementId(\"nmG0wi7fO\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"D5wlZneJb\")return true;return false;};const ref3=React.useRef(null);const elementId1=useRouteElementId(\"NZyrYXg33\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"AL29L6PqS\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"hDeJVAVHm\");const ref6=React.useRef(null);const elementId4=useRouteElementId(\"AhuDhE76U\");const ref7=React.useRef(null);const elementId5=useRouteElementId(\"v4_HWmP2X\");const ref8=React.useRef(null);const elementId6=useRouteElementId(\"jK5YlGaeG\");const ref9=React.useRef(null);const elementId7=useRouteElementId(\"L_y8h46Po\");const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tVzu9opKG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-22x4x1\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fefipg\",\"data-framer-name\":\"Nav Blending\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:855,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1tsogh6-container\",\"data-framer-appear-id\":\"1tsogh6\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{variant:\"CltwZi5VQ\"},R70mOL7pM:{variant:\"DGFG4Nb5_\"}},children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"BxDbgrZ9z\",layoutId:\"BxDbgrZ9z\",style:{width:\"100%\"},variant:\"oc4jQ881V\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-q98pzm\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1w9r653\",\"data-framer-name\":\"Section Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c9argh\",\"data-framer-name\":\"Content Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4trz3\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-f47eut\",\"data-framer-name\":\"Video Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-jibvgs-container\",\"data-framer-appear-id\":\"jibvgs\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,controls:false,height:\"100%\",id:\"hU0bFF9jC\",isMixedBorderRadius:false,layoutId:\"hU0bFF9jC\",loop:true,muted:true,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/hrtQKDjCGhafdhN5cQXru4C56O0.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rN36vFIWk0NdkSKDU1TW4hJXc.mp4\",srcType:\"URL\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:5,topRightRadius:5,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8sxok3\",\"data-framer-name\":\"CTA Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipd25h\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12osuu5\",\"data-framer-name\":\"H1 Wrapper\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17vm4ku\",\"data-styles-preset\":\"Bj70EX_tk\",children:\"Hi, thanks for dropping by!\"})}),className:\"framer-1ygwn84\",\"data-framer-appear-id\":\"1ygwn84\",\"data-framer-name\":\"Digital designer from Toronto\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11zp95t\",\"data-styles-preset\":\"MS8b1juRc\",children:\"I'm Kenzie, a curious product designer fascinated with the perception and interaction of humans and technology.\"})}),className:\"framer-1vroxe0\",\"data-framer-appear-id\":\"1vroxe0\",\"data-framer-name\":\"As a design director, Luca is responsible for leading and managing a team of designers,\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"g9xuD5gcz\"},implicitPathVariables:undefined},{href:{webPageId:\"g9xuD5gcz\"},implicitPathVariables:undefined},{href:{webPageId:\"g9xuD5gcz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-q19yvl-container\",\"data-framer-appear-id\":\"q19yvl\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{jUWIFqIzr:resolvedLinks[2]},R70mOL7pM:{jUWIFqIzr:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{BWEB9wnd_:\"rgba(255, 255, 255, 0.1)\",G_h10bDM3:\"rgb(255, 255, 255)\",height:\"100%\",id:\"DfxPopymb\",jUWIFqIzr:resolvedLinks[0],kLkPcyY_g:\"Get in touch\",layoutId:\"DfxPopymb\",WfhBhRFJr:false,width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy7chf\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14bk5mh\",\"data-framer-name\":\"Left Column\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-153togz\",\"data-framer-name\":\"Right Column\"})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18f34rw\",\"data-framer-name\":\"Section Featured Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ey5hbk\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6z77u\",\"data-framer-name\":\"Title Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18e9tcl\",\"data-styles-preset\":\"HcsM_gy1X\",children:\"Featured work\"})}),className:\"framer-5hwxoa\",\"data-framer-name\":\"Featured Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l43mu\",\"data-framer-name\":\"Year Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11zp95t\",\"data-styles-preset\":\"MS8b1juRc\",children:\"2023 - 2025\"})}),className:\"framer-a3ltv4\",\"data-framer-name\":\"2018 - 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zbfj3n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lJheOiNff\",data:Works,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"lJheOiNff\",name:\"pPfmJp_jL\",type:\"Identifier\"}],select:[{collection:\"lJheOiNff\",name:\"sHZPaJXfr\",type:\"Identifier\"},{collection:\"lJheOiNff\",name:\"N78BlVPND\",type:\"Identifier\"},{collection:\"lJheOiNff\",name:\"BD7rbcWgL\",type:\"Identifier\"},{collection:\"lJheOiNff\",name:\"x3raI20Re\",type:\"Identifier\"},{collection:\"lJheOiNff\",name:\"a3spYSJHR\",type:\"Identifier\"},{collection:\"lJheOiNff\",name:\"id\",type:\"Identifier\"}],where:{collection:\"lJheOiNff\",name:\"Zg6y78mAQ\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({a3spYSJHR:a3spYSJHRlJheOiNff,BD7rbcWgL:BD7rbcWgLlJheOiNff,id:idlJheOiNff,N78BlVPND:N78BlVPNDlJheOiNff,sHZPaJXfr:sHZPaJXfrlJheOiNff,x3raI20Re:x3raI20RelJheOiNff},index)=>{sHZPaJXfrlJheOiNff??=\"\";N78BlVPNDlJheOiNff??=\"\";BD7rbcWgLlJheOiNff??=\"\";x3raI20RelJheOiNff??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lJheOiNff-${idlJheOiNff}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{sHZPaJXfr:sHZPaJXfrlJheOiNff},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{sHZPaJXfr:sHZPaJXfrlJheOiNff},webPageId:\"lePmW1JI3\"},nodeId:\"CPzD1zZFh\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-zs4zrl framer-u64xem\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sbvdn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{variant:\"vLCtxv20Z\"},R70mOL7pM:{variant:\"vLCtxv20Z\"}},children:/*#__PURE__*/_jsx(ProjectProjectThumbnail,{height:\"100%\",id:\"nzt0I0BNS\",layoutId:\"nzt0I0BNS\",sector:x3raI20RelJheOiNff,style:{height:\"100%\",width:\"100%\"},thumbnailPortrait:toResponsiveImage(a3spYSJHRlJheOiNff),title:N78BlVPNDlJheOiNff,type:BD7rbcWgLlJheOiNff,variant:\"ENRovQZq2\",width:\"100%\"})})})})})})})},idlJheOiNff);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15k2ssp\",\"data-framer-name\":\"Bottom Row\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"crs7BF5yA\"},implicitPathVariables:undefined},{href:{webPageId:\"crs7BF5yA\"},implicitPathVariables:undefined},{href:{webPageId:\"crs7BF5yA\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b9fv29-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{AWMROUMKi:resolvedLinks1[2]},R70mOL7pM:{AWMROUMKi:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsTextLink,{aJOoNlok7:\"View Work\",AWMROUMKi:resolvedLinks1[0],biieZQG3Y:false,height:\"100%\",id:\"F_AcFtWHK\",jpQfRPY5z:\"rgb(0, 0, 0)\",layoutId:\"F_AcFtWHK\",style:{height:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v0e0za\",\"data-framer-name\":\"Section Strategy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epnp3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gkltl\",\"data-framer-name\":\"Top Row\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tzydye hidden-n8qp3r\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-110vb6h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R70mOL7pM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19xdc39\",\"data-styles-preset\":\"D6UTxwC91\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I believe alignment is the bedrock of creating meaningful, intuitive experiences.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19xdc39\",\"data-styles-preset\":\"D6UTxwC91\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"            I believe alignment is the bedrock of creating meaningful, intuitive experiences.\"})}),className:\"framer-1rfb1uw\",\"data-framer-name\":\"Purpose driven, strategy-led design solutions for brands that people care about.\",fonts:[\"Inter\"],id:elementId,ref:ref2,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xy5vqr\"})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owix7u hidden-22x4x1 hidden-1ls7utu\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-binnos\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17vm4ku\",\"data-styles-preset\":\"Bj70EX_tk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I believe alignment is the bedrock of creating  meaningful, intuitive experiences.\"})}),className:\"framer-1j379nh\",\"data-framer-name\":\"Purpose driven, strategy-led design solutions for brands that people care about.\",fonts:[\"Inter\"],id:elementId1,ref:ref3,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n1uxc7\",\"data-framer-name\":\"Bottom Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yg6kqo\",\"data-framer-name\":\"Message Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5e9lto\",\"data-framer-name\":\"Message 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nkfdmb\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mnb3kc\",\"data-styles-preset\":\"DGETOLP3v\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deep listening\"})}),className:\"framer-2n7jkz\",\"data-framer-name\":\"(1) Strategy\",fonts:[\"Inter\"],id:elementId2,ref:ref4,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jn6bel\",\"data-styles-preset\":\"awEeXZjmw\",children:\"Whether running discovery workshops, user research, or stakeholder meetings, I strive to hear both what is said and what is left unsaid. By tuning into subtle cues, I uncover hidden patterns that lead to more thoughtful, user-focused solutions.\"})}),className:\"framer-kk5gc\",\"data-framer-name\":\"When it comes to mobile design, I understand the unique challenges that come with designing for small screens and touch-based interactions. I strive to create interfaces that are intuitive and easy to navigate, and I pay close attention to the latest design trends and best practices.\",fonts:[\"Inter\"],id:elementId3,ref:ref5,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ehgvk\",\"data-framer-name\":\"Message 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rc5920\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mnb3kc\",\"data-styles-preset\":\"DGETOLP3v\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Relentless curiosity\"})}),className:\"framer-mv8u5k\",\"data-framer-name\":\"(1) Strategy\",fonts:[\"Inter\"],id:elementId4,ref:ref6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jn6bel\",\"data-styles-preset\":\"awEeXZjmw\",children:\"I am an avid learner driven by an unyielding desire to explore, experiment, and grow. From adopting new tools to studying emerging technology trends, I\u2019m always refining my skills and striving to ask better questions.\"})}),className:\"framer-1syxws0\",\"data-framer-name\":\"When it comes to mobile design, I understand the unique challenges that come with designing for small screens and touch-based interactions. I strive to create interfaces that are intuitive and easy to navigate, and I pay close attention to the latest design trends and best practices.\",fonts:[\"Inter\"],id:elementId5,ref:ref7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x31xpl\",\"data-framer-name\":\"Message 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a4h84j\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mnb3kc\",\"data-styles-preset\":\"DGETOLP3v\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Powerful storytelling\"})}),className:\"framer-4ahpln\",\"data-framer-name\":\"(1) Strategy\",fonts:[\"Inter\"],id:elementId6,ref:ref8,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jn6bel\",\"data-styles-preset\":\"awEeXZjmw\",children:\"Through years of leading workshops and shaping product visions, I've honed my ability to craft narratives that bring teams together. I weave brand values and user insights into compelling stories that inspire collaboration around a shared purpose.\"})}),className:\"framer-n46k6t\",\"data-framer-name\":\"When it comes to mobile design, I understand the unique challenges that come with designing for small screens and touch-based interactions. I strive to create interfaces that are intuitive and easy to navigate, and I pay close attention to the latest design trends and best practices.\",fonts:[\"Inter\"],id:elementId7,ref:ref9,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-m7m8y5\",\"data-framer-name\":\"Section Blog\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wifch7\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14idf6q\",\"data-framer-name\":\"Title Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18e9tcl\",\"data-styles-preset\":\"HcsM_gy1X\",children:\"Some thoughts on tech\"})}),className:\"framer-43qmzi\",\"data-framer-name\":\"Featured Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11zp95t\",\"data-styles-preset\":\"MS8b1juRc\",children:\"Articles\"})}),className:\"framer-95nnnc\",\"data-framer-name\":\"Blog\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yiktx2\",\"data-framer-name\":\"Blog Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eztnys\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BRiGmcdjh\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"BRiGmcdjh\",name:\"pgABsoEkt\",type:\"Identifier\"},{collection:\"BRiGmcdjh\",name:\"B_RTOfIMZ\",type:\"Identifier\"},{collection:\"BRiGmcdjh\",name:\"bvNpENgkp\",type:\"Identifier\"},{collection:\"BRiGmcdjh\",name:\"q62g1bwOS\",type:\"Identifier\"},{collection:\"BRiGmcdjh\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BRiGmcdjh\",name:\"oCCH88CEt\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:1},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({B_RTOfIMZ:B_RTOfIMZBRiGmcdjh,bvNpENgkp:bvNpENgkpBRiGmcdjh,id:idBRiGmcdjh,pgABsoEkt:pgABsoEktBRiGmcdjh,q62g1bwOS:q62g1bwOSBRiGmcdjh},index1)=>{B_RTOfIMZBRiGmcdjh??=\"\";bvNpENgkpBRiGmcdjh??=\"\";q62g1bwOSBRiGmcdjh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BRiGmcdjh-${idBRiGmcdjh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q62g1bwOS:q62g1bwOSBRiGmcdjh},children:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/design-bootcamp/8-guidelines-for-designing-ai-products-31d41abd4a91\",nodeId:\"vNEXum1yM\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-5rzkyh framer-u64xem\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},R70mOL7pM:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1i5nukl-container\",\"data-framer-appear-id\":\"1i5nukl\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BlogBlogItem,{dDO0PXiDW:toResponsiveImage(pgABsoEktBRiGmcdjh),gU2U3flju:B_RTOfIMZBRiGmcdjh,height:\"100%\",id:\"Dru0EtRQL\",layoutId:\"Dru0EtRQL\",oHW28orVQ:\"rgb(0, 0, 0)\",SRAmdD4QM:bvNpENgkpBRiGmcdjh,style:{width:\"100%\"},variant:\"Mz_gj6O4w\",width:\"100%\"})})})})})})})},idBRiGmcdjh);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f06v98\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"F5LIdyqlo\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"F5LIdyqlo\",name:\"pgABsoEkt\",type:\"Identifier\"},{collection:\"F5LIdyqlo\",name:\"B_RTOfIMZ\",type:\"Identifier\"},{collection:\"F5LIdyqlo\",name:\"bvNpENgkp\",type:\"Identifier\"},{collection:\"F5LIdyqlo\",name:\"q62g1bwOS\",type:\"Identifier\"},{collection:\"F5LIdyqlo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"F5LIdyqlo\",name:\"oCCH88CEt\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:2},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({B_RTOfIMZ:B_RTOfIMZF5LIdyqlo,bvNpENgkp:bvNpENgkpF5LIdyqlo,id:idF5LIdyqlo,pgABsoEkt:pgABsoEktF5LIdyqlo,q62g1bwOS:q62g1bwOSF5LIdyqlo},index2)=>{B_RTOfIMZF5LIdyqlo??=\"\";bvNpENgkpF5LIdyqlo??=\"\";q62g1bwOSF5LIdyqlo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`F5LIdyqlo-${idF5LIdyqlo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q62g1bwOS:q62g1bwOSF5LIdyqlo},children:/*#__PURE__*/_jsx(Link,{href:\"https://open.substack.com/pub/kenzienicholson/p/a-look-in-the-mirror-can-humans-accurately?r=1qua6n&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false\",nodeId:\"imawZDgNU\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-193sf4e framer-u64xem\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},R70mOL7pM:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1vhcspq-container\",\"data-framer-appear-id\":\"1vhcspq\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BlogBlogItem,{dDO0PXiDW:toResponsiveImage(pgABsoEktF5LIdyqlo),gU2U3flju:B_RTOfIMZF5LIdyqlo,height:\"100%\",id:\"naRyn7BlP\",layoutId:\"naRyn7BlP\",oHW28orVQ:\"rgb(0, 0, 0)\",SRAmdD4QM:bvNpENgkpF5LIdyqlo,style:{width:\"100%\"},variant:\"lbYorRhve\",width:\"100%\"})})})})})})})},idF5LIdyqlo);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cxl4c5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mrCwKH31b\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"mrCwKH31b\",direction:\"desc\",name:\"IbLmdno2B\",type:\"Identifier\"}],select:[{collection:\"mrCwKH31b\",name:\"pgABsoEkt\",type:\"Identifier\"},{collection:\"mrCwKH31b\",name:\"B_RTOfIMZ\",type:\"Identifier\"},{collection:\"mrCwKH31b\",name:\"bvNpENgkp\",type:\"Identifier\"},{collection:\"mrCwKH31b\",name:\"q62g1bwOS\",type:\"Identifier\"},{collection:\"mrCwKH31b\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mrCwKH31b\",name:\"oCCH88CEt\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({B_RTOfIMZ:B_RTOfIMZmrCwKH31b,bvNpENgkp:bvNpENgkpmrCwKH31b,id:idmrCwKH31b,pgABsoEkt:pgABsoEktmrCwKH31b,q62g1bwOS:q62g1bwOSmrCwKH31b},index3)=>{B_RTOfIMZmrCwKH31b??=\"\";bvNpENgkpmrCwKH31b??=\"\";q62g1bwOSmrCwKH31b??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mrCwKH31b-${idmrCwKH31b}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q62g1bwOS:q62g1bwOSmrCwKH31b},children:/*#__PURE__*/_jsx(Link,{href:\"https://open.substack.com/pub/kenzienicholson/p/thinking-about-thinking-can-machines?r=1qua6n&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false\",nodeId:\"pfR_LV5TO\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-tmsiu0 framer-u64xem\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},R70mOL7pM:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1jvab0d-container\",\"data-framer-appear-id\":\"1jvab0d\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BlogBlogItem,{dDO0PXiDW:toResponsiveImage(pgABsoEktmrCwKH31b),gU2U3flju:B_RTOfIMZmrCwKH31b,height:\"100%\",id:\"UzpYzvTw5\",layoutId:\"UzpYzvTw5\",oHW28orVQ:\"rgb(0, 0, 0)\",SRAmdD4QM:bvNpENgkpmrCwKH31b,style:{width:\"100%\"},variant:\"mGxc6RJEu\",width:\"100%\"})})})})})})})},idmrCwKH31b);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11da682\",\"data-framer-name\":\"Bottom Row\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RIiRMRkFB\"},implicitPathVariables:undefined},{href:{webPageId:\"RIiRMRkFB\"},implicitPathVariables:undefined},{href:{webPageId:\"RIiRMRkFB\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e8fa45-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{AWMROUMKi:resolvedLinks2[2]},R70mOL7pM:{AWMROUMKi:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsTextLink,{aJOoNlok7:\"View All\",AWMROUMKi:resolvedLinks2[0],biieZQG3Y:false,height:\"100%\",id:\"FeVFxL8qm\",jpQfRPY5z:\"rgb(0, 0, 0)\",layoutId:\"FeVFxL8qm\",style:{height:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:582,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nb1nwt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D5wlZneJb:{variant:\"LQBKQJCG7\"},R70mOL7pM:{variant:\"WP88RlU1Z\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"oDONo6j0a\",layoutId:\"oDONo6j0a\",style:{width:\"100%\"},variant:\"CkMLYvwtk\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ojsg05\",\"data-framer-name\":\"Buy Template Module\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sipx3c\",\"data-framer-name\":\"Button Wrapper\"})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ul7FZ.framer-u64xem, .framer-ul7FZ .framer-u64xem { display: block; }\",\".framer-ul7FZ.framer-22x4x1 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ul7FZ .framer-1fefipg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; mix-blend-mode: difference; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-ul7FZ .framer-1tsogh6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 10; }\",\".framer-ul7FZ .framer-q98pzm { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-ul7FZ .framer-1w9r653 { align-content: flex-end; align-items: flex-end; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: visible; padding: 0px 40px 25px 40px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-ul7FZ .framer-1c9argh { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 50%; }\",\".framer-ul7FZ .framer-l4trz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 7px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-f47eut { align-content: center; align-items: center; aspect-ratio: 1.6253687315634218 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 246px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ul7FZ .framer-jibvgs-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-8sxok3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-ipd25h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-12osuu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ul7FZ .framer-1ygwn84, .framer-ul7FZ .framer-5hwxoa, .framer-ul7FZ .framer-a3ltv4, .framer-ul7FZ .framer-2n7jkz, .framer-ul7FZ .framer-mv8u5k, .framer-ul7FZ .framer-4ahpln, .framer-ul7FZ .framer-43qmzi, .framer-ul7FZ .framer-95nnnc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ul7FZ .framer-1vroxe0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-ul7FZ .framer-q19yvl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ul7FZ .framer-1sy7chf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 17px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-14bk5mh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 18px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-153togz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 18px; overflow: hidden; padding: 0px 0px 0px 15px; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-18f34rw { align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 40px 40px 100px 40px; position: relative; width: 100%; z-index: 5; }\",\".framer-ul7FZ .framer-1ey5hbk { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-h6z77u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ul7FZ .framer-l43mu { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-zbfj3n { display: grid; flex: none; gap: 15px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-zs4zrl { align-content: flex-start; align-items: flex-start; align-self: start; aspect-ratio: 0.8077777777777778 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 450px); justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-ul7FZ .framer-sbvdn-container { flex: none; height: 100%; position: relative; width: 100%; z-index: 1; }\",\".framer-ul7FZ .framer-15k2ssp, .framer-ul7FZ .framer-1n1uxc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-b9fv29-container, .framer-ul7FZ .framer-1e8fa45-container { flex: none; height: 17px; position: relative; width: auto; }\",\".framer-ul7FZ .framer-1v0e0za { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 5; }\",\".framer-ul7FZ .framer-1epnp3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-10gkltl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-tzydye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 948px; }\",\".framer-ul7FZ .framer-110vb6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-1rfb1uw { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ul7FZ .framer-1xy5vqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 45px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-1owix7u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-binnos { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-1j379nh, .framer-ul7FZ .framer-kk5gc, .framer-ul7FZ .framer-1syxws0, .framer-ul7FZ .framer-n46k6t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ul7FZ .framer-1yg6kqo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ul7FZ .framer-5e9lto, .framer-ul7FZ .framer-3ehgvk, .framer-ul7FZ .framer-1x31xpl { 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; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 270px; }\",\".framer-ul7FZ .framer-nkfdmb, .framer-ul7FZ .framer-a4h84j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ul7FZ .framer-1rc5920 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ul7FZ .framer-m7m8y5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 0px 40px; position: relative; width: 100%; z-index: 5; }\",\".framer-ul7FZ .framer-1wifch7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-14idf6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 667px; }\",\".framer-ul7FZ .framer-1yiktx2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-eztnys, .framer-ul7FZ .framer-1f06v98, .framer-ul7FZ .framer-1cxl4c5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-5rzkyh, .framer-ul7FZ .framer-193sf4e, .framer-ul7FZ .framer-tmsiu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-ul7FZ .framer-1i5nukl-container, .framer-ul7FZ .framer-1vhcspq-container, .framer-ul7FZ .framer-1jvab0d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ul7FZ .framer-11da682 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ul7FZ .framer-1nb1nwt-container { bottom: 0px; flex: none; height: auto; position: sticky; width: 100%; will-change: transform; z-index: 1; }\",\".framer-ul7FZ .framer-1ojsg05 { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: fixed; right: 0px; width: 100%; z-index: 10; }\",\".framer-ul7FZ .framer-1sipx3c { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ul7FZ.framer-22x4x1, .framer-ul7FZ .framer-1fefipg, .framer-ul7FZ .framer-q98pzm, .framer-ul7FZ .framer-1w9r653, .framer-ul7FZ .framer-1c9argh, .framer-ul7FZ .framer-l4trz3, .framer-ul7FZ .framer-f47eut, .framer-ul7FZ .framer-8sxok3, .framer-ul7FZ .framer-ipd25h, .framer-ul7FZ .framer-12osuu5, .framer-ul7FZ .framer-14bk5mh, .framer-ul7FZ .framer-18f34rw, .framer-ul7FZ .framer-1ey5hbk, .framer-ul7FZ .framer-h6z77u, .framer-ul7FZ .framer-l43mu, .framer-ul7FZ .framer-zs4zrl, .framer-ul7FZ .framer-15k2ssp, .framer-ul7FZ .framer-1v0e0za, .framer-ul7FZ .framer-1epnp3, .framer-ul7FZ .framer-10gkltl, .framer-ul7FZ .framer-tzydye, .framer-ul7FZ .framer-110vb6h, .framer-ul7FZ .framer-1xy5vqr, .framer-ul7FZ .framer-1owix7u, .framer-ul7FZ .framer-binnos, .framer-ul7FZ .framer-1n1uxc7, .framer-ul7FZ .framer-1yg6kqo, .framer-ul7FZ .framer-5e9lto, .framer-ul7FZ .framer-nkfdmb, .framer-ul7FZ .framer-3ehgvk, .framer-ul7FZ .framer-1rc5920, .framer-ul7FZ .framer-1x31xpl, .framer-ul7FZ .framer-a4h84j, .framer-ul7FZ .framer-m7m8y5, .framer-ul7FZ .framer-14idf6q, .framer-ul7FZ .framer-1yiktx2, .framer-ul7FZ .framer-eztnys, .framer-ul7FZ .framer-5rzkyh, .framer-ul7FZ .framer-1f06v98, .framer-ul7FZ .framer-193sf4e, .framer-ul7FZ .framer-1cxl4c5, .framer-ul7FZ .framer-tmsiu0, .framer-ul7FZ .framer-11da682, .framer-ul7FZ .framer-1ojsg05, .framer-ul7FZ .framer-1sipx3c { gap: 0px; } .framer-ul7FZ.framer-22x4x1 > *, .framer-ul7FZ .framer-q98pzm > *, .framer-ul7FZ .framer-1w9r653 > *, .framer-ul7FZ .framer-1c9argh > *, .framer-ul7FZ .framer-12osuu5 > *, .framer-ul7FZ .framer-binnos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ul7FZ.framer-22x4x1 > :first-child, .framer-ul7FZ .framer-q98pzm > :first-child, .framer-ul7FZ .framer-1w9r653 > :first-child, .framer-ul7FZ .framer-1c9argh > :first-child, .framer-ul7FZ .framer-l4trz3 > :first-child, .framer-ul7FZ .framer-8sxok3 > :first-child, .framer-ul7FZ .framer-ipd25h > :first-child, .framer-ul7FZ .framer-12osuu5 > :first-child, .framer-ul7FZ .framer-18f34rw > :first-child, .framer-ul7FZ .framer-1v0e0za > :first-child, .framer-ul7FZ .framer-1epnp3 > :first-child, .framer-ul7FZ .framer-tzydye > :first-child, .framer-ul7FZ .framer-1owix7u > :first-child, .framer-ul7FZ .framer-binnos > :first-child, .framer-ul7FZ .framer-5e9lto > :first-child, .framer-ul7FZ .framer-nkfdmb > :first-child, .framer-ul7FZ .framer-3ehgvk > :first-child, .framer-ul7FZ .framer-1x31xpl > :first-child, .framer-ul7FZ .framer-a4h84j > :first-child, .framer-ul7FZ .framer-m7m8y5 > :first-child, .framer-ul7FZ .framer-eztnys > :first-child, .framer-ul7FZ .framer-1f06v98 > :first-child, .framer-ul7FZ .framer-1cxl4c5 > :first-child, .framer-ul7FZ .framer-11da682 > :first-child { margin-top: 0px; } .framer-ul7FZ.framer-22x4x1 > :last-child, .framer-ul7FZ .framer-q98pzm > :last-child, .framer-ul7FZ .framer-1w9r653 > :last-child, .framer-ul7FZ .framer-1c9argh > :last-child, .framer-ul7FZ .framer-l4trz3 > :last-child, .framer-ul7FZ .framer-8sxok3 > :last-child, .framer-ul7FZ .framer-ipd25h > :last-child, .framer-ul7FZ .framer-12osuu5 > :last-child, .framer-ul7FZ .framer-18f34rw > :last-child, .framer-ul7FZ .framer-1v0e0za > :last-child, .framer-ul7FZ .framer-1epnp3 > :last-child, .framer-ul7FZ .framer-tzydye > :last-child, .framer-ul7FZ .framer-1owix7u > :last-child, .framer-ul7FZ .framer-binnos > :last-child, .framer-ul7FZ .framer-5e9lto > :last-child, .framer-ul7FZ .framer-nkfdmb > :last-child, .framer-ul7FZ .framer-3ehgvk > :last-child, .framer-ul7FZ .framer-1x31xpl > :last-child, .framer-ul7FZ .framer-a4h84j > :last-child, .framer-ul7FZ .framer-m7m8y5 > :last-child, .framer-ul7FZ .framer-eztnys > :last-child, .framer-ul7FZ .framer-1f06v98 > :last-child, .framer-ul7FZ .framer-1cxl4c5 > :last-child, .framer-ul7FZ .framer-11da682 > :last-child { margin-bottom: 0px; } .framer-ul7FZ .framer-1fefipg > *, .framer-ul7FZ .framer-f47eut > *, .framer-ul7FZ .framer-14bk5mh > *, .framer-ul7FZ .framer-l43mu > *, .framer-ul7FZ .framer-15k2ssp > *, .framer-ul7FZ .framer-10gkltl > *, .framer-ul7FZ .framer-1n1uxc7 > *, .framer-ul7FZ .framer-1rc5920 > *, .framer-ul7FZ .framer-1yiktx2 > *, .framer-ul7FZ .framer-1ojsg05 > *, .framer-ul7FZ .framer-1sipx3c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ul7FZ .framer-1fefipg > :first-child, .framer-ul7FZ .framer-f47eut > :first-child, .framer-ul7FZ .framer-14bk5mh > :first-child, .framer-ul7FZ .framer-1ey5hbk > :first-child, .framer-ul7FZ .framer-h6z77u > :first-child, .framer-ul7FZ .framer-l43mu > :first-child, .framer-ul7FZ .framer-zs4zrl > :first-child, .framer-ul7FZ .framer-15k2ssp > :first-child, .framer-ul7FZ .framer-10gkltl > :first-child, .framer-ul7FZ .framer-110vb6h > :first-child, .framer-ul7FZ .framer-1xy5vqr > :first-child, .framer-ul7FZ .framer-1n1uxc7 > :first-child, .framer-ul7FZ .framer-1yg6kqo > :first-child, .framer-ul7FZ .framer-1rc5920 > :first-child, .framer-ul7FZ .framer-14idf6q > :first-child, .framer-ul7FZ .framer-1yiktx2 > :first-child, .framer-ul7FZ .framer-5rzkyh > :first-child, .framer-ul7FZ .framer-193sf4e > :first-child, .framer-ul7FZ .framer-tmsiu0 > :first-child, .framer-ul7FZ .framer-1ojsg05 > :first-child, .framer-ul7FZ .framer-1sipx3c > :first-child { margin-left: 0px; } .framer-ul7FZ .framer-1fefipg > :last-child, .framer-ul7FZ .framer-f47eut > :last-child, .framer-ul7FZ .framer-14bk5mh > :last-child, .framer-ul7FZ .framer-1ey5hbk > :last-child, .framer-ul7FZ .framer-h6z77u > :last-child, .framer-ul7FZ .framer-l43mu > :last-child, .framer-ul7FZ .framer-zs4zrl > :last-child, .framer-ul7FZ .framer-15k2ssp > :last-child, .framer-ul7FZ .framer-10gkltl > :last-child, .framer-ul7FZ .framer-110vb6h > :last-child, .framer-ul7FZ .framer-1xy5vqr > :last-child, .framer-ul7FZ .framer-1n1uxc7 > :last-child, .framer-ul7FZ .framer-1yg6kqo > :last-child, .framer-ul7FZ .framer-1rc5920 > :last-child, .framer-ul7FZ .framer-14idf6q > :last-child, .framer-ul7FZ .framer-1yiktx2 > :last-child, .framer-ul7FZ .framer-5rzkyh > :last-child, .framer-ul7FZ .framer-193sf4e > :last-child, .framer-ul7FZ .framer-tmsiu0 > :last-child, .framer-ul7FZ .framer-1ojsg05 > :last-child, .framer-ul7FZ .framer-1sipx3c > :last-child { margin-right: 0px; } .framer-ul7FZ .framer-l4trz3 > *, .framer-ul7FZ .framer-8sxok3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ul7FZ .framer-ipd25h > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-ul7FZ .framer-18f34rw > *, .framer-ul7FZ .framer-1v0e0za > *, .framer-ul7FZ .framer-m7m8y5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ul7FZ .framer-1ey5hbk > *, .framer-ul7FZ .framer-5rzkyh > *, .framer-ul7FZ .framer-193sf4e > *, .framer-ul7FZ .framer-tmsiu0 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ul7FZ .framer-h6z77u > *, .framer-ul7FZ .framer-14idf6q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ul7FZ .framer-zs4zrl > *, .framer-ul7FZ .framer-110vb6h > *, .framer-ul7FZ .framer-1xy5vqr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ul7FZ .framer-1epnp3 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-ul7FZ .framer-tzydye > *, .framer-ul7FZ .framer-1owix7u > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-ul7FZ .framer-1yg6kqo > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-ul7FZ .framer-5e9lto > *, .framer-ul7FZ .framer-3ehgvk > *, .framer-ul7FZ .framer-1x31xpl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ul7FZ .framer-nkfdmb > *, .framer-ul7FZ .framer-a4h84j > *, .framer-ul7FZ .framer-11da682 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ul7FZ .framer-eztnys > *, .framer-ul7FZ .framer-1f06v98 > *, .framer-ul7FZ .framer-1cxl4c5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ul7FZ.framer-22x4x1 { width: 810px; } .framer-ul7FZ .framer-1fefipg { mix-blend-mode: unset; } .framer-ul7FZ .framer-q98pzm { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .framer-ul7FZ .framer-1w9r653 { padding: 0px 20px 25px 20px; } .framer-ul7FZ .framer-l4trz3, .framer-ul7FZ .framer-153togz { padding: 0px; } .framer-ul7FZ .framer-f47eut { aspect-ratio: unset; height: 246px; width: 100%; } .framer-ul7FZ .framer-1ygwn84 { white-space: pre-wrap; width: 273px; word-break: break-word; word-wrap: break-word; } .framer-ul7FZ .framer-1vroxe0 { width: 302px; } .framer-ul7FZ .framer-18f34rw { padding: 40px 20px 100px 20px; } .framer-ul7FZ .framer-zbfj3n { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-ul7FZ .framer-zs4zrl { aspect-ratio: 0.8388888888888889 / 1; } .framer-ul7FZ .framer-sbvdn-container { aspect-ratio: 0.8388888888888889 / 1; height: var(--framer-aspect-ratio-supported, 450px); } .framer-ul7FZ .framer-1v0e0za { padding: 100px 20px 100px 20px; } .framer-ul7FZ .framer-tzydye { flex: 1 0 0px; width: 1px; } .framer-ul7FZ .framer-1yg6kqo { flex: 1 0 0px; justify-content: flex-start; width: 1px; } .framer-ul7FZ .framer-5e9lto, .framer-ul7FZ .framer-3ehgvk, .framer-ul7FZ .framer-1x31xpl { flex: 1 0 0px; padding: 0px; width: 1px; } .framer-ul7FZ .framer-kk5gc, .framer-ul7FZ .framer-1syxws0, .framer-ul7FZ .framer-n46k6t { width: 80%; } .framer-ul7FZ .framer-m7m8y5 { padding: 100px 20px 0px 20px; }}\",\"@media (max-width: 809px) { .framer-ul7FZ.framer-22x4x1 { width: 390px; } .framer-ul7FZ .framer-1fefipg { mix-blend-mode: unset; } .framer-ul7FZ .framer-1w9r653 { padding: 0px 15px 25px 15px; } .framer-ul7FZ .framer-1c9argh, .framer-ul7FZ .framer-1vroxe0 { width: 100%; } .framer-ul7FZ .framer-l4trz3, .framer-ul7FZ .framer-153togz { padding: 0px; } .framer-ul7FZ .framer-f47eut { aspect-ratio: unset; height: 246px; width: 100%; } .framer-ul7FZ .framer-ipd25h { padding: 0px 70px 0px 0px; } .framer-ul7FZ .framer-1ygwn84 { white-space: pre-wrap; width: 273px; word-break: break-word; word-wrap: break-word; } .framer-ul7FZ .framer-14bk5mh { flex: 0.6 0 0px; } .framer-ul7FZ .framer-18f34rw { padding: 40px 15px 100px 15px; } .framer-ul7FZ .framer-1ey5hbk { gap: unset; justify-content: space-between; overflow: visible; } .framer-ul7FZ .framer-h6z77u { flex: 1 0 0px; justify-content: flex-start; overflow: visible; width: 1px; } .framer-ul7FZ .framer-5hwxoa, .framer-ul7FZ .framer-43qmzi { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-ul7FZ .framer-zbfj3n { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ul7FZ .framer-zs4zrl { aspect-ratio: 0.8 / 1; } .framer-ul7FZ .framer-sbvdn-container { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 450px); } .framer-ul7FZ .framer-1v0e0za { padding: 100px 15px 100px 15px; } .framer-ul7FZ .framer-1n1uxc7 { align-content: flex-end; align-items: flex-end; flex-direction: column; justify-content: flex-start; } .framer-ul7FZ .framer-1yg6kqo { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-ul7FZ .framer-5e9lto, .framer-ul7FZ .framer-3ehgvk, .framer-ul7FZ .framer-1x31xpl { gap: 15px; width: 320px; } .framer-ul7FZ .framer-m7m8y5 { padding: 40px 15px 0px 15px; } .framer-ul7FZ .framer-1wifch7 { overflow: visible; } .framer-ul7FZ .framer-14idf6q { overflow: visible; width: 225px; } .framer-ul7FZ .framer-1yiktx2 { flex-direction: column; gap: 40px; } .framer-ul7FZ .framer-eztnys, .framer-ul7FZ .framer-1f06v98, .framer-ul7FZ .framer-1cxl4c5 { flex: none; width: 100%; } .framer-ul7FZ .framer-1ojsg05 { flex-direction: column; } .framer-ul7FZ .framer-1sipx3c { bottom: 62px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ul7FZ .framer-1ey5hbk, .framer-ul7FZ .framer-1n1uxc7, .framer-ul7FZ .framer-1yg6kqo, .framer-ul7FZ .framer-5e9lto, .framer-ul7FZ .framer-3ehgvk, .framer-ul7FZ .framer-1x31xpl, .framer-ul7FZ .framer-1yiktx2, .framer-ul7FZ .framer-1ojsg05 { gap: 0px; } .framer-ul7FZ .framer-1ey5hbk > *, .framer-ul7FZ .framer-1ey5hbk > :first-child, .framer-ul7FZ .framer-1ey5hbk > :last-child { margin: 0px; } .framer-ul7FZ .framer-1n1uxc7 > *, .framer-ul7FZ .framer-1ojsg05 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ul7FZ .framer-1n1uxc7 > :first-child, .framer-ul7FZ .framer-1yg6kqo > :first-child, .framer-ul7FZ .framer-5e9lto > :first-child, .framer-ul7FZ .framer-3ehgvk > :first-child, .framer-ul7FZ .framer-1x31xpl > :first-child, .framer-ul7FZ .framer-1yiktx2 > :first-child, .framer-ul7FZ .framer-1ojsg05 > :first-child { margin-top: 0px; } .framer-ul7FZ .framer-1n1uxc7 > :last-child, .framer-ul7FZ .framer-1yg6kqo > :last-child, .framer-ul7FZ .framer-5e9lto > :last-child, .framer-ul7FZ .framer-3ehgvk > :last-child, .framer-ul7FZ .framer-1x31xpl > :last-child, .framer-ul7FZ .framer-1yiktx2 > :last-child, .framer-ul7FZ .framer-1ojsg05 > :last-child { margin-bottom: 0px; } .framer-ul7FZ .framer-1yg6kqo > *, .framer-ul7FZ .framer-1yiktx2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ul7FZ .framer-5e9lto > *, .framer-ul7FZ .framer-3ehgvk > *, .framer-ul7FZ .framer-1x31xpl > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3496.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R70mOL7pM\":{\"layout\":[\"fixed\",\"auto\"]},\"D5wlZneJb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nmG0wi7fO\":{\"pattern\":\":nmG0wi7fO\",\"name\":\"process-line-1\"},\"NZyrYXg33\":{\"pattern\":\":NZyrYXg33\",\"name\":\"process-line-1\"},\"AL29L6PqS\":{\"pattern\":\":AL29L6PqS\",\"name\":\"title-1\"},\"hDeJVAVHm\":{\"pattern\":\":hDeJVAVHm\",\"name\":\"strategy-paragraph\"},\"AhuDhE76U\":{\"pattern\":\":AhuDhE76U\",\"name\":\"title-2\"},\"v4_HWmP2X\":{\"pattern\":\":v4_HWmP2X\",\"name\":\"execution-paragraph\"},\"jK5YlGaeG\":{\"pattern\":\":jK5YlGaeG\",\"name\":\"title-3\"},\"L_y8h46Po\":{\"pattern\":\":L_y8h46Po\",\"name\":\"launch-paragraph\"}}\n * @framerResponsiveScreen\n */const FramermSWM2gwDI=withCSS(Component,css,\"framer-ul7FZ\");export default FramermSWM2gwDI;FramermSWM2gwDI.displayName=\"Home\";FramermSWM2gwDI.defaultProps={height:3496.5,width:1200};addFonts(FramermSWM2gwDI,[{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\"}]},...NavigationNavigationFonts,...VideoFonts,...ButtonsButtonPrimaryFonts,...ProjectProjectThumbnailFonts,...ButtonsTextLinkFonts,...BlogBlogItemFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermSWM2gwDI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R70mOL7pM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D5wlZneJb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"nmG0wi7fO\\\":{\\\"pattern\\\":\\\":nmG0wi7fO\\\",\\\"name\\\":\\\"process-line-1\\\"},\\\"NZyrYXg33\\\":{\\\"pattern\\\":\\\":NZyrYXg33\\\",\\\"name\\\":\\\"process-line-1\\\"},\\\"AL29L6PqS\\\":{\\\"pattern\\\":\\\":AL29L6PqS\\\",\\\"name\\\":\\\"title-1\\\"},\\\"hDeJVAVHm\\\":{\\\"pattern\\\":\\\":hDeJVAVHm\\\",\\\"name\\\":\\\"strategy-paragraph\\\"},\\\"AhuDhE76U\\\":{\\\"pattern\\\":\\\":AhuDhE76U\\\",\\\"name\\\":\\\"title-2\\\"},\\\"v4_HWmP2X\\\":{\\\"pattern\\\":\\\":v4_HWmP2X\\\",\\\"name\\\":\\\"execution-paragraph\\\"},\\\"jK5YlGaeG\\\":{\\\"pattern\\\":\\\":jK5YlGaeG\\\",\\\"name\\\":\\\"title-3\\\"},\\\"L_y8h46Po\\\":{\\\"pattern\\\":\\\":L_y8h46Po\\\",\\\"name\\\":\\\"launch-paragraph\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3496.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qyCACsE,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,IAAMC,GAAa,uEACtb,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,GAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAAC,IAAM5B,GAAuB6B,GAAK,SAAoB1C,EAAM,CAAC,GAAK,CACzO,QAAA2C,EAAQ,MAAM,OAAAC,EAAO,QAAAC,EAAQ,GAAG,cAAAC,EAAc,GAAM,SAAAX,EAAS,GAAM,QAAAY,EAAQ,GAAK,KAAAd,EAAK,GAAK,MAAAD,EAAM,GAAK,YAAAE,GAAY,GAAK,eAAAc,GAAe,GAAM,UAAAC,GAAU,QAAQ,gBAAAC,GAAgB,gBAAgB,OAAAC,GAAO,EAAE,OAAAC,GAAO,GAAG,UAAUC,GAAc,EAAE,OAAAC,EAAO,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,GAAS,QAAAC,GAAQ,OAAAC,GAAO,MAAAC,GAAM,QAAAC,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,EAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,EAASC,GAAmB,EAAQC,GAAiBhD,EAAO,IAAI,EAAQiD,GAAgBjD,EAAO,IAAI,EAAQkD,GAAWC,GAAc,EAAQC,GAAaC,GAAgB,EAAQC,EAAiBJ,IAAYE,KAAeG,GAAa,OAAaC,GAAaC,GAAU5E,CAAK,EAGtpB6E,EAAiBJ,EAAiB,cAAc3C,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,GAAY,SAAAC,CAAQ,CAAC,EAAQ2C,EAAaL,EAAiB,GAAKM,GAAUhE,CAAQ,EAAQiE,GAAkBP,EAAiB,GAAMM,GAAUhE,EAAS,CAAC,OAAO,MAAM,KAAK,EAAI,CAAC,EAC1QkE,EAAU5B,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAA3B,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAA6D,CAAS,EAAEpE,GAAoBC,CAAQ,EAC3HoE,EAAU,IAAI,CAAIV,GAA2BI,IAAmB,gBAAwB9C,EAAYL,EAAK,EAAOG,EAAM,EAAE,EAAE,CAACgD,EAAiB9C,CAAW,CAAC,EACxJoD,EAAU,IAAI,CAAIV,IACfK,GAAc/C,GAAa8C,IAAmB,eAAcnD,EAAK,EAAKmD,IAAmB,eAAqBhD,EAAM,EAAE,EAAE,CAACgD,EAAiBC,EAAa/C,CAAW,CAAC,EAAEoD,EAAU,IAAI,CAAI,CAACd,IAAYf,GAAQR,GAAemC,GAAW,CAAClE,EAAS,UACnPA,EAAS,QAAQ,YAAY,IAAI,EAAE,CAAC+B,EAAcQ,EAAO2B,CAAS,CAAC,EAO5D,IAAMG,EAAoCjE,EAAO,EAAK,EAE7DgE,EAAU,IAAI,CAAC,GAAG,CAACC,EAAoC,QAAQ,CAACA,EAAoC,QAAQ,GAAK,OAAQ,IAAMC,EAAiBC,GAAc/B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAAU,GAAG,IAAIlC,GAKxMgE,GAAkB,KAOlBJ,GAAW,GAAG,GAAG,CAAE,EAAE,CAACA,EAAUpC,EAAQD,EAAOW,CAAQ,CAAC,EACzD4B,EAAU,IAAI,CAAC,GAAIG,GAAc/B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAASgC,GAAOlE,EAAYkE,CAAK,CAAC,CAAE,EAAE,CAAChC,CAAQ,CAAC,EACrHiC,GAAW,IAAI,CAAIrB,GAAiB,UAAU,MAAepD,EAAS,UACnE,CAACqD,IAAiBnC,GAAM,CAACkC,GAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D+D,GAAU,IAAI,CAAI1E,EAAS,UAASqD,GAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,GAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAM6D,GAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGjD,IAAU,MAAM,OAAOC,EAAOgD,EAAS,GAAGjD,IAAU,SAAS,OAAOE,EAAQ+C,CAAS,EAAE,CAACjD,EAAQE,EAAQD,EAAOqC,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAIlB,GAAUlD,EAAS,SAAS8D,IAAmB,YAAY,WAAW,IAAInD,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GyD,EAAU,IAAI,CAAIpE,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQqC,IAAQ,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC7F,IAAMyC,GAAY,IAAI,CAAC,IAAMlE,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIsD,EAAU,GAAE5D,GAAa4D,GAAW,GAAG,GAAG,GACxIC,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,IAAapD,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAI0B,GAAI,KAAKzD,EAAK,IAAIlB,EAAS,SAASa,GAAG4B,KAAW5B,CAAC,EAAE,QAAQA,GAAG6B,KAAU7B,CAAC,EAAE,OAAOA,GAAG8B,KAAS9B,CAAC,EAAE,QAAQA,GAAG+B,KAAQ/B,CAAC,EAAE,SAASsD,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,EAAa,QAAQI,EAAU,QAAQ,OAAOT,GAAkB,CAACnB,EAAO,WAAWuB,IAAmB,YAAY,CAACG,GAAkB,OAC7jB,WAAW,OAAOlC,GAAe,CAACD,GAASD,IAAS9C,GAAa,sEAAsEgD,GAAeQ,EAAOA,EAAO,OAAU,aAAauC,GAAY,SAAS1D,EAAS,MAAMsC,EAAiB,GAAKzC,EAAM,YAAYE,GAAY,MAAM,CAAC,OAAS0B,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAU1B,GAAU,gBAAgBC,GAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,GAAM,YAAY,QAAQ,SAASoF,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA0E,OAA5DA,EAAM,MAAM,0CAA0C,GAAG,CAAC,GAAgB,IAAIO,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoBvF,GAAM,CAAC,QAAQ,CAAC,KAAKwF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,uEAAuE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,GAAGC,GAAoB,cAAc,CAAC,KAAKD,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,OAAO,CAAC,CAAC,cAAApD,CAAa,IAAI,CAACA,EAAc,YAAY,uHAAuH,EAAE,gBAAgB,CAAC,KAAKoD,EAAY,MAAM,MAAM,aAAa,aAAa,eAAe,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMx+D,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAlE,CAAK,IAAIA,EAAM,aAAa,EAAE,EAAE,MAAM,CAAC,KAAKkE,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,EC3E+yC,IAAMC,GAA0BC,EAASC,EAAoB,EAAQC,EAAmCC,GAA0BC,CAAS,EAAQC,GAAWL,EAASM,EAAK,EAAQC,GAAkCJ,GAA0BK,CAAQ,EAAQC,GAA0BT,EAASU,EAAoB,EAAQC,GAA6BX,EAASY,EAAuB,EAAQC,GAAqBb,EAASc,EAAe,EAAQC,EAAeC,GAAOR,CAAQ,EAAQS,GAAkBjB,EAASkB,EAAY,EAAQC,GAAkBnB,EAASoB,EAAY,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAU,CAAC,CAAC,MAAAjB,CAAK,IAAoBkB,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOnB,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUoB,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,CAAS,EAAEpC,GAASI,CAAK,EAAQiC,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAU9B,CAAY,EAAE,GAAG8B,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAU/B,CAAY,CAAC,EAAQgC,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAU9B,CAAY,EAAE,SAAS,MAAM8B,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAU9B,CAAY,CAAC,EAAE,GAAK,CAACiC,EAAYC,EAAmB,EAAEC,GAA8B7B,EAAQrD,GAAY,EAAK,EAAQmF,GAAe,OAAuLC,GAAkBC,GAAGnF,GAAkB,GAAxL,CAAaiD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQmC,EAAWC,EAAO,IAAI,EAAQC,GAAOC,GAAU,EAAQC,EAAY,IAASzF,GAAU,EAAiB+E,IAAc,YAAtB,GAAmEW,EAAWJ,EAAO,IAAI,EAAQK,GAAUC,EAAkB,WAAW,EAAQC,EAAa,IAAQ,CAAC7F,GAAU,GAAiB+E,IAAc,YAA6Ce,EAAWR,EAAO,IAAI,EAAQS,EAAWH,EAAkB,WAAW,EAAQI,EAAWV,EAAO,IAAI,EAAQW,EAAWL,EAAkB,WAAW,EAAQM,EAAWZ,EAAO,IAAI,EAAQa,GAAWP,EAAkB,WAAW,EAAQQ,GAAWd,EAAO,IAAI,EAAQe,EAAWT,EAAkB,WAAW,EAAQU,GAAWhB,EAAO,IAAI,EAAQiB,GAAWX,EAAkB,WAAW,EAAQY,GAAWlB,EAAO,IAAI,EAAQmB,GAAWb,EAAkB,WAAW,EAAQc,GAAWpB,EAAO,IAAI,EAAQqB,GAAWf,EAAkB,WAAW,EAAQgB,GAAsBC,GAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoB5E,EAAK6E,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA/G,EAAiB,EAAE,SAAsBgH,EAAMC,EAAY,CAAC,GAAGhE,GAAUyD,GAAgB,SAAS,CAAcxE,EAAKF,GAAU,CAAC,MAAM,yCAAyC,CAAC,EAAegF,EAAME,GAAO,IAAI,CAAC,GAAG1C,EAAU,UAAUU,GAAGD,GAAkB,gBAAgBjC,CAAS,EAAE,IAAIL,GAAKwC,EAAK,MAAM,CAAC,GAAGpC,CAAK,EAAE,SAAS,CAAcb,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAKiF,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAON,GAAmB,OAAO,gBAAgB,EAAE,EAAE,SAAsB3E,EAAKxD,EAAmC,CAAC,QAAQwB,GAAU,UAAU,2BAA2B,wBAAwB,UAAU,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+B,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB3C,EAAKzD,GAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuI,EAAM,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAsB8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAc9E,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAKiF,EAA0B,CAAC,SAAsBjF,EAAKxD,EAAmC,CAAC,QAAQ2B,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB4B,EAAKpD,GAAM,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,GAAM,OAAO,uEAAuE,cAAc,GAAK,QAAQ,qEAAqE,QAAQ,MAAM,OAAO,GAAG,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekI,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKnD,GAAkC,CAAC,sBAAsB,GAAK,QAAQyB,GAAW,SAAsB0B,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,gCAAgC,MAAM,CAAC,OAAO,EAAE,QAAQzB,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeyB,EAAKnD,GAAkC,CAAC,sBAAsB,GAAK,QAAQ4B,GAAW,SAAsBuB,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iHAAiH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,0FAA0F,MAAM,CAAC,OAAO,EAAE,QAAQzB,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKoF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BrF,EAAKiF,EAA0B,CAAC,OAAO,GAAG,SAAsBjF,EAAKxD,EAAmC,CAAC,QAAQmC,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQP,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB4B,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0C,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBrF,EAAKhD,GAAqB,CAAC,UAAU,2BAA2B,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAUqI,EAAc,CAAC,EAAE,UAAU,eAAe,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,4BAA4B,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAKlD,EAAS,CAAC,sBAAsB,GAAK,SAAsBkD,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,eAAe,SAAsBA,EAAKlD,EAAS,CAAC,sBAAsB,GAAK,SAAsBkD,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKsF,EAAmB,CAAC,SAAsBtF,EAAKlB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKyG,GAAM,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,QAAQ,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,KAAwB1F,EAAK2F,EAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAUnE,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUJ,EAAmB,UAAUD,EAAmB,UAAUG,CAAkB,EAAEwE,MAAS3E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBpB,EAAK+E,EAAY,CAAC,GAAG,aAAazD,IAAc,SAAsBtB,EAAK6F,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5E,CAAkB,EAAE,SAAsBjB,EAAK8F,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7E,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBjB,EAAK,IAAI,CAAC,UAAU,8BAA8B,SAAsBA,EAAKiF,EAA0B,CAAC,SAAsBjF,EAAKtD,EAAU,CAAC,UAAU,yBAAyB,SAAsBsD,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB3C,EAAK9C,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,OAAOkE,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkBxC,GAAkByC,CAAkB,EAAE,MAAMH,EAAmB,KAAKC,EAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEG,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKoF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6B/F,EAAKiF,EAA0B,CAAC,OAAO,GAAG,SAAsBjF,EAAKtD,EAAU,CAAC,UAAU,0BAA0B,SAAsBsD,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/F,EAAK5C,GAAgB,CAAC,UAAU,YAAY,UAAU2I,EAAe,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,eAAe,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/F,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAsB8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAACzB,EAAY,GAAgByB,EAAM,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,eAAe,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB3C,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,mFAAmF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWgC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtD,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,+FAA+F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mFAAmF,MAAM,CAAC,OAAO,EAAE,GAAGuD,GAAU,IAAID,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAa,GAAgBzD,EAAK,MAAM,CAAC,UAAU,8CAA8C,mBAAmB,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWgC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB1D,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,oFAAoF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mFAAmF,MAAM,CAAC,OAAO,EAAE,GAAG2D,EAAW,IAAID,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsB8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWkC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5D,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,GAAG6D,EAAW,IAAID,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5D,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWoC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB9D,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sPAAsP,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,+RAA+R,MAAM,CAAC,OAAO,EAAE,GAAG+D,GAAW,IAAID,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWgB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBiB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI0E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBhE,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,GAAGiE,EAAW,IAAID,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehE,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI0E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBlE,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gOAA2N,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+RAA+R,MAAM,CAAC,OAAO,EAAE,GAAGmE,GAAW,IAAID,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWsC,EAAY,EAAE,sBAAsB,GAAK,gBAAgBL,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI8E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBpE,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,GAAGqE,GAAW,IAAID,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepE,EAAK3C,EAAe,CAAC,kBAAkB,CAAC,WAAWuC,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI8E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtE,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yPAAyP,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+RAA+R,MAAM,CAAC,OAAO,EAAE,GAAGuE,GAAW,IAAID,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBA,EAAKlD,EAAS,CAAC,sBAAsB,GAAK,SAAsBkD,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKlD,EAAS,CAAC,sBAAsB,GAAK,SAAsBkD,EAAWmF,EAAS,CAAC,SAAsBnF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKsF,EAAmB,CAAC,SAAsBtF,EAAKlB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,KAAyBnG,EAAK2F,EAAU,CAAC,SAASM,GAAa,IAAI,CAAC,CAAC,UAAUzE,EAAmB,UAAUC,EAAmB,GAAGE,EAAY,UAAUJ,EAAmB,UAAUG,CAAkB,EAAE0E,KAAU5E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB1B,EAAK+E,EAAY,CAAC,GAAG,aAAapD,IAAc,SAAsB3B,EAAK6F,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUnE,CAAkB,EAAE,SAAsB1B,EAAK8F,EAAK,CAAC,KAAK,yFAAyF,OAAO,YAAY,aAAa,GAAK,SAAsB9F,EAAK,IAAI,CAAC,UAAU,8BAA8B,SAAsBA,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQgC,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,2BAA2B,CAAC,EAAE,SAAsB3E,EAAKiF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQN,GAAmB,OAAO,6BAA6B,SAAsB3E,EAAKxD,EAAmC,CAAC,QAAQiC,GAAW,UAAU,2BAA2B,wBAAwB,UAAU,QAAQoB,GAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBG,EAAKxC,GAAa,CAAC,UAAUoB,GAAkB2C,CAAkB,EAAE,UAAUC,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAUC,EAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKsF,EAAmB,CAAC,SAAsBtF,EAAKlB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACK,EAAYC,EAAgBC,KAAyBvG,EAAK2F,EAAU,CAAC,SAASU,GAAa,IAAI,CAAC,CAAC,UAAUxE,EAAmB,UAAUC,EAAmB,GAAGE,EAAY,UAAUJ,EAAmB,UAAUG,CAAkB,EAAEyE,KAAU3E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB/B,EAAK+E,EAAY,CAAC,GAAG,aAAa/C,IAAc,SAAsBhC,EAAK6F,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9D,CAAkB,EAAE,SAAsB/B,EAAK8F,EAAK,CAAC,KAAK,gKAAgK,OAAO,YAAY,aAAa,GAAK,SAAsB9F,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQgC,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,2BAA2B,CAAC,EAAE,SAAsB3E,EAAKiF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQN,GAAmB,OAAO,6BAA6B,SAAsB3E,EAAKxD,EAAmC,CAAC,QAAQiC,GAAW,UAAU,2BAA2B,wBAAwB,UAAU,QAAQoB,GAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBG,EAAKxC,GAAa,CAAC,UAAUoB,GAAkBgD,CAAkB,EAAE,UAAUC,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAUC,EAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKsF,EAAmB,CAAC,SAAsBtF,EAAKlB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,QAAQ,CAAC,CAAC,WAAW,YAAY,UAAU,OAAO,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACS,EAAYC,EAAgBC,KAAyB3G,EAAK2F,EAAU,CAAC,SAASc,GAAa,IAAI,CAAC,CAAC,UAAUvE,EAAmB,UAAUC,EAAmB,GAAGE,EAAY,UAAUJ,EAAmB,UAAUG,CAAkB,EAAEwE,KAAU1E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBpC,EAAK+E,EAAY,CAAC,GAAG,aAAa1C,IAAc,SAAsBrC,EAAK6F,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUzD,CAAkB,EAAE,SAAsBpC,EAAK8F,EAAK,CAAC,KAAK,0JAA0J,OAAO,YAAY,aAAa,GAAK,SAAsB9F,EAAK,IAAI,CAAC,UAAU,8BAA8B,SAAsBA,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQgC,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,2BAA2B,CAAC,EAAE,SAAsB3E,EAAKiF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQN,GAAmB,OAAO,6BAA6B,SAAsB3E,EAAKxD,EAAmC,CAAC,QAAQiC,GAAW,UAAU,2BAA2B,wBAAwB,UAAU,QAAQoB,GAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBG,EAAKxC,GAAa,CAAC,UAAUoB,GAAkBqD,CAAkB,EAAE,UAAUC,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAUC,EAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKoF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASyB,GAA6B7G,EAAKiF,EAA0B,CAAC,OAAO,GAAG,SAAsBjF,EAAKtD,EAAU,CAAC,UAAU,2BAA2B,SAAsBsD,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB7G,EAAK5C,GAAgB,CAAC,UAAU,WAAW,UAAUyJ,EAAe,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,eAAe,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7G,EAAKiF,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,SAAsB3E,EAAKtD,EAAU,CAAC,UAAU,2BAA2B,SAAsBsD,EAAKkF,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB3C,EAAKtC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8G,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,wUAAwU,wHAAwH,wYAAwY,sWAAsW,0RAA0R,uSAAuS,2gBAA2gB,wGAAwG,2RAA2R,0RAA0R,sRAAsR,mUAAmU,sKAAsK,wGAAwG,mQAAmQ,6SAA6S,0SAA0S,oYAAoY,iRAAiR,kRAAkR,mRAAmR,yPAAyP,wYAAwY,mHAAmH,8SAA8S,iJAAiJ,0UAA0U,qRAAqR,iRAAiR,mRAAmR,4QAA4Q,uKAAuK,8RAA8R,qRAAqR,0RAA0R,+PAA+P,+RAA+R,uWAAuW,oTAAoT,oRAAoR,uUAAuU,6QAA6Q,iRAAiR,qRAAqR,yUAAyU,gVAAgV,6LAA6L,gRAAgR,wJAAwJ,+SAA+S,gWAAgW,+/PAA+/P,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,k/CAAk/C,yxHAAyxH,EAW1++DC,GAAgBC,GAAQzG,GAAUuG,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,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,GAAG1K,GAA0B,GAAGM,GAAW,GAAGI,GAA0B,GAAGE,GAA6B,GAAGE,GAAqB,GAAGI,GAAkB,GAAGE,GAAkB,GAAG0J,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAChvE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,yBAA2B,QAAQ,uBAAyB,GAAG,oCAAsC,4JAA0L,qBAAuB,OAAO,qBAAuB,keAAkjB,6BAA+B,OAAO,sBAAwB,SAAS,4BAA8B,OAAO,sBAAwB,GAAG,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavigationNavigationFonts", "getFonts", "ix9pn5Gsn_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "VideoFonts", "Video", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsButtonPrimaryFonts", "SaXVWGpZp_default", "ProjectProjectThumbnailFonts", "lpSBFFJJA_default", "ButtonsTextLinkFonts", "krcLY0eGH_default", "RichTextWithFX", "withFX", "BlogBlogItemFonts", "pfhz7waBu_default", "FooterFooterFonts", "oewhQuPw4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation8", "transition6", "animation9", "transition7", "animation10", "transition8", "transition9", "transition10", "transition11", "animation11", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "sHZPaJXfrlJheOiNff", "N78BlVPNDlJheOiNff", "BD7rbcWgLlJheOiNff", "x3raI20RelJheOiNff", "a3spYSJHRlJheOiNff", "idlJheOiNff", "pgABsoEktBRiGmcdjh", "B_RTOfIMZBRiGmcdjh", "bvNpENgkpBRiGmcdjh", "q62g1bwOSBRiGmcdjh", "idBRiGmcdjh", "pgABsoEktF5LIdyqlo", "B_RTOfIMZF5LIdyqlo", "bvNpENgkpF5LIdyqlo", "q62g1bwOSF5LIdyqlo", "idF5LIdyqlo", "pgABsoEktmrCwKH31b", "B_RTOfIMZmrCwKH31b", "bvNpENgkpmrCwKH31b", "q62g1bwOSmrCwKH31b", "idmrCwKH31b", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "isDisplayed", "ref2", "elementId", "useRouteElementId", "isDisplayed1", "ref3", "elementId1", "ref4", "elementId2", "ref5", "elementId3", "ref6", "elementId4", "ref7", "elementId5", "ref8", "elementId6", "ref9", "elementId7", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "ZPxiZ9t6y_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks1", "ajpW3RDtm_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks2", "css", "FramermSWM2gwDI", "withCSS", "mSWM2gwDI_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
