{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/Dl6PnuO78HWmLC1StlYP/5M4AUcvuyX4zc1YVXncn/h_yMAniiD.js", "ssg:https://framerusercontent.com/modules/j3kU1YH3KBAhLM6GzaYO/baOfxjtlO32YIsPXo5WG/h54wrzFY5.js", "ssg:https://framerusercontent.com/modules/QOrbNXoxJ1YKof7iEPcW/MYCgorVp7SJPWoWCk8ra/K3jHFfI57.js", "ssg:https://framerusercontent.com/modules/CZyO3Cpq5LILzQfzjiAl/0Wwn9L6soF0hz1ReNhCL/A78v7e8Ff.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 (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kVKfghqAVx9kEVgvd8gC/CDMxVXzmFZH63VgarY7i/PWn1k_MD2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HUzoAoLGduiZTxVP1cb3/6fcu3OJXzCjbveZNkJYT/r1XUtbEQH.js\";const cycleOrder=[\"VoKaL9XwP\"];const serializationHash=\"framer-QIBC6\";const variantClassNames={VoKaL9XwP:\"framer-v-1qd7183\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,text,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,faFMS_mz0:link!==null&&link!==void 0?link:props.faFMS_mz0,kx46x2WlG:(_ref=image!==null&&image!==void 0?image:props.kx46x2WlG)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/7dlPDBCIV08M2qXQmRy1K1a1Q4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7dlPDBCIV08M2qXQmRy1K1a1Q4.png?scale-down-to=1024 968w,https://framerusercontent.com/images/7dlPDBCIV08M2qXQmRy1K1a1Q4.png 1456w\"},mP1huP1ou:(_ref1=title!==null&&title!==void 0?title:props.mP1huP1ou)!==null&&_ref1!==void 0?_ref1:\"Use cases\",PkBn1bZoZ:(_ref2=text!==null&&text!==void 0?text:props.PkBn1bZoZ)!==null&&_ref2!==void 0?_ref2:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et incididunt ut labore et dolore magna aliqua.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mP1huP1ou,PkBn1bZoZ,kx46x2WlG,faFMS_mz0,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VoKaL9XwP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:faFMS_mz0,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1qd7183\",className,classNames)} framer-f0fb18`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VoKaL9XwP\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e5gir4\",layoutDependency:layoutDependency,layoutId:\"wyUIP4M_w\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1540,pixelWidth:1456,sizes:\"330px\",...toResponsiveImage(kx46x2WlG),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-58oqzg\",\"data-framer-name\":\"cube\",layoutDependency:layoutDependency,layoutId:\"OvbR3vTvE\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,filter:\"hue-rotate(0deg)\",WebkitFilter:\"hue-rotate(0deg)\"}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jst4nf\",layoutDependency:layoutDependency,layoutId:\"D6TUGZGKj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-j9x5gm\",\"data-styles-preset\":\"r1XUtbEQH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Use cases\"})}),className:\"framer-m6rpkk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VU_dLCE9N\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mP1huP1ou,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"})}),className:\"framer-1rt0d2v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N0unhAWXx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PkBn1bZoZ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1npvkqn\",layoutDependency:layoutDependency,layoutId:\"fH97hdU0I\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u2014\u2014 READ MORE\"})}),className:\"framer-cveefb\",fonts:[\"GF;DM Mono-500\"],layoutDependency:layoutDependency,layoutId:\"xYHDsfbnX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QIBC6.framer-f0fb18, .framer-QIBC6 .framer-f0fb18 { display: block; }\",\".framer-QIBC6.framer-1qd7183 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: auto; }\",\".framer-QIBC6 .framer-1e5gir4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 330px; }\",\".framer-QIBC6 .framer-58oqzg { flex: 1 0 0px; height: 350px; overflow: visible; position: relative; width: 1px; }\",\".framer-QIBC6 .framer-jst4nf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 320px; }\",\".framer-QIBC6 .framer-m6rpkk, .framer-QIBC6 .framer-1rt0d2v, .framer-QIBC6 .framer-cveefb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QIBC6 .framer-1npvkqn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QIBC6.framer-1qd7183, .framer-QIBC6 .framer-1e5gir4, .framer-QIBC6 .framer-jst4nf, .framer-QIBC6 .framer-1npvkqn { gap: 0px; } .framer-QIBC6.framer-1qd7183 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-QIBC6.framer-1qd7183 > :first-child, .framer-QIBC6 .framer-jst4nf > :first-child, .framer-QIBC6 .framer-1npvkqn > :first-child { margin-top: 0px; } .framer-QIBC6.framer-1qd7183 > :last-child, .framer-QIBC6 .framer-jst4nf > :last-child, .framer-QIBC6 .framer-1npvkqn > :last-child { margin-bottom: 0px; } .framer-QIBC6 .framer-1e5gir4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QIBC6 .framer-1e5gir4 > :first-child { margin-left: 0px; } .framer-QIBC6 .framer-1e5gir4 > :last-child { margin-right: 0px; } .framer-QIBC6 .framer-jst4nf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QIBC6 .framer-1npvkqn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 591.5\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"mP1huP1ou\":\"title\",\"PkBn1bZoZ\":\"text\",\"kx46x2WlG\":\"image\",\"faFMS_mz0\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh_yMAniiD=withCSS(Component,css,\"framer-QIBC6\");export default Framerh_yMAniiD;Framerh_yMAniiD.displayName=\"Use Cases\";Framerh_yMAniiD.defaultProps={height:591.5,width:330};addPropertyControls(Framerh_yMAniiD,{mP1huP1ou:{defaultValue:\"Use cases\",displayTextArea:false,title:\"Title\",type:ControlType.String},PkBn1bZoZ:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et incididunt ut labore et dolore magna aliqua.\",displayTextArea:true,title:\"Text\",type:ControlType.String},kx46x2WlG:{__defaultAssetReference:\"data:framer/asset-reference,7dlPDBCIV08M2qXQmRy1K1a1Q4.png?originalFilename=Use_Cases_1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},faFMS_mz0:{title:\"Link\",type:ControlType.Link}});addFonts(Framerh_yMAniiD,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh_yMAniiD\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"mP1huP1ou\\\":\\\"title\\\",\\\"PkBn1bZoZ\\\":\\\"text\\\",\\\"kx46x2WlG\\\":\\\"image\\\",\\\"faFMS_mz0\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"330\",\"framerIntrinsicHeight\":\"591.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h_yMAniiD.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-uYzDB .framer-styles-preset-1iffkka:not(.rich-text-wrapper), .framer-uYzDB .framer-styles-preset-1iffkka.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-uYzDB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/j3kU1YH3KBAhLM6GzaYO/baOfxjtlO32YIsPXo5WG/h54wrzFY5.js\";const enabledGestures={rxHF7HfED:{hover:true}};const cycleOrder=[\"rxHF7HfED\"];const serializationHash=\"framer-Ukvk6\";const variantClassNames={rxHF7HfED:\"framer-v-140ip65\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,NwoUqr7Lx:link!==null&&link!==void 0?link:props.NwoUqr7Lx};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NwoUqr7Lx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rxHF7HfED\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-140ip65\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rxHF7HfED\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"rxHF7HfED-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1o1yb\",layoutDependency:layoutDependency,layoutId:\"GUB998UVM\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:NwoUqr7Lx,openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iffkka\",\"data-styles-preset\":\"h54wrzFY5\",children:\"LEARN MORE \u2192\"})})})}),className:\"framer-1x3cwpz\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"XHvq39tbh\",variants:{\"rxHF7HfED-hover\":{\"--extracted-r6o4lv\":\"rgb(110, 110, 110)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"rxHF7HfED-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(110, 110, 110))\"},children:/*#__PURE__*/_jsx(Link,{href:NwoUqr7Lx,openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iffkka\",\"data-styles-preset\":\"h54wrzFY5\",children:\"LEARN MORE \u2192\"})})})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ukvk6.framer-174g02y, .framer-Ukvk6 .framer-174g02y { display: block; }\",\".framer-Ukvk6.framer-140ip65 { cursor: pointer; height: 21px; overflow: hidden; position: relative; width: 103px; }\",\".framer-Ukvk6 .framer-1k1o1yb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 48%; width: min-content; }\",\".framer-Ukvk6 .framer-1x3cwpz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ukvk6 .framer-1k1o1yb { gap: 0px; } .framer-Ukvk6 .framer-1k1o1yb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ukvk6 .framer-1k1o1yb > :first-child { margin-top: 0px; } .framer-Ukvk6 .framer-1k1o1yb > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 103\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cN4Hd8em0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NwoUqr7Lx\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK3jHFfI57=withCSS(Component,css,\"framer-Ukvk6\");export default FramerK3jHFfI57;FramerK3jHFfI57.displayName=\"Learn More\";FramerK3jHFfI57.defaultProps={height:21,width:103};addPropertyControls(FramerK3jHFfI57,{NwoUqr7Lx:{title:\"Link\",type:ControlType.Link}});addFonts(FramerK3jHFfI57,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK3jHFfI57\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"103\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cN4Hd8em0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"NwoUqr7Lx\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"21\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/tCxK1bnlBAl9y7gPkdSp/Cookies.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Tag from\"#framer/local/canvasComponent/EwgjuU71G/EwgjuU71G.js\";import FooterCompleteNightWNAP from\"#framer/local/canvasComponent/fUuDhB9gC/fUuDhB9gC.js\";import BlogNewCards from\"#framer/local/canvasComponent/GA3H8tQWC/GA3H8tQWC.js\";import UseCases from\"#framer/local/canvasComponent/h_yMAniiD/h_yMAniiD.js\";import NavSimple from\"#framer/local/canvasComponent/hH1DdpI8D/hH1DdpI8D.js\";import Button from\"#framer/local/canvasComponent/hljNqlOx9/hljNqlOx9.js\";import FeatureSimple from\"#framer/local/canvasComponent/IMm2i7xki/IMm2i7xki.js\";import LearnMore from\"#framer/local/canvasComponent/K3jHFfI57/K3jHFfI57.js\";import Category from\"#framer/local/collection/iiSMSiyMa/iiSMSiyMa.js\";import Blog from\"#framer/local/collection/lRogoakf5/lRogoakf5.js\";import*as sharedStyle2 from\"#framer/local/css/Bgl_uNKYX/Bgl_uNKYX.js\";import*as sharedStyle1 from\"#framer/local/css/dGJYq65Lz/dGJYq65Lz.js\";import*as sharedStyle4 from\"#framer/local/css/PWn1k_MD2/PWn1k_MD2.js\";import*as sharedStyle5 from\"#framer/local/css/r1XUtbEQH/r1XUtbEQH.js\";import*as sharedStyle3 from\"#framer/local/css/UkYay4GtR/UkYay4GtR.js\";import*as sharedStyle from\"#framer/local/css/uUM82aRhQ/uUM82aRhQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/A78v7e8Ff/A78v7e8Ff.js\";const NavSimpleFonts=getFonts(NavSimple);const TagFonts=getFonts(Tag);const ButtonFonts=getFonts(Button);const LearnMoreFonts=getFonts(LearnMore);const FeatureSimpleFonts=getFonts(FeatureSimple);const VideoFonts=getFonts(Video);const UseCasesFonts=getFonts(UseCases);const BlogNewCardsFonts=getFonts(BlogNewCards);const FooterCompleteNightWNAPFonts=getFonts(FooterCompleteNightWNAP);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={c10fi4rz7:\"(min-width: 810px) and (max-width: 1199px)\",HN60G6Z58:\"(max-width: 809px)\",oBUKcYoQM:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xAReb\";const variantClassNames={c10fi4rz7:\"framer-v-1nqsl1x\",HN60G6Z58:\"framer-v-lzp7x7\",oBUKcYoQM:\"framer-v-13xyskw\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"oBUKcYoQM\",Phone:\"HN60G6Z58\",Tablet:\"c10fi4rz7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oBUKcYoQM\"};};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,UUL2qrDB0oCVinmvLv,MQEZ7owvfoCVinmvLv,jNObvUWjLoCVinmvLv,FchZ30BV3_CGkSpPgGEoCVinmvLv,Vir1VUcXIoCVinmvLv,idoCVinmvLv,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"oBUKcYoQM\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-13xyskw\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eurbl9-container\",id:\"1eurbl9\",nodeId:\"cXH0xYyD7\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{JU5116W8C:\"nupapQLqg\",variant:\"onuwv4s61\"},HN60G6Z58:{variant:\"onuwv4s61\"}},children:/*#__PURE__*/_jsx(NavSimple,{height:\"100%\",id:\"cXH0xYyD7\",JU5116W8C:\"PqgBulBPi\",layoutId:\"cXH0xYyD7\",LylWg8UG8:0,style:{width:\"100%\"},Tyvh_HtHO:\"rgb(255, 255, 255)\",variant:\"J7TtQthx_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80),pixelHeight:1504,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RKooIRl6kUpSQREZ6qVTIh09oI.png\",srcSet:\"https://framerusercontent.com/images/RKooIRl6kUpSQREZ6qVTIh09oI.png?scale-down-to=512 512w,https://framerusercontent.com/images/RKooIRl6kUpSQREZ6qVTIh09oI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RKooIRl6kUpSQREZ6qVTIh09oI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RKooIRl6kUpSQREZ6qVTIh09oI.png 2880w\"},className:\"framer-1pnsyqy\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbflwf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9hftso\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+80+70+0+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+80+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+80+60+123.30000000000001+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18x1mh4-container\",nodeId:\"ZxIMS7tSr\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"AI-DRIVEN ERGONOMIC SOLUTION\",id:\"ZxIMS7tSr\",layoutId:\"ZxIMS7tSr\",variant:\"Nq1uWl93W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-187puy7\",\"data-styles-preset\":\"uUM82aRhQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Prevent injuries.\",/*#__PURE__*/_jsx(\"br\",{}),\"Boost productivity.\"]})})},HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-187puy7\",\"data-styles-preset\":\"uUM82aRhQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Prevent injuries.\",/*#__PURE__*/_jsx(\"br\",{}),\"Boost productivity.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-187puy7\",\"data-styles-preset\":\"uUM82aRhQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Prevent injuries.\",/*#__PURE__*/_jsx(\"br\",{}),\"Boost productivity.\"]})}),className:\"framer-1gnbo1l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"An AI-powered ergonomics solution that enables safety teams to proactively address issues before an injury occurs.\"})})},HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"An AI-powered ergonomics solution that enables safety teams to proactively address issues before an injury occurs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"An AI-powered ergonomics solution that enables safety teams to proactively address issues before an injury occurs.\"})}),className:\"framer-eobg53\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c649ub\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+80+70+0+0+0+307.4+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+80+60+0+0+0+0+292.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+80+60+123.30000000000001+0+307.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b3qky5-container\",nodeId:\"cBVbYqdLw\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:5,height:\"100%\",id:\"cBVbYqdLw\",J0LC2FGV8:true,KJK1sV1GB:\"Schedule a Demo\",layoutId:\"cBVbYqdLw\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://meetings.hubspot.com/jenelle-cousins1?uuid=0b8c1c63-2024-47b7-a7eb-e8a53552c8e9\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ezx1jd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+70+0+351.4+0+0),pixelHeight:1566,pixelWidth:2057,positionX:\"center\",positionY:\"center\",sizes:\"717px\",src:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png 2057w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+60+0+0+344.4+10+0),pixelHeight:1566,pixelWidth:2057,positionX:\"center\",positionY:\"center\",sizes:\"358px\",src:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png 2057w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+60+0+-112.99999999999983),pixelHeight:1566,pixelWidth:2057,positionX:\"right\",positionY:\"center\",sizes:\"846px\",src:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/H83J9gpyqyAKl2QURkNgzo9RZYc.png 2057w\"},className:\"framer-1idj85b\",\"data-framer-name\":\"Shape Holo\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"},className:\"framer-74uzlk\",\"data-framer-name\":\"Section2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jp1tcg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+1094.4+70+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+817.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+808+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kb35vv-container\",nodeId:\"l_nvCS7U7\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"HOW INSEER WORKS\",id:\"l_nvCS7U7\",layoutId:\"l_nvCS7U7\",variant:\"ItGawK41q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\"},children:\"The integral solution to assess, analyze and correct ergonomic risks\"})}),className:\"framer-nz5lbh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omb1p0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1piylcm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcg2qr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+0+51.5+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/hdr2tQ6GfKyFaE3NZzUmh4t24.png\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+0+40+0+0+0),pixelHeight:228,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hdr2tQ6GfKyFaE3NZzUmh4t24.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+0+133+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/hdr2tQ6GfKyFaE3NZzUmh4t24.png\"},className:\"framer-1g8a9iq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Assess\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Assess\"})}),className:\"framer-1rc08gc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Record and upload a video using any device and get a full color-coded assessment in seconds.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Record and upload a video using any device and get a full color-coded assessment in seconds.\"})}),className:\"framer-22w5dw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vxskc5pan\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":vxskc5pan\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":vxskc5pan\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+1094.4+70+156+0+0+51.5+0+282},HN60G6Z58:{y:(componentViewport?.y||0)+0+817.4+60+146+0+0+40+0+0+258}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"103px\",y:(componentViewport?.y||0)+0+808+100+184+0+0+133+0+286,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e5iaiz-container\",nodeId:\"ns12SN_8f\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{NwoUqr7Lx:resolvedLinks[1]},HN60G6Z58:{NwoUqr7Lx:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(LearnMore,{height:\"100%\",id:\"ns12SN_8f\",layoutId:\"ns12SN_8f\",NwoUqr7Lx:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t6ohyg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+0+30+0),pixelHeight:1525,pixelWidth:1990,positionX:\"center\",positionY:\"center\",sizes:\"421px\",src:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png\",srcSet:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png 1990w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+0+40+286+0),pixelHeight:1525,pixelWidth:1990,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png\",srcSet:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png 1990w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+0+40+-5),pixelHeight:1525,pixelWidth:1990,positionX:\"center\",positionY:\"center\",sizes:\"614px\",src:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png\",srcSet:\"https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XaDtfsQlnqqGqiit9OsuPNzXJA.png 1990w\"},className:\"framer-x4621z\",\"data-framer-name\":\"cube\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1iu3c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rykkd6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+468+51.5+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/H4hEb4l2hJEuaZPHzFzAXCeoMs.png\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+556+40+0+0+0),pixelHeight:228,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H4hEb4l2hJEuaZPHzFzAXCeoMs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+625+133+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/H4hEb4l2hJEuaZPHzFzAXCeoMs.png\"},className:\"framer-1ivoh4x\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Analyze\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Analyze\"})}),className:\"framer-n67ywr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Identify the biggest areas of opportunity across your entire organization with our data analytics dashboard.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Identify the biggest areas of opportunity across your entire organization with our data analytics dashboard.\"})}),className:\"framer-zf936e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Ewq2gLceR\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":Ewq2gLceR\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":Ewq2gLceR\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+1094.4+70+156+0+468+51.5+0+282},HN60G6Z58:{y:(componentViewport?.y||0)+0+817.4+60+146+0+556+40+0+0+258}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"103px\",y:(componentViewport?.y||0)+0+808+100+184+0+625+133+0+286,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ei25uv-container\",nodeId:\"ZWLbCz5Kl\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{NwoUqr7Lx:resolvedLinks1[1]},HN60G6Z58:{NwoUqr7Lx:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(LearnMore,{height:\"100%\",id:\"ZWLbCz5Kl\",layoutId:\"ZWLbCz5Kl\",NwoUqr7Lx:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6chs0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+468+30+-13),pixelHeight:1624,pixelWidth:1887,positionX:\"center\",positionY:\"center\",sizes:\"421px\",src:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png\",srcSet:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png 1887w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+556+40+286+0),pixelHeight:1624,pixelWidth:1887,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png\",srcSet:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png 1887w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+625+40+-21.5),pixelHeight:1624,pixelWidth:1887,positionX:\"center\",positionY:\"center\",sizes:\"618px\",src:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png\",srcSet:\"https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xwUojJFyIw5N7JGbsVwVflwSTcA.png 1887w\"},className:\"framer-m63xm7\",\"data-framer-name\":\"cube\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipz6wd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrgveb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+936+51.5+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/O4glap65U43k3IAkkkQ3mDdBNo.png\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+1112+40+0+0+0),pixelHeight:228,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O4glap65U43k3IAkkkQ3mDdBNo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+1250+133+0+0),pixelHeight:228,pixelWidth:228,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/O4glap65U43k3IAkkkQ3mDdBNo.png\"},className:\"framer-ly06gl\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Correct\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Correct\"})}),className:\"framer-jugo4r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fix and prevent  risky situations with our video library, online courses and assistance from our ergonomics team.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Fix and prevent  risky situations with our video library, online courses and assistance from our ergonomics team.\"})}),className:\"framer-12uj6j7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":J9dSR45J0\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":J9dSR45J0\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined},{href:{hash:\":J9dSR45J0\",webPageId:\"U3smbH6my\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+1094.4+70+156+0+936+51.5+0+282},HN60G6Z58:{y:(componentViewport?.y||0)+0+817.4+60+146+0+1112+40+0+0+258}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"103px\",y:(componentViewport?.y||0)+0+808+100+184+0+1250+133+0+286,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eo70ng-container\",nodeId:\"dZk6a269w\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{NwoUqr7Lx:resolvedLinks2[1]},HN60G6Z58:{NwoUqr7Lx:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(LearnMore,{height:\"100%\",id:\"dZk6a269w\",layoutId:\"dZk6a269w\",NwoUqr7Lx:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sbvbmb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.4+70+156+0+936+30+0+0),pixelHeight:1525,pixelWidth:2031,positionX:\"center\",positionY:\"center\",sizes:\"421px\",src:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png\",srcSet:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png 2031w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+817.4+60+146+0+1112+40+279+0+0),pixelHeight:1525,pixelWidth:2031,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png\",srcSet:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png 2031w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+100+184+0+1250+40+0+0),pixelHeight:1525,pixelWidth:2031,positionX:\"center\",positionY:\"center\",sizes:\"640px\",src:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png\",srcSet:\"https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRY5ayxy05ZKKAjtkgszQJsxyM.png 2031w\"},className:\"framer-xpqjaf\",\"data-framer-name\":\"cube\"})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p0qaIF3XY\"},implicitPathVariables:undefined},{href:{webPageId:\"p0qaIF3XY\"},implicitPathVariables:undefined},{href:{webPageId:\"p0qaIF3XY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+1094.4+70+1568},HN60G6Z58:{y:(componentViewport?.y||0)+0+817.4+60+1841}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+808+100+2095,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10d0kpg-container\",nodeId:\"Yua159s2T\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{yTZZaFOb3:resolvedLinks3[1]},HN60G6Z58:{yTZZaFOb3:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{eszixBaDA:5,height:\"100%\",id:\"Yua159s2T\",J0LC2FGV8:false,KJK1sV1GB:\"Schedule a Demo\",layoutId:\"Yua159s2T\",variant:\"zb8n5Cev9\",width:\"100%\",yTZZaFOb3:resolvedLinks3[0]})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2846.4),pixelHeight:4702,pixelWidth:3052,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ekDzs2xgQnt0iZh8IFeAheDeE.png\",srcSet:\"https://framerusercontent.com/images/ekDzs2xgQnt0iZh8IFeAheDeE.png?scale-down-to=1024 664w,https://framerusercontent.com/images/ekDzs2xgQnt0iZh8IFeAheDeE.png?scale-down-to=2048 1329w,https://framerusercontent.com/images/ekDzs2xgQnt0iZh8IFeAheDeE.png?scale-down-to=4096 2658w,https://framerusercontent.com/images/ekDzs2xgQnt0iZh8IFeAheDeE.png 3052w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2822.4),pixelHeight:3454,pixelWidth:860,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kkjTYCpr0uRRPe6E1ZW6ymwGFr4.png\",srcSet:\"https://framerusercontent.com/images/kkjTYCpr0uRRPe6E1ZW6ymwGFr4.png 860w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3147),pixelHeight:3309,pixelWidth:2880,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dLJB6AlpCa3pWY1Ex43JAyb4c.png\",srcSet:\"https://framerusercontent.com/images/dLJB6AlpCa3pWY1Ex43JAyb4c.png?scale-down-to=1024 891w,https://framerusercontent.com/images/dLJB6AlpCa3pWY1Ex43JAyb4c.png?scale-down-to=2048 1782w,https://framerusercontent.com/images/dLJB6AlpCa3pWY1Ex43JAyb4c.png 2880w\"},className:\"framer-1fenu36\",\"data-framer-name\":\"Section 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztmxql\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+2846.4+70+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+2822.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+3147+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hf8ma9-container\",nodeId:\"r3ImYB5ZN\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"WHAT MAKES INSEER UNIQUE\",id:\"r3ImYB5ZN\",layoutId:\"r3ImYB5ZN\",variant:\"ItGawK41q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\"},children:\"The most precise and powerful ergonomics solution\"})}),className:\"framer-102q2me\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jjqhv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+0},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dcw57z-container\",nodeId:\"vh4b6Fqa8\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"vh4b6Fqa8\",JXnXtqPho:\"Simplifies thousands of data points into a single number, saving hours of analysis.\",layoutId:\"vh4b6Fqa8\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"Save Time\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+0},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+250}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rs0hhd-container\",nodeId:\"ULjrRefE3\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"ULjrRefE3\",JXnXtqPho:\"Objective analysis reduces human error and provides consistency.\",layoutId:\"ULjrRefE3\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"Reduce Errors\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+260},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+500}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18w4247-container\",nodeId:\"d9SxlUkFD\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"d9SxlUkFD\",JXnXtqPho:\"A centralized  analytics dashboard to understand risks across your organization.\",layoutId:\"d9SxlUkFD\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"Powerful Analytics\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+260},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+750}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-32hfec-container\",nodeId:\"EGPgwrdKQ\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"EGPgwrdKQ\",JXnXtqPho:\"Access the web-based platform from anywhere and record videos using any device.\",layoutId:\"EGPgwrdKQ\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"No Tech Requirements\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+520},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+1e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ve31yv-container\",nodeId:\"gXtaeO1_q\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"gXtaeO1_q\",JXnXtqPho:\"An intuitive interface usable by someone with little to no ergonomics knowledge.\",layoutId:\"gXtaeO1_q\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"No Learning Curve\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:\"340px\",y:(componentViewport?.y||0)+0+2846.4+70+160+0+520},HN60G6Z58:{width:\"300px\",y:(componentViewport?.y||0)+0+2822.4+60+144+0+1250}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"276px\",y:(componentViewport?.y||0)+0+3147+100+196+20+260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1adzg-container\",nodeId:\"ER2tzD1PR\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{variant:\"mwc9jrM6F\"}},children:/*#__PURE__*/_jsx(FeatureSimple,{height:\"100%\",id:\"ER2tzD1PR\",JXnXtqPho:\"Validate the impact of workstation modifications to justify capital expenditures.\",layoutId:\"ER2tzD1PR\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"Kfyk6IRpL\",width:\"100%\",Z6hiuC6BW:\"Make Smarter Decisions \"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18j2qzs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wIOABSbEq\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8},HN60G6Z58:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,poster:\"https://framerusercontent.com/images/44XiFM2DjoArbdQj3U6gPjhk.png\",topLeftRadius:6,topRightRadius:6}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:true,height:\"100%\",id:\"wIOABSbEq\",isMixedBorderRadius:false,layoutId:\"wIOABSbEq\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/9lJTtNYjwBJFekqhHHWnQFoae28.png\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://inseer-public-videos.s3.us-east-2.amazonaws.com/About+Inseer.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4356.4),pixelHeight:4064,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png\",srcSet:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=1024 725w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=2048 1451w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png 2880w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4782.4),pixelHeight:4064,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png\",srcSet:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=1024 725w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=2048 1451w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4713),pixelHeight:4064,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png\",srcSet:\"https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=1024 725w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png?scale-down-to=2048 1451w,https://framerusercontent.com/images/exY2LH3PkRT6MaMP1V462N7N9Q.png 2880w\"},className:\"framer-1g51wu8\",\"data-framer-name\":\"Features Big Day\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st253a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+4713+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jg9zr-container\",nodeId:\"CUoPdFsZf\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"USE CASES\",id:\"CUoPdFsZf\",layoutId:\"CUoPdFsZf\",variant:\"Z2wjynIFK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"One solution.\",/*#__PURE__*/_jsx(\"br\",{}),\"Unlimited applications.\"]})}),className:\"framer-1pkb974\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bsaqtu\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":dvY2bXNhQ\",webPageId:\"BalX57AiV\"},motionChild:true,nodeId:\"zhtLnuG1C\",openInNewTab:false,scopeId:\"A78v7e8Ff\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1c4qspr framer-y0enj4\",\"data-framer-name\":\"Use Cases\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i4eel3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4356.4+70+151+30+0+0+0+0),pixelHeight:1540,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png\",srcSet:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png?scale-down-to=1024 968w,https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png 1456w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4782.4+60+126+20+0+0+0+0),pixelHeight:1540,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png\",srcSet:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png?scale-down-to=1024 968w,https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png 1456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4713+100+153+40+0+0+0+0),pixelHeight:1540,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png\",srcSet:\"https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png?scale-down-to=1024 968w,https://framerusercontent.com/images/mGWae7gmKNa5BaxqEJdYAxWWtvo.png 1456w\"},className:\"framer-1bzw7ke\",\"data-framer-name\":\"cube\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fc554s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-j9x5gm\",\"data-styles-preset\":\"r1XUtbEQH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Warehouse and Distribution \"})}),className:\"framer-10lkja4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Inseer\u2019s Vision software is capable of measuring unique postures assumed while working in a warehouse...\"})}),className:\"framer-1fy42rf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fl3lhx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u2014\u2014 READ MORE\"})}),className:\"framer-fyd8i8\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":sbLwpdRhG\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":sbLwpdRhG\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":sbLwpdRhG\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+151+30+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+126+20+710}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,y:(componentViewport?.y||0)+0+4713+100+153+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5vljq-container\",nodeId:\"hdJSfXu52\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{faFMS_mz0:resolvedLinks4[1]},HN60G6Z58:{faFMS_mz0:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(UseCases,{faFMS_mz0:resolvedLinks4[0],height:\"100%\",id:\"hdJSfXu52\",kx46x2WlG:addImageAlt({src:\"https://framerusercontent.com/images/E9ExT4e0Nv2DRwS2BAJPLrPqM.png\",srcSet:\"https://framerusercontent.com/images/E9ExT4e0Nv2DRwS2BAJPLrPqM.png?scale-down-to=1024 968w,https://framerusercontent.com/images/E9ExT4e0Nv2DRwS2BAJPLrPqM.png 1456w\"},\"\"),layoutId:\"hdJSfXu52\",mP1huP1ou:\"Manufacturing\",PkBn1bZoZ:\"A diverse set of manufacturing tasks within a single facility benefit from Inseer\u2019s Vision software with the ability to objectively capture and calculate the risk associated...\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":hLUXMeLDw\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":hLUXMeLDw\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":hLUXMeLDw\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+151+30+682.5},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+126+20+1420}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,y:(componentViewport?.y||0)+0+4713+100+153+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wu40rr-container\",nodeId:\"r8Pi4Pogi\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{faFMS_mz0:resolvedLinks5[1]},HN60G6Z58:{faFMS_mz0:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(UseCases,{faFMS_mz0:resolvedLinks5[0],height:\"100%\",id:\"r8Pi4Pogi\",kx46x2WlG:addImageAlt({src:\"https://framerusercontent.com/images/07Z0vh7k06gPpeRQO6T39e0.png\",srcSet:\"https://framerusercontent.com/images/07Z0vh7k06gPpeRQO6T39e0.png?scale-down-to=1024 968w,https://framerusercontent.com/images/07Z0vh7k06gPpeRQO6T39e0.png 1456w\"},\"\"),layoutId:\"r8Pi4Pogi\",mP1huP1ou:\"Healthcare\",PkBn1bZoZ:\"In healthcare, practitioners have numerous responsibilities that encompass a wide range of tasks and activities.  Capturing these tasks on video with the purpose...\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":m8rg4q83T\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":m8rg4q83T\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":m8rg4q83T\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+151+30+682.5},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+126+20+2130}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,y:(componentViewport?.y||0)+0+4713+100+153+40+699,children:/*#__PURE__*/_jsx(Container,{className:\"framer-raktsr-container\",nodeId:\"Cem_7STFd\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{faFMS_mz0:resolvedLinks6[1]},HN60G6Z58:{faFMS_mz0:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(UseCases,{faFMS_mz0:resolvedLinks6[0],height:\"100%\",id:\"Cem_7STFd\",kx46x2WlG:addImageAlt({src:\"https://framerusercontent.com/images/XYok5BiQSdBVrYiykgKgTFFnNk.png\",srcSet:\"https://framerusercontent.com/images/XYok5BiQSdBVrYiykgKgTFFnNk.png?scale-down-to=1024 968w,https://framerusercontent.com/images/XYok5BiQSdBVrYiykgKgTFFnNk.png 1456w\"},\"\"),layoutId:\"Cem_7STFd\",mP1huP1ou:\"Utilities\",PkBn1bZoZ:\"The unique nature of utility work is difficult to capture with a traditional ergonomics assessment checklist.  The use of video to collect data specific to the activities...\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tgAgSPUlg\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":tgAgSPUlg\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":tgAgSPUlg\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+151+30+1365},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+126+20+2840}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,y:(componentViewport?.y||0)+0+4713+100+153+40+699,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r38i40-container\",nodeId:\"GRnTtXQWy\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{faFMS_mz0:resolvedLinks7[1]},HN60G6Z58:{faFMS_mz0:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(UseCases,{faFMS_mz0:resolvedLinks7[0],height:\"100%\",id:\"GRnTtXQWy\",kx46x2WlG:addImageAlt({src:\"https://framerusercontent.com/images/zJTQ3ZdZASjKpcYXIw75A9qJ4E.png\",srcSet:\"https://framerusercontent.com/images/zJTQ3ZdZASjKpcYXIw75A9qJ4E.png?scale-down-to=1024 968w,https://framerusercontent.com/images/zJTQ3ZdZASjKpcYXIw75A9qJ4E.png 1457w\"},\"\"),layoutId:\"GRnTtXQWy\",mP1huP1ou:\"Construction\",PkBn1bZoZ:\"The construction industry is unique in that the job tasks are known to be especially physically demanding.  Typical ergonomics assessments do not quite capture...\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":w_j_bIFGF\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":w_j_bIFGF\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined},{href:{hash:\":w_j_bIFGF\",webPageId:\"BalX57AiV\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+151+30+1365},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+126+20+3550}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,y:(componentViewport?.y||0)+0+4713+100+153+40+699,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cdd60w-container\",nodeId:\"PKkocR5_n\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{faFMS_mz0:resolvedLinks8[1]},HN60G6Z58:{faFMS_mz0:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(UseCases,{faFMS_mz0:resolvedLinks8[0],height:\"100%\",id:\"PKkocR5_n\",kx46x2WlG:addImageAlt({src:\"https://framerusercontent.com/images/5UOdoq1R6pwQjwmSV7gpqbJnXg.png\",srcSet:\"https://framerusercontent.com/images/5UOdoq1R6pwQjwmSV7gpqbJnXg.png?scale-down-to=1024 968w,https://framerusercontent.com/images/5UOdoq1R6pwQjwmSV7gpqbJnXg.png 1456w\"},\"\"),layoutId:\"PKkocR5_n\",mP1huP1ou:\"Retail\",PkBn1bZoZ:\"Using Inseer\u2019s Vision software in the Retail industry arms evaluators with a comprehensive, data-driven analysis tool to uncover risk and reveal pain points...\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+4356.4+70+2253.5},HN60G6Z58:{y:(componentViewport?.y||0)+0+4782.4+60+4416}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+4713+100+1623,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ei4w2j-container\",nodeId:\"fmFeJaKYB\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:5,height:\"100%\",id:\"fmFeJaKYB\",J0LC2FGV8:true,KJK1sV1GB:\"Schedule a Demo\",layoutId:\"fmFeJaKYB\",variant:\"zb8n5Cev9\",width:\"100%\",yTZZaFOb3:\"https://meetings.hubspot.com/jenelle-cousins1?uuid=0b8c1c63-2024-47b7-a7eb-e8a53552c8e9\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6793.9),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9362.4),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6560),pixelHeight:5004,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png\",srcSet:\"https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=1024 589w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=2048 1178w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png?scale-down-to=4096 2357w,https://framerusercontent.com/images/xCkq0ywIO6DsK57Jr7twXREU3I.png 2880w\"},className:\"framer-khuvof\",\"data-framer-name\":\"Section2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqadhr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jup6ga\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjbedi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+6793.9+47+0+0+0+50+0+0+0},HN60G6Z58:{width:\"296px\",y:(componentViewport?.y||0)+0+9362.4+36+0+0+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+6560+100+0+0+0+140+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b5viji-container\",nodeId:\"CCBbLLPLJ\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"OUR PATENTED TECHNOLOGY\",id:\"CCBbLLPLJ\",layoutId:\"CCBbLLPLJ\",variant:\"ItGawK41q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Powered by the most precise and advanced AI for ergonomics\"})})},HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Powered by the most precise and advanced AI for ergonomics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Powered by the most precise and advanced AI for ergonomics\"})}),className:\"framer-bjoyzn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Developed by experts from the University of Iowa, our sensorless solution uses machine learning to analyze risks in minutes.\"})})},HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Developed by experts from the University of Iowa, our sensorless solution uses machine learning to analyze risks in minutes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Developed by experts from the University of Iowa, our sensorless solution uses machine learning to analyze risks in minutes.\"})}),className:\"framer-4ipx7t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+6793.9+47+0+0+0+50+0+0+256},HN60G6Z58:{y:(componentViewport?.y||0)+0+9362.4+36+0+0+0+40+0+0+256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+6560+100+0+0+0+140+0+274,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3swpn1-container\",nodeId:\"uWxSEL4ru\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:5,height:\"100%\",id:\"uWxSEL4ru\",J0LC2FGV8:true,KJK1sV1GB:\"Schedule a Demo\",layoutId:\"uWxSEL4ru\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://meetings.hubspot.com/jenelle-cousins1?uuid=0b8c1c63-2024-47b7-a7eb-e8a53552c8e9\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ycg1bs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6793.9+47+0+0+0+50+336+0+0),pixelHeight:1678,pixelWidth:1660,positionX:\"center\",positionY:\"center\",sizes:\"610px\",src:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png\",srcSet:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png?scale-down-to=1024 1013w,https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png 1660w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9362.4+36+0+0+0+40+300+0+0),pixelHeight:1678,pixelWidth:1660,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png\",srcSet:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png?scale-down-to=1024 1013w,https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png 1660w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6560+100+0+0+0+52.5+0+0),pixelHeight:1678,pixelWidth:1660,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 175px) / 2, 1px)`,src:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png\",srcSet:\"https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png?scale-down-to=1024 1013w,https://framerusercontent.com/images/dCEaGHz4InmrXWEruNVJOhYOuY.png 1660w\"},className:\"framer-10rmqze\",\"data-framer-name\":\"cube\"})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7584.9),pixelHeight:1676,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png\",srcSet:\"https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png 2880w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10107.4),pixelHeight:2019,pixelWidth:1170,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mz6CpG6AnavRxOqAXkFYUkaDuJQ.png\",srcSet:\"https://framerusercontent.com/images/mz6CpG6AnavRxOqAXkFYUkaDuJQ.png?scale-down-to=1024 593w,https://framerusercontent.com/images/mz6CpG6AnavRxOqAXkFYUkaDuJQ.png 1170w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7358),pixelHeight:1676,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png\",srcSet:\"https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ghOePykeQR73vf6meeRg5OTm4.png 2880w\"},className:\"framer-o1a4ln\",\"data-framer-name\":\"Section2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z6qwds\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wc8a94\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1quwjid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+7584.9+47+0+0+0+76.5+0+0},HN60G6Z58:{width:\"296px\",y:(componentViewport?.y||0)+0+10107.4+40+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+7358+100+0+0+0+70+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jv7fv0-container\",nodeId:\"v0XYy4JuI\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"FULL SUPPORT\",id:\"v0XYy4JuI\",layoutId:\"v0XYy4JuI\",variant:\"ItGawK41q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Our team of Certified Professional Ergonomists will assist you\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our team of Certified Professional Ergonomists will assist you\"})}),className:\"framer-zlultq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HN60G6Z58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We provide one-on-one support for creating custom solutions and weekly calls to ensure maximized utilization of our platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"left\"},children:\"We provide one-on-one support for creating custom solutions and weekly calls to ensure maximized utilization of our platform.\"})}),className:\"framer-1n00qu8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8069.9),pixelHeight:2071,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png\",srcSet:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png 2880w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10788.4),pixelHeight:2071,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png\",srcSet:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7948),pixelHeight:2071,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png\",srcSet:\"https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rjqV4AQMbFzHat7VDkgMZR9Hsg.png 2880w\"},className:\"framer-ctbzpi\",\"data-framer-name\":\"Feature Day\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tei7b1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r6yma3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+8069.9+70+0+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+10788.4+60+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+7948+100+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhm59v-container\",nodeId:\"i0tMw3us_\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"INTEGRATIONS\",id:\"i0tMw3us_\",layoutId:\"i0tMw3us_\",variant:\"ItGawK41q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"A growing list of integrations\"})}),className:\"framer-1f0cazp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We're enhancing our integration ecosystem to seamlessly collaborate with other solutions.\"})}),className:\"framer-mcox4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-za8xeo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8069.9+70+0+277+40+-41.5),pixelHeight:2045,pixelWidth:3257,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 80px)`,src:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png 3257w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10788.4+60+0+277+40+-41),pixelHeight:2045,pixelWidth:3257,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png 3257w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7948+100+0+277+40+-41),pixelHeight:2045,pixelWidth:3257,positionX:\"center\",positionY:\"center\",sizes:\"742px\",src:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zr6gc8pcUBVRoJ5r7teOcyZvYg.png 3257w\"},className:\"framer-1ovansv\",\"data-framer-name\":\"Shape Icon\"})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8930.9),pixelHeight:2396,pixelWidth:2882,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png\",srcSet:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png 2882w\"}},HN60G6Z58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11476.4),pixelHeight:2396,pixelWidth:2882,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png\",srcSet:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png 2882w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9025),pixelHeight:2396,pixelWidth:2882,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png\",srcSet:\"https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IUyHzYcvtrPpBmpebXpal4DrKg.png 2882w\"},className:\"framer-8sis2z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h342up\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+8930.9+60+0+0+0},HN60G6Z58:{y:(componentViewport?.y||0)+0+11476.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+9025+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-430ft8-container\",nodeId:\"OyWTN3cNI\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"NEWS\",id:\"OyWTN3cNI\",layoutId:\"OyWTN3cNI\",variant:\"ItGawK41q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Resources to help you prevent injuries\"})}),className:\"framer-d8mko2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sl1rmh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"oCVinmvLv\",name:\"FchZ30BV3\",type:\"Identifier\"},operator:\"==\",right:{collection:\"FchZ30BV3\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"oCVinmvLv\",data:Blog,type:\"Collection\"},right:{alias:\"FchZ30BV3\",data:Category,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"oCVinmvLv\",name:\"UUL2qrDB0\",type:\"Identifier\"},{collection:\"oCVinmvLv\",name:\"MQEZ7owvf\",type:\"Identifier\"},{collection:\"oCVinmvLv\",name:\"jNObvUWjL\",type:\"Identifier\"},{alias:\"FchZ30BV3.CGkSpPgGE\",collection:\"FchZ30BV3\",name:\"CGkSpPgGE\",type:\"Identifier\"},{collection:\"oCVinmvLv\",name:\"Vir1VUcXI\",type:\"Identifier\"},{collection:\"oCVinmvLv\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({\"FchZ30BV3.CGkSpPgGE\":FchZ30BV3_CGkSpPgGEoCVinmvLv,id:idoCVinmvLv,jNObvUWjL:jNObvUWjLoCVinmvLv,MQEZ7owvf:MQEZ7owvfoCVinmvLv,UUL2qrDB0:UUL2qrDB0oCVinmvLv,Vir1VUcXI:Vir1VUcXIoCVinmvLv},index)=>{MQEZ7owvfoCVinmvLv??=\"\";jNObvUWjLoCVinmvLv??=\"\";FchZ30BV3_CGkSpPgGEoCVinmvLv??=\"\";Vir1VUcXIoCVinmvLv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oCVinmvLv-${idoCVinmvLv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Vir1VUcXI:Vir1VUcXIoCVinmvLv},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Vir1VUcXI:Vir1VUcXIoCVinmvLv},webPageId:\"UlfU7RdUx\"},implicitPathVariables:undefined},{href:{pathVariables:{Vir1VUcXI:Vir1VUcXIoCVinmvLv},webPageId:\"UlfU7RdUx\"},implicitPathVariables:undefined},{href:{pathVariables:{Vir1VUcXI:Vir1VUcXIoCVinmvLv},webPageId:\"UlfU7RdUx\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 810px), 1px)`,y:(componentViewport?.y||0)+0+8930.9+60+176+0},HN60G6Z58:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 390px) - 40px)`,y:(componentViewport?.y||0)+0+11476.4+60+146+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:740,width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+9025+100+176+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l7yuf7-container\",nodeId:\"fwluRzT4g\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{k83BmnbmI:resolvedLinks9[1],variant:\"Ye6jsVMuw\"},HN60G6Z58:{k83BmnbmI:resolvedLinks9[2],variant:\"ywrpDCWOn\"}},children:/*#__PURE__*/_jsx(BlogNewCards,{aa5Rtz2LE:toResponsiveImage(UUL2qrDB0oCVinmvLv),BicSAEyS4:FchZ30BV3_CGkSpPgGEoCVinmvLv,dCAo60UCT:jNObvUWjLoCVinmvLv,height:\"100%\",id:\"fwluRzT4g\",k83BmnbmI:resolvedLinks9[0],layoutId:\"fwluRzT4g\",PAEaWJgSo:MQEZ7owvfoCVinmvLv,style:{width:\"100%\"},variant:\"AU9YL6rax\",width:\"100%\"})})})})})})})},idoCVinmvLv);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{y:(componentViewport?.y||0)+0+9966.9},HN60G6Z58:{y:(componentViewport?.y||0)+0+12682.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:877,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-134tlh0-container\",nodeId:\"zy6vfzMl0\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{variant:\"w7MnLwvcL\"},HN60G6Z58:{variant:\"Mk_sk8aNg\"}},children:/*#__PURE__*/_jsx(FooterCompleteNightWNAP,{height:\"100%\",id:\"zy6vfzMl0\",layoutId:\"zy6vfzMl0\",style:{width:\"100%\"},variant:\"FT5WKZ5oJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GHUSNUMK0\"},implicitPathVariables:undefined},{href:{webPageId:\"GHUSNUMK0\"},implicitPathVariables:undefined},{href:{webPageId:\"GHUSNUMK0\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yk558g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Cff1hTpPk\",scopeId:\"A78v7e8Ff\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c10fi4rz7:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks10[1],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"}},HN60G6Z58:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks10[2],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:17,width:1},colorBody:\"var(--token-fae2c128-35fb-45de-a6c2-32169f920c68, rgb(0, 0, 0))\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontTitle:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(12, 96, 120)\",shadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:2}},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:13,paddingBottom:13,paddingLeft:13,paddingPerSide:false,paddingRight:13,paddingTop:13,primary:{color:\"rgb(0, 0, 0)\",fill:\"rgb(144, 220, 200)\",shadow:{shadowBlur:0,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:0}},secondary:{color:\"rgb(0, 0, 0)\",fill:\"rgb(189, 235, 161)\"}},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks10[0],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"},gtmId:\"GTM-TL927QH7\",height:\"100%\",id:\"Cff1hTpPk\",layoutId:\"Cff1hTpPk\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:true,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},fontTitle:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(255, 255, 255)\",iconSize:-3,iconType:\"default\",text:\"Cookie Policy\",textFont:{fontFamily:'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},type:\"icon\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xAReb.framer-y0enj4, .framer-xAReb .framer-y0enj4 { display: block; }\",\".framer-xAReb.framer-13xyskw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-xAReb .framer-1eurbl9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-xAReb .framer-1pnsyqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1bbflwf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 1px; }\",\".framer-xAReb .framer-9hftso { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xAReb .framer-18x1mh4-container, .framer-xAReb .framer-b3qky5-container, .framer-xAReb .framer-kb35vv-container, .framer-xAReb .framer-10d0kpg-container, .framer-xAReb .framer-1hf8ma9-container, .framer-xAReb .framer-12jg9zr-container, .framer-xAReb .framer-1ei4w2j-container, .framer-xAReb .framer-1b5viji-container, .framer-xAReb .framer-3swpn1-container, .framer-xAReb .framer-jv7fv0-container, .framer-xAReb .framer-hhm59v-container, .framer-xAReb .framer-430ft8-container, .framer-xAReb .framer-yk558g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xAReb .framer-1gnbo1l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 575px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-eobg53 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 460px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-c649ub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xAReb .framer-ezx1jd { flex: 1 0 0px; height: 598px; overflow: visible; position: relative; width: 1px; }\",\".framer-xAReb .framer-1idj85b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 780px; justify-content: center; left: calc(64.34782608695654% - 846px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(46.32107023411373% - 780px / 2); width: 846px; }\",\".framer-xAReb .framer-74uzlk, .framer-xAReb .framer-khuvof, .framer-xAReb .framer-o1a4ln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-xAReb .framer-jp1tcg, .framer-xAReb .framer-ztmxql, .framer-xAReb .framer-st253a, .framer-xAReb .framer-1r6yma3, .framer-xAReb .framer-1h342up { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-nz5lbh, .framer-xAReb .framer-102q2me, .framer-xAReb .framer-1pkb974, .framer-xAReb .framer-1f0cazp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 896px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-1omb1p0, .framer-xAReb .framer-gqadhr, .framer-xAReb .framer-z6qwds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1piylcm, .framer-xAReb .framer-ipz6wd { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 573px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 40px 70px 40px 70px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1vcg2qr, .framer-xAReb .framer-rykkd6, .framer-xAReb .framer-lrgveb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36%; }\",\".framer-xAReb .framer-1g8a9iq, .framer-xAReb .framer-1ivoh4x, .framer-xAReb .framer-ly06gl { flex: none; height: 56px; position: relative; width: 20%; }\",\".framer-xAReb .framer-1rc08gc, .framer-xAReb .framer-22w5dw, .framer-xAReb .framer-n67ywr, .framer-xAReb .framer-zf936e, .framer-xAReb .framer-jugo4r, .framer-xAReb .framer-12uj6j7, .framer-xAReb .framer-10lkja4, .framer-xAReb .framer-bjoyzn, .framer-xAReb .framer-zlultq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-1e5iaiz-container, .framer-xAReb .framer-ei25uv-container, .framer-xAReb .framer-1eo70ng-container { flex: none; height: 21px; position: relative; width: 103px; }\",\".framer-xAReb .framer-t6ohyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 633px; }\",\".framer-xAReb .framer-x4621z { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); flex: none; height: 503px; overflow: visible; position: relative; width: 614px; }\",\".framer-xAReb .framer-1v1iu3c { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 573px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 40px 70px 40px 70px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1j6chs0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 631px; }\",\".framer-xAReb .framer-m63xm7 { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); flex: none; height: 536px; overflow: visible; position: relative; width: 618px; }\",\".framer-xAReb .framer-sbvbmb { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xAReb .framer-xpqjaf { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); flex: none; height: 100%; overflow: visible; position: relative; width: 640px; }\",\".framer-xAReb .framer-1fenu36 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-xAReb .framer-8jjqhv { display: grid; flex: none; gap: 50px; grid-auto-rows: min-content; grid-template-columns: repeat(3, 300px); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1dcw57z-container, .framer-xAReb .framer-rs0hhd-container, .framer-xAReb .framer-18w4247-container, .framer-xAReb .framer-32hfec-container, .framer-xAReb .framer-1ve31yv-container, .framer-xAReb .framer-1p1adzg-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 276px; }\",\".framer-xAReb .framer-18j2qzs-container { flex: none; height: 600px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1g51wu8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-xAReb .framer-bsaqtu { display: grid; flex: none; gap: 65px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1c4qspr { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xAReb .framer-1i4eel3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 330px; }\",\".framer-xAReb .framer-1bzw7ke { -webkit-filter: hue-rotate(0deg); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; filter: hue-rotate(0deg); flex: 1 0 0px; height: 350px; overflow: visible; position: relative; width: 1px; }\",\".framer-xAReb .framer-1fc554s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 320px; }\",\".framer-xAReb .framer-1fy42rf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-fl3lhx { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-xAReb .framer-fyd8i8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-1x5vljq-container, .framer-xAReb .framer-r38i40-container { align-self: start; flex: none; height: auto; justify-self: center; position: relative; width: fit-content; }\",\".framer-xAReb .framer-wu40rr-container, .framer-xAReb .framer-cdd60w-container { align-self: start; flex: none; height: auto; justify-self: end; position: relative; width: fit-content; }\",\".framer-xAReb .framer-raktsr-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-xAReb .framer-1jup6ga { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 598px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 40px 70px 40px 70px; position: relative; width: 100%; }\",\".framer-xAReb .framer-mjbedi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xAReb .framer-4ipx7t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 424px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-ycg1bs { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xAReb .framer-10rmqze { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); flex: 1 0 0px; height: 493px; overflow: visible; position: relative; width: 1px; }\",\".framer-xAReb .framer-wc8a94 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 70px 40px 70px 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1quwjid { 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: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-xAReb .framer-1n00qu8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 429px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-ctbzpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1tei7b1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xAReb .framer-mcox4x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-za8xeo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 600px; justify-content: center; max-height: 720px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1ovansv { flex: none; height: 602px; overflow: visible; position: relative; width: 742px; }\",\".framer-xAReb .framer-8sis2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-xAReb .framer-d8mko2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 670px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAReb .framer-1sl1rmh { 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; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-xAReb .framer-1l7yuf7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-xAReb .framer-134tlh0-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAReb.framer-13xyskw, .framer-xAReb .framer-1pnsyqy, .framer-xAReb .framer-1bbflwf, .framer-xAReb .framer-9hftso, .framer-xAReb .framer-c649ub, .framer-xAReb .framer-1idj85b, .framer-xAReb .framer-74uzlk, .framer-xAReb .framer-jp1tcg, .framer-xAReb .framer-1omb1p0, .framer-xAReb .framer-1piylcm, .framer-xAReb .framer-1vcg2qr, .framer-xAReb .framer-t6ohyg, .framer-xAReb .framer-1v1iu3c, .framer-xAReb .framer-rykkd6, .framer-xAReb .framer-1j6chs0, .framer-xAReb .framer-ipz6wd, .framer-xAReb .framer-lrgveb, .framer-xAReb .framer-sbvbmb, .framer-xAReb .framer-1fenu36, .framer-xAReb .framer-ztmxql, .framer-xAReb .framer-1g51wu8, .framer-xAReb .framer-st253a, .framer-xAReb .framer-1c4qspr, .framer-xAReb .framer-1i4eel3, .framer-xAReb .framer-1fc554s, .framer-xAReb .framer-fl3lhx, .framer-xAReb .framer-khuvof, .framer-xAReb .framer-gqadhr, .framer-xAReb .framer-1jup6ga, .framer-xAReb .framer-mjbedi, .framer-xAReb .framer-ycg1bs, .framer-xAReb .framer-o1a4ln, .framer-xAReb .framer-z6qwds, .framer-xAReb .framer-wc8a94, .framer-xAReb .framer-1quwjid, .framer-xAReb .framer-ctbzpi, .framer-xAReb .framer-1tei7b1, .framer-xAReb .framer-1r6yma3, .framer-xAReb .framer-za8xeo, .framer-xAReb .framer-8sis2z, .framer-xAReb .framer-1h342up, .framer-xAReb .framer-1sl1rmh { gap: 0px; } .framer-xAReb.framer-13xyskw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xAReb.framer-13xyskw > :first-child, .framer-xAReb .framer-9hftso > :first-child, .framer-xAReb .framer-74uzlk > :first-child, .framer-xAReb .framer-jp1tcg > :first-child, .framer-xAReb .framer-1omb1p0 > :first-child, .framer-xAReb .framer-1vcg2qr > :first-child, .framer-xAReb .framer-rykkd6 > :first-child, .framer-xAReb .framer-lrgveb > :first-child, .framer-xAReb .framer-1fenu36 > :first-child, .framer-xAReb .framer-ztmxql > :first-child, .framer-xAReb .framer-1g51wu8 > :first-child, .framer-xAReb .framer-st253a > :first-child, .framer-xAReb .framer-1c4qspr > :first-child, .framer-xAReb .framer-1fc554s > :first-child, .framer-xAReb .framer-khuvof > :first-child, .framer-xAReb .framer-gqadhr > :first-child, .framer-xAReb .framer-mjbedi > :first-child, .framer-xAReb .framer-o1a4ln > :first-child, .framer-xAReb .framer-z6qwds > :first-child, .framer-xAReb .framer-1quwjid > :first-child, .framer-xAReb .framer-1tei7b1 > :first-child, .framer-xAReb .framer-1r6yma3 > :first-child, .framer-xAReb .framer-za8xeo > :first-child, .framer-xAReb .framer-8sis2z > :first-child, .framer-xAReb .framer-1h342up > :first-child { margin-top: 0px; } .framer-xAReb.framer-13xyskw > :last-child, .framer-xAReb .framer-9hftso > :last-child, .framer-xAReb .framer-74uzlk > :last-child, .framer-xAReb .framer-jp1tcg > :last-child, .framer-xAReb .framer-1omb1p0 > :last-child, .framer-xAReb .framer-1vcg2qr > :last-child, .framer-xAReb .framer-rykkd6 > :last-child, .framer-xAReb .framer-lrgveb > :last-child, .framer-xAReb .framer-1fenu36 > :last-child, .framer-xAReb .framer-ztmxql > :last-child, .framer-xAReb .framer-1g51wu8 > :last-child, .framer-xAReb .framer-st253a > :last-child, .framer-xAReb .framer-1c4qspr > :last-child, .framer-xAReb .framer-1fc554s > :last-child, .framer-xAReb .framer-khuvof > :last-child, .framer-xAReb .framer-gqadhr > :last-child, .framer-xAReb .framer-mjbedi > :last-child, .framer-xAReb .framer-o1a4ln > :last-child, .framer-xAReb .framer-z6qwds > :last-child, .framer-xAReb .framer-1quwjid > :last-child, .framer-xAReb .framer-1tei7b1 > :last-child, .framer-xAReb .framer-1r6yma3 > :last-child, .framer-xAReb .framer-za8xeo > :last-child, .framer-xAReb .framer-8sis2z > :last-child, .framer-xAReb .framer-1h342up > :last-child { margin-bottom: 0px; } .framer-xAReb .framer-1pnsyqy > *, .framer-xAReb .framer-1bbflwf > *, .framer-xAReb .framer-c649ub > *, .framer-xAReb .framer-1idj85b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xAReb .framer-1pnsyqy > :first-child, .framer-xAReb .framer-1bbflwf > :first-child, .framer-xAReb .framer-c649ub > :first-child, .framer-xAReb .framer-1idj85b > :first-child, .framer-xAReb .framer-1piylcm > :first-child, .framer-xAReb .framer-t6ohyg > :first-child, .framer-xAReb .framer-1v1iu3c > :first-child, .framer-xAReb .framer-1j6chs0 > :first-child, .framer-xAReb .framer-ipz6wd > :first-child, .framer-xAReb .framer-sbvbmb > :first-child, .framer-xAReb .framer-1i4eel3 > :first-child, .framer-xAReb .framer-fl3lhx > :first-child, .framer-xAReb .framer-1jup6ga > :first-child, .framer-xAReb .framer-ycg1bs > :first-child, .framer-xAReb .framer-wc8a94 > :first-child, .framer-xAReb .framer-ctbzpi > :first-child, .framer-xAReb .framer-1sl1rmh > :first-child { margin-left: 0px; } .framer-xAReb .framer-1pnsyqy > :last-child, .framer-xAReb .framer-1bbflwf > :last-child, .framer-xAReb .framer-c649ub > :last-child, .framer-xAReb .framer-1idj85b > :last-child, .framer-xAReb .framer-1piylcm > :last-child, .framer-xAReb .framer-t6ohyg > :last-child, .framer-xAReb .framer-1v1iu3c > :last-child, .framer-xAReb .framer-1j6chs0 > :last-child, .framer-xAReb .framer-ipz6wd > :last-child, .framer-xAReb .framer-sbvbmb > :last-child, .framer-xAReb .framer-1i4eel3 > :last-child, .framer-xAReb .framer-fl3lhx > :last-child, .framer-xAReb .framer-1jup6ga > :last-child, .framer-xAReb .framer-ycg1bs > :last-child, .framer-xAReb .framer-wc8a94 > :last-child, .framer-xAReb .framer-ctbzpi > :last-child, .framer-xAReb .framer-1sl1rmh > :last-child { margin-right: 0px; } .framer-xAReb .framer-9hftso > *, .framer-xAReb .framer-za8xeo > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xAReb .framer-74uzlk > *, .framer-xAReb .framer-khuvof > *, .framer-xAReb .framer-o1a4ln > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-xAReb .framer-jp1tcg > *, .framer-xAReb .framer-1vcg2qr > *, .framer-xAReb .framer-rykkd6 > *, .framer-xAReb .framer-lrgveb > *, .framer-xAReb .framer-ztmxql > *, .framer-xAReb .framer-st253a > *, .framer-xAReb .framer-1c4qspr > *, .framer-xAReb .framer-1r6yma3 > *, .framer-xAReb .framer-1h342up > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xAReb .framer-1omb1p0 > *, .framer-xAReb .framer-gqadhr > *, .framer-xAReb .framer-z6qwds > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-xAReb .framer-1piylcm > *, .framer-xAReb .framer-ipz6wd > *, .framer-xAReb .framer-1sl1rmh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-xAReb .framer-t6ohyg > *, .framer-xAReb .framer-1j6chs0 > *, .framer-xAReb .framer-sbvbmb > *, .framer-xAReb .framer-1i4eel3 > *, .framer-xAReb .framer-fl3lhx > *, .framer-xAReb .framer-ycg1bs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xAReb .framer-1v1iu3c > *, .framer-xAReb .framer-1jup6ga > *, .framer-xAReb .framer-wc8a94 > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-xAReb .framer-1fenu36 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-xAReb .framer-1g51wu8 > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-xAReb .framer-1fc554s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xAReb .framer-mjbedi > *, .framer-xAReb .framer-1quwjid > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xAReb .framer-ctbzpi > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-xAReb .framer-1tei7b1 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-xAReb .framer-8sis2z > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-xAReb.framer-13xyskw { width: 810px; } .framer-xAReb .framer-1pnsyqy { padding: 70px 40px 40px 40px; } .framer-xAReb .framer-1bbflwf { flex-direction: column; gap: 0px; padding: 0px; } .framer-xAReb .framer-9hftso { align-content: center; align-items: center; flex: none; width: 100%; } .framer-xAReb .framer-1gnbo1l { width: 650px; } .framer-xAReb .framer-eobg53 { width: 460px; } .framer-xAReb .framer-ezx1jd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 30px 0px; width: min-content; } .framer-xAReb .framer-1idj85b { height: 523px; left: unset; position: relative; top: unset; width: 717px; } .framer-xAReb .framer-74uzlk { gap: 60px; padding: 70px 40px 70px 40px; } .framer-xAReb .framer-nz5lbh, .framer-xAReb .framer-1pkb974, .framer-xAReb .framer-mcox4x { width: 500px; } .framer-xAReb .framer-1piylcm, .framer-xAReb .framer-1v1iu3c, .framer-xAReb .framer-ipz6wd { gap: 17px; height: 416px; padding: 30px 60px 40px 60px; width: 730px; } .framer-xAReb .framer-1vcg2qr, .framer-xAReb .framer-rykkd6, .framer-xAReb .framer-lrgveb { width: 33%; } .framer-xAReb .framer-1g8a9iq, .framer-xAReb .framer-1ivoh4x, .framer-xAReb .framer-ly06gl { height: 52px; width: 23%; } .framer-xAReb .framer-t6ohyg { width: 433px; } .framer-xAReb .framer-x4621z { height: 100%; width: 421px; } .framer-xAReb .framer-1j6chs0 { width: min-content; } .framer-xAReb .framer-m63xm7 { height: 372px; width: 421px; } .framer-xAReb .framer-xpqjaf { width: 421px; } .framer-xAReb .framer-1fenu36 { gap: 64px; padding: 70px 40px 70px 40px; } .framer-xAReb .framer-ztmxql, .framer-xAReb .framer-1h342up { background-color: #ffffff; } .framer-xAReb .framer-102q2me { width: 600px; } .framer-xAReb .framer-8jjqhv { grid-template-columns: repeat(2, 340px); padding: 0px; width: 730px; } .framer-xAReb .framer-1dcw57z-container, .framer-xAReb .framer-rs0hhd-container, .framer-xAReb .framer-18w4247-container, .framer-xAReb .framer-32hfec-container, .framer-xAReb .framer-1ve31yv-container, .framer-xAReb .framer-1p1adzg-container, .framer-xAReb .framer-1f0cazp { width: 100%; } .framer-xAReb .framer-18j2qzs-container { height: 416px; } .framer-xAReb .framer-1g51wu8 { gap: 55px; padding: 70px 40px 70px 40px; } .framer-xAReb .framer-bsaqtu { gap: 60px; grid-template-columns: repeat(2, minmax(200px, 1fr)); padding: 30px 0px 30px 0px; } .framer-xAReb .framer-1fy42rf { height: 79px; } .framer-xAReb .framer-1x5vljq-container, .framer-xAReb .framer-raktsr-container { justify-self: end; } .framer-xAReb .framer-wu40rr-container, .framer-xAReb .framer-r38i40-container { justify-self: start; } .framer-xAReb .framer-khuvof, .framer-xAReb .framer-o1a4ln { gap: 60px; padding: 47px 40px 47px 40px; } .framer-xAReb .framer-1jup6ga { flex-direction: column; gap: 36px; height: 697px; padding: 50px 60px 50px 60px; width: 730px; } .framer-xAReb .framer-mjbedi { align-content: center; align-items: center; flex: none; gap: 18px; width: 100%; } .framer-xAReb .framer-4ipx7t { width: 550px; } .framer-xAReb .framer-ycg1bs { flex: none; width: 100%; } .framer-xAReb .framer-10rmqze { height: 346px; } .framer-xAReb .framer-wc8a94 { gap: 36px; height: 391px; padding: 50px 40px 50px 0px; width: 730px; } .framer-xAReb .framer-1quwjid { gap: 18px; width: 400px; } .framer-xAReb .framer-1n00qu8 { width: 293px; } .framer-xAReb .framer-ctbzpi { padding: 70px 40px 70px 40px; } .framer-xAReb .framer-za8xeo { height: 444px; } .framer-xAReb .framer-1ovansv { height: 447px; width: 100%; } .framer-xAReb .framer-8sis2z { padding: 60px 40px 60px 40px; } .framer-xAReb .framer-d8mko2 { width: 513px; } .framer-xAReb .framer-1sl1rmh { gap: 30px; max-width: 810px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAReb .framer-1bbflwf, .framer-xAReb .framer-ezx1jd, .framer-xAReb .framer-74uzlk, .framer-xAReb .framer-1piylcm, .framer-xAReb .framer-1v1iu3c, .framer-xAReb .framer-ipz6wd, .framer-xAReb .framer-1fenu36, .framer-xAReb .framer-1g51wu8, .framer-xAReb .framer-bsaqtu, .framer-xAReb .framer-khuvof, .framer-xAReb .framer-1jup6ga, .framer-xAReb .framer-mjbedi, .framer-xAReb .framer-o1a4ln, .framer-xAReb .framer-wc8a94, .framer-xAReb .framer-1quwjid, .framer-xAReb .framer-1sl1rmh { gap: 0px; } .framer-xAReb .framer-1bbflwf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xAReb .framer-1bbflwf > :first-child, .framer-xAReb .framer-ezx1jd > :first-child, .framer-xAReb .framer-74uzlk > :first-child, .framer-xAReb .framer-1fenu36 > :first-child, .framer-xAReb .framer-1g51wu8 > :first-child, .framer-xAReb .framer-khuvof > :first-child, .framer-xAReb .framer-1jup6ga > :first-child, .framer-xAReb .framer-mjbedi > :first-child, .framer-xAReb .framer-o1a4ln > :first-child, .framer-xAReb .framer-1quwjid > :first-child { margin-top: 0px; } .framer-xAReb .framer-1bbflwf > :last-child, .framer-xAReb .framer-ezx1jd > :last-child, .framer-xAReb .framer-74uzlk > :last-child, .framer-xAReb .framer-1fenu36 > :last-child, .framer-xAReb .framer-1g51wu8 > :last-child, .framer-xAReb .framer-khuvof > :last-child, .framer-xAReb .framer-1jup6ga > :last-child, .framer-xAReb .framer-mjbedi > :last-child, .framer-xAReb .framer-o1a4ln > :last-child, .framer-xAReb .framer-1quwjid > :last-child { margin-bottom: 0px; } .framer-xAReb .framer-ezx1jd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xAReb .framer-74uzlk > *, .framer-xAReb .framer-khuvof > *, .framer-xAReb .framer-o1a4ln > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-xAReb .framer-1piylcm > *, .framer-xAReb .framer-1v1iu3c > *, .framer-xAReb .framer-ipz6wd > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-xAReb .framer-1piylcm > :first-child, .framer-xAReb .framer-1v1iu3c > :first-child, .framer-xAReb .framer-ipz6wd > :first-child, .framer-xAReb .framer-wc8a94 > :first-child, .framer-xAReb .framer-1sl1rmh > :first-child { margin-left: 0px; } .framer-xAReb .framer-1piylcm > :last-child, .framer-xAReb .framer-1v1iu3c > :last-child, .framer-xAReb .framer-ipz6wd > :last-child, .framer-xAReb .framer-wc8a94 > :last-child, .framer-xAReb .framer-1sl1rmh > :last-child { margin-right: 0px; } .framer-xAReb .framer-1fenu36 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-xAReb .framer-1g51wu8 > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-xAReb .framer-bsaqtu > *, .framer-xAReb .framer-bsaqtu > :first-child, .framer-xAReb .framer-bsaqtu > :last-child { margin: 0px; } .framer-xAReb .framer-1jup6ga > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-xAReb .framer-mjbedi > *, .framer-xAReb .framer-1quwjid > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-xAReb .framer-wc8a94 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-xAReb .framer-1sl1rmh > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-xAReb.framer-13xyskw { width: 390px; } .framer-xAReb .framer-1eurbl9-container, .framer-xAReb .framer-ztmxql { order: 0; } .framer-xAReb .framer-1pnsyqy { flex-direction: column; order: 1; padding: 60px 20px 15px 20px; } .framer-xAReb .framer-1bbflwf { flex: none; flex-direction: column; gap: 8px; padding: 0px; width: 100%; } .framer-xAReb .framer-9hftso { align-content: center; align-items: center; flex: none; gap: 25px; width: 100%; } .framer-xAReb .framer-1gnbo1l, .framer-xAReb .framer-1dcw57z-container, .framer-xAReb .framer-rs0hhd-container, .framer-xAReb .framer-18w4247-container, .framer-xAReb .framer-32hfec-container, .framer-xAReb .framer-1ve31yv-container, .framer-xAReb .framer-1p1adzg-container, .framer-xAReb .framer-1f0cazp, .framer-xAReb .framer-mcox4x { width: 100%; } .framer-xAReb .framer-ezx1jd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px 0px 30px 0px; width: 100%; } .framer-xAReb .framer-1idj85b { height: 278px; left: unset; position: relative; top: unset; width: 358px; } .framer-xAReb .framer-74uzlk { gap: 50px; order: 2; padding: 60px 20px 60px 20px; } .framer-xAReb .framer-nz5lbh, .framer-xAReb .framer-102q2me, .framer-xAReb .framer-1pkb974 { width: 300px; } .framer-xAReb .framer-1omb1p0, .framer-xAReb .framer-gqadhr, .framer-xAReb .framer-z6qwds { gap: 23px; } .framer-xAReb .framer-1piylcm, .framer-xAReb .framer-1v1iu3c { flex-direction: column; gap: 7px; height: 533px; padding: 40px 20px 0px 20px; width: 350px; } .framer-xAReb .framer-1vcg2qr, .framer-xAReb .framer-rykkd6, .framer-xAReb .framer-lrgveb { align-content: center; align-items: center; gap: 14px; width: 296px; } .framer-xAReb .framer-1g8a9iq, .framer-xAReb .framer-1ivoh4x, .framer-xAReb .framer-ly06gl { height: 46px; order: 0; width: 100%; } .framer-xAReb .framer-1rc08gc, .framer-xAReb .framer-n67ywr, .framer-xAReb .framer-jugo4r { order: 1; width: 312px; } .framer-xAReb .framer-22w5dw, .framer-xAReb .framer-zf936e, .framer-xAReb .framer-12uj6j7 { order: 2; } .framer-xAReb .framer-1e5iaiz-container, .framer-xAReb .framer-ei25uv-container, .framer-xAReb .framer-1eo70ng-container, .framer-xAReb .framer-3swpn1-container { order: 3; } .framer-xAReb .framer-t6ohyg { flex: 1 0 0px; height: 1px; width: 329px; } .framer-xAReb .framer-x4621z, .framer-xAReb .framer-m63xm7 { height: 100%; order: 0; width: 312px; } .framer-xAReb .framer-1j6chs0 { flex: 1 0 0px; height: 1px; width: min-content; } .framer-xAReb .framer-ipz6wd { flex-direction: column; gap: 0px; height: 533px; padding: 40px 20px 0px 20px; width: 350px; } .framer-xAReb .framer-sbvbmb { flex: 1 0 0px; height: 1px; } .framer-xAReb .framer-xpqjaf { order: 0; width: 312px; } .framer-xAReb .framer-1fenu36 { gap: 48px; order: 4; padding: 60px 20px 40px 20px; } .framer-xAReb .framer-8jjqhv { gap: 40px; grid-template-columns: repeat(1, 300px); max-width: unset; order: 1; padding: 0px; } .framer-xAReb .framer-18j2qzs-container { height: 208px; order: 2; } .framer-xAReb .framer-1g51wu8 { gap: 30px; order: 5; padding: 60px 20px 60px 20px; } .framer-xAReb .framer-bsaqtu { gap: 40px; grid-template-columns: repeat(1, minmax(200px, 1fr)); padding: 20px 0px 20px 0px; width: 350px; } .framer-xAReb .framer-1c4qspr { align-content: center; align-items: center; justify-content: center; } .framer-xAReb .framer-1fy42rf { height: auto; } .framer-xAReb .framer-1x5vljq-container, .framer-xAReb .framer-r38i40-container { align-self: center; } .framer-xAReb .framer-wu40rr-container, .framer-xAReb .framer-raktsr-container, .framer-xAReb .framer-cdd60w-container { align-self: center; justify-self: center; } .framer-xAReb .framer-khuvof { gap: 50px; order: 6; padding: 36px 20px 36px 20px; } .framer-xAReb .framer-1jup6ga { flex-direction: column; gap: 0px; height: 673px; padding: 40px 20px 0px 20px; width: 352px; } .framer-xAReb .framer-mjbedi { align-content: center; align-items: center; flex: none; gap: 18px; width: 296px; } .framer-xAReb .framer-1b5viji-container, .framer-xAReb .framer-jv7fv0-container { order: 0; width: 100%; } .framer-xAReb .framer-bjoyzn, .framer-xAReb .framer-zlultq { order: 1; } .framer-xAReb .framer-4ipx7t, .framer-xAReb .framer-1n00qu8 { order: 2; width: 100%; } .framer-xAReb .framer-ycg1bs { height: 1px; width: min-content; } .framer-xAReb .framer-10rmqze { flex: none; height: 100%; order: 0; width: 312px; } .framer-xAReb .framer-o1a4ln { gap: 50px; order: 7; padding: 40px 20px 40px 20px; } .framer-xAReb .framer-wc8a94 { flex-direction: column; gap: 0px; height: 601px; padding: 0px; width: 352px; } .framer-xAReb .framer-1quwjid { align-content: center; align-items: center; gap: 18px; width: 296px; } .framer-xAReb .framer-ctbzpi { order: 8; padding: 60px 20px 40px 20px; } .framer-xAReb .framer-za8xeo { height: 311px; } .framer-xAReb .framer-1ovansv { height: 313px; width: 350px; } .framer-xAReb .framer-8sis2z { gap: 50px; order: 10; padding: 60px 30px 60px 30px; } .framer-xAReb .framer-d8mko2 { width: 98%; } .framer-xAReb .framer-1sl1rmh { align-content: center; align-items: center; flex-direction: column; max-width: 390px; padding: 0px 20px 0px 20px; } .framer-xAReb .framer-1l7yuf7-container { flex: none; width: 100%; } .framer-xAReb .framer-134tlh0-container { order: 12; } .framer-xAReb .framer-yk558g-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAReb .framer-1pnsyqy, .framer-xAReb .framer-1bbflwf, .framer-xAReb .framer-9hftso, .framer-xAReb .framer-ezx1jd, .framer-xAReb .framer-74uzlk, .framer-xAReb .framer-1omb1p0, .framer-xAReb .framer-1piylcm, .framer-xAReb .framer-1vcg2qr, .framer-xAReb .framer-1v1iu3c, .framer-xAReb .framer-rykkd6, .framer-xAReb .framer-ipz6wd, .framer-xAReb .framer-lrgveb, .framer-xAReb .framer-1fenu36, .framer-xAReb .framer-8jjqhv, .framer-xAReb .framer-1g51wu8, .framer-xAReb .framer-bsaqtu, .framer-xAReb .framer-khuvof, .framer-xAReb .framer-gqadhr, .framer-xAReb .framer-1jup6ga, .framer-xAReb .framer-mjbedi, .framer-xAReb .framer-o1a4ln, .framer-xAReb .framer-z6qwds, .framer-xAReb .framer-wc8a94, .framer-xAReb .framer-1quwjid, .framer-xAReb .framer-8sis2z, .framer-xAReb .framer-1sl1rmh { gap: 0px; } .framer-xAReb .framer-1pnsyqy > *, .framer-xAReb .framer-ezx1jd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xAReb .framer-1pnsyqy > :first-child, .framer-xAReb .framer-1bbflwf > :first-child, .framer-xAReb .framer-9hftso > :first-child, .framer-xAReb .framer-ezx1jd > :first-child, .framer-xAReb .framer-74uzlk > :first-child, .framer-xAReb .framer-1omb1p0 > :first-child, .framer-xAReb .framer-1piylcm > :first-child, .framer-xAReb .framer-1vcg2qr > :first-child, .framer-xAReb .framer-1v1iu3c > :first-child, .framer-xAReb .framer-rykkd6 > :first-child, .framer-xAReb .framer-ipz6wd > :first-child, .framer-xAReb .framer-lrgveb > :first-child, .framer-xAReb .framer-1fenu36 > :first-child, .framer-xAReb .framer-1g51wu8 > :first-child, .framer-xAReb .framer-khuvof > :first-child, .framer-xAReb .framer-gqadhr > :first-child, .framer-xAReb .framer-1jup6ga > :first-child, .framer-xAReb .framer-mjbedi > :first-child, .framer-xAReb .framer-o1a4ln > :first-child, .framer-xAReb .framer-z6qwds > :first-child, .framer-xAReb .framer-wc8a94 > :first-child, .framer-xAReb .framer-1quwjid > :first-child, .framer-xAReb .framer-8sis2z > :first-child, .framer-xAReb .framer-1sl1rmh > :first-child { margin-top: 0px; } .framer-xAReb .framer-1pnsyqy > :last-child, .framer-xAReb .framer-1bbflwf > :last-child, .framer-xAReb .framer-9hftso > :last-child, .framer-xAReb .framer-ezx1jd > :last-child, .framer-xAReb .framer-74uzlk > :last-child, .framer-xAReb .framer-1omb1p0 > :last-child, .framer-xAReb .framer-1piylcm > :last-child, .framer-xAReb .framer-1vcg2qr > :last-child, .framer-xAReb .framer-1v1iu3c > :last-child, .framer-xAReb .framer-rykkd6 > :last-child, .framer-xAReb .framer-ipz6wd > :last-child, .framer-xAReb .framer-lrgveb > :last-child, .framer-xAReb .framer-1fenu36 > :last-child, .framer-xAReb .framer-1g51wu8 > :last-child, .framer-xAReb .framer-khuvof > :last-child, .framer-xAReb .framer-gqadhr > :last-child, .framer-xAReb .framer-1jup6ga > :last-child, .framer-xAReb .framer-mjbedi > :last-child, .framer-xAReb .framer-o1a4ln > :last-child, .framer-xAReb .framer-z6qwds > :last-child, .framer-xAReb .framer-wc8a94 > :last-child, .framer-xAReb .framer-1quwjid > :last-child, .framer-xAReb .framer-8sis2z > :last-child, .framer-xAReb .framer-1sl1rmh > :last-child { margin-bottom: 0px; } .framer-xAReb .framer-1bbflwf > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-xAReb .framer-9hftso > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-xAReb .framer-74uzlk > *, .framer-xAReb .framer-khuvof > *, .framer-xAReb .framer-o1a4ln > *, .framer-xAReb .framer-8sis2z > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-xAReb .framer-1omb1p0 > *, .framer-xAReb .framer-gqadhr > *, .framer-xAReb .framer-z6qwds > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-xAReb .framer-1piylcm > *, .framer-xAReb .framer-1v1iu3c > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-xAReb .framer-1vcg2qr > *, .framer-xAReb .framer-rykkd6 > *, .framer-xAReb .framer-lrgveb > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-xAReb .framer-ipz6wd > *, .framer-xAReb .framer-1jup6ga > *, .framer-xAReb .framer-wc8a94 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xAReb .framer-1fenu36 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xAReb .framer-8jjqhv > *, .framer-xAReb .framer-8jjqhv > :first-child, .framer-xAReb .framer-8jjqhv > :last-child, .framer-xAReb .framer-bsaqtu > *, .framer-xAReb .framer-bsaqtu > :first-child, .framer-xAReb .framer-bsaqtu > :last-child { margin: 0px; } .framer-xAReb .framer-1g51wu8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xAReb .framer-mjbedi > *, .framer-xAReb .framer-1quwjid > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-xAReb .framer-1sl1rmh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11127.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c10fi4rz7\":{\"layout\":[\"fixed\",\"auto\"]},\"HN60G6Z58\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerA78v7e8Ff=withCSS(Component,css,\"framer-xAReb\");export default FramerA78v7e8Ff;FramerA78v7e8Ff.displayName=\"Page\";FramerA78v7e8Ff.defaultProps={height:11127.5,width:1200};addFonts(FramerA78v7e8Ff,[{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:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P6VJ47S3OYMUC7HYSJLTK7PEIK5O2NPQ/TK62VLUWA76PMTK2XWBNDZB7QVXJGYE3/I5W5NEJGYVFUC5I4XOXVET63OE5PSVHJ.woff2\",weight:\"700\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MKEEQN57GWBZOSYWCRODNJOOZNPLMAKN/5SPTSZGHEACWWLF34DQ4WAA4OGU6PQIF/KN7DX4F6PXB74R6L2K2Y4NH3CB7FC53Q.woff2\",weight:\"600\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O462VY6O6FTQCS72XVMTQHXAM4NN5CY3/TWF57ITZORMJ3MEWLQQIVO6BMXIB6FUR/MJQFMMOTEGNXDVM7HBBDTQHTVB2M7Y6G.woff2\",weight:\"400\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2SAK53YLUN7RMYJU4MYLSBV6SSSJEJZB/RXS4DPGJRKOUFZMF5X5BVUGNNKJT65XZ/DJS4RYGIUYUXJQOHY5VCZPKSTXUSHTSP.woff2\",weight:\"500\"}]},...NavSimpleFonts,...TagFonts,...ButtonFonts,...LearnMoreFonts,...FeatureSimpleFonts,...VideoFonts,...UseCasesFonts,...BlogNewCardsFonts,...FooterCompleteNightWNAPFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA78v7e8Ff\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c10fi4rz7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HN60G6Z58\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11127.5\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "spCAA2Z,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC76B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,GAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY3B,GAAuB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,GAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,GAAU,OAAAC,GAAO,cAAAC,GAAc,UAAUC,GAAc,OAAAC,GAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,GAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,GAAgB7C,EAAO,IAAI,EAAQ8C,EAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGnjBqE,EAAiBJ,EAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,EAAaL,EAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAAlC,EAAK,MAAAE,GAAM,YAAAP,EAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,IAAqBpC,EAAYJ,EAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,GAAqBI,IAAmB,gBAAwBC,EAAa7C,EAAK,EAAOE,GAAM,EAAE,EAAE,CAAC0C,EAAiBC,CAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,OAAQ,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,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,IAAiBjC,GAAM,CAACgC,EAAiB,UAAQtC,EAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,GAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,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,IAAmB,YAAY,WAAW,IAAI5C,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,IAAsC,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC6FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,GAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,GAAU,IAAIuB,GAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,IAAmB,WAAW,OAAOX,GAAcD,GAAO,OAAU,aAA1mB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,IAAaoD,GAA+C,GAAG,GAAG,EAAKH,IAAmB,YAAW5C,EAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,EAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMwE,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoB5E,GAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKuF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKuF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMpqF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpE+H,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,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,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAM,MAAM,CAAC,GAAGH,EAAM,UAAUJ,GAAgCI,EAAM,UAAU,WAAWC,EAAKN,GAAmCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,WAAWC,EAAMJ,GAAmCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAAgCG,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,qJAAqJ,CAAE,EAAQC,GAAuB,CAACJ,EAAMK,IAAWA,EAAS,KAAK,GAAG,EAAEL,EAAM,iBAAuBM,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASQ,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,GAAW,SAAApB,CAAQ,EAAEqB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAZ,EAAQ,kBAAAa,EAAiB,CAAC,EAAQC,EAAiBzB,GAAuBJ,EAAMK,CAAQ,EAAQyB,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAarB,GAAuBA,EAAS,EAAQsB,GAAkBC,GAAqB,EAAE,OAAoBhD,EAAKiD,EAAY,CAAC,GAAGvB,GAA4CkB,GAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQgB,EAAS,QAAQ,GAAM,SAAsBjB,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKkD,EAAK,CAAC,KAAKnB,EAAU,aAAa,GAAK,SAAsBoB,EAAMjD,EAAO,EAAE,CAAC,GAAG8B,EAAU,UAAU,GAAGoB,EAAGC,GAAkB,GAAGP,GAAsB,iBAAiBrB,EAAUS,CAAU,kBAAkB,mBAAmB,YAAY,iBAAiBO,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIhB,GAA6BsB,GAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAcxB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,GAAGhE,GAAkBwC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,mBAAmB,aAAa,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,8CAA8C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5B,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,wBAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,gFAAgF,uSAAuS,8QAA8Q,oHAAoH,0SAA0S,iOAAiO,yRAAyR,0kCAA0kC,GAAeA,GAAI,GAAgBA,EAAG,EAS7nTC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,sJAAsJ,gBAAgB,GAAK,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,iHAAiH,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,+EAA+E,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVzlFC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,uQAAuQ,EAAeC,GAAU,eCCQ,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAgCE,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMzB,IAAWA,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAuBE,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,GAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBlB,GAAuBD,EAAMzB,CAAQ,EAAQ6C,GAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAaf,EAAS,EAAQgB,GAAkBC,GAAqB,EAAE,OAAoBnC,EAAKoC,EAAY,CAAC,GAAGjB,GAA4CY,EAAgB,SAAsB/B,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,UAAUgB,EAAGzD,GAAkB,GAAGqD,EAAsB,iBAAiBf,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BgB,GAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGnC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBxB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB0B,EAAiB,SAAS,YAAY,kBAAkBxC,GAAmB,SAAsBY,EAAKsC,EAAS,CAAC,sBAAsB,GAAK,SAAsBtC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBF,EAAKuC,EAAK,CAAC,KAAKnB,EAAU,aAAa,GAAM,aAAa,GAAM,SAAsBpB,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB0B,EAAiB,SAAS,YAAY,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKuC,EAAK,CAAC,KAAKnB,EAAU,aAAa,GAAM,aAAa,GAAM,SAAsBpB,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,kFAAkF,sHAAsH,6SAA6S,iHAAiH,mXAAmX,GAAeA,EAAG,EAS/qLC,GAAgBC,GAAQ/B,GAAU6B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,OAAO,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT67C,IAAMC,GAAeC,EAASC,EAAS,EAAQC,GAASF,EAASG,CAAG,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAeN,EAASO,EAAS,EAAQC,GAAmBR,EAASS,CAAa,EAAQC,GAAWV,EAASW,EAAK,EAAQC,GAAcZ,EAASa,CAAQ,EAAQC,GAAkBd,EAASe,EAAY,EAAQC,GAA6BhB,EAASiB,EAAuB,EAAQC,GAAkBlB,EAASmB,EAAY,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAU,CAAC,CAAC,MAAAP,CAAK,IAAoBQ,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOT,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUU,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,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,6BAAAC,EAA6B,mBAAAC,EAAmB,YAAAC,GAAY,GAAGC,CAAS,EAAE5B,GAASI,CAAK,EAAQyB,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUjB,CAAY,EAAE,GAAGiB,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUlB,CAAY,CAAC,EAAQmB,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUjB,CAAY,EAAE,SAAS,MAAMiB,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUjB,CAAY,CAAC,EAAE,GAAK,CAACoB,EAAYC,EAAmB,EAAEC,GAA8Bd,EAAQe,GAAY,EAAK,EAAQC,GAAe,OAAuLC,GAAkBC,EAAGxD,GAAkB,GAAxL,CAAaoC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQqB,GAAOC,GAAU,EAAE,OAAAC,GAAiB,CAAC,CAAC,EAAsB5C,EAAK6C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA3D,EAAiB,EAAE,SAAsB4D,EAAMC,EAAY,CAAC,GAAGzB,GAAUT,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAegD,EAAME,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUW,EAAGD,GAAkB,iBAAiBnB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM/B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,YAAY,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKoD,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,qBAAqB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepD,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,mBAAmB,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,+BAA+B,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,oBAAiC9C,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWwD,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,oBAAiC9C,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,oBAAiC9C,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,oHAAoH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,mBAAmB,EAAE,MAAM,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAK0D,GAAO,CAAC,UAAU,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,kBAAkB,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,yFAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,MAAM,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,mBAAmB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsB4B,EAAMO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc4B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,mBAAmB,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sEAAsE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B5D,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB5D,EAAK6D,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUD,EAAc,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8GAA8G,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8GAA8G,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B9D,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB9D,EAAK6D,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUC,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mHAAmH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,mHAAmH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B/D,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,EAAE,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/D,EAAK6D,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUE,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,GAAG,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BhE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,KAAK,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhE,EAAK0D,GAAO,CAAC,UAAU,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,kBAAkB,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAUM,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,6VAA6V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsB4B,EAAMO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,iQAAiQ,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc4B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,2BAA2B,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,sFAAsF,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,mEAAmE,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,mFAAmF,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kFAAkF,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,mFAAmF,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKiE,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,oFAAoF,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,eAAe,CAAC,EAAE,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,oEAAoE,cAAc,EAAE,eAAe,CAAC,CAAC,EAAE,SAAsBnC,EAAKkE,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAK,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAM,UAAU,QAAQ,QAAQ,GAAM,OAAO,uEAAuE,cAAc,GAAK,QAAQ,MAAM,OAAO,2EAA2E,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsB4B,EAAMO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAc4B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,YAAY,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,gBAA6B9C,EAAK,KAAK,CAAC,CAAC,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBrB,EAAME,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,YAAY,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,+GAA0G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,wBAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BpE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBpE,EAAKqE,EAAS,CAAC,UAAUD,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUjF,GAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,gBAAgB,UAAU,wLAAmL,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6BtE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtE,EAAKqE,EAAS,CAAC,UAAUC,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUnF,GAAY,CAAC,IAAI,mEAAmE,OAAO,iKAAiK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,aAAa,UAAU,uKAAuK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASY,GAA6BvE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBvE,EAAKqE,EAAS,CAAC,UAAUE,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUpF,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,YAAY,UAAU,gLAAgL,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASa,GAA6BxE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxE,EAAKqE,EAAS,CAAC,UAAUG,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUrF,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,eAAe,UAAU,qKAAqK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASc,GAA6BzE,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,GAAG,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzE,EAAKqE,EAAS,CAAC,UAAUI,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUtF,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,SAAS,UAAU,uKAAkK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,KAAK,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAK0D,GAAO,CAAC,UAAU,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,kBAAkB,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,yFAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBlB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBnC,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,0BAA0B,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,IAAI,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAK0D,GAAO,CAAC,UAAU,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,kBAAkB,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,yFAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAYA,GAAmB,OAAO,6CAA6C,IAAI,sEAAsE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBlB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBnC,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,gEAAgE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gEAAgE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,SAAsB4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,IAAI,GAAG,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gBAAgBA,GAAmB,OAAO,wCAAwC,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsB4B,EAAMO,EAAM,CAAC,GAAG,UAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BpC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,SAAS,CAAc4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,GAAG,GAAG/B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKuD,EAAI,CAAC,UAAU,EAAE,OAAO,OAAO,UAAU,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK0E,GAAmB,CAAC,SAAsB1E,EAAKR,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,CAAC,MAAM,YAAY,KAAKmF,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,MAAM,YAAY,KAAKC,GAAS,KAAK,YAAY,EAAE,KAAK,UAAU,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,MAAM,sBAAsB,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,KAAwB/E,EAAKgF,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,sBAAsBlD,EAA6B,GAAGE,GAAY,UAAUH,EAAmB,UAAUD,GAAmB,UAAUD,EAAmB,UAAUI,CAAkB,EAAEqD,KAASxD,KAAqB,GAAGC,IAAqB,GAAGC,IAA+B,GAAGC,IAAqB,GAAuB5B,EAAK+C,EAAY,CAAC,GAAG,aAAalB,KAAc,SAAsB7B,EAAKkF,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtD,CAAkB,EAAE,SAAsB5B,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/B,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASuD,GAA6BnF,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWjB,GAAmB,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAW/B,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgD,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBnF,EAAKoF,GAAa,CAAC,UAAU9F,GAAkBkC,CAAkB,EAAE,UAAUG,EAA6B,UAAUD,EAAmB,OAAO,OAAO,GAAG,YAAY,UAAUyD,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU1D,GAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,SAAsBlB,EAAKiD,EAA0B,CAAC,OAAO,IAAI,MAAM/B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,SAAsBlB,EAAKkD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKqF,GAAwB,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,EAAerF,EAAK2D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS2B,GAA8BtF,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKkD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,WAAW,GAAM,WAAW,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAK,YAAY,EAAK,EAAE,cAAc,oGAAoG,SAAS,CAAC,MAAM,gBAAgB,KAAK,uCAAuC,OAAO,UAAU,EAAE,aAAa,GAAK,QAAQ,kBAAkB,OAAO,WAAW,KAAK,GAAK,cAAc,GAAM,cAAc,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,EAAE,iBAAiB,uEAAuE,YAAY,CAAC,MAAM,gBAAgB,KAAKmD,EAAgB,CAAC,EAAE,OAAO,UAAU,EAAE,gBAAgB,GAAK,WAAW,kBAAkB,UAAU,UAAU,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,WAAW,GAAM,WAAW,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAK,YAAY,EAAK,EAAE,cAAc,oGAAoG,SAAS,CAAC,MAAM,gBAAgB,KAAK,uCAAuC,OAAO,UAAU,EAAE,aAAa,GAAK,QAAQ,kBAAkB,OAAO,WAAW,KAAK,GAAK,cAAc,GAAM,cAAc,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,EAAE,iBAAiB,uEAAuE,YAAY,CAAC,MAAM,gBAAgB,KAAKA,EAAgB,CAAC,EAAE,OAAO,UAAU,EAAE,gBAAgB,GAAK,WAAW,kBAAkB,UAAU,UAAU,CAAC,CAAC,EAAE,SAAsBtF,EAAKuF,GAAa,CAAC,OAAO,CAAC,UAAU,CAAC,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,eAAe,EAAE,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,aAAa,GAAM,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,SAAS,eAAe,MAAM,CAAC,SAAS,qBAAqB,OAAO,CAAC,MAAM,sBAAsB,OAAO,GAAG,MAAM,CAAC,EAAE,UAAU,kEAAkE,WAAW,eAAe,KAAK,qBAAqB,SAAS,CAAC,WAAW,2DAA2D,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,UAAU,CAAC,WAAW,2DAA2D,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,KAAK,mBAAmB,OAAO,CAAC,WAAW,EAAE,YAAY,sBAAsB,QAAQ,EAAE,QAAQ,CAAC,CAAC,EAAE,MAAM,IAAI,OAAO,EAAE,EAAE,OAAO,CAAC,aAAa,EAAE,UAAU,MAAM,MAAM,GAAK,KAAK,CAAC,WAAW,2DAA2D,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,MAAM,UAAU,QAAQ,EAAE,OAAO,CAAC,OAAO,SAAS,UAAU,aAAa,QAAQ,OAAO,UAAU,YAAY,OAAO,SAAS,UAAU,aAAa,KAAK,kBAAkB,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,QAAQ,CAAC,MAAM,eAAe,KAAK,qBAAqB,OAAO,CAAC,WAAW,EAAE,YAAY,sBAAsB,QAAQ,EAAE,QAAQ,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,eAAe,KAAK,oBAAoB,CAAC,EAAE,QAAQ,CAAC,WAAW,GAAM,WAAW,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAK,YAAY,EAAK,EAAE,cAAc,oGAAoG,SAAS,CAAC,MAAM,gBAAgB,KAAK,uCAAuC,OAAO,UAAU,EAAE,aAAa,GAAK,QAAQ,kBAAkB,OAAO,WAAW,KAAK,GAAK,cAAc,GAAM,cAAc,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,EAAE,iBAAiB,uEAAuE,YAAY,CAAC,MAAM,gBAAgB,KAAKD,EAAgB,CAAC,EAAE,OAAO,UAAU,EAAE,gBAAgB,GAAK,WAAW,kBAAkB,UAAU,UAAU,EAAE,MAAM,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,CAAC,UAAU,CAAC,YAAY,mCAAmC,MAAM,WAAW,EAAE,UAAU,CAAC,YAAY,4CAA4C,MAAM,WAAW,EAAE,UAAU,CAAC,YAAY,4CAA4C,SAAS,GAAK,MAAM,WAAW,EAAE,YAAY,CAAC,YAAY,6CAA6C,MAAM,aAAa,EAAE,QAAQ,GAAK,MAAM,CAAC,WAAW,sBAAsB,OAAO,CAAC,MAAM,sBAAsB,OAAO,EAAE,MAAM,CAAC,EAAE,SAAS,CAAC,WAAW,2DAA2D,UAAU,SAAS,WAAW,GAAG,EAAE,UAAU,CAAC,WAAW,2DAA2D,UAAU,SAAS,WAAW,GAAG,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,YAAY,eAAe,oBAAoB,oBAAoB,CAAC,EAAE,QAAQ,GAAM,QAAQ,CAAC,MAAM,qBAAqB,SAAS,GAAG,SAAS,UAAU,KAAK,gBAAgB,SAAS,CAAC,WAAW,2DAA2D,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,MAAM,UAAU,QAAQ,EAAE,KAAK,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetF,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwF,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,qHAAqH,2RAA2R,oTAAoT,0RAA0R,8kBAA8kB,mPAAmP,mQAAmQ,mRAAmR,oHAAoH,gWAAgW,8VAA8V,0YAA0Y,+UAA+U,6UAA6U,6kBAA6kB,mVAAmV,2JAA2J,oeAAoe,2LAA2L,wQAAwQ,+KAA+K,+iBAA+iB,yQAAyQ,+KAA+K,gRAAgR,8KAA8K,mSAAmS,2UAA2U,6VAA6V,6HAA6H,kSAAkS,+VAA+V,4VAA4V,8QAA8Q,iTAAiT,2SAA2S,kPAAkP,qRAAqR,mPAAmP,iMAAiM,6LAA6L,uJAAuJ,+iBAA+iB,yRAAyR,kPAAkP,kRAAkR,iLAAiL,mbAAmb,yRAAyR,mPAAmP,+RAA+R,sSAAsS,kPAAkP,8RAA8R,oHAAoH,kSAAkS,kPAAkP,sRAAsR,2GAA2G,yGAAyG,gsPAAgsP,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,ukOAAukO,+vUAA+vU,EAWpsjIC,GAAgBC,GAAQnF,GAAUiF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,QAAQ,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,+EAA+E,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAe,GAAGC,GAAS,GAAGC,GAAY,GAAGC,GAAe,GAAGC,GAAmB,GAAGC,GAAW,GAAGC,GAAc,GAAGC,GAAkB,GAAGC,GAA6B,GAAGC,GAAkB,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC32G,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,IAAI,oCAAsC,4JAA0L,6BAA+B,OAAO,yBAA2B,QAAQ,qBAAuB,4BAA4B,4BAA8B,OAAO,yBAA2B,OAAO,sBAAwB,UAAU,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", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "mP1huP1ou", "PkBn1bZoZ", "kx46x2WlG", "faFMS_mz0", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "Image2", "RichText2", "css", "Framerh_yMAniiD", "withCSS", "h_yMAniiD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NwoUqr7Lx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "Link", "css", "FramerK3jHFfI57", "withCSS", "K3jHFfI57_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavSimpleFonts", "getFonts", "hH1DdpI8D_default", "TagFonts", "EwgjuU71G_default", "ButtonFonts", "hljNqlOx9_default", "LearnMoreFonts", "K3jHFfI57_default", "FeatureSimpleFonts", "IMm2i7xki_default", "VideoFonts", "Video", "UseCasesFonts", "h_yMAniiD_default", "BlogNewCardsFonts", "GA3H8tQWC_default", "FooterCompleteNightWNAPFonts", "fUuDhB9gC_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "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", "UUL2qrDB0oCVinmvLv", "MQEZ7owvfoCVinmvLv", "jNObvUWjLoCVinmvLv", "FchZ30BV3_CGkSpPgGEoCVinmvLv", "Vir1VUcXIoCVinmvLv", "idoCVinmvLv", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "hH1DdpI8D_default", "Image2", "getLoadingLazyAtYPosition", "EwgjuU71G_default", "x", "RichText2", "hljNqlOx9_default", "ResolveLinks", "resolvedLinks", "K3jHFfI57_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "IMm2i7xki_default", "Video", "Link", "resolvedLinks4", "h_yMAniiD_default", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "ChildrenCanSuspend", "lRogoakf5_default", "iiSMSiyMa_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks9", "GA3H8tQWC_default", "fUuDhB9gC_default", "resolvedLinks10", "CookieBanner", "css", "FramerA78v7e8Ff", "withCSS", "A78v7e8Ff_default", "addFonts", "NavSimpleFonts", "TagFonts", "ButtonFonts", "LearnMoreFonts", "FeatureSimpleFonts", "VideoFonts", "UseCasesFonts", "BlogNewCardsFonts", "FooterCompleteNightWNAPFonts", "CookieBannerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
