{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/b7sx7ms7fKfEZC2TMez5/MgoVCbdTvVWC2fvquGFs/O9s2O5SeP.js", "ssg:https://framerusercontent.com/modules/hkrViMpg0fYeAhnpJZEU/wNEyqslqgXyZk28903KS/Counter.js", "ssg:https://framerusercontent.com/modules/x01Od5WMD9qAtnoTuvte/ti3TYw3ifwlIdrGnoiw1/UeNFeauCj.js", "ssg:https://framerusercontent.com/modules/4Qqb1DUeNb2Bs9COVWCK/BZeX56K58PHvIjZkrw0E/YlG7eJng5.js", "ssg:https://framerusercontent.com/modules/3SZN56FfSSm0hd9oa8fs/FLnCoCO0BZVPlGCYOMV1/ueiKkVaj3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (b5638f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lP0GmmncWHnlXLX5AUeV/A4R4OExsQ2yURIaOlc9F/QMuEq11PS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/d0EyIY5I3Oe97EzXo4MR/D1mNCT6jjlABJPG4JhuW/qvAaSoY3f.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={HHYRnW75y:{hover:true}};const cycleOrder=[\"xSgNKquG_\",\"HHYRnW75y\"];const serializationHash=\"framer-gvUYT\";const variantClassNames={HHYRnW75y:\"framer-v-me9d59\",xSgNKquG_:\"framer-v-fpfhnc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"HHYRnW75y\",Opened:\"xSgNKquG_\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,UkcAZJv33:answer??props.UkcAZJv33??\"You can book a session by filling out the contact form on my website or by emailing me directly at [your email address]. I'll get back to you within 24 hours to discuss the details and schedule your shoot.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xSgNKquG_\",zNMII1rLe:question??props.zNMII1rLe??\"How do I book a photography session with you?\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zNMII1rLe,UkcAZJv33,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xSgNKquG_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y831ta=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HHYRnW75y\");});const onTapbj66xi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xSgNKquG_\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fpfhnc\",className,classNames),\"data-framer-name\":\"Opened\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xSgNKquG_\",onTap:onTap1y831ta,ref:refBinding,style:{...style},...addPropertyOverrides({\"HHYRnW75y-hover\":{\"data-framer-name\":undefined},HHYRnW75y:{\"data-framer-name\":\"Closed\",onTap:onTapbj66xi}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hle671\",layoutDependency:layoutDependency,layoutId:\"m8BqbNrWZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"How do I book a photography session with you?\"})}),className:\"framer-1oleog1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tFFb7ja1n\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zNMII1rLe,variants:{\"HHYRnW75y-hover\":{\"--extracted-r6o4lv\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HHYRnW75y-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0)))\"},children:\"How do I book a photography session with you?\"})})},HHYRnW75y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"How do I book a photography session with you?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nl1hu5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iqJTg5nsD-container\",nodeId:\"iqJTg5nsD\",rendersWithMotion:true,scopeId:\"O9s2O5SeP\",style:{rotate:180},variants:{HHYRnW75y:{rotate:135}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"iqJTg5nsD\",layoutId:\"iqJTg5nsD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"HHYRnW75y-hover\":{color:\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wc5ob4\",layoutDependency:layoutDependency,layoutId:\"zyAO_dMRI\",style:{backgroundColor:\"var(--token-055027d1-13b9-4efb-b926-a81a963c990b, rgba(255, 255, 255, 0.3))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-at054j\",layoutDependency:layoutDependency,layoutId:\"CYmg4AXh_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"You can book a session by filling out the contact form on my website or by emailing me directly at [your email address]. I'll get back to you within 24 hours to discuss the details and schedule your shoot.\"})}),className:\"framer-uoe3jn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tAoadmQ7s\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:UkcAZJv33,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gvUYT.framer-1ufr18f, .framer-gvUYT .framer-1ufr18f { display: block; }\",\".framer-gvUYT.framer-fpfhnc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 800px; }\",\".framer-gvUYT .framer-hle671 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-gvUYT .framer-1oleog1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvUYT .framer-1nl1hu5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 14px; }\",\".framer-gvUYT .framer-1wc5ob4 { bottom: 0px; flex: none; height: 1px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-gvUYT .framer-at054j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gvUYT .framer-uoe3jn { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvUYT.framer-fpfhnc, .framer-gvUYT .framer-at054j { gap: 0px; } .framer-gvUYT.framer-fpfhnc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gvUYT.framer-fpfhnc > :first-child, .framer-gvUYT .framer-at054j > :first-child { margin-top: 0px; } .framer-gvUYT.framer-fpfhnc > :last-child, .framer-gvUYT .framer-at054j > :last-child { margin-bottom: 0px; } .framer-gvUYT .framer-at054j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-gvUYT.framer-v-me9d59.framer-fpfhnc { gap: 0px; }\",\".framer-gvUYT.framer-v-me9d59 .framer-1oleog1 { width: 93%; }\",\".framer-gvUYT.framer-v-me9d59 .framer-at054j { height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvUYT.framer-v-me9d59.framer-fpfhnc { gap: 0px; } .framer-gvUYT.framer-v-me9d59.framer-fpfhnc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gvUYT.framer-v-me9d59.framer-fpfhnc > :first-child { margin-top: 0px; } .framer-gvUYT.framer-v-me9d59.framer-fpfhnc > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HHYRnW75y\":{\"layout\":[\"fixed\",\"auto\"]},\"dVveRu6h3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zNMII1rLe\":\"question\",\"UkcAZJv33\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerO9s2O5SeP=withCSS(Component,css,\"framer-gvUYT\");export default FramerO9s2O5SeP;FramerO9s2O5SeP.displayName=\"Faq - Single\";FramerO9s2O5SeP.defaultProps={height:144,width:800};addPropertyControls(FramerO9s2O5SeP,{variant:{options:[\"xSgNKquG_\",\"HHYRnW75y\"],optionTitles:[\"Opened\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},zNMII1rLe:{defaultValue:\"How do I book a photography session with you?\",displayTextArea:true,title:\"Question\",type:ControlType.String},UkcAZJv33:{defaultValue:\"You can book a session by filling out the contact form on my website or by emailing me directly at [your email address]. I'll get back to you within 24 hours to discuss the details and schedule your shoot.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerO9s2O5SeP,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO9s2O5SeP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HHYRnW75y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dVveRu6h3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"144\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"zNMII1rLe\\\":\\\"question\\\",\\\"UkcAZJv33\\\":\\\"answer\\\"}\",\"framerIntrinsicWidth\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O9s2O5SeP.map", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useInView,useMotionValue,useSpring}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Counter({decimal,value,decimalValue,direction,stiffness,damping,prefix,prefixText,suffix,suffixText,color,fontStyle}){const initialValue=0;const ref=useRef(null);const updatedDecimalValue=decimal===true?decimalValue:value;const motionValue=useMotionValue(direction===\"down\"?updatedDecimalValue:initialValue);const springValue=useSpring(motionValue,{damping:damping,stiffness:stiffness});const isInView=useInView(ref,{once:true,margin:\"-100px\"});useEffect(()=>{if(isInView){motionValue.set(direction===\"down\"?initialValue:updatedDecimalValue);}},[motionValue,isInView]);useEffect(()=>springValue.on(\"change\",latest=>{if(ref.current){ref.current.textContent=Intl.NumberFormat(\"en-US\").format(latest.toFixed(decimal===true?2:0));}}),[springValue]);return /*#__PURE__*/_jsxs(_Fragment,{children:[prefix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:prefixText}):null,/*#__PURE__*/_jsx(\"span\",{ref:ref,style:{...fontStyle,color:color},children:initialValue}),suffix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:suffixText}):null]});}Counter.defaultProps={decimal:false,value:100,decimalValue:100,direction:\"up\",stiffness:300,damping:100,prefix:false,prefixText:\"\",suffix:false,suffixText:\"\",color:\"#000000\",fontStyle:\"\"};addPropertyControls(Counter,{decimal:{title:\"Decimal\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},value:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,hidden(props){return props.decimal===true;}},decimalValue:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,step:.01,hidden(props){return props.decimal===false;}},prefix:{title:\"Prefix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},prefixText:{title:\"Prefix Value\",type:ControlType.String,hidden(props){return props.prefix===false;}},suffix:{title:\"Suffix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},suffixText:{title:\"Suffix Value\",type:ControlType.String,hidden(props){return props.suffix===false;}},direction:{title:\"Direction\",type:ControlType.Enum,options:[\"up\",\"down\"]},stiffness:{title:\"Stiffness\",type:ControlType.Number,min:1,max:1e3},damping:{title:\"Damping\",type:ControlType.Number,min:0,max:100},color:{title:\"Color\",type:ControlType.Color},fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Counter from\"https://framerusercontent.com/modules/hkrViMpg0fYeAhnpJZEU/wNEyqslqgXyZk28903KS/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lP0GmmncWHnlXLX5AUeV/A4R4OExsQ2yURIaOlc9F/QMuEq11PS.js\";const CounterFonts=getFonts(Counter);const cycleOrder=[\"ZEl1lBlP5\",\"htpOHhC0I\"];const serializationHash=\"framer-bMnyh\";const variantClassNames={htpOHhC0I:\"framer-v-1hz58rw\",ZEl1lBlP5:\"framer-v-9xpgeo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ZEl1lBlP5\",\"Variant 2\":\"htpOHhC0I\"};const getProps=({fontSize,height,id,suffix,title,value,width,...props})=>{return{...props,FCzUNk8zj:suffix??props.FCzUNk8zj??\"+\",lfxR4tjrX:fontSize??props.lfxR4tjrX??80,QZmyCi6ep:value??props.QZmyCi6ep??100,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZEl1lBlP5\",x9jw34lHv:title??props.x9jw34lHv??\"YEARS OF EXPERIENCE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,x9jw34lHv,FCzUNk8zj,QZmyCi6ep,lfxR4tjrX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZEl1lBlP5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9xpgeo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZEl1lBlP5\",ref:ref??ref1,style:{backgroundColor:\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",...style},...addPropertyOverrides({htpOHhC0I:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g70jy0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"UvnmCtJxT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"YEARS OF EXPERIENCE\"})}),className:\"framer-7ejxhh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ev4MQNMc9\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:x9jw34lHv,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5uxkex\",layoutDependency:layoutDependency,layoutId:\"tAPQtWLbS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yprmho-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"tsN8tbao2-container\",nodeId:\"tsN8tbao2\",rendersWithMotion:true,scopeId:\"UeNFeauCj\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",damping:44,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"133px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"tsN8tbao2\",layoutId:\"tsN8tbao2\",prefix:false,prefixText:\"$\",stiffness:59,suffix:false,suffixText:\"\",value:QZmyCi6ep,width:\"100%\",...addPropertyOverrides({htpOHhC0I:{fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"96px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lfxR4tjrX-UeNFeauCj) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0)))\"},children:\"+\"})}),className:\"framer-z3rs3y\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"PBRSB7RJQ\",style:{\"--extracted-r6o4lv\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-lfxR4tjrX-UeNFeauCj\":lfxR4tjrX},text:FCzUNk8zj,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bMnyh.framer-1xeuwm1, .framer-bMnyh .framer-1xeuwm1 { display: block; }\",\".framer-bMnyh.framer-9xpgeo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 535px; }\",\".framer-bMnyh .framer-g70jy0 { 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: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-bMnyh .framer-7ejxhh, .framer-bMnyh .framer-z3rs3y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bMnyh .framer-5uxkex { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bMnyh .framer-yprmho-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bMnyh.framer-9xpgeo, .framer-bMnyh .framer-g70jy0, .framer-bMnyh .framer-5uxkex { gap: 0px; } .framer-bMnyh.framer-9xpgeo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bMnyh.framer-9xpgeo > :first-child { margin-top: 0px; } .framer-bMnyh.framer-9xpgeo > :last-child { margin-bottom: 0px; } .framer-bMnyh .framer-g70jy0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bMnyh .framer-g70jy0 > :first-child, .framer-bMnyh .framer-5uxkex > :first-child { margin-left: 0px; } .framer-bMnyh .framer-g70jy0 > :last-child, .framer-bMnyh .framer-5uxkex > :last-child { margin-right: 0px; } .framer-bMnyh .framer-5uxkex > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,'.framer-bMnyh[data-border=\"true\"]::after, .framer-bMnyh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 248.5\n * @framerIntrinsicWidth 535\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"htpOHhC0I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x9jw34lHv\":\"title\",\"FCzUNk8zj\":\"suffix\",\"QZmyCi6ep\":\"value\",\"lfxR4tjrX\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUeNFeauCj=withCSS(Component,css,\"framer-bMnyh\");export default FramerUeNFeauCj;FramerUeNFeauCj.displayName=\"Stats\";FramerUeNFeauCj.defaultProps={height:248.5,width:535};addPropertyControls(FramerUeNFeauCj,{variant:{options:[\"ZEl1lBlP5\",\"htpOHhC0I\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},x9jw34lHv:{defaultValue:\"YEARS OF EXPERIENCE\",displayTextArea:false,title:\"Title\",type:ControlType.String},FCzUNk8zj:{defaultValue:\"+\",displayTextArea:false,title:\"Suffix\",type:ControlType.String},QZmyCi6ep:{defaultValue:100,max:1e3,min:0,title:\"Value\",type:ControlType.Number},lfxR4tjrX:{defaultValue:80,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerUeNFeauCj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUeNFeauCj\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"htpOHhC0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"248.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"535\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"x9jw34lHv\\\":\\\"title\\\",\\\"FCzUNk8zj\\\":\\\"suffix\\\",\\\"QZmyCi6ep\\\":\\\"value\\\",\\\"lfxR4tjrX\\\":\\\"fontSize\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UeNFeauCj.map", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-light\",\"FS;Satoshi-regular\",\"FS;Satoshi-italic\",\"FS;Satoshi-light italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BRQAKSEW34X5RMZXKNWSVNXMNXSLSG6X/DOBF42XRXCZ2WDWJNNFFNBHBHYFWLRQD/MVBFGLEMN2LQF4RKXAFO4YZFKXTEZ7FQ.woff2\",weight:\"300\"}]}];export const css=['.framer-BlfOv .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-BlfOv .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-BlfOv .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-BlfOv .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-BlfOv .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-BlfOv .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-BlfOv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import NavMenuOverlay from\"#framer/local/canvasComponent/hcXsnZxmp/hcXsnZxmp.js\";import Button from\"#framer/local/canvasComponent/ice_UvhW5/ice_UvhW5.js\";import FaqSingle from\"#framer/local/canvasComponent/O9s2O5SeP/O9s2O5SeP.js\";import Footer from\"#framer/local/canvasComponent/PqQtuErNZ/PqQtuErNZ.js\";import Cursor from\"#framer/local/canvasComponent/t3kQNA4Z8/t3kQNA4Z8.js\";import Nav from\"#framer/local/canvasComponent/UEn7U9jTS/UEn7U9jTS.js\";import Stats from\"#framer/local/canvasComponent/UeNFeauCj/UeNFeauCj.js\";import Project from\"#framer/local/canvasComponent/VvgCSmuri/VvgCSmuri.js\";import Projects from\"#framer/local/collection/Qiwj4Sxj4/Qiwj4Sxj4.js\";import*as sharedStyle1 from\"#framer/local/css/HRBsjwLer/HRBsjwLer.js\";import*as sharedStyle3 from\"#framer/local/css/HvbIeng7X/HvbIeng7X.js\";import*as sharedStyle5 from\"#framer/local/css/pOjALZ8om/pOjALZ8om.js\";import*as sharedStyle from\"#framer/local/css/QBbKt4HEz/QBbKt4HEz.js\";import*as sharedStyle2 from\"#framer/local/css/xHea8ZIZv/xHea8ZIZv.js\";import*as sharedStyle4 from\"#framer/local/css/YlG7eJng5/YlG7eJng5.js\";import metadataProvider from\"#framer/local/webPageMetadata/ueiKkVaj3/ueiKkVaj3.js\";const NavFonts=getFonts(Nav);const NavMenuOverlayFonts=getFonts(NavMenuOverlay);const PhosphorFonts=getFonts(Phosphor);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const StatsFonts=getFonts(Stats);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ProjectFonts=getFonts(Project);const TickerFonts=getFonts(Ticker);const FaqSingleFonts=getFonts(FaqSingle);const MotionSectionWithFX=withFX(motion.section);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={ePjBTtXEX:\"(min-width: 810px) and (max-width: 1199px)\",gVM634JVz:\"(min-width: 1200px)\",n9gLl4Eao:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oc9DU\";const variantClassNames={ePjBTtXEX:\"framer-v-7hwwvd\",gVM634JVz:\"framer-v-zgsw7e\",n9gLl4Eao:\"framer-v-otwvw4\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-2};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2,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 animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const transition3={damping:100,delay:0,mass:1,stiffness:362,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:170};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:170};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gVM634JVz\",Phone:\"n9gLl4Eao\",Tablet:\"ePjBTtXEX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gVM634JVz\"};};const transition4={damping:60,delay:0,mass:1,stiffness:251,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:0,y:20},placement:\"top\",transition:transition4,variant:\"kHV_DxTWA\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,F5JM_atFVTpATeIQGL,vKXD8iKpJTpATeIQGL,abCVizEmiTpATeIQGL,idTpATeIQGL,F5JM_atFVlfbPOqUhQ,vKXD8iKpJlfbPOqUhQ,abCVizEmilfbPOqUhQ,idlfbPOqUhQ,F5JM_atFVxQGIO1WbM,vKXD8iKpJxQGIO1WbM,abCVizEmixQGIO1WbM,idxQGIO1WbM,F5JM_atFVnREqnPVWd,vKXD8iKpJnREqnPVWd,abCVizEminREqnPVWd,idnREqnPVWd,F5JM_atFVgOerhfaHQ,vKXD8iKpJgOerhfaHQ,abCVizEmigOerhfaHQ,idgOerhfaHQ,F5JM_atFVXtvyQdg_I,vKXD8iKpJXtvyQdg_I,abCVizEmiXtvyQdg_I,idXtvyQdg_I,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Fv5UOj18q3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"zJL7JOcd9\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"n9gLl4Eao\")return false;return true;};const elementId1=useRouteElementId(\"nhd_W9lmc\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"n9gLl4Eao\")return true;return false;};const ref3=React.useRef(null);const elementId2=useRouteElementId(\"ohtDp3gGl\");const elementId3=useRouteElementId(\"PqTLl90Dy\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"BD2cR1SRi\");const ref5=React.useRef(null);const router=useRouter();const elementId5=useRouteElementId(\"EbpuSh3rn\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"DJ__EcTsJ\");const ref7=React.useRef(null);useCustomCursors({\"1iz7wcx\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gVM634JVz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zgsw7e\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1xjyvwg-container\",id:\"1xjyvwg\",layoutScroll:true,nodeId:\"guM9Zf6qF\",scopeId:\"ueiKkVaj3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{variant:overlay.visible?\"B37HrnbDL\":\"ot3jw09Sv\"}},children:/*#__PURE__*/_jsx(Nav,{Fv5UOj18q:Fv5UOj18q3bnx0g({overlay}),height:\"100%\",id:\"guM9Zf6qF\",layoutId:\"guM9Zf6qF\",style:{height:\"100%\",width:\"100%\"},variant:overlay.visible?\"B37HrnbDL\":\"B37HrnbDL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-prjyfz\"),\"data-framer-portal-id\":\"1xjyvwg\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"us0FRQ7OW\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1cv0cjy-container\"),\"data-framer-portal-id\":\"1xjyvwg\",inComponentSlot:true,nodeId:\"aOgX58ECj\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{variant:\"SWIMc8iie\"}},children:/*#__PURE__*/_jsx(NavMenuOverlay,{height:\"100%\",id:\"aOgX58ECj\",layoutId:\"aOgX58ECj\",style:{height:\"100%\",width:\"100%\"},variant:\"q8DZilw9H\",vFLr6XZMs:\"hgQlxdFpY\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1sv2b1r\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wiukws\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xme10\",\"data-framer-name\":\"Heading\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckxtxg hidden-otwvw4\",\"data-framer-name\":\"Descriptive text & Button\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujpgkq\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11xnjq1\",\"data-styles-preset\":\"QBbKt4HEz\",children:\"A love of automobiles and  a history of restoring them.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11xnjq1\",\"data-styles-preset\":\"QBbKt4HEz\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"A love of automobiles\"})}),className:\"framer-1r7pgrh\",fonts:[\"Inter\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mu4ht hidden-zgsw7e hidden-7hwwvd\",\"data-border\":true,\"data-framer-name\":\"Other Elements\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1tq514f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zjellg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aybe7i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FmuHgtuQO\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"FmuHgtuQO\",layoutId:\"FmuHgtuQO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"Scroll to Explore\"})}),className:\"framer-e6yjh2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1ynv4sy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fcljzk hidden-otwvw4\",\"data-border\":true,\"data-framer-name\":\"Other Elements\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"ACROSS THE POND RESTORATION\"})}),className:\"framer-7p1hhc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0wsos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1831b5g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dHBYlFD9J\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"dHBYlFD9J\",layoutId:\"dHBYlFD9J\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"Scroll to Explore\"})}),className:\"framer-yzezt0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LDpT1HaOj\"},motionChild:true,nodeId:\"gYbXZXRBf\",openInNewTab:false,scopeId:\"ueiKkVaj3\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yx9a1c\",\"data-styles-preset\":\"xHea8ZIZv\",children:\"WORK WITH US\"})})})}),className:\"framer-moh0jn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{background:{alt:\"Hero Image Free Photography template real Mehedi\",fit:\"fill\",intrinsicHeight:6936,intrinsicWidth:4768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg\",srcSet:\"https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hero Image Free Photography template real Mehedi\",fit:\"fill\",intrinsicHeight:6936,intrinsicWidth:4768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg\",srcSet:\"https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FhaEZNS7GV5ve8jFU5ypWxnX0PU.jpg 1920w\"},className:\"framer-w7mlg6\",\"data-framer-name\":\"Video's 1st Frame Screenshot Here\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1ifx2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T70hJ7tuP\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"T70hJ7tuP\",isMixedBorderRadius:false,layoutId:\"T70hJ7tuP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HOomrsAb3O8G9bhDFykQGHv6WWc.mp4\",srcType:\"Upload\",srcUrl:\"https://vimeo.com/1056580688\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mzv19e\",\"data-framer-name\":\"About\",id:elementId2,ref:ref3,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11xnjq1\",\"data-styles-preset\":\"QBbKt4HEz\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"and  a history of restoring them.\"})}),className:\"framer-guhqqe hidden-otwvw4\",fonts:[\"Inter\"],id:elementId3,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kljtx3\",\"data-border\":true,\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utxd7r\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+100+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1680px) - 30px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+142+10+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-er9bag-container\",nodeId:\"Lr0nP3rLf\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"Lr0nP3rLf\",layoutId:\"Lr0nP3rLf\",lfxR4tjrX:100,QZmyCi6ep:175,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Projects Completed\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+100+0+0+0+0+258}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1680px) - 30px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+142+10+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwezsd-container\",nodeId:\"smGy_UoER\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"smGy_UoER\",layoutId:\"smGy_UoER\",lfxR4tjrX:100,QZmyCi6ep:10,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Years in Business\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175an46\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+100+0+0+516+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1680px) - 30px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+142+10+258+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19soruj-container\",nodeId:\"aIYmOePf5\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"aIYmOePf5\",layoutId:\"aIYmOePf5\",lfxR4tjrX:100,QZmyCi6ep:13,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Major Awards\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+100+0+0+516+0+258}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1680px) - 30px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+142+10+258+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bqre5-container\",nodeId:\"w66Y9gcuU\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"w66Y9gcuU\",layoutId:\"w66Y9gcuU\",lfxR4tjrX:100,QZmyCi6ep:1e3,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Espressos Consumed\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wh9kny\",\"data-framer-name\":\"Across the Pond\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"ABOUT US\"})}),className:\"framer-wsu4eg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ocd5a1\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1q3l3un\",\"data-styles-preset\":\"YlG7eJng5\",children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Across the Pond Restoration is an award-winning Willoughby, Ohio based boutique coachbuilder dedicated to breathing new life into some of the finest automobiles ever built. We specialize in the restoration, repair, and maintenance of vintage European sports cars, including Porsche, Ferrari, Lamborghini, Lotus, Aston Martin, Mercedes-Benz, Jaguar, and many others.\"})]})}),className:\"framer-65akvn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NQqwq_p0K\"},implicitPathVariables:undefined},{href:{webPageId:\"NQqwq_p0K\"},implicitPathVariables:undefined},{href:{webPageId:\"NQqwq_p0K\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+698+100+110+0+271},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+100+1052+30+122+0+271}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+500+698+100+112+0+271,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfjkz6-container\",nodeId:\"qQMLFjWyG\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks[0],height:\"100%\",id:\"qQMLFjWyG\",layoutId:\"qQMLFjWyG\",NxxZ8Xy2U:\"Our Story\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f4bu8i\",\"data-framer-name\":\"Selected Projects\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkq5t4\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"PROJECTS\"})}),className:\"framer-1uwl5dm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxrcql\",\"data-framer-name\":\"Projects\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-71u7wp\",\"data-framer-name\":\"1 & 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10a6hf5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TpATeIQGL\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"TpATeIQGL\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({abCVizEmi:abCVizEmiTpATeIQGL,F5JM_atFV:F5JM_atFVTpATeIQGL,id:idTpATeIQGL,vKXD8iKpJ:vKXD8iKpJTpATeIQGL},index)=>{F5JM_atFVTpATeIQGL??=\"\";abCVizEmiTpATeIQGL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TpATeIQGL-${idTpATeIQGL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiTpATeIQGL},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+0+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvx1o4-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"LKgybQCYd\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks1[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"LKgybQCYd\",layoutId:\"LKgybQCYd\",qqNc2XiOL:F5JM_atFVTpATeIQGL,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJTpATeIQGL),width:\"100%\",ZSDiebDov:resolvedLinks1[0]})})})})})})})},idTpATeIQGL);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e64s1a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lfbPOqUhQ\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"lfbPOqUhQ\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({abCVizEmi:abCVizEmilfbPOqUhQ,F5JM_atFV:F5JM_atFVlfbPOqUhQ,id:idlfbPOqUhQ,vKXD8iKpJ:vKXD8iKpJlfbPOqUhQ},index1)=>{F5JM_atFVlfbPOqUhQ??=\"\";abCVizEmilfbPOqUhQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lfbPOqUhQ-${idlfbPOqUhQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmilfbPOqUhQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+0+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+0+0+476+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v7i738-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"kwaS8sgbF\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks2[1]},n9gLl4Eao:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"kwaS8sgbF\",layoutId:\"kwaS8sgbF\",qqNc2XiOL:F5JM_atFVlfbPOqUhQ,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJlfbPOqUhQ),width:\"100%\",ZSDiebDov:resolvedLinks2[0]})})})})})})})},idlfbPOqUhQ);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uopsbx\",\"data-framer-name\":\"3 & 4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-llvexe\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xQGIO1WbM\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"xQGIO1WbM\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"xQGIO1WbM\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"xQGIO1WbM\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"xQGIO1WbM\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({abCVizEmi:abCVizEmixQGIO1WbM,F5JM_atFV:F5JM_atFVxQGIO1WbM,id:idxQGIO1WbM,vKXD8iKpJ:vKXD8iKpJxQGIO1WbM},index2)=>{F5JM_atFVxQGIO1WbM??=\"\";abCVizEmixQGIO1WbM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xQGIO1WbM-${idxQGIO1WbM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmixQGIO1WbM},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmixQGIO1WbM},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmixQGIO1WbM},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmixQGIO1WbM},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+506+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+952+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+526+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19d9uwx-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"V3DFxCHov\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks3[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"V3DFxCHov\",layoutId:\"V3DFxCHov\",qqNc2XiOL:F5JM_atFVxQGIO1WbM,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJxQGIO1WbM),width:\"100%\",ZSDiebDov:resolvedLinks3[0]})})})})})})})},idxQGIO1WbM);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ysi56f\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"nREqnPVWd\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"nREqnPVWd\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"nREqnPVWd\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"nREqnPVWd\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"nREqnPVWd\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({abCVizEmi:abCVizEminREqnPVWd,F5JM_atFV:F5JM_atFVnREqnPVWd,id:idnREqnPVWd,vKXD8iKpJ:vKXD8iKpJnREqnPVWd},index3)=>{F5JM_atFVnREqnPVWd??=\"\";abCVizEminREqnPVWd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`nREqnPVWd-${idnREqnPVWd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEminREqnPVWd},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEminREqnPVWd},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEminREqnPVWd},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEminREqnPVWd},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+506+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+952+0+476+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+526+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zi4rf-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"ScSDenENG\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks4[1]},n9gLl4Eao:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"ScSDenENG\",layoutId:\"ScSDenENG\",qqNc2XiOL:F5JM_atFVnREqnPVWd,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJnREqnPVWd),width:\"100%\",ZSDiebDov:resolvedLinks4[0]})})})})})})})},idnREqnPVWd);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-vaowm8\",\"data-framer-name\":\"5 & 6\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vha06r\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gOerhfaHQ\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"gOerhfaHQ\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"gOerhfaHQ\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"gOerhfaHQ\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"gOerhfaHQ\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({abCVizEmi:abCVizEmigOerhfaHQ,F5JM_atFV:F5JM_atFVgOerhfaHQ,id:idgOerhfaHQ,vKXD8iKpJ:vKXD8iKpJgOerhfaHQ},index4)=>{F5JM_atFVgOerhfaHQ??=\"\";abCVizEmigOerhfaHQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gOerhfaHQ-${idgOerhfaHQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmigOerhfaHQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmigOerhfaHQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmigOerhfaHQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmigOerhfaHQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+1012+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+1904+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+1052+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wtlztj-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"V2PdDZDsE\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks5[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"V2PdDZDsE\",layoutId:\"V2PdDZDsE\",qqNc2XiOL:F5JM_atFVgOerhfaHQ,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJgOerhfaHQ),width:\"100%\",ZSDiebDov:resolvedLinks5[0]})})})})})})})},idgOerhfaHQ);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-frldo7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XtvyQdg_I\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"XtvyQdg_I\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"XtvyQdg_I\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"XtvyQdg_I\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"XtvyQdg_I\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({abCVizEmi:abCVizEmiXtvyQdg_I,F5JM_atFV:F5JM_atFVXtvyQdg_I,id:idXtvyQdg_I,vKXD8iKpJ:vKXD8iKpJXtvyQdg_I},index5)=>{F5JM_atFVXtvyQdg_I??=\"\";abCVizEmiXtvyQdg_I??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XtvyQdg_I-${idXtvyQdg_I}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiXtvyQdg_I},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiXtvyQdg_I},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiXtvyQdg_I},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiXtvyQdg_I},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2829+0+333.6113+0+1012+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2685+0+152+30+1904+0+476+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"525px\",y:(componentViewport?.y||0)+0+0+0+2781+0+333.6113+0+1052+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oydkpk-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"FyK_3oxJ2\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks6[1]},n9gLl4Eao:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"FyK_3oxJ2\",layoutId:\"FyK_3oxJ2\",qqNc2XiOL:F5JM_atFVXtvyQdg_I,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJXtvyQdg_I),width:\"100%\",ZSDiebDov:resolvedLinks6[0]})})})})})})})},idXtvyQdg_I);})})})})})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t56eh4\",\"data-framer-name\":\"Grid 2\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"SERVICES\"})}),className:\"framer-1iwc8q5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14a757z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gx59nb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IvII3HU4x\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:0,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"IvII3HU4x\",layoutId:\"IvII3HU4x\",padding:10,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rvkmoq\",\"data-framer-name\":\"Grid 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-121efdc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lmfpjt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1540,pixelWidth:2519,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg 2519w\"},className:\"framer-6vkqcz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14aj63x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"VISUALIZATION & DESIGN\"})}),className:\"framer-1bgr39n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"We offer complete visualization and design services to give our clients the ability to see their finished project before the physical work even begins.\"})}),className:\"framer-tgbc82\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pzstko\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:895,pixelWidth:1193,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg\",srcSet:\"https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg 1193w\"},className:\"framer-1atb536\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jhmba\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"COACHBUILDING\"})}),className:\"framer-1m03wr6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"From fixing minor IMperfections and scratches to fabricating new panels, Across the Pond Restoration can provide a full range of coach work for your vehicle.\"})}),className:\"framer-1tz13pz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6dlnn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:895,pixelWidth:1193,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg\",srcSet:\"https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg 1193w\"},className:\"framer-1qeearr\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jr0rty\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"PAINTWORK\"})}),className:\"framer-1bdl5gp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Our meticulous panel-shaping process is finished off with stunning paintwork. working with Across the Pond means that your vehicle will roll out of our garage looking like it rolled off the assembly line.\"})}),className:\"framer-kvki82\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0iox0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:3024,pixelWidth:4032,positionX:\"22.6%\",positionY:\"43.2%\",sizes:\"324.8px\",src:\"https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg 4032w\"},className:\"framer-1974aip\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rt3w03\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"MECHANICAL & ELECTRIC\"})}),className:\"framer-1gblvqu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"As important as how your vehicle looks is how it drives. We build, rebuild, and replace components as needed to return your vehicle to safe and proper driving condition.\"})}),className:\"framer-35407w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-98m978\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:3024,pixelWidth:4032,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg 4032w\"},className:\"framer-1cxakch\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vitorh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"INTERIOR\"})}),className:\"framer-fttsf2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"While most people will be viewing your vehicle from the outside, much of your time will be spent in the driver's seat. In addition to repairing and replacing interior hard-surfaces, we can address your upholstery needs as well.\"})}),className:\"framer-1mxr6fp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rvkmoq\",\"data-framer-name\":\"Grid 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-121efdc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lmfpjt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1540,pixelWidth:2519,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UcshOwT5WsQMDzVtvMZEjYRuemg.jpg 2519w\"},className:\"framer-6vkqcz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14aj63x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"VISUALIZATION & DESIGN\"})}),className:\"framer-1bgr39n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"We offer complete visualization and design services to give our clients the ability to see their finished project before the physical work even begins.\"})}),className:\"framer-tgbc82\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pzstko\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:895,pixelWidth:1193,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg\",srcSet:\"https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hg5c0lmI8RBxMBJn2zeXG0g5nTg.jpg 1193w\"},className:\"framer-1atb536\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jhmba\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"COACHBUILDING\"})}),className:\"framer-1m03wr6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"From fixing minor IMperfections and scratches to fabricating new panels, Across the Pond Restoration can provide a full range of coach work for your vehicle.\"})}),className:\"framer-1tz13pz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6dlnn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:895,pixelWidth:1193,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg\",srcSet:\"https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NZTsWvcAXRNhTl3ajriHTDwvCyE.jpg 1193w\"},className:\"framer-1qeearr\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jr0rty\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"PAINTWORK\"})}),className:\"framer-1bdl5gp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Our meticulous panel-shaping process is finished off with stunning paintwork. working with Across the Pond means that your vehicle will roll out of our garage looking like it rolled off the assembly line.\"})}),className:\"framer-kvki82\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0iox0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:3024,pixelWidth:4032,positionX:\"22.6%\",positionY:\"43.2%\",sizes:\"324.8px\",src:\"https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sx7kQyYoFAzII01Y9fLQ9ok0iNE.jpg 4032w\"},className:\"framer-1974aip\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rt3w03\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"MECHANICAL & ELECTRIC\"})}),className:\"framer-1gblvqu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"As important as how your vehicle looks is how it drives. We build, rebuild, and replace components as needed to return your vehicle to safe and proper driving condition.\"})}),className:\"framer-35407w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-98m978\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:3024,pixelWidth:4032,sizes:\"324.8px\",src:\"https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZoDFnu4BynVz6ufW1i61AcZE.jpg 4032w\"},className:\"framer-1cxakch\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vitorh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"INTERIOR\"})}),className:\"framer-fttsf2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"While most people will be viewing your vehicle from the outside, much of your time will be spent in the driver's seat. In addition to repairing and replacing interior hard-surfaces, we can address your upholstery needs as well.\"})}),className:\"framer-1mxr6fp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})],speed:75,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19a8kvn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I8rlM1dq1\"},implicitPathVariables:undefined},{href:{webPageId:\"I8rlM1dq1\"},implicitPathVariables:undefined},{href:{webPageId:\"I8rlM1dq1\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+4720.6113+150+632+10.5},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+5723+150+632+10.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+4712.6113+150+632+10.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zqcf0r-container\",nodeId:\"DTWvnzQ5A\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks7[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks7[0],height:\"100%\",id:\"DTWvnzQ5A\",layoutId:\"DTWvnzQ5A\",NxxZ8Xy2U:\"Our Services\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fdxnbj\",\"data-framer-name\":\"BaT\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kj0oyi\",\"data-framer-name\":\"BaT Header\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-olkvqr\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"BRING A TRAILER\"})}),className:\"framer-fikgdu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q3l3un\",\"data-styles-preset\":\"YlG7eJng5\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Across the Pond Restoration is proud to be an official Bring a Trailer Local Partner authorized to provide seller services designed to create a more comprehensive vehicle presentation.\"})}),className:\"framer-1hved59\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined},{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined},{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+5683.6113+0+0+100+0+0+382},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+6686+0+-44.75+37+0+0+382}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+5675.6113+0+0+100+0+0+382,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlrq2i-container\",nodeId:\"lds6X06Fo\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks8[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks8[0],height:\"100%\",id:\"lds6X06Fo\",layoutId:\"lds6X06Fo\",NxxZ8Xy2U:\"Learn More\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mx37g\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sm03kc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvfwy\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85970482-e647-41f5-9bbe-abffc6a00342, rgb(247, 194, 0))\"},children:\"FAQS:\"})}),className:\"framer-1uu200q\",fonts:[\"Inter\"],id:\"1uu200q\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1vj45\",\"data-framer-name\":\"FAQ Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+6365.6113+100+0+0+112+30+0},n9gLl4Eao:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+7165.5+30+0+0+97+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+6307.6113+100+0+0+92+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-25ytl6-container\",nodeId:\"LwG7XV8pw\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"LwG7XV8pw\",layoutId:\"LwG7XV8pw\",style:{width:\"100%\"},UkcAZJv33:\"Please feel free to visit our project section and social media platforms to see the kinds of cars we have experience with. Feel free to call to discuss. For a complete understanding of our operation please make an appointment to visit our facilities.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"How do I explore working with Across the Pond?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+6365.6113+100+0+0+112+30+144},n9gLl4Eao:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+7165.5+30+0+0+97+30+144}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+6307.6113+100+0+0+92+30+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9tcig-container\",nodeId:\"wcLZQmxgb\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"wcLZQmxgb\",layoutId:\"wcLZQmxgb\",style:{width:\"100%\"},UkcAZJv33:\"It all depends on how much work needs to be done to the car, the rarity of the car and what parts/components are readily available. For a complete restoration of most cars plan on 1-2 years.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"How long do restoration projects take?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+6365.6113+100+0+0+112+30+288},n9gLl4Eao:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+7165.5+30+0+0+97+30+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+6307.6113+100+0+0+92+30+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d95qdb-container\",nodeId:\"E2M_ZBNDc\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"E2M_ZBNDc\",layoutId:\"E2M_ZBNDc\",style:{width:\"100%\"},UkcAZJv33:\"Although we typically focus on European sports cars we are fully capable to work on USA marques as well.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"Will Across the Pond work on non-European cars?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+6365.6113+100+0+0+112+30+432},n9gLl4Eao:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 24px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+7165.5+30+0+0+97+30+432}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+6307.6113+100+0+0+92+30+432,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j9luo1-container\",nodeId:\"WOb22G5NN\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"WOb22G5NN\",layoutId:\"WOb22G5NN\",style:{width:\"100%\"},UkcAZJv33:\"People are welcome to make appointments to visit the shop. We love showing off what we can do and  only ask that you call ahead so that the visit doesn't disrupt project schedules.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"Can I visit the shop?\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+7283.6113},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+7958.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+7155.6113,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j9pdqd-container\",nodeId:\"jDoO6mILd\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{variant:\"pB6WvHHYF\"},n9gLl4Eao:{variant:\"qT_RXWXGW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jDoO6mILd\",layoutId:\"jDoO6mILd\",style:{width:\"100%\"},variant:\"RAJRLJqHQ\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oc9DU.framer-3hkk98, .framer-oc9DU .framer-3hkk98 { display: block; }\",\".framer-oc9DU.framer-zgsw7e { align-content: center; align-items: center; background-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #141414); 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-oc9DU .framer-1xjyvwg-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-oc9DU.framer-prjyfz { background-color: #000000; inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-oc9DU.framer-1cv0cjy-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-oc9DU .framer-1sv2b1r, .framer-oc9DU .framer-1f4bu8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1wiukws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-5xme10 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 130px 40px 50px 40px; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-oc9DU .framer-1ckxtxg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 400px; min-height: 50px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-ujpgkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1r7pgrh, .framer-oc9DU .framer-guhqqe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1680px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-19mu4ht { --border-bottom-width: 1px; --border-color: var(--token-6b19d04a-c8c7-46ac-8bc0-4380931dccd5, rgba(255, 255, 255, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 40px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1tq514f, .framer-oc9DU .framer-7p1hhc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-zjellg, .framer-oc9DU .framer-1e0wsos { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 16px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oc9DU .framer-1aybe7i-container, .framer-oc9DU .framer-1831b5g-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-oc9DU .framer-e6yjh2, .framer-oc9DU .framer-yzezt0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oc9DU .framer-1ynv4sy, .framer-oc9DU .framer-moh0jn { flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-fcljzk { --border-bottom-width: 1px; --border-color: var(--token-6b19d04a-c8c7-46ac-8bc0-4380931dccd5, rgba(255, 255, 255, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-w7mlg6 { -webkit-filter: contrast(1.16) grayscale(1); align-content: center; align-items: center; display: flex; filter: contrast(1.16) grayscale(1); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-oc9DU .framer-i1ifx2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-mzv19e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 500px 40px 50px 40px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-oc9DU .framer-1kljtx3 { --border-bottom-width: 1px; --border-color: var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1utxd7r, .framer-oc9DU .framer-175an46 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-er9bag-container, .framer-oc9DU .framer-15bqre5-container { flex: 1.5 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-oc9DU .framer-iwezsd-container, .framer-oc9DU .framer-19soruj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-oc9DU .framer-wh9kny { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-oc9DU .framer-wsu4eg, .framer-oc9DU .framer-1uwl5dm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oc9DU .framer-1ocd5a1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oc9DU .framer-65akvn { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 1100px; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-1mfjkz6-container, .framer-oc9DU .framer-zqcf0r-container, .framer-oc9DU .framer-1nlrq2i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oc9DU .framer-1qkq5t4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 33.361134278565466vh; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 40px 0px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-oc9DU .framer-zxrcql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-oc9DU .framer-71u7wp, .framer-oc9DU .framer-1uopsbx, .framer-oc9DU .framer-vaowm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-oc9DU .framer-10a6hf5, .framer-oc9DU .framer-1e64s1a, .framer-oc9DU .framer-llvexe, .framer-oc9DU .framer-1ysi56f, .framer-oc9DU .framer-vha06r, .framer-oc9DU .framer-frldo7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-oc9DU .framer-1hvx1o4-container, .framer-oc9DU .framer-v7i738-container, .framer-oc9DU .framer-19d9uwx-container, .framer-oc9DU .framer-4zi4rf-container, .framer-oc9DU .framer-wtlztj-container, .framer-oc9DU .framer-oydkpk-container { flex: none; height: 446px; position: relative; width: 525px; }\",\".framer-oc9DU .framer-1t56eh4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 150px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1iwc8q5, .framer-oc9DU .framer-fikgdu, .framer-oc9DU .framer-1uu200q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-14a757z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1gx59nb-container { flex: none; height: 490px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1rvkmoq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1774px; }\",\".framer-oc9DU .framer-121efdc { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(5, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 2400px; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-lmfpjt, .framer-oc9DU .framer-pzstko, .framer-oc9DU .framer-o6dlnn, .framer-oc9DU .framer-1i0iox0, .framer-oc9DU .framer-98m978 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-6vkqcz, .framer-oc9DU .framer-1atb536, .framer-oc9DU .framer-1qeearr, .framer-oc9DU .framer-1974aip, .framer-oc9DU .framer-1cxakch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-14aj63x, .framer-oc9DU .framer-18jhmba, .framer-oc9DU .framer-1jr0rty, .framer-oc9DU .framer-rt3w03, .framer-oc9DU .framer-1vitorh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1bgr39n, .framer-oc9DU .framer-1m03wr6, .framer-oc9DU .framer-1bdl5gp, .framer-oc9DU .framer-1gblvqu, .framer-oc9DU .framer-fttsf2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-tgbc82, .framer-oc9DU .framer-1tz13pz, .framer-oc9DU .framer-kvki82, .framer-oc9DU .framer-35407w, .framer-oc9DU .framer-1mxr6fp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-19a8kvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 81px; justify-content: flex-start; overflow: hidden; padding: 30px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1fdxnbj { 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: visible; padding: 0px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-kj0oyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 100px 40px 50px 40px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-oc9DU .framer-olkvqr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1110px; }\",\".framer-oc9DU .framer-1hved59 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 1110px; word-break: break-word; word-wrap: break-word; }\",\".framer-oc9DU .framer-19mx37g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 100px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1sm03kc { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oc9DU .framer-1kvfwy { 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: center; overflow: hidden; padding: 0px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-oc9DU .framer-1f1vj45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-oc9DU .framer-25ytl6-container, .framer-oc9DU .framer-1v9tcig-container, .framer-oc9DU .framer-1d95qdb-container, .framer-oc9DU .framer-j9luo1-container, .framer-oc9DU .framer-1j9pdqd-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-oc9DU[data-border=\"true\"]::after, .framer-oc9DU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-oc9DU.framer-zgsw7e { width: 810px; } .framer-oc9DU .framer-1ckxtxg { min-height: 102px; } .framer-oc9DU .framer-mzv19e { padding: 500px 40px 100px 40px; } .framer-oc9DU .framer-wh9kny { gap: 18px; } .framer-oc9DU .framer-1ocd5a1, .framer-oc9DU .framer-1hvx1o4-container, .framer-oc9DU .framer-19d9uwx-container, .framer-oc9DU .framer-wtlztj-container, .framer-oc9DU .framer-olkvqr { width: 100%; } .framer-oc9DU .framer-65akvn, .framer-oc9DU .framer-1hved59 { max-width: unset; width: 100%; } .framer-oc9DU .framer-zxrcql { gap: 60px; padding: 0px 40px 100px 40px; } .framer-oc9DU .framer-71u7wp, .framer-oc9DU .framer-1uopsbx, .framer-oc9DU .framer-vaowm8 { gap: 60px; justify-content: center; padding: 0px; } .framer-oc9DU .framer-10a6hf5, .framer-oc9DU .framer-1e64s1a, .framer-oc9DU .framer-llvexe, .framer-oc9DU .framer-1ysi56f, .framer-oc9DU .framer-vha06r, .framer-oc9DU .framer-frldo7 { flex: 1 0 0px; width: 1px; } .framer-oc9DU .framer-v7i738-container, .framer-oc9DU .framer-4zi4rf-container, .framer-oc9DU .framer-oydkpk-container { height: auto; width: 100%; } .framer-oc9DU .framer-1fdxnbj { padding: 0px 40px 100px 40px; } .framer-oc9DU .framer-kj0oyi { gap: 18px; padding: 100px 40px 50px 0px; } .framer-oc9DU .framer-19mx37g { padding: 100px 40px 100px 40px; } .framer-oc9DU .framer-1sm03kc { gap: 20px; }}\",\"@media (max-width: 809px) { .framer-oc9DU.framer-zgsw7e { overflow: hidden; width: 390px; } .framer-oc9DU .framer-1wiukws { max-width: 100%; } .framer-oc9DU .framer-5xme10 { padding: 100px 12px 100px 12px; } .framer-oc9DU .framer-ujpgkq { order: 0; padding: 200px 0px 0px 0px; } .framer-oc9DU .framer-1r7pgrh { max-width: 1200px; } .framer-oc9DU .framer-mzv19e { padding: 100px 12px 30px 12px; } .framer-oc9DU .framer-1kljtx3 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 0px; } .framer-oc9DU .framer-1utxd7r, .framer-oc9DU .framer-175an46 { flex-direction: column; } .framer-oc9DU .framer-er9bag-container, .framer-oc9DU .framer-iwezsd-container, .framer-oc9DU .framer-19soruj-container, .framer-oc9DU .framer-15bqre5-container { flex: none; width: 100%; } .framer-oc9DU .framer-wh9kny, .framer-oc9DU .framer-zxrcql { gap: 30px; padding: 30px 12px 30px 12px; } .framer-oc9DU .framer-1ocd5a1, .framer-oc9DU .framer-10a6hf5, .framer-oc9DU .framer-1hvx1o4-container, .framer-oc9DU .framer-1e64s1a, .framer-oc9DU .framer-llvexe, .framer-oc9DU .framer-19d9uwx-container, .framer-oc9DU .framer-1ysi56f, .framer-oc9DU .framer-vha06r, .framer-oc9DU .framer-wtlztj-container, .framer-oc9DU .framer-frldo7, .framer-oc9DU .framer-olkvqr { width: 100%; } .framer-oc9DU .framer-65akvn, .framer-oc9DU .framer-1hved59 { max-width: unset; width: 100%; } .framer-oc9DU .framer-1qkq5t4 { height: min-content; padding: 30px 12px 30px 12px; } .framer-oc9DU .framer-71u7wp, .framer-oc9DU .framer-1uopsbx, .framer-oc9DU .framer-vaowm8 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px; } .framer-oc9DU .framer-v7i738-container, .framer-oc9DU .framer-4zi4rf-container, .framer-oc9DU .framer-oydkpk-container { height: auto; width: 100%; } .framer-oc9DU .framer-1t56eh4 { padding: 150px 12px 100px 12px; } .framer-oc9DU .framer-14a757z { gap: 81px; } .framer-oc9DU .framer-1fdxnbj { height: 480px; padding: 0px; } .framer-oc9DU .framer-kj0oyi { padding: 37px 12px 100px 12px; } .framer-oc9DU .framer-19mx37g { padding: 30px 12px 60px 12px; } .framer-oc9DU .framer-1sm03kc { gap: 5px; } .framer-oc9DU .framer-1kvfwy { position: relative; top: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6986\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ePjBTtXEX\":{\"layout\":[\"fixed\",\"auto\"]},\"n9gLl4Eao\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zJL7JOcd9\":{\"pattern\":\":zJL7JOcd9\",\"name\":\"quote\"},\"nhd_W9lmc\":{\"pattern\":\":nhd_W9lmc\",\"name\":\"heading\"},\"ohtDp3gGl\":{\"pattern\":\":ohtDp3gGl\",\"name\":\"about\"},\"PqTLl90Dy\":{\"pattern\":\":PqTLl90Dy\",\"name\":\"heading\"},\"BD2cR1SRi\":{\"pattern\":\":BD2cR1SRi\",\"name\":\"about-me\"},\"EbpuSh3rn\":{\"pattern\":\":EbpuSh3rn\",\"name\":\"works\"},\"DJ__EcTsJ\":{\"pattern\":\":DJ__EcTsJ\",\"name\":\"about-me\"}}\n * @framerResponsiveScreen\n */const FramerueiKkVaj3=withCSS(Component,css,\"framer-oc9DU\");export default FramerueiKkVaj3;FramerueiKkVaj3.displayName=\"Home\";FramerueiKkVaj3.defaultProps={height:6986,width:1200};addFonts(FramerueiKkVaj3,[{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\"}]},...NavFonts,...NavMenuOverlayFonts,...PhosphorFonts,...VideoFonts,...StatsFonts,...ButtonFonts,...ProjectFonts,...TickerFonts,...FaqSingleFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerueiKkVaj3\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6986\",\"framerScrollSections\":\"{\\\"zJL7JOcd9\\\":{\\\"pattern\\\":\\\":zJL7JOcd9\\\",\\\"name\\\":\\\"quote\\\"},\\\"nhd_W9lmc\\\":{\\\"pattern\\\":\\\":nhd_W9lmc\\\",\\\"name\\\":\\\"heading\\\"},\\\"ohtDp3gGl\\\":{\\\"pattern\\\":\\\":ohtDp3gGl\\\",\\\"name\\\":\\\"about\\\"},\\\"PqTLl90Dy\\\":{\\\"pattern\\\":\\\":PqTLl90Dy\\\",\\\"name\\\":\\\"heading\\\"},\\\"BD2cR1SRi\\\":{\\\"pattern\\\":\\\":BD2cR1SRi\\\",\\\"name\\\":\\\"about-me\\\"},\\\"EbpuSh3rn\\\":{\\\"pattern\\\":\\\":EbpuSh3rn\\\",\\\"name\\\":\\\"works\\\"},\\\"DJ__EcTsJ\\\":{\\\"pattern\\\":\\\":DJ__EcTsJ\\\",\\\"name\\\":\\\"about-me\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ePjBTtXEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n9gLl4Eao\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "i2CAA2Z,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,EACtvB,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,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC76B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,GAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,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,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY3B,GAAuB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,OAAAC,EAAO,cAAAC,EAAc,UAAUC,GAAc,OAAAC,EAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,GAASC,GAAmB,EAAQC,GAAiB5C,EAAO,IAAI,EAAQ6C,GAAgB7C,EAAO,IAAI,EAAQ8C,EAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGnjBqE,GAAiBJ,EAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,EAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAAlC,GAAK,MAAAE,GAAM,YAAAP,CAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,IAAqBpC,EAAYJ,GAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,GAAqBI,KAAmB,gBAAwBC,GAAa7C,GAAK,EAAOE,GAAM,EAAE,EAAE,CAAC0C,GAAiBC,EAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,MAAO,CAAC,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,GAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,EAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,EAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,GAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,IAAiBjC,GAAM,CAACgC,GAAiB,UAAQtC,GAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,GAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,GAAiB,QAAQhD,EAAS,QAAQ,OAAOY,GAAM,EAAG,CAAC,EAAE,IAAMoD,GAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU,MAAM,OAAOE,EAAOqC,EAAS,GAAGvC,IAAU,SAAS,OAAOC,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EAC5H,OAAAC,EAAU,IAAI,CAAIZ,IAAU9C,EAAS,SAASsD,KAAmB,YAAY,WAAW,IAAI5C,GAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC6FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,EAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAIuB,GAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,KAAmB,WAAW,OAAOX,EAAcD,EAAO,OAAU,aAA1mB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,GAAaoD,GAA+C,GAAG,GAAG,EAAKH,KAAmB,YAAW5C,GAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,EAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMwE,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoB5E,GAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKuF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKuF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,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,EAMpqF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,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,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpEkW,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUL,GAAQK,EAAM,WAAW,gNAAgN,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAUE,EAAM,WAAW,+CAA+C,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,UAAAwC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASM,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,EAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIqC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiB7B,GAAuBD,EAAMxB,EAAQ,EAAO,CAAC,sBAAAuD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAmFS,EAAkBC,EAAGlE,GAAkB,GAA5F,CAAa4C,GAAuBA,EAAS,CAAuE,EAAE,OAAoB3B,EAAKkD,EAAY,CAAC,GAAGtB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQd,GAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB6D,EAAMjD,EAAO,IAAI,CAAC,GAAG6B,EAAU,GAAGI,GAAgB,UAAUc,EAAGD,EAAkB,gBAAgBrB,EAAUM,CAAU,EAAE,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAI3B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,MAAM8D,EAAW,CAAC,EAAEf,EAAYI,EAAc,EAAE,SAAS,CAAce,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,EAAYI,EAAc,CAAC,CAAC,EAAepC,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKsD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBzC,EAAKpB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,OAAO,GAAGK,GAAqB,CAAC,kBAAkB,CAAC,MAAM,qEAAqE,CAAC,EAAE+C,EAAYI,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,6EAA6E,CAAC,CAAC,EAAezC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,+MAA+M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,kFAAkF,mSAAmS,oRAAoR,kNAAkN,oKAAoK,qLAAqL,iRAAiR,kNAAkN,+kBAA+kB,4DAA4D,gEAAgE,gEAAgE,yaAAya,GAAeA,GAAI,GAAgBA,EAAG,EAU/1VC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,gDAAgD,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,gNAAgN,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,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,GAAG9E,GAAc,GAAGoF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECH19E,SAARC,GAAyB,CAAC,QAAAC,EAAQ,MAAAC,EAAM,aAAAC,EAAa,UAAAC,EAAU,UAAAC,EAAU,QAAAC,EAAQ,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,MAAAC,EAAM,UAAAC,CAAS,EAAE,CAAsB,IAAMC,EAAIC,EAAO,IAAI,EAAQC,EAAoBd,IAAU,GAAKE,EAAaD,EAAYc,EAAYC,GAAeb,IAAY,OAAOW,EAAoB,CAAY,EAAQG,EAAYC,GAAUH,EAAY,CAAC,QAAQV,EAAQ,UAAUD,CAAS,CAAC,EAAQe,EAASC,GAAUR,EAAI,CAAC,KAAK,GAAK,OAAO,QAAQ,CAAC,EAAE,OAAAS,EAAU,IAAI,CAAIF,GAAUJ,EAAY,IAAIZ,IAAY,OAAO,EAAaW,CAAmB,CAAG,EAAE,CAACC,EAAYI,CAAQ,CAAC,EAAEE,EAAU,IAAIJ,EAAY,GAAG,SAASK,IAAQ,CAAIV,EAAI,UAASA,EAAI,QAAQ,YAAY,KAAK,aAAa,OAAO,EAAE,OAAOU,GAAO,QAAQtB,IAAU,GAAK,EAAE,CAAC,CAAC,EAAG,CAAC,EAAE,CAACiB,CAAW,CAAC,EAAsBM,EAAMC,EAAU,CAAC,SAAS,CAAClB,EAAoBmB,EAAK,OAAO,CAAC,MAAM,CAAC,GAAGd,EAAU,MAAMD,CAAK,EAAE,SAASH,CAAU,CAAC,EAAE,KAAkBkB,EAAK,OAAO,CAAC,IAAIb,EAAI,MAAM,CAAC,GAAGD,EAAU,MAAMD,CAAK,EAAE,SAAS,CAAY,CAAC,EAAEF,EAAoBiB,EAAK,OAAO,CAAC,MAAM,CAAC,GAAGd,EAAU,MAAMD,CAAK,EAAE,SAASD,CAAU,CAAC,EAAE,IAAI,CAAC,CAAC,CAAE,CAACV,GAAQ,aAAa,CAAC,QAAQ,GAAM,MAAM,IAAI,aAAa,IAAI,UAAU,KAAK,UAAU,IAAI,QAAQ,IAAI,OAAO,GAAM,WAAW,GAAG,OAAO,GAAM,WAAW,GAAG,MAAM,UAAU,UAAU,EAAE,EAAE2B,GAAoB3B,GAAQ,CAAC,QAAQ,CAAC,MAAM,UAAU,KAAK4B,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAK,CAAC,EAAE,aAAa,CAAC,MAAM,QAAQ,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKD,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,WAAW,CAAC,MAAM,eAAe,KAAKA,EAAY,OAAO,OAAOC,EAAM,CAAC,OAAOA,EAAM,SAAS,EAAM,CAAC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKD,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,WAAW,CAAC,MAAM,eAAe,KAAKA,EAAY,OAAO,OAAOC,EAAM,CAAC,OAAOA,EAAM,SAAS,EAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKD,EAAY,KAAK,QAAQ,CAAC,KAAK,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,GAAG,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,GAAG,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,aAAa,KAAK,OAAO,SAAS,UAAU,CAAC,CAAC,ECPtrD,IAAME,GAAaC,EAASC,EAAO,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,MAAAC,EAAM,MAAAlB,EAAM,MAAAmB,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAQG,EAAM,WAAW,IAAI,UAAUN,GAAUM,EAAM,WAAW,GAAG,UAAUpB,GAAOoB,EAAM,WAAW,IAAI,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAOE,EAAM,WAAW,qBAAqB,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASO,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBxB,GAAuBD,EAAMzB,CAAQ,EAA4DmD,EAAkBC,EAAGxD,GAAkB,GAArE,CAAasC,EAAS,CAAuE,EAAQmB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,GAAkBC,GAAqB,EAAE,OAAoB7C,EAAK8C,EAAY,CAAC,GAAGxB,GAAUoB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByD,EAAM7C,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBjB,EAAUQ,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAAKwB,EAAK,MAAM,CAAC,gBAAgB,8EAA8E,GAAGpB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAewB,EAAM7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAQ,CAAC,MAAM,wEAAwE,QAAQ,GAAG,QAAQ,GAAM,aAAa,MAAM,UAAU,KAAK,UAAU,CAAC,WAAW,2DAA2D,SAAS,QAAQ,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,OAAO,GAAM,WAAW,IAAI,UAAU,GAAG,OAAO,GAAM,WAAW,GAAG,MAAM4C,EAAU,MAAM,OAAO,GAAGxC,GAAqB,CAAC,UAAU,CAAC,UAAU,CAAC,WAAW,2DAA2D,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,CAAC,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,4DAA4D,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,8FAA8F,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,yBAAyB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CX,CAAS,EAAE,KAAKF,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,kFAAkF,kFAAkF,mQAAmQ,0RAA0R,oMAAoM,4QAA4Q,wGAAwG,01BAA01B,GAAeA,GAAI,+bAA+b,EASliSC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,sBAAsB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,IAAI,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,IAAI,IAAI,IAAI,IAAI,EAAE,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,YAAY,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,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,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzE,GAAa,GAAG+E,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzzFC,GAAU,UAAU,CAAC,mBAAmB,qBAAqB,oBAAoB,yBAAyB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,uoCAAuoC,6rCAA6rC,yrCAAyrC,EAAeC,GAAU,eCAhiF,IAAMC,GAASC,EAASC,EAAG,EAAQC,GAAoBF,EAASG,EAAc,EAAQC,GAAcJ,EAASK,EAAQ,EAAQC,GAAgBC,GAAOC,CAAS,EAAQC,EAAgBF,GAAOG,EAAO,GAAG,EAAQC,GAAWX,EAASY,EAAK,EAAQC,GAAYN,GAAOO,CAAK,EAAQC,GAAWf,EAASgB,EAAK,EAAQC,GAAeV,GAAOW,CAAQ,EAAQC,GAAYnB,EAASoB,EAAM,EAAQC,GAAarB,EAASsB,EAAO,EAAQC,GAAYvB,EAASwB,EAAM,EAAQC,GAAezB,EAAS0B,EAAS,EAAQC,GAAoBpB,GAAOG,EAAO,OAAO,EAAQkB,GAAY5B,EAAS6B,EAAM,EAAQC,GAAY9B,EAAS+B,EAAM,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,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,SAAAf,CAAQ,IAAI,CAAC,IAAMgB,EAAKC,GAAaH,CAAK,EAAE,OAAOd,EAASgB,CAAI,CAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWH,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQI,GAAU,CAAC,CAAC,MAAAX,CAAK,IAAoBY,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOb,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUc,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,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAO,CAAC,UAAU,SAAS,UAAUxC,GAAO,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,MAAM,WAAWuC,GAAY,QAAQ,WAAW,EAAQE,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEhD,GAASI,CAAK,EAAQ6C,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUnC,CAAY,EAAE,GAAGmC,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUpC,CAAY,CAAC,EAAQqC,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUnC,CAAY,EAAE,SAAS,MAAMmC,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUnC,CAAY,CAAC,EAAE,GAAK,CAACsC,EAAYC,EAAmB,EAAEC,GAA8BhC,EAAQxD,GAAY,EAAK,EAAQyF,GAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,EAAK,EAAEC,GAAyB,MAAS,EAAQC,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAA+KG,GAAkBC,EAAGhG,GAAkB,GAAxL,CAAaoD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQ6C,GAAUC,EAAkB,WAAW,EAAQC,GAAWzD,EAAO,IAAI,EAAQ0D,GAAY,IAASrG,GAAU,EAAiBqF,IAAc,YAAtB,GAAmEiB,GAAWH,EAAkB,WAAW,EAAQI,GAAW5D,EAAO,IAAI,EAAQ6D,GAAa,IAAQ,CAACxG,GAAU,GAAiBqF,IAAc,YAA6CoB,GAAW9D,EAAO,IAAI,EAAQ+D,GAAWP,EAAkB,WAAW,EAAQQ,GAAWR,EAAkB,WAAW,EAAQS,GAAWjE,EAAO,IAAI,EAAQkE,GAAWV,EAAkB,WAAW,EAAQW,GAAWnE,EAAO,IAAI,EAAQoE,GAAOC,GAAU,EAAQC,GAAWd,EAAkB,WAAW,EAAQe,GAAWvE,EAAO,IAAI,EAAQwE,GAAWhB,EAAkB,WAAW,EAAQiB,GAAWzE,EAAO,IAAI,EAAE,OAAA0E,GAAiB,CAAC,UAAU/E,EAAM,CAAC,EAAsBR,EAAKwF,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApH,EAAiB,EAAE,SAAsBqH,EAAMC,EAAY,CAAC,GAAGlE,GAAUT,EAAgB,SAAS,CAAcf,EAAKF,GAAU,CAAC,MAAM,+FAA+F,CAAC,EAAe2F,EAAM9I,EAAO,IAAI,CAAC,GAAGuG,GAAU,UAAUiB,EAAGD,GAAkB,gBAAgB3C,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAActB,EAAK1B,GAAQ,CAAC,SAASyF,GAAsB/D,EAAK2F,EAAU,CAAC,SAAsB3F,EAAK4F,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBH,EAAMhJ,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAS,CAAcuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQQ,EAAQ,QAAQ,YAAY,WAAW,CAAC,EAAE,SAAsB/D,EAAK9D,GAAI,CAAC,UAAU4H,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,SAAQA,EAAQ,QAAQ,aAAwB,MAAM,MAAM,CAAC,CAAC,CAAC,EAAe/D,EAAK8F,GAAgB,CAAC,SAAS/B,EAAQ,SAAsB/D,EAAK2F,EAAU,CAAC,SAA+BI,GAA0BN,EAAYO,EAAS,CAAC,SAAS,CAAchG,EAAKrD,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUwH,EAAGD,GAAkB,eAAe,EAAE,wBAAwB,UAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIH,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAe/D,EAAK4F,EAA0B,CAAC,MAAM,QAAQ,SAAsB5F,EAAKvD,EAAU,CAAC,UAAU0H,EAAGD,GAAkB,0BAA0B,EAAE,wBAAwB,UAAU,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlE,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAK5D,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoH,EAAM,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGrB,GAAU,IAAIE,GAAK,SAAS,CAAcmB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAClB,GAAY,GAAgBvE,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,2BAA2B,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAczF,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBvD,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yDAAyD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,GAAGwE,GAAW,IAAIC,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEC,GAAa,GAAgBe,EAAM/I,EAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI+H,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,6CAA6C,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAczE,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAczF,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAKzD,GAAgB,CAAC,eAAeuC,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBmB,EAAK1D,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEuE,GAAY,GAAgBkB,EAAM/I,EAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI+H,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,8BAA8B,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAczE,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAczF,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAKzD,GAAgB,CAAC,eAAeuC,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBmB,EAAK1D,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKiG,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBjG,EAAKrD,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,mDAAmD,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,IAA2B9E,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBpB,EAAKlD,GAAY,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI6H,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,mDAAmD,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,IAA2B9E,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,SAAsBpB,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKnD,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,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,+BAA+B,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4I,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,GAAGb,GAAW,IAAID,GAAK,SAAS,CAACJ,GAAY,GAAgBvE,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,OAAO,EAAE,GAAG6E,GAAW,IAAIC,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeW,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAczF,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBxE,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAK/C,GAAM,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBxE,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAK/C,GAAM,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,UAAU,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewI,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAczF,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBxE,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,GAAG,IAAI,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAK/C,GAAM,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,UAAU,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOnC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBxE,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,GAAG,IAAI,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,GAAG,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAK/C,GAAM,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewI,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,GAAGV,GAAW,IAAIC,GAAK,SAAS,CAAchF,EAAK9C,GAAe,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBe,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAczF,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAczF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,+WAA+W,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BpG,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,IAAI,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,GAAG,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,IAAI,IAAI,EAAE,IAAI,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6C,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBpG,EAAK3C,GAAO,CAAC,UAAU+I,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAS,CAAczF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAK9C,GAAe,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBe,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGN,GAAW,IAAIC,GAAK,SAAS,CAAcpF,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBkC,EAAM/I,EAAgB,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcsD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAexC,KAAwBhE,EAAK2F,EAAU,CAAC,SAASY,GAAY,IAAI,CAAC,CAAC,UAAU3E,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAE8E,MAAS/E,IAAqB,GAAGE,IAAqB,GAAuB5B,EAAK0F,EAAY,CAAC,GAAG,aAAa7D,CAAW,GAAG,SAAsB7B,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9E,CAAkB,EAAE,SAAsB5B,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUvE,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS+E,GAA6B3G,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3G,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmE,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUxC,GAAkByC,CAAkB,EAAE,MAAM,OAAO,UAAUgF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE9E,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACM,EAAYC,EAAgBC,KAAyB9G,EAAK2F,EAAU,CAAC,SAASiB,GAAa,IAAI,CAAC,CAAC,UAAU5E,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAEgF,MAAUjF,IAAqB,GAAGE,IAAqB,GAAuBhC,EAAK0F,EAAY,CAAC,GAAG,aAAazD,CAAW,GAAG,SAAsBjC,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1E,CAAkB,EAAE,SAAsBhC,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUnE,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASgF,GAA6BhH,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUyD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhH,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUuE,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU5C,GAAkB6C,CAAkB,EAAE,MAAM,OAAO,UAAUiF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE/E,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBkC,EAAM/I,EAAgB,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcsD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACW,EAAYC,EAAgBC,KAAyBnH,EAAK2F,EAAU,CAAC,SAASsB,GAAa,IAAI,CAAC,CAAC,UAAU7E,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAEiF,MAAUlF,IAAqB,GAAGE,IAAqB,GAAuBpC,EAAK0F,EAAY,CAAC,GAAG,aAAarD,CAAW,GAAG,SAAsBrC,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtE,CAAkB,EAAE,SAAsBpC,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/D,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiF,GAA6BrH,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8D,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrH,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU2E,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUhD,GAAkBiD,CAAkB,EAAE,MAAM,OAAO,UAAUkF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEhF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACgB,EAAYC,EAAgBC,KAAyBxH,EAAK2F,EAAU,CAAC,SAAS2B,GAAa,IAAI,CAAC,CAAC,UAAU9E,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAEkF,MAAUnF,IAAqB,GAAGE,IAAqB,GAAuBxC,EAAK0F,EAAY,CAAC,GAAG,aAAajD,CAAW,GAAG,SAAsBzC,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUlE,CAAkB,EAAE,SAAsBxC,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU3D,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkF,GAA6B1H,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUmE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1H,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU+E,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUpD,GAAkBqD,CAAkB,EAAE,MAAM,OAAO,UAAUmF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEjF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBkC,EAAM/I,EAAgB,CAAC,iBAAiB,CAAC,QAAQ,IAAI,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcsD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACqB,EAAYC,EAAgBC,KAAyB7H,EAAK2F,EAAU,CAAC,SAASgC,GAAa,IAAI,CAAC,CAAC,UAAU/E,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAEmF,MAAUpF,IAAqB,GAAGE,IAAqB,GAAuB5C,EAAK0F,EAAY,CAAC,GAAG,aAAa7C,CAAW,GAAG,SAAsB7C,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9D,CAAkB,EAAE,SAAsB5C,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUvD,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmF,GAA6B/H,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/H,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmF,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUxD,GAAkByD,CAAkB,EAAE,MAAM,OAAO,UAAUoF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKZ,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,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,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC0B,EAAYC,EAAgBC,KAAyBlI,EAAK2F,EAAU,CAAC,SAASqC,GAAa,IAAI,CAAC,CAAC,UAAUhF,EAAmB,UAAUF,EAAmB,GAAGG,EAAY,UAAUF,CAAkB,EAAEoF,MAAUrF,IAAqB,GAAGE,IAAqB,GAAuBhD,EAAK0F,EAAY,CAAC,GAAG,aAAazC,CAAW,GAAG,SAAsBjD,EAAK0G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1D,CAAkB,EAAE,SAAsBhD,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUnD,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASoF,GAA6BpI,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,GAAG,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU6E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBpI,EAAKzC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUuF,EAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU5D,GAAkB6D,CAAkB,EAAE,MAAM,OAAO,UAAUqF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEnF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM/I,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcK,EAAK9C,GAAe,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBe,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK4F,EAA0B,CAAC,SAAsB5F,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKvC,GAAO,CAAC,UAAU,aAAa,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,EAAE,YAAY,EAAE,eAAe,GAAK,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcuC,EAAKtD,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,SAAsB8F,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc8I,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,UAAU,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,8MAA8M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAM,UAAU,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,2KAA2K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,UAAU,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qOAAqO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKtD,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,SAAsB8F,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc8I,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,UAAU,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,8MAA8M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAM,UAAU,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,2KAA2K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM9I,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcqD,EAAKjD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,UAAU,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe0I,EAAM9I,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcqD,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qOAAqO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkC,GAA6BrI,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,IAAI,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,IAAI,IAAI,IAAI,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,GAAG,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,IAAI,KAAK,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrI,EAAK3C,GAAO,CAAC,UAAUgL,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerI,EAAKtD,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBE,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBG,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,GAAGqF,GAAW,IAAIC,GAAK,SAAsBG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAczF,EAAK9C,GAAe,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBe,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK7C,EAAS,CAAC,sBAAsB,GAAK,SAAsB6C,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,0LAA0L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmG,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmC,GAA6BtI,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,GAAG,GAAGxE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtI,EAAK3C,GAAO,CAAC,UAAUiL,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetI,EAAKpC,GAAoB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBE,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,SAAsB4F,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAczF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAK9C,GAAe,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBe,EAAWgG,EAAS,CAAC,SAAsBhG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,GAAG,UAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAczF,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWxE,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,GAAG,GAAG,EAAE,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKrC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6PAA6P,QAAQ,YAAY,MAAM,OAAO,UAAU,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWxE,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKrC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,iMAAiM,QAAQ,YAAY,MAAM,OAAO,UAAU,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWxE,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKrC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,2GAA2G,QAAQ,YAAY,MAAM,OAAO,UAAU,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWxE,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAKrC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uLAAuL,QAAQ,YAAY,MAAM,OAAO,UAAU,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGnC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,SAAsBpB,EAAK4F,EAA0B,CAAC,OAAO,IAAI,MAAMxE,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,SAAsBpB,EAAKvD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBuD,EAAK6F,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBvD,EAAKlC,GAAO,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,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuI,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,wKAAwK,yHAAyH,uIAAuI,+SAA+S,uSAAuS,2VAA2V,wTAAwT,uRAAuR,mSAAmS,sfAAsf,oSAAoS,2SAA2S,kJAAkJ,2NAA2N,uNAAuN,ofAAof,+WAA+W,0GAA0G,2UAA2U,sgBAAsgB,6SAA6S,qJAAqJ,mJAAmJ,+VAA+V,4RAA4R,mSAAmS,yLAAyL,0LAA0L,wUAAwU,6TAA6T,gWAAgW,yaAAya,oTAAoT,oTAAoT,+SAA+S,6SAA6S,6HAA6H,qQAAqQ,yVAAyV,0aAA0a,qYAAqY,iYAAiY,iaAAia,kVAAkV,wRAAwR,gSAAgS,iWAAiW,6RAA6R,uQAAuQ,yTAAyT,+SAA+S,4SAA4S,ySAAyS,2QAA2Q,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,22CAA22C,8rEAA8rE,EAa5z9FC,GAAgBC,GAAQhI,GAAU8H,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,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,GAAGxM,GAAS,GAAGG,GAAoB,GAAGE,GAAc,GAAGO,GAAW,GAAGI,GAAW,GAAGI,GAAY,GAAGE,GAAa,GAAGE,GAAY,GAAGE,GAAe,GAAGG,GAAY,GAAGE,GAAY,GAAG6K,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,EAClvE,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,kBAAoB,OAAO,qBAAuB,OAAO,6BAA+B,OAAO,sBAAwB,IAAI,sBAAwB,OAAO,qBAAuB,0XAAgc,qBAAuB,OAAO,oCAAsC,4JAA0L,4BAA8B,OAAO,yBAA2B,QAAQ,yBAA2B,OAAO,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zNMII1rLe", "UkcAZJv33", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y831ta", "args", "onTapbj66xi", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerO9s2O5SeP", "withCSS", "O9s2O5SeP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Counter", "decimal", "value", "decimalValue", "direction", "stiffness", "damping", "prefix", "prefixText", "suffix", "suffixText", "color", "fontStyle", "ref", "pe", "updatedDecimalValue", "motionValue", "useMotionValue", "springValue", "useSpring", "isInView", "useInView", "ue", "latest", "u", "l", "p", "addPropertyControls", "ControlType", "props", "CounterFonts", "getFonts", "Counter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "suffix", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x9jw34lHv", "FCzUNk8zj", "QZmyCi6ep", "lfxR4tjrX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerUeNFeauCj", "withCSS", "UeNFeauCj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavFonts", "getFonts", "UEn7U9jTS_default", "NavMenuOverlayFonts", "hcXsnZxmp_default", "PhosphorFonts", "Icon", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "VideoFonts", "Video", "ImageWithFX", "Image2", "StatsFonts", "UeNFeauCj_default", "RichTextWithFX", "RichText2", "ButtonFonts", "ice_UvhW5_default", "ProjectFonts", "VvgCSmuri_default", "TickerFonts", "Ticker", "FaqSingleFonts", "O9s2O5SeP_default", "MotionSectionWithFX", "FooterFonts", "PqQtuErNZ_default", "CursorFonts", "t3kQNA4Z8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "transition2", "animation2", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "animation3", "transition3", "animation4", "animation5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition4", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "F5JM_atFVTpATeIQGL", "vKXD8iKpJTpATeIQGL", "abCVizEmiTpATeIQGL", "idTpATeIQGL", "F5JM_atFVlfbPOqUhQ", "vKXD8iKpJlfbPOqUhQ", "abCVizEmilfbPOqUhQ", "idlfbPOqUhQ", "F5JM_atFVxQGIO1WbM", "vKXD8iKpJxQGIO1WbM", "abCVizEmixQGIO1WbM", "idxQGIO1WbM", "F5JM_atFVnREqnPVWd", "vKXD8iKpJnREqnPVWd", "abCVizEminREqnPVWd", "idnREqnPVWd", "F5JM_atFVgOerhfaHQ", "vKXD8iKpJgOerhfaHQ", "abCVizEmigOerhfaHQ", "idgOerhfaHQ", "F5JM_atFVXtvyQdg_I", "vKXD8iKpJXtvyQdg_I", "abCVizEmiXtvyQdg_I", "idXtvyQdg_I", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Fv5UOj18q3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "isDisplayed1", "ref3", "elementId2", "elementId3", "ref4", "elementId4", "ref5", "router", "useRouter", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "Qiwj4Sxj4_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks4", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks5", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FramerueiKkVaj3", "withCSS", "ueiKkVaj3_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
