{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/094hDSoyWPBW5DJe3PwW/2ijhXcvXlBph7Ru9BRxo/b07XzNkyL.js", "ssg:https://framerusercontent.com/modules/ek8ZpBeMX7odsqOV44Qw/cJT7ypK5QUTG95OV892W/F9sPUxQ8V.js", "ssg:https://framerusercontent.com/modules/1Bs8ABVQSNxEsQmKSbXb/VXUHkfazKPbCJ14oOj0T/t0VHnrvFU.js", "ssg:https://framerusercontent.com/modules/mKrAdmlvUVxWCcMhOLlk/i6Fu87VN43oXZkyjj0FN/GVU6UNz6N.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 (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"Z2ML_3DTT\",\"U8UMPUrCy\"];const serializationHash=\"framer-0BRrh\";const variantClassNames={U8UMPUrCy:\"framer-v-8iit6o\",Z2ML_3DTT:\"framer-v-22d7p3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.2,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};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\":\"Z2ML_3DTT\",\"Variant 2\":\"U8UMPUrCy\"};const getProps=({height,id,opacity,opacity2,uRL,width,...props})=>{return{...props,OWWd5kS6E:opacity2??props.OWWd5kS6E??1,variant:humanReadableVariantMap[props.variant]??props.variant??\"Z2ML_3DTT\",XGiCANXtm:uRL??props.XGiCANXtm??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",yw_iag2Oy:opacity??props.yw_iag2Oy??1};};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,XGiCANXtm,yw_iag2Oy,OWWd5kS6E,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Z2ML_3DTT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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-22d7p3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Z2ML_3DTT\",ref:refBinding,style:{...style},...addPropertyOverrides({U8UMPUrCy:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-71ih7b\",\"data-framer-name\":\"right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:591,intrinsicWidth:1144,layoutDependency:layoutDependency,layoutId:\"ibrkTQt0Z\",style:{opacity:OWWd5kS6E},svg:'<svg width=\"1144\" height=\"591\" viewBox=\"0 0 1144 591\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M317.8 0L87.1378 533.94C72.176 568.574 38.0588 591 0.331543 591H1144V0H317.8Z\" fill=\"#18181C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3kc4m7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Mi8hHQgIv-container\",nodeId:\"Mi8hHQgIv\",rendersWithMotion:true,scopeId:\"b07XzNkyL\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"Mi8hHQgIv\",isMixedBorderRadius:false,layoutId:\"Mi8hHQgIv\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcType:\"URL\",srcUrl:XGiCANXtm,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\",...addPropertyOverrides({U8UMPUrCy:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xecce2\",\"data-framer-name\":\"left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:591,intrinsicWidth:955,layoutDependency:layoutDependency,layoutId:\"neYTLJEaG\",style:{opacity:yw_iag2Oy},svg:'<svg width=\"955\" height=\"591\" viewBox=\"0 0 955 591\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M954.312 0H0V591H699L954.312 0Z\" fill=\"#18181C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0BRrh.framer-iqroob, .framer-0BRrh .framer-iqroob { display: block; }\",\".framer-0BRrh.framer-22d7p3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-0BRrh .framer-71ih7b { aspect-ratio: 1.935103244837758 / 1; flex: none; height: 100%; position: absolute; right: -632px; top: 0px; width: var(--framer-aspect-ratio-supported, 1312px); z-index: 1; }\",\".framer-0BRrh .framer-3kc4m7-container { aspect-ratio: 1.7016248153618907 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 677px); position: relative; width: 100%; }\",\".framer-0BRrh .framer-xecce2 { aspect-ratio: 1.6150442477876106 / 1; flex: none; height: 100%; left: -497px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 1095px); z-index: 1; }\",\".framer-0BRrh.framer-v-8iit6o .framer-71ih7b { aspect-ratio: unset; left: calc(157.03125000000003% - 1312px / 2); right: unset; top: calc(50.03690036900371% - 100.07380073800738% / 2); width: 1312px; }\",\".framer-0BRrh.framer-v-8iit6o .framer-xecce2 { aspect-ratio: unset; left: calc(-47.482638888888864% - 1095px / 2); top: calc(50.03690036900371% - 100.07380073800738% / 2); width: 1095px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 677\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U8UMPUrCy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XGiCANXtm\":\"uRL\",\"yw_iag2Oy\":\"opacity\",\"OWWd5kS6E\":\"opacity2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerb07XzNkyL=withCSS(Component,css,\"framer-0BRrh\");export default Framerb07XzNkyL;Framerb07XzNkyL.displayName=\"Video-Transition\";Framerb07XzNkyL.defaultProps={height:677,width:1152};addPropertyControls(Framerb07XzNkyL,{variant:{options:[\"Z2ML_3DTT\",\"U8UMPUrCy\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},XGiCANXtm:{defaultValue:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",placeholder:\"../example.mp4\",title:\"URL\",type:ControlType.String},yw_iag2Oy:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity\",type:ControlType.Number},OWWd5kS6E:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity 2\",type:ControlType.Number}});addFonts(Framerb07XzNkyL,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb07XzNkyL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U8UMPUrCy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"XGiCANXtm\\\":\\\"uRL\\\",\\\"yw_iag2Oy\\\":\\\"opacity\\\",\\\"OWWd5kS6E\\\":\\\"opacity2\\\"}\",\"framerIntrinsicHeight\":\"677\",\"framerIntrinsicWidth\":\"1152\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b07XzNkyL.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const cycleOrder=[\"ueA0vGrKf\",\"YmONiXHWm\"];const serializationHash=\"framer-avj92\";const variantClassNames={ueA0vGrKf:\"framer-v-1u2luj5\",YmONiXHWm:\"framer-v-xgzbsh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const transition3={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:24};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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\":\"ueA0vGrKf\",\"Variant 2\":\"YmONiXHWm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ueA0vGrKf\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ueA0vGrKf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onEnd1o6ph81=activeVariantCallback(async(...args)=>{setVariant(\"YmONiXHWm\");});const sharedStyleClassNames=[];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,...addPropertyOverrides({YmONiXHWm:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u2luj5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ueA0vGrKf\",ref:refBinding,style:{backgroundColor:\"var(--token-8ee1b607-2a9e-4011-8e10-f40df8f5e264, rgb(19, 19, 23))\",...style},...addPropertyOverrides({YmONiXHWm:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5f88qi\",layoutDependency:layoutDependency,layoutId:\"UVHFqC1nT\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15109a6\",\"data-framer-name\":\"arrow_forward\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"o7ZFOrNzX\",style:{rotate:90},svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1073_3300\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.511719\" y=\"0.105347\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_1073_3300)\">\\n<path d=\"M16.6867 13.1053H4.51172V11.1053H16.6867L11.0867 5.50535L12.5117 4.10535L20.5117 12.1053L12.5117 20.1053L11.0867 18.7053L16.6867 13.1053Z\" fill=\"#C8D5DE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i07kjb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nN5CoW8fj-container\",nodeId:\"nN5CoW8fj\",rendersWithMotion:true,scopeId:\"F9sPUxQ8V\",style:{opacity:1},variants:{YmONiXHWm:{opacity:0}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nN5CoW8fj\",isMixedBorderRadius:false,layoutId:\"nN5CoW8fj\",loop:false,muted:true,objectFit:\"cover\",onEnd:onEnd1o6ph81,playing:true,poster:\"https://framerusercontent.com/images/6FicbXlAoYHnageE76elTR5xY.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ac0mWklgNOlB3nTHqquZFefBZEQ.mp4\",srcType:\"Upload\",srcUrl:\"https://dl.dropboxusercontent.com/scl/fi/1ad1ewz67trdbflnsh7di/Orbital-Website-Hero-Video_Landscape_002-1080p_H264-no-superintelligence.mp4?rlkey=4iwnjvzmc59i7w9iefv2d9rkv&dl=0\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r23qn5\",layoutDependency:layoutDependency,layoutId:\"QWWtjAUdj\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{YmONiXHWm:{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wl9x7i\",\"data-framer-name\":\"Superintelligence\",fill:\"black\",intrinsicHeight:720,intrinsicWidth:1280,layoutDependency:layoutDependency,layoutId:\"UvSnh71IH\",svg:'<svg width=\"1280\" height=\"720\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1048.97 0h230.83l-244.81 566.69c-15.88 36.758-52.09 60.56-92.131 60.56H778L1048.97 0Z\" fill=\"#E9311A\"/><path d=\"M311.99 293.08c-3.18 0-6.15-.39-8.91-1.17-2.76-.78-5.22-1.86-7.38-3.24-2.16-1.44-3.96-3.03-5.4-4.77-1.38-1.74-2.28-3.57-2.7-5.49l12.06-3.6c.78 2.04 2.16 3.81 4.14 5.31 1.98 1.44 4.47 2.19 7.47 2.25 3.18.06 5.76-.63 7.74-2.07 2.04-1.44 3.06-3.3 3.06-5.58 0-1.98-.81-3.63-2.43-4.95-1.56-1.38-3.72-2.43-6.48-3.15l-8.19-2.16c-3.06-.78-5.76-1.95-8.1-3.51-2.34-1.62-4.17-3.6-5.49-5.94-1.32-2.34-1.98-5.07-1.98-8.19 0-5.94 1.95-10.56 5.85-13.86 3.96-3.36 9.54-5.04 16.74-5.04 4.02 0 7.53.6 10.53 1.8 3.06 1.14 5.61 2.79 7.65 4.95s3.6 4.71 4.68 7.65l-11.97 3.69c-.72-2.04-2.04-3.78-3.96-5.22s-4.35-2.16-7.29-2.16c-3 0-5.37.69-7.11 2.07-1.68 1.38-2.52 3.33-2.52 5.85 0 1.98.66 3.54 1.98 4.68 1.38 1.14 3.24 2.01 5.58 2.61l8.28 2.07c5.4 1.32 9.6 3.69 12.6 7.11 3 3.42 4.5 7.23 4.5 11.43 0 3.72-.9 6.99-2.7 9.81-1.8 2.76-4.41 4.92-7.83 6.48-3.42 1.56-7.56 2.34-12.42 2.34Zm60.608-1.08-.72-8.28V247h11.88v45h-11.16Zm-30.51-21.96V247h11.88v23.04h-11.88Zm11.88 0c0 3 .33 5.37.99 7.11.72 1.68 1.71 2.91 2.97 3.69 1.32.72 2.79 1.08 4.41 1.08 3.12.06 5.49-.87 7.11-2.79 1.62-1.98 2.43-4.83 2.43-8.55h4.05c0 4.8-.72 8.88-2.16 12.24-1.44 3.3-3.42 5.85-5.94 7.65-2.52 1.74-5.49 2.61-8.91 2.61-3.6 0-6.66-.72-9.18-2.16-2.52-1.44-4.44-3.66-5.76-6.66-1.26-3.06-1.89-6.99-1.89-11.79v-2.43h11.88ZM393.6 310v-63h11.16l.72 8.28V310H393.6Zm25.47-16.92c-3.78 0-6.99-.96-9.63-2.88-2.58-1.92-4.56-4.65-5.94-8.19-1.38-3.54-2.07-7.71-2.07-12.51 0-4.86.69-9.03 2.07-12.51 1.38-3.54 3.36-6.27 5.94-8.19 2.64-1.92 5.85-2.88 9.63-2.88 4.14 0 7.71.96 10.71 2.88 3.06 1.92 5.43 4.65 7.11 8.19 1.68 3.48 2.52 7.65 2.52 12.51 0 4.8-.84 8.97-2.52 12.51-1.68 3.54-4.05 6.27-7.11 8.19-3 1.92-6.57 2.88-10.71 2.88Zm-3.06-10.89c2.16 0 4.05-.54 5.67-1.62 1.68-1.08 3-2.58 3.96-4.5s1.44-4.11 1.44-6.57-.48-4.65-1.44-6.57c-.9-1.92-2.19-3.39-3.87-4.41-1.62-1.08-3.51-1.62-5.67-1.62-2.04 0-3.87.54-5.49 1.62s-2.88 2.58-3.78 4.5c-.9 1.86-1.35 4.02-1.35 6.48 0 2.46.45 4.65 1.35 6.57.9 1.92 2.13 3.42 3.69 4.5 1.62 1.08 3.45 1.62 5.49 1.62Zm50.633 10.89c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13Zm46.774 3.42c0-4.86.93-8.88 2.79-12.06 1.92-3.18 4.35-5.55 7.29-7.11 3-1.56 6.12-2.34 9.36-2.34v11.52c-2.76 0-5.37.33-7.83.99-2.4.66-4.35 1.74-5.85 3.24-1.5 1.5-2.25 3.42-2.25 5.76h-3.51Zm-8.37 23.67v-45h11.88v45h-11.88Zm33.922 0v-45h11.88v45h-11.88Zm5.94-52.29c-1.8 0-3.39-.66-4.77-1.98-1.38-1.38-2.07-3-2.07-4.86 0-1.86.69-3.45 2.07-4.77 1.38-1.38 2.97-2.07 4.77-2.07 1.86 0 3.45.69 4.77 2.07 1.38 1.32 2.07 2.91 2.07 4.77 0 1.86-.69 3.48-2.07 4.86-1.32 1.32-2.91 1.98-4.77 1.98ZM551.093 292v-45h11.16l.72 8.28V292h-11.88Zm29.79 0v-23.04h11.88V292h-11.88Zm0-23.04c0-3.06-.36-5.43-1.08-7.11-.66-1.68-1.62-2.88-2.88-3.6-1.26-.78-2.73-1.17-4.41-1.17-3.06-.06-5.43.87-7.11 2.79-1.62 1.92-2.43 4.77-2.43 8.55h-3.96c0-4.8.69-8.85 2.07-12.15 1.44-3.36 3.42-5.91 5.94-7.65 2.58-1.8 5.58-2.7 9-2.7 3.54 0 6.57.72 9.09 2.16 2.52 1.44 4.44 3.69 5.76 6.75 1.32 3 1.95 6.9 1.89 11.7v2.43h-11.88Zm39.003 24.12c-4.98 0-8.76-1.23-11.34-3.69-2.52-2.46-3.78-5.97-3.78-10.53v-45.9h11.88v43.29c0 1.92.42 3.39 1.26 4.41.84.96 2.07 1.44 3.69 1.44.6 0 1.26-.12 1.98-.36.72-.3 1.47-.72 2.25-1.26l4.14 8.91c-1.44 1.08-3.06 1.95-4.86 2.61-1.74.72-3.48 1.08-5.22 1.08Zm-22.41-36V247h30.42v10.08h-30.42Zm58.73 36c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13ZM684.8 292v-63h11.88v63H684.8Zm21.248 0v-63h11.88v63h-11.88Zm21.968 0v-45h11.88v45h-11.88Zm5.94-52.29c-1.8 0-3.39-.66-4.77-1.98-1.38-1.38-2.07-3-2.07-4.86 0-1.86.69-3.45 2.07-4.77 1.38-1.38 2.97-2.07 4.77-2.07 1.86 0 3.45.69 4.77 2.07 1.38 1.32 2.07 2.91 2.07 4.77 0 1.86-.69 3.48-2.07 4.86-1.32 1.32-2.91 1.98-4.77 1.98Zm36.245 71.46c-3.42 0-6.45-.24-9.09-.72-2.64-.48-4.86-1.11-6.66-1.89-1.8-.78-3.27-1.56-4.41-2.34l4.68-9.54c.84.48 1.95 1.02 3.33 1.62 1.38.66 3.03 1.2 4.95 1.62 1.92.48 4.14.72 6.66.72 2.4 0 4.5-.48 6.3-1.44 1.86-.9 3.3-2.34 4.32-4.32 1.08-1.92 1.62-4.38 1.62-7.38V247h11.88v40.14c0 5.04-.96 9.36-2.88 12.96-1.92 3.66-4.65 6.42-8.19 8.28-3.48 1.86-7.65 2.79-12.51 2.79Zm-2.34-20.43c-4.14 0-7.74-.9-10.8-2.7-3-1.8-5.34-4.32-7.02-7.56-1.68-3.24-2.52-7.08-2.52-11.52 0-4.68.84-8.73 2.52-12.15 1.68-3.48 4.02-6.15 7.02-8.01 3.06-1.92 6.66-2.88 10.8-2.88 3.6 0 6.72.96 9.36 2.88 2.64 1.86 4.68 4.53 6.12 8.01 1.44 3.48 2.16 7.62 2.16 12.42 0 4.32-.72 8.1-2.16 11.34-1.44 3.24-3.48 5.76-6.12 7.56-2.64 1.74-5.76 2.61-9.36 2.61Zm3.42-9.99c2.04 0 3.81-.51 5.31-1.53 1.56-1.08 2.76-2.52 3.6-4.32.84-1.86 1.26-3.96 1.26-6.3 0-2.4-.45-4.5-1.35-6.3-.84-1.8-2.04-3.21-3.6-4.23-1.5-1.02-3.27-1.53-5.31-1.53-2.1 0-3.96.51-5.58 1.53s-2.88 2.43-3.78 4.23c-.9 1.8-1.38 3.9-1.44 6.3.06 2.34.54 4.44 1.44 6.3.9 1.8 2.16 3.24 3.78 4.32 1.68 1.02 3.57 1.53 5.67 1.53Zm52.163 12.33c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13ZM852.038 292v-45h11.16l.72 8.28V292h-11.88Zm29.79 0v-23.04h11.88V292h-11.88Zm0-23.04c0-3.06-.36-5.43-1.08-7.11-.66-1.68-1.62-2.88-2.88-3.6-1.26-.78-2.73-1.17-4.41-1.17-3.06-.06-5.43.87-7.11 2.79-1.62 1.92-2.43 4.77-2.43 8.55h-3.96c0-4.8.69-8.85 2.07-12.15 1.44-3.36 3.42-5.91 5.94-7.65 2.58-1.8 5.58-2.7 9-2.7 3.54 0 6.57.72 9.09 2.16 2.52 1.44 4.44 3.69 5.76 6.75 1.32 3 1.95 6.9 1.89 11.7v2.43h-11.88Zm42.152 24.12c-4.68 0-8.85-.99-12.51-2.97-3.66-2.04-6.51-4.83-8.55-8.37-2.04-3.6-3.06-7.68-3.06-12.24 0-4.62 1.02-8.7 3.06-12.24 2.04-3.54 4.86-6.3 8.46-8.28 3.6-2.04 7.74-3.06 12.42-3.06 4.5 0 8.61 1.11 12.33 3.33 3.72 2.22 6.42 5.43 8.1 9.63l-11.16 3.96c-.84-1.74-2.16-3.12-3.96-4.14-1.74-1.08-3.69-1.62-5.85-1.62-2.22 0-4.17.54-5.85 1.62-1.68 1.02-3 2.46-3.96 4.32-.96 1.86-1.44 4.02-1.44 6.48 0 2.46.48 4.62 1.44 6.48.96 1.8 2.31 3.24 4.05 4.32 1.74 1.08 3.72 1.62 5.94 1.62 2.16 0 4.11-.57 5.85-1.71 1.8-1.14 3.12-2.64 3.96-4.5l11.25 3.96c-1.74 4.26-4.47 7.56-8.19 9.9-3.66 2.34-7.77 3.51-12.33 3.51Zm46.881 0c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13ZM293.63 392v-49.5c0-4.8 1.23-8.52 3.69-11.16 2.46-2.7 6.21-4.05 11.25-4.05 1.74 0 3.57.3 5.49.9 1.98.6 3.78 1.32 5.4 2.16l-4.41 8.55c-.96-.48-1.83-.84-2.61-1.08-.78-.24-1.5-.36-2.16-.36-1.62 0-2.82.57-3.6 1.71-.78 1.08-1.17 2.85-1.17 5.31V392h-11.88Zm-7.47-35.46V347h30.42v9.54h-30.42Zm57.497 36.54c-4.56 0-8.64-.99-12.24-2.97-3.54-2.04-6.33-4.83-8.37-8.37-1.98-3.54-2.97-7.62-2.97-12.24s.99-8.7 2.97-12.24c1.98-3.54 4.74-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 4.62 0 8.7 1.02 12.24 3.06 3.54 1.98 6.3 4.74 8.28 8.28 1.98 3.54 2.97 7.62 2.97 12.24s-.99 8.7-2.97 12.24c-1.98 3.54-4.74 6.33-8.28 8.37-3.48 1.98-7.5 2.97-12.06 2.97Zm0-10.98c2.22 0 4.17-.54 5.85-1.62 1.68-1.08 2.97-2.55 3.87-4.41.96-1.92 1.44-4.11 1.44-6.57s-.48-4.62-1.44-6.48c-.96-1.92-2.31-3.42-4.05-4.5-1.68-1.08-3.63-1.62-5.85-1.62-2.16 0-4.11.54-5.85 1.62-1.68 1.08-3 2.58-3.96 4.5-.96 1.86-1.44 4.02-1.44 6.48 0 2.46.48 4.65 1.44 6.57.96 1.86 2.31 3.33 4.05 4.41 1.74 1.08 3.72 1.62 5.94 1.62Zm38.615-13.77c0-4.86.93-8.88 2.79-12.06 1.92-3.18 4.35-5.55 7.29-7.11 3-1.56 6.12-2.34 9.36-2.34v11.52c-2.76 0-5.37.33-7.83.99-2.4.66-4.35 1.74-5.85 3.24-1.5 1.5-2.25 3.42-2.25 5.76h-3.51Zm-8.37 23.67v-45h11.88v45h-11.88Zm55.457 0v-63h23.4c4.44 0 8.37.87 11.79 2.61 3.42 1.74 6.09 4.14 8.01 7.2 1.92 3 2.88 6.51 2.88 10.53 0 3.96-1.02 7.5-3.06 10.62-1.98 3.06-4.71 5.46-8.19 7.2-3.48 1.68-7.44 2.52-11.88 2.52h-10.62V392h-12.33Zm34.65 0-14.58-25.29 9.45-6.75 19.08 32.04h-13.95Zm-22.32-33.57h11.16c1.86 0 3.51-.39 4.95-1.17 1.5-.78 2.67-1.86 3.51-3.24.9-1.38 1.35-2.94 1.35-4.68 0-2.7-.99-4.89-2.97-6.57-1.92-1.68-4.41-2.52-7.47-2.52h-10.53v18.18Zm63.408 34.65c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13ZM538.191 392v-49.5c0-4.8 1.23-8.52 3.69-11.16 2.46-2.7 6.21-4.05 11.25-4.05 1.74 0 3.57.3 5.49.9 1.98.6 3.78 1.32 5.4 2.16l-4.41 8.55c-.96-.48-1.83-.84-2.61-1.08-.78-.24-1.5-.36-2.16-.36-1.62 0-2.82.57-3.6 1.71-.78 1.08-1.17 2.85-1.17 5.31V392h-11.88Zm-7.47-35.46V347h30.42v9.54h-30.42ZM568.843 392v-45h11.88v45h-11.88Zm5.94-52.29c-1.8 0-3.39-.66-4.77-1.98-1.38-1.38-2.07-3-2.07-4.86 0-1.86.69-3.45 2.07-4.77 1.38-1.38 2.97-2.07 4.77-2.07 1.86 0 3.45.69 4.77 2.07 1.38 1.32 2.07 2.91 2.07 4.77 0 1.86-.69 3.48-2.07 4.86-1.32 1.32-2.91 1.98-4.77 1.98ZM590.778 392v-45h11.16l.72 8.28V392h-11.88Zm29.79 0v-23.04h11.88V392h-11.88Zm0-23.04c0-3.06-.36-5.43-1.08-7.11-.66-1.68-1.62-2.88-2.88-3.6-1.26-.78-2.73-1.17-4.41-1.17-3.06-.06-5.43.87-7.11 2.79-1.62 1.92-2.43 4.77-2.43 8.55h-3.96c0-4.8.69-8.85 2.07-12.15 1.44-3.36 3.42-5.91 5.94-7.65 2.58-1.8 5.58-2.7 9-2.7 3.54 0 6.57.72 9.09 2.16 2.52 1.44 4.44 3.69 5.76 6.75 1.32 3 1.95 6.9 1.89 11.7v2.43h-11.88ZM641.75 392v-45h11.88v45h-11.88Zm5.94-52.29c-1.8 0-3.39-.66-4.77-1.98-1.38-1.38-2.07-3-2.07-4.86 0-1.86.69-3.45 2.07-4.77 1.38-1.38 2.97-2.07 4.77-2.07 1.86 0 3.45.69 4.77 2.07 1.38 1.32 2.07 2.91 2.07 4.77 0 1.86-.69 3.48-2.07 4.86-1.32 1.32-2.91 1.98-4.77 1.98ZM663.685 392v-45h11.16l.72 8.28V392h-11.88Zm29.79 0v-23.04h11.88V392h-11.88Zm0-23.04c0-3.06-.36-5.43-1.08-7.11-.66-1.68-1.62-2.88-2.88-3.6-1.26-.78-2.73-1.17-4.41-1.17-3.06-.06-5.43.87-7.11 2.79-1.62 1.92-2.43 4.77-2.43 8.55h-3.96c0-4.8.69-8.85 2.07-12.15 1.44-3.36 3.42-5.91 5.94-7.65 2.58-1.8 5.58-2.7 9-2.7 3.54 0 6.57.72 9.09 2.16 2.52 1.44 4.44 3.69 5.76 6.75 1.32 3 1.95 6.9 1.89 11.7v2.43h-11.88Zm40.712 42.21c-3.42 0-6.45-.24-9.09-.72-2.64-.48-4.86-1.11-6.66-1.89-1.8-.78-3.27-1.56-4.41-2.34l4.68-9.54c.84.48 1.95 1.02 3.33 1.62 1.38.66 3.03 1.2 4.95 1.62 1.92.48 4.14.72 6.66.72 2.4 0 4.5-.48 6.3-1.44 1.86-.9 3.3-2.34 4.32-4.32 1.08-1.92 1.62-4.38 1.62-7.38V347h11.88v40.14c0 5.04-.96 9.36-2.88 12.96-1.92 3.66-4.65 6.42-8.19 8.28-3.48 1.86-7.65 2.79-12.51 2.79Zm-2.34-20.43c-4.14 0-7.74-.9-10.8-2.7-3-1.8-5.34-4.32-7.02-7.56-1.68-3.24-2.52-7.08-2.52-11.52 0-4.68.84-8.73 2.52-12.15 1.68-3.48 4.02-6.15 7.02-8.01 3.06-1.92 6.66-2.88 10.8-2.88 3.6 0 6.72.96 9.36 2.88 2.64 1.86 4.68 4.53 6.12 8.01 1.44 3.48 2.16 7.62 2.16 12.42 0 4.32-.72 8.1-2.16 11.34-1.44 3.24-3.48 5.76-6.12 7.56-2.64 1.74-5.76 2.61-9.36 2.61Zm3.42-9.99c2.04 0 3.81-.51 5.31-1.53 1.56-1.08 2.76-2.52 3.6-4.32.84-1.86 1.26-3.96 1.26-6.3 0-2.4-.45-4.5-1.35-6.3-.84-1.8-2.04-3.21-3.6-4.23-1.5-1.02-3.27-1.53-5.31-1.53-2.1 0-3.96.51-5.58 1.53s-2.88 2.43-3.78 4.23c-.9 1.8-1.38 3.9-1.44 6.3.06 2.34.54 4.44 1.44 6.3.9 1.8 2.16 3.24 3.78 4.32 1.68 1.02 3.57 1.53 5.67 1.53Zm70.098 12.42c-3.72 0-7.02-.72-9.9-2.16-2.88-1.44-5.13-3.42-6.75-5.94-1.62-2.52-2.43-5.43-2.43-8.73 0-2.28.42-4.38 1.26-6.3.84-1.92 2.01-3.69 3.51-5.31a27.13 27.13 0 0 1 5.04-4.41l11.88-8.19c.96-.66 1.98-1.41 3.06-2.25a13.94 13.94 0 0 0 2.97-2.97c.9-1.2 1.35-2.55 1.35-4.05 0-1.74-.63-3.09-1.89-4.05-1.26-1.02-2.85-1.53-4.77-1.53-1.8 0-3.33.51-4.59 1.53-1.2 1.02-1.8 2.34-1.8 3.96 0 1.56.48 2.94 1.44 4.14.96 1.14 2.07 2.49 3.33 4.05l11.97 14.4 22.05 26.64h-13.86l-16.74-19.98-12.6-15.3c-1.62-2.1-2.97-3.93-4.05-5.49-1.02-1.62-1.77-3.09-2.25-4.41-.48-1.38-.72-2.76-.72-4.14 0-2.88.75-5.43 2.25-7.65 1.56-2.22 3.63-3.96 6.21-5.22 2.64-1.32 5.58-1.98 8.82-1.98 3.54 0 6.69.66 9.45 1.98 2.76 1.26 4.92 3.03 6.48 5.31 1.62 2.28 2.43 4.95 2.43 8.01 0 2.46-.63 4.74-1.89 6.84-1.26 2.04-3.12 4.11-5.58 6.21-2.4 2.1-5.34 4.35-8.82 6.75l-6.39 4.41c-.96.66-1.86 1.41-2.7 2.25-.78.84-1.41 1.8-1.89 2.88-.48 1.02-.72 2.22-.72 3.6 0 2.04.69 3.72 2.07 5.04 1.44 1.32 3.27 1.98 5.49 1.98 2.52 0 5.01-.39 7.47-1.17 2.46-.78 4.68-1.95 6.66-3.51 2.04-1.56 3.63-3.48 4.77-5.76 1.14-2.28 1.71-4.89 1.71-7.83h11.07c0 5.52-1.38 10.44-4.14 14.76-2.76 4.26-6.57 7.59-11.43 9.99-4.86 2.4-10.47 3.6-16.83 3.6ZM290.84 492v-63h23.4c4.44 0 8.37.9 11.79 2.7 3.42 1.74 6.09 4.2 8.01 7.38 1.92 3.12 2.88 6.75 2.88 10.89 0 4.08-.93 7.71-2.79 10.89-1.86 3.18-4.41 5.7-7.65 7.56-3.24 1.8-6.99 2.7-11.25 2.7h-12.06V492h-12.33Zm12.33-32.22h11.79c2.76 0 5.01-.9 6.75-2.7 1.8-1.86 2.7-4.23 2.7-7.11s-.99-5.22-2.97-7.02c-1.92-1.8-4.41-2.7-7.47-2.7h-10.8v19.53Zm58.75 33.3c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49H350.4l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13Zm56.944 28.17c-4.98 0-8.76-1.23-11.34-3.69-2.52-2.46-3.78-5.97-3.78-10.53v-45.9h11.88v43.29c0 1.92.42 3.39 1.26 4.41.84.96 2.07 1.44 3.69 1.44.6 0 1.26-.12 1.98-.36.72-.3 1.47-.72 2.25-1.26l4.14 8.91c-1.44 1.08-3.06 1.95-4.86 2.61-1.74.72-3.48 1.08-5.22 1.08Zm-22.41-36V447h30.42v10.08h-30.42Zm47.551 11.25c0-4.86.93-8.88 2.79-12.06 1.92-3.18 4.35-5.55 7.29-7.11 3-1.56 6.12-2.34 9.36-2.34v11.52c-2.76 0-5.37.33-7.83.99-2.4.66-4.35 1.74-5.85 3.24-1.5 1.5-2.25 3.42-2.25 5.76h-3.51Zm-8.37 23.67v-45h11.88v45h-11.88Zm54.351 1.08c-4.56 0-8.64-.99-12.24-2.97-3.54-2.04-6.33-4.83-8.37-8.37-1.98-3.54-2.97-7.62-2.97-12.24s.99-8.7 2.97-12.24c1.98-3.54 4.74-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 4.62 0 8.7 1.02 12.24 3.06 3.54 1.98 6.3 4.74 8.28 8.28 1.98 3.54 2.97 7.62 2.97 12.24s-.99 8.7-2.97 12.24c-1.98 3.54-4.74 6.33-8.28 8.37-3.48 1.98-7.5 2.97-12.06 2.97Zm0-10.98c2.22 0 4.17-.54 5.85-1.62 1.68-1.08 2.97-2.55 3.87-4.41.96-1.92 1.44-4.11 1.44-6.57s-.48-4.62-1.44-6.48c-.96-1.92-2.31-3.42-4.05-4.5-1.68-1.08-3.63-1.62-5.85-1.62-2.16 0-4.11.54-5.85 1.62-1.68 1.08-3 2.58-3.96 4.5-.96 1.86-1.44 4.02-1.44 6.48 0 2.46.48 4.65 1.44 6.57.96 1.86 2.31 3.33 4.05 4.41 1.74 1.08 3.72 1.62 5.94 1.62Zm59.765 10.98c-6.12 0-11.55-1.38-16.29-4.14-4.74-2.82-8.46-6.66-11.16-11.52-2.7-4.92-4.05-10.56-4.05-16.92 0-6.36 1.35-11.97 4.05-16.83 2.7-4.92 6.39-8.76 11.07-11.52 4.74-2.82 10.17-4.23 16.29-4.23 4.32 0 8.34.78 12.06 2.34 3.72 1.5 6.96 3.63 9.72 6.39 2.82 2.7 4.98 5.82 6.48 9.36l-11.43 4.23c-1.02-2.22-2.37-4.14-4.05-5.76-1.68-1.68-3.6-2.97-5.76-3.87-2.16-.96-4.5-1.44-7.02-1.44-3.66 0-6.93.93-9.81 2.79-2.82 1.8-5.04 4.29-6.66 7.47-1.56 3.18-2.34 6.87-2.34 11.07s.81 7.92 2.43 11.16c1.62 3.18 3.87 5.7 6.75 7.56 2.88 1.8 6.18 2.7 9.9 2.7 2.58 0 4.92-.48 7.02-1.44 2.16-1.02 4.05-2.4 5.67-4.14 1.68-1.74 3.03-3.75 4.05-6.03l11.43 4.14c-1.5 3.66-3.66 6.9-6.48 9.72-2.76 2.82-6 5.01-9.72 6.57-3.72 1.56-7.77 2.34-12.15 2.34Zm34.885-1.08v-63h11.88v63h-11.88Zm29.88 0v-23.04h11.88V492h-11.88Zm0-23.04c0-3.06-.36-5.43-1.08-7.11-.72-1.68-1.71-2.88-2.97-3.6-1.26-.78-2.73-1.17-4.41-1.17-3.06-.06-5.43.87-7.11 2.79-1.62 1.92-2.43 4.77-2.43 8.55h-3.96c0-4.8.69-8.85 2.07-12.15 1.44-3.36 3.42-5.91 5.94-7.65 2.58-1.8 5.58-2.7 9-2.7 3.6 0 6.63.72 9.09 2.16 2.52 1.44 4.44 3.69 5.76 6.75 1.32 3 1.98 6.9 1.98 11.7v2.43h-11.88Zm40.798 24.12c-4.44 0-8.37-.99-11.79-2.97-3.42-2.04-6.12-4.83-8.1-8.37-1.92-3.54-2.88-7.62-2.88-12.24s.99-8.7 2.97-12.24c2.04-3.54 4.8-6.3 8.28-8.28 3.54-2.04 7.59-3.06 12.15-3.06 3.96 0 7.59 1.05 10.89 3.15 3.36 2.04 6.03 5.07 8.01 9.09 2.04 3.96 3.06 8.79 3.06 14.49h-34.11l1.08-1.08c0 2.22.54 4.17 1.62 5.85 1.14 1.62 2.58 2.88 4.32 3.78 1.8.84 3.72 1.26 5.76 1.26 2.46 0 4.47-.51 6.03-1.53 1.56-1.08 2.76-2.46 3.6-4.14l10.62 4.14a22.301 22.301 0 0 1-4.95 6.57c-1.98 1.8-4.35 3.18-7.11 4.14-2.76.96-5.91 1.44-9.45 1.44Zm-9.81-28.17-1.08-1.08h21.69l-.99 1.08c0-2.16-.51-3.87-1.53-5.13-1.02-1.32-2.28-2.28-3.78-2.88-1.44-.6-2.85-.9-4.23-.9-1.38 0-2.85.3-4.41.9-1.56.6-2.91 1.56-4.05 2.88-1.08 1.26-1.62 2.97-1.62 5.13ZM674.098 492v-45h11.16l.54 5.85c1.38-2.28 3.15-3.99 5.31-5.13 2.16-1.2 4.56-1.8 7.2-1.8 3.66 0 6.72.78 9.18 2.34 2.52 1.56 4.35 3.96 5.49 7.2 1.32-3.06 3.18-5.4 5.58-7.02 2.4-1.68 5.19-2.52 8.37-2.52 5.28 0 9.3 1.68 12.06 5.04 2.76 3.3 4.14 8.4 4.14 15.3V492h-11.88v-23.04c0-3.06-.33-5.43-.99-7.11-.66-1.68-1.56-2.88-2.7-3.6-1.14-.78-2.49-1.17-4.05-1.17-2.88-.06-5.1.87-6.66 2.79-1.56 1.92-2.34 4.77-2.34 8.55V492h-11.88v-23.04c0-3.06-.33-5.43-.99-7.11-.6-1.68-1.5-2.88-2.7-3.6-1.14-.78-2.49-1.17-4.05-1.17-2.88-.06-5.1.87-6.66 2.79-1.5 1.92-2.25 4.77-2.25 8.55V492h-11.88Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-avj92.framer-180thvs, .framer-avj92 .framer-180thvs { display: block; }\",\".framer-avj92.framer-1u2luj5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-avj92 .framer-5f88qi { aspect-ratio: 1 / 1; bottom: 32px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; overflow: hidden; position: absolute; width: 32px; z-index: 2; }\",\".framer-avj92 .framer-15109a6 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-avj92 .framer-1i07kjb-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 100%; z-index: 1; }\",\".framer-avj92 .framer-1r23qn5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 50%; z-index: 0; }\",\".framer-avj92 .framer-1wl9x7i { aspect-ratio: 1.7777777777777777 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"YmONiXHWm\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerF9sPUxQ8V=withCSS(Component,css,\"framer-avj92\");export default FramerF9sPUxQ8V;FramerF9sPUxQ8V.displayName=\"video - hero\";FramerF9sPUxQ8V.defaultProps={height:720,width:1280};addPropertyControls(FramerF9sPUxQ8V,{variant:{options:[\"ueA0vGrKf\",\"YmONiXHWm\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerF9sPUxQ8V,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF9sPUxQ8V\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"720\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"YmONiXHWm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F9sPUxQ8V.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const cycleOrder=[\"X6S3FV3Hc\",\"UmJDvlpr3\"];const serializationHash=\"framer-BQP8j\";const variantClassNames={UmJDvlpr3:\"framer-v-1csrbjf\",X6S3FV3Hc:\"framer-v-1xmnzy0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:24};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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\":\"X6S3FV3Hc\",\"Variant 2\":\"UmJDvlpr3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"X6S3FV3Hc\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"X6S3FV3Hc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onEnd1eau2pe=activeVariantCallback(async(...args)=>{setVariant(\"UmJDvlpr3\");});const sharedStyleClassNames=[];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-1xmnzy0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"X6S3FV3Hc\",ref:refBinding,style:{backgroundColor:\"var(--token-8ee1b607-2a9e-4011-8e10-f40df8f5e264, rgb(19, 19, 23))\",...style},...addPropertyOverrides({UmJDvlpr3:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15gntm9\",layoutDependency:layoutDependency,layoutId:\"t2vake2sT\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-121nzeu\",\"data-framer-name\":\"arrow_forward\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"cxZBKPG0X\",style:{rotate:90},svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1073_3300\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.511719\" y=\"0.105347\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_1073_3300)\">\\n<path d=\"M16.6867 13.1053H4.51172V11.1053H16.6867L11.0867 5.50535L12.5117 4.10535L20.5117 12.1053L12.5117 20.1053L11.0867 18.7053L16.6867 13.1053Z\" fill=\"#C8D5DE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1et29f8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JIb6EKMws-container\",nodeId:\"JIb6EKMws\",rendersWithMotion:true,scopeId:\"t0VHnrvFU\",style:{opacity:1},variants:{UmJDvlpr3:{opacity:0}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JIb6EKMws\",isMixedBorderRadius:false,layoutId:\"JIb6EKMws\",loop:false,muted:true,objectFit:\"cover\",onEnd:onEnd1eau2pe,playing:true,poster:\"https://framerusercontent.com/images/6tuvD81bDRePnaO14PpjeEaIgn8.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/kdXicMsAqi2Y1fIfW30Egmhs0fM.mp4\",srcType:\"Upload\",srcUrl:\"https://dl.dropboxusercontent.com/scl/fi/kpvjk90swlo97sv3e1f8d/Orbital-Website-Hero-Video_Portrait_002-1080p_H264-no-superintelligence.mp4?rlkey=7b0srwxtc6aevo8hjah2iugje&dl=0\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h591v0\",layoutDependency:layoutDependency,layoutId:\"oiRcsY7_T\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{UmJDvlpr3:{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g2mr3w\",\"data-framer-name\":\"Superintelligence-mobile\",fill:\"black\",intrinsicHeight:720,intrinsicWidth:406,layoutDependency:layoutDependency,layoutId:\"wUuMJ_Bxy\",svg:'<svg width=\"406\" height=\"720\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M329.8 0H523L318.097 474.312C304.806 505.078 274.499 525 240.985 525H103L329.8 0Z\" fill=\"#E9311A\"/><path d=\"M57.44 326.48c-1.413 0-2.733-.173-3.96-.52-1.227-.347-2.32-.827-3.28-1.44-.96-.64-1.76-1.347-2.4-2.12-.613-.773-1.013-1.587-1.2-2.44l5.36-1.6c.347.907.96 1.693 1.84 2.36.88.64 1.987.973 3.32 1 1.413.027 2.56-.28 3.44-.92.907-.64 1.36-1.467 1.36-2.48 0-.88-.36-1.613-1.08-2.2-.693-.613-1.653-1.08-2.88-1.4l-3.64-.96c-1.36-.347-2.56-.867-3.6-1.56-1.04-.72-1.853-1.6-2.44-2.64s-.88-2.253-.88-3.64c0-2.64.867-4.693 2.6-6.16 1.76-1.493 4.24-2.24 7.44-2.24 1.787 0 3.347.267 4.68.8 1.36.507 2.493 1.24 3.4 2.2.907.96 1.6 2.093 2.08 3.4l-5.32 1.64c-.32-.907-.907-1.68-1.76-2.32-.853-.64-1.933-.96-3.24-.96-1.333 0-2.387.307-3.16.92-.747.613-1.12 1.48-1.12 2.6 0 .88.293 1.573.88 2.08.613.507 1.44.893 2.48 1.16l3.68.92c2.4.587 4.267 1.64 5.6 3.16 1.333 1.52 2 3.213 2 5.08 0 1.653-.4 3.107-1.2 4.36-.8 1.227-1.96 2.187-3.48 2.88-1.52.693-3.36 1.04-5.52 1.04Zm26.937-.48-.32-3.68V306h5.28v20h-4.96Zm-13.56-9.76V306h5.28v10.24h-5.28Zm5.28 0c0 1.333.147 2.387.44 3.16.32.747.76 1.293 1.32 1.64.587.32 1.24.48 1.96.48 1.387.027 2.44-.387 3.16-1.24.72-.88 1.08-2.147 1.08-3.8h1.8c0 2.133-.32 3.947-.96 5.44-.64 1.467-1.52 2.6-2.64 3.4-1.12.773-2.44 1.16-3.96 1.16-1.6 0-2.96-.32-4.08-.96-1.12-.64-1.974-1.627-2.56-2.96-.56-1.36-.84-3.107-.84-5.24v-1.08h5.28ZM93.71 334v-28h4.96l.32 3.68V334h-5.28Zm11.32-7.52c-1.68 0-3.106-.427-4.28-1.28-1.146-.853-2.026-2.067-2.64-3.64-.613-1.573-.92-3.427-.92-5.56 0-2.16.307-4.013.92-5.56.614-1.573 1.494-2.787 2.64-3.64 1.174-.853 2.6-1.28 4.28-1.28 1.84 0 3.427.427 4.76 1.28 1.36.853 2.414 2.067 3.16 3.64.747 1.547 1.12 3.4 1.12 5.56 0 2.133-.373 3.987-1.12 5.56-.746 1.573-1.8 2.787-3.16 3.64-1.333.853-2.92 1.28-4.76 1.28Zm-1.36-4.84c.96 0 1.8-.24 2.52-.72.747-.48 1.334-1.147 1.76-2 .427-.853.64-1.827.64-2.92s-.213-2.067-.64-2.92c-.4-.853-.973-1.507-1.72-1.96-.72-.48-1.56-.72-2.52-.72-.906 0-1.72.24-2.44.72s-1.28 1.147-1.68 2c-.4.827-.6 1.787-.6 2.88s.2 2.067.6 2.92c.4.853.947 1.52 1.64 2 .72.48 1.534.72 2.44.72Zm22.504 4.84c-1.974 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.854-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.906-1.573 2.133-2.8 3.68-3.68 1.573-.907 3.373-1.36 5.4-1.36 1.76 0 3.373.467 4.84 1.4 1.493.907 2.68 2.253 3.56 4.04.906 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.277 5.277 0 0 0 1.92 1.68c.8.373 1.653.56 2.56.56 1.093 0 1.986-.227 2.68-.68a4.843 4.843 0 0 0 1.6-1.84l4.72 1.84a9.928 9.928 0 0 1-2.2 2.92c-.88.8-1.934 1.413-3.16 1.84-1.227.427-2.627.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.227-1.72-.68-2.28a3.954 3.954 0 0 0-1.68-1.28 4.862 4.862 0 0 0-1.88-.4c-.614 0-1.267.133-1.96.4a4.467 4.467 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28Zm20.788 1.52c0-2.16.413-3.947 1.24-5.36.853-1.413 1.933-2.467 3.24-3.16 1.333-.693 2.72-1.04 4.16-1.04v5.12a13.39 13.39 0 0 0-3.48.44c-1.067.293-1.933.773-2.6 1.44-.667.667-1 1.52-1 2.56h-1.56Zm-3.72 10.52v-20h5.28v20h-5.28Zm15.076 0v-20h5.28v20h-5.28Zm2.64-23.24c-.8 0-1.506-.293-2.12-.88-.613-.613-.92-1.333-.92-2.16 0-.827.307-1.533.92-2.12.614-.613 1.32-.92 2.12-.92.827 0 1.534.307 2.12.92.614.587.92 1.293.92 2.12 0 .827-.306 1.547-.92 2.16a2.887 2.887 0 0 1-2.12.88Zm7.109 23.24v-20h4.96l.32 3.68V326h-5.28Zm13.24 0v-10.24h5.28V326h-5.28Zm0-10.24c0-1.36-.16-2.413-.48-3.16-.293-.747-.72-1.28-1.28-1.6-.56-.347-1.213-.52-1.96-.52-1.36-.027-2.413.387-3.16 1.24-.72.853-1.08 2.12-1.08 3.8h-1.76c0-2.133.307-3.933.92-5.4.64-1.493 1.52-2.627 2.64-3.4 1.147-.8 2.48-1.2 4-1.2 1.573 0 2.92.32 4.04.96 1.12.64 1.973 1.64 2.56 3 .587 1.333.867 3.067.84 5.2v1.08h-5.28Zm17.334 10.72c-2.213 0-3.893-.547-5.04-1.64-1.12-1.093-1.68-2.653-1.68-4.68v-20.4h5.28V319c0 .853.187 1.507.56 1.96.374.427.92.64 1.64.64.267 0 .56-.053.88-.16.32-.133.654-.32 1-.56l1.84 3.96c-.64.48-1.36.867-2.16 1.16-.773.32-1.546.48-2.32.48Zm-9.96-16V306h13.52v4.48h-13.52Zm26.103 16c-1.974 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.854-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.906-1.573 2.133-2.8 3.68-3.68 1.573-.907 3.373-1.36 5.4-1.36 1.76 0 3.373.467 4.84 1.4 1.493.907 2.68 2.253 3.56 4.04.906 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.277 5.277 0 0 0 1.92 1.68c.8.373 1.653.56 2.56.56 1.093 0 1.986-.227 2.68-.68a4.843 4.843 0 0 0 1.6-1.84l4.72 1.84a9.928 9.928 0 0 1-2.2 2.92c-.88.8-1.934 1.413-3.16 1.84-1.227.427-2.627.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.227-1.72-.68-2.28a3.954 3.954 0 0 0-1.68-1.28 4.862 4.862 0 0 0-1.88-.4c-.614 0-1.267.133-1.96.4a4.467 4.467 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28ZM223.133 326v-28h5.28v28h-5.28Zm9.444 0v-28h5.28v28h-5.28Zm9.764 0v-20h5.28v20h-5.28Zm2.64-23.24c-.8 0-1.507-.293-2.12-.88-.614-.613-.92-1.333-.92-2.16 0-.827.306-1.533.92-2.12.613-.613 1.32-.92 2.12-.92.826 0 1.533.307 2.12.92.613.587.92 1.293.92 2.12 0 .827-.307 1.547-.92 2.16a2.89 2.89 0 0 1-2.12.88Zm16.108 31.76c-1.52 0-2.866-.107-4.04-.32-1.173-.213-2.16-.493-2.96-.84-.8-.347-1.453-.693-1.96-1.04l2.08-4.24c.374.213.867.453 1.48.72.614.293 1.347.533 2.2.72.854.213 1.84.32 2.96.32 1.067 0 2-.213 2.8-.64.827-.4 1.467-1.04 1.92-1.92.48-.853.72-1.947.72-3.28v-18h5.28v17.84c0 2.24-.426 4.16-1.28 5.76-.853 1.627-2.066 2.853-3.64 3.68-1.546.827-3.4 1.24-5.56 1.24Zm-1.04-9.08c-1.84 0-3.44-.4-4.8-1.2-1.333-.8-2.373-1.92-3.12-3.36-.746-1.44-1.12-3.147-1.12-5.12 0-2.08.374-3.88 1.12-5.4.747-1.547 1.787-2.733 3.12-3.56 1.36-.853 2.96-1.28 4.8-1.28 1.6 0 2.987.427 4.16 1.28 1.174.827 2.08 2.013 2.72 3.56.64 1.547.96 3.387.96 5.52 0 1.92-.32 3.6-.96 5.04-.64 1.44-1.546 2.56-2.72 3.36-1.173.773-2.56 1.16-4.16 1.16Zm1.52-4.44c.907 0 1.694-.227 2.36-.68a4.696 4.696 0 0 0 1.6-1.92c.374-.827.56-1.76.56-2.8 0-1.067-.2-2-.6-2.8-.373-.8-.906-1.427-1.6-1.88-.666-.453-1.453-.68-2.36-.68-.933 0-1.76.227-2.48.68a4.597 4.597 0 0 0-1.68 1.88c-.4.8-.613 1.733-.64 2.8.027 1.04.24 1.973.64 2.8.4.8.96 1.44 1.68 1.92.747.453 1.587.68 2.52.68Zm23.184 5.48c-1.974 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.854-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.906-1.573 2.133-2.8 3.68-3.68 1.573-.907 3.373-1.36 5.4-1.36 1.76 0 3.373.467 4.84 1.4 1.493.907 2.68 2.253 3.56 4.04.906 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.277 5.277 0 0 0 1.92 1.68c.8.373 1.653.56 2.56.56 1.093 0 1.986-.227 2.68-.68a4.843 4.843 0 0 0 1.6-1.84l4.72 1.84a9.928 9.928 0 0 1-2.2 2.92c-.88.8-1.934 1.413-3.16 1.84-1.227.427-2.627.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.227-1.72-.68-2.28a3.954 3.954 0 0 0-1.68-1.28 4.862 4.862 0 0 0-1.88-.4c-.614 0-1.267.133-1.96.4a4.467 4.467 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28ZM297.461 326v-20h4.96l.32 3.68V326h-5.28Zm13.24 0v-10.24h5.28V326h-5.28Zm0-10.24c0-1.36-.16-2.413-.48-3.16-.293-.747-.72-1.28-1.28-1.6-.56-.347-1.213-.52-1.96-.52-1.36-.027-2.413.387-3.16 1.24-.72.853-1.08 2.12-1.08 3.8h-1.76c0-2.133.307-3.933.92-5.4.64-1.493 1.52-2.627 2.64-3.4 1.147-.8 2.48-1.2 4-1.2 1.574 0 2.92.32 4.04.96 1.12.64 1.974 1.64 2.56 3 .587 1.333.867 3.067.84 5.2v1.08h-5.28Zm18.735 10.72c-2.08 0-3.934-.44-5.56-1.32-1.627-.907-2.894-2.147-3.8-3.72-.907-1.6-1.36-3.413-1.36-5.44 0-2.053.453-3.867 1.36-5.44a9.592 9.592 0 0 1 3.76-3.68c1.6-.907 3.44-1.36 5.52-1.36 2 0 3.826.493 5.48 1.48 1.653.987 2.853 2.413 3.6 4.28l-4.96 1.76c-.374-.773-.96-1.387-1.76-1.84-.774-.48-1.64-.72-2.6-.72-.987 0-1.854.24-2.6.72-.747.453-1.334 1.093-1.76 1.92-.427.827-.64 1.787-.64 2.88s.213 2.053.64 2.88c.426.8 1.026 1.44 1.8 1.92.773.48 1.653.72 2.64.72a4.64 4.64 0 0 0 2.6-.76c.8-.507 1.386-1.173 1.76-2l5 1.76c-.774 1.893-1.987 3.36-3.64 4.4-1.627 1.04-3.454 1.56-5.48 1.56Zm20.836 0c-1.974 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.854-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.906-1.573 2.133-2.8 3.68-3.68 1.573-.907 3.373-1.36 5.4-1.36 1.76 0 3.373.467 4.84 1.4 1.493.907 2.68 2.253 3.56 4.04.906 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.277 5.277 0 0 0 1.92 1.68c.8.373 1.653.56 2.56.56 1.093 0 1.986-.227 2.68-.68a4.843 4.843 0 0 0 1.6-1.84l4.72 1.84a9.928 9.928 0 0 1-2.2 2.92c-.88.8-1.934 1.413-3.16 1.84-1.227.427-2.627.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.227-1.72-.68-2.28a3.954 3.954 0 0 0-1.68-1.28 4.862 4.862 0 0 0-1.88-.4c-.614 0-1.267.133-1.96.4a4.467 4.467 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28ZM49.28 374v-22c0-2.133.547-3.787 1.64-4.96 1.093-1.2 2.76-1.8 5-1.8.773 0 1.587.133 2.44.4.88.267 1.68.587 2.4.96l-1.96 3.8a7.775 7.775 0 0 0-1.16-.48 3.272 3.272 0 0 0-.96-.16c-.72 0-1.253.253-1.6.76-.347.48-.52 1.267-.52 2.36V374h-5.28Zm-3.32-15.76V354h13.52v4.24H45.96Zm25.554 16.24c-2.026 0-3.84-.44-5.44-1.32a9.966 9.966 0 0 1-3.72-3.72c-.88-1.573-1.32-3.387-1.32-5.44 0-2.053.44-3.867 1.32-5.44a9.393 9.393 0 0 1 3.68-3.68c1.574-.907 3.374-1.36 5.4-1.36 2.054 0 3.867.453 5.44 1.36a9.394 9.394 0 0 1 3.68 3.68c.88 1.573 1.32 3.387 1.32 5.44 0 2.053-.44 3.867-1.32 5.44a9.675 9.675 0 0 1-3.68 3.72c-1.546.88-3.333 1.32-5.36 1.32Zm0-4.88c.987 0 1.854-.24 2.6-.72a4.723 4.723 0 0 0 1.72-1.96c.427-.853.64-1.827.64-2.92s-.213-2.053-.64-2.88a4.843 4.843 0 0 0-1.8-2c-.746-.48-1.613-.72-2.6-.72-.96 0-1.826.24-2.6.72-.746.48-1.333 1.147-1.76 2-.426.827-.64 1.787-.64 2.88s.214 2.067.64 2.92a4.908 4.908 0 0 0 1.8 1.96c.774.48 1.654.72 2.64.72Zm17.163-6.12c0-2.16.413-3.947 1.24-5.36.853-1.413 1.933-2.467 3.24-3.16 1.333-.693 2.72-1.04 4.16-1.04v5.12a13.39 13.39 0 0 0-3.48.44c-1.067.293-1.934.773-2.6 1.44-.667.667-1 1.52-1 2.56h-1.56ZM84.957 374v-20h5.28v20h-5.28Zm24.647 0v-28h10.4c1.973 0 3.72.387 5.24 1.16 1.52.773 2.707 1.84 3.56 3.2.853 1.333 1.28 2.893 1.28 4.68 0 1.76-.453 3.333-1.36 4.72-.88 1.36-2.093 2.427-3.64 3.2-1.547.747-3.307 1.12-5.28 1.12h-4.72V374h-5.48Zm15.4 0-6.48-11.24 4.2-3 8.48 14.24h-6.2Zm-9.92-14.92h4.96c.827 0 1.56-.173 2.2-.52a3.878 3.878 0 0 0 1.56-1.44c.4-.613.6-1.307.6-2.08 0-1.2-.44-2.173-1.32-2.92-.853-.747-1.96-1.12-3.32-1.12h-4.68v8.08Zm28.181 15.4c-1.973 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.853-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.907-1.573 2.134-2.8 3.68-3.68 1.574-.907 3.374-1.36 5.4-1.36 1.76 0 3.374.467 4.84 1.4 1.494.907 2.68 2.253 3.56 4.04.907 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.293 5.293 0 0 0 1.92 1.68c.8.373 1.654.56 2.56.56 1.094 0 1.987-.227 2.68-.68a4.826 4.826 0 0 0 1.6-1.84l4.72 1.84a9.91 9.91 0 0 1-2.2 2.92c-.88.8-1.933 1.413-3.16 1.84-1.226.427-2.626.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.226-1.72-.68-2.28a3.942 3.942 0 0 0-1.68-1.28 4.858 4.858 0 0 0-1.88-.4c-.613 0-1.266.133-1.96.4a4.48 4.48 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28ZM157.974 374v-22c0-2.133.546-3.787 1.64-4.96 1.093-1.2 2.76-1.8 5-1.8.773 0 1.586.133 2.44.4.88.267 1.68.587 2.4.96l-1.96 3.8a7.82 7.82 0 0 0-1.16-.48 3.275 3.275 0 0 0-.96-.16c-.72 0-1.254.253-1.6.76-.347.48-.52 1.267-.52 2.36V374h-5.28Zm-3.32-15.76V354h13.52v4.24h-13.52ZM171.597 374v-20h5.28v20h-5.28Zm2.64-23.24c-.8 0-1.507-.293-2.12-.88-.613-.613-.92-1.333-.92-2.16 0-.827.307-1.533.92-2.12.613-.613 1.32-.92 2.12-.92.827 0 1.533.307 2.12.92.613.587.92 1.293.92 2.12 0 .827-.307 1.547-.92 2.16a2.888 2.888 0 0 1-2.12.88Zm7.109 23.24v-20h4.96l.32 3.68V374h-5.28Zm13.24 0v-10.24h5.28V374h-5.28Zm0-10.24c0-1.36-.16-2.413-.48-3.16-.294-.747-.72-1.28-1.28-1.6-.56-.347-1.214-.52-1.96-.52-1.36-.027-2.414.387-3.16 1.24-.72.853-1.08 2.12-1.08 3.8h-1.76c0-2.133.306-3.933.92-5.4.64-1.493 1.52-2.627 2.64-3.4 1.146-.8 2.48-1.2 4-1.2 1.573 0 2.92.32 4.04.96 1.12.64 1.973 1.64 2.56 3 .586 1.333.866 3.067.84 5.2v1.08h-5.28ZM204 374v-20h5.28v20H204Zm2.64-23.24c-.8 0-1.507-.293-2.12-.88-.613-.613-.92-1.333-.92-2.16 0-.827.307-1.533.92-2.12.613-.613 1.32-.92 2.12-.92.827 0 1.533.307 2.12.92.613.587.92 1.293.92 2.12 0 .827-.307 1.547-.92 2.16a2.888 2.888 0 0 1-2.12.88Zm7.109 23.24v-20h4.96l.32 3.68V374h-5.28Zm13.24 0v-10.24h5.28V374h-5.28Zm0-10.24c0-1.36-.16-2.413-.48-3.16-.294-.747-.72-1.28-1.28-1.6-.56-.347-1.214-.52-1.96-.52-1.36-.027-2.414.387-3.16 1.24-.72.853-1.08 2.12-1.08 3.8h-1.76c0-2.133.306-3.933.92-5.4.64-1.493 1.52-2.627 2.64-3.4 1.146-.8 2.48-1.2 4-1.2 1.573 0 2.92.32 4.04.96 1.12.64 1.973 1.64 2.56 3 .586 1.333.866 3.067.84 5.2v1.08h-5.28Zm18.094 18.76c-1.52 0-2.867-.107-4.04-.32-1.173-.213-2.16-.493-2.96-.84-.8-.347-1.453-.693-1.96-1.04l2.08-4.24c.373.213.867.453 1.48.72.613.293 1.347.533 2.2.72.853.213 1.84.32 2.96.32 1.067 0 2-.213 2.8-.64.827-.4 1.467-1.04 1.92-1.92.48-.853.72-1.947.72-3.28v-18h5.28v17.84c0 2.24-.427 4.16-1.28 5.76-.853 1.627-2.067 2.853-3.64 3.68-1.547.827-3.4 1.24-5.56 1.24Zm-1.04-9.08c-1.84 0-3.44-.4-4.8-1.2-1.333-.8-2.373-1.92-3.12-3.36-.747-1.44-1.12-3.147-1.12-5.12 0-2.08.373-3.88 1.12-5.4.747-1.547 1.787-2.733 3.12-3.56 1.36-.853 2.96-1.28 4.8-1.28 1.6 0 2.987.427 4.16 1.28 1.173.827 2.08 2.013 2.72 3.56.64 1.547.96 3.387.96 5.52 0 1.92-.32 3.6-.96 5.04-.64 1.44-1.547 2.56-2.72 3.36-1.173.773-2.56 1.16-4.16 1.16Zm1.52-4.44c.907 0 1.693-.227 2.36-.68a4.704 4.704 0 0 0 1.6-1.92c.373-.827.56-1.76.56-2.8 0-1.067-.2-2-.6-2.8-.373-.8-.907-1.427-1.6-1.88-.667-.453-1.453-.68-2.36-.68-.933 0-1.76.227-2.48.68a4.597 4.597 0 0 0-1.68 1.88c-.4.8-.613 1.733-.64 2.8.027 1.04.24 1.973.64 2.8.4.8.96 1.44 1.68 1.92.747.453 1.587.68 2.52.68Zm31.155 5.52c-1.654 0-3.12-.32-4.4-.96-1.28-.64-2.28-1.52-3-2.64-.72-1.12-1.08-2.413-1.08-3.88 0-1.013.186-1.947.56-2.8a8.431 8.431 0 0 1 1.56-2.36c.666-.747 1.413-1.4 2.24-1.96l5.28-3.64c.426-.293.88-.627 1.36-1a6.211 6.211 0 0 0 1.32-1.32c.4-.533.6-1.133.6-1.8 0-.773-.28-1.373-.84-1.8-.56-.453-1.267-.68-2.12-.68-.8 0-1.48.227-2.04.68-.534.453-.8 1.04-.8 1.76 0 .693.213 1.307.64 1.84.426.507.92 1.107 1.48 1.8l5.32 6.4 9.8 11.84h-6.16l-7.44-8.88-5.6-6.8a60.087 60.087 0 0 1-1.8-2.44c-.454-.72-.787-1.373-1-1.96a5.553 5.553 0 0 1-.32-1.84c0-1.28.333-2.413 1-3.4.693-.987 1.613-1.76 2.76-2.32 1.173-.587 2.48-.88 3.92-.88 1.573 0 2.973.293 4.2.88 1.226.56 2.186 1.347 2.88 2.36.72 1.013 1.08 2.2 1.08 3.56 0 1.093-.28 2.107-.84 3.04-.56.907-1.387 1.827-2.48 2.76-1.067.933-2.374 1.933-3.92 3l-2.84 1.96a8.488 8.488 0 0 0-1.2 1c-.347.373-.627.8-.84 1.28-.214.453-.32.987-.32 1.6 0 .907.306 1.653.92 2.24.64.587 1.453.88 2.44.88 1.12 0 2.226-.173 3.32-.52a9.28 9.28 0 0 0 2.96-1.56 7.297 7.297 0 0 0 2.12-2.56c.506-1.013.76-2.173.76-3.48h4.92c0 2.453-.614 4.64-1.84 6.56-1.227 1.893-2.92 3.373-5.08 4.44-2.16 1.067-4.654 1.6-7.48 1.6ZM48.04 422v-28h10.4c1.973 0 3.72.4 5.24 1.2 1.52.773 2.707 1.867 3.56 3.28.853 1.387 1.28 3 1.28 4.84 0 1.813-.413 3.427-1.24 4.84a9.142 9.142 0 0 1-3.4 3.36c-1.44.8-3.107 1.2-5 1.2h-5.36V422h-5.48Zm5.48-14.32h5.24c1.227 0 2.227-.4 3-1.2.8-.827 1.2-1.88 1.2-3.16 0-1.28-.44-2.32-1.32-3.12-.853-.8-1.96-1.2-3.32-1.2h-4.8v8.68Zm26.11 14.8c-1.972 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.852-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.908-1.573 2.134-2.8 3.68-3.68 1.574-.907 3.374-1.36 5.4-1.36 1.76 0 3.374.467 4.84 1.4 1.494.907 2.68 2.253 3.56 4.04.908 1.76 1.36 3.907 1.36 6.44H74.51l.48-.48c0 .987.24 1.853.72 2.6a5.289 5.289 0 0 0 1.92 1.68c.8.373 1.654.56 2.56.56 1.094 0 1.988-.227 2.68-.68a4.834 4.834 0 0 0 1.6-1.84l4.72 1.84a9.915 9.915 0 0 1-2.2 2.92c-.88.8-1.932 1.413-3.16 1.84-1.226.427-2.626.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.226-1.72-.68-2.28a3.945 3.945 0 0 0-1.68-1.28 4.86 4.86 0 0 0-1.88-.4c-.612 0-1.266.133-1.96.4a4.476 4.476 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28Zm25.309 12.52c-2.213 0-3.893-.547-5.04-1.64-1.12-1.093-1.68-2.653-1.68-4.68v-20.4h5.28V415c0 .853.187 1.507.56 1.96.374.427.92.64 1.64.64.267 0 .56-.053.88-.16.32-.133.654-.32 1-.56l1.84 3.96c-.64.48-1.36.867-2.16 1.16-.773.32-1.546.48-2.32.48Zm-9.96-16V402h13.52v4.48h-13.52Zm21.134 5c0-2.16.413-3.947 1.24-5.36.853-1.413 1.933-2.467 3.24-3.16 1.333-.693 2.72-1.04 4.16-1.04v5.12a13.39 13.39 0 0 0-3.48.44c-1.067.293-1.933.773-2.6 1.44-.667.667-1 1.52-1 2.56h-1.56Zm-3.72 10.52v-20h5.28v20h-5.28Zm24.156.48c-2.026 0-3.84-.44-5.44-1.32a9.972 9.972 0 0 1-3.72-3.72c-.88-1.573-1.32-3.387-1.32-5.44 0-2.053.44-3.867 1.32-5.44a9.396 9.396 0 0 1 3.68-3.68c1.574-.907 3.374-1.36 5.4-1.36 2.054 0 3.867.453 5.44 1.36a9.39 9.39 0 0 1 3.68 3.68c.88 1.573 1.32 3.387 1.32 5.44 0 2.053-.44 3.867-1.32 5.44a9.67 9.67 0 0 1-3.68 3.72c-1.546.88-3.333 1.32-5.36 1.32Zm0-4.88c.987 0 1.854-.24 2.6-.72a4.72 4.72 0 0 0 1.72-1.96c.427-.853.64-1.827.64-2.92s-.213-2.053-.64-2.88a4.843 4.843 0 0 0-1.8-2c-.746-.48-1.613-.72-2.6-.72-.96 0-1.826.24-2.6.72-.746.48-1.333 1.147-1.76 2-.426.827-.64 1.787-.64 2.88s.214 2.067.64 2.92a4.913 4.913 0 0 0 1.8 1.96c.774.48 1.654.72 2.64.72Zm26.563 4.88c-2.72 0-5.134-.613-7.24-1.84a13.448 13.448 0 0 1-4.96-5.12c-1.2-2.187-1.8-4.693-1.8-7.52s.6-5.32 1.8-7.48c1.2-2.187 2.84-3.893 4.92-5.12 2.106-1.253 4.52-1.88 7.24-1.88 1.92 0 3.706.347 5.36 1.04a12.823 12.823 0 0 1 4.32 2.84 12.424 12.424 0 0 1 2.88 4.16l-5.08 1.88a8.391 8.391 0 0 0-1.8-2.56 7.87 7.87 0 0 0-2.56-1.72c-.96-.427-2-.64-3.12-.64-1.627 0-3.08.413-4.36 1.24-1.254.8-2.24 1.907-2.96 3.32-.694 1.413-1.04 3.053-1.04 4.92s.36 3.52 1.08 4.96c.72 1.413 1.72 2.533 3 3.36 1.28.8 2.746 1.2 4.4 1.2 1.146 0 2.186-.213 3.12-.64a8.189 8.189 0 0 0 2.52-1.84 9.304 9.304 0 0 0 1.8-2.68l5.08 1.84a13.058 13.058 0 0 1-2.88 4.32 13.032 13.032 0 0 1-4.32 2.92c-1.654.693-3.454 1.04-5.4 1.04Zm15.504-.48v-28h5.28v28h-5.28Zm13.28 0v-10.24h5.28V422h-5.28Zm0-10.24c0-1.36-.16-2.413-.48-3.16-.32-.747-.76-1.28-1.32-1.6-.56-.347-1.213-.52-1.96-.52-1.36-.027-2.413.387-3.16 1.24-.72.853-1.08 2.12-1.08 3.8h-1.76c0-2.133.307-3.933.92-5.4.64-1.493 1.52-2.627 2.64-3.4 1.147-.8 2.48-1.2 4-1.2 1.6 0 2.947.32 4.04.96 1.12.64 1.973 1.64 2.56 3 .587 1.333.88 3.067.88 5.2v1.08h-5.28Zm18.132 10.72c-1.973 0-3.72-.44-5.24-1.32a9.85 9.85 0 0 1-3.6-3.72c-.853-1.573-1.28-3.387-1.28-5.44 0-2.053.44-3.867 1.32-5.44.907-1.573 2.134-2.8 3.68-3.68 1.574-.907 3.374-1.36 5.4-1.36 1.76 0 3.374.467 4.84 1.4 1.494.907 2.68 2.253 3.56 4.04.907 1.76 1.36 3.907 1.36 6.44h-15.16l.48-.48c0 .987.24 1.853.72 2.6a5.293 5.293 0 0 0 1.92 1.68c.8.373 1.654.56 2.56.56 1.094 0 1.987-.227 2.68-.68a4.826 4.826 0 0 0 1.6-1.84l4.72 1.84a9.91 9.91 0 0 1-2.2 2.92c-.88.8-1.933 1.413-3.16 1.84-1.226.427-2.626.64-4.2.64Zm-4.36-12.52-.48-.48h9.64l-.44.48c0-.96-.226-1.72-.68-2.28a3.942 3.942 0 0 0-1.68-1.28 4.858 4.858 0 0 0-1.88-.4c-.613 0-1.266.133-1.96.4a4.48 4.48 0 0 0-1.8 1.28c-.48.56-.72 1.32-.72 2.28ZM218.377 422v-20h4.96l.24 2.6c.613-1.013 1.4-1.773 2.36-2.28.96-.533 2.027-.8 3.2-.8 1.627 0 2.987.347 4.08 1.04 1.12.693 1.933 1.76 2.44 3.2.587-1.36 1.413-2.4 2.48-3.12 1.067-.747 2.307-1.12 3.72-1.12 2.347 0 4.133.747 5.36 2.24 1.227 1.467 1.84 3.733 1.84 6.8V422h-5.28v-10.24c0-1.36-.147-2.413-.44-3.16-.293-.747-.693-1.28-1.2-1.6-.507-.347-1.107-.52-1.8-.52-1.28-.027-2.267.387-2.96 1.24-.693.853-1.04 2.12-1.04 3.8V422h-5.28v-10.24c0-1.36-.147-2.413-.44-3.16-.267-.747-.667-1.28-1.2-1.6-.507-.347-1.107-.52-1.8-.52-1.28-.027-2.267.387-2.96 1.24-.667.853-1 2.12-1 3.8V422h-5.28Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"rotate(90 202.75 202.75)\" d=\"M0 0h720v405H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BQP8j.framer-yuv5my, .framer-BQP8j .framer-yuv5my { display: block; }\",\".framer-BQP8j.framer-1xmnzy0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 720px; justify-content: center; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 0px; position: relative; width: 405px; }\",\".framer-BQP8j .framer-15gntm9 { aspect-ratio: 1 / 1; bottom: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; overflow: hidden; position: absolute; width: 32px; z-index: 2; }\",\".framer-BQP8j .framer-121nzeu { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-BQP8j .framer-1et29f8-container { aspect-ratio: 0.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 100%; z-index: 1; }\",\".framer-BQP8j .framer-h591v0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 50%; z-index: 0; }\",\".framer-BQP8j .framer-g2mr3w { aspect-ratio: 0.5638888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 100%; }\",\".framer-BQP8j.framer-v-1csrbjf.framer-1xmnzy0 { aspect-ratio: 0.5625 / 1; height: var(--framer-aspect-ratio-supported, 720px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 405\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]},\"UmJDvlpr3\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framert0VHnrvFU=withCSS(Component,css,\"framer-BQP8j\");export default Framert0VHnrvFU;Framert0VHnrvFU.displayName=\"video - hero-mobile\";Framert0VHnrvFU.defaultProps={height:720,width:405};addPropertyControls(Framert0VHnrvFU,{variant:{options:[\"X6S3FV3Hc\",\"UmJDvlpr3\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framert0VHnrvFU,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert0VHnrvFU\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"UmJDvlpr3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"405\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"720\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t0VHnrvFU.map", "// Generated by Framer (7422eea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Footer2 from\"#framer/local/canvasComponent/aSkXHQMkg/aSkXHQMkg.js\";import VideoTransition from\"#framer/local/canvasComponent/b07XzNkyL/b07XzNkyL.js\";import VideoHero from\"#framer/local/canvasComponent/F9sPUxQ8V/F9sPUxQ8V.js\";import LinkWithArrow from\"#framer/local/canvasComponent/nPl570eto/nPl570eto.js\";import NavAC from\"#framer/local/canvasComponent/QVYkaZuxi/QVYkaZuxi.js\";import VideoHeroMobile from\"#framer/local/canvasComponent/t0VHnrvFU/t0VHnrvFU.js\";import*as sharedStyle3 from\"#framer/local/css/aVYfFdPTl/aVYfFdPTl.js\";import*as sharedStyle from\"#framer/local/css/FQGd_DVEX/FQGd_DVEX.js\";import*as sharedStyle2 from\"#framer/local/css/uOYAFFE64/uOYAFFE64.js\";import*as sharedStyle1 from\"#framer/local/css/Zy3ZGQb9x/Zy3ZGQb9x.js\";import metadataProvider from\"#framer/local/webPageMetadata/GVU6UNz6N/GVU6UNz6N.js\";const NavACFonts=getFonts(NavAC);const VideoHeroMobileFonts=getFonts(VideoHeroMobile);const VideoHeroFonts=getFonts(VideoHero);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const VideoTransitionFonts=getFonts(VideoTransition);const VideoTransitionWithVariantAppearEffect=withVariantAppearEffect(VideoTransition);const LinkWithArrowFonts=getFonts(LinkWithArrow);const Footer2Fonts=getFonts(Footer2);const breakpoints={E3cPMZIgq:\"(min-width: 1280px)\",qLI9tZGjN:\"(min-width: 810px) and (max-width: 1279px)\",WtNKBVunV:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-q5ueu\";const variantClassNames={E3cPMZIgq:\"framer-v-7roa3j\",qLI9tZGjN:\"framer-v-q6febb\",WtNKBVunV:\"framer-v-1aedpbk\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"E3cPMZIgq\",Phone:\"WtNKBVunV\",Tablet:\"qLI9tZGjN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"E3cPMZIgq\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"WtNKBVunV\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"WtNKBVunV\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"E3cPMZIgq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-38b13778-8665-42ca-bf59-441e1c179250, rgb(30, 30, 36)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7roa3j\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-um9ibq-container\",layoutScroll:true,nodeId:\"pducPBOtf\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{variant:\"k_25gMjx7\"},WtNKBVunV:{variant:\"k_25gMjx7\"}},children:/*#__PURE__*/_jsx(NavAC,{height:\"100%\",id:\"pducPBOtf\",layoutId:\"pducPBOtf\",style:{width:\"100%\"},variant:\"mYrX3765X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cy8pcj\",\"data-framer-name\":\"hero wrap\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ctdokl-container hidden-7roa3j hidden-q6febb\",nodeId:\"XGEboND58\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(VideoHeroMobile,{height:\"100%\",id:\"XGEboND58\",layoutId:\"XGEboND58\",style:{height:\"100%\",width:\"100%\"},variant:\"X6S3FV3Hc\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:720,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4edj6-container hidden-1aedpbk\",nodeId:\"W4UI_4JlG\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(VideoHero,{height:\"100%\",id:\"W4UI_4JlG\",layoutId:\"W4UI_4JlG\",style:{width:\"100%\"},variant:\"ueA0vGrKf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7ewau\",\"data-framer-name\":\"tickers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1003d221-c9f4-414e-83a2-d9d42fb75ea7, rgb(107, 107, 110))\"},children:\"Built with 130 years of Oil and Gas Experience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-color\":\"var(--token-1003d221-c9f4-414e-83a2-d9d42fb75ea7, rgb(107, 107, 110))\"},children:\"Built with 130 years of Oil and Gas Experience\"})}),className:\"framer-10942vq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15h85h2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"I1mCy0swl\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"I1mCy0swl\",layoutId:\"I1mCy0swl\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iaf7b\",\"data-framer-name\":\"shell\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:160,pixelWidth:176,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Rcqt2yiWsZf6m0KoGZnmHL7Ok68.png\"},className:\"framer-1vsmdbv\",\"data-framer-name\":\"shell\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g93jni\",\"data-framer-name\":\"bp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:192,pixelWidth:144,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EjZ2ti5pZRZPRnIt6pRq73Lhw.png\"},className:\"framer-myiu9q\",\"data-framer-name\":\"bp\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xuh5o4\",\"data-framer-name\":\"Chevron_Logo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5s6bm0\",\"data-framer-name\":\"Group\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:160,pixelWidth:144,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZlDIhVNAC8CfiryIobVWWd2o.png\"},className:\"framer-nn84hn\",\"data-framer-name\":\"Rectangle\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1db317o\",\"data-framer-name\":\"suncore\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1coy33p\",\"data-framer-name\":\"Suncor_Energy 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"40\" viewBox=\"0 0 97 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1088_3881)\">\\n<g opacity=\"0.2\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.48529 27.294C3.02967 27.5879 3.91236 27.6611 5.08902 27.6611C7.00151 27.6611 7.81055 27.5146 8.25182 27.0014C8.47263 26.7807 8.6196 26.5605 8.6196 26.1929C8.6196 25.0918 7.88421 24.7979 7.22215 24.7256L4.79467 24.1378C1.70552 23.4039 0.896484 21.0554 0.896484 19.6598C0.896484 17.8982 1.4853 16.6508 2.44126 15.77C3.61842 14.5952 5.30977 13.9345 8.32567 13.9345C10.0906 13.9345 11.8561 14.0815 13.6215 14.375L13.3272 17.9719C12.0768 17.7513 10.7526 17.6049 9.42901 17.6049C7.88423 17.6049 6.33986 17.825 6.33986 19.22C6.33986 20.2479 7.36914 20.4676 7.73732 20.5412L10.532 21.0554C12.8858 21.4953 14.2099 23.1105 14.2099 25.6064C14.2099 29.5707 11.9294 31.4789 7.22215 31.4789C4.79467 31.4789 2.66189 31.258 0.970132 30.9642L1.48529 27.294Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.3883 17.5316L20.3146 22.8898C20.3146 23.7706 20.3146 24.5786 20.3146 25.3863C20.3146 26.5605 20.8297 27.1479 22.1538 27.1479C23.3305 27.1479 23.9189 26.4868 23.9189 25.1656L23.9926 17.5316H28.8472L28.7734 24.7256C28.7734 28.9096 27.3024 31.4051 21.8594 31.4051C16.9316 31.4051 15.3867 28.395 15.3867 25.9723C15.3867 25.0919 15.3867 23.9913 15.4605 23.0373L15.5337 17.5316H20.3883L20.3883 17.5316Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.6842 17.5316H36.716L39.5838 25.3125H39.6576V17.5316H43.9976L43.8501 31.038H37.8926L34.7298 23.1836L34.8767 31.038H30.5371L30.6842 17.5316Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.2814 31.038C55.693 31.1117 55.0305 31.2581 54.3689 31.3319C53.7801 31.3319 53.0449 31.4051 52.2363 31.4051C47.5286 31.4051 45.0273 28.1757 45.0273 24.2848C45.0273 19.9538 47.5286 17.1644 52.8247 17.1644C54.2953 17.1644 55.1785 17.3114 56.3551 17.5316L55.6931 21.5686C55.0306 21.4217 54.2215 21.3484 53.7068 21.3484C50.6178 21.3484 50.0295 23.1105 50.0295 24.2848C50.0295 25.6797 50.6915 27.2207 53.4867 27.2207C54.2215 27.2207 54.9573 27.1479 55.6194 27.0747L56.2814 31.038Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.7836 17.1644C68.4917 17.1644 70.9924 20.3943 70.9924 24.2847C70.9924 28.1757 68.4917 31.405 63.7836 31.405C59.0031 31.405 56.502 28.1757 56.502 24.2847C56.502 20.3943 59.0031 17.1644 63.7836 17.1644ZM63.7836 21.1287C62.0923 21.1287 61.5777 22.5227 61.5777 24.2848C61.5777 26.0464 62.0923 27.4409 63.7836 27.4409C65.4758 27.4409 65.9172 26.0464 65.9172 24.2848C65.9172 22.5227 65.4758 21.1287 63.7836 21.1287Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.0424 31.038H79.6727L76.8043 25.3125L76.7305 31.038H72.0234L72.0971 17.5316H79.2313C82.983 17.5316 84.1597 19.3665 84.1597 21.5686C84.1597 23.4039 82.983 24.9449 81.2908 25.0182L85.0424 31.038ZM76.878 23.4776H77.834C78.7167 23.4776 79.4524 23.4039 79.4524 22.2297C79.4524 21.3484 79.1581 20.7615 77.9809 20.7615H76.878V23.4776Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.19141 35.5163H3.76534V36.1764H2.07359V37.2779H3.61888V37.939H2.07359V39.187H3.76534V39.9205H1.19141V35.5163Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.81055 35.5163H8.91389L10.532 38.8194H10.6056V35.5163H11.4147V39.9205H10.3113L8.69325 36.6173H8.61958V39.9205H7.81055V35.5163Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6094 35.5163H18.1838V36.1764H16.4921V37.2779H18.0369V37.939H16.4921V39.187H18.1838V39.9205H15.6094V35.5163Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.1543 35.5163H23.1103C24.0667 35.5163 25.2435 35.443 25.2435 36.691C25.2435 37.2042 24.8757 37.6451 24.2875 37.7187C24.5814 37.7187 24.6551 38.0123 24.8021 38.1583L25.4641 39.9205H24.5077L23.993 38.5255C23.846 38.2319 23.6987 38.0846 23.3309 38.0846H23.0367V39.9205H22.1543L22.1543 35.5163ZM23.0367 37.3511H23.331C23.7724 37.3511 24.2875 37.3511 24.2875 36.7643C24.2875 36.2501 23.7724 36.1764 23.331 36.1764H23.0367V37.3511Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.7458 36.3234C32.3782 36.1765 31.9367 36.1032 31.5691 36.1032C30.5394 36.1032 30.0244 36.837 30.0244 37.7188C30.0244 38.5992 30.5394 39.2588 31.4953 39.2588C31.7161 39.2588 31.9368 39.2588 32.0837 39.2588V38.0847H31.1277V37.3512H32.8933V39.7735C32.4519 39.8472 31.9368 39.9936 31.4953 39.9936C30.098 39.9936 29.0684 39.2588 29.0684 37.7921C29.0684 36.2501 30.0244 35.443 31.4953 35.443C32.0104 35.443 32.4519 35.5163 32.8195 35.5899L32.7458 36.3234Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.1884 38.1583L36.5703 35.5163H37.6L38.6297 37.3511L39.7332 35.5163H40.6896L39.0711 38.1583V39.9205H38.1884V38.1583Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M84.4572 39.9682H87.0533C90.1208 37.6767 92.4803 34.8446 94.0989 31.6085C97.3351 25.5064 96.863 16.4716 93.1214 10.7406C88.9947 4.3385 82.4648 0.285871 74.7608 0.00630951H73.035C72.7422 0.0168732 72.4481 0.0323744 72.1525 0.0537889C64.1962 0.727802 56.375 6.45884 53.6445 14.1451H57.5215L59.5441 11.0775C64.7357 4.67246 73.2984 2.21129 81.1537 4.84093C87.9968 7.03193 93.2224 14.0106 93.9305 21.0227C94.7395 28.8775 90.9973 35.8896 84.4572 39.9682Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1088_3881\">\\n<rect width=\"95.3584\" height=\"40\" fill=\"white\" transform=\"translate(0.898438)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-auyy7p\",\"data-framer-name\":\"imperial\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18876sj\",\"data-framer-name\":\"imperial\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:183,svg:'<svg width=\"183\" height=\"20\" viewBox=\"0 0 183 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.2\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.257812 1.75986V3.51491H2.61926H4.98071V10.002V16.489H2.61926H0.257812V18.2441V19.9991H6.87433H13.4908V18.2441V16.489H11.1294H8.76794V10.002V3.51491H11.1294H13.4908V1.75986V0.00479864H6.87433H0.257812V1.75986ZM23.3822 10.0016V19.9991H25.1867H26.9912L26.9949 12.5679L26.9987 5.13667L27.1029 5.35883C27.1602 5.48102 27.6218 6.53072 28.1287 7.6915C29.6782 11.2399 30.5016 13.1242 31.0509 14.3785L31.5762 15.5781H33.5905H35.6048L37.867 10.4018C39.1112 7.55487 40.1494 5.19554 40.1741 5.15889C40.2044 5.11397 40.2199 7.52168 40.2216 12.5457L40.2242 19.9991H42.0287H43.8333V10.0016V0.00413216L41.1112 0.0155511L38.3891 0.0270145L38.2439 0.382469C38.164 0.577969 37.9675 1.05783 37.8072 1.44883C37.4755 2.2578 36.3611 4.97925 35.6057 6.82508C35.3257 7.50933 34.7638 8.88392 34.3572 9.87977C33.9505 10.8756 33.6055 11.6903 33.5905 11.6903C33.5755 11.6902 33.5211 11.5852 33.4697 11.457C33.4183 11.3288 32.9297 10.1341 32.384 8.8023C31.8382 7.47045 31.2158 5.95089 31.001 5.42548C30.7862 4.90007 30.3647 3.87037 30.0645 3.13724C29.7643 2.40412 29.3555 1.4044 29.1561 0.915651L28.7936 0.0270145L26.0879 0.0155511L23.3822 0.00413216V10.0016ZM53.5018 9.99956V19.9991H55.4177H57.3336V16.6042V13.2092L59.4166 13.1888C61.013 13.1731 61.6041 13.1519 61.9471 13.0982C64.3785 12.7171 65.9885 11.79 67.0038 10.1863C67.817 8.90182 68.1221 6.98895 67.8068 5.15258C67.6573 4.28207 67.3267 3.43773 66.8686 2.75584C66.6125 2.37475 65.8094 1.58488 65.4121 1.32322C64.4998 0.722683 63.465 0.346257 62.1234 0.126942C61.5687 0.0362564 61.3737 0.0315466 57.523 0.0161287L53.5018 4.44319e-05V9.99956ZM75.9579 10.002V19.9991H82.463H88.9681V18.2441V16.489H84.3566H79.7451V14.0008V11.5126H83.9556H88.1661V9.80201V8.09139H83.9556H79.7451V5.80315V3.51491H84.3566H88.9681V1.75986V0.00479864H82.463H75.9579V10.002ZM98.4585 9.99956V19.9991H100.352H102.246V16.2891V12.579H104.11H105.973L107.551 15.5893C108.418 17.2449 109.29 18.9094 109.487 19.2882L109.847 19.9769L111.95 19.9884C113.107 19.9948 114.053 19.9848 114.052 19.9662C114.052 19.9477 113.091 18.1033 111.917 15.8676L109.782 11.8027L110.169 11.6021C111.5 10.9123 112.43 9.87386 112.894 8.55792C113.381 7.17671 113.4 5.27592 112.94 3.87401C112.562 2.72034 111.867 1.81215 110.867 1.16487C110.266 0.775957 109.239 0.384602 108.406 0.227757C107.383 0.0348345 107.395 0.0353233 102.836 0.0173284L98.4585 0V9.99956ZM122.028 1.75986V3.51491H124.39H126.751V10.002V16.489H124.39H122.028V18.2441V19.9991H128.645H135.261V18.2441V16.489H132.922H130.583V10.002V3.51491H132.922H135.261V1.75986V0.00479864H128.645H122.028V1.75986ZM149.46 0.0381225C149.449 0.0564728 149.277 0.571304 149.076 1.18224C148.725 2.25531 147.599 5.65764 144.399 15.3199C143.564 17.8415 142.88 19.9259 142.88 19.9519C142.88 19.9845 143.496 19.9991 144.874 19.9991H146.868L147.422 18.2107C147.727 17.2271 148.034 16.2373 148.104 16.0111L148.231 15.5999L151.978 15.6112L155.725 15.6226L156.18 17.0888C156.431 17.8953 156.735 18.875 156.856 19.266L157.077 19.9769L159.087 19.9884L161.097 20L160.836 19.2109C160.692 18.7769 159.95 16.5323 159.187 14.223C158.424 11.9136 157.479 9.05445 157.087 7.86923C155.602 3.38646 154.911 1.29461 154.704 0.660168L154.49 0.00479864H151.985C150.607 0.00479864 149.471 0.0197722 149.46 0.0381225ZM169.703 10.002V19.9991H176.23H182.758V18.2441V16.489H178.124H173.49V8.2469V0.00479864H171.597H169.703V10.002ZM61.1039 3.31595C61.9798 3.46568 62.5346 3.7261 63.0412 4.22533C63.4263 4.60487 63.6419 4.98983 63.8004 5.58099C63.876 5.86291 63.8964 6.06974 63.8987 6.58071C63.9021 7.33414 63.8387 7.64271 63.5608 8.22468C63.2427 8.8912 62.5896 9.44167 61.799 9.70982C61.1662 9.92447 60.7921 9.95752 58.9966 9.95752H57.3336V6.60292V3.24832H59.0209C60.3287 3.24832 60.7972 3.26352 61.1039 3.31595ZM106.606 3.3183C108.039 3.53002 108.869 4.16721 109.153 5.27423C109.265 5.71113 109.274 6.64411 109.171 7.14908C109.004 7.97044 108.547 8.58534 107.85 8.92866C107.088 9.30402 106.441 9.37982 103.995 9.37986L102.246 9.37991V6.31412V3.24832H104.189C105.728 3.24832 106.232 3.26289 106.606 3.3183ZM153.109 7.20275C154.68 12.2631 154.687 12.2869 154.688 12.3235C154.688 12.3419 153.463 12.3568 151.967 12.3568C149.396 12.3568 149.247 12.3525 149.269 12.2791C149.291 12.2056 149.886 10.2859 150.685 7.71372C152.073 3.24183 151.972 3.55779 151.996 3.62599C152.005 3.65043 152.506 5.25997 153.109 7.20275Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zr2o5g\",\"data-framer-name\":\"harward\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1420,pixelWidth:3333,sizes:\"93.8873px\",src:\"https://framerusercontent.com/images/4dS64t7t3H4OjjdRYqdt7q1miBs.png\",srcSet:\"https://framerusercontent.com/images/4dS64t7t3H4OjjdRYqdt7q1miBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dS64t7t3H4OjjdRYqdt7q1miBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dS64t7t3H4OjjdRYqdt7q1miBs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4dS64t7t3H4OjjdRYqdt7q1miBs.png 3333w\"},className:\"framer-17ke9v4\",\"data-framer-name\":\"image 117\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mufk52\",\"data-framer-name\":\"hitachi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rocrwl\",\"data-framer-name\":\"Hitachi_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:126,svg:'<svg width=\"126\" height=\"20\" viewBox=\"0 0 126 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1088_3927)\">\\n<path opacity=\"0.2\" d=\"M83.3145 7.12574e-05C78.116 -0.0344745 71.7791 2.12129 71.7456 9.95035C71.7122 17.7009 78.1828 20.1469 83.3145 19.9931C88.0846 19.851 93.3512 18.5255 93.5919 12.6912L88.3192 12.7029C88.1705 16.3692 85.2452 17.0963 83.3145 17.1024C81.3337 17.1097 77.3025 16.6929 77.239 10.0289C77.1788 3.73881 80.8791 2.84954 83.3145 2.87628C85.75 2.90303 88.166 4.03913 88.1933 6.90309L93.4314 6.89863C93.3779 3.39224 90.3468 0.0474323 83.3145 7.12574e-05ZM0.566406 0.355558V19.6131H5.66469V11.1143H15.9827V19.6131H21.105V0.355001H15.9827V8.0626H5.66469V0.355001L0.566406 0.355558ZM25.3346 0.355558V19.612H30.468V0.355558H25.3346ZM32.368 0.355558V3.54101H39.8449V19.6092H44.9231V3.54045H52.4017V0.355001L32.368 0.355558ZM96.092 0.355558V19.6131H101.19V11.1143H111.508V19.6131H116.607V0.355001H111.508V8.0626H101.191V0.355001L96.092 0.355558ZM120.737 0.355558V19.612H125.876V0.355558H120.737ZM57.1439 0.383975L48.0144 19.6126H53.7429L55.5231 15.2921L65.1697 15.2888L66.9455 19.6126H72.6878L63.6001 0.383975H57.1439ZM60.355 3.63573L63.8831 12.2276L56.7974 12.232L60.355 3.63573Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1088_3927\">\\n<rect width=\"125.31\" height=\"20\" fill=\"white\" transform=\"translate(0.566406)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:60,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18l236s\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5bmou\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.6,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{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-r7lhgg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Built for operations\",/*#__PURE__*/_jsx(\"br\",{}),\"that can't afford mistakes\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Built for operations\",/*#__PURE__*/_jsx(\"br\",{}),\"that can't afford mistakes\"]})}),className:\"framer-4ulot\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7mcmoq\",\"data-framer-name\":\"compare\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"right\"},children:[\"30% of industry triggers\",/*#__PURE__*/_jsx(\"br\",{}),\"are false alarms\"]})})},WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:\"30% of industry triggers are false alarms\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"right\"},children:\"30% of industry triggers are false alarms\"})}),className:\"framer-1rx2pw8\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k3ruw2\",\"data-framer-name\":\"Rectangle 113\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"40\" viewBox=\"0 0 32 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.28 0H32L16.3883 36.1381C15.3757 38.4821 13.0666 40 10.5131 40H0L17.28 0Z\" fill=\"#E9311A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Orbital keeps false alarms \",/*#__PURE__*/_jsx(\"br\",{}),\"below 1%\"]})})},WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Orbital keeps false alarms below 1%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital keeps false alarms below 1%\"})}),className:\"framer-a3t00b\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+887.2+64+0+0+299.2},WtNKBVunV:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+904+48+0+0+804}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:677,width:\"1152px\",y:(componentViewport?.y||0)+0+903.2+160+0+0+347.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hjtua2-container\",nodeId:\"k0DoHcBwJ\",rendersWithMotion:true,scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{__framer__variantAppearEffectEnabled:undefined,OWWd5kS6E:0,yw_iag2Oy:0},WtNKBVunV:{OWWd5kS6E:0,yw_iag2Oy:0}},children:/*#__PURE__*/_jsx(VideoTransitionWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"Z2ML_3DTT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"U8UMPUrCy\",height:\"100%\",id:\"k0DoHcBwJ\",layoutId:\"k0DoHcBwJ\",OWWd5kS6E:1,style:{width:\"100%\"},variant:\"Z2ML_3DTT\",width:\"100%\",XGiCANXtm:\"https://dl.dropboxusercontent.com/scl/fi/zqes13cc8360vzh6nurav/Hullucinate.mp4?rlkey=rj6p31n07d8mdssznbyhdlgtl&dl=0\",yw_iag2Oy:1})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lc34ga\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ox42ip\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.6,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{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-8wwdo7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Decisions driven\",/*#__PURE__*/_jsx(\"br\",{}),\"by every data point\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Decisions driven\",/*#__PURE__*/_jsx(\"br\",{}),\"by every data point\"]})}),className:\"framer-k1uj63\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3kbyz\",\"data-framer-name\":\"compare\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"right\"},children:[\"On average only 8%\",/*#__PURE__*/_jsx(\"br\",{}),\"of industry data is used\"]})})},WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"On average only 8% of industry\",/*#__PURE__*/_jsx(\"br\",{}),\"data is used\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"right\"},children:\"On average only 8% of industry data is used\"})}),className:\"framer-ab5309\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g794gn\",\"data-framer-name\":\"Rectangle 113\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"40\" viewBox=\"0 0 32 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.28 0H32L16.3883 36.1381C15.3757 38.4821 13.0666 40 10.5131 40H0L17.28 0Z\" fill=\"#E9311A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Orbital uses 100%\",/*#__PURE__*/_jsx(\"br\",{}),\"of real time data\"]})})},WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Orbital uses 100% of real time data\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital uses 100% of real time data\"})}),className:\"framer-vyasht\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+1927.4+64+0+0+299.2},WtNKBVunV:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+2433+48+0+0+804}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:677,width:\"1152px\",y:(componentViewport?.y||0)+0+2087.4+160+0+0+347.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5w55qz-container\",nodeId:\"XeuzqCfjN\",rendersWithMotion:true,scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{__framer__variantAppearEffectEnabled:undefined,OWWd5kS6E:0,yw_iag2Oy:0},WtNKBVunV:{OWWd5kS6E:0,yw_iag2Oy:0}},children:/*#__PURE__*/_jsx(VideoTransitionWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"Z2ML_3DTT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"U8UMPUrCy\",height:\"100%\",id:\"XeuzqCfjN\",layoutId:\"XeuzqCfjN\",OWWd5kS6E:1,style:{width:\"100%\"},variant:\"Z2ML_3DTT\",width:\"100%\",XGiCANXtm:\"https://dl.dropboxusercontent.com/scl/fi/8w0aumjljmsixoic5bnax/PFD.mp4?rlkey=b5syf0v4tw9mo158bm87amiu5&dl=0\",yw_iag2Oy:1})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jfatw\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xrpldf\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.6,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{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-13ig518\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Optimise for any metric in real time\"})}),fonts:[\"GF;Figtree-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Optimise for any metric\",/*#__PURE__*/_jsx(\"br\",{}),\"in real time\"]})}),className:\"framer-1b8iygz\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a4wye3\",\"data-framer-name\":\"compare\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Operational models take 5\u20136 months\",/*#__PURE__*/_jsx(\"br\",{}),\"to create\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"right\"},children:\"Operational models take 5\u20136 months to create\"})}),className:\"framer-1yoj1mt\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hi761k\",\"data-framer-name\":\"Rectangle 113\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"40\" viewBox=\"0 0 32 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.28 0H32L16.3883 36.1381C15.3757 38.4821 13.0666 40 10.5131 40H0L17.28 0Z\" fill=\"#E9311A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Orbital delivers operational models\",/*#__PURE__*/_jsx(\"br\",{}),\"in minutes\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tt6sui\",\"data-styles-preset\":\"FQGd_DVEX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital delivers operational models in minutes\"})}),className:\"framer-n3f6x8\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+2967.6+64+0+0+299.2},WtNKBVunV:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,y:(componentViewport?.y||0)+0+3962+48+0+0+584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:677,width:\"1152px\",y:(componentViewport?.y||0)+0+3271.6+160+0+0+347.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jw5s4s-container\",nodeId:\"CJuDIvN4V\",rendersWithMotion:true,scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{__framer__variantAppearEffectEnabled:undefined,OWWd5kS6E:0,yw_iag2Oy:0},WtNKBVunV:{OWWd5kS6E:0,yw_iag2Oy:0}},children:/*#__PURE__*/_jsx(VideoTransitionWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"Z2ML_3DTT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"U8UMPUrCy\",height:\"100%\",id:\"CJuDIvN4V\",layoutId:\"CJuDIvN4V\",OWWd5kS6E:1,style:{width:\"100%\"},variant:\"Z2ML_3DTT\",width:\"100%\",XGiCANXtm:\"https://dl.dropboxusercontent.com/scl/fi/y2h1txvkqaq577o7fl8fd/optimise.mp4?rlkey=wmx6gwgpcsoakir7q05eex7ul&dl=0\",yw_iag2Oy:1})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17sk270\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nunmt3\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cz47rm\",\"data-framer-name\":\"Orbital - white text\",fill:\"black\",intrinsicHeight:110,intrinsicWidth:506,svg:'<svg width=\"506\" height=\"110\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#FF1B1C\" d=\"M0 0h110v110H0z\"/><path d=\"M54.864 93.418c-12.506 0-21.944-3.03-28.312-9.092C20.184 78.188 17 68.56 17 55.44c0-13.503 3.146-23.286 9.437-29.347C32.805 20.03 42.281 17 54.864 17s22.02 3.069 28.311 9.207c6.369 6.061 9.553 15.805 9.553 29.232 0 13.044-3.184 22.634-9.553 28.772-6.368 6.138-15.805 9.207-28.311 9.207Zm0-18.414c5.524 0 9.514-1.534 11.969-4.603 2.532-3.146 3.798-8.133 3.798-14.962 0-7.212-1.228-12.352-3.683-15.422-2.455-3.069-6.483-4.603-12.084-4.603s-9.63 1.535-12.084 4.603c-2.456 3.07-3.683 8.21-3.683 15.422 0 6.829 1.227 11.816 3.683 14.962 2.532 3.069 6.56 4.603 12.084 4.603ZM163.84 85.12c-4.48 0-8.613-.72-12.4-2.16-3.787-1.44-7.093-3.467-9.92-6.08a28.868 28.868 0 0 1-6.48-9.28c-1.547-3.52-2.32-7.387-2.32-11.6s.773-8.08 2.32-11.6a27.975 27.975 0 0 1 6.48-9.2c2.827-2.667 6.133-4.72 9.92-6.16 3.787-1.44 7.92-2.16 12.4-2.16 4.533 0 8.667.72 12.4 2.16 3.787 1.44 7.067 3.493 9.84 6.16a27.975 27.975 0 0 1 6.48 9.2c1.6 3.52 2.4 7.387 2.4 11.6s-.8 8.107-2.4 11.68a27.975 27.975 0 0 1-6.48 9.2c-2.773 2.613-6.053 4.64-9.84 6.08-3.733 1.44-7.867 2.16-12.4 2.16Zm0-13.12c2.133 0 4.107-.373 5.92-1.12 1.867-.747 3.467-1.813 4.8-3.2 1.387-1.44 2.453-3.147 3.2-5.12.8-1.973 1.2-4.16 1.2-6.56 0-2.453-.4-4.64-1.2-6.56-.747-1.973-1.813-3.653-3.2-5.04a13.058 13.058 0 0 0-4.8-3.28c-1.813-.747-3.787-1.12-5.92-1.12s-4.133.373-6 1.12a14.014 14.014 0 0 0-4.8 3.28c-1.333 1.387-2.4 3.067-3.2 5.04-.747 1.92-1.12 4.107-1.12 6.56 0 2.4.373 4.587 1.12 6.56.8 1.973 1.867 3.68 3.2 5.12a14.573 14.573 0 0 0 4.8 3.2c1.867.747 3.867 1.12 6 1.12Zm39.416 12V28h25.6c5.12 0 9.52.827 13.2 2.48 3.734 1.653 6.614 4.053 8.64 7.2 2.027 3.093 3.04 6.773 3.04 11.04 0 4.213-1.013 7.867-3.04 10.96-2.026 3.04-4.906 5.387-8.64 7.04-3.68 1.6-8.08 2.4-13.2 2.4h-16.8l7.04-6.64V84h-15.84Zm34.64 0-13.92-20.4h16.88l14 20.4h-16.96Zm-18.8-19.84-7.04-7.28h15.84c3.307 0 5.76-.72 7.36-2.16 1.654-1.44 2.48-3.44 2.48-6 0-2.613-.826-4.64-2.48-6.08-1.6-1.44-4.053-2.16-7.36-2.16h-15.84l7.04-7.28v30.96ZM262.475 84V28h28.64c7.36 0 12.853 1.36 16.48 4.08 3.627 2.667 5.44 6.187 5.44 10.56 0 2.88-.773 5.413-2.32 7.6-1.493 2.133-3.627 3.84-6.4 5.12-2.72 1.227-5.973 1.84-9.76 1.84l1.6-3.84c3.947 0 7.387.613 10.32 1.84 2.933 1.173 5.2 2.907 6.8 5.2 1.653 2.24 2.48 4.987 2.48 8.24 0 4.853-1.973 8.64-5.92 11.36-3.893 2.667-9.6 4-17.12 4h-30.24Zm15.68-11.44h13.28c2.72 0 4.773-.453 6.16-1.36 1.44-.96 2.16-2.4 2.16-4.32 0-1.92-.72-3.333-2.16-4.24-1.387-.96-3.44-1.44-6.16-1.44h-14.4V50.24h12c2.667 0 4.667-.453 6-1.36 1.333-.907 2-2.267 2-4.08 0-1.813-.667-3.147-2-4-1.333-.907-3.333-1.36-6-1.36h-10.88v33.12ZM323.959 84V28h15.84v56h-15.84Zm39.03 0V40.56h-17.2V28h50.16v12.56h-17.12V84h-15.84Zm29.328 0 24.721-56h15.6l24.8 56h-16.48l-19.36-48.24h6.24L408.478 84h-16.161Zm13.521-10.88 4.08-11.68h27.36l4.08 11.68h-35.52ZM461.928 84V28h15.84v43.44h26.72V84h-42.56Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.6,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{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-1xwnc2u\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Refineries\",/*#__PURE__*/_jsx(\"br\",{}),\"powered by\",/*#__PURE__*/_jsx(\"br\",{}),\"superintelligence\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-nlja11\",\"data-styles-preset\":\"Zy3ZGQb9x\",children:[\"Refineries Powered by\",/*#__PURE__*/_jsx(\"br\",{}),\"Superintelligence\"]})}),className:\"framer-15nik0e\",\"data-framer-name\":\"Delivered High Performing AI Into Refinery Environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1tsn9\",\"data-framer-name\":\"case studies\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ilE0YAjOJ\"},motionChild:true,nodeId:\"q8FHEPVW1\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ag3bj framer-1ovputi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dzfadc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png 616w\"}},WtNKBVunV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5319+48+0+0+532+0+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,src:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png 616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmYJO5FkaghSOlyoI5N0N68Os.png 616w\"},className:\"framer-4bms9c\",\"data-framer-name\":\"Laptop\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsqbn4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w95l53\",\"data-styles-preset\":\"uOYAFFE64\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital Achieves 53.7% Improvement in CO\u2082 Concentration Prediction Accuracy\\xa0\"})}),className:\"framer-1xpojd8\",\"data-framer-name\":\"subject\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{y:(componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+200+20+164},WtNKBVunV:{y:(componentViewport?.y||0)+0+5319+48+0+0+532+0+0+0+200+20+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+200+32+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4nvyez-container\",nodeId:\"HV6kFrcYw\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(LinkWithArrow,{height:\"100%\",i45snOKKl:\"Read the case study\",id:\"HV6kFrcYw\",layoutId:\"HV6kFrcYw\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VKHxxCjuj\"},motionChild:true,nodeId:\"AdkJIsspf\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-nv6fak framer-1ovputi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2cghd8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png 616w\"}},WtNKBVunV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5319+48+0+0+532+0+420+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,src:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png 616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywfWuRZUu3CeWS5v68RNP00JwM.png 616w\"},className:\"framer-1ydk26u\",\"data-framer-name\":\"Laptop\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usa1gc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w95l53\",\"data-styles-preset\":\"uOYAFFE64\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital Sets New State-of-the-Art Benchmark with 427% Faster Asset Failure Prediction\"})}),className:\"framer-591swb\",\"data-framer-name\":\"subject\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{y:(componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+200+20+164},WtNKBVunV:{y:(componentViewport?.y||0)+0+5319+48+0+0+532+0+420+0+200+20+164}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+200+32+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2kzt7w-container\",nodeId:\"LJajYf2x0\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(LinkWithArrow,{height:\"100%\",i45snOKKl:\"Read the case study\",id:\"LJajYf2x0\",layoutId:\"LJajYf2x0\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QPdWUIbq2\"},motionChild:true,nodeId:\"vrA2s3vO0\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-j87vgy framer-1ovputi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h9jty3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png 616w\"}},WtNKBVunV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5319+48+0+0+532+0+864+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`,src:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png 616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+0+0+0),pixelHeight:400,pixelWidth:616,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTzKagIdwtglJSnVfLSzTilee2w.png 616w\"},className:\"framer-1tv0wjl\",\"data-framer-name\":\"Laptop\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3uepjo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w95l53\",\"data-styles-preset\":\"uOYAFFE64\",style:{\"--framer-text-alignment\":\"left\"},children:\"Orbital Unlocks 25% Efficiency Improvements in Simulated Distillation Process\"})}),className:\"framer-nbst3\",\"data-framer-name\":\"subject\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{y:(componentViewport?.y||0)+0+4071.8+64+0+0+223.2+0+0+200+20+164},WtNKBVunV:{y:(componentViewport?.y||0)+0+5319+48+0+0+532+0+864+0+200+20+160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+4615.8+160+0+0+319.2+0+0+200+32+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uafu6h-container\",nodeId:\"xj_kW6NWz\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(LinkWithArrow,{height:\"100%\",i45snOKKl:\"Read the case study\",id:\"xj_kW6NWz\",layoutId:\"xj_kW6NWz\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rb1abt\",\"data-framer-name\":\"testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-132s98q\",\"data-framer-name\":\"content wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amn0jq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4250in\",\"data-framer-name\":\"Rectangle 113\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"40\" viewBox=\"0 0 32 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.28 0H32L16.3883 36.1381C15.3757 38.4821 13.0666 40 10.5131 40H0L17.28 0Z\" fill=\"#E9311A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185exx3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-5j78ix\",\"data-styles-preset\":\"aVYfFdPTl\",children:\"Orbital is unlocking a new level of efficiency that the industry has never seen before.\"})}),className:\"framer-r0t4pm\",\"data-framer-name\":\"Leapfrog Expensive and Poor Performing Cloud Infrastructure,\\xa0 Go Straight to Refinery Edge AI\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNKBVunV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274.5,intrinsicWidth:289,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7235+48+0+0+0+0+0+64),pixelHeight:549,pixelWidth:578,sizes:\"100px\",src:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png 578w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274.5,intrinsicWidth:289,pixelHeight:549,pixelWidth:578,src:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png 578w\"},className:\"framer-11x5ohh hidden-7roa3j hidden-q6febb\",\"data-framer-name\":\"Greg\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w95l53\",\"data-styles-preset\":\"uOYAFFE64\",style:{\"--framer-text-color\":\"var(--token-1003d221-c9f4-414e-83a2-d9d42fb75ea7, rgb(114, 114, 150))\"},children:\"Greg Gabel - Former Director of Operations at Chevron\"})}),className:\"framer-1z7xkw\",\"data-framer-name\":\"Leapfrog Expensive and Poor Performing Cloud Infrastructure,\\xa0 Go Straight to Refinery Edge AI\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274.5,intrinsicWidth:289,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4851+64+0+21),pixelHeight:549,pixelWidth:578,sizes:\"171px\",src:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png 578w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274.5,intrinsicWidth:289,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5707+120+0+0),pixelHeight:549,pixelWidth:578,sizes:\"240px\",src:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQemDkUJ0fCYbhQRVSH5KNrAhos.png 578w\"},className:\"framer-p1akyu hidden-1aedpbk\",\"data-framer-name\":\"Greg\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{y:(componentViewport?.y||0)+0+5183},WtNKBVunV:{y:(componentViewport?.y||0)+0+7646}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:588,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6221.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvsyg5-container\",nodeId:\"IoURRS2aR\",scopeId:\"GVU6UNz6N\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLI9tZGjN:{variant:\"EMllpIqcM\"},WtNKBVunV:{variant:\"ilQDcCRy_\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"IoURRS2aR\",layoutId:\"IoURRS2aR\",style:{width:\"100%\"},variant:\"hImZPEyfg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q5ueu.framer-1ovputi, .framer-q5ueu .framer-1ovputi { display: block; }\",\".framer-q5ueu.framer-7roa3j { align-content: center; align-items: center; background-color: var(--token-38b13778-8665-42ca-bf59-441e1c179250, #1e1e24); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-q5ueu .framer-um9ibq-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-q5ueu .framer-1cy8pcj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-ctdokl-container { aspect-ratio: 0.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 356px); position: relative; width: 100%; }\",\".framer-q5ueu .framer-k4edj6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-q5ueu .framer-1l7ewau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-10942vq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-q5ueu .framer-15h85h2-container { flex: none; height: 64px; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-1iaf7b { height: 40px; overflow: hidden; position: relative; width: 43px; }\",\".framer-q5ueu .framer-1vsmdbv { bottom: 0px; flex: none; left: 0px; opacity: 0.4; position: absolute; right: 0px; top: 0px; }\",\".framer-q5ueu .framer-g93jni { height: 48px; overflow: hidden; position: relative; width: 36px; }\",\".framer-q5ueu .framer-myiu9q { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; }\",\".framer-q5ueu .framer-xuh5o4 { gap: 0px; height: 40px; overflow: hidden; position: relative; width: 36px; }\",\".framer-q5ueu .framer-5s6bm0 { flex: none; height: 40px; left: 0px; opacity: 0.2; overflow: visible; position: absolute; top: 0px; width: 36px; }\",\".framer-q5ueu .framer-nn84hn, .framer-q5ueu .framer-1coy33p, .framer-q5ueu .framer-18876sj, .framer-q5ueu .framer-1rocrwl { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-q5ueu .framer-1db317o { height: 40px; overflow: hidden; position: relative; width: 97px; }\",\".framer-q5ueu .framer-auyy7p { height: 20px; overflow: hidden; position: relative; width: 183px; }\",\".framer-q5ueu .framer-zr2o5g { gap: 0px; height: 40px; overflow: visible; position: relative; width: 94px; }\",\".framer-q5ueu .framer-17ke9v4 { aspect-ratio: 2.347183036804199 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 94px; }\",\".framer-q5ueu .framer-mufk52 { height: 20px; overflow: hidden; position: relative; width: 126px; }\",\".framer-q5ueu .framer-18l236s, .framer-q5ueu .framer-1lc34ga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-1h5bmou, .framer-q5ueu .framer-1ox42ip, .framer-q5ueu .framer-xrpldf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 90%; z-index: 3; }\",\".framer-q5ueu .framer-r7lhgg, .framer-q5ueu .framer-8wwdo7, .framer-q5ueu .framer-13ig518, .framer-q5ueu .framer-1xwnc2u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-q5ueu .framer-4ulot, .framer-q5ueu .framer-k1uj63, .framer-q5ueu .framer-1b8iygz, .framer-q5ueu .framer-15nik0e, .framer-q5ueu .framer-1xpojd8, .framer-q5ueu .framer-591swb, .framer-q5ueu .framer-nbst3, .framer-q5ueu .framer-1z7xkw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-q5ueu .framer-7mcmoq, .framer-q5ueu .framer-n3kbyz, .framer-q5ueu .framer-a4wye3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-1rx2pw8, .framer-q5ueu .framer-a3t00b, .framer-q5ueu .framer-ab5309, .framer-q5ueu .framer-vyasht, .framer-q5ueu .framer-1yoj1mt, .framer-q5ueu .framer-n3f6x8 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-q5ueu .framer-1k3ruw2, .framer-q5ueu .framer-1g794gn, .framer-q5ueu .framer-1hi761k { aspect-ratio: 0.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 26px; }\",\".framer-q5ueu .framer-hjtua2-container, .framer-q5ueu .framer-5w55qz-container, .framer-q5ueu .framer-1jw5s4s-container { flex: none; height: auto; position: relative; width: 1152px; }\",\".framer-q5ueu .framer-18jfatw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 160px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-17sk270 { align-content: center; align-items: center; background-color: var(--token-8ee1b607-2a9e-4011-8e10-f40df8f5e264, #131317); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 160px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-nunmt3 { 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: 1440px; overflow: visible; padding: 0px; position: relative; width: 90%; z-index: 3; }\",\".framer-q5ueu .framer-1cz47rm { aspect-ratio: 4.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 368px; }\",\".framer-q5ueu .framer-w1tsn9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-1ag3bj { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-38b13778-8665-42ca-bf59-441e1c179250, #18181c); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q5ueu .framer-1dzfadc, .framer-q5ueu .framer-2cghd8, .framer-q5ueu .framer-h9jty3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-4bms9c, .framer-q5ueu .framer-1tv0wjl { aspect-ratio: 1.7875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-q5ueu .framer-1hsqbn4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-4nvyez-container, .framer-q5ueu .framer-2kzt7w-container, .framer-q5ueu .framer-uafu6h-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-q5ueu .framer-nv6fak, .framer-q5ueu .framer-j87vgy { align-content: flex-start; align-items: flex-start; background-color: var(--token-38b13778-8665-42ca-bf59-441e1c179250, #18181c); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q5ueu .framer-1ydk26u { aspect-ratio: 1.785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-q5ueu .framer-usa1gc, .framer-q5ueu .framer-3uepjo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-q5ueu .framer-rb1abt { -webkit-backdrop-filter: blur(24px); align-content: center; align-items: center; backdrop-filter: blur(24px); background-color: var(--token-38b13778-8665-42ca-bf59-441e1c179250, #18181c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-q5ueu .framer-132s98q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-q5ueu .framer-amn0jq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-q5ueu .framer-4250in { aspect-ratio: 0.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 42px; }\",\".framer-q5ueu .framer-185exx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 570px; }\",\".framer-q5ueu .framer-r0t4pm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 570px; word-break: break-word; word-wrap: break-word; }\",\".framer-q5ueu .framer-11x5ohh { aspect-ratio: 1.052823315118397 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 95px); overflow: visible; position: relative; width: 100px; }\",\".framer-q5ueu .framer-p1akyu { aspect-ratio: 1.052823315118397 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 228px); overflow: visible; position: relative; width: 240px; }\",\".framer-q5ueu .framer-1bvsyg5-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-q5ueu.framer-7roa3j { width: 810px; } .framer-q5ueu .framer-1l7ewau { padding: 48px 0px 0px 0px; } .framer-q5ueu .framer-18l236s, .framer-q5ueu .framer-1lc34ga { padding: 64px 0px 0px 0px; } .framer-q5ueu .framer-1h5bmou, .framer-q5ueu .framer-r7lhgg, .framer-q5ueu .framer-1ox42ip, .framer-q5ueu .framer-8wwdo7, .framer-q5ueu .framer-xrpldf, .framer-q5ueu .framer-13ig518, .framer-q5ueu .framer-132s98q { gap: 32px; } .framer-q5ueu .framer-7mcmoq, .framer-q5ueu .framer-n3kbyz, .framer-q5ueu .framer-a4wye3, .framer-q5ueu .framer-w1tsn9 { gap: 20px; } .framer-q5ueu .framer-1k3ruw2 { height: var(--framer-aspect-ratio-supported, 64px); width: 53px; } .framer-q5ueu .framer-hjtua2-container, .framer-q5ueu .framer-5w55qz-container, .framer-q5ueu .framer-1jw5s4s-container { width: 100%; } .framer-q5ueu .framer-1g794gn { height: var(--framer-aspect-ratio-supported, 64px); width: 52px; } .framer-q5ueu .framer-18jfatw, .framer-q5ueu .framer-17sk270, .framer-q5ueu .framer-rb1abt { padding: 64px 0px 64px 0px; } .framer-q5ueu .framer-1hi761k { height: var(--framer-aspect-ratio-supported, 64px); width: 51px; } .framer-q5ueu .framer-nunmt3 { gap: 48px; } .framer-q5ueu .framer-1cz47rm { height: var(--framer-aspect-ratio-supported, 48px); width: 221px; } .framer-q5ueu .framer-4bms9c, .framer-q5ueu .framer-1ydk26u, .framer-q5ueu .framer-1tv0wjl { height: var(--framer-aspect-ratio-supported, 129px); } .framer-q5ueu .framer-1hsqbn4, .framer-q5ueu .framer-usa1gc, .framer-q5ueu .framer-3uepjo { padding: 20px; } .framer-q5ueu .framer-185exx3 { align-content: flex-start; align-items: flex-start; width: min-content; } .framer-q5ueu .framer-r0t4pm, .framer-q5ueu .framer-1z7xkw { width: 460px; } .framer-q5ueu .framer-p1akyu { height: var(--framer-aspect-ratio-supported, 162px); width: 171px; }}\",\"@media (max-width: 809px) { .framer-q5ueu.framer-7roa3j { width: 360px; } .framer-q5ueu .framer-1cy8pcj { justify-content: center; } .framer-q5ueu .framer-ctdokl-container { height: var(--framer-aspect-ratio-supported, 640px); } .framer-q5ueu .framer-1l7ewau { gap: 12px; padding: 32px 0px 0px 0px; } .framer-q5ueu .framer-10942vq { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-q5ueu .framer-18l236s, .framer-q5ueu .framer-1lc34ga { padding: 48px 0px 0px 0px; } .framer-q5ueu .framer-1h5bmou, .framer-q5ueu .framer-r7lhgg, .framer-q5ueu .framer-1ox42ip, .framer-q5ueu .framer-8wwdo7, .framer-q5ueu .framer-xrpldf, .framer-q5ueu .framer-13ig518, .framer-q5ueu .framer-1xwnc2u { gap: 24px; } .framer-q5ueu .framer-4ulot, .framer-q5ueu .framer-1xpojd8, .framer-q5ueu .framer-591swb, .framer-q5ueu .framer-nbst3 { max-width: 610px; } .framer-q5ueu .framer-7mcmoq, .framer-q5ueu .framer-n3kbyz, .framer-q5ueu .framer-a4wye3 { flex-direction: column; gap: 8px; } .framer-q5ueu .framer-1rx2pw8, .framer-q5ueu .framer-a3t00b, .framer-q5ueu .framer-ab5309, .framer-q5ueu .framer-vyasht, .framer-q5ueu .framer-1yoj1mt, .framer-q5ueu .framer-n3f6x8 { flex: none; max-width: 610px; width: 100%; } .framer-q5ueu .framer-hjtua2-container, .framer-q5ueu .framer-5w55qz-container, .framer-q5ueu .framer-1jw5s4s-container, .framer-q5ueu .framer-r0t4pm { width: 100%; } .framer-q5ueu .framer-18jfatw, .framer-q5ueu .framer-17sk270, .framer-q5ueu .framer-rb1abt { padding: 48px 0px 48px 0px; } .framer-q5ueu .framer-nunmt3 { gap: 48px; } .framer-q5ueu .framer-1cz47rm { height: var(--framer-aspect-ratio-supported, 40px); width: 184px; } .framer-q5ueu .framer-w1tsn9 { flex-direction: column; gap: 16px; } .framer-q5ueu .framer-1ag3bj { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-q5ueu .framer-4bms9c, .framer-q5ueu .framer-1ydk26u { height: var(--framer-aspect-ratio-supported, 182px); } .framer-q5ueu .framer-1hsqbn4 { flex: none; gap: 0px; height: min-content; justify-content: center; padding: 20px; } .framer-q5ueu .framer-nv6fak, .framer-q5ueu .framer-j87vgy { flex: none; width: 100%; } .framer-q5ueu .framer-usa1gc { padding: 20px; } .framer-q5ueu .framer-1tv0wjl { height: var(--framer-aspect-ratio-supported, 181px); } .framer-q5ueu .framer-3uepjo { gap: 20px; padding: 20px; } .framer-q5ueu .framer-132s98q { flex-direction: column; gap: 24px; width: 90%; } .framer-q5ueu .framer-amn0jq { gap: 8px; order: 0; width: 100%; } .framer-q5ueu .framer-4250in { height: var(--framer-aspect-ratio-supported, 32px); width: 26px; } .framer-q5ueu .framer-185exx3 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; width: 1px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6652\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qLI9tZGjN\":{\"layout\":[\"fixed\",\"auto\"]},\"WtNKBVunV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerGVU6UNz6N=withCSS(Component,css,\"framer-q5ueu\");export default FramerGVU6UNz6N;FramerGVU6UNz6N.displayName=\"Home New\";FramerGVU6UNz6N.defaultProps={height:6652,width:1280};addFonts(FramerGVU6UNz6N,[{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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...NavACFonts,...VideoHeroMobileFonts,...VideoHeroFonts,...TickerFonts,...VideoTransitionFonts,...LinkWithArrowFonts,...Footer2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGVU6UNz6N\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6652\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qLI9tZGjN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WtNKBVunV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "omCAA2Z,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,EAAMV,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,EAAY,UAAAC,EAAU,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,GAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGnjBqE,GAAiBJ,GAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,GAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAAlC,GAAK,MAAAE,GAAM,YAAAP,EAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,KAAqBpC,EAAYJ,GAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,IAAqBI,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,IAK1NsD,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,GAAYwD,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,EAAQ,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,EAAY,UAAAC,EAAU,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,IAAaoD,GAA+C,GAAG,GAAG,EAAKH,KAAmB,YAAW5C,GAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,GAAW,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,EAAM,YAAY,QAAQA,EAAM,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,EAAoB5E,EAAM,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,ECpE2C,IAAMC,GAAWC,EAASC,CAAK,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,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,SAAAC,EAAS,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAUG,EAAM,WAAW,EAAE,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAKE,EAAM,WAAW,oHAAoH,UAAUJ,GAASI,EAAM,WAAW,CAAC,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB9B,GAAuBD,EAAMzB,CAAQ,EAAuCyD,GAAkBC,EAAG9D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAK8C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByD,EAAM7C,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,gBAAgBhB,EAAUO,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAActC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,KAAK,iBAAiBL,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQX,CAAS,EAAE,IAAI;AAAA;AAAA;AAAA,EAAoQ,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB3C,EAAKnB,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAM,cAAc,GAAM,QAAQ,MAAM,OAAOiD,EAAU,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,OAAO,GAAG7C,GAAqB,CAAC,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBL,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQZ,CAAS,EAAE,IAAI;AAAA;AAAA;AAAA,EAAoN,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,gFAAgF,oQAAoQ,gNAAgN,qLAAqL,gNAAgN,4MAA4M,8LAA8L,EAW3xMC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,oHAAoH,YAAY,iBAAiB,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,MAAM,YAAY,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGzE,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX/U,IAAM+E,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAWC,EAASC,CAAK,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS9B,EAAO,OAAa+B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,GAAG4C,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,IAAIwC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB3B,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAAyD,GAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCQ,GAAkBC,EAAGnE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBwB,EAAK4C,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQrB,EAAS,QAAQ,GAAM,SAAsBoB,EAAKT,GAAW,CAAC,MAAMR,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBc,EAAM1E,EAAO,IAAI,CAAC,GAAGuD,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,GAAkB,iBAAiBlB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,qEAAqE,GAAGQ,CAAK,EAAE,GAAG7C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAK/B,GAAgB,CAAC,eAAeiB,GAAU,4BAA4B,GAAK,6BAA6B,GAAK,0BAA0B,GAAG,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiBmD,EAAiB,SAAS,YAAY,kBAAkBjD,GAAmB,SAAsBa,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBV,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBpC,EAAK1B,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAM,MAAM,GAAK,UAAU,QAAQ,MAAMkE,EAAa,QAAQ,GAAK,OAAO,qEAAqE,cAAc,GAAK,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,mLAAmL,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,kBAAkB9C,GAAmB,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBU,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBV,EAAiB,SAAS,YAAY,IAAI,khmBAAkhmB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,kFAAkF,8TAA8T,gNAAgN,8HAA8H,kMAAkM,8SAA8S,6KAA6K,EAUhx1BC,GAAgBC,EAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG9E,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVqD,IAAMoF,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAWC,EAASC,CAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,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,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS7B,EAAO,OAAa8B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,GAAG2C,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,GAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,IAAIuC,EAAW,QAAAhC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiB3B,GAAuBD,EAAM3B,CAAQ,EAAO,CAAC,sBAAAwD,GAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCQ,GAAkBC,EAAGlE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBuB,EAAK4C,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQpB,EAAS,QAAQ,GAAM,SAAsBmB,EAAKT,GAAW,CAAC,MAAMP,GAAY,SAAsB6D,EAAMzE,EAAO,IAAI,CAAC,GAAGsD,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,GAAkB,iBAAiBlB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,qEAAqE,GAAGQ,CAAK,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAK9B,GAAgB,CAAC,eAAegB,GAAU,4BAA4B,GAAK,6BAA6B,GAAK,0BAA0B,GAAG,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,iBAAiBmD,EAAiB,SAAS,YAAY,kBAAkBjD,GAAmB,SAAsBa,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBV,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAKgD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBpC,EAAKzB,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAM,MAAM,GAAK,UAAU,QAAQ,MAAMiE,EAAa,QAAQ,GAAK,OAAO,uEAAuE,cAAc,GAAK,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,kLAAkL,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,kBAAkB9C,GAAmB,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBU,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBV,EAAiB,SAAS,YAAY,IAAI,0qlBAA0qlB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,gFAAgF,uTAAuT,iNAAiN,8HAA8H,sLAAsL,6SAA6S,2KAA2K,kIAAkI,EAU730BC,GAAgBC,EAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG7E,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVy8B,IAAMmF,GAAWC,EAASC,EAAK,EAAQC,GAAqBF,EAASG,EAAe,EAAQC,GAAeJ,EAASK,EAAS,EAAQC,GAAYN,EAASO,EAAM,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAqBX,EAASY,EAAe,EAAQC,GAAuCC,GAAwBF,EAAe,EAAQG,GAAmBf,EAASgB,EAAa,EAAQC,GAAajB,EAASkB,EAAO,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,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,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ9B,GAAY,EAAK,EAAQuC,EAAe,OAAyIC,EAAkBC,EAAGvC,GAAkB,GAA1I,CAAa0B,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,GAAY,IAAQ,CAACzC,GAAU,GAAiBmC,IAAc,YAA6CO,EAAa,IAAS1C,GAAU,EAAiBmC,IAAc,YAAtB,GAA6D,OAAAQ,GAAiB,CAAC,CAAC,EAAsBrC,EAAKsC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA1C,EAAiB,EAAE,SAAsB2C,EAAMC,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+FAA+F,CAAC,EAAe0C,EAAMvD,EAAO,IAAI,CAAC,GAAGwC,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKyC,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBzC,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKzB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAACJ,GAAY,GAAgBnC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMX,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,EAAU,CAAC,UAAU,sDAAsD,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKvB,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2D,EAAa,GAAgBpC,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,yCAAyC,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKrB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKnB,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmB,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBgB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe9C,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAsBgB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,CAAC,CAAC,CAAC,EAAe9C,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBgB,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBgB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKhB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBgB,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAu3K,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/C,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBgB,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA,EAA44I,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/C,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBgB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9C,EAAKhB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBgB,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAw3C,mBAAmB,EAAI,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,CAAC,EAAe/C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBuC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAMzD,GAAgB,CAAC,iBAAiB,CAAC,OAAO,EAAE,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,oBAAoB,GAAK,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,EAAE,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,SAAS,CAAckB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,uBAAoCvC,EAAK,KAAK,CAAC,CAAC,EAAE,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,uBAAoCvC,EAAK,KAAK,CAAC,CAAC,EAAE,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,CAAC,2BAAwCvC,EAAK,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAqN,mBAAmB,EAAI,CAAC,EAAe/C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,8BAA2CvC,EAAK,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAGvB,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,EAAE,MAAM,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC,EAAE,SAAsB7B,EAAKb,GAAuC,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,sHAAsH,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBuC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAMzD,GAAgB,CAAC,iBAAiB,CAAC,OAAO,EAAE,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,oBAAoB,GAAK,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,EAAE,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,SAAS,CAAckB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,mBAAgCvC,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,mBAAgCvC,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,CAAC,qBAAkCvC,EAAK,KAAK,CAAC,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,iCAA8CvC,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAqN,mBAAmB,EAAI,CAAC,EAAe/C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,oBAAiCvC,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAGvB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC,EAAE,SAAsB7B,EAAKb,GAAuC,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,8GAA8G,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAMzD,GAAgB,CAAC,iBAAiB,CAAC,OAAO,EAAE,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,oBAAoB,GAAK,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,EAAE,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,SAAS,CAAckB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,0BAAuCvC,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,0CAAkDvC,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,mDAA8C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAqN,mBAAmB,EAAI,CAAC,EAAe/C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,sCAAmDvC,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAGvB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC,EAAE,SAAsB7B,EAAKb,GAAuC,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,mHAAmH,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvC,EAAK+C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,g5FAAg5F,mBAAmB,EAAI,CAAC,EAAe/C,EAAKlB,GAAgB,CAAC,iBAAiB,CAAC,OAAO,EAAE,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,oBAAoB,GAAK,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,EAAE,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,SAAsBkB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,aAA0BvC,EAAK,KAAK,CAAC,CAAC,EAAE,aAA0BA,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,wBAAqCvC,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yDAAyD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcvC,EAAKgD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMvD,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAS,CAAcgB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoB,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,uFAAuF,OAAO,mKAAmK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,uFAAuF,OAAO,mKAAmK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQG,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcvC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,GAAG,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,GAAG,GAAGvB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,IAAI,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKV,GAAc,CAAC,OAAO,OAAO,UAAU,sBAAsB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAKgD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMvD,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAS,CAAcgB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoB,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQG,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uFAAuF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,GAAG,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,GAAG,GAAGvB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,IAAI,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKV,GAAc,CAAC,OAAO,OAAO,UAAU,sBAAsB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAKgD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMvD,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAS,CAAcgB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoB,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQG,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+EAA+E,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,GAAG,GAAG,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,GAAG,GAAGvB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,GAAG,IAAI,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAKV,GAAc,CAAC,OAAO,OAAO,UAAU,sBAAsB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBuC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvC,EAAK+C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAqN,mBAAmB,EAAI,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcvC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yFAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mGAAmG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEmC,GAAY,GAAgBnC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQoB,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,6CAA6C,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAe9C,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mGAAmG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,EAAa,GAAgBpC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQoB,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQG,GAA2B/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,+BAA+B,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlB,EAAK0C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB1C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKR,GAAQ,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,EAAeQ,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkD,GAAI,CAAC,kFAAkF,kFAAkF,oVAAoV,oKAAoK,+RAA+R,yKAAyK,wGAAwG,6RAA6R,8LAA8L,wIAAwI,oGAAoG,gIAAgI,oGAAoG,+HAA+H,8GAA8G,oJAAoJ,8MAA8M,qGAAqG,qGAAqG,+GAA+G,6MAA6M,qGAAqG,4UAA4U,4WAA4W,gYAAgY,wZAAwZ,wUAAwU,+VAA+V,0NAA0N,2LAA2L,+SAA+S,6XAA6X,8SAA8S,6JAA6J,oRAAoR,ukBAAukB,4UAA4U,iNAAiN,gRAAgR,wLAAwL,ulBAAulB,kLAAkL,0TAA0T,0bAA0b,4SAA4S,+RAA+R,2JAA2J,iRAAiR,sMAAsM,8LAA8L,8LAA8L,qHAAqH,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,i0DAAi0D,opFAAopF,EAa58wEC,GAAgBC,EAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAASH,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,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9E,GAAW,GAAGG,GAAqB,GAAGE,GAAe,GAAGE,GAAY,GAAGK,GAAqB,GAAGI,GAAmB,GAAGE,GAAa,GAAGgE,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC9wE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,4BAA8B,OAAO,yBAA2B,OAAO,kBAAoB,OAAO,qBAAuB,4BAA4B,sBAAwB,IAAI,yBAA2B,QAAQ,oCAAsC,4JAA0L,qBAAuB,OAAO,6BAA+B,OAAO,qBAAuB,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,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", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "opacity", "opacity2", "uRL", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XGiCANXtm", "yw_iag2Oy", "OWWd5kS6E", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerb07XzNkyL", "withCSS", "b07XzNkyL_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onEnd1o6ph81", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerF9sPUxQ8V", "withCSS", "F9sPUxQ8V_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onEnd1eau2pe", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framert0VHnrvFU", "withCSS", "t0VHnrvFU_default", "addPropertyControls", "ControlType", "addFonts", "NavACFonts", "getFonts", "QVYkaZuxi_default", "VideoHeroMobileFonts", "t0VHnrvFU_default", "VideoHeroFonts", "F9sPUxQ8V_default", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "VideoTransitionFonts", "b07XzNkyL_default", "VideoTransitionWithVariantAppearEffect", "withVariantAppearEffect", "LinkWithArrowFonts", "nPl570eto_default", "Footer2Fonts", "aSkXHQMkg_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Image2", "SVG", "Link", "getLoadingLazyAtYPosition", "css", "FramerGVU6UNz6N", "withCSS", "GVU6UNz6N_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
