{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/hk4lPafDmcY6HrZlykGP/U3avBBaPbOEfHfaKjHfi/G_MbfHfai.js", "ssg:https://framerusercontent.com/modules/WMyO2D4fLr2PJMd1dH6x/jjgQij8dH98V59xZ1vYB/irIGTzDeI.js", "ssg:https://framerusercontent.com/modules/X1kFSnMrRl7YicE65tQs/KxC9rbdZEDMHBNGSzGPq/IzWFQ31jN.js", "ssg:https://framerusercontent.com/modules/oFkXIzP76FeCJW7pigSW/GdYX3k3DxcHZO3bpoJp3/J3YjjM8g9.js", "ssg:https://framerusercontent.com/modules/b289YQEeJtr9eSCgJNSG/avFVRdURA4Eyow0xtJZW/LvDci0Trq.js", "ssg:https://framerusercontent.com/modules/qOixzjaw2nkdTrWnWtLg/LWbTa3xyZr3QNdXwfb1j/PvqjJQSJ_.js", "ssg:https://framerusercontent.com/modules/RpvI9vDqjCen7YOOiCUR/nOTyCeAY7vAbg2ChkdnP/qoSvWsRDa.js", "ssg:https://framerusercontent.com/modules/Gk0L7gFANGePuohTNnjz/3QbFKOsm2moX6ByNNdTr/rbdA1k6EM.js", "ssg:https://framerusercontent.com/modules/fkLz8OyKbTpsxp4NghcS/Qpj3OSJzJgMUJwBchVCP/Xl7gU4Y85.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const serializationHash=\"framer-rBe2L\";const variantClassNames={guiwZJFK1:\"framer-v-1bl2fyr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"guiwZJFK1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1bl2fyr\",className,classNames),\"data-framer-appear-id\":\"1bl2fyr\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"guiwZJFK1\",optimized:true,ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ddzlk2-container\",layoutDependency:layoutDependency,layoutId:\"wMTXPdFJP-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:58,height:\"100%\",hoverFactor:1,id:\"wMTXPdFJP\",layoutId:\"wMTXPdFJP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oab8c3\",\"data-framer-name\":\"SIRTEX\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QJeszT4UT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 86.353 44.881 C 88.632 41.068 90.939 36.567 93.255 31.277 L 92.725 33.023 C 90.748 37.793 88.765 41.941 86.79 45.536 L 87.721 46.929 L 93.083 55.3 C 94.032 56.797 94.803 56.957 95.271 57.055 C 95.587 57.121 95.764 57.158 95.764 57.56 C 95.764 57.888 95.437 57.888 95.173 57.888 C 95.015 57.888 94.752 57.877 94.424 57.863 L 94.423 57.863 L 94.422 57.863 L 94.422 57.863 C 93.874 57.84 93.144 57.81 92.413 57.81 C 91.682 57.81 90.982 57.84 90.457 57.863 L 90.457 57.863 C 90.142 57.877 89.89 57.888 89.732 57.888 C 89.404 57.888 89.311 57.81 89.311 57.56 C 89.311 57.244 89.592 57.115 89.888 56.979 C 90.221 56.826 90.573 56.664 90.573 56.22 C 90.573 55.799 90.495 55.549 89.904 54.629 L 86.052 48.597 L 85.552 47.72 C 63.113 86.041 42.03 54.551 42.03 54.551 L 38.679 49.189 C 38.188 48.489 37.991 48.096 37.674 47.876 C 37.236 47.572 36.569 47.599 34.579 47.599 C 33.78 47.599 33.804 47.987 33.825 48.304 C 33.828 48.351 33.831 48.397 33.831 48.44 L 33.831 54.894 C 33.831 56.502 35.044 56.766 35.971 56.968 C 36.546 57.093 37.011 57.194 37.011 57.575 C 37.011 57.848 36.837 57.839 36.635 57.829 C 36.595 57.827 36.553 57.825 36.512 57.825 C 36.452 57.825 36.363 57.82 36.227 57.813 C 35.796 57.792 34.897 57.747 32.989 57.747 C 32.394 57.747 31.804 57.766 31.216 57.786 C 30.631 57.805 30.048 57.825 29.466 57.825 C 29.216 57.825 29.138 57.669 29.138 57.497 C 29.138 57.227 29.433 57.107 29.81 56.954 C 30.477 56.684 31.399 56.31 31.399 54.816 L 31.399 39.227 C 31.399 37.377 30.36 37.192 29.595 37.056 C 29.149 36.977 28.795 36.914 28.795 36.546 C 28.795 36.39 29.06 36.219 29.388 36.219 C 29.574 36.219 29.671 36.229 29.793 36.242 C 30.009 36.265 30.307 36.297 31.321 36.297 C 32.224 36.297 33.127 36.276 34.008 36.256 C 34.844 36.237 35.659 36.219 36.434 36.219 C 36.455 36.219 36.492 36.217 36.544 36.215 C 37.521 36.177 43.636 35.937 43.636 41.503 C 43.636 43.857 41.968 45.946 39.785 46.788 L 44.899 54.489 C 44.899 54.489 63.626 80.629 85.095 46.92 L 84.868 46.523 L 80.098 39.399 C 78.621 37.21 77.464 37.023 76.839 36.922 C 76.507 36.868 76.325 36.839 76.325 36.547 C 76.325 36.297 76.497 36.219 76.653 36.219 C 76.876 36.219 77.025 36.228 77.224 36.239 C 77.621 36.263 78.217 36.297 80.004 36.297 C 80.464 36.297 80.947 36.278 81.43 36.258 C 81.914 36.239 82.397 36.219 82.857 36.219 C 83.106 36.219 83.356 36.297 83.356 36.64 C 83.356 36.81 83.138 36.883 82.877 36.971 C 82.492 37.1 82.015 37.261 82.015 37.809 C 82.015 38.137 82.436 38.807 83.527 40.491 L 85.71 43.92 Z M 35.53 37.154 C 34.439 37.154 33.768 37.154 33.768 38.323 L 33.768 46.024 C 33.768 46.509 35.062 46.482 36.31 46.456 C 36.587 46.451 36.862 46.445 37.12 46.445 C 38.46 46.445 41.391 45.868 41.391 42.096 C 41.391 38.417 38.538 37.154 35.53 37.154 Z M 2.263 52.478 C 2.186 51.886 2.263 51.558 2.591 51.558 C 2.947 51.558 3.002 51.793 3.114 52.27 C 3.134 52.357 3.157 52.453 3.183 52.556 C 3.511 53.975 5.366 57.17 9.637 57.17 C 12.568 57.17 15.42 55.58 15.42 52.307 C 15.42 49.599 12.775 48.837 9.929 48.018 C 6.615 47.064 3.027 46.031 3.027 41.753 C 3.027 37.903 6.301 35.97 9.808 35.97 C 12.557 35.97 13.818 36.579 14.455 36.887 C 14.671 36.991 14.815 37.061 14.921 37.061 C 15.036 37.061 15.115 36.992 15.199 36.917 C 15.299 36.829 15.407 36.734 15.592 36.734 C 15.763 36.734 15.919 36.812 15.919 37.155 L 16.34 41.348 C 16.34 41.597 16.34 41.769 16.013 41.769 C 15.685 41.769 15.42 41.098 15.342 40.849 C 14.423 38.246 12.162 36.905 9.481 36.905 C 7.049 36.905 4.539 38.074 4.539 40.849 C 4.539 43.466 7.077 44.194 9.856 44.99 C 13.218 45.953 16.932 47.018 16.932 51.652 C 16.932 54.255 15.093 58.106 8.218 58.106 C 5.958 58.106 3.199 56.937 3.027 56.438 Z M 21.858 38.807 C 21.851 37.357 20.804 37.124 20.065 36.958 C 19.661 36.868 19.349 36.798 19.349 36.562 C 19.349 36.313 19.427 36.235 19.676 36.235 C 20.271 36.235 20.845 36.255 21.41 36.275 C 21.955 36.294 22.491 36.313 23.028 36.313 C 23.488 36.313 23.971 36.293 24.454 36.274 C 24.937 36.254 25.421 36.235 25.88 36.235 C 26.379 36.235 26.473 36.313 26.473 36.562 C 26.473 36.833 26.188 36.907 25.824 37.003 C 25.181 37.173 24.29 37.407 24.29 38.9 L 24.29 55.315 C 24.29 56.571 25.259 56.802 26.032 56.985 C 26.545 57.107 26.972 57.209 26.972 57.576 C 26.972 57.825 26.894 57.903 26.379 57.903 C 26.102 57.903 25.709 57.89 25.249 57.874 L 25.249 57.874 C 24.598 57.852 23.813 57.825 23.028 57.825 C 21.783 57.825 21.074 57.861 20.615 57.884 L 20.615 57.884 C 20.395 57.895 20.233 57.903 20.097 57.903 C 19.505 57.903 19.427 57.732 19.427 57.482 C 19.427 57.155 19.723 57.07 20.105 56.962 C 20.795 56.765 21.765 56.489 21.765 54.552 L 21.765 38.807 Z M 55.967 39.321 C 55.967 39.294 55.967 39.256 55.969 39.21 C 55.978 38.843 56 37.972 55.639 37.903 L 50.698 37.903 C 48.891 37.903 48.773 38.27 48.294 39.756 C 48.261 39.86 48.226 39.97 48.188 40.085 C 48.177 40.132 48.167 40.178 48.158 40.224 L 48.158 40.224 L 48.158 40.224 C 48.101 40.503 48.05 40.756 47.689 40.756 C 47.518 40.756 47.362 40.506 47.362 40.428 L 47.689 37.497 C 47.689 37.17 47.689 36.328 48.281 36.328 C 49.299 36.328 50.333 36.343 51.503 36.36 L 51.503 36.36 C 53.022 36.381 54.767 36.406 56.995 36.406 C 61.165 36.406 63.804 36.362 65.105 36.34 L 65.105 36.34 C 65.53 36.333 65.813 36.328 65.959 36.328 C 66.629 36.328 66.801 36.5 66.879 37.248 L 67.05 39.68 C 67.05 39.726 67.052 39.773 67.053 39.818 C 67.063 40.097 67.071 40.35 66.723 40.35 C 66.278 40.35 66.244 40.012 66.201 39.593 C 66.132 38.91 66.042 38.012 64.119 38.012 L 59.77 38.012 C 59.736 38.012 59.702 38.012 59.669 38.012 C 59.643 38.012 59.616 38.012 59.591 38.012 C 59.075 38.01 58.804 38.009 58.662 38.144 C 58.504 38.294 58.505 38.61 58.507 39.276 L 58.507 39.276 C 58.507 39.354 58.508 39.436 58.508 39.524 L 58.508 55.019 C 58.508 56.652 59.495 56.862 60.231 57.019 C 60.669 57.112 61.017 57.186 61.017 57.529 C 61.017 57.607 61.017 57.856 60.768 57.856 C 60.413 57.856 60.037 57.839 59.642 57.82 L 59.642 57.82 L 59.642 57.82 C 59.204 57.8 58.742 57.778 58.258 57.778 C 55.455 57.778 54.547 57.83 54.216 57.849 C 54.141 57.854 54.096 57.856 54.065 57.856 C 53.815 57.856 53.737 57.778 53.737 57.435 C 53.737 57.144 54.106 57.016 54.557 56.859 C 55.263 56.614 56.169 56.298 56.169 55.175 L 56.169 39.321 Z M 75.484 49.47 C 75.484 49.968 75.156 49.968 74.486 49.968 L 66.364 49.968 C 66.364 54.988 69.466 56.5 71.306 56.5 C 73.033 56.5 74.053 55.8 74.74 55.329 C 75.089 55.09 75.352 54.91 75.577 54.91 C 75.655 54.91 75.655 55.082 75.655 55.159 C 75.655 55.908 72.974 58.09 70.215 58.09 C 65.6 58.09 64.01 53.819 64.01 51.808 C 64.01 47.88 66.193 44.606 70.043 44.606 C 73.816 44.606 75.484 48.207 75.484 49.47 Z M 69.622 45.354 C 67.689 45.354 66.349 47.537 66.349 49.205 C 66.349 49.205 72.475 49.205 72.459 49.22 C 72.88 49.22 73.052 49.049 73.052 48.628 C 73.052 46.866 71.29 45.354 69.622 45.354 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:11831105870,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lqe795\",\"data-framer-name\":\"TJX\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XUX1_prk3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 50.731 53.579 C 50.104 59.221 46.379 64.402 41.303 66.893 C 38.979 67.999 36.424 68.724 33.589 68.691 L 33.589 60.838 C 37.842 60.706 41.286 57.967 42.572 54.271 C 42.723 54.027 42.784 53.677 42.841 53.347 L 42.841 53.347 C 42.865 53.208 42.889 53.073 42.918 52.952 L 42.984 29.21 L 50.764 29.21 Z M 32.699 37.443 L 41.995 37.443 L 41.995 29.325 L 15.327 29.325 L 15.327 37.443 L 24.573 37.509 L 24.573 68.79 L 32.633 68.79 Z M 69.883 29.391 L 65.169 36.139 L 60.472 29.391 L 51.522 29.391 L 60.554 43.564 L 44.171 68.724 L 52.906 68.724 L 65.136 50.477 L 70.048 57.588 L 78.866 57.588 L 69.883 43.531 L 78.552 29.391 Z M 80.481 29.606 C 81.684 29.606 82.673 30.595 82.673 31.8 C 82.673 33.021 81.684 33.994 80.481 33.994 C 79.277 33.994 78.289 33.021 78.289 31.8 C 78.272 30.595 79.261 29.606 80.481 29.606 Z M 80.481 33.747 C 81.552 33.747 82.426 32.872 82.426 31.8 C 82.426 30.727 81.552 29.853 80.464 29.853 C 79.41 29.853 78.536 30.727 78.536 31.8 C 78.536 32.872 79.41 33.747 80.481 33.747 Z M 79.97 32.955 L 79.656 32.955 L 79.656 30.529 L 80.711 30.529 C 81.09 30.529 81.453 30.612 81.486 31.156 C 81.503 31.47 81.404 31.585 81.173 31.767 C 81.42 31.915 81.436 31.965 81.47 32.377 C 81.479 32.469 81.482 32.538 81.484 32.596 C 81.489 32.734 81.492 32.803 81.585 32.955 L 81.223 32.955 L 81.173 32.641 C 81.162 32.577 81.161 32.503 81.16 32.428 C 81.157 32.179 81.154 31.915 80.761 31.915 L 79.97 31.915 Z M 81.19 31.272 C 81.239 30.859 80.943 30.81 80.744 30.81 L 79.97 30.793 L 79.97 31.635 L 80.744 31.635 C 80.959 31.635 81.157 31.585 81.19 31.272 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:9234623941,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17o8f97\",\"data-framer-name\":\"MT Sinai\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wZFPS7AKA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 52.728 20.484 C 52.712 20.462 52.696 20.435 52.677 20.407 C 52.55 20.206 52.34 19.877 51.936 19.877 C 51.804 19.877 51.694 19.911 51.6 19.964 C 51.408 20.072 51.288 20.26 51.203 20.393 L 51.203 20.393 L 51.203 20.393 L 51.203 20.394 L 51.203 20.394 C 51.18 20.429 51.16 20.461 51.142 20.486 L 50.816 20.979 L 45.992 28.26 L 44.713 26.324 L 44.704 26.31 L 44.603 26.157 L 43.659 24.722 C 43.644 24.7 43.628 24.674 43.609 24.645 L 43.609 24.645 L 43.609 24.645 C 43.482 24.445 43.272 24.116 42.868 24.116 C 42.681 24.116 42.538 24.184 42.425 24.277 C 42.295 24.384 42.205 24.524 42.137 24.629 C 42.114 24.666 42.093 24.698 42.074 24.724 L 41.45 25.669 L 25.81 49.279 L 29.345 49.279 L 42.856 29.11 L 44.149 31.042 L 32.067 49.279 L 35.602 49.279 L 45.974 33.771 L 47.238 35.662 L 38.323 49.279 L 41.859 49.279 L 49.058 38.384 L 49.059 38.385 L 49.059 38.384 L 50.362 40.332 L 50.362 40.332 L 50.362 40.333 L 44.58 49.28 L 48.116 49.28 L 52.181 43.052 L 56.346 49.279 L 59.881 49.279 L 53.963 40.322 L 55.204 38.421 L 62.597 49.279 L 66.134 49.279 L 56.99 35.685 L 58.189 33.849 L 68.85 49.28 L 72.387 49.28 L 59.978 31.108 L 59.98 31.104 L 58.103 28.357 L 58.101 28.36 L 58.101 28.359 L 58.1 28.359 L 56.872 26.561 L 56.872 26.56 L 56.872 26.559 L 56.874 26.556 L 54.998 23.809 L 54.996 23.813 L 54.996 23.813 L 53.803 22.067 L 53.803 22.066 L 53.803 22.066 L 53.805 22.062 Z M 56.31 31.131 L 55.144 32.936 L 55.143 32.936 L 55.142 32.937 L 53.889 31.074 L 55.053 29.311 Z M 53.354 35.704 L 52.073 33.822 L 50.87 35.642 L 52.146 37.573 Z M 52.041 28.326 L 53.175 26.593 L 51.956 24.828 L 50.825 26.518 L 52.041 28.326 L 52.041 28.326 Z M 50.222 31.104 L 48.979 29.278 L 47.815 31.018 L 49.052 32.891 Z M 26.939 63.217 C 26.939 64.683 26.368 64.838 25.615 64.838 L 25.615 65.317 C 25.983 65.317 26.269 65.301 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 L 26.54 65.287 C 26.782 65.273 27.011 65.261 27.274 65.261 C 27.538 65.261 27.767 65.273 28.008 65.287 L 28.008 65.287 L 28.008 65.287 L 28.008 65.287 L 28.008 65.287 L 28.008 65.287 L 28.009 65.287 L 28.009 65.287 L 28.009 65.287 L 28.009 65.287 L 28.009 65.287 L 28.009 65.287 L 28.009 65.287 C 28.279 65.301 28.565 65.317 28.933 65.317 L 28.933 64.838 C 28.04 64.838 27.497 64.683 27.497 63.217 L 27.497 57.538 L 27.525 57.538 L 30.299 65.289 L 30.983 65.289 L 33.729 57.538 L 33.757 57.538 L 33.757 64.781 L 32.642 64.838 L 32.642 65.317 C 32.92 65.317 33.307 65.303 33.694 65.289 C 34.081 65.275 34.468 65.261 34.746 65.261 C 35.025 65.261 35.426 65.275 35.826 65.289 L 35.826 65.289 L 35.827 65.289 C 36.227 65.303 36.628 65.317 36.907 65.317 L 36.907 64.838 L 35.778 64.781 L 35.778 56.919 L 36.907 56.862 L 36.907 56.383 L 33.575 56.439 L 31.386 62.428 L 31.372 62.428 L 29.212 56.439 L 25.838 56.383 L 25.838 56.862 L 26.939 56.919 Z M 37.144 62.133 C 37.144 59.738 38.747 58.624 40.532 58.624 C 42.344 58.624 43.933 59.597 43.933 61.992 C 43.933 64.402 42.372 65.501 40.532 65.501 C 38.719 65.501 37.144 64.543 37.144 62.133 Z M 41.898 62.062 C 41.898 60.146 41.521 59.103 40.532 59.103 C 39.569 59.103 39.179 60.146 39.179 62.062 C 39.179 63.993 39.569 65.021 40.532 65.021 C 41.521 65.021 41.898 63.993 41.898 62.062 Z M 44.169 59.343 C 44.88 59.343 45.117 59.343 45.117 60.119 L 45.117 63.106 C 45.117 64.712 45.661 65.474 47.125 65.474 C 48.226 65.474 49.007 64.91 49.452 64.148 L 49.466 64.148 L 49.508 65.403 L 52.185 65.262 L 52.185 64.783 L 51.237 64.754 L 51.237 58.724 L 48.463 58.865 L 48.463 59.343 C 49.076 59.343 49.396 59.343 49.396 60.119 L 49.396 62.444 C 49.396 63.825 48.532 64.642 47.849 64.642 C 46.985 64.642 46.957 63.952 46.957 62.598 L 46.957 58.724 L 44.169 58.865 Z M 56.186 64.839 L 56.186 65.318 C 55.867 65.318 55.618 65.305 55.357 65.292 C 55.071 65.277 54.77 65.262 54.346 65.262 C 53.925 65.262 53.621 65.277 53.33 65.292 L 53.33 65.292 L 53.33 65.292 C 53.062 65.305 52.805 65.318 52.478 65.318 L 52.478 64.839 L 53.426 64.768 L 53.426 60.09 C 53.426 59.343 53.189 59.343 52.478 59.343 L 52.478 59.343 L 52.478 58.864 L 55.155 58.723 L 55.183 59.949 L 55.197 59.949 C 55.67 59.175 56.423 58.611 57.524 58.611 C 58.695 58.611 59.532 59.329 59.532 61.105 L 59.532 64.768 L 60.494 64.839 L 60.494 65.318 C 60.167 65.318 59.91 65.305 59.643 65.292 L 59.643 65.292 L 59.643 65.292 L 59.643 65.292 L 59.643 65.292 L 59.643 65.292 C 59.351 65.277 59.047 65.262 58.625 65.262 C 58.204 65.262 57.908 65.277 57.624 65.292 L 57.624 65.292 L 57.624 65.292 L 57.624 65.292 L 57.624 65.292 C 57.363 65.305 57.113 65.318 56.786 65.318 L 56.786 64.839 L 57.706 64.768 L 57.706 61.513 C 57.706 59.991 57.538 59.442 56.8 59.442 C 56.117 59.442 55.266 60.259 55.266 61.64 L 55.266 64.768 Z M 63.616 64.796 C 63.045 64.796 63.017 64.317 63.045 63.443 L 63.045 59.413 L 64.606 59.413 L 64.606 58.864 L 63.045 58.864 L 63.045 56.243 C 63.045 56.243 62.264 56.51 61.218 56.51 L 61.218 58.864 L 60.173 58.864 L 60.173 59.413 L 61.218 59.413 L 61.218 63.472 C 61.218 64.571 61.4 65.515 63.114 65.515 C 64.578 65.515 64.871 64.218 64.871 64.218 L 64.425 64.05 C 64.425 64.05 64.132 64.796 63.616 64.796 Z M 26.744 74.559 C 26.855 75.193 27.761 77.588 29.587 77.588 C 30.731 77.588 31.19 76.941 31.19 76.208 C 31.19 75.006 30.169 74.667 29.067 74.301 C 27.778 73.873 26.381 73.409 26.381 71.487 C 26.381 69.387 28.096 68.697 29.364 68.697 C 30.169 68.697 30.703 68.881 31.029 68.993 C 31.173 69.042 31.276 69.078 31.344 69.078 C 31.581 69.078 31.651 68.768 31.651 68.768 L 32.111 68.768 C 32.111 69.002 32.104 69.203 32.097 69.404 C 32.09 69.602 32.083 69.798 32.083 70.022 C 32.083 70.385 32.091 70.663 32.099 70.914 C 32.105 71.122 32.111 71.311 32.111 71.515 L 31.651 71.515 C 31.539 70.895 30.745 69.176 29.252 69.176 C 28.416 69.176 27.845 69.697 27.845 70.431 C 27.845 71.492 28.817 71.812 29.9 72.168 C 31.26 72.615 32.794 73.119 32.794 75.222 C 32.794 77.292 31.246 78.124 29.545 78.124 C 28.499 78.124 27.809 77.869 27.407 77.721 L 27.407 77.721 C 27.241 77.66 27.124 77.617 27.05 77.617 C 26.757 77.617 26.702 77.955 26.702 77.955 L 26.241 77.955 C 26.241 77.617 26.252 77.346 26.262 77.074 C 26.273 76.803 26.283 76.532 26.283 76.193 C 26.283 75.86 26.272 75.59 26.261 75.328 C 26.251 75.08 26.241 74.84 26.241 74.559 Z M 37.046 77.843 L 37.046 77.363 L 36.099 77.292 L 36.099 71.247 L 33.31 71.388 L 33.31 71.867 C 34.007 71.867 34.258 71.867 34.258 72.642 L 34.258 77.292 L 33.31 77.363 L 33.31 77.843 C 33.637 77.843 33.894 77.83 34.162 77.816 C 34.453 77.801 34.757 77.786 35.178 77.786 C 35.602 77.786 35.91 77.801 36.204 77.816 L 36.205 77.816 C 36.472 77.83 36.727 77.843 37.046 77.843 Z M 36.307 68.95 C 36.307 68.26 35.764 67.88 35.192 67.88 C 34.607 67.88 34.063 68.26 34.063 68.95 C 34.063 69.641 34.607 70.022 35.192 70.022 C 35.764 70.022 36.307 69.641 36.307 68.95 Z M 41.047 77.364 L 41.047 77.844 C 40.728 77.844 40.48 77.831 40.219 77.817 L 40.219 77.817 L 40.218 77.817 C 39.932 77.803 39.631 77.788 39.207 77.788 C 38.786 77.788 38.482 77.803 38.191 77.817 L 38.191 77.817 L 38.191 77.817 L 38.191 77.817 C 37.923 77.831 37.666 77.844 37.339 77.844 L 37.339 77.364 L 38.287 77.294 L 38.287 72.616 C 38.287 71.868 38.05 71.868 37.339 71.868 L 37.339 71.39 L 40.016 71.249 L 40.044 72.475 L 40.058 72.475 C 40.531 71.7 41.285 71.136 42.386 71.136 C 43.556 71.136 44.393 71.854 44.393 73.631 L 44.393 77.294 L 45.355 77.364 L 45.355 77.844 C 45.028 77.844 44.771 77.831 44.504 77.817 L 44.503 77.817 L 44.503 77.817 L 44.503 77.817 C 44.212 77.803 43.908 77.788 43.487 77.788 C 43.066 77.788 42.769 77.803 42.485 77.817 L 42.485 77.817 L 42.485 77.817 C 42.224 77.831 41.974 77.844 41.647 77.844 L 41.647 77.364 L 42.567 77.294 L 42.567 74.039 C 42.567 72.517 42.4 71.968 41.661 71.968 C 40.978 71.968 40.128 72.785 40.128 74.166 L 40.128 77.294 Z M 51.153 78.041 C 52.589 78.041 52.784 76.758 52.784 76.758 L 52.324 76.645 C 52.324 76.645 52.185 77.252 51.781 77.252 C 51.474 77.252 51.335 76.955 51.349 76.518 L 51.418 73.855 C 51.446 72.531 51.237 71.136 48.798 71.136 C 47.291 71.136 46.023 71.699 46.023 72.7 C 46.023 73.263 46.413 73.602 46.957 73.602 C 47.528 73.602 47.891 73.249 47.891 72.757 C 47.891 72.277 47.584 72.108 47.584 72.108 C 47.654 71.967 47.961 71.615 48.658 71.615 C 49.564 71.615 49.662 72.362 49.62 73.489 L 49.62 74.18 C 47.724 74.166 45.591 74.335 45.591 76.166 C 45.591 77.647 46.748 78.097 47.724 78.097 C 48.742 78.097 49.327 77.647 49.634 77.054 L 49.662 77.054 C 49.899 77.759 50.471 78.041 51.153 78.041 Z M 47.473 75.984 C 47.473 75.095 47.863 74.631 49.592 74.658 L 49.564 75.744 C 49.536 76.758 48.922 77.238 48.379 77.238 C 47.793 77.238 47.473 76.814 47.473 75.984 Z M 56.535 77.363 L 56.535 77.843 C 56.216 77.843 55.96 77.83 55.693 77.816 L 55.693 77.816 C 55.399 77.801 55.09 77.786 54.666 77.786 C 54.246 77.786 53.942 77.801 53.65 77.816 C 53.383 77.83 53.126 77.843 52.798 77.843 L 52.798 77.363 L 53.747 77.292 L 53.747 72.642 C 53.747 71.867 53.496 71.867 52.798 71.867 L 52.798 71.388 L 55.587 71.247 L 55.587 77.292 Z M 54.68 67.88 C 55.252 67.88 55.795 68.26 55.795 68.95 C 55.795 69.641 55.252 70.022 54.68 70.022 C 54.095 70.022 53.551 69.641 53.551 68.95 C 53.551 68.26 54.095 67.88 54.68 67.88 Z M 57.963 20.556 C 57.703 20.414 57.434 20.343 57.152 20.343 C 56.87 20.343 56.601 20.414 56.341 20.556 C 56.083 20.699 55.879 20.903 55.731 21.168 C 55.583 21.434 55.51 21.712 55.51 22.003 C 55.51 22.292 55.582 22.568 55.727 22.83 C 55.872 23.092 56.074 23.297 56.334 23.443 C 56.593 23.589 56.866 23.663 57.152 23.663 C 57.437 23.663 57.711 23.589 57.97 23.443 C 58.23 23.297 58.432 23.092 58.577 22.83 C 58.722 22.568 58.794 22.292 58.794 22.003 C 58.794 21.712 58.721 21.434 58.573 21.168 C 58.425 20.903 58.221 20.699 57.963 20.556 Z M 56.505 20.839 C 56.712 20.725 56.928 20.668 57.154 20.668 C 57.38 20.668 57.596 20.725 57.805 20.839 C 58.013 20.953 58.177 21.117 58.296 21.331 C 58.415 21.545 58.475 21.769 58.475 22.003 C 58.475 22.236 58.417 22.458 58.3 22.668 C 58.181 22.88 58.02 23.044 57.811 23.163 C 57.603 23.281 57.384 23.34 57.154 23.34 C 56.925 23.34 56.707 23.281 56.498 23.163 C 56.289 23.044 56.126 22.88 56.01 22.668 C 55.894 22.458 55.835 22.236 55.835 22.003 C 55.835 21.769 55.895 21.545 56.015 21.331 C 56.134 21.117 56.297 20.953 56.505 20.839 Z M 56.41 21.13 L 56.41 22.892 L 56.764 22.892 L 56.764 22.169 L 56.856 22.169 C 56.955 22.169 57.036 22.193 57.101 22.243 C 57.165 22.293 57.246 22.414 57.344 22.606 L 57.49 22.892 L 57.928 22.892 L 57.722 22.536 C 57.649 22.411 57.607 22.341 57.594 22.322 C 57.543 22.256 57.504 22.211 57.476 22.187 C 57.447 22.163 57.407 22.14 57.354 22.121 C 57.503 22.099 57.618 22.043 57.7 21.953 C 57.781 21.862 57.823 21.753 57.823 21.627 C 57.823 21.534 57.801 21.45 57.757 21.374 C 57.714 21.299 57.66 21.242 57.595 21.206 C 57.53 21.168 57.438 21.146 57.321 21.135 C 57.281 21.131 57.095 21.13 56.764 21.13 Z M 56.907 21.89 L 56.764 21.89 L 56.764 21.407 L 56.907 21.407 C 57.109 21.407 57.236 21.418 57.287 21.434 C 57.339 21.451 57.378 21.478 57.406 21.517 C 57.434 21.554 57.448 21.598 57.448 21.647 C 57.448 21.698 57.434 21.743 57.405 21.782 C 57.376 21.823 57.337 21.85 57.288 21.866 C 57.238 21.882 57.112 21.89 56.907 21.89 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:9123271323,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6epudb\",\"data-framer-name\":\"Stratus\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"O1I9uUvGU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 8.871 56.654 C 6.225 46.219 12.381 35.551 22.583 32.874 L 22.583 32.874 C 28.279 31.354 34.025 32.629 38.468 35.845 C 33.889 31.944 27.61 30.254 21.392 31.91 C 11.164 34.608 5.041 45.252 7.67 55.711 C 8.849 60.345 11.557 64.16 15.102 66.723 C 12.163 64.209 9.905 60.764 8.871 56.654 Z M 15.583 65.338 L 15.925 65.338 L 15.925 65.235 L 15.107 65.235 L 15.107 65.338 L 15.449 65.338 L 15.449 66.312 L 15.583 66.312 Z M 17.096 66.312 L 17.229 66.312 L 17.229 65.235 L 16.983 65.235 L 16.681 66.031 L 16.676 66.031 L 16.37 65.235 L 16.124 65.235 L 16.124 66.312 L 16.257 66.312 L 16.257 65.348 L 16.262 65.348 L 16.634 66.312 L 16.72 66.312 L 17.091 65.348 L 17.096 65.348 Z M 26.719 47.061 C 26.037 47.061 25.172 47.311 25.172 48.221 C 25.172 48.994 25.832 49.245 26.878 49.586 C 28.88 50.223 31.474 51.497 31.474 54.546 C 31.474 58.163 28.766 59.778 25.809 59.778 C 23.716 59.778 21.6 58.959 20.28 57.526 C 20.658 57.068 21.036 56.604 21.414 56.141 L 21.414 56.14 C 21.787 55.683 22.16 55.225 22.533 54.773 C 23.238 55.433 24.717 56.047 25.809 56.047 C 26.583 56.047 27.288 55.592 27.288 54.546 C 27.288 53.772 26.332 53.362 25.581 53.135 C 22.738 52.271 21.009 51.406 21.009 48.221 C 21.009 44.786 23.966 43.307 26.742 43.307 C 28.379 43.307 30.214 43.992 31.29 45.057 L 31.304 45.07 C 31.385 45.149 31.779 45.534 31.779 45.555 L 31.779 47.743 L 30.59 47.743 L 30.59 49.395 C 30.59 49.371 29.073 47.961 29.055 47.945 C 28.457 47.404 27.47 47.061 26.719 47.061 Z M 36.166 44.086 L 36.166 48.09 L 37.761 48.09 L 38.709 51.685 L 36.166 51.685 L 36.166 54.916 C 36.166 55.871 36.78 55.916 37.258 55.916 C 37.561 55.916 37.906 55.875 38.134 55.832 L 38.143 55.83 L 38.143 55.83 L 38.143 55.83 L 38.144 55.83 C 38.236 55.814 38.988 55.681 38.988 55.653 L 38.987 59.375 C 38.532 59.466 37.804 59.557 37.258 59.557 C 34.961 59.557 32.117 59.329 32.117 54.916 L 32.117 51.685 L 30.933 51.685 L 30.933 48.09 L 32.117 48.09 L 32.117 44.086 Z M 39.34 59.452 L 39.34 48.077 L 43.071 48.077 L 43.162 50.397 L 43.208 50.397 C 43.731 48.918 45.141 47.986 46.575 47.986 C 46.957 47.986 47.32 48.026 47.663 48.105 C 47.687 48.11 48.302 48.263 48.663 48.501 C 48.064 48.845 47.897 48.985 47.456 49.382 C 48.018 50.019 48.317 50.362 48.508 50.579 C 48.645 50.737 48.726 50.829 48.807 50.921 C 48.922 51.048 49.038 51.174 49.317 51.476 L 49.318 51.477 L 49.318 51.477 L 49.32 51.479 C 49.462 51.633 49.648 51.834 49.897 52.104 C 49.897 52.104 47.438 51.803 47.393 51.796 C 47.269 51.776 46.988 51.74 46.62 51.74 C 45.596 51.74 43.981 51.99 43.39 53.423 L 43.39 59.452 Z M 51.048 56.266 C 51.048 55.516 52.39 55.311 53.914 55.288 L 53.914 56.38 C 53.436 56.653 52.89 56.926 52.276 56.926 C 51.707 56.926 51.048 56.767 51.048 56.266 Z M 52.959 47.803 C 50.774 47.803 48.955 48.508 47.931 49.418 L 50.342 52.057 C 50.707 51.716 51.343 51.443 52.094 51.443 C 53.072 51.443 53.914 51.784 53.914 52.49 L 53.914 52.672 C 50.433 52.786 47.157 53.582 47.157 56.198 C 47.157 58.883 49.455 59.725 51.412 59.725 C 52.799 59.725 54.005 59.019 55.006 58.109 L 55.052 58.109 C 55.78 58.951 56.94 59.451 58.146 59.451 C 58.78 59.451 59.211 59.286 59.292 59.252 C 59.301 59.249 60.477 58.649 60.902 57.959 C 60.69 57.694 60.278 56.885 60.248 55.301 C 59.701 55.723 59.238 55.791 59.174 55.801 C 59.17 55.801 59.167 55.802 59.167 55.802 C 59.133 55.811 59.073 55.811 58.988 55.811 C 58.464 55.811 57.964 55.311 57.964 54.105 L 57.964 51.921 C 57.964 49.168 55.711 47.803 52.959 47.803 Z M 64.65 44.072 L 64.65 48.077 L 66.245 48.077 L 67.193 51.671 L 64.65 51.671 L 64.65 54.902 C 64.65 55.857 65.264 55.903 65.742 55.903 C 66.037 55.903 66.37 55.864 66.598 55.822 C 66.617 55.819 67.29 55.695 67.639 55.589 C 67.86 57.844 69.193 58.943 69.193 58.943 C 68.154 59.219 67.433 59.368 67.414 59.372 C 66.957 59.459 66.266 59.543 65.742 59.543 C 63.445 59.543 60.601 59.315 60.601 54.902 L 60.601 51.671 L 59.417 51.671 L 59.417 48.077 L 60.601 48.077 L 60.601 44.072 Z M 79.363 59.473 L 79.363 48.097 L 75.314 48.097 L 75.314 55.105 C 74.859 55.787 74.336 56.106 73.539 56.106 C 72.425 56.106 71.856 55.082 71.856 53.535 L 71.856 48.097 L 67.806 48.097 L 67.806 53.535 C 67.806 57.266 69.262 59.746 72.129 59.746 C 73.562 59.746 74.973 59.109 75.496 57.63 L 75.541 57.63 L 75.632 59.473 Z M 85.6 51.441 C 86.76 51.441 87.533 52.078 87.533 52.078 L 89.195 49.075 C 89.195 49.075 87.829 47.824 85.281 47.824 C 82.642 47.824 80.685 48.87 80.685 51.373 C 80.685 53.625 82.165 54.467 83.484 54.922 C 83.811 55.036 84.128 55.123 84.409 55.2 C 85.023 55.37 85.463 55.491 85.463 55.741 C 85.463 56.059 85.008 56.173 84.53 56.173 C 83.55 56.173 82.695 55.527 82.364 55.252 C 82.35 55.24 79.724 52.92 79.724 52.903 C 79.728 54.698 79.728 54.726 79.726 54.932 C 79.725 55.124 79.724 55.471 79.724 57.537 C 79.724 57.537 80.336 58.098 80.363 58.122 C 80.64 58.371 82.303 59.745 85.076 59.745 C 87.921 59.745 89.558 58.471 89.558 56.15 C 89.558 53.921 88.012 53.056 86.692 52.601 C 86.377 52.496 86.075 52.413 85.807 52.339 C 85.206 52.173 84.781 52.055 84.781 51.851 C 84.781 51.555 85.19 51.441 85.6 51.441 Z M 90.185 48.173 L 90.108 48.173 L 90.108 47.97 C 90.125 47.966 90.155 47.962 90.198 47.962 C 90.302 47.962 90.349 48.005 90.349 48.07 C 90.349 48.143 90.276 48.173 90.185 48.173 Z M 89.94 48.573 L 90.103 48.573 L 90.103 48.289 L 90.181 48.289 C 90.272 48.289 90.315 48.324 90.328 48.401 C 90.332 48.416 90.335 48.431 90.338 48.445 C 90.354 48.505 90.366 48.552 90.384 48.573 L 90.56 48.573 C 90.543 48.548 90.53 48.504 90.508 48.397 C 90.487 48.302 90.448 48.25 90.379 48.225 L 90.379 48.216 C 90.465 48.19 90.525 48.13 90.525 48.052 C 90.525 47.983 90.495 47.928 90.456 47.897 C 90.405 47.867 90.345 47.846 90.211 47.846 C 90.095 47.846 90.005 47.854 89.94 47.867 Z M 90.22 48.767 C 89.901 48.767 89.668 48.517 89.668 48.203 L 89.668 48.203 C 89.668 47.893 89.901 47.639 90.216 47.639 C 90.53 47.639 90.758 47.893 90.758 48.207 C 90.758 48.517 90.53 48.767 90.22 48.767 Z M 90.216 48.918 C 90.625 48.918 90.939 48.603 90.939 48.203 C 90.939 47.811 90.625 47.497 90.216 47.497 C 89.811 47.497 89.488 47.811 89.488 48.203 C 89.488 48.603 89.811 48.918 90.216 48.918 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:8814440054,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sjhkmz\",\"data-framer-name\":\"Bojangle\",layoutDependency:layoutDependency,layoutId:\"guctC0T5y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p1mdx0\",\"data-framer-name\":\"Bojangles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"Cjo_ZHLO2\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_483_18968)\">\\n<path d=\"M10.0997 56.3487C9.57485 56.5921 9.07475 56.8239 8.55944 57.0616C7.70566 55.1799 6.85758 53.3137 6 51.4262C6.2453 51.2775 6.48298 51.1287 6.72448 50.9877C9.36188 49.4383 12.0563 48.001 14.9105 46.9056C16.8101 46.1772 18.7725 45.7232 20.8128 45.6672C22.1876 45.6305 23.5282 45.7889 24.8003 46.3453C26.5744 47.1219 27.7001 48.4975 28.3409 50.3231C29.1357 52.5873 28.7649 54.722 27.683 56.7814C27.1277 57.8382 26.409 58.7713 25.5818 59.6213C25.4924 59.7141 25.3859 59.7894 25.2871 59.8725C25.2985 59.8937 25.308 59.915 25.3194 59.9362C25.6636 60.0039 26.0096 60.0618 26.3519 60.1372C27.6887 60.4366 28.9266 60.9563 30.0066 61.8334C30.1702 61.9647 30.2196 62.0942 30.2044 62.3009C30.0409 64.4009 30.1873 66.4757 30.7577 68.5081C31.1951 70.0652 31.8454 71.5161 32.8893 72.7621C32.9464 72.8297 32.9749 72.9572 32.9616 73.05C32.4767 76.3555 30.6779 78.7626 27.9758 80.5477C26.1675 81.7416 24.188 82.5588 22.1629 83.2755C21.4764 83.519 20.7862 83.7508 20.0731 83.9961C16.7474 74.7752 13.4292 65.5716 10.1016 56.3448L10.0997 56.3487ZM19.6529 66.2168C20.8394 70.0381 22.0184 73.8363 23.203 77.6479C24.2812 77.2325 25.2776 76.7438 26.0952 75.9556C27.1943 74.893 27.6697 73.5445 27.7419 72.0357C27.8009 70.7781 27.5898 69.5552 27.1296 68.3941C26.5116 66.8312 25.3707 65.8826 23.7259 65.5813C22.3074 65.3204 20.9915 65.73 19.6529 66.2168ZM17.9986 60.6839C18.82 60.396 19.5958 60.0753 20.2747 59.5441C21.9974 58.1956 22.6421 55.9681 21.8719 53.9589C21.5848 53.2113 21.0562 52.7496 20.2671 52.6124C19.7784 52.5274 19.284 52.5313 18.8257 52.7013C17.9092 53.0432 17.0117 53.4393 16.1027 53.8044C15.9278 53.8759 15.9088 53.9609 15.9639 54.1347C16.5116 55.8812 17.0497 57.6295 17.5916 59.3779C17.7247 59.8087 17.8616 60.2415 17.9986 60.682V60.6839Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M87.7114 73.7996C87.0535 74.3579 86.272 74.609 85.4467 74.7404C84.5606 74.8814 83.6878 74.8331 82.8417 74.5182C81.927 74.1782 81.3185 73.5078 80.9097 72.6269C80.3982 71.5238 80.1529 70.3531 80.0369 69.1495C79.8677 67.3992 79.9304 65.6508 80.1358 63.9082C80.3069 62.4477 80.5941 61.0143 81.3109 59.7102C81.8643 58.7056 82.6325 57.9676 83.7734 57.703C84.4827 57.5388 85.1938 57.6122 85.9031 57.703C86.7341 57.8092 87.5422 58.0159 88.3522 58.3791C88.3827 57.7455 88.4131 57.1408 88.4416 56.5226C89.8373 56.7583 91.2197 56.994 92.623 57.2316C92.5831 57.6547 92.5451 58.0584 92.509 58.4641C92.393 59.7469 92.2694 61.0278 92.1629 62.3106C92.0526 63.6474 91.9537 64.9862 91.8605 66.325C91.7845 67.4011 91.7293 68.481 91.6571 69.5571C91.5582 71.0427 91.4517 72.5264 91.3547 74.0121C91.2996 74.8834 91.2216 75.7489 91.003 76.597C90.4496 78.7298 89.0349 80.0763 87.0896 80.8626C85.171 81.6392 83.182 81.6817 81.1797 81.191C81.0923 81.1698 81.0086 81.135 80.9078 81.1002C81.155 80.001 81.3984 78.9133 81.6456 77.8102C82.0202 77.8739 82.3815 77.9435 82.7466 77.9937C83.5661 78.1038 84.3838 78.1096 85.1881 77.8855C86.5667 77.503 87.3292 76.5487 87.6011 75.1616C87.6867 74.7249 87.7114 74.2767 87.7647 73.8343C87.7476 73.8247 87.7285 73.8131 87.7114 73.8034V73.7996ZM83.9788 66.6863C84.0263 67.2639 84.0852 68.1797 84.186 69.0896C84.2507 69.673 84.399 70.2429 84.707 70.753C84.9752 71.1973 85.3574 71.4291 85.8822 71.3963C86.6808 71.3461 87.2817 70.9346 87.7837 70.3395C87.8236 70.2932 87.8369 70.214 87.8426 70.1463C87.8712 69.816 87.9016 69.4856 87.913 69.1553C87.9434 68.2685 87.9586 67.3818 87.9872 66.4951C88.0366 65.0075 88.0879 63.5199 88.145 62.0324C88.1507 61.8662 88.0993 61.787 87.9415 61.7349C87.3444 61.5339 86.7322 61.4296 86.1066 61.4412C85.1083 61.4605 84.5815 61.8836 84.3115 62.8554C84.2944 62.9152 84.2792 62.9751 84.2659 63.035C84.0092 64.1246 84.0377 65.2393 83.9788 66.6882V66.6863Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M45.2228 66.9819C45.1943 68.3709 45.0783 69.7426 44.6258 71.064C43.8594 73.305 42.2736 74.5047 39.988 74.8138C38.9992 74.9471 38.0218 74.951 37.0596 74.6303C35.7913 74.2091 34.8006 73.3958 33.9411 72.3854C32.804 71.0485 32.1708 69.4663 31.7829 67.774C31.3589 65.9271 31.2562 64.0512 31.4616 62.1657C31.6118 60.794 31.9712 59.488 32.7546 58.3347C33.7263 56.9051 35.084 56.1072 36.763 55.8792C38.0655 55.7034 39.3414 55.829 40.5508 56.3893C41.9884 57.0558 42.9867 58.1782 43.7016 59.5788C44.4736 61.0896 44.8806 62.7124 45.0365 64.3989C45.1163 65.2586 45.162 66.1203 45.2228 66.9819ZM35.7457 63.404C35.7666 63.4079 35.7856 63.4098 35.8065 63.4137C35.816 64.6675 35.9491 65.9058 36.3237 67.1075C36.6147 68.0406 36.9874 68.9312 37.6453 69.6672C37.9362 69.9937 38.2747 70.2545 38.7177 70.3202C39.2749 70.4033 39.7522 70.1019 40.0735 69.4721C40.3588 68.9157 40.4671 68.311 40.5299 67.6928C40.6231 66.7906 40.5793 65.8884 40.4748 64.992C40.3664 64.0551 40.1819 63.1355 39.7921 62.27C39.4746 61.5629 39.0619 60.9234 38.3584 60.5564C37.4932 60.1062 36.3599 60.114 36.01 61.5571C35.8636 62.1579 35.8274 62.7858 35.7419 63.4021L35.7457 63.404Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M77.719 74.6766C76.2853 74.5066 74.8857 74.3424 73.4577 74.1724C73.4957 73.788 73.5319 73.4228 73.5718 73.0577C73.7505 71.4175 73.9274 69.7773 74.1099 68.1372C74.2658 66.7346 74.4446 65.3359 74.5758 63.9314C74.6252 63.3905 74.6176 62.8341 74.553 62.297C74.4674 61.5938 74.0282 61.2963 73.336 61.3465C72.4252 61.4122 71.5866 61.7059 70.7823 62.127C70.6492 62.1966 70.5997 62.2874 70.594 62.4361C70.5598 63.5856 70.5065 64.7332 70.4818 65.8807C70.4419 67.801 70.4153 69.7213 70.3887 71.6436C70.3772 72.4917 70.3734 73.3417 70.3677 74.1898C70.3677 74.2806 70.3677 74.3714 70.3677 74.4738H66.3422C66.5229 68.7438 66.4982 63.0196 66.1064 57.2702C67.6619 57.1929 69.1983 57.1157 70.7347 57.0384V59.0263C71.2139 58.837 71.6912 58.6206 72.1875 58.4603C73.4197 58.0642 74.6842 57.9348 75.9677 58.0971C77.1523 58.2458 77.932 58.9336 78.337 60.0599C78.7192 61.1186 78.7534 62.2197 78.6736 63.3248C78.5614 64.909 78.4207 66.4912 78.2875 68.0734C78.1449 69.7561 77.9947 71.4368 77.8483 73.1195C77.8046 73.6257 77.7646 74.1318 77.719 74.6747V74.6766Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M54.5003 60.3806C54.39 59.2214 54.2874 58.0932 54.1752 56.965C54.158 56.7834 54.1885 56.6964 54.3862 56.6481C56.1337 56.2135 57.8983 55.916 59.7029 55.972C60.549 55.9971 61.3876 56.1014 62.1672 56.4627C63.4755 57.0693 64.1505 58.1531 64.3787 59.5615C64.5422 60.5776 64.43 61.5938 64.3882 62.61C64.3178 64.2753 64.2494 65.9387 64.1828 67.604C64.1087 69.476 64.0364 71.3499 63.9642 73.2219C63.9642 73.2606 63.9585 73.2973 63.9527 73.3726C63.8101 73.3726 63.6694 73.3687 63.5287 73.3726C62.5799 73.3977 61.631 73.417 60.6821 73.4595C60.4464 73.4692 60.3836 73.3861 60.3722 73.1659C60.3513 72.7293 60.3037 72.2927 60.2657 71.8194C60.1782 71.8715 60.1098 71.914 60.0432 71.9565C58.3452 73.0191 56.5806 73.1504 54.7951 72.2405C53.6865 71.6764 53.0304 70.695 52.7547 69.4798C52.3991 67.9092 52.498 66.3656 53.1902 64.8974C53.5648 64.1033 54.1733 63.5354 54.9738 63.1857C56.6928 62.4342 58.4878 61.9126 60.2961 61.4393C60.5072 61.3832 60.6593 61.3311 60.6232 61.0567C60.5909 60.8211 60.6194 60.5796 60.5928 60.3439C60.5433 59.8957 60.2448 59.658 59.8569 59.5189C59.3682 59.3451 58.8586 59.3316 58.349 59.3625C57.0522 59.4378 55.8238 59.7875 54.6429 60.3303C54.603 60.3497 54.5593 60.3613 54.5003 60.3825V60.3806ZM60.5072 64.3526C60.2999 64.4182 60.1326 64.4627 59.971 64.5226C59.1115 64.8413 58.2178 65.0963 57.4001 65.504C56.0957 66.155 55.7306 67.9942 56.5996 69.19C56.8753 69.5706 57.2423 69.7851 57.7158 69.7252C58.6932 69.6015 59.5032 69.1263 60.2144 68.454C60.3399 68.3342 60.376 68.1932 60.3779 68.0212C60.3855 67.4591 60.4102 66.8969 60.4311 66.3347C60.454 65.6894 60.4806 65.0442 60.5072 64.3545V64.3526Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M111.413 67.7083C108.709 68.1236 106.011 68.5371 103.295 68.9543C103.309 69.7097 103.483 70.4168 103.847 71.091C104.379 72.084 105.254 72.455 106.288 72.6018C107.49 72.7718 108.568 72.3951 109.62 71.8812C109.709 71.8387 109.796 71.7923 109.886 71.7479C109.892 71.744 109.901 71.7479 109.945 71.7479C110.357 72.6964 110.776 73.6585 111.204 74.6438C111.118 74.7056 111.044 74.7655 110.962 74.8177C109.26 75.8976 107.41 76.4694 105.402 76.3303C103.021 76.1642 101.314 74.9587 100.336 72.7216C99.8192 71.5392 99.5321 70.3028 99.4218 69.0181C99.2792 67.3489 99.3381 65.6894 99.6595 64.0454C99.8173 63.2321 100.068 62.4496 100.451 61.7155C101.325 60.0348 102.736 59.1229 104.546 58.8003C105.44 58.6419 106.34 58.5453 107.241 58.7172C108.585 58.9722 109.488 59.8049 110.105 61.0046C110.631 62.0285 110.92 63.1316 111.082 64.2618C111.232 65.3127 111.308 66.3753 111.417 67.4339C111.424 67.5093 111.417 67.5866 111.417 67.7141L111.413 67.7083ZM107.347 65.2779C107.304 64.9534 107.273 64.6636 107.226 64.3777C107.119 63.744 106.98 63.12 106.638 62.5675C106.429 62.2313 106.151 61.9802 105.758 61.8836C105.202 61.7484 104.759 61.9725 104.371 62.3434C103.769 62.921 103.459 63.659 103.295 64.4685C103.204 64.9225 103.175 65.3784 103.227 65.8846C104.6 65.6836 105.95 65.4847 107.351 65.2799L107.347 65.2779Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M38.8848 78.0575C40.8281 79.0717 42.7753 79.1277 44.6844 78.0517C46.0154 77.3002 46.778 76.0947 47.008 74.5549C47.221 73.135 47.2248 71.7093 47.1069 70.2854C46.9738 68.68 46.8445 67.0727 46.6258 65.4769C46.3539 63.5006 46.0021 61.5359 45.6618 59.5711C45.4868 58.5627 45.2586 57.5639 45.0552 56.5593C45.0438 56.4994 45.0362 56.4376 45.0229 56.3468C46.7266 56.1806 48.4209 56.0164 50.1322 55.8503C50.1988 56.6153 50.2653 57.3436 50.3262 58.072C50.4441 59.4861 50.5658 60.9003 50.6761 62.3144C50.7787 63.6281 50.8795 64.9437 50.9651 66.2594C51.0602 67.7373 51.1686 69.2152 51.2142 70.6931C51.275 72.6926 51.2807 74.7076 50.6399 76.6259C49.5789 79.8058 47.3313 81.6991 44.1348 82.3907C42.1839 82.8138 40.2348 82.6554 38.3485 81.9464C38.1508 81.871 37.9568 81.7803 37.7705 81.6779C37.721 81.6508 37.6678 81.5388 37.6849 81.4905C38.0823 80.3429 38.4873 79.1973 38.8924 78.0517C38.8943 78.0459 38.9019 78.0401 38.8867 78.0594L38.8848 78.0575Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M97.3811 76.9911C96.1603 76.8732 94.9548 76.7554 93.734 76.6356C93.734 76.1739 93.7283 75.7295 93.734 75.2852C93.7435 74.6148 93.7644 73.9425 93.7777 73.2722C93.81 71.5682 93.8386 69.8623 93.869 68.1584C93.8994 66.4699 93.9317 64.7795 93.9603 63.091C93.9926 61.1862 94.0211 59.2794 94.0515 57.3745C94.0686 56.341 94.0839 55.3074 94.0972 54.2738C94.1143 52.993 94.1276 51.7121 94.1447 50.4313C94.1485 50.1917 94.1637 49.9541 94.1618 49.7146C94.1618 49.5909 94.1998 49.5388 94.3311 49.531C95.9702 49.4441 97.6074 49.3514 99.2465 49.2606C99.2617 49.2606 99.275 49.2664 99.3244 49.2741C98.4535 58.4854 97.7291 67.7121 97.3811 76.993V76.9911Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M113.09 69.4296C113.624 69.6015 114.128 69.8063 114.649 69.9184C115.02 69.9976 115.425 70.0111 115.799 69.9531C116.849 69.7928 117.256 69.0761 117.199 68.0792C117.159 67.376 116.784 66.864 116.294 66.4274C115.507 65.7261 114.697 65.0481 113.9 64.3564C113.297 63.8329 112.744 63.261 112.371 62.5366C111.356 60.5699 111.804 57.5986 114.198 56.0995C115.202 55.4716 116.307 55.2205 117.477 55.2089C118.897 55.1954 120.241 55.5373 121.586 56.0531C121.278 57.3262 120.97 58.5916 120.66 59.8744C120.296 59.687 119.964 59.4842 119.606 59.3412C119.066 59.1248 118.519 58.9085 117.954 58.7694C117.478 58.6535 116.986 58.7172 116.537 58.9645C115.83 59.3567 115.624 60.112 116.043 60.8075C116.343 61.306 116.788 61.6614 117.25 61.986C118.423 62.8148 119.511 63.7344 120.393 64.8838C121.032 65.7146 121.529 66.6206 121.719 67.6677C122.156 70.0845 120.869 72.426 118.616 73.3301C117.416 73.8112 116.168 73.902 114.896 73.7667C114.153 73.6875 113.43 73.5194 112.734 73.2393C112.586 73.1794 112.544 73.1099 112.569 72.9495C112.74 71.8155 112.901 70.6776 113.065 69.5417C113.071 69.4972 113.082 69.4547 113.086 69.4277L113.09 69.4296Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M51.2259 54.4149C50.3493 53.9937 49.5335 53.6015 48.7178 53.2094C48.2025 52.9621 47.6853 52.7206 47.1757 52.4637C47.0349 52.3922 46.9323 52.3999 46.7992 52.4791C45.7343 53.1031 44.6657 53.7213 43.597 54.3395C43.5267 54.3801 43.4544 54.4149 43.3612 54.4651C43.5685 53.277 43.7662 52.1159 43.9754 50.9568C44.0039 50.8022 43.9697 50.7211 43.8461 50.6341C42.9809 50.0333 42.1195 49.4248 41.2581 48.8201C41.1916 48.7737 41.1269 48.7235 41.0186 48.6443C41.5053 48.5477 41.9427 48.4608 42.38 48.3738C43.0437 48.2444 43.7054 48.1092 44.3709 47.9874C44.5307 47.9585 44.5953 47.8793 44.6352 47.7286C44.9509 46.5462 45.2722 45.3659 45.5936 44.1855C45.6069 44.1352 45.6259 44.085 45.6544 44C45.9454 44.5139 46.2211 45.0007 46.4968 45.4876C46.841 46.0961 47.1871 46.7027 47.5255 47.3151C47.5959 47.4407 47.6643 47.4794 47.8108 47.46C48.9688 47.2978 50.1287 47.1471 51.2886 46.9944C51.3628 46.9848 51.4389 46.9848 51.5606 46.9771C51.5035 47.0717 51.4655 47.1413 51.4236 47.205C50.8133 48.1362 50.2067 49.0693 49.5906 49.9966C49.4993 50.1357 49.4898 50.2439 49.5545 50.3965C50.0812 51.6426 50.6003 52.8925 51.1194 54.1425C51.1479 54.212 51.1745 54.2816 51.2259 54.4168V54.4149Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M122 75.0437C122 75.745 121.467 76.2936 120.783 76.2956C120.083 76.2956 119.539 75.7469 119.541 75.0418C119.543 74.3521 120.091 73.7996 120.775 73.7996C121.462 73.7996 122 74.3463 122 75.0456V75.0437ZM121.777 75.0572C121.781 74.4912 121.323 74.0217 120.769 74.0217C120.229 74.0217 119.769 74.4892 119.764 75.0398C119.758 75.5982 120.224 76.0753 120.773 76.0734C121.317 76.0734 121.771 75.6117 121.775 75.0572H121.777Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M120.332 74.3521C120.537 74.3521 120.726 74.3347 120.912 74.356C121.211 74.3907 121.389 74.7752 121.205 75.0321C121.072 75.2157 121.104 75.3393 121.211 75.4938C121.252 75.5557 121.277 75.6291 121.311 75.6967C121.077 75.7856 121.041 75.772 120.929 75.5731C120.864 75.4571 120.792 75.3451 120.724 75.2292C120.697 75.2388 120.669 75.2466 120.642 75.2562C120.632 75.4108 120.625 75.5653 120.615 75.7334H120.334V74.3521H120.332ZM120.64 74.5685V75.0031C120.758 74.9548 120.855 74.9317 120.931 74.8776C120.96 74.8583 120.963 74.7365 120.937 74.7153C120.864 74.6573 120.769 74.6284 120.64 74.5685Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_483_18968\">\\n<rect width=\"116\" height=\"40\" fill=\"white\" transform=\"translate(6 44)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e5btsl\",\"data-framer-name\":\"Pavillion\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rGocteiA7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 71.295 44.889 C 73.09 44.973 73.326 42.508 71.623 42.109 L 71.15 42.109 C 69.538 42.445 69.623 44.811 71.295 44.889 Z M 79.726 55.875 L 79.016 55.875 C 72.291 55.216 73.042 45.264 79.817 45.711 C 85.937 46.114 86.114 55.391 79.726 55.875 Z M 79.062 48.211 C 75.712 48.599 76.238 53.662 79.636 53.392 C 83.026 53.123 82.581 47.803 79.062 48.211 Z M 42.937 55.875 C 38.817 55.497 37.433 50.106 39.978 47.218 C 41.604 45.374 44.694 45.103 46.367 47.013 C 46.387 46.903 46.392 46.777 46.397 46.65 C 46.406 46.417 46.416 46.176 46.516 46.009 L 48.704 46.009 L 48.793 46.098 L 48.793 55.521 L 46.516 55.521 C 46.421 55.387 46.416 55.209 46.41 55.028 L 46.41 55.028 C 46.405 54.871 46.4 54.712 46.338 54.575 C 45.839 55.105 45.232 55.52 44.521 55.715 C 44.325 55.768 43.953 55.857 43.765 55.875 C 43.543 55.896 43.16 55.896 42.937 55.875 Z M 43.337 48.21 C 40.376 48.611 40.526 53.142 43.5 53.393 C 47.256 53.708 47.219 47.683 43.337 48.21 Z M 94.689 55.52 L 94.689 49.967 L 94.69 49.967 L 94.628 49.824 C 94.769 46.769 92.371 44.883 89.473 46.144 L 88.362 46.895 L 88.302 46.009 L 85.995 46.009 L 85.995 55.519 L 88.479 55.519 L 88.479 49.818 C 88.479 49.61 88.804 48.937 88.954 48.757 C 89.6 47.981 91.219 47.937 91.818 48.789 C 92.005 49.056 92.206 49.737 92.206 50.055 L 92.206 55.52 Z M 54.648 55.875 L 50.094 46.009 L 52.874 46.009 L 54.678 50.322 L 56.541 46.009 L 59.321 46.009 L 54.766 55.875 Z M 62.337 42.109 C 63.898 42.531 63.791 44.811 62.132 44.889 C 60.356 44.971 60.114 42.507 61.805 42.109 Z M 11.857 44.709 L 3.31 55.757 L 6.711 55.757 L 11.916 49.082 L 16.055 54.399 C 19.652 58.26 25.598 53.681 22.438 49.205 C 20.949 47.098 19.085 44.734 17.443 42.732 C 17.428 42.713 17.408 42.687 17.385 42.657 L 17.385 42.657 C 17.291 42.532 17.148 42.344 17.062 42.345 L 14.506 45.684 L 16.174 47.839 L 17.033 46.719 L 17.208 46.808 C 17.644 47.411 18.108 47.995 18.572 48.578 L 18.572 48.578 L 18.572 48.578 L 18.572 48.578 L 18.572 48.578 L 18.572 48.578 L 18.572 48.578 C 19.001 49.117 19.429 49.656 19.835 50.21 C 19.899 50.297 19.964 50.382 20.028 50.465 C 20.475 51.047 20.862 51.551 20.473 52.371 C 20.075 53.21 18.911 53.443 18.212 52.835 L 12.003 44.799 Z M 31.463 51.385 L 31.463 55.52 L 28.861 55.52 L 28.861 42.759 L 33.859 42.759 C 34.173 42.759 35.099 43.072 35.407 43.222 C 38.555 44.754 38.705 49.077 35.644 50.804 C 35.297 51 34.349 51.385 33.977 51.385 L 31.464 51.385 Z M 31.463 48.844 L 33.622 48.844 C 33.663 48.844 34.121 48.685 34.197 48.651 C 35.471 48.077 35.658 46.366 34.416 45.629 C 34.322 45.574 33.864 45.358 33.799 45.358 L 31.463 45.358 L 31.463 48.844 Z M 65.472 42.464 L 67.956 42.464 L 67.956 55.52 L 65.472 55.52 Z M 63.283 46.009 L 60.799 46.009 L 60.799 55.521 L 63.283 55.521 Z M 70.144 55.52 L 72.628 55.52 L 72.628 46.097 L 72.54 46.009 L 70.144 46.009 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:12848825357,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hindo0\",\"data-framer-name\":\"Frame 427322501\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mscwBEpNh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 41.874 52.743 C 40.365 52.743 39.143 51.573 39.143 51.573 L 37.973 53.21 C 37.973 53.21 39.351 54.719 41.822 54.719 C 44.19 54.719 45.542 53.212 45.542 51.443 C 45.542 49.371 43.792 48.653 42.328 48.053 C 41.273 47.62 40.367 47.248 40.367 46.475 C 40.367 45.723 41.095 45.228 41.954 45.228 C 43.334 45.228 44.4 46.19 44.4 46.19 L 45.336 44.447 C 45.336 44.447 44.216 43.251 41.98 43.251 C 39.848 43.251 38.234 44.603 38.234 46.501 C 38.234 48.463 39.951 49.209 41.407 49.841 C 42.479 50.307 43.41 50.712 43.41 51.495 C 43.41 52.353 42.681 52.743 41.874 52.743 Z M 46.972 46.214 C 47.908 44.445 49.781 43.275 52.043 43.275 C 54.307 43.275 56.18 44.445 57.116 46.214 Z M 57.062 51.78 C 56.1 53.549 54.253 54.719 52.043 54.719 C 49.833 54.719 47.986 53.549 46.997 51.78 Z M 57.609 47.462 L 46.476 47.462 C 46.347 47.929 46.295 48.424 46.295 48.919 C 46.295 49.492 46.373 50.012 46.502 50.533 L 57.583 50.533 C 57.713 50.012 57.791 49.492 57.791 48.919 C 57.791 48.424 57.739 47.931 57.609 47.462 Z M 8.216 43.457 L 1.531 43.457 L 1.531 54.538 L 8.475 54.538 L 8.475 52.691 L 3.664 52.691 L 3.664 49.882 L 7.852 49.882 L 7.852 48.035 L 3.664 48.035 L 3.664 45.304 L 8.216 45.304 Z M 9.074 43.457 L 11.389 43.457 L 13.729 50.531 C 13.936 51.181 14.144 52.196 14.144 52.196 L 14.17 52.196 C 14.17 52.196 14.378 51.181 14.585 50.531 L 16.951 43.457 L 19.239 43.457 L 15.234 54.538 L 13.054 54.538 Z M 27.022 43.457 L 20.337 43.457 L 20.337 54.538 L 27.281 54.538 L 27.281 52.691 L 22.469 52.691 L 22.469 49.882 L 26.788 49.882 L 26.788 48.035 L 22.469 48.035 L 22.469 45.304 L 27.022 45.304 Z M 28.92 43.457 L 32.536 43.457 C 33.68 43.457 34.201 43.535 34.643 43.716 C 35.839 44.158 36.593 45.304 36.593 46.837 C 36.593 48.137 35.916 49.387 34.772 49.854 L 34.772 49.88 C 34.772 49.88 34.902 50.062 35.136 50.479 L 37.398 54.562 L 35.004 54.562 L 32.848 50.481 L 31.027 50.481 L 31.027 54.564 L 28.894 54.564 L 28.894 43.457 Z M 31.053 45.304 L 31.053 48.634 L 32.744 48.634 C 33.784 48.634 34.435 48.009 34.435 46.943 C 34.435 46.266 34.201 45.773 33.68 45.511 C 33.395 45.381 33.055 45.304 32.38 45.304 Z M 58.909 43.457 L 61.042 43.457 L 61.042 50.531 C 61.042 51.962 61.978 52.767 63.408 52.767 C 64.839 52.767 65.774 51.96 65.774 50.531 L 65.774 43.457 L 67.906 43.457 L 67.906 50.531 C 67.906 53.002 66.111 54.718 63.406 54.718 C 60.7 54.718 58.906 53.001 58.906 50.531 Z M 73.217 43.457 L 69.575 43.457 L 69.575 54.564 L 71.707 54.564 L 71.707 50.481 L 73.528 50.481 L 75.685 54.562 L 78.078 54.562 L 75.816 50.479 C 75.583 50.062 75.453 49.88 75.453 49.88 L 75.453 49.854 C 76.597 49.387 77.274 48.137 77.274 46.837 C 77.274 45.304 76.519 44.158 75.323 43.716 C 74.882 43.535 74.361 43.457 73.217 43.457 Z M 71.707 48.634 L 71.707 45.304 L 73.035 45.304 C 73.71 45.304 74.049 45.381 74.335 45.511 C 74.856 45.773 75.089 46.266 75.089 46.943 C 75.089 48.009 74.439 48.634 73.398 48.634 Z M 84.036 43.275 C 86.741 43.275 88.119 44.784 88.119 44.784 L 87.104 46.398 C 87.104 46.398 85.831 45.228 84.114 45.228 C 81.825 45.228 80.498 46.945 80.498 48.921 C 80.498 50.924 81.85 52.771 84.114 52.771 C 85.987 52.771 87.287 51.367 87.287 51.367 L 88.404 52.928 C 88.404 52.928 86.869 54.749 84.008 54.749 C 80.6 54.749 78.26 52.251 78.26 48.975 C 78.313 45.721 80.757 43.275 84.036 43.275 Z M 96.235 43.457 L 89.525 43.457 L 89.525 54.538 L 96.469 54.538 L 96.469 52.691 L 91.683 52.691 L 91.683 49.882 L 95.844 49.882 L 95.844 48.035 L 91.683 48.035 L 91.683 45.304 L 96.235 45.304 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:10095042934,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w6jbdg\",\"data-framer-name\":\"Frame 427322502\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"E1hSvrqth\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 84.711 36.146 C 84.711 35.572 84.559 35.391 83.895 35.27 L 83.843 35.258 C 83.339 35.147 83.17 35.109 83.17 34.847 C 83.17 34.571 83.346 34.521 83.86 34.376 L 83.861 34.376 C 83.909 34.363 83.961 34.348 84.016 34.333 C 85.159 33.951 85.811 33.669 86.239 33.483 C 86.287 33.463 86.331 33.444 86.373 33.426 C 86.476 33.378 86.56 33.337 86.631 33.302 L 86.631 33.302 C 86.833 33.203 86.934 33.154 87.068 33.154 C 87.189 33.154 87.25 33.275 87.25 33.697 L 87.25 42.312 C 87.25 42.494 87.31 42.584 87.431 42.584 C 87.552 42.584 87.673 42.494 87.794 42.403 C 87.849 42.353 87.908 42.299 87.969 42.242 L 87.969 42.242 C 88.652 41.607 89.75 40.588 91.331 40.588 C 93.236 40.588 94.746 41.828 94.836 44.216 L 94.836 52.498 C 94.836 53.374 95.169 53.707 95.774 53.797 C 96.288 53.888 96.469 53.978 96.469 54.221 C 96.469 54.493 96.257 54.584 96.016 54.584 C 95.978 54.584 95.901 54.576 95.784 54.565 C 95.427 54.532 94.699 54.463 93.628 54.463 C 92.527 54.463 92.026 54.52 91.712 54.556 C 91.569 54.572 91.465 54.584 91.361 54.584 C 90.998 54.584 90.817 54.493 90.817 54.19 C 90.817 53.948 90.998 53.888 91.3 53.827 C 91.995 53.677 92.297 53.465 92.297 52.8 L 92.297 44.549 C 92.297 43.824 92.115 43.249 91.782 42.857 C 91.39 42.373 90.816 42.131 90.06 42.131 C 89.365 42.131 88.639 42.433 88.095 42.887 C 87.581 43.34 87.249 43.945 87.249 44.61 L 87.249 52.65 C 87.249 53.315 87.581 53.648 88.427 53.829 C 88.881 53.919 88.972 54.011 88.972 54.222 C 88.972 54.494 88.76 54.585 88.519 54.585 C 88.456 54.585 88.391 54.577 88.294 54.565 C 88.008 54.531 87.444 54.464 85.889 54.464 C 84.866 54.464 84.394 54.515 84.063 54.551 C 83.886 54.57 83.75 54.585 83.592 54.585 C 83.35 54.585 83.138 54.464 83.138 54.192 C 83.138 53.95 83.349 53.799 83.621 53.739 C 84.528 53.648 84.71 53.345 84.71 52.257 Z M 72.832 36.146 C 72.832 35.572 72.681 35.391 72.015 35.27 L 72 35.267 C 71.468 35.149 71.32 35.116 71.32 34.847 C 71.32 34.605 71.441 34.514 71.865 34.393 C 73.074 34 73.89 33.698 74.433 33.456 C 74.503 33.422 74.566 33.39 74.622 33.362 L 74.622 33.362 C 74.907 33.218 75.033 33.154 75.159 33.154 C 75.341 33.154 75.37 33.335 75.37 33.759 L 75.37 52.681 C 75.37 53.419 75.659 53.493 76.545 53.722 L 76.61 53.739 L 76.647 53.749 C 76.963 53.834 77.214 53.901 77.214 54.192 C 77.214 54.434 77.003 54.585 76.761 54.585 C 76.676 54.585 76.589 54.576 76.463 54.562 C 76.141 54.527 75.567 54.464 74.131 54.464 C 72.838 54.464 72.288 54.524 71.96 54.559 C 71.821 54.574 71.722 54.585 71.622 54.585 C 71.411 54.585 71.139 54.494 71.139 54.192 C 71.139 53.95 71.411 53.799 71.653 53.739 C 72.681 53.587 72.832 53.285 72.832 52.499 Z M 40.82 44.821 C 40.61 44.821 40.548 44.942 40.548 45.214 L 40.548 52.438 C 40.548 53.254 40.85 53.526 41.335 53.617 C 41.389 53.632 41.443 53.647 41.496 53.661 C 41.859 53.758 42.181 53.844 42.181 54.161 C 42.181 54.433 42.06 54.584 41.577 54.584 C 41.388 54.584 41.224 54.568 41.016 54.547 C 40.656 54.511 40.165 54.463 39.188 54.463 C 38.173 54.463 37.626 54.51 37.212 54.545 C 36.96 54.566 36.757 54.584 36.528 54.584 C 36.195 54.584 36.014 54.463 36.014 54.07 C 36.014 53.888 36.165 53.707 36.498 53.647 C 37.615 53.436 37.737 53.163 37.737 52.317 L 37.737 37.355 C 37.737 36.569 37.485 36.456 37.169 36.314 L 37.132 36.297 C 36.877 36.222 36.681 36.181 36.532 36.151 C 36.204 36.084 36.104 36.063 36.104 35.814 C 36.104 35.572 36.225 35.421 36.74 35.421 C 36.962 35.421 37.287 35.444 37.656 35.47 C 38.137 35.503 38.691 35.542 39.188 35.542 C 39.672 35.542 40.148 35.505 40.573 35.472 C 40.917 35.446 41.228 35.421 41.485 35.421 C 42.029 35.421 42.15 35.542 42.15 35.844 C 42.15 36.216 41.917 36.261 41.472 36.348 C 41.41 36.361 41.344 36.374 41.273 36.388 C 40.881 36.448 40.548 36.66 40.548 37.234 L 40.548 43.491 C 40.548 43.763 40.609 43.854 40.85 43.854 L 46.231 43.854 C 46.473 43.854 46.503 43.764 46.503 43.431 L 46.503 37.446 C 46.503 36.659 46.231 36.448 45.747 36.297 L 45.636 36.279 C 45.13 36.201 44.84 36.156 44.84 35.873 C 44.84 35.541 45.112 35.421 45.535 35.421 C 45.788 35.421 46.045 35.442 46.345 35.466 C 46.764 35.5 47.266 35.541 47.953 35.541 C 48.932 35.541 49.466 35.494 49.868 35.459 C 50.111 35.438 50.306 35.421 50.522 35.421 C 50.885 35.421 51.036 35.541 51.036 35.783 C 51.036 36.146 50.613 36.297 49.948 36.388 C 49.555 36.448 49.283 36.69 49.283 37.052 L 49.283 52.407 C 49.283 53.103 49.494 53.465 49.827 53.616 C 50.021 53.713 50.22 53.768 50.394 53.816 C 50.708 53.903 50.945 53.968 50.945 54.221 C 50.945 54.432 50.854 54.584 50.371 54.584 C 50.168 54.584 49.927 54.565 49.636 54.542 C 49.19 54.507 48.624 54.463 47.893 54.463 C 47.108 54.463 46.646 54.509 46.294 54.544 L 46.294 54.544 C 46.076 54.566 45.901 54.584 45.716 54.584 C 45.052 54.584 44.9 54.463 44.9 54.1 C 44.9 53.858 45.081 53.768 45.746 53.617 C 46.351 53.496 46.502 53.195 46.502 52.408 L 46.502 45.184 C 46.502 44.942 46.441 44.821 46.23 44.821 Z M 53.577 47.088 C 53.033 47.088 52.821 47.3 52.821 47.783 C 52.821 50.896 54.151 53.315 56.236 53.315 C 57.627 53.315 58.443 52.62 58.867 51.592 C 58.932 51.443 58.985 51.306 59.031 51.186 C 59.155 50.863 59.234 50.655 59.41 50.655 C 59.592 50.655 59.713 50.745 59.713 51.078 C 59.713 51.532 59.561 52.075 59.289 52.589 C 58.685 53.889 57.294 54.857 55.572 54.857 C 52.156 54.857 50.1 51.955 50.1 47.935 C 50.1 42.947 52.639 40.408 55.541 40.408 C 57.959 40.408 59.712 42.222 59.712 45.275 C 59.712 46.967 59.682 47.088 58.835 47.088 Z M 52.882 45.425 C 52.882 46 52.973 46.151 54.031 46.151 C 54.605 46.151 55.088 46.091 55.512 46.03 C 56.419 45.909 57.023 45.667 57.174 45.425 C 57.416 45.183 57.507 44.851 57.507 44.156 C 57.507 42.372 56.691 41.285 55.512 41.285 C 53.97 41.285 52.882 43.28 52.882 45.396 Z M 65.789 41.255 C 66.575 41.255 66.968 41.707 66.968 43.128 L 66.968 43.128 L 66.968 43.128 L 66.968 44.972 C 66.968 45.637 66.727 45.94 65.941 46.423 C 65.593 46.684 65.135 46.977 64.522 47.368 L 64.522 47.368 L 64.52 47.369 C 64.283 47.521 64.021 47.688 63.734 47.873 C 61.195 49.536 60.38 50.594 60.38 52.105 C 60.38 53.889 61.407 54.856 62.797 54.856 C 64.006 54.856 64.913 54.372 65.578 53.829 C 65.883 53.599 66.141 53.364 66.355 53.169 C 66.648 52.902 66.859 52.71 66.998 52.71 C 67.149 52.71 67.24 52.891 67.331 53.133 L 67.343 53.169 C 67.556 53.778 67.901 54.766 69.175 54.766 C 71.018 54.766 71.865 52.891 71.865 52.226 C 71.865 51.863 71.804 51.712 71.622 51.712 C 71.463 51.712 71.389 51.885 71.298 52.1 L 71.297 52.1 C 71.268 52.17 71.237 52.243 71.2 52.317 C 71.079 52.619 70.837 52.891 70.293 52.891 C 69.779 52.891 69.507 52.559 69.507 51.803 L 69.507 42.735 C 69.507 41.919 69.325 41.314 68.842 40.952 C 68.388 40.559 67.663 40.407 66.514 40.407 C 62.827 40.407 60.258 43.188 60.258 44.972 C 60.258 45.577 60.5 45.788 61.104 45.788 C 61.558 45.788 61.951 45.637 62.313 45.365 C 62.736 45.032 63.1 44.518 63.31 43.854 C 63.734 42.372 64.399 41.255 65.789 41.255 Z M 64.459 53.314 C 63.613 53.314 63.039 52.74 63.039 51.622 L 63.039 51.592 C 63.039 50.534 63.552 49.597 64.369 48.751 C 64.823 48.236 65.427 47.723 66.062 47.3 C 66.455 46.998 66.605 46.968 66.757 46.968 C 66.908 46.968 66.968 47.027 66.968 47.36 L 66.968 50.715 C 66.968 51.471 66.757 51.864 66.212 52.408 C 65.638 52.951 65.094 53.314 64.459 53.314 Z M 81.295 53.225 C 80.721 53.225 80.358 52.982 80.358 51.864 L 80.358 42.554 C 80.358 42.07 80.479 41.949 80.842 41.949 L 82.262 41.949 C 82.867 41.949 82.988 41.768 82.988 41.314 C 82.988 40.891 82.837 40.801 82.323 40.801 L 80.963 40.801 C 80.509 40.801 80.358 40.619 80.358 40.136 L 80.358 37.203 C 80.358 36.599 80.237 36.539 80.055 36.539 C 79.876 36.539 79.806 36.669 79.604 37.04 C 79.568 37.106 79.527 37.181 79.481 37.264 C 78.424 39.078 77.729 39.894 76.881 40.649 C 76.489 41.043 76.308 41.255 76.308 41.436 C 76.308 41.768 76.518 41.798 76.791 41.828 C 77.003 41.828 77.304 41.828 77.486 41.858 C 77.667 41.919 77.819 42.04 77.819 42.312 L 77.819 52.015 C 77.819 52.982 78.03 53.708 78.483 54.161 C 78.907 54.614 79.542 54.826 80.358 54.826 C 82.776 54.826 83.38 52.317 83.38 51.924 C 83.38 51.713 83.259 51.622 83.077 51.622 C 82.863 51.622 82.723 51.868 82.554 52.165 C 82.51 52.244 82.463 52.326 82.413 52.408 C 82.171 52.801 81.838 53.225 81.295 53.225 Z M 3.111 60.486 L 2.105 60.486 L 2.105 63.218 C 2.105 64.281 2.712 64.846 3.677 64.846 C 4.641 64.846 5.248 64.281 5.248 63.218 L 5.248 60.486 L 4.242 60.486 L 4.242 63.378 C 4.242 63.808 4.082 64.072 3.676 64.072 C 3.27 64.072 3.111 63.808 3.111 63.378 Z M 5.567 60.486 L 6.746 60.486 L 7.993 63.458 L 8.005 63.458 L 8.005 60.486 L 8.889 60.486 L 8.889 64.772 L 7.698 64.772 L 6.464 61.671 L 6.451 61.671 L 6.451 64.772 L 5.567 64.772 Z M 9.251 60.486 L 10.258 60.486 L 10.258 64.772 L 9.251 64.772 Z M 10.405 60.486 L 11.486 60.486 L 12.242 63.612 L 12.253 63.612 L 13.028 60.486 L 14.059 60.486 L 12.763 64.772 L 11.683 64.772 Z M 16.68 60.486 L 14.206 60.486 L 14.206 64.772 L 16.754 64.772 L 16.754 64.022 L 15.176 64.022 L 15.176 62.942 L 16.607 62.942 L 16.607 62.192 L 15.176 62.192 L 15.176 61.235 L 16.68 61.235 Z M 16.963 60.486 L 18.535 60.486 C 19.241 60.486 19.843 60.799 19.843 61.591 C 19.843 61.769 19.818 62.475 18.99 62.641 L 18.99 62.653 C 19.302 62.69 19.426 62.863 19.586 63.372 L 20.027 64.771 L 18.971 64.771 L 18.64 63.624 C 18.474 63.04 18.339 63.04 17.971 63.04 L 17.971 64.771 L 16.963 64.771 Z M 17.933 62.316 L 18.247 62.316 C 18.633 62.316 18.837 62.058 18.837 61.751 C 18.837 61.572 18.78 61.21 18.241 61.21 L 17.933 61.21 Z M 21.661 61.137 C 21.931 61.137 22.268 61.234 22.508 61.357 L 22.551 60.559 C 22.503 60.549 22.457 60.538 22.413 60.528 C 22.116 60.462 21.886 60.411 21.544 60.411 C 20.108 60.411 20.058 61.505 20.058 61.634 C 20.058 62.514 20.618 62.753 21.093 62.956 C 21.443 63.105 21.746 63.235 21.746 63.586 C 21.746 63.937 21.44 64.096 21.121 64.096 C 20.817 64.096 20.586 64 20.349 63.901 C 20.294 63.878 20.238 63.855 20.181 63.832 L 20.126 64.667 C 20.31 64.723 20.758 64.845 21.28 64.845 C 22.133 64.845 22.778 64.354 22.778 63.543 C 22.778 62.655 22.204 62.408 21.726 62.202 C 21.383 62.055 21.09 61.928 21.09 61.603 C 21.09 61.284 21.335 61.137 21.661 61.137 Z M 24.048 60.486 L 23.041 60.486 L 23.041 64.772 L 24.048 64.772 Z M 24.246 61.259 L 25.179 61.259 L 25.179 64.771 L 26.185 64.771 L 26.185 61.259 L 27.119 61.259 L 27.119 60.887 L 28.224 63.132 L 28.224 64.772 L 29.231 64.772 L 29.231 63.151 L 30.533 60.486 L 29.403 60.486 L 28.765 62.144 L 28.077 60.486 L 27.119 60.486 L 27.119 60.486 L 24.246 60.486 Z M 35.205 62.629 C 35.205 61.37 34.616 60.412 33.381 60.412 C 32.147 60.412 31.564 61.37 31.564 62.629 C 31.564 63.888 32.147 64.845 33.381 64.845 C 34.615 64.845 35.205 63.888 35.205 62.629 Z M 34.173 62.629 C 34.173 63.451 33.964 64.121 33.381 64.121 C 32.799 64.121 32.595 63.452 32.595 62.629 C 32.595 61.806 32.798 61.137 33.381 61.137 C 33.964 61.137 34.173 61.806 34.173 62.629 Z M 35.463 60.486 L 37.84 60.486 L 37.84 61.235 L 36.433 61.235 L 36.433 62.23 L 37.784 62.23 L 37.784 62.979 L 36.433 62.979 L 36.433 64.772 L 35.463 64.772 Z M 42.887 61.382 L 42.899 61.382 L 42.899 64.772 L 43.82 64.772 L 43.82 60.486 L 42.371 60.486 L 41.622 63.243 L 41.609 63.243 L 40.915 60.486 L 39.399 60.486 L 39.399 64.772 L 40.32 64.772 L 40.32 61.382 L 40.332 61.382 L 41.259 64.772 L 41.923 64.772 Z M 45.331 60.486 L 44.323 60.486 L 44.323 64.772 L 45.331 64.772 Z M 46.73 63.814 L 48.075 63.814 L 48.339 64.771 L 49.371 64.771 L 47.995 60.486 L 46.89 60.486 L 45.465 64.771 L 46.435 64.771 Z M 47.423 61.309 L 47.436 61.309 L 47.877 63.089 L 46.913 63.089 Z M 53.005 61.382 L 52.993 61.382 L 52.029 64.772 L 51.366 64.772 L 50.439 61.382 L 50.426 61.382 L 50.426 64.772 L 49.505 64.772 L 49.505 60.486 L 51.022 60.486 L 51.716 63.243 L 51.729 63.243 L 52.478 60.486 L 53.926 60.486 L 53.926 64.772 L 53.005 64.772 Z M 54.43 60.486 L 55.437 60.486 L 55.437 64.772 L 54.43 64.772 Z M 59.527 62.991 L 58.483 62.991 L 58.483 64.772 L 57.475 64.772 L 57.475 60.486 L 58.483 60.486 L 58.483 62.193 L 59.527 62.193 L 59.527 60.486 L 60.533 60.486 L 60.533 64.772 L 59.527 64.772 Z M 63.388 60.486 L 60.914 60.486 L 60.914 64.772 L 63.462 64.772 L 63.462 64.771 L 64.395 64.771 L 64.69 63.814 L 66.036 63.814 L 66.299 64.771 L 67.331 64.771 L 65.955 60.486 L 64.85 60.486 L 63.462 64.662 L 63.462 64.022 L 61.884 64.022 L 61.884 62.942 L 63.315 62.942 L 63.315 62.192 L 61.884 62.192 L 61.884 61.235 L 63.388 61.235 Z M 65.396 61.309 L 65.384 61.309 L 64.874 63.089 L 65.838 63.089 Z M 68.472 60.486 L 67.465 60.486 L 67.465 64.772 L 69.891 64.772 L 69.891 63.998 L 68.472 63.998 Z M 70.37 61.259 L 69.436 61.259 L 69.436 60.486 L 72.31 60.486 L 72.31 61.259 L 71.376 61.259 L 71.376 64.771 L 70.37 64.771 Z M 73.513 62.991 L 74.557 62.991 L 74.557 64.772 L 75.563 64.772 L 75.563 60.486 L 74.557 60.486 L 74.557 62.193 L 73.513 62.193 L 73.513 60.486 L 72.506 60.486 L 72.506 64.772 L 73.513 64.772 Z M 79.691 61.357 C 79.451 61.234 79.114 61.137 78.843 61.137 C 78.517 61.137 78.273 61.284 78.273 61.603 C 78.273 61.928 78.567 62.055 78.909 62.202 C 79.388 62.408 79.961 62.655 79.961 63.543 C 79.961 64.354 79.316 64.845 78.462 64.845 C 77.941 64.845 77.493 64.723 77.309 64.667 L 77.364 63.832 C 77.421 63.854 77.476 63.877 77.53 63.9 L 77.531 63.9 L 77.531 63.9 C 77.768 63.999 77.999 64.096 78.303 64.096 C 78.623 64.096 78.93 63.937 78.93 63.586 C 78.93 63.235 78.626 63.105 78.276 62.956 C 77.801 62.753 77.241 62.514 77.241 61.634 C 77.241 61.505 77.29 60.411 78.727 60.411 C 79.069 60.411 79.3 60.462 79.596 60.528 C 79.64 60.538 79.686 60.549 79.734 60.559 Z M 79.832 60.486 L 81.133 63.132 L 81.133 64.772 L 82.14 64.772 L 82.14 63.151 L 83.442 60.486 L 82.312 60.486 L 81.673 62.144 L 80.986 60.486 Z M 85.782 61.357 C 85.543 61.234 85.206 61.137 84.934 61.137 C 84.609 61.137 84.363 61.284 84.363 61.603 C 84.363 61.928 84.657 62.055 85 62.202 C 85.479 62.408 86.052 62.655 86.052 63.543 C 86.052 64.354 85.408 64.845 84.553 64.845 C 84.032 64.845 83.584 64.723 83.4 64.667 L 83.455 63.832 C 83.511 63.854 83.566 63.877 83.622 63.9 C 83.859 63.999 84.091 64.096 84.395 64.096 C 84.714 64.096 85.02 63.937 85.02 63.586 C 85.02 63.235 84.717 63.105 84.367 62.956 C 83.892 62.753 83.332 62.514 83.332 61.634 C 83.332 61.505 83.381 60.411 84.818 60.411 C 85.16 60.411 85.39 60.462 85.687 60.528 C 85.732 60.538 85.778 60.549 85.825 60.559 Z M 86.009 61.259 L 86.942 61.259 L 86.942 64.771 L 87.95 64.771 L 87.95 61.259 L 88.883 61.259 L 88.883 60.486 L 86.009 60.486 Z M 89.079 60.486 L 91.553 60.486 L 91.553 61.235 L 90.049 61.235 L 90.049 62.192 L 91.48 62.192 L 91.48 62.942 L 90.049 62.942 L 90.049 64.022 L 91.628 64.022 L 91.628 64.772 L 89.079 64.772 Z M 95.446 61.382 L 95.459 61.382 L 95.459 64.772 L 96.379 64.772 L 96.379 60.486 L 94.93 60.486 L 94.181 63.243 L 94.169 63.243 L 93.476 60.486 L 91.958 60.486 L 91.958 64.772 L 92.879 64.772 L 92.879 61.382 L 92.892 61.382 L 93.819 64.772 L 94.482 64.772 Z M 96.452 57.28 L 2.176 57.28 L 2.176 57.818 L 96.452 57.818 Z M 25.767 48.75 L 25.741 34.892 L 35.118 34.892 L 35.11 50.83 C 35.11 55.239 22.75 55.583 18.961 55.583 L 18.387 55.583 L 18.263 55.583 L 17.689 55.583 C 13.9 55.583 1.539 55.239 1.539 50.83 L 1.531 34.892 L 10.909 34.892 L 10.883 48.75 C 10.883 49.638 10.883 52.339 17.686 52.35 L 18.325 52.352 L 18.964 52.35 C 25.767 52.339 25.767 49.638 25.767 48.75 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:10451112382,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ej0n9y\",\"data-framer-name\":\"Frame 427322504\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TZ4Rj3t4B\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 98\"><path d=\"M 14.1 47.155 C 14.1 47.155 14.1 47.155 11.791 58.575 C 11.791 58.575 11.791 58.575 6.508 58.575 C 6.508 58.575 6.508 58.575 7.528 53.577 C 8.335 49.552 10.913 47.3 14.1 47.155 Z M 11.012 44.132 C 12.4 44.132 13.519 42.999 13.519 41.59 C 13.519 40.195 12.4 39.047 11.012 39.047 C 9.624 39.047 8.505 40.18 8.505 41.59 C 8.505 42.985 9.624 44.132 11.012 44.132 Z\" fill=\"rgb(19,19,22)\"></path><path d=\"M 22.244 50.976 C 22.244 50.976 22.244 50.976 26.323 58.575 C 26.323 58.575 26.323 58.575 20.077 58.575 C 20.077 58.575 20.077 58.575 14.1 47.169 C 14.1 47.169 14.1 47.169 18.59 47.169 C 19.468 47.169 20.36 46.472 20.488 45.556 C 20.686 44.641 20.148 43.871 19.27 43.871 C 19.27 43.871 19.27 43.871 14.85 43.871 C 14.85 43.871 14.85 43.871 15.799 39.149 C 15.799 39.149 15.799 39.149 21.635 39.149 C 25.374 39.149 27.074 42.389 26.451 45.484 C 25.785 48.651 23.335 50.337 22.244 50.976 Z M 87.696 39.149 C 82.668 39.149 82.668 39.149 82.668 39.149 C 80.076 51.862 80.076 51.862 80.076 51.862 C 79.325 55.509 81.846 58.953 87.895 58.953 L 88.036 58.953 C 89.056 54.042 89.056 54.042 89.056 54.042 C 87.158 54.318 84.708 53.548 85.118 51.441 C 85.798 48.288 85.798 48.288 85.798 48.288 C 90.217 48.288 90.217 48.288 90.217 48.288 C 91.096 43.856 91.096 43.856 91.096 43.856 C 86.676 43.856 86.676 43.856 86.676 43.856 Z M 53.278 48.273 C 51.238 48.273 49.878 49.392 49.482 51.296 C 49.071 53.257 49.892 54.594 51.989 54.594 C 54.085 54.594 55.515 53.33 55.926 51.441 C 56.337 49.61 55.388 48.273 53.278 48.273 Z M 60.869 51.79 C 59.85 56.643 56.394 58.953 51.096 58.953 C 46.422 58.953 43.575 55.8 44.453 51.441 C 44.453 51.441 44.453 51.441 46.96 39.149 C 46.96 39.149 46.96 39.149 51.974 39.149 C 51.974 39.149 51.974 39.149 50.827 44.481 C 51.436 44.19 53.136 43.914 54.156 43.914 C 58.504 43.929 61.818 47.082 60.869 51.79 Z M 71.138 48.303 C 69.028 48.303 67.682 49.494 67.272 51.456 C 66.861 53.345 67.753 54.609 69.849 54.609 C 71.96 54.609 73.376 53.345 73.787 51.456 C 74.127 49.639 73.249 48.303 71.138 48.303 Z M 78.816 51.456 C 77.866 56.076 74.538 58.953 68.901 58.953 C 64.283 58.953 61.294 56.076 62.243 51.456 C 63.192 46.835 67.342 43.958 72.031 43.958 C 76.776 43.973 79.708 46.835 78.816 51.456 Z M 35.445 48.303 C 33.335 48.303 31.918 49.494 31.578 51.456 C 31.167 53.345 32.06 54.609 34.156 54.609 C 36.267 54.609 37.683 53.345 38.023 51.456 C 38.434 49.639 37.47 48.303 35.445 48.303 Z M 43.051 51.456 C 42.102 56.076 38.844 58.953 33.136 58.953 C 28.519 58.953 25.601 56.076 26.55 51.456 C 27.499 46.835 31.578 43.958 36.337 43.958 C 41.082 43.973 44 46.835 43.051 51.456 Z\" fill=\"rgb(19,19,22)\"></path><path d=\"M 91.492 40.66 C 91.492 40.108 91.039 39.657 90.486 39.657 C 89.934 39.657 89.481 40.108 89.481 40.66 C 89.481 41.212 89.934 41.662 90.486 41.662 C 91.039 41.662 91.492 41.226 91.492 40.66 Z\" fill=\"rgb(19,19,22)\"></path><path d=\"M 90.061 41.299 L 90.061 40.093 L 90.586 40.093 C 90.684 40.093 90.769 40.108 90.826 40.122 C 90.883 40.137 90.926 40.18 90.954 40.238 C 90.982 40.296 90.997 40.355 90.997 40.413 C 90.997 40.5 90.968 40.573 90.911 40.631 C 90.854 40.689 90.769 40.732 90.656 40.747 C 90.699 40.761 90.727 40.791 90.756 40.805 C 90.798 40.849 90.841 40.907 90.884 40.965 L 91.081 41.284 L 90.897 41.284 L 90.742 41.038 C 90.699 40.965 90.656 40.907 90.628 40.878 C 90.599 40.849 90.571 40.82 90.543 40.791 C 90.514 40.776 90.501 40.761 90.472 40.761 C 90.458 40.761 90.43 40.761 90.387 40.761 L 90.203 40.761 L 90.203 41.299 Z M 90.217 40.616 L 90.543 40.616 C 90.614 40.616 90.671 40.602 90.714 40.587 C 90.756 40.573 90.784 40.543 90.798 40.514 C 90.812 40.485 90.826 40.442 90.826 40.413 C 90.826 40.355 90.812 40.311 90.769 40.267 C 90.727 40.224 90.671 40.209 90.586 40.209 L 90.217 40.209 Z\" fill=\"rgb(19,19,22)\"></path></svg>',svgContentId:10709568371,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1csrvqq\",layoutDependency:layoutDependency,layoutId:\"W8chm4J9m\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a42vkj\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"NbfVMS7xS\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.355 38.7169H103.257L99.7734 46.0917L101.352 47.8453C101.39 49.283 101.502 53.7211 101.533 54.9068C101.292 55.2965 100.111 57.216 100.111 57.216L104.798 64.15H107.725L110.92 65.0291V76.4201L109.505 76.0606C109.438 75.8809 107.053 69.5183 107.053 69.5183L102.158 79.6359L102.259 80.4521C102.453 82.0034 103.439 83.3725 103.737 83.7555L104.285 84.4585L119.056 88.8458L122.153 81.5436C122.153 81.5436 121.377 80.1443 121.268 79.9498C121.259 78.7225 121.174 67.0162 121.165 65.6727L122.326 63.7368L117.21 55.5893L114.735 56.3317L111.677 55.6523V54.2499L121.044 55.1869V48.2938C121.179 48.1239 122.351 46.6601 122.351 46.6601L119.249 38.7154H117.353V38.7148L117.355 38.7169Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M99.0763 38.717H87.051L84.6543 46.973L86.5881 47.5004V64.7845L85.453 66.0829L87.3935 72.3345L101.257 76.1151L104.66 68.0961L98.553 63.5818L96.7134 65.0533V60.4689L100.94 60.9256V52.3106L96.5993 51.7398V49.3241L97.25 50.426L99.4531 49.7041L104.696 47.7974L100.931 38.7176H99.0763V38.717Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M84.6807 38.717H71.2217L67.2153 46.479L73.7633 49.0989C73.7633 49.0989 73.9384 48.9729 74.0203 48.9125V62.4872C73.9451 62.5727 72.7997 63.8598 72.7997 63.8598L74.4729 69.5927L83.5886 71.3294L85.1968 64.5981L84.0309 63.2874V49.3062L84.4651 49.6319L90.5231 46.7816L86.3754 38.7176H84.6802L84.6807 38.717Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.574 38.717H57.9301L56.3372 45.3541L57.2399 46.1277L54.6185 62.0514L53.4844 62.7314L54.9441 70.3208L64.8303 69.2834C64.8303 69.2834 64.841 68.1652 64.841 68.0193C65.0059 68.538 64.8303 69.2834 64.8303 69.2834L73.5993 69.3039L75.0242 63.3622C75.0242 63.3622 74.0105 62.0601 73.8307 61.8282L71.3286 46.3167L72.6977 45.0843L70.5749 38.7176H68.5751L68.574 38.717ZM65.371 44.2717L67.0857 54.9049L61.3953 55.0754L63.1735 44.2712H65.371V44.2717ZM64.3111 61.5225L64.3326 61.6516L64.2819 61.6741C64.2968 61.6024 64.2973 61.5963 64.3111 61.5225Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.8771 55.0488L59.2289 58.492L69.3578 58.0455L67.1982 45.2594L61.7306 45.2077L59.8771 55.0488ZM34.4149 38.717H27.6442L25.6069 45.7345C25.6069 45.7345 26.763 47.0345 26.8383 47.1205V67.6287L25.6515 68.9634L27.6104 76.8011L36.5115 74.3522L38.0793 67.6896L37.1914 66.3589V47.0545L38.1934 45.6229L36.6344 38.7176H34.4154L34.4149 38.717ZM32.1943 44.2717L32.2348 44.4489L32.0858 44.6614L31.7975 44.3368L31.816 44.2717H32.1938H32.1943Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M52.2363 38.717H38.3534L36.1083 45.4539L37.2352 46.9029V64.7983L35.7729 65.7727L37.9305 73.5929L47.0149 71.7216C47.0149 71.7216 47.1086 71.1666 47.1921 70.8834L47.3109 71.6499L55.3488 70.2363L58.6128 63.7185L55.9703 62.0197L55.1537 55.6463L57.7301 52.7479L56.2724 50.9979V46.1743L57.3343 44.475L53.7882 38.717H52.2363ZM50.6844 44.2717L50.7961 44.453L50.7157 44.581V52.2753L50.0521 53.0223L49.9978 52.6685L42.7904 53.6091V44.9962L42.3184 44.3895L42.3583 44.2717H50.6849H50.6844Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.8091 42.0302H42.1475V56.3222L51.5872 55.7661V42.0302H48.8096H48.8091ZM23.4477 38.717H7.35912L5.70588 46.7739L7.07496 48.2807V79.378L5.64648 80.9483L7.79023 89.2842L17.0236 86.205L18.1813 78.6827L17.1998 77.7007V67.0772L20.7367 65.9841L23.567 66.7936L28.3148 59.0767L27.2529 57.3774V47.6151L28.3998 45.649L25.2315 38.7176H23.4477V38.717ZM21.6634 44.2717L22.1508 45.3367L21.6987 46.1119V58.9692L21.7791 59.0982L21.0439 60.2927L20.6752 60.1878L12.6307 62.674V46.1318L11.7157 45.1242L11.8908 44.2707H21.6629L21.6634 44.2717Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.9058 43.0576H11.8726V63.6042L22.6834 61.4886V43.0576H19.9058Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.355 40.4075H104.328L101.783 45.7963L103.027 47.1782L103.237 55.3651C103.011 55.7301 102.124 57.1724 102.124 57.1724L105.695 62.4588H107.953L112.023 63.5776L112.612 64.3619V78.595L108.233 77.4809L106.856 73.8094L103.898 79.9247L103.938 80.2427C104.085 81.4187 104.972 82.5876 105.073 82.7177L105.287 82.9926L118.089 86.7968L120.276 81.6435L119.582 80.3942L119.472 65.2119L120.344 63.7583L116.464 57.5805L114.8 58.0792L110.442 57.111L109.987 56.2037V46.8613L112.613 46.9862V52.6453L119.356 53.3202V47.7025L120.423 46.3677L118.097 40.408H117.355V40.4065L117.355 40.4075ZM116.612 42.5815L117.942 45.9893L117.182 46.9396V50.9179L114.786 50.6788V44.9136L107.814 44.5819V56.7168L108.961 59.0085L114.883 60.3248L115.504 60.1385L117.793 63.7849L117.294 64.6174L117.414 80.9656L117.861 81.7725L116.848 84.1605L106.605 81.1177C106.441 80.8647 106.263 80.5299 106.166 80.2293L106.611 79.3123L114.787 81.3926V63.6385L113.318 61.6801L108.249 60.2864H106.851L104.711 57.1182L105.427 55.9554L105.179 46.3206L104.367 45.4174L105.706 42.5815H116.613V42.582L116.612 42.5815Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M99.076 40.4075H88.3205L86.7573 45.7937L88.2785 46.2089V65.4202L87.3477 66.4841L88.7326 70.9488L100.277 74.0966L102.582 68.6632L98.5927 65.7156C98.5927 65.7156 97.3383 66.7197 97.0373 66.9593C96.7705 66.989 96.3578 67.0284 95.9923 67.0284C95.8018 67.0284 95.4204 66.9465 95.022 66.8431V58.5871L99.2486 59.0438V53.7952L94.9079 53.2244V46.3671C95.3487 46.3989 95.8586 46.468 96.3056 46.6308C96.8191 46.8249 97.2584 47.1756 97.5615 47.6333L98.0193 48.4131L98.8764 48.1161L102.458 46.8141L99.8031 40.41H99.0766V40.4085L99.076 40.4075ZM98.3495 42.5814L99.5793 45.5449C99.2343 45.6698 99.1682 45.6949 98.8748 45.8014C98.3705 45.2582 97.7448 44.8414 97.0485 44.5864C95.6154 44.0652 93.931 44.1676 93.742 44.1809L92.7329 44.2531V55.129L97.0736 55.6999V56.6205L92.8471 56.1638V68.4395L93.59 68.6873C93.847 68.7728 95.17 69.2008 95.9907 69.2008C96.7444 69.2008 97.5938 69.08 97.6291 69.0754L97.9235 69.0344L98.6449 68.4574L99.9106 69.3923L99.0167 71.5002C97.5989 71.1136 91.3776 69.4169 90.4535 69.164L89.7812 67.0018C89.9824 66.7734 90.4504 66.2379 90.4504 66.2379V44.5485L89.4581 44.2782L89.9507 42.5814H98.349H98.3495Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M84.6809 40.4075H72.2516L69.5723 45.6002L73.5254 47.1812L75.2591 45.9197C75.3773 45.8362 75.5381 45.7743 75.7122 45.722V63.13L74.6784 64.2923L75.8202 68.3688L82.3067 69.6048L83.3533 65.0679L82.3421 63.9293V46.0113C82.4946 46.0738 82.6431 46.1501 82.7737 46.2479L84.6676 47.6692L88.2203 45.997L85.3465 40.4075H84.6819V40.408L84.6809 40.4075ZM84.0178 42.5814L85.2564 44.9888L84.9246 45.145L84.0767 44.5086C82.9068 43.6315 81.4205 43.6059 81.2546 43.6059H80.1676V64.7551L80.9837 65.6736C80.887 66.0955 80.8045 66.4437 80.6596 67.0781L77.5508 66.4852C77.39 65.9107 77.2379 65.3736 77.092 64.8498L77.8866 63.9559V43.3771H76.7997C76.6215 43.3771 75.0486 43.3991 73.9965 44.1507L73.2182 44.717L72.6007 44.4702L73.5761 42.5809H84.0183V42.5814H84.0178Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.5742 40.4075H59.263L58.2226 44.7431L59.0633 45.463L56.1592 63.0983L55.3677 63.5729L56.2867 68.3499L63.1491 67.5563V63.2831L62.3544 62.786L63.0876 58.8912L65.5698 58.817L66.22 62.6636L65.0731 63.1736L66.4095 67.3709L72.2795 67.6121L73.1848 63.7501C73.1848 63.7501 72.4429 62.7952 72.2314 62.5244L69.5142 45.676L70.7456 44.5675L69.3591 40.407H68.5757L68.5742 40.4075ZM67.7903 42.5814C67.9644 43.1042 68.0668 43.4134 68.2312 43.9045L67.178 44.8527L70.1716 63.4188L70.8178 64.2488C70.7359 64.5795 70.6908 64.7603 70.5807 65.197H67.9982L67.734 64.3696C67.7668 64.3542 68.6433 63.9651 68.6433 63.9651L67.3981 56.5867L61.2741 56.7705L59.9429 63.8412L60.9756 64.4874V65.2671C60.0986 65.4289 59.0172 65.6301 58.0132 65.817C57.9108 65.284 57.8744 65.092 57.7894 64.6548C57.8964 64.5898 58.1407 64.4438 58.1407 64.4438L61.4067 44.6079L60.6469 43.9572L60.9777 42.5814H67.7908H67.7903Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.5387 55.362L61.2852 56.7085L67.3724 56.4403L65.5323 45.5403L63.3921 45.5203L61.5387 55.3615V55.362ZM64.4023 51.9045C64.5984 53.0698 64.7284 53.8357 64.8201 54.3774L63.9287 54.4168L64.4023 51.905V51.9045ZM34.415 40.4075H28.9145L27.4917 45.3089L28.53 46.4767V68.2695L27.5096 69.4184L28.8326 74.7105L35.0975 72.9881L36.2674 68.0156L35.503 66.8687V46.5203L36.3816 45.2643L35.2854 40.407H34.4155V40.4075H34.415ZM33.5466 42.5814L34.0489 44.8066L33.3285 45.8357V67.5281L33.9347 68.4374L33.2768 71.234L30.4019 72.025L29.8966 70.0057L30.704 69.0979V45.6509L29.9145 44.7631L30.5478 42.5814H33.5466ZM52.2361 40.4075H39.5718L37.9974 45.1297L38.9252 46.3221V65.7034L37.7271 66.5011L39.1274 71.5786L45.6723 70.0559L46.9216 65.8406L46.1254 64.7792V57.071L46.7542 56.9886L48.7085 69.635L54.2181 68.7426L56.3997 64.3056L54.3922 63.0159L53.3769 55.0978L55.4981 52.7119L54.5806 51.6101V45.6893L55.3435 44.4682L52.8439 40.407H52.2361V40.4085V40.4075ZM51.6294 42.5814L52.7855 44.4605L52.4072 45.0672V52.3985L52.6309 52.6673L51.0954 54.3943L52.3657 64.2979L53.5571 65.0644L52.7681 66.582L50.5097 67.0463L48.58 54.5602L43.9535 55.1638V65.5057L44.5285 66.2722L43.9494 68.2265C43.2301 68.3939 41.7463 68.738 40.6706 68.9889L40.242 67.439L41.1007 66.8671V45.5761L40.4294 44.7129L41.1401 42.5804H51.6294V42.5809V42.5814Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.8091 43.7206H43.8381V54.5289L49.8961 54.1726V43.7211H48.8091V43.7206ZM47.7231 45.8946V52.122L46.0126 52.2229V45.8946H47.7231ZM23.4477 40.4075H8.73845L7.53525 46.2724L8.76661 47.6272V80.0317L7.51221 81.4105L8.97653 87.1065L15.5107 84.9289L16.3806 79.2724L15.5091 78.4009V65.8303L20.7177 64.2196L22.799 64.814L26.3256 59.0832L25.5628 57.8621V47.1577L26.4982 45.5536L24.1461 40.408H23.4477V40.4075ZM22.7493 42.5814L24.0529 45.4322L23.3888 46.5699V58.4857L23.7682 59.0919L21.8119 62.2719L20.6936 61.9524L13.3352 64.2262V79.301L14.0638 80.0301L13.563 83.2854C12.8647 83.5194 11.5867 83.9444 10.5002 84.3058L9.90837 82.0049L10.939 80.8713V46.7855L9.88584 45.6268L10.5105 42.5809H22.7488V42.5814H22.7493Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.9061 44.7483H13.5645V61.5501L20.9931 60.0965V44.7483H19.9061ZM18.8191 46.9228V58.3071L15.7379 58.9102V46.9228H18.8191Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.016 41.4944H117.354L119.183 46.1782L118.269 47.3205V52.1189L113.7 51.6622V45.9498L108.901 45.7215V56.4597L109.701 58.0591L114.842 59.2019L115.983 58.8584L119.067 63.7705L118.383 64.9133L118.497 80.6793L119.067 81.7064L117.468 85.4767L105.931 82.0504C105.931 82.0504 105.13 81.0218 105.016 80.1074L106.731 76.5669L107.415 78.3942L113.699 79.9932V63.9994L112.671 62.6287L108.101 61.3718H106.273L103.417 57.1442L104.331 55.6594L104.103 46.7486L103.075 45.6063L105.016 41.4939V41.4944ZM89.137 41.4944H99.0759L101.017 46.1782L98.504 47.0921C98.504 47.0921 97.9336 46.064 96.6767 45.6073C95.4197 45.1506 93.8207 45.2638 93.8207 45.2638V54.1746L98.1615 54.7455V57.8298L93.9349 57.3731V67.6545C93.9349 67.6545 95.3055 68.1123 95.9921 68.1123C96.6787 68.1123 97.4769 67.9981 97.4769 67.9981L98.6197 67.0837L101.247 69.0252L99.6468 72.7955L89.5937 70.0538L88.5651 66.7416L89.3653 65.8272V45.3784L88.1084 45.0359L89.137 41.4944ZM72.9148 41.4944H84.681L86.7382 45.4926L84.7967 46.4065L83.4261 45.3784C82.5117 44.6924 81.2547 44.6924 81.2547 44.6924V64.3424L82.1692 65.371L81.4831 68.3411L76.6851 67.4267L75.8849 64.5708L76.7993 63.5427V44.4645C76.7993 44.4645 75.4287 44.4645 74.6279 45.0354C73.8271 45.6063 73.371 45.9493 73.371 45.9493L71.0874 45.0354L72.9148 41.4939V41.4944ZM71.2016 62.9718L68.3457 45.2643L69.4874 44.2362L68.5745 41.4944H60.1199L59.4338 44.3503L60.2341 45.0354L57.1498 63.7705L56.5789 64.1146L57.1498 67.0847L62.0619 66.6546V63.8862L61.148 63.3153L62.1807 57.8323L66.4835 57.7033L67.4318 63.3158L66.4031 63.7726L67.2177 66.4544L71.4617 66.543L72.0008 64.0014L71.2021 62.9713L71.2016 62.9718ZM62.6072 55.5626L64.4611 45.7215L66.0965 55.4085L62.6067 55.5626H62.6072ZM29.7306 41.4944H34.4149L35.2147 45.0359L34.4149 46.1782V67.1989L35.1 68.2275L34.1855 72.112L29.6165 73.3669L28.7025 69.7118L29.6165 68.6837V46.0635L28.7025 45.0354L29.7306 41.4939V41.4944ZM53.3789 63.6574L52.2366 54.7465L54.0639 52.6898L53.4931 52.0047V45.379L54.0639 44.465L52.2356 41.4949H40.3551L39.2124 44.9222L40.0121 45.9503V66.2854L38.984 66.9715L39.8979 70.2837L44.8101 69.1409L45.724 66.0566L45.0389 65.1422V56.1176L47.6665 55.7751L49.608 68.3422L53.4926 67.5419L54.9774 64.686L53.3789 63.6579V63.6574ZM48.8088 53.1475L44.9242 53.3759V44.8076H48.8088V53.1475ZM24.4755 46.8632L25.2757 45.4926L23.4484 41.4944H9.62388L8.70996 45.9493L9.85223 47.2063V80.4515L8.70996 81.7074L9.73806 85.7056L14.5365 84.1066L15.2216 79.6517L14.4218 78.8515V65.028L20.7051 63.0865L22.3041 63.5432L25.0458 59.0872L24.475 58.1733V46.8632H24.4755ZM19.9059 59.2019L14.6507 60.23V45.8351H19.9059V59.2019Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ybmexx\",layoutDependency:layoutDependency,layoutId:\"XII0hMmAv\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11fw5au\",\"data-framer-name\":\"Frame 1984077201\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"BkBXwPyIN\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_311_10727)\">\\n<path d=\"M14 71.7399V60.4199H19.68V71.6299C19.68 74.5399 21.15 75.9199 23.4 75.9199C25.65 75.9199 27.12 74.5999 27.12 71.7699V60.4199H32.8V71.5999C32.8 78.1099 29.08 80.9699 23.35 80.9699C17.62 80.9699 14 78.0499 14 71.7399Z\" fill=\"black\"/>\\n<path d=\"M34.5801 77.5901L37.6901 73.8701C39.6801 75.4601 41.9001 76.2901 44.2301 76.2901C45.7301 76.2901 46.5301 75.7701 46.5301 74.9101V74.8501C46.5301 74.0101 45.8701 73.5501 43.1301 72.9201C38.8401 71.9401 35.5201 70.7301 35.5201 66.5801V66.5201C35.5201 62.7701 38.4901 60.0601 43.3301 60.0601C46.7601 60.0601 49.4401 60.9801 51.6301 62.7401L48.8301 66.6901C46.9901 65.3901 44.9701 64.7001 43.1801 64.7001C41.8201 64.7001 41.1601 65.2801 41.1601 66.0001V66.0601C41.1601 66.9801 41.8501 67.3801 44.6501 68.0201C49.2901 69.0301 52.1701 70.5301 52.1701 74.3001V74.3601C52.1701 78.4801 48.9101 80.9301 44.0101 80.9301C40.4501 80.9401 37.0601 79.8101 34.5801 77.5901Z\" fill=\"black\"/>\\n<path d=\"M60.86 60.27H66.25L74.84 80.59H68.84L67.37 76.99H59.59L58.15 80.59H52.27L60.86 60.27ZM65.76 72.63L63.51 66.9L61.23 72.63H65.76Z\" fill=\"black\"/>\\n<path d=\"M14 85.51H21C27.34 85.51 31.72 89.86 31.72 95.54V95.6C31.72 101.28 27.34 105.69 21 105.69H14V85.51ZM21 103.58C26.1 103.58 29.36 100.12 29.36 95.65V95.6C29.36 91.13 26.1 87.62 21 87.62H16.28V103.59H21V103.58Z\" fill=\"black\"/>\\n<path d=\"M38.4402 85.51H36.1602V105.68H38.4402V85.51Z\" fill=\"black\"/>\\n<path d=\"M42.04 85.51H44.58L51.75 102.89L58.96 85.51H61.41L52.73 105.83H50.72L42.04 85.51Z\" fill=\"black\"/>\\n<path d=\"M67.8601 85.51H65.5801V105.68H67.8601V85.51Z\" fill=\"black\"/>\\n<path d=\"M73.77 85.51H75.9L88.61 101.68V85.51H90.83V105.69H89.01L75.99 89.14V105.69H73.77V85.51Z\" fill=\"black\"/>\\n<path d=\"M95.6401 95.6599V95.5999C95.6401 90.0599 99.7001 85.1699 105.76 85.1699C109.16 85.1699 111.26 86.1499 113.28 87.8499L111.81 89.5799C110.26 88.2199 108.52 87.2799 105.67 87.2799C101.2 87.2799 98.0101 91.0599 98.0101 95.5499V95.6099C98.0101 100.42 101.09 104 105.99 104C108.29 104 110.43 103.11 111.81 101.98V96.9599H105.67V94.9099H114V102.95C112.13 104.62 109.3 106.03 105.9 106.03C99.5601 106.03 95.6401 101.42 95.6401 95.6599Z\" fill=\"black\"/>\\n<path d=\"M102.36 79.94C105.53 78.16 109.49 69.79 101.33 57.64C90.75 41.89 56.02 22 56.02 22C56.02 22 77.29 40.29 85.48 49.32C91.32 55.76 95.15 64.58 92.28 66.72C89.03 69.15 83.35 63.75 77.96 57.26C72.57 50.77 60.21 30.24 60.21 30.24C60.21 30.24 69.13 55.98 81.99 71.48C90.81 82.12 98.98 81.84 102.36 79.94Z\" fill=\"black\"/>\\n<path d=\"M87.2399 32.0599C89.0899 30.6799 92.7699 32.1999 95.4699 35.4599C98.1699 38.7099 98.8599 42.4699 97.0099 43.8399C95.1599 45.2199 91.4799 43.6999 88.7799 40.4399C86.0799 37.1899 85.3899 33.4399 87.2399 32.0599Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_311_10727\">\\n<rect width=\"100\" height=\"84.03\" fill=\"white\" transform=\"translate(14 22)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnxcya\",layoutDependency:layoutDependency,layoutId:\"KtnUozSpS\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t57gk8\",\"data-framer-name\":\"Frame 1984077202\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"JqlXSY8hL\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_313_10654)\">\\n<path d=\"M110.423 63.0752C110.331 63.0752 110.277 63.0189 110.277 62.9257C110.277 62.5528 110.331 62.2924 110.404 62.0305C110.678 61.2107 111.389 60.7253 112.356 60.7253C113.322 60.7253 114.052 61.2107 114.308 62.0305C114.38 62.2731 114.435 62.5528 114.435 62.9257C114.435 63.0189 114.38 63.0752 114.29 63.0752H110.422H110.423ZM112.502 70.588C114.655 70.588 116.37 69.8052 117.483 68.5932C117.575 68.5 117.575 68.3506 117.465 68.2396L115.878 66.711C115.786 66.5808 115.659 66.6177 115.531 66.711C114.857 67.3443 114.018 67.7734 112.85 67.7734C111.682 67.7734 110.752 67.2333 110.441 66.1886C110.368 65.9829 110.314 65.7595 110.294 65.5183C110.294 65.4251 110.349 65.3688 110.441 65.3688H117.52C117.684 65.3688 117.794 65.2756 117.794 65.1261C117.794 63.0944 117.647 62.2376 117.411 61.4548C116.736 59.3491 114.947 58.1002 112.357 58.1002C109.768 58.1002 108.016 59.3299 107.339 61.4741C107.103 62.2199 106.956 63.0767 106.956 64.3448C106.956 65.613 107.12 66.4505 107.376 67.1771C108.016 69.3213 109.84 70.588 112.504 70.588M103.508 70.3068C103.655 70.3068 103.745 70.2136 103.745 70.0641V61.0612C103.745 60.968 103.8 60.9118 103.891 60.9118H105.808C105.954 60.9118 106.045 60.8185 106.045 60.6691V58.6196C106.045 58.4701 105.953 58.3769 105.808 58.3769H103.911C103.819 58.3769 103.764 58.3207 103.764 58.2275V57.6311C103.764 56.6249 104.038 56.3452 105.096 56.3452H105.843C105.99 56.3452 106.08 56.252 106.08 56.1025V53.7748C106.08 53.6254 105.988 53.5322 105.843 53.5322H104.511C101.738 53.5322 100.407 54.7441 100.407 57.6518V58.2112C100.407 58.3044 100.352 58.3606 100.26 58.3606H99.5306C99.3841 58.3606 99.2938 58.4539 99.2938 58.6033V60.6543C99.2938 60.8037 99.3856 60.897 99.5306 60.897H100.26C100.352 60.897 100.407 60.9532 100.407 61.0464V70.0493C100.407 70.1988 100.498 70.292 100.643 70.292H103.508V70.3113V70.3068ZM92.2146 67.9969C91.1018 67.9969 90.5173 67.5678 90.5173 66.7302C90.5173 65.798 91.1743 65.3688 92.5979 65.3688H94.2404C94.3322 65.3688 94.3869 65.4251 94.3869 65.5183V66.3381C94.3869 67.4568 93.6574 67.9969 92.2161 67.9969M97.3598 70.3068C97.5063 70.3068 97.5965 70.2136 97.5965 70.0641V62.4226C97.5965 59.4409 96.2277 58.0987 92.3966 58.0987C90.4626 58.0987 89.039 58.5648 88.055 59.2914C87.9277 59.3654 87.9085 59.4971 87.9825 59.6451L89.0775 61.6028C89.15 61.733 89.2787 61.7523 89.3882 61.659C89.9358 61.2299 90.8118 60.894 91.9971 60.894C93.8586 60.894 94.3869 61.4164 94.3869 62.5158V62.9627C94.3869 63.0559 94.3322 63.1122 94.2404 63.1122H92.1599C89.2595 63.1122 87.3062 64.3241 87.3062 66.9699C87.3062 69.6158 89.113 70.6235 91.1921 70.6235C92.7799 70.6235 93.8009 70.1011 94.4032 69.3183H94.4209V70.1011C94.4209 70.2506 94.5127 70.3438 94.6577 70.3438H97.3583V70.3068H97.3598ZM79.6262 70.588C83.8776 70.588 86.0854 68.352 86.0854 65.3126C86.0854 62.2731 84.2978 60.6898 80.9225 60.2237L80.0465 60.0934C78.1672 59.8138 77.4924 59.1997 77.4924 58.2482C77.4924 57.1857 78.2411 56.4221 79.681 56.4221C81.0305 56.4221 82.235 56.869 83.4943 57.7081C83.6216 57.782 83.7311 57.7643 83.8406 57.6341L85.3189 55.3981C85.4461 55.2309 85.4106 55.1185 85.2641 55.0252C83.8953 53.9435 81.8518 53.2732 79.681 53.2732C76.1236 53.2732 73.861 55.3242 73.861 58.3991C73.861 61.4741 75.7226 62.9657 79.0609 63.4318L79.937 63.562C81.8888 63.8417 82.4733 64.4573 82.4733 65.4443C82.4733 66.637 81.5055 67.439 79.7919 67.439C78.0784 67.439 76.5808 66.6 75.4858 65.7062C75.3586 65.613 75.2121 65.613 75.1203 65.7254L73.278 67.8682C73.1507 68.0176 73.2055 68.1848 73.2958 68.278C74.5728 69.5462 77.0721 70.5894 79.6262 70.5894\" fill=\"#1F1F1F\"/>\\n<path d=\"M71.2521 70.3068C71.3986 70.3068 71.4889 70.2136 71.4889 70.0641V58.6211C71.4889 58.4716 71.3972 58.3784 71.2521 58.3784H68.3518C68.2053 58.3784 68.115 58.4716 68.115 58.6211V70.0656C68.115 70.2151 68.2068 70.3083 68.3518 70.3083H71.2521V70.3068ZM71.2521 56.4784C71.3986 56.4784 71.4889 56.3852 71.4889 56.2357V53.7748C71.4889 53.6254 71.3972 53.5322 71.2521 53.5322H68.3518C68.2053 53.5322 68.115 53.6254 68.115 53.7748V56.2165C68.115 56.3659 68.2068 56.4592 68.3518 56.4592H71.2521V56.4784ZM66.2165 70.4563C66.363 70.4563 66.4532 70.3631 66.4532 70.2136V67.772C66.4532 67.6225 66.3615 67.5293 66.2165 67.5293H65.706C65.0134 67.5293 64.6849 67.2126 64.6849 66.3928V53.7748C64.6849 53.6254 64.5932 53.5322 64.4482 53.5322H61.5478C61.4013 53.5322 61.311 53.6254 61.311 53.7748V66.6548C61.311 69.3021 62.3513 70.4578 64.9424 70.4578H66.2194L66.2165 70.4563ZM54.0469 67.6802C53.1531 67.6802 52.5331 67.2333 52.2593 66.3943C52.1128 65.9282 52.0403 65.4058 52.0403 64.3448C52.0403 63.2838 52.1128 62.76 52.2593 62.2939C52.5331 61.4356 53.1531 61.008 54.0469 61.008C54.9406 61.008 55.5977 61.4179 55.8537 62.2939C56.0002 62.76 56.0727 63.2824 56.0727 64.3448C56.0727 65.4073 56.0002 65.9297 55.8537 66.3943C55.5977 67.2333 54.9599 67.6802 54.0469 67.6802ZM51.8035 74.7624C51.95 74.7624 52.0403 74.6692 52.0403 74.5197V69.2074H52.0581C52.5863 70.0272 53.5719 70.5865 55.1227 70.5865C57.0745 70.5865 58.4803 69.598 59.081 67.7158C59.3726 66.7835 59.5013 65.8705 59.5013 64.3419C59.5013 62.8133 59.374 61.9003 59.081 60.968C58.4788 59.0665 57.0745 58.0973 55.1227 58.0973C53.5719 58.0973 52.5863 58.6566 52.0581 59.4764H52.0403V58.6196C52.0403 58.4702 51.9485 58.3769 51.8035 58.3769H48.9032C48.7567 58.3769 48.6664 58.4702 48.6664 58.6196V74.5182C48.6664 74.6677 48.7582 74.7609 48.9032 74.7609H51.8035V74.7624ZM46.0753 70.3068C46.2218 70.3068 46.3121 70.2136 46.3121 70.0641V62.5336C46.3121 59.8863 44.8886 58.0973 42.1347 58.0973C40.4922 58.0973 39.3246 58.6566 38.4679 59.6066H38.4501C37.7753 58.6181 36.735 58.0973 35.3115 58.0973C33.8155 58.0973 32.8299 58.7128 32.3017 59.4586H32.2839V58.6196C32.2839 58.4702 32.1922 58.3769 32.0471 58.3769H29.1098C28.9633 58.3769 28.873 58.4702 28.873 58.6196V70.0641C28.873 70.2136 28.9648 70.3068 29.1098 70.3068H32.0101C32.1566 70.3068 32.2469 70.2136 32.2469 70.0641V63.2054C32.2469 61.9003 32.9217 61.0435 34.0892 61.0435C35.2568 61.0435 35.896 61.9003 35.896 63.2054V70.0641C35.896 70.2136 35.9878 70.3068 36.1328 70.3068H39.0331C39.1796 70.3068 39.2699 70.2136 39.2699 70.0641V63.2054C39.2699 61.9003 39.9269 61.0435 41.0767 61.0435C42.2265 61.0435 42.919 61.9003 42.919 63.2054V70.0641C42.919 70.2136 43.0107 70.3068 43.1558 70.3068H46.0753ZM26.1887 70.3068C26.3352 70.3068 26.4255 70.2136 26.4255 70.0641V58.6211C26.4255 58.4716 26.3338 58.3784 26.1887 58.3784H23.2884C23.1419 58.3784 23.0516 58.4716 23.0516 58.6211V70.0656C23.0516 70.2151 23.1434 70.3083 23.2884 70.3083H26.1887V70.3068ZM26.1887 56.4784C26.3352 56.4784 26.4255 56.3852 26.4255 56.2357V53.7748C26.4255 53.6254 26.3338 53.5322 26.1887 53.5322H23.2884C23.1419 53.5322 23.0516 53.6254 23.0516 53.7748V56.2165C23.0516 56.3659 23.1434 56.4592 23.2884 56.4592H26.1887V56.4784ZM14.8581 70.588C19.1095 70.588 21.2981 68.3521 21.2981 65.3126C21.2981 62.2732 19.5105 60.6898 16.1352 60.2237L15.2784 60.0935C13.3991 59.8138 12.7243 59.1997 12.7243 58.2482C12.7243 57.1857 13.4731 56.4222 14.9321 56.4222C16.2817 56.4222 17.4862 56.869 18.7455 57.7081C18.8728 57.7821 18.9823 57.7643 19.0918 57.6341L20.5701 55.3982C20.6973 55.2309 20.6618 55.1185 20.5153 55.0253C19.1465 53.9435 17.103 53.2717 14.9321 53.2717C11.3733 53.2717 9.11221 55.3227 9.11221 58.3976C9.11221 61.4726 10.9738 62.9642 14.3121 63.4303L15.1881 63.5606C17.14 63.8402 17.7245 64.4558 17.7245 65.4428C17.7245 66.6355 16.7582 67.4376 15.0431 67.4376C13.3281 67.4376 11.832 66.5985 10.737 65.7047C10.6097 65.6115 10.4632 65.6115 10.3715 65.724L8.50994 67.8652C8.38268 68.0147 8.43743 68.1819 8.5277 68.2751C9.80474 69.5433 12.3041 70.5865 14.8581 70.5865\" fill=\"#1F1F1F\"/>\\n<path d=\"M117.21 59.6273C117.192 59.6273 117.173 59.6081 117.173 59.5903V58.4346C117.173 58.4218 117.167 58.4154 117.155 58.4154H116.789C116.772 58.4154 116.752 58.3962 116.752 58.3784V58.2482C116.752 58.2289 116.77 58.2112 116.789 58.2112H117.81C117.828 58.2112 117.847 58.2304 117.847 58.2482V58.3784C117.847 58.3976 117.83 58.4154 117.81 58.4154H117.445C117.433 58.4154 117.427 58.4218 117.427 58.4346V59.5903C117.427 59.6096 117.409 59.6273 117.39 59.6273H117.208H117.21ZM119.181 59.6273C119.163 59.6273 119.144 59.6081 119.144 59.5903V58.7143L118.833 59.3861C118.815 59.4054 118.815 59.4231 118.778 59.4231H118.669C118.651 59.4231 118.632 59.4054 118.632 59.3861L118.321 58.7143V59.5903C118.321 59.6096 118.303 59.6273 118.284 59.6273H118.138C118.12 59.6273 118.101 59.6081 118.101 59.5903V58.2482C118.101 58.2289 118.118 58.2112 118.138 58.2112H118.284C118.302 58.2112 118.321 58.2304 118.339 58.2482L118.759 59.1612H118.777L119.178 58.2482C119.196 58.2289 119.215 58.2112 119.233 58.2112H119.378C119.395 58.2112 119.415 58.2304 119.415 58.2482V59.5903C119.415 59.6096 119.397 59.6273 119.378 59.6273H119.178H119.181Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_313_10654\">\\n<rect width=\"110.983\" height=\"21.4907\" fill=\"white\" transform=\"translate(8.43457 53.2717)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15xx3cd\",layoutDependency:layoutDependency,layoutId:\"sZ3fC0OZT\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18stwai\",\"data-framer-name\":\"Frame 1984077203\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"OYaAnCmHa\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_313_10664)\">\\n<path d=\"M99.4365 84.9206C100.804 84.9206 101.943 86.0094 101.943 87.4224C101.943 88.8354 100.804 89.92 99.4365 89.92C98.0693 89.92 96.9264 88.8271 96.9264 87.4224C96.9264 86.0177 98.0651 84.9206 99.4365 84.9206ZM99.4365 90.4063C101.107 90.4063 102.429 89.0847 102.429 87.4182C102.429 85.7517 101.107 84.4343 99.4365 84.4343C97.7659 84.4343 96.4443 85.7559 96.4443 87.4182C96.4443 89.0806 97.7659 90.4063 99.4365 90.4063ZM99.9519 87.572C100.401 87.5595 100.85 87.3143 100.85 86.6535C100.85 85.9471 100.301 85.7642 99.6942 85.7642H98.2812V89.1221H98.7633V87.572H99.3867L100.247 89.1221H100.8L99.9477 87.572H99.9519ZM99.6028 86.2504C100.006 86.2504 100.363 86.2795 100.363 86.7076C100.363 87.1647 99.7399 87.0899 99.2828 87.0899H98.7633V86.2546H99.6028V86.2504Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M101.947 49.7871C93.6684 41.5128 79.5385 36.5715 64.1453 36.5715C52.2346 36.5715 40.9848 39.5056 32.4611 44.8417C28.3053 47.4432 25.0346 50.4687 22.7406 53.8349C20.3344 57.3549 19.1167 61.0869 19.1167 64.9144C19.1167 70.2214 21.5022 75.4121 26.0154 79.9211C30.0133 83.9191 35.5697 87.2645 42.0861 89.5918C48.7977 91.9897 56.432 93.2572 64.1494 93.2572C79.5427 93.2572 93.6725 88.3201 101.951 80.0458C106.485 75.5076 108.887 70.2754 108.887 64.9185C108.887 59.5617 106.489 54.3295 101.951 49.7913M64.1453 91.4869C56.6273 91.4869 49.205 90.2526 42.6803 87.9211C36.4133 85.6811 31.0855 82.4811 27.2705 78.6661C23.098 74.4936 20.8912 69.7393 20.8912 64.9144C20.8912 60.0895 23.098 55.3352 27.2705 51.1669C31.0855 47.3518 36.4133 44.1518 42.6803 41.9159C49.205 39.5845 56.6315 38.3502 64.1453 38.3502C71.659 38.3502 78.9858 39.5721 85.4398 41.8785C91.632 44.0936 96.9099 47.2645 100.688 51.0505C104.885 55.2479 107.1 60.0437 107.1 64.9227C107.1 79.5762 87.8294 91.4952 64.1411 91.4952\" fill=\"#1F1F1F\"/>\\n<path d=\"M104.611 62.2338H56.0539V69.8515H82.8882C80.2451 75.4037 74.6014 79.8546 62.8737 79.8546C51.1459 79.8546 43.2539 71.9544 43.2539 63.8172C43.2539 55.6801 53.7807 48.7398 64.3116 48.7398C74.8425 48.7398 82.2524 56.5487 82.2524 56.5487H102.142C97.5999 47.9959 82.5017 40.1248 64.7895 40.1248C40.3074 40.1248 23.3433 52.3928 23.3433 64.3575C23.3433 76.3222 38.5079 89.6624 62.9983 89.6624C87.4887 89.6624 106.913 77.5689 104.615 62.2338\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_313_10664\">\\n<rect width=\"89.7662\" height=\"56.6857\" fill=\"white\" transform=\"translate(19.1167 36.5715)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ujlxrj\",layoutDependency:layoutDependency,layoutId:\"TQZxei5Fg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qq6tah\",\"data-framer-name\":\"Frame 1984077216\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"PKOcOGcGt\",svg:'<svg width=\"128\" height=\"128\" viewBox=\"0 0 128 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_340_11081)\">\\n<path d=\"M113.536 64C113.536 91.3833 91.3639 113.536 64.0004 113.536C36.637 113.536 14.4648 91.3635 14.4648 64C14.4648 36.6365 36.637 14.4644 64.0004 14.4644C91.3639 14.4644 113.536 36.6365 113.536 64Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M16.7236 64C16.7236 90.0755 37.9447 111.277 64.0004 111.277C90.0561 111.277 111.297 90.0755 111.297 64C111.297 37.9244 90.076 16.7232 64.0004 16.7232C37.9447 16.7232 16.7236 37.9244 16.7236 64Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M16.7434 63.5641C16.7434 63.7226 16.7236 63.8613 16.7236 64C16.7236 90.0755 37.9447 111.277 64.0004 111.277C90.0561 111.277 111.297 90.0755 111.297 64C111.297 63.8613 111.277 63.7226 111.277 63.5641H16.7434Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M87.0832 86.9845C74.4219 99.6458 53.9142 99.6458 41.2331 86.9845C28.5916 74.3232 28.5916 53.8155 41.2331 41.1542C53.8944 28.4929 74.4021 28.4929 87.0832 41.1542C99.7445 53.8155 99.7445 74.3232 87.0832 86.9845Z\" fill=\"white\"/>\\n<path d=\"M29.8011 78.7418C30.3559 78.5436 30.7521 78.1474 30.9701 77.5727C31.2673 76.7604 31.2277 75.6309 30.8116 74.5412L29.6822 71.4303L29.5038 71.6285L28.8698 72.2229L28.097 72.4805L26.5912 73.0155C26.5912 72.9758 25.6797 72.5994 25.6797 72.5994L25.541 72.5399C25.541 72.5399 25.1051 73.5108 25.0258 73.6495C24.9069 73.709 22.5094 74.561 22.5094 74.5808L21.6772 74.5214L21.4395 74.5015L22.4698 77.3548L23.2822 76.5028C23.302 76.5028 25.323 75.7498 25.8977 75.5517C25.9373 75.6111 26.0562 75.9678 26.0958 76.0669C25.9769 76.2056 23.1831 79.2768 23.1831 79.2768L23.9955 81.595C23.9955 81.595 24.7286 80.4854 24.7484 80.4656C24.7881 80.426 27.0865 78.0087 27.2648 77.8303C27.9385 78.6823 28.9491 79.0588 29.8011 78.7418ZM29.7614 75.8687C29.6425 76.1857 29.385 76.4235 29.0085 76.5622C28.5924 76.6811 28.1565 76.6613 27.8196 76.5028C27.5621 76.3641 27.3837 76.1263 27.2648 75.8489C27.2648 75.8489 27.0667 75.3734 26.9874 75.1158C27.245 75.0365 29.2463 74.343 29.5038 74.2638C29.5633 74.4817 29.7218 74.9176 29.7218 74.9176C29.7812 75.1356 29.8209 75.3139 29.8209 75.4922C29.8407 75.6309 29.8209 75.7498 29.7614 75.8687Z\" fill=\"white\"/>\\n<path d=\"M37.231 86.7468L33.8626 87.9158C33.8626 87.896 32.8521 87.6384 32.8521 87.6384L32.7134 87.6186C32.7134 87.6186 32.3369 88.4508 32.2775 88.5697C32.1586 88.6093 29.4836 89.5208 29.4836 89.5208L29.5035 89.5406C29.3846 89.5406 29.1468 89.5802 28.6515 89.6595L28.2354 89.7189L29.9394 91.7003C29.9394 91.7003 30.3357 90.8483 30.3951 90.7492C30.4942 90.7096 31.4651 90.3133 31.6236 90.2737C31.7425 90.4124 33.3276 92.1957 33.4465 92.3344C33.3672 92.4929 32.8521 93.3845 32.8124 93.4638C32.7134 93.5034 31.8019 93.7808 31.8019 93.7808L34.0211 96.3369L34.3183 95.0489L34.8929 94.0978L35.8044 92.592C35.8044 92.6118 36.696 92.2551 36.696 92.2551L36.7951 92.2155L36.6168 90.987L38.1623 87.8365L38.2019 87.7573L37.3301 86.7468H37.231ZM35.3685 88.8471C35.0911 89.3622 34.2787 90.7492 34.1202 91.0266C33.922 90.7889 33.1691 89.9567 32.971 89.6991C33.288 89.6 34.8335 89.0452 35.3685 88.8471Z\" fill=\"white\"/>\\n<path d=\"M50.8631 97.7437C50.8433 97.7437 49.7337 100.022 49.7337 100.022C49.7337 100.022 49.3968 100.696 49.1789 101.132C49.06 100.339 48.0891 95.1678 48.0891 95.1678L45.9095 94.0978L45.9491 94.3752L46.0086 95.3858C46.0086 95.366 45.4142 96.5548 45.4142 96.5548C45.4142 96.5548 45.0377 97.3077 44.9981 97.4068C44.899 97.4663 43.9479 97.8427 43.9479 97.8427L44.2649 98.9721L43.4724 100.518C43.4724 100.518 43.0365 101.389 43.0365 101.409C43.0166 101.389 42.343 101.885 42.343 101.885L42.125 102.043L44.6216 103.272L44.4829 102.004C44.4829 102.004 46.0482 98.8731 46.6228 97.7437C46.7615 98.5759 47.8513 104.877 47.8513 104.877L48.8817 105.412C48.8817 105.412 50.5461 102.004 50.5461 101.984C50.5659 102.004 51.4179 101.627 51.4179 101.627L51.5368 101.568C51.5368 101.568 51.299 100.518 51.2792 100.498C51.3188 100.498 51.9529 99.2099 51.9529 99.2099C51.9529 99.2099 52.369 98.3579 52.369 98.3381C52.3888 98.3579 53.0426 97.8427 53.0426 97.8427L53.2408 97.6644L50.8235 96.4557L50.8631 97.7437Z\" fill=\"white\"/>\\n<path d=\"M66.3384 104.679L66.3186 105.471V106.997C66.1601 107.056 65.9421 107.215 65.3279 107.215C63.8022 107.195 62.9105 105.828 62.7124 104.48L63.3861 103.827L63.5049 103.708C63.5049 103.708 62.8709 102.955 62.7916 102.876C62.7916 102.856 62.8313 102.618 62.8313 102.618C63.1681 101.528 64.0003 100.379 65.4467 100.419C66.4969 100.438 67.2498 100.696 67.6263 101.132L67.7452 101.29L68.0028 101.607L68.0622 99.9628L67.9631 99.9034C67.23 99.3882 66.5563 99.2099 65.4467 99.2099C63.2474 99.1901 61.2461 100.537 60.5724 102.479C60.5724 102.499 60.4734 102.895 60.4734 102.895C60.4535 102.895 59.8393 103.549 59.8393 103.549L59.7402 103.648L60.4337 104.56C60.7904 106.759 62.9105 108.424 65.3279 108.424C67.0319 108.463 67.5272 108.206 68.1018 107.928L68.4387 107.75C68.4387 107.75 68.4585 104.679 68.4585 104.659L68.9142 103.926L69.0331 103.688L65.8232 103.668L66.3384 104.679Z\" fill=\"white\"/>\\n<path d=\"M83.8337 102.341C83.8337 102.321 82.4863 102.895 82.4863 102.895C82.4863 102.895 81.9711 103.133 81.773 103.232C81.7135 103.093 80.7823 100.854 80.6832 100.617C80.9012 100.498 82.1098 100.002 82.1098 100.002L83.0015 99.943L83.2194 99.9232L82.4467 98.1003L81.6145 98.873C81.6145 98.8532 80.2275 99.4477 80.2275 99.4477L80.2077 99.4675C80.1086 99.2099 79.3953 97.5851 79.2962 97.3275C79.5142 97.2285 81.3569 96.4557 81.4163 96.4161C81.5154 96.4161 82.9816 96.5152 82.9816 96.5152L82.2287 94.7319L82.0107 94.8111L76.4033 97.2483L77.394 97.9814C77.394 98.021 78.2857 100.161 78.3649 100.339C78.3253 100.458 77.8696 101.37 77.8696 101.37C77.8696 101.37 78.8801 101.746 78.999 101.786C79.0386 101.885 80.0095 104.243 80.0095 104.243C79.9897 104.263 79.9104 105.115 79.9104 105.115V105.372L85.6368 102.856L84.9036 101.112C84.9036 101.132 83.8337 102.321 83.8337 102.341Z\" fill=\"white\"/>\\n<path d=\"M95.227 88.9858C95.3657 88.6489 95.4449 88.2923 95.4449 87.9752C95.4449 87.3015 95.1873 86.7071 94.7316 86.3108C94.2957 85.9344 93.7409 85.7957 93.1266 85.8749C92.2944 85.9938 91.3235 86.6081 90.5706 87.4997L88.4307 90.0161L89.5403 90.3331C89.5403 90.3529 91.3235 91.9183 91.3434 91.9381C91.3434 91.9381 91.3235 91.9579 91.3235 91.9777C91.3235 92.1957 91.4028 92.9486 91.4028 92.9486L91.4226 93.0873C91.4226 93.0873 92.5124 92.9882 92.6511 92.9882C92.7304 93.0873 94.692 94.7517 94.692 94.7517C94.692 94.7715 95.0486 95.5046 95.0486 95.5046L95.1477 95.7226L97.1291 93.4241L95.9997 93.1269C95.9997 93.1269 94.3353 91.7201 93.8796 91.3238C93.9588 91.2446 94.1768 90.987 94.2362 90.8879C94.4146 90.9276 98.4567 91.8588 98.4567 91.8588L100.081 90.0161L98.7341 89.917C98.7539 89.8972 95.4845 89.0452 95.227 88.9858ZM93.7409 89.1443C93.7409 89.4217 93.6418 89.6991 93.4437 89.917C93.4437 89.917 93.1266 90.3331 92.9483 90.5115C92.7304 90.3133 91.165 88.9065 90.9867 88.7282C91.1056 88.5895 91.4226 88.213 91.4226 88.213C91.6802 87.9356 91.9576 87.7573 92.235 87.7176C92.5718 87.6582 92.9087 87.7771 93.2059 88.0347C93.5427 88.3319 93.7409 88.7084 93.7409 89.1046V89.1443Z\" fill=\"white\"/>\\n<path d=\"M106.105 75.2743C105.788 74.5412 105.154 74.0062 104.342 73.7684C104.005 73.6693 103.569 73.6892 103.292 73.7684C102.875 73.8675 102.459 74.1845 102.281 74.3232L101.746 74.8582C101.746 74.878 101.548 75.0762 101.508 75.1554H100.696C100.696 75.1554 100.458 76.1659 100.418 76.2254L100.319 76.3046C99.7052 76.9585 99.3089 76.9585 99.1108 76.8991C98.7343 76.7406 98.0606 76.1461 98.3776 75.2545C98.6352 74.5015 98.9324 74.1251 99.408 73.8675L99.5268 73.808V73.6495L99.1702 72.8768L98.9721 72.9758C98.3776 73.2731 97.8625 74.0458 97.5058 75.1158C97.0303 76.5424 97.2878 78.3851 98.7739 78.9796C99.0117 79.0588 99.3683 79.1777 99.6854 79.0984C100.082 79.039 100.498 78.821 100.874 78.504C100.874 78.4842 101.132 78.2861 101.132 78.2861L101.231 78.2068C101.231 78.2266 101.885 78.2266 101.885 78.2266H102.023L102.34 77.0774C102.36 77.0774 103.133 76.2056 103.133 76.2056C103.43 75.9282 103.866 75.7697 104.124 75.8093C104.579 75.948 104.897 76.2254 105.075 76.6019C105.313 77.0378 105.332 77.6124 105.154 78.2266C104.778 79.2966 104.025 79.6334 103.45 79.7127L103.272 79.7523L103.232 79.9505L103.549 80.7628L103.708 80.7232C104.362 80.6638 105.511 79.891 106.006 78.3455C106.462 77.1368 106.482 76.0867 106.105 75.2743Z\" fill=\"white\"/>\\n<path d=\"M37.2909 40.104C37.2909 40.0842 35.2302 38.3207 35.1707 38.3009C35.1707 38.1424 35.032 37.3895 35.032 37.3895L35.0122 37.231C35.0122 37.231 34.081 37.33 33.9819 37.3498C33.8828 37.2706 32.4364 36.0619 32.2382 35.8836C32.3968 35.6854 33.1101 34.8533 33.1101 34.8533C33.1101 34.8731 34.2197 34.3777 34.2197 34.3777L34.4574 34.2786L32.9516 33.0898L32.8525 33.2087L28.2754 38.717L29.7416 39.8861L30.0785 38.4793C30.0785 38.4793 30.7522 37.7065 30.9701 37.4291C31.1881 37.5876 32.6345 38.7765 32.7336 38.8557C32.7336 38.9746 32.8327 39.9257 32.8327 39.9257C32.8327 39.9257 33.8036 39.8663 33.9026 39.8663C34.0017 39.9455 36.0228 41.6495 36.0228 41.6495C36.0228 41.6693 36.3596 42.4223 36.3596 42.4223L36.4587 42.6601L38.4203 40.3022L37.2909 40.104Z\" fill=\"white\"/>\\n<path d=\"M43.8489 29.0279L43.4328 30.0978C43.4328 30.0978 44.4433 30.3752 44.5622 30.4149C44.6217 30.5139 45.7709 32.8718 45.7709 32.8718L45.7511 33.6446V33.922L51.2198 31.0687L50.3876 29.4043L49.496 30.6328C49.496 30.6328 47.7325 31.5443 47.3759 31.7226C47.257 31.4848 46.187 29.3845 46.0285 29.1467C46.2861 29.0279 47.5344 28.374 47.5344 28.374L48.3269 28.2749L48.5449 28.2353L47.7325 26.6105L47.0192 27.3635C47.0192 27.3635 45.87 27.9579 45.5529 28.1362C45.4142 27.9183 44.582 26.2935 44.4632 26.0557C44.7009 25.9368 46.6625 24.9065 46.6625 24.9065H47.8514L48.109 24.8867L47.2173 23.1628L47.0985 23.2223L41.709 26.0557L42.6799 26.6501C42.6601 26.7294 43.6904 28.7306 43.8489 29.0279Z\" fill=\"white\"/>\\n<path d=\"M77.6122 30.4149L78.6227 29.4043C78.801 29.5034 81.0599 30.5734 81.258 30.6526C81.2382 30.831 81.1193 31.9207 81.0995 32.0396C81.0202 32.0991 80.3465 32.6737 80.3465 32.6737L83.2196 34.0012L82.9818 32.8124C83.0017 32.8124 83.3583 30.078 83.3781 30.0186C83.4178 30.0582 84.1905 29.3449 84.1905 29.3449L84.3094 29.2458L83.497 28.2353C83.5565 28.2353 83.715 24.5895 83.715 24.5895V24.4904L82.5856 23.9554L82.5063 24.0149C82.5063 24.0149 79.7521 26.5511 79.7521 26.5709C79.7521 26.5313 78.702 26.6898 78.702 26.6898L78.5633 26.7294C78.5633 26.7294 78.5633 27.6409 78.5831 27.7796C78.4642 27.8588 76.4233 29.7214 76.4233 29.7214L75.6704 30.1969L75.4326 30.3356L77.5924 31.3659C77.5924 31.3858 77.6122 30.5337 77.6122 30.4149ZM79.554 28.5127C79.8116 28.2551 81.2382 26.9275 81.6741 26.5115C81.6147 27.1059 81.3769 29.0279 81.3571 29.3449C81.0599 29.226 79.8512 28.6514 79.554 28.5127Z\" fill=\"white\"/>\\n<path d=\"M92.651 42.5015C93.3246 42.7393 94.0578 42.66 94.7315 42.2836C95.0683 42.1251 95.3457 41.7882 95.4646 41.5703C95.7222 41.1344 95.7618 40.639 95.7816 40.4805L95.8014 39.7275C95.8014 39.7077 95.7618 39.4105 95.7618 39.3114C95.8411 39.2124 96.2968 38.7566 96.2968 38.7566C96.2968 38.7566 95.7816 37.865 95.7618 37.8452V37.5876C95.7618 36.8941 95.9401 36.4384 96.277 36.2997C96.6931 36.1213 97.6243 36.1412 98.0404 36.9932C98.3773 37.7461 98.4565 38.2415 98.298 38.7963L98.2584 38.935L99.0708 39.2322L99.1104 39.0935C99.3878 38.2415 98.9519 37.1517 98.6745 36.5771C98.0206 35.2495 96.5544 34.1597 95.1079 34.7542C94.9098 34.8532 94.5928 35.0118 94.3946 35.2892C94.1767 35.626 94.0181 36.0817 93.9785 36.5573V36.8743C93.9785 36.8545 93.9389 37.0328 93.9389 37.0724C93.9191 37.0328 93.4435 37.4885 93.4435 37.4885L93.3445 37.5876L93.9191 38.6179V38.6774C93.9191 38.8557 93.9785 39.8266 93.9785 39.8266C93.9587 40.2625 93.7606 40.7183 93.503 40.857C93.1859 41.0947 92.7698 41.1344 92.3537 41.0353C91.9773 40.9362 91.4027 40.6588 90.9668 39.8464C90.4714 38.7765 90.7686 37.9839 91.1253 37.4885L91.2243 37.33L90.3921 36.9734L90.3129 37.0724C89.8373 37.6669 89.6986 38.9944 90.3723 40.322C90.9866 41.4712 91.7791 42.244 92.651 42.5015Z\" fill=\"white\"/>\\n<path d=\"M61.8995 28.1164C61.9788 27.9975 63.445 26.1152 63.663 25.818C63.8809 26.135 65.2085 28.1758 65.2085 28.1758C65.2085 28.1758 65.2481 28.1759 65.2481 28.1957C65.2481 28.3146 65.3076 28.8297 65.3076 28.8297V28.9684H68.3193L67.2097 27.8985C67.2097 27.8985 65.5255 25.4019 65.2481 24.9659C65.3472 24.8471 65.6246 24.3517 65.6246 24.3517C65.6246 24.3517 65.2283 23.9158 65.1292 23.7771C65.2679 23.5988 67.1503 21.0427 67.1503 21.0427L68.0221 20.052L65.3274 20.0322L65.4066 20.2502C65.4066 20.2502 65.6246 20.7455 65.684 20.8842C65.585 21.0031 64.2574 22.7666 64.0394 23.0836C63.8215 22.7666 62.5732 20.8446 62.5732 20.8446V20.805C62.5732 20.7059 62.5137 20.1511 62.5137 20.1511L62.4939 20.0322L59.6803 20.052L60.5918 21.0625C60.5918 21.0625 62.1571 23.4601 62.4147 23.8563C62.3354 23.9752 62.0382 24.4904 62.0382 24.4904C62.0382 24.4904 62.4741 24.9065 62.6128 25.065C62.4543 25.283 60.4332 27.9183 60.4332 27.9579L59.6605 28.6712L59.3633 28.9486L62.058 28.909C62.0778 28.9288 61.9193 28.2353 61.8995 28.1164Z\" fill=\"white\"/>\\n<path d=\"M102.004 48.2279L103.153 51.8143H106.898L103.866 54.0136L105.035 57.5604L102.004 55.3808L98.9722 57.5604L100.121 54.0136L97.0898 51.8143H100.835L102.004 48.2279Z\" fill=\"white\"/>\\n<path d=\"M25.7186 48.2279L26.8877 51.8143H30.6326L27.601 54.0136L28.7502 57.5604L25.7186 55.3808L22.687 57.5604L23.8561 54.0136L20.8047 51.8143H24.5694L25.7186 48.2279Z\" fill=\"white\"/>\\n<path d=\"M31.8213 62.9498H16.5049V64.634H31.8213V62.9498Z\" fill=\"white\"/>\\n<path d=\"M111.613 62.9498H95.96V64.634H111.613V62.9498Z\" fill=\"white\"/>\\n<path d=\"M61.8604 32.4161C61.8604 32.4161 61.4046 32.0396 61.0678 31.8018C60.83 31.8217 60.5923 31.8415 60.3545 31.8811C60.5724 31.9405 61.365 32.2774 61.4641 32.4755L61.8604 32.4161Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M60.3744 32.8718C60.3744 32.8718 59.8791 32.4359 59.146 32.0594C58.8487 32.0991 58.5713 32.1585 58.2939 32.1981C58.8091 32.3368 59.3045 32.6737 59.8593 32.9115L60.3744 32.8718Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M57.5404 33.6446L58.4122 33.387C58.4122 33.387 57.2828 32.8322 56.8865 32.8124C56.6883 32.7133 56.5695 32.6142 56.4109 32.5944C55.9948 32.7133 55.6184 32.8124 55.2617 32.9114C55.5193 32.9511 56.0147 33.0501 56.2128 33.2483C56.7676 33.169 57.1837 33.4662 57.5404 33.6446Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M55.3211 34.6353L56.1731 34.3381C56.0939 34.1597 54.9843 33.6842 54.3304 33.6842C54.1125 33.4861 53.8747 33.4266 53.6567 33.4068C53.3199 33.5257 52.983 33.6446 52.666 33.7635C52.7651 33.7833 53.3793 33.922 53.6765 34.1796C54.2908 34.0805 54.8654 34.3579 55.3211 34.6353Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M51.1004 34.4173C51.3976 34.4768 51.8533 34.2984 52.0713 34.6155C52.5865 34.5758 53.4979 34.9523 53.9933 35.3882L53.0818 35.6062C52.6459 35.3486 51.9524 34.9523 51.2985 35.0118C51.1995 34.7344 50.0701 34.9325 49.9512 34.9325L51.1004 34.4173Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.0002 35.7251C49.2974 35.7647 49.2578 35.844 49.5154 35.9232C50.0504 35.9034 51.0411 36.0817 51.6751 36.4384L50.8628 37.0724C50.4467 36.8148 49.7532 36.5771 49.0993 36.6365C48.9804 36.3393 48.0293 36.3195 47.8906 36.3195L49.0002 35.7251Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.4541 38.1226C45.8108 38.2415 45.9296 38.5585 46.1674 38.8756C46.9005 38.7369 48.03 38.4198 49.0999 38.6774L49.9123 37.9641C48.6838 37.7461 47.3959 37.8056 46.742 37.9839C46.5835 37.7263 46.207 37.4886 46.207 37.4886L45.4541 38.1226Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.2744 40.4607C43.6311 40.5597 43.75 40.9957 43.9877 41.3127C44.602 40.9957 45.989 40.7777 47.376 40.956L48.0893 40.0248C45.989 39.8861 45.137 40.1436 44.4633 40.4607C44.2453 40.0842 43.9085 39.8662 43.9085 39.8662L43.2744 40.4607Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M41.4316 43.1158C41.9072 43.3536 41.8676 43.6508 42.0855 43.9678C42.7196 43.6508 43.9877 43.0762 45.3747 43.2743L46.1078 42.3232C43.9084 42.3628 42.7196 42.5808 42.5611 43.0762C42.3431 42.6997 41.9468 42.3232 41.9468 42.3232L41.4316 43.1158Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.8262 45.6124C40.163 45.8502 40.3612 46.4842 40.5791 46.7814C41.2132 46.4644 42.0256 45.8502 43.4126 46.0483L44.0664 44.9783C42.303 44.9783 41.1537 45.3548 41.015 45.8502C40.7773 45.3152 40.2026 44.7009 40.2026 44.7009L39.8262 45.6124Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.4199 48.2477C38.8955 48.5053 38.9549 49.1195 39.2125 49.4167C39.8465 49.0997 40.758 48.5449 42.1648 48.7034L42.7592 47.6334C41.0552 47.6334 39.8664 48.0099 39.7277 48.5251C39.4304 47.8118 38.8162 47.2173 38.8162 47.2173L38.4199 48.2477Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.1123 51.3783C37.5878 51.6359 37.8058 52.2502 38.0238 52.5672C38.6578 52.2502 39.4108 51.735 40.8176 51.9133L41.2535 50.9226C39.1334 51.0415 38.5786 51.2198 38.42 51.735C38.103 51.1009 37.4095 50.3282 37.4095 50.3282L37.1123 51.3783Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.9434 54.3505C36.4189 54.608 36.5972 55.2223 36.8548 55.5393C37.4691 55.2223 38.4994 54.6477 39.8864 54.826L40.2431 53.7758C38.2022 53.8947 37.3105 54.1127 37.1322 54.6279C36.8944 54.2316 36.1415 53.2805 36.1415 53.2805L35.9434 54.3505Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.9922 57.5009C35.4479 57.9368 35.8046 58.7294 36.0225 59.0464C36.6566 58.7294 37.6275 57.8576 39.0145 58.0557L39.2324 57.1046C37.2114 57.2632 36.8944 57.5009 36.399 58.0954C36.181 57.6991 35.2101 56.3715 35.2101 56.3715L34.9922 57.5009Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.1602 60.9288C34.9725 61.6421 35.3094 62.3158 35.567 62.613C35.8246 62.0582 36.8549 61.5629 38.2419 61.6817L38.4202 60.6712C36.7558 60.7505 36.0029 61.0279 35.7849 61.5034C35.567 61.1269 34.3187 59.839 34.3187 59.839L34.1602 60.9288Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.6846 64.5548C34.1007 64.7331 34.8536 66.0012 35.0914 66.3183C35.131 66.2588 35.1905 66.0607 35.349 65.9022C35.6066 65.5851 36.3 65.169 37.8654 65.2483L37.9248 64.2774C36.1614 64.2972 35.5867 64.7331 35.448 64.9115C35.3093 65.0303 35.2499 65.2681 35.1905 65.387C34.9329 64.6737 33.744 63.4848 33.744 63.4848L33.6846 64.5548Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.5848 71.1926C34.1198 71.3313 34.7935 71.6681 35.0115 71.9653C35.6455 71.6681 36.5372 71.6879 37.6269 72.2824L37.6071 71.252C36.2598 70.6576 35.5861 70.7765 35.0907 71.0539C34.8529 70.6576 33.5254 70.1424 33.5254 70.1424L33.5848 71.1926Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.5452 67.9232C34.0009 68.2006 34.7142 68.9139 34.9322 69.2508C35.2096 68.7554 35.5464 68.5177 37.6071 68.9734L37.6269 67.9629C35.17 67.844 35.2294 68.0818 35.1502 68.3988C34.9322 68.0025 33.5254 66.7938 33.5254 66.7938L33.5452 67.9232Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.0213 74.0458C34.6157 74.2043 35.0318 74.5016 35.2497 74.8186C35.3686 74.5016 35.7451 74.6799 36.2801 74.878C36.7358 75.096 37.0528 75.3338 37.568 75.6112L37.5482 74.5808C36.4188 73.8477 35.3092 73.3127 35.1507 73.8279C34.9327 73.4514 33.7637 72.9164 33.7637 72.9164L34.0213 74.0458Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.417 76.5622C34.9124 76.7604 35.2888 77.0378 35.5266 77.3746C36.0616 77.3152 36.5371 77.5133 37.6666 78.3257L37.5873 77.3548C36.4183 76.4037 35.8436 76.4433 35.4275 76.4433C35.1898 76.0272 34.2783 75.5319 34.2783 75.5319L34.417 76.5622Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.685 79.5938C36.6757 80.5251 37.3494 80.6638 38.0825 81.0006L37.8646 79.9703C37.2305 79.7523 35.8831 79.1975 34.9717 78.2266L35.685 79.5938Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M38.737 83.2C38.737 83.2 37.9048 82.665 37.251 82.1102C37.4887 82.4669 37.7265 82.8037 37.9841 83.1406C38.3209 83.3585 38.7172 83.5765 39.0541 83.6756L38.737 83.2Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.0495 71.47C79.5938 71.4502 77.3944 69.7065 76.7207 69.013L77.8897 68.3591C77.8897 68.3591 79.2965 70.0433 79.7126 70.3802C80.1486 70.7567 80.6241 70.8755 81.0006 70.7368L80.0495 71.47Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.208 67.2099L81.06 66.6749C82.2092 67.9629 82.8433 68.2997 83.2 68.5573C83.4179 68.7158 83.9925 68.1412 83.9529 68.1808C83.7746 68.8545 83.7548 71.7077 83.7746 72.3814L82.8433 72.9759C82.764 71.6879 83.0216 69.231 83.3188 68.7554C83.6161 68.2799 83.3188 68.7158 83.3188 68.7158L83.1405 69.1913C82.3479 69.5084 80.6043 67.5071 80.208 67.2099Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.0811 65.1294L83.7151 64.6539C84.2303 64.9907 84.8247 65.5851 85.6965 66.8731L85.0823 67.4081C84.0718 65.922 83.3386 65.2087 83.0811 65.1294Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.6966 70.8953L86.4297 70.3405C86.5486 69.1121 86.5486 67.7251 86.3504 66.4173L85.6768 66.8731C85.7362 68.5573 85.8749 70.1226 85.6966 70.8953Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.8926 91.8786L50.1105 91.1851C50.9229 91.4229 51.9929 91.9579 53.1619 91.6607C53.6573 92.374 54.0734 92.9288 55.1434 93.0477L54.7669 93.5826C53.7564 93.2062 53.3799 92.8297 52.9043 92.1956C52.1118 92.3542 51.022 92.473 49.8926 91.8786Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.4277 90.1945L50.7646 89.4217C51.5571 89.6595 52.8253 90.0954 53.9943 89.7784C54.2717 90.8087 55.0246 91.2644 55.8767 91.6013L55.5002 92.2551C54.4897 91.8787 54.0339 91.2248 53.6178 90.5313C52.7856 90.6898 51.6364 90.6106 50.4277 90.1945Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M52.349 93.2656C51.18 93.5629 50.5459 93.0279 49.7336 92.7901L49.6543 93.0477C50.1695 93.3251 50.7044 93.5629 51.2592 93.8006C51.5763 93.8403 51.8735 93.8006 52.1905 93.7412C52.5868 94.1969 52.9236 94.4149 53.3199 94.613C53.637 94.7319 53.9342 94.831 54.2314 94.93L54.489 94.5338C53.7558 94.3554 52.8642 93.761 52.349 93.2656Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M54.7464 88.3121C53.4981 88.4706 52.5073 88.4111 51.3779 88.0545L51.7742 87.3214C52.5866 87.5591 54.0132 87.8365 55.1624 87.5393L54.7464 88.3121Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.3013 87.3015C55.4796 88.0545 56.3911 89.2632 57.1242 89.5604L56.5496 90.234C55.3607 89.5406 55.2617 89.0452 54.7861 88.1734L55.3013 87.3015Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.9162 86.6279C54.9057 86.6279 53.8159 86.5882 52.6865 85.974L53.1621 85.2805C53.9546 85.5183 55.302 86.1127 56.4314 85.8749L55.9162 86.6279Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.4702 85.8155C56.6288 86.5684 57.5997 87.8365 58.3526 88.1338L57.778 88.8074C56.7873 88.431 56.3712 87.4601 55.9551 86.5486L56.4702 85.8155Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.5209 84.4681C57.3029 84.8644 55.4404 84.1709 54.3506 83.6557L54.9846 82.9424C56.6292 83.6557 56.2329 83.9728 58.2144 83.9331L57.5209 84.4681Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.4523 83.7548C58.8288 85.4985 59.1854 86.2514 59.7997 86.4297L59.2052 87.0638C58.4127 86.8458 58.056 85.1814 57.7588 84.2898L58.4523 83.7548Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.3939 81.5158C60.5127 82.4867 61.2855 84.1907 61.9592 84.7257L61.2062 85.2211C60.2948 84.5672 59.7994 82.7245 59.6211 82.1895L60.3939 81.5158Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M62.2561 80.7629C61.4239 80.8025 60.0567 79.9703 59.0264 79.1975L59.9378 78.6229C60.5917 79.257 61.9192 80.1288 63.0288 80.109L62.2561 80.7629Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.4827 82.3084C58.6505 82.348 57.3031 81.5356 56.2529 80.743L57.1842 80.1684C57.8381 80.8223 59.1656 81.6743 60.2752 81.6545L59.4827 82.3084Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.2271 79.9108C63.3262 80.8817 63.6036 82.6254 64.2575 83.1406L63.346 83.7152C62.6129 82.7245 62.712 81.9913 62.4346 80.5647L63.2271 79.9108Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.2082 79.0192C64.3364 78.9796 63.0089 77.9889 61.9785 77.0378L63.0089 76.5424C63.6429 77.2954 64.9507 78.3257 66.1197 78.405L65.2082 79.0192Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.3386 78.2266C66.3584 79.2371 66.4575 81.1195 67.1312 81.6941L66.1009 82.2291C65.447 81.0997 65.5857 80.3467 65.4668 78.8211L66.3386 78.2266Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.5774 77.1765C67.7253 77.0774 66.4572 75.9876 65.4863 74.9771L66.5365 74.5412C67.1111 75.3337 68.3594 76.4631 69.4888 76.6415L68.5774 77.1765Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M69.766 76.4632C69.6868 77.4737 69.6472 79.3759 70.2614 79.9901L69.2112 80.426C68.6564 79.257 68.8348 78.504 68.8149 76.9982L69.766 76.4632Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M71.9855 75.413C71.1335 75.3139 69.8456 74.2242 68.8945 73.2136L69.9645 72.7777C70.5589 73.5505 71.7874 74.6997 72.9366 74.878L71.9855 75.413Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M73.1741 74.6799C73.1146 75.7102 73.0948 77.5727 73.7091 78.2266L72.6589 78.6625C72.0843 77.5133 72.2824 76.7406 72.2626 75.2149L73.1741 74.6799Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M75.8889 73.5108C75.0369 73.3919 73.7687 72.3021 72.7979 71.2916L73.848 70.8557C74.4226 71.6483 75.6709 72.7975 76.8003 72.956L75.8889 73.5108Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.0572 72.7777C76.9977 73.7882 76.9779 75.6904 77.5723 76.3245L76.5222 76.7604C75.9476 75.6111 76.1457 74.8384 76.1259 73.3325L77.0572 72.7777Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.0204 70.8161C80.9609 71.8266 80.9411 73.7288 81.5553 74.3628L80.5052 74.7988C79.9306 73.6297 80.1287 72.8768 80.1287 71.3709L81.0204 70.8161Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.6777 69.3697L88.4307 68.7752C88.5496 67.4675 88.4703 65.9814 88.2325 64.8718L87.6975 65.2483C87.8561 66.774 87.8561 68.5771 87.6777 69.3697Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M89.7584 67.7845L90.4717 67.1108C90.4915 64.9313 90.3726 64.3368 90.1349 63.2272L89.5801 63.8018C89.7584 64.2972 89.9169 64.8718 89.7584 67.7845Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M91.7001 66.0211L92.354 65.1492C92.4729 63.9208 92.0766 62.3752 91.8586 61.2855L91.3633 61.9393C91.6605 63.0291 91.8586 64.9115 91.7001 66.0211Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.5432 63.683L94.0187 62.8904C94.0187 61.4836 93.0676 59.6012 92.711 59.9381L92.4336 60.3542C93.1667 61.2855 93.4441 62.3158 93.5432 63.683Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.7116 61.7016L94.989 60.9288C94.672 58.8087 93.6813 57.9963 93.5822 58.4718L93.3643 58.7294C93.7011 59.0068 94.2955 59.4427 94.7116 61.7016Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M95.5247 59.7994L95.7624 58.8483C95.6832 57.6991 94.5736 56.3715 94.4349 56.7876L94.2764 57.1839C94.7123 57.5604 95.2076 58.1746 95.5247 59.7994Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M86.8262 61.8799L87.4206 61.3449C88.1537 61.8403 89.1444 62.9895 89.5209 63.7622L89.0255 64.2972C88.6689 63.3858 87.4206 62.2365 86.8262 61.8799Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.1221 63.5641L85.7165 63.0291C86.4496 63.5245 87.4403 64.6737 87.8168 65.4464L87.3215 65.9616C86.945 65.07 85.7165 63.9208 85.1221 63.5641Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M88.6689 60.0768L89.2436 59.6012C89.9965 60.1164 90.9674 61.0873 91.3439 61.86L90.908 62.4545C90.5315 61.5628 89.085 60.3542 88.6689 60.0768Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M90.3135 58.4916L90.8088 57.9567C91.542 58.452 92.1562 59.4427 92.5525 60.2155L92.176 60.7505C91.7995 59.839 90.9079 58.8483 90.3135 58.4916Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M91.6016 56.9065L91.978 56.3913C92.6914 56.8867 93.1669 57.7189 93.5632 58.4916L93.1867 59.0861C92.83 58.1746 92.196 57.283 91.6016 56.9065Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.5723 55.4204L92.8695 54.9449C93.7215 55.7176 93.9791 56.2328 94.3555 57.0056L94.098 57.5405C93.7215 56.5102 93.3648 56.1139 92.5723 55.4204Z\" fill=\"#1F1F1F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.3447 54.0334L93.5032 53.5579C94.3553 54.4099 94.5336 54.6279 94.9299 55.4006L94.7119 55.8563C94.3553 54.9647 93.9392 54.5486 93.3447 54.0334Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M94.8701 55.6186C95.1277 55.8167 95.3853 56.0941 95.6627 56.5102C95.5834 56.1536 95.5042 55.8167 95.4051 55.4799L95.0881 55.1232L94.8701 55.6186Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M93.9199 52.7257C94.3558 53.2013 94.7719 53.7164 95.1286 54.4892C94.9503 53.9542 94.7521 53.3994 94.554 52.8842C94.4351 52.7257 94.2766 52.5474 94.019 52.2898L93.9199 52.7257Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M53.498 60.909H48.386L45.9092 58.5907L46.781 44.9189H80.0293L82.3872 47.1381V61.0675H78.1668L75.5315 58.5907C76.0268 55.2421 75.1154 52.3294 70.2807 51.9331L69.8844 51.8737V60.7901C69.8844 62.7517 72.8367 63.9009 72.8367 63.9009C72.8367 63.9009 69.8844 64.7331 69.8844 66.8532V77.335C69.924 78.0681 69.5476 78.5833 70.5779 78.5833L71.8064 77.5728L73.8869 79.4947V86.4892H57.3816L54.6671 83.9133L58.2733 79.3164H59.1451C60.1754 79.3164 61.186 78.9003 61.186 77.5926V67.2297C61.186 65.0105 58.5705 64.2576 58.5705 64.2576C58.5705 64.2576 61.186 63.3659 61.186 61.1269V51.6557H60.6906C54.0726 51.6557 53.5179 54.8062 53.5179 60.057V60.909H53.498Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M59.4828 76.2452V65.8625C59.4828 63.6433 56.8673 62.9102 56.8673 62.9102C56.8673 62.9102 59.4828 62.0186 59.4828 59.7994V50.5461H58.9875C53.1621 50.5461 50.8834 52.6861 50.8834 57.5009C50.8834 57.5009 50.8636 57.5009 50.8636 58.1944H46.3262V45.335H79.6141V58.1944H75.9485V57.2433C75.9485 53.1616 73.1348 50.6056 67.3887 50.6056L66.9528 50.5659V59.8192C66.9528 61.7808 69.9249 62.93 69.9249 62.93C69.9249 62.93 66.9528 63.7622 66.9528 65.8824V76.3443C66.9528 77.7511 68.0822 77.969 69.1125 77.969H71.3714V83.4972H55.0643V77.969H57.442C58.4723 77.969 59.4828 77.5728 59.4828 76.2452Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M79.633 44.8793H45.9092V58.6105H51.2987L51.3185 57.5406C51.3185 52.8644 53.5377 50.9821 58.9866 50.9821H59.046V59.7994C59.046 61.6619 56.7476 62.4941 56.7278 62.4941L55.4398 62.9499L56.7476 63.3263C56.8466 63.3461 59.046 64.0198 59.046 65.8626V76.2452C59.046 77.0972 58.511 77.5331 57.4411 77.5331H54.6473V83.953H71.8064V77.5331H69.1315C67.7247 77.5331 67.4076 77.0576 67.4076 76.3443V65.8824C67.4076 64.1189 70.0231 63.3461 70.0231 63.3461L71.2714 62.9895L70.0627 62.5338C70.0429 62.4941 67.3878 61.4638 67.3878 59.8192V51.0217C72.6188 51.0217 75.5117 53.2211 75.5117 57.2235L75.4918 58.6105H80.0095V44.8793H79.633ZM79.1971 45.7511V57.7387H76.4231V57.2235C76.4231 52.7257 73.1339 50.13 67.4274 50.13L67.0113 50.1102L66.5556 50.0904V59.7994C66.5556 61.3053 67.9624 62.3356 68.9333 62.8904C67.9624 63.3461 66.5556 64.2378 66.5556 65.8824V76.3443C66.5556 77.7313 67.4274 78.405 69.1513 78.405H70.9544V83.0811H55.5191V78.405H57.4411C59.0064 78.405 59.9178 77.6124 59.9178 76.2452V65.8626C59.9178 64.218 58.729 63.3263 57.8572 62.8904C58.729 62.3951 59.9178 61.444 59.9178 59.7994V50.1102H58.9866C53.0819 50.1102 50.4466 52.3889 50.4466 57.4811L50.5259 57.2434C50.5259 57.2434 50.4863 57.4811 50.4665 57.7387H46.7612V45.7511H79.1971Z\" fill=\"white\"/>\\n<path d=\"M100.082 104.619H99.131V107.254H98.497V104.619H97.5459V104.025H100.082V104.619ZM104.382 107.254H103.748V104.698H103.728L102.816 107.254H102.202L101.33 104.698H101.291V107.254H100.657V104.025H101.766L102.519 106.145H102.539L103.292 104.025H104.402V107.254H104.382Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_340_11081\">\\n<rect width=\"99.0712\" height=\"99.0712\" fill=\"white\" transform=\"translate(14.4648 14.4644)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:99,intrinsicWidth:99,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vc9U4JupXiGlOVpEyW6jYLd7g.svg\"},className:\"framer-1e8j60y\",\"data-framer-name\":\"Gators\",layoutDependency:layoutDependency,layoutId:\"ClF32rJu9\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rBe2L.framer-1szyted, .framer-rBe2L .framer-1szyted { display: block; }\",\".framer-rBe2L.framer-1bl2fyr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1267px; }\",\".framer-rBe2L .framer-1ddzlk2-container { flex: 1 0 0px; height: 116px; position: relative; width: 1px; }\",\".framer-rBe2L .framer-1oab8c3, .framer-rBe2L .framer-lqe795, .framer-rBe2L .framer-17o8f97, .framer-rBe2L .framer-6epudb, .framer-rBe2L .framer-1e5btsl, .framer-rBe2L .framer-1hindo0, .framer-rBe2L .framer-1w6jbdg, .framer-rBe2L .framer-1ej0n9y { height: 98px; position: relative; width: 98px; }\",\".framer-rBe2L .framer-1sjhkmz { height: 98px; overflow: hidden; position: relative; width: 98px; }\",\".framer-rBe2L .framer-p1mdx0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-rBe2L .framer-1csrvqq, .framer-rBe2L .framer-ybmexx, .framer-rBe2L .framer-1qnxcya, .framer-rBe2L .framer-15xx3cd, .framer-rBe2L .framer-ujlxrj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 98px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 98px; }\",\".framer-rBe2L .framer-1a42vkj, .framer-rBe2L .framer-11fw5au, .framer-rBe2L .framer-1t57gk8, .framer-rBe2L .framer-18stwai, .framer-rBe2L .framer-qq6tah { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); position: relative; width: 98px; }\",\".framer-rBe2L .framer-1e8j60y { height: 99px; position: relative; width: 99px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rBe2L .framer-1csrvqq, .framer-rBe2L .framer-ybmexx, .framer-rBe2L .framer-1qnxcya, .framer-rBe2L .framer-15xx3cd, .framer-rBe2L .framer-ujlxrj { gap: 0px; } .framer-rBe2L .framer-1csrvqq > *, .framer-rBe2L .framer-ybmexx > *, .framer-rBe2L .framer-1qnxcya > *, .framer-rBe2L .framer-15xx3cd > *, .framer-rBe2L .framer-ujlxrj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rBe2L .framer-1csrvqq > :first-child, .framer-rBe2L .framer-ybmexx > :first-child, .framer-rBe2L .framer-1qnxcya > :first-child, .framer-rBe2L .framer-15xx3cd > :first-child, .framer-rBe2L .framer-ujlxrj > :first-child { margin-left: 0px; } .framer-rBe2L .framer-1csrvqq > :last-child, .framer-rBe2L .framer-ybmexx > :last-child, .framer-rBe2L .framer-1qnxcya > :last-child, .framer-rBe2L .framer-15xx3cd > :last-child, .framer-rBe2L .framer-ujlxrj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 116\n * @framerIntrinsicWidth 1267\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG_MbfHfai=withCSS(Component,css,\"framer-rBe2L\");export default FramerG_MbfHfai;FramerG_MbfHfai.displayName=\"Ticker\";FramerG_MbfHfai.defaultProps={height:116,width:1267};addFonts(FramerG_MbfHfai,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG_MbfHfai\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"116\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1267\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G_MbfHfai.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRmMGjT9QuubTc3sL0W9/tyKtgI6f46iVchcXH1t7/bjqF1t6Hd.js\";import Badge2 from\"https://framerusercontent.com/modules/VlKOGxHm5uHQOAd5G4Wk/Io5yMAQZga5Xdcc9AQgj/EZIESPnI2.js\";import Badge from\"https://framerusercontent.com/modules/AXdVHfaUlrvBqjdn9w8h/NMr1VzpAMYTQ9S1UXXdX/z_6X07ADe.js\";const BadgeFonts=getFonts(Badge);const Badge2Fonts=getFonts(Badge2);const EmbedFonts=getFonts(Embed);const CarouselFonts=getFonts(Carousel);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"l7pILWivZ\",\"cF8JtCPRX\",\"LEFhFXzte\",\"R2JOHvVFP\"];const serializationHash=\"framer-NhVI0\";const variantClassNames={cF8JtCPRX:\"framer-v-htb2j9\",l7pILWivZ:\"framer-v-dbpmk2\",LEFhFXzte:\"framer-v-1jmsu8w\",R2JOHvVFP:\"framer-v-1jyb7z9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"R2JOHvVFP\",Desktop:\"l7pILWivZ\",Phone:\"LEFhFXzte\",tab:\"cF8JtCPRX\"};const getProps=({height,hover,id,width,...props})=>{return{...props,EwHuEwhza:hover??props.EwHuEwhza,variant:humanReadableVariantMap[props.variant]??props.variant??\"l7pILWivZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,EwHuEwhza,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l7pILWivZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1o2mqzm=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(EwHuEwhza){const res=await EwHuEwhza(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"R2JOHvVFP\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"R2JOHvVFP\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dbpmk2\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"l7pILWivZ\",onMouseEnter:onMouseEnter1o2mqzm,ref:refBinding,style:{...style},...addPropertyOverrides({cF8JtCPRX:{\"data-framer-name\":\"tab\"},LEFhFXzte:{\"data-framer-name\":\"Phone\"},R2JOHvVFP:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1r46tw4\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"c5dBsrKEh\",style:{transformPerspective:1200},variants:{LEFhFXzte:{transformPerspective:undefined},R2JOHvVFP:{transformPerspective:undefined}},...addPropertyOverrides({LEFhFXzte:{__framer__styleAppearEffectEnabled:undefined},R2JOHvVFP:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+80+0+0+0,...addPropertyOverrides({LEFhFXzte:{y:(componentViewport?.y||0)+64+0+0+0},R2JOHvVFP:{y:(componentViewport?.y||0)+64+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wyn7qu-container\",layoutDependency:layoutDependency,layoutId:\"VJy_50tSR-container\",nodeId:\"VJy_50tSR\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"VJy_50tSR\",layoutId:\"VJy_50tSR\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Testimonials\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by organizations that value teamwork and collaboration as key drivers of success\"})}),className:\"framer-1kuerls\",\"data-framer-name\":\"30,000+ designers use Clonify to design and collaborate.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WNKhnYqp_\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LEFhFXzte:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Trusted by organizations that value teamwork and collaboration as key drivers of success\"})})},R2JOHvVFP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Trusted by organizations that value teamwork and collaboration as key drivers of success\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+80+0+0+116,...addPropertyOverrides({LEFhFXzte:{y:(componentViewport?.y||0)+64+0+0+116},R2JOHvVFP:{y:(componentViewport?.y||0)+64+0+0+116}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1aw9qmg-container\",layoutDependency:layoutDependency,layoutId:\"OWdNwBtyn-container\",nodeId:\"OWdNwBtyn\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Badge2,{D2jRnfGwK:48,height:\"100%\",id:\"OWdNwBtyn\",layoutId:\"OWdNwBtyn\",qIWJFFokM:\"rgb(237, 237, 237)\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"\u2728 Next-gen coaching platform\",SA9jAg9_n:false,variant:\"Gw_nQLevF\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sti2pb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sAeIqYP2B-container\",nodeId:\"sAeIqYP2B\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Testimomials\",arrowObject:{arrowFill:\"var(--token-f7595720-0078-449b-a5fb-e496f48909e5, rgb(250, 112, 54))\",arrowPadding:0,arrowRadius:12,arrowSize:40,showMouseControls:true},axis:false,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"},fadeWidth:20},gap:24,height:\"100%\",id:\"sAeIqYP2B\",layoutId:\"sAeIqYP2B\",padding:0,paddingBottom:30,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2pmidd\",\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"yYTxEp3dS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1822j1e\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"CVSpiFcGp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jv3ne9\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"Uf5qtDls7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7zzekj-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nos2W2wrY-container\",nodeId:\"nos2W2wrY\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/854432479?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Chris Newell: Testimonial\"></iframe>',id:\"nos2W2wrY\",layoutId:\"nos2W2wrY\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlosro\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"i435ri3Se\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11l3h91\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cvojdR3qV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Chris Newell\"})}),className:\"framer-uiqrb5\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"NL2Mjxod6\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Senior Director of Organizational Development\"})}),className:\"framer-fc2xmb\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"gR8q5b94v\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Boston Children's Hospital\"})})}),className:\"framer-by9sr4\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"OebbODyxG\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hv3aj0\",\"data-framer-name\":\"Jen Braun\",layoutDependency:layoutDependency,layoutId:\"bXKixW3gP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14zk402\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"ixdByv19B\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4bxg6\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"xXbH8pPOR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jxezsu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pxhImEUBH-container\",nodeId:\"pxhImEUBH\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/857099921?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Jen Braun - SurePeople Testimonial\"></iframe>',id:\"pxhImEUBH\",layoutId:\"pxhImEUBH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pu4scm\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"C_OReocnq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mhlpm4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Cyl414sQY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Jen Braun\"})}),className:\"framer-1n6p1iv\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Ov6lzQ0Fk\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Director of Workforce & Organizational Development\"})}),className:\"framer-1st2ure\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Qv8mHkLw7\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"American Hospital Association\"})})}),className:\"framer-1v43ice\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"SwMsubp8m\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-imsqvg\",\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"Q8mQiYfaz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fm5otq\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"deNaemeD_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kgxbk7\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"hkE06gKyc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ohvhl-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zFSUMpnYH-container\",nodeId:\"zFSUMpnYH\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/857099580?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Inez Stewart_SurePeople Testimonial\"></iframe>',id:\"zFSUMpnYH\",layoutId:\"zFSUMpnYH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qtnnkv\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"BwkwRN_se\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pps1t0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Lz6UI1dwb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Inez Stewart\"})}),className:\"framer-1r0jfjp\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"EVAf_rIHv\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Cheif Human Resources Officer\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-1wfgjw3\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"lSxu_g2kI\",style:{\"--extracted-2gxw0f\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Johns Hopkins Medicine\"})})}),className:\"framer-jfen0l\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"au2idVZUU\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12o9d94\",\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"OE34JbVU7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-173kjzf\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"GoGmCKnGD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wggf0\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"ofNVtRA_M\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8qqkvq-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n_XrujIBr-container\",nodeId:\"n_XrujIBr\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/853823544?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Lisa DeAngelis: Testimonial\"></iframe>',id:\"n_XrujIBr\",layoutId:\"n_XrujIBr\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ojyg6\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"fpP4Dp69U\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nmwa7f\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"zHkTuNTth\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Lisa DeAngelis\"})}),className:\"framer-wntj8y\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"LDgcQ15G_\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"CEO\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-1rj4ugw\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"dhaQdCtHW\",style:{\"--extracted-2gxw0f\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dragonfly Coaching\"})})}),className:\"framer-1dkifa3\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"mxP2LfBH6\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1820r4c\",\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"qu_ocecps\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-160kbgv\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"XPpoH2ZoN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pty709\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"V7BcdoNGq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fqx17h-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZX_lt4dC5-container\",nodeId:\"ZX_lt4dC5\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/853443308?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Bill O\\'Brien Testimonial\"></iframe>',id:\"ZX_lt4dC5\",layoutId:\"ZX_lt4dC5\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13xtxlt\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"D6P6LRPn5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-juu1xx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"K3AA899Fj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Bill O'Brien\"})}),className:\"framer-1vqmd7o\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"QHAsEZ_jk\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"CEO\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-18ncbuk\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"n9gJo81J7\",style:{\"--extracted-2gxw0f\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Mission Development Corp.\"})})}),className:\"framer-1ah9yc1\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"HfVRiqCDm\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rgx9qv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LRJd8IyKn-container\",nodeId:\"LRJd8IyKn\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Testimomials\",arrowObject:{arrowFill:\"var(--token-f7595720-0078-449b-a5fb-e496f48909e5, rgb(250, 112, 54))\",arrowPadding:0,arrowRadius:12,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"},fadeWidth:20},gap:24,height:\"100%\",id:\"LRJd8IyKn\",layoutId:\"LRJd8IyKn\",padding:0,paddingBottom:30,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19unnir\",\"data-framer-name\":\"Lisa\",layoutDependency:layoutDependency,layoutId:\"PAorwm9Cz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18290v6\",\"data-border\":true,\"data-framer-name\":\"Optum\",layoutDependency:layoutDependency,layoutId:\"FDAaud264\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qxgkae\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"jxoN7ZXkk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p09kdm-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OVFLBF7gq-container\",nodeId:\"OVFLBF7gq\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/853823544?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Lisa DeAngelis: Testimonial\"></iframe>',id:\"OVFLBF7gq\",layoutId:\"OVFLBF7gq\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rajzcg\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"HWz9suzBf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pme26e\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BvPgiIjG9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Lisa DeAngelis\"})}),className:\"framer-o3ysom\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"vUlOz2kvc\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"CEO\"})}),className:\"framer-pf7px8\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"LTYKlCEMG\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dragonfly Coaching\"})})}),className:\"framer-zxunsc\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"YXjQnQYcl\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dagclv\",\"data-framer-name\":\"Inez\",layoutDependency:layoutDependency,layoutId:\"Sf_ivwfpc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gk45tn\",\"data-border\":true,\"data-framer-name\":\"Care\",layoutDependency:layoutDependency,layoutId:\"QLKZ0BQBC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6y9ds1\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"kpB8mv9z7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f92iu9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ubB9N2pzu-container\",nodeId:\"ubB9N2pzu\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/857099580?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Inez Stewart_SurePeople Testimonial\"></iframe>',id:\"ubB9N2pzu\",layoutId:\"ubB9N2pzu\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwd1q4\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"YNgotkvWb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hi8vli\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"YdLNyxORK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Inez Stewart\"})}),className:\"framer-1o19b01\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Kt1uRFkOG\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Cheif Human Resources Officer\"})}),className:\"framer-1rs4zeh\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"hzbD3g_lj\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Johns Hopkins Medicine\"})})}),className:\"framer-1sgkff4\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"tcNqpzGDr\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kw184f\",\"data-framer-name\":\"Aerin\",layoutDependency:layoutDependency,layoutId:\"q7rdZTtw0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wu6czj\",\"data-border\":true,\"data-framer-name\":\"Aerin\",layoutDependency:layoutDependency,layoutId:\"fnFNeuQXG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-154f4td\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"ikoMsdNSK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jrwo80-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Qg9EdGQBX-container\",nodeId:\"Qg9EdGQBX\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/857099921?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Jen Braun - SurePeople Testimonial\"></iframe>',id:\"Qg9EdGQBX\",layoutId:\"Qg9EdGQBX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gcm1y\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"mhnyZFIla\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o9twer\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"uQzos4cVU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Jen Braun\"})}),className:\"framer-1wcky38\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"RbTZOPBjw\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Director of Workforce & Organizational Development\"})}),className:\"framer-8g23ca\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"mhMXUn4N2\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"American Hospital Association\"})})}),className:\"framer-1mavm7k\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"rpXmVxehd\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4fp6le\",\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"xeGr0ta5Y\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpt5w5\",\"data-border\":true,\"data-framer-name\":\"Chris\",layoutDependency:layoutDependency,layoutId:\"bofubd3Pi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpaguf\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"GmGX2i0bq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14dmek-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WZfmZlX_d-container\",nodeId:\"WZfmZlX_d\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/854432479?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Chris Newell: Testimonial\"></iframe>',id:\"WZfmZlX_d\",layoutId:\"WZfmZlX_d\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jqi43h\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"p51hrSLUl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yw1qzh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"knRu7rw2M\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Chris Newell\"})}),className:\"framer-1qhch1h\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"szl2kRcl1\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Senior Director of Organizational Development\"})}),className:\"framer-g898cn\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Sqpw7xUfo\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Boston Children's Hospital\"})})}),className:\"framer-yjvi5q\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"qOGUltDOb\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ksymxm\",\"data-framer-name\":\"Bill\",layoutDependency:layoutDependency,layoutId:\"DGRk5gBwf\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v9c42b\",layoutDependency:layoutDependency,layoutId:\"UGf117pDM\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wxqvqy\",\"data-border\":true,\"data-framer-name\":\"Optum\",layoutDependency:layoutDependency,layoutId:\"kGIzekiWS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-scjd10\",\"data-border\":true,\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"dPvMEvoQG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xvg2vu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"s7nStp_7K-container\",nodeId:\"s7nStp_7K\",rendersWithMotion:true,scopeId:\"irIGTzDeI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/853443308?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Bill O\\'Brien Testimonial\"></iframe>',id:\"s7nStp_7K\",layoutId:\"s7nStp_7K\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p3r0ee\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"zZLZ0hBpd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qy40ie\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"RMH7mjtNY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Bill O'Brien\"})}),className:\"framer-ct6u6c\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"RevIfZiDb\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"CEO\"})}),className:\"framer-1okiejd\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Yay8L2jDo\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Mission Development Corp.\"})})}),className:\"framer-1st3e1g\",fonts:[\"FS;Work Sans-medium\",\"FS;Work Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"JWyx7n7bA\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({LEFhFXzte:{axis:false}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NhVI0.framer-1ke1m23, .framer-NhVI0 .framer-1ke1m23 { display: block; }\",\".framer-NhVI0.framer-dbpmk2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-NhVI0 .framer-1r46tw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 842px; }\",\".framer-NhVI0 .framer-wyn7qu-container, .framer-NhVI0 .framer-1aw9qmg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NhVI0 .framer-1kuerls { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-NhVI0 .framer-1sti2pb-container { flex: none; height: auto; position: relative; width: 240px; }\",\".framer-NhVI0 .framer-2pmidd, .framer-NhVI0 .framer-hv3aj0, .framer-NhVI0 .framer-imsqvg, .framer-NhVI0 .framer-12o9d94, .framer-NhVI0 .framer-1820r4c { height: 265px; overflow: hidden; position: relative; width: 240px; }\",\".framer-NhVI0 .framer-1822j1e, .framer-NhVI0 .framer-14zk402, .framer-NhVI0 .framer-fm5otq, .framer-NhVI0 .framer-173kjzf, .framer-NhVI0 .framer-160kbgv, .framer-NhVI0 .framer-18290v6, .framer-NhVI0 .framer-1gk45tn, .framer-NhVI0 .framer-wu6czj, .framer-NhVI0 .framer-jpt5w5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 16px 20px 24px 16px; position: absolute; top: 0px; width: min-content; }\",\".framer-NhVI0 .framer-1jv3ne9, .framer-NhVI0 .framer-f4bxg6, .framer-NhVI0 .framer-kgxbk7, .framer-NhVI0 .framer-16wggf0, .framer-NhVI0 .framer-1pty709 { aspect-ratio: 1.775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); overflow: hidden; position: relative; width: 199px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NhVI0 .framer-7zzekj-container, .framer-NhVI0 .framer-jxezsu-container, .framer-NhVI0 .framer-11ohvhl-container, .framer-NhVI0 .framer-8qqkvq-container, .framer-NhVI0 .framer-1fqx17h-container, .framer-NhVI0 .framer-1f92iu9-container, .framer-NhVI0 .framer-1jrwo80-container, .framer-NhVI0 .framer-14dmek-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-NhVI0 .framer-1rlosro, .framer-NhVI0 .framer-pu4scm, .framer-NhVI0 .framer-qtnnkv, .framer-NhVI0 .framer-11ojyg6, .framer-NhVI0 .framer-13xtxlt, .framer-NhVI0 .framer-10gcm1y { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-NhVI0 .framer-11l3h91, .framer-NhVI0 .framer-mhlpm4, .framer-NhVI0 .framer-1pps1t0, .framer-NhVI0 .framer-1nmwa7f, .framer-NhVI0 .framer-juu1xx, .framer-NhVI0 .framer-pme26e, .framer-NhVI0 .framer-1hi8vli, .framer-NhVI0 .framer-o9twer, .framer-NhVI0 .framer-yw1qzh, .framer-NhVI0 .framer-qy40ie { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NhVI0 .framer-uiqrb5, .framer-NhVI0 .framer-fc2xmb, .framer-NhVI0 .framer-by9sr4, .framer-NhVI0 .framer-1n6p1iv, .framer-NhVI0 .framer-1st2ure, .framer-NhVI0 .framer-1v43ice, .framer-NhVI0 .framer-1r0jfjp, .framer-NhVI0 .framer-1wfgjw3, .framer-NhVI0 .framer-jfen0l, .framer-NhVI0 .framer-wntj8y, .framer-NhVI0 .framer-1rj4ugw, .framer-NhVI0 .framer-1dkifa3, .framer-NhVI0 .framer-1vqmd7o, .framer-NhVI0 .framer-18ncbuk, .framer-NhVI0 .framer-1ah9yc1, .framer-NhVI0 .framer-o3ysom, .framer-NhVI0 .framer-pf7px8, .framer-NhVI0 .framer-zxunsc, .framer-NhVI0 .framer-1o19b01, .framer-NhVI0 .framer-1rs4zeh, .framer-NhVI0 .framer-1sgkff4, .framer-NhVI0 .framer-1wcky38, .framer-NhVI0 .framer-8g23ca, .framer-NhVI0 .framer-1mavm7k, .framer-NhVI0 .framer-1qhch1h, .framer-NhVI0 .framer-g898cn, .framer-NhVI0 .framer-yjvi5q, .framer-NhVI0 .framer-ct6u6c, .framer-NhVI0 .framer-1okiejd, .framer-NhVI0 .framer-1st3e1g { flex: none; height: auto; max-width: 389.5px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NhVI0 .framer-rgx9qv-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-NhVI0 .framer-19unnir, .framer-NhVI0 .framer-1dagclv, .framer-NhVI0 .framer-kw184f, .framer-NhVI0 .framer-4fp6le, .framer-NhVI0 .framer-1ksymxm { height: 302px; overflow: hidden; position: relative; width: 336px; }\",\".framer-NhVI0 .framer-qxgkae, .framer-NhVI0 .framer-6y9ds1, .framer-NhVI0 .framer-154f4td, .framer-NhVI0 .framer-1rpaguf, .framer-NhVI0 .framer-scjd10 { aspect-ratio: 1.775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NhVI0 .framer-p09kdm-container, .framer-NhVI0 .framer-1xvg2vu-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); pointer-events: auto; position: absolute; top: 0px; width: 100%; }\",\".framer-NhVI0 .framer-1rajzcg, .framer-NhVI0 .framer-1xwd1q4, .framer-NhVI0 .framer-p3r0ee { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 278px; }\",\".framer-NhVI0 .framer-1jqi43h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-NhVI0 .framer-v9c42b { 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: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NhVI0 .framer-1wxqvqy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 16px 20px 24px 16px; position: relative; width: min-content; }\",\".framer-NhVI0.framer-v-htb2j9.framer-dbpmk2 { width: 1024px; }\",\".framer-NhVI0.framer-v-htb2j9 .framer-1r46tw4, .framer-NhVI0.framer-v-1jmsu8w .framer-1r46tw4, .framer-NhVI0.framer-v-1jmsu8w .framer-1kuerls, .framer-NhVI0.framer-v-1jmsu8w .framer-rgx9qv-container, .framer-NhVI0.framer-v-1jyb7z9 .framer-1r46tw4, .framer-NhVI0.framer-v-1jyb7z9 .framer-1kuerls { width: 100%; }\",\".framer-NhVI0.framer-v-htb2j9 .framer-1kuerls { max-width: 800px; width: 80%; }\",\".framer-NhVI0.framer-v-htb2j9 .framer-rgx9qv-container { width: 90%; }\",\".framer-NhVI0.framer-v-1jmsu8w.framer-dbpmk2 { gap: 24px; padding: 64px 16px 0px 16px; width: 390px; }\",\".framer-NhVI0.framer-v-1jyb7z9.framer-dbpmk2 { gap: 24px; padding: 64px 16px 0px 16px; width: 240px; }\",...sharedStyle.css,'.framer-NhVI0[data-border=\"true\"]::after, .framer-NhVI0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 808\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cF8JtCPRX\":{\"layout\":[\"fixed\",\"auto\"]},\"LEFhFXzte\":{\"layout\":[\"fixed\",\"auto\"]},\"R2JOHvVFP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EwHuEwhza\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerirIGTzDeI=withCSS(Component,css,\"framer-NhVI0\");export default FramerirIGTzDeI;FramerirIGTzDeI.displayName=\"Testimonials\";FramerirIGTzDeI.defaultProps={height:808,width:1440};addPropertyControls(FramerirIGTzDeI,{variant:{options:[\"l7pILWivZ\",\"cF8JtCPRX\",\"LEFhFXzte\",\"R2JOHvVFP\"],optionTitles:[\"Desktop\",\"tab\",\"Phone\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},EwHuEwhza:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerirIGTzDeI,[{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:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MBOJEUZXMXZXHAW3KKWUFI6R7OIPIRYU/FBJ6H6I7LKZ2WGOVP25FDJOOUIMXMY2Z/THXRGVPNH45VMHCGWEEJATJ2RCOHTNBI.woff2\",weight:\"500\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FE5DMCVO7676XBZO76R6BBLVYNJTAGNN/ZSUXML62VYR72Y4ABFYVQUJXTHDK7YJ2/LIFXYPK76URT3NB4B4JNO3Y23DJLOWJ3.woff2\",weight:\"700\"}]},...BadgeFonts,...Badge2Fonts,...EmbedFonts,...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerirIGTzDeI\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"EwHuEwhza\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"808\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cF8JtCPRX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LEFhFXzte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R2JOHvVFP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./irIGTzDeI.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/G3ywNsrai8gUIPoLriym/Scyz862LHB1Tmv7hBFFv/BUFU3eB6_.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bIEBUFXVFQ20lyigjYJY/wdyeyrDAIszhJtl6cMqM/JAW1iXkPv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lEOCM4qbuHKnXBMcx1Rr/T1EoF0cXT6eG6bspHQwY/rYEMUuCfo.js\";import WebApp from\"https://framerusercontent.com/modules/FNn3s2EsukKfX8gH4ZHE/IktjtFYqNXu50JgceUpG/c8m9EufDU.js\";import People from\"https://framerusercontent.com/modules/8GoWz2IzNHdVHxz4Xm87/nBIZgvWq8fLYoQwMhZs7/FjLeSfywE.js\";import PersonalityScreen from\"https://framerusercontent.com/modules/EKPID0dGAaTcEARRV3LM/ViqVQNPy0LI1fjLLq8IH/Jy95YS182.js\";import Badge from\"https://framerusercontent.com/modules/AXdVHfaUlrvBqjdn9w8h/NMr1VzpAMYTQ9S1UXXdX/z_6X07ADe.js\";const MotionDivWithFX=withFX(motion.div);const PersonalityScreenFonts=getFonts(PersonalityScreen);const BadgeFonts=getFonts(Badge);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const PeopleFonts=getFonts(People);const SlideshowFonts=getFonts(Slideshow);const WebAppFonts=getFonts(WebApp);const cycleOrder=[\"waKrVsugR\",\"NvTYqy1bW\",\"xV63EmHSr\",\"c9jFqnbfm\"];const serializationHash=\"framer-FHu7m\";const variantClassNames={c9jFqnbfm:\"framer-v-1eeo2gv\",NvTYqy1bW:\"framer-v-1gbxe5m\",waKrVsugR:\"framer-v-1ye6yvf\",xV63EmHSr:\"framer-v-x4lnl8\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};const transition3={delay:2.5,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:.6,rotate:60,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:100,y:100};const transition4={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-100,y:-100};const transition5={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:6,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-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.create(React.Fragment);const humanReadableVariantMap={\"RUSS PHONE\":\"c9jFqnbfm\",Desktop:\"waKrVsugR\",Phone:\"xV63EmHSr\",tab:\"NvTYqy1bW\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"waKrVsugR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZnRs9GjptIjQ1rlf0a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"waKrVsugR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"NvTYqy1bW\")return true;return false;};const isDisplayed1=()=>{if([\"NvTYqy1bW\",\"xV63EmHSr\",\"c9jFqnbfm\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"c9jFqnbfm\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"xV63EmHSr\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ye6yvf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"waKrVsugR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({c9jFqnbfm:{\"data-framer-name\":\"RUSS PHONE\"},NvTYqy1bW:{\"data-framer-name\":\"tab\"},xV63EmHSr:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16t24p1\",\"data-framer-name\":\"Carousel Slideshow\",layoutDependency:layoutDependency,layoutId:\"F3bDebH4A\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12gi6uv\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"oVSN7lmHD\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-9p7j4e\",\"data-framer-name\":\"color\",layoutDependency:layoutDependency,layoutId:\"V1cXwgqVq\",style:{backgroundColor:\"var(--token-dcad5a88-eebb-49c1-8e25-9a9f4877fc32, rgb(40, 181, 237))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,filter:\"blur(63px)\",WebkitFilter:\"blur(63px)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-htp6ny\",\"data-framer-name\":\"color\",layoutDependency:layoutDependency,layoutId:\"AiKsREsDa\",style:{backgroundColor:\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,boxShadow:\"0px 1px 2px 0px rgba(0,0,0,0.25)\",filter:\"blur(100px)\",WebkitFilter:\"blur(100px)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bq59v0\",layoutDependency:layoutDependency,layoutId:\"JrtkxDGnG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o8ulih\",layoutDependency:layoutDependency,layoutId:\"O5JN6SXMM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Three distinct channels in-the-flow of your work!\"})}),className:\"framer-xxtb0r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pKhBbK1G2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c9jFqnbfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Three distinct channels in-the-flow of your work!\"})})},xV63EmHSr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Three distinct channels in-the-flow of your work!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Experience the power of Prism\\xae in your workflow, with seamless integrations and intuitive tools that enhance teamwork and productivity.\"})}),className:\"framer-dj0vb8\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"utm9YCwCA\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c9jFqnbfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experience the power of Prism\\xae in your workflow, with seamless integrations and intuitive tools that enhance teamwork and productivity.\"})})},xV63EmHSr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experience the power of Prism\\xae in your workflow, with seamless integrations and intuitive tools that enhance teamwork and productivity.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14fufp4-container\",layoutDependency:layoutDependency,layoutId:\"gqp56wcW5-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:10,arrowPadding:-11,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:24,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:900,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:20,overflow:false},gap:32,height:\"100%\",id:\"gqp56wcW5\",intervalControl:4,itemAmount:1,layoutId:\"gqp56wcW5\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:-33,dotSize:5,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2o0et\",\"data-framer-name\":\"Native app desktop\",layoutDependency:layoutDependency,layoutId:\"B5dMtuTLR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fw39al-container\",layoutDependency:layoutDependency,layoutId:\"HptPxoC94-container\",children:/*#__PURE__*/_jsx(PersonalityScreen,{height:\"100%\",id:\"HptPxoC94\",layoutId:\"HptPxoC94\",variant:\"lEMnVr_QL\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-t9lfgf\",\"data-framer-appear-id\":\"t9lfgf\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"eM5Xwxjv7\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tt3sen-container\",layoutDependency:layoutDependency,layoutId:\"gpPAG248p-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"gpPAG248p\",layoutId:\"gpPAG248p\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Phone App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Unleash SurePeople's potential in the palm of your hand\"})}),className:\"framer-vowtka\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iWIyWg8zX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Experience the convenience and power of our innovative technology with the SurePeople App.\"})}),className:\"framer-lpzoii\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rbQxhk8j2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0b16s\",\"data-framer-name\":\"Slack desktop\",layoutDependency:layoutDependency,layoutId:\"t5CP4DrKe\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-of5ml2\",layoutDependency:layoutDependency,layoutId:\"RHMtdZp9e\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bd6glj\",\"data-framer-name\":\"Slack\",layoutDependency:layoutDependency,layoutId:\"bjglTVTrP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp0nb7\",\"data-border\":true,\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"uV8Aapc6g\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3.56,borderBottomRightRadius:3.56,borderTopLeftRadius:3.56,borderTopRightRadius:3.56,boxShadow:\"0px 3px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-klhsw5\",\"data-border\":true,\"data-framer-name\":\"Frame 40\",layoutDependency:layoutDependency,layoutId:\"xkz3JRQu0\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(44, 9, 41)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tvkujv\",\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"VWfMPDbQX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-obene8\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"GisiD0SGR\",style:{backgroundColor:\"rgb(237, 106, 94)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nt3h9o\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"ItmHn4xMF\",style:{backgroundColor:\"rgb(244, 189, 79)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hh1dg2\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"JjKNPqTcZ\",style:{backgroundColor:\"rgb(97, 195, 84)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2rni2\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"nb5ef2mUm\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v253qc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"N0cHzlo5V\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9600)\">\\n<path d=\"M2.42578 4.08154H6.53245\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08154L4.18578 5.84154\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08031L4.18578 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9600\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fqexte\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"ZVE94YdYR\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" clip-path=\"url(#clip0_196_9605)\">\\n<path d=\"M6.37598 4.08105H2.26931\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08105L4.61597 5.84106\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08031L4.61597 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9605\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"matrix(-1 0 0 1 7.83984 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f17zuz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"qsDl1LjqQ\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9610)\">\\n<path d=\"M1.51953 4.08043C1.51953 4.42712 1.58782 4.77042 1.72049 5.09071C1.85316 5.41101 2.04762 5.70205 2.29277 5.94719C2.53792 6.19234 2.82895 6.3868 3.14925 6.51947C3.46955 6.65215 3.81284 6.72043 4.15953 6.72043C4.50622 6.72043 4.84952 6.65215 5.16982 6.51947C5.49012 6.3868 5.78115 6.19234 6.02629 5.94719C6.27144 5.70205 6.4659 5.41101 6.59857 5.09071C6.73125 4.77042 6.79953 4.42712 6.79953 4.08043C6.79953 3.73374 6.73125 3.39045 6.59857 3.07015C6.4659 2.74985 6.27144 2.45881 6.02629 2.21367C5.78115 1.96852 5.49012 1.77406 5.16982 1.64139C4.84952 1.50872 4.50622 1.44043 4.15953 1.44043C3.81284 1.44043 3.46955 1.50872 3.14925 1.64139C2.82895 1.77406 2.53792 1.96852 2.29277 2.21367C2.04762 2.45881 1.85316 2.74985 1.72049 3.07015C1.58782 3.39045 1.51953 3.73374 1.51953 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 4.08105H5.18585\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 2.61572V4.08239\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9610\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.639648 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ei5on9\",\"data-border\":true,\"data-framer-name\":\"Frame 37\",layoutDependency:layoutDependency,layoutId:\"EwovEzjSx\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(90, 60, 90)\",borderBottomLeftRadius:1.6,borderBottomRightRadius:1.6,borderTopLeftRadius:1.6,borderTopRightRadius:1.6},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mg2nc3\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"wD6dKIiXR\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9616)\">\\n<path d=\"M0.800781 2.65349C0.800781 2.8496 0.839408 3.04379 0.914455 3.22496C0.989502 3.40614 1.0995 3.57077 1.23817 3.70944C1.37684 3.84811 1.54146 3.9581 1.72264 4.03315C1.90382 4.1082 2.09801 4.14682 2.29412 4.14682C2.49022 4.14682 2.68441 4.1082 2.86559 4.03315C3.04677 3.9581 3.21139 3.84811 3.35006 3.70944C3.48873 3.57077 3.59873 3.40614 3.67378 3.22496C3.74883 3.04379 3.78745 2.8496 3.78745 2.65349C3.78745 2.45738 3.74883 2.2632 3.67378 2.08202C3.59873 1.90084 3.48873 1.73621 3.35006 1.59754C3.21139 1.45887 3.04677 1.34888 2.86559 1.27383C2.68441 1.19878 2.49022 1.16016 2.29412 1.16016C2.09801 1.16016 1.90382 1.19878 1.72264 1.27383C1.54146 1.34888 1.37684 1.45887 1.23817 1.59754C1.0995 1.73621 0.989502 1.90084 0.914455 2.08202C0.839408 2.2632 0.800781 2.45738 0.800781 2.65349Z\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.6384 5.0007L3.3584 3.7207\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9616\">\\n<rect width=\"5.12001\" height=\"5.12\" fill=\"white\" transform=\"translate(0.15918 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Search A1 Marketing Ltd.\"})}),className:\"framer-em849x\",\"data-framer-name\":\"Search A1 Marketing Ltd.\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"SRQaaodHP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-145h35l\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"nBTilCd3h\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9621)\">\\n<path d=\"M1.83887 4.08043C1.83887 4.42712 1.90715 4.77042 2.03983 5.09071C2.1725 5.41101 2.36696 5.70205 2.61211 5.94719C2.85725 6.19234 3.14828 6.3868 3.46858 6.51947C3.78888 6.65215 4.13218 6.72043 4.47887 6.72043C4.82556 6.72043 5.16885 6.65215 5.48915 6.51947C5.80945 6.3868 6.10048 6.19234 6.34563 5.94719C6.59078 5.70205 6.78524 5.41101 6.91791 5.09071C7.05058 4.77042 7.11887 4.42712 7.11887 4.08043C7.11887 3.73374 7.05058 3.39045 6.91791 3.07015C6.78524 2.74985 6.59078 2.45881 6.34563 2.21367C6.10048 1.96852 5.80945 1.77406 5.48915 1.64139C5.16885 1.50872 4.82556 1.44043 4.47887 1.44043C4.13218 1.44043 3.78888 1.50872 3.46858 1.64139C3.14828 1.77406 2.85725 1.96852 2.61211 2.21367C2.36696 2.45881 2.1725 2.74985 2.03983 3.07015C1.90715 3.39045 1.83887 3.73374 1.83887 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.4834 5.54785V5.55211\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.48315 4.52147C4.47775 4.42624 4.50344 4.33184 4.55634 4.25249C4.60925 4.17313 4.68651 4.11311 4.77649 4.08147C4.88674 4.03931 4.98571 3.97212 5.06559 3.88521C5.14547 3.79831 5.20408 3.69404 5.23682 3.58063C5.26956 3.46721 5.27552 3.34775 5.25425 3.23164C5.23297 3.11553 5.18503 3.00595 5.1142 2.91151C5.04338 2.81708 4.9516 2.74037 4.84609 2.68744C4.74058 2.6345 4.62423 2.60678 4.50619 2.60645C4.38814 2.60612 4.27164 2.6332 4.16584 2.68555C4.06004 2.7379 3.96783 2.81409 3.89648 2.90813\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9621\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2qdc4q\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"iGWe6nllk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1c0mndp\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"w1zs8XseR\",style:{\"--border-bottom-width\":\"0.8888891935348511px\",\"--border-color\":\"rgb(0, 163, 255)\",\"--border-left-width\":\"0.8888891935348511px\",\"--border-right-width\":\"0.8888891935348511px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888891935348511px\",borderBottomLeftRadius:33.53,borderBottomRightRadius:33.53,borderTopLeftRadius:33.53,borderTopRightRadius:33.53}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rc3u12\",\"data-border\":true,\"data-framer-name\":\"Ellipse 29\",layoutDependency:layoutDependency,layoutId:\"VytBRjjh0\",style:{\"--border-bottom-width\":\"0.6400004029273987px\",\"--border-color\":\"rgb(44, 9, 43)\",\"--border-left-width\":\"0.6400004029273987px\",\"--border-right-width\":\"0.6400004029273987px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6400004029273987px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uzuil7\",\"data-framer-name\":\"Frame 45\",layoutDependency:layoutDependency,layoutId:\"LKO7mnGkf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4klsr5\",\"data-framer-name\":\"Frame 43\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:207,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"UHENXHgyq\",svg:'<svg width=\"17\" height=\"207\" viewBox=\"0 0 17 207\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_196_9630\" fill=\"white\">\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\"/>\\n</mask>\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\" fill=\"#3E103F\"/>\\n<path d=\"M16.32 0.160156V206.222H16.96V0.160156H16.32Z\" fill=\"white\" fill-opacity=\"0.15\" mask=\"url(#path-1-inside-1_196_9630)\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" fill=\"#3E103F\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" stroke=\"white\" stroke-width=\"0.96\"/>\\n<g clip-path=\"url(#clip0_196_9630)\">\\n<path d=\"M8.32129 25.1729V28.9062\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.45703 27.04H10.1904\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9630\">\\n<rect width=\"6.40001\" height=\"12.16\" fill=\"white\" transform=\"translate(5.12012 18.0801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3d02e4\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"w0sSIliTR\",style:{backgroundColor:\"rgb(63, 15, 63)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ejttzr\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"rOVO63gIz\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-qhqia5\",\"data-framer-name\":\"Company\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"f6g11wKZ8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oi8apk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"OCEbk1KYV\",svg:'<svg width=\"11\" height=\"11\" viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.160156\" y=\"0.0800781\" width=\"10.24\" height=\"10.24\" rx=\"5.12\" fill=\"white\"/>\\n<path d=\"M3.81164 3.73291H3.51831C3.36271 3.73291 3.21349 3.79472 3.10347 3.90474C2.99345 4.01476 2.93164 4.16398 2.93164 4.31958V6.95958C2.93164 7.11517 2.99345 7.26439 3.10347 7.37441C3.21349 7.48443 3.36271 7.54624 3.51831 7.54624H6.15831C6.3139 7.54624 6.46312 7.48443 6.57315 7.37441C6.68317 7.26439 6.74498 7.11517 6.74498 6.95958V6.66624\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.73999 3.61071C7.85552 3.49519 7.92042 3.3385 7.92042 3.17511C7.92042 3.01173 7.85552 2.85504 7.73999 2.73951C7.62446 2.62399 7.46777 2.55908 7.30439 2.55908C7.14101 2.55908 6.98432 2.62399 6.86879 2.73951L4.40039 5.19911V6.07911H5.28039L7.73999 3.61071Z\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.4541 3.14697L7.3341 4.02697\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wstzqn\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"hFBrzK26V\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5k0jtg\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"OXg8KxmFO\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18ds6i5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"K7KaIRpY7\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9658)\">\\n<path d=\"M5.51855 4.84115L5.20655 3.90515C5.47621 3.50634 5.57376 3.03405 5.48106 2.5761C5.38837 2.11816 5.11174 1.70571 4.70261 1.41546C4.29348 1.1252 3.77969 0.976887 3.25677 0.998089C2.73385 1.01929 2.23739 1.20857 1.85968 1.53073C1.48198 1.85288 1.24874 2.286 1.20333 2.74955C1.15793 3.21309 1.30344 3.67553 1.61282 4.05086C1.9222 4.4262 2.37439 4.6889 2.88532 4.79012C3.39625 4.89134 3.93114 4.82419 4.39055 4.60115L5.51855 4.84115Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.4248 2.48975H4.15281M2.4968 3.49775H3.79281\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9658\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Threads\"})}),className:\"framer-11zg1ej\",\"data-framer-name\":\"Threads\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"wtL8XqMRj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pjfhwr\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"G_7CfI7Hl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wwg3q\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"kJdMc9nkp\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9664)\">\\n<path d=\"M2.28156 2.43994C1.55244 2.43994 0.961563 2.92354 0.961563 3.51994C0.961563 3.85522 1.14828 4.15474 1.44156 4.35274V4.83994L1.91292 4.55722C2.03372 4.58575 2.15744 4.60009 2.28156 4.59994C3.01068 4.59994 3.60156 4.11634 3.60156 3.51994C3.60156 2.92354 3.01068 2.43994 2.28156 2.43994Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.55737 3.80801C3.72297 3.85505 3.90057 3.88049 4.08465 3.88049C4.29791 3.88095 4.50977 3.84591 4.71153 3.77681L5.28465 4.12049V3.44825C5.58153 3.18857 5.76465 2.83289 5.76465 2.44049C5.76465 1.64513 5.01249 1.00049 4.08465 1.00049C3.17697 1.00049 2.43753 1.61729 2.40465 2.38889V2.44481\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9664\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"All DMs\"})}),className:\"framer-8yw3fx\",\"data-framer-name\":\"All DMs\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"O_l3M8bcX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zki2qa\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"Fpc7Ax6XV\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13yghny\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"pZ0HGrV23\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9670)\">\\n<path d=\"M4.8016 4.12074H3.1216C2.9943 4.12074 2.87221 4.07017 2.78219 3.98015C2.69217 3.89014 2.6416 3.76805 2.6416 3.64074V1.24074C2.6416 1.11344 2.69217 0.991348 2.78219 0.901331C2.87221 0.811313 2.9943 0.760742 3.1216 0.760742H4.0816L5.2816 1.96074V3.64074C5.2816 3.76805 5.23103 3.89014 5.14101 3.98015C5.05099 4.07017 4.92891 4.12074 4.8016 4.12074Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 2.28076H4.38733\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 1.45459V2.28126\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31871 4.11973V4.59973C4.31871 4.72703 4.26814 4.84912 4.17812 4.93914C4.0881 5.02915 3.96601 5.07973 3.83871 5.07973H2.15871C2.03141 5.07973 1.90932 5.02915 1.8193 4.93914C1.72928 4.84912 1.67871 4.72703 1.67871 4.59973V2.19973C1.67871 2.07242 1.72928 1.95033 1.8193 1.86032C1.90932 1.7703 2.03141 1.71973 2.15871 1.71973H2.63871\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9670\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Drafts\"})}),className:\"framer-yk83g0\",\"data-framer-name\":\"Drafts\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"DRVTwgfSG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgwe89\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"IsX5RS6yU\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6czahs\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"PjC_i2QA5\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9678)\">\\n<path d=\"M2.39941 2.92045C2.39941 3.17506 2.50056 3.41924 2.68059 3.59927C2.86063 3.77931 3.10481 3.88045 3.35941 3.88045C3.61402 3.88045 3.8582 3.77931 4.03824 3.59927C4.21827 3.41924 4.31942 3.17506 4.31942 2.92045C4.31942 2.66584 4.21827 2.42166 4.03824 2.24163C3.8582 2.06159 3.61402 1.96045 3.35941 1.96045C3.10481 1.96045 2.86063 2.06159 2.68059 2.24163C2.50056 2.42166 2.39941 2.66584 2.39941 2.92045Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31825 2.91912V3.27912C4.31825 3.43825 4.38146 3.59087 4.49398 3.70339C4.6065 3.81591 4.75912 3.87912 4.91825 3.87912C5.07738 3.87912 5.22999 3.81591 5.34251 3.70339C5.45503 3.59087 5.51825 3.43825 5.51825 3.27912V2.91912C5.51884 2.45499 5.36992 2.00301 5.09354 1.63013C4.81716 1.25725 4.42803 0.98332 3.98378 0.848907C3.53953 0.714495 3.0638 0.726753 2.62707 0.883866C2.19033 1.04098 1.81582 1.33459 1.55901 1.72121C1.3022 2.10782 1.17676 2.56687 1.20125 3.03036C1.22575 3.49385 1.3989 3.93712 1.69503 4.29451C1.99117 4.6519 2.39455 4.90439 2.84541 5.01459C3.29628 5.12478 3.77064 5.08682 4.19825 4.90633\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9678\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mnetions & reactions\"})}),className:\"framer-1hbywh1\",\"data-framer-name\":\"Mnetions & reactions\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"LqZYPFNOj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ui6w1m\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"mbR57nALH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a15qaj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"xzqFdPUIx\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9684)\">\\n<path d=\"M2.64016 0.999512H4.08016C4.20746 0.999512 4.32955 1.05008 4.41957 1.1401C4.50959 1.23012 4.56016 1.35221 4.56016 1.47951V4.83951L3.36016 4.11951L2.16016 4.83951V1.47951C2.16016 1.35221 2.21073 1.23012 2.30075 1.1401C2.39076 1.05008 2.51285 0.999512 2.64016 0.999512Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9684\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Saved items\"})}),className:\"framer-js69iv\",\"data-framer-name\":\"Saved items\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"JZXxGmWyY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k09uzi\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"vUQdwMfzE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a1pgt8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"NAQe5fBgt\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9689)\">\\n<path d=\"M3.12012 2.92066C3.12012 2.98432 3.1454 3.04536 3.19041 3.09037C3.23542 3.13538 3.29647 3.16066 3.36012 3.16066C3.42377 3.16066 3.48481 3.13538 3.52982 3.09037C3.57483 3.04536 3.60012 2.98432 3.60012 2.92066C3.60012 2.85701 3.57483 2.79597 3.52982 2.75096C3.48481 2.70595 3.42377 2.68066 3.36012 2.68066C3.29647 2.68066 3.23542 2.70595 3.19041 2.75096C3.1454 2.79597 3.12012 2.85701 3.12012 2.92066Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 4.59938C3.12109 4.66303 3.14638 4.72407 3.19139 4.76908C3.2364 4.81409 3.29744 4.83938 3.36109 4.83938C3.42475 4.83938 3.48579 4.81409 3.5308 4.76908C3.57581 4.72407 3.60109 4.66303 3.60109 4.59938C3.60109 4.53572 3.57581 4.47468 3.5308 4.42967C3.48579 4.38466 3.42475 4.35938 3.36109 4.35938C3.29744 4.35938 3.2364 4.38466 3.19139 4.42967C3.14638 4.47468 3.12109 4.53572 3.12109 4.59938Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 1.24C3.12109 1.30365 3.14638 1.3647 3.19139 1.40971C3.2364 1.45471 3.29744 1.48 3.36109 1.48C3.42475 1.48 3.48579 1.45471 3.5308 1.40971C3.57581 1.3647 3.60109 1.30365 3.60109 1.24C3.60109 1.17635 3.57581 1.1153 3.5308 1.07029C3.48579 1.02529 3.42475 1 3.36109 1C3.29744 1 3.2364 1.02529 3.19139 1.07029C3.14638 1.1153 3.12109 1.17635 3.12109 1.24Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9689\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"More\"})}),className:\"framer-1h3cky8\",\"data-framer-name\":\"More\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"jQqJ9Lno8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lhpjfc\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"fo0kzDUpT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3nmtg6\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"nloDWj3Ie\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u2B50\uFE0F\"})}),className:\"framer-ju84c3\",\"data-framer-name\":\"\u2B50\uFE0F\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"P3eNpo530\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Starred\"})}),className:\"framer-zvalvf\",\"data-framer-name\":\"Starred\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"YYQOTqHfW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bgt0f\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"vJ7DEVXtm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n52369\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"dt8gwJ4El\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-nsb0mj\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"YHX7TRAZ8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"design-team\"})}),className:\"framer-1ghukwn\",\"data-framer-name\":\"design-team\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"QX23tBVCE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hyea4q\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"yQLeduLvk\",style:{backgroundColor:\"rgb(17, 100, 163)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-140vvsj\",\"data-framer-name\":\"Frame 62\",layoutDependency:layoutDependency,layoutId:\"X5Xeai0pQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-8whwt3\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"IpV5xpiB3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"social-media\"})}),className:\"framer-144x17s\",\"data-framer-name\":\"social-media\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"gOyo5m_eA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jy7jgs\",\"data-framer-name\":\"Group 11\",layoutDependency:layoutDependency,layoutId:\"KqbKSujop\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9hbwet\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"B_SUPBR5X\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11djlsh\",\"data-border\":true,\"data-framer-name\":\"Rectangle 19\",layoutDependency:layoutDependency,layoutId:\"xs9c7HkJd\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgb(17, 100, 163)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a71a08\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"SXJsPqFpF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-19a6rbm\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"gPzN49Ttb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"team-finance\"})}),className:\"framer-p69knc\",\"data-framer-name\":\"team-finance\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"HZm0tmvPr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ucq60m\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"fF70c_KPW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8e2fw\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"P0Gb1tUMF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-1n51gd9\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ko6P3scLB\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr2vme\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"GuzgscoBT\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Elena Nowak\"})}),className:\"framer-fmk83i\",\"data-framer-name\":\"Elena Nowak\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"luh4mppMM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10g1wvk\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"Xjze9gY5d\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16q3jbf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"m8zUk11zF\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9719)\">\\n<path d=\"M1.9209 2.91846L3.3609 4.35846L4.8009 2.91846H1.9209Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9719\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Channels\"})}),className:\"framer-x87ph5\",\"data-framer-name\":\"Channels\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"GlcxDG9de\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ref9th\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"CT1WbwHjF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-12yz50u\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"by54lZQ2n\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"announcements\"})}),className:\"framer-1mlgzwg\",\"data-framer-name\":\"announcements\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"aw__RJRqp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ordpox\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"YVngghREJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-yv5nei\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"X_JaIuM3C\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"pr\"})}),className:\"framer-142wzsh\",\"data-framer-name\":\"pr\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"jYsuCoPBr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pd0v3b\",\"data-framer-name\":\"Frame 55\",layoutDependency:layoutDependency,layoutId:\"N0qT7JvML\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nyq1wk\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"d0kpbwLF5\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.76029C0.679688 1.2301 1.10949 0.800293 1.63969 0.800293H5.47969C6.00989 0.800293 6.43969 1.2301 6.43969 1.76029V5.60029C6.43969 6.13049 6.00988 6.56029 5.47969 6.56029H1.63969C1.10949 6.56029 0.679688 6.13049 0.679688 5.60029V1.76029Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 3.68066H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 3.68066H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add channel\"})}),className:\"framer-11uj73c\",\"data-framer-name\":\"Add channel\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"kpynYAMDb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c30unw\",\"data-framer-name\":\"Frame 57\",layoutDependency:layoutDependency,layoutId:\"CNy89k4Qv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmhy4z\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"FCxmlV2dK\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9736)\">\\n<path d=\"M1.91992 3.16016L3.35992 4.60016L4.79992 3.16016H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9736\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.760254)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Direct messages\"})}),className:\"framer-ves1hr\",\"data-framer-name\":\"Direct messages\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"QjeGnXE8L\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkaaa\",\"data-framer-name\":\"Frame 56\",layoutDependency:layoutDependency,layoutId:\"vxojIzdJX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cuza7l\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"oPENi7QXq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-3xhg0i\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"XdH_y6ye5\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qzgf1i\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"kUc4DB0qb\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will Rodrigues you\"})}),className:\"framer-rov9sb\",\"data-framer-name\":\"Will Rodrigues you\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"i3XsmHlEF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vkbm9m\",\"data-framer-name\":\"Frame 58\",layoutDependency:layoutDependency,layoutId:\"gni2qJKlr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qak9ro\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"mZnPG99w8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-hbktei\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ixUQG2vgs\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dn0p2h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"g_FAlQYk3\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"-1 -1 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.11926 0.0392968H1.19926C0.536516 0.0392968 -0.000742272 0.576554 -0.000742272 1.2393V3.1593C-0.000742272 3.82204 0.536516 4.3593 1.19926 4.3593H3.11926C3.782 4.3593 4.31926 3.82204 4.31926 3.1593V1.2393C4.31926 0.576556 3.782 0.0392968 3.11926 0.0392968Z\" fill=\"#654766\" stroke=\"#3F0F3F\" stroke-width=\"0.48\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-1wbkrey\",\"data-framer-name\":\"3\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"XXhalKLPX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bea Rosen, Carter Poplin ...\"})}),className:\"framer-6cop70\",\"data-framer-name\":\"Bea Rosen, Carter Poplin ...\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"iwKeVOojK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wx7l2n\",\"data-framer-name\":\"Frame 59\",layoutDependency:layoutDependency,layoutId:\"MvC0SKMZ8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mep9o7\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"rhZpXC4Si\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.00004C0.679688 0.469847 1.10949 0.0400391 1.63969 0.0400391H5.47969C6.00989 0.0400391 6.43969 0.469846 6.43969 1.00004V4.84004C6.43969 5.37023 6.00988 5.80004 5.47969 5.80004H1.63969C1.10949 5.80004 0.679688 5.37023 0.679688 4.84004V1.00004Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 2.92041H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 2.92041H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add teammates\"})}),className:\"framer-j2065a\",\"data-framer-name\":\"Add teammates\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"tVAL6QI3e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3khnak\",\"data-framer-name\":\"Frame 60\",layoutDependency:layoutDependency,layoutId:\"zqcW3QqPk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q8n96l\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"NfTMEruSG\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9758)\">\\n<path d=\"M1.91992 2.3999L3.35992 3.8399L4.79992 2.3999H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9758\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apps\"})}),className:\"framer-1aii5x6\",\"data-framer-name\":\"Apps\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"iVshqEcwx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c64h7g\",\"data-framer-name\":\"Frame 61\",layoutDependency:layoutDependency,layoutId:\"bG9OdjDLX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-86s3hz\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"ootgbJpWX\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gNso8VSNZ0zj7C1SGuV9JENjFaY.png\"},className:\"framer-wt8r03\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"Fd_Vfv4Pm\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Google Calendar\"})}),className:\"framer-mlvjob\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"F4BI84evn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qu2q60\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"OzCwx15Ih\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16iw716\",\"data-framer-name\":\"Frame 95\",layoutDependency:layoutDependency,layoutId:\"iiwd5nRTR\",style:{boxShadow:\"0px 0.32000020146369934px 0.6400004029273987px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvkksq\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"lHwiDfpU3\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yfiayy\",\"data-framer-name\":\"Frame 64\",layoutDependency:layoutDependency,layoutId:\"Y3EyUDf4l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-an6gc2\",\"data-framer-name\":\"Frame 63\",layoutDependency:layoutDependency,layoutId:\"JlKOQhguP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"#social-media\"})}),className:\"framer-bnibza\",\"data-framer-name\":\"#social-media\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"GfylOH2MR\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jodglc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"R3rTi3_tz\",svg:'<svg width=\"5\" height=\"5\" viewBox=\"0 0 5 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9772)\">\\n<path d=\"M1.59863 1.71826L2.55863 2.67826L3.51863 1.71826\" stroke=\"black\" stroke-width=\"0.32\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9772\">\\n<rect width=\"3.84\" height=\"3.84\" fill=\"white\" transform=\"translate(0.640625 0.280273)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Track and coordinate social media\"})}),className:\"framer-eqiauj\",\"data-framer-name\":\"Track and coordinate social media\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Wxw7_nNaV\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52u4mf\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",layoutDependency:layoutDependency,layoutId:\"TNlUOfF1S\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8xrazb\",\"data-framer-name\":\"Frame 66\",layoutDependency:layoutDependency,layoutId:\"jaJ8e18T9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-1dcj4bd\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"jagOVsaoV\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-5jg6tq\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"CfjXkSJNU\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-1xlgg8v\",\"data-border\":true,\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"e1xWqTId5\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"74\"})}),className:\"framer-k8asul\",\"data-framer-name\":\"74\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"R2xIARnsJ\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ki0ots\",\"data-border\":true,\"data-framer-name\":\"Frame 73\",layoutDependency:layoutDependency,layoutId:\"u15yhClPn\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pv7k9c\",\"data-framer-name\":\"Frame 69\",layoutDependency:layoutDependency,layoutId:\"mDtkWPR7f\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13wzdjr\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"sYJmLl4_Q\",svg:'<svg width=\"5\" height=\"6\" viewBox=\"0 0 5 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 3.03996V4.95996H2.08C1.01961 4.95996 0.16 4.10035 0.16 3.03996C0.16 1.97957 1.01961 1.11996 2.08 1.11996C3.14039 1.11996 4 1.97957 4 3.03996Z\" fill=\"#FF745A\" stroke=\"#A9371E\" stroke-width=\"0.32\"/>\\n<rect x=\"1.27832\" y=\"2.23975\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"1.27734\" y=\"3.52051\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"0.642578\" y=\"2.87988\" width=\"2.88\" height=\"0.32\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Project brief\"})}),className:\"framer-hliojr\",\"data-framer-name\":\"Project brief\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"y1WEfRixp\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0vi9q\",\"data-framer-name\":\"Frame 70\",layoutDependency:layoutDependency,layoutId:\"q8TjPThB0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IUHnFKXiU3VfBfJXFNTCY4a1wo.png\"},className:\"framer-f64wqq\",\"data-framer-name\":\"image 6\",layoutDependency:layoutDependency,layoutId:\"kLcE6dZOd\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Resources\"})}),className:\"framer-1vyrzzl\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Xty_kXxJB\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvmd7h\",\"data-framer-name\":\"Frame 71\",layoutDependency:layoutDependency,layoutId:\"F2y1lF79Z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Y2vp2AqNyff9hAi6fwwZY77ntAI.png\"},className:\"framer-ufjme4\",\"data-framer-name\":\"image 7\",layoutDependency:layoutDependency,layoutId:\"GLyfTibyB\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"To do\"})}),className:\"framer-i2hq6e\",\"data-framer-name\":\"To do\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"IOVR9S5RC\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-140qzi6\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"Dx5vXZisP\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8GaDqAaekbaT3si4EOHyA9jveW0.png\"},className:\"framer-vpokqd\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"NBgD2UFnp\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Jira board\"})}),className:\"framer-1uef3q3\",\"data-framer-name\":\"Jira board\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Incz3wpCF\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4c2x9\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"rJw3admNm\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.99805 2.08008V4.00007\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.04395 3.04102H3.96394\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxp1g9\",\"data-framer-name\":\"Frame 81\",layoutDependency:layoutDependency,layoutId:\"ZedkO35ql\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iez1yn\",\"data-framer-name\":\"Frame 86\",layoutDependency:layoutDependency,layoutId:\"YOyvA9csR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-zessrd\",\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"Gqf79LYmf\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j6otbp\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"XmJD1KSD5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1861s8u\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"jj2_V9FSC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-ul15qv\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"vl0DYi5eZ\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:55\"})}),className:\"framer-1hjvigd\",\"data-framer-name\":\"11:55\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"sH1G5KBIR\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ghr6hf\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"NxXmQuLNd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bthpt6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"oSgVbcYzn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19bzncd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"hdpEZhHrG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wb4326\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"GKjepwEVx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bprzyz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KlKzxZ241\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1its76k\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ZrDujEoSV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5jalra\",\"data-framer-name\":\"Frame 84\",layoutDependency:layoutDependency,layoutId:\"Gh6c482Sv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-11zisbo\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"CNYDflxWO\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h6orwa\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"f4WXXJErU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-woids4\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"lejHvyFvp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Ace Jackson\"})}),className:\"framer-1wlsly6\",\"data-framer-name\":\"Ace Jackson\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"JpmN9iF22\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:56\"})}),className:\"framer-7tn4tu\",\"data-framer-name\":\"11:56\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Rp_egBR2R\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpxuhs\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"kJbGqeNYE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1apif2y\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"pa4962rvW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwz4dc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"IGBwG7aDk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18yz4eu\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Sp3Cp12AH\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onz26p\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DEaFG1vhN\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7yuww8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eolB6Ld3E\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1epeeuy\",\"data-framer-name\":\"Frame 85\",layoutDependency:layoutDependency,layoutId:\"JrOSefwSe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fWXUvu7nJBhGWelcyHPpgt9I5E.png\"},className:\"framer-1gcieuq\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"Gm1DY92TI\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-syeory\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"aw3aPten8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bt5o\",\"data-framer-name\":\"Frame 89\",layoutDependency:layoutDependency,layoutId:\"D5ZNrfuTO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-75xdwb\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"E7zKe1rhU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Google Calendar\"})}),className:\"framer-emii3k\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"ou8HqeAa7\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3ajp0\",\"data-framer-name\":\"Frame 88\",layoutDependency:layoutDependency,layoutId:\"MtrYhvmZC\",style:{backgroundColor:\"rgb(223, 223, 223)\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"2.88px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"APP\"})}),className:\"framer-1u5yyy5\",\"data-framer-name\":\"APP\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"qeoysiMuR\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:45\"})}),className:\"framer-17jlzs4\",\"data-framer-name\":\"12:45\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"mozvYLCu1\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5hq1n\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"WidYSMG1g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-le8xl2\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FPAC7Zmpf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-61hqgs\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"MZEurDsGF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixsl3u\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Bfm0ypNFJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oks0uy\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tE7PkGLoU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzsizh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"LRr17JAZ1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10mni51\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"un7cNa5NX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m18v3n\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Hxsr_AJs3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zziouz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"jDo2lIeMZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kbvuko\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"it0o0dw6g\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d13ye8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TCrXDOvHQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6tslk\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Z9fNw7Jwf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rhkgkv\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"QjODhxfee\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-imubhf\",\"data-framer-name\":\"Rectangle 27\",layoutDependency:layoutDependency,layoutId:\"jDYT9BV_R\",style:{backgroundColor:\"rgb(32, 157, 212)\",borderBottomLeftRadius:3.2,borderBottomRightRadius:3.2,borderTopLeftRadius:3.2,borderTopRightRadius:3.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9sdx89\",\"data-framer-name\":\"Frame 92\",layoutDependency:layoutDependency,layoutId:\"bPXLaiINK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aam77d\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"nRs21gGIA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qfevvf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Neaco6_w4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o38ogc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"WoBbuCqZR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ap67nb\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PbrL0nswD\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-svfalt\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"fIv4vt3Gl\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wzbgcw\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"B_X1Da4a_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4zvbso\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ckpX4ZMK1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rl53ov\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"shGdpibDA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-owdio0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"BYA563P8y\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhmba\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PjWAztFX7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xx0n56\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"gw29XDL7U\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ekuibd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KpzHM7z0A\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10e0zb7\",\"data-framer-name\":\"Frame 87\",layoutDependency:layoutDependency,layoutId:\"zWXWpx_BR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-16awv32\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"FDYpEEZcc\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yc2phy\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"fc9JjW60d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jo3hiu\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"Wi6bxQe2M\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-zoxayw\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"xJ8BWAPON\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:58\"})}),className:\"framer-1jeqocg\",\"data-framer-name\":\"12:58\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"b4JaCrrzh\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hxcp7a\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"yWo90QfJo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-115hbvh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"xYLXifV_s\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sgfp33\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"oUEVcnzXi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yum3me\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"hEN5uLKhz\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4an93v\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Qrq4irNeA\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y8bod\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eLIhWDNa2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mucaw7\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"fm6KgjJLM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kworxh\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"wsVHEBhH3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oosnbh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FQapLuTap\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uf1ckb\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"WAH8qnWwk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnqiyl\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"GZMJO0cDW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1potijd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tw7zzBEHM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejwdrd\",\"data-framer-name\":\"Frame 80\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:230,layoutDependency:layoutDependency,layoutId:\"nES4sdtI0\",svg:'<svg width=\"230\" height=\"36\" viewBox=\"0 0 230 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9882)\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n<rect x=\"9.83984\" y=\"9.30176\" width=\"0.32\" height=\"6.4\" fill=\"#4C4C4C\"/>\\n<g clip-path=\"url(#clip1_196_9882)\">\\n<rect x=\"10.1592\" y=\"10.7241\" width=\"15.7778\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"26.8262\" y=\"10.7241\" width=\"13.5556\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"41.2705\" y=\"10.7241\" width=\"6.44445\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n</g>\\n<mask id=\"path-7-inside-1_196_9882\" fill=\"white\">\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\"/>\\n</mask>\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M6.63965 18.902H224.24V18.262H6.63965V18.902Z\" fill=\"black\" fill-opacity=\"0.15\" mask=\"url(#path-7-inside-1_196_9882)\"/>\\n<g clip-path=\"url(#clip2_196_9882)\">\\n<path d=\"M12.0249 21.6221V23.4887H13.6249L11.4916 26.4221V24.5554H9.8916L12.0249 21.6221Z\" stroke=\"#5F5F5F\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<rect x=\"16.5596\" y=\"20.502\" width=\"0.32\" height=\"7.04\" fill=\"#D9D9D9\"/>\\n<g clip-path=\"url(#clip3_196_9882)\">\\n<path d=\"M22.667 22.7139H23.787C23.9603 22.7139 24.1264 22.7827 24.249 22.9052C24.3715 23.0277 24.4403 23.1939 24.4403 23.3672C24.4403 23.5405 24.3715 23.7067 24.249 23.8292C24.1264 23.9517 23.9603 24.0205 23.787 24.0205H22.667V22.7139Z\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M23.787 24.02H23.9737C24.1469 24.02 24.3131 24.0889 24.4356 24.2114C24.5582 24.3339 24.627 24.5001 24.627 24.6734C24.627 24.8466 24.5582 25.0128 24.4356 25.1353C24.3131 25.2579 24.1469 25.3267 23.9737 25.3267H22.667V24.02\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip4_196_9882)\">\\n<path d=\"M32.3721 22.7158H33.4921\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.627 25.3286H32.747\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M32.9332 22.7148L32.1865 25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip5_196_9882)\">\\n<path d=\"M40.2119 24.0205H42.8252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.2683 22.9941C42.226 22.9119 42.129 22.8394 41.9933 22.7885C41.8575 22.7376 41.6912 22.7114 41.5216 22.7141H41.335C41.1617 22.7141 40.9955 22.7829 40.873 22.9054C40.7505 23.0279 40.6816 23.1941 40.6816 23.3674C40.6816 23.5407 40.7505 23.7068 40.873 23.8294C40.9955 23.9519 41.1617 24.0207 41.335 24.0207H41.7083C41.8816 24.0207 42.0478 24.0896 42.1703 24.2121C42.2928 24.3346 42.3616 24.5008 42.3616 24.6741C42.3616 24.8473 42.2928 25.0135 42.1703 25.136C42.0478 25.2586 41.8816 25.3274 41.7083 25.3274H41.4283C41.2587 25.3301 41.0924 25.3038 40.9567 25.2529C40.821 25.202 40.724 25.1295 40.6816 25.0474\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip6_196_9882)\">\\n<path d=\"M49.5474 23.2759L48.8008 24.0225L49.5474 24.7692\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M51.415 23.2749L52.1617 24.0216L51.415 24.7682\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M50.856 22.5288L50.1094 25.5155\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip7_196_9882)\">\\n<path d=\"M59.0654 24.3948C59.1263 24.4569 59.1989 24.5062 59.279 24.5399C59.3591 24.5735 59.4452 24.5909 59.5321 24.5909C59.619 24.5909 59.7051 24.5735 59.7852 24.5399C59.8653 24.5062 59.9379 24.4569 59.9988 24.3948L60.7454 23.6481C60.8692 23.5243 60.9387 23.3565 60.9387 23.1815C60.9387 23.0064 60.8692 22.8386 60.7454 22.7148C60.6217 22.591 60.4538 22.5215 60.2788 22.5215C60.1037 22.5215 59.9359 22.591 59.8121 22.7148L59.7188 22.8081\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.8098 23.6482C59.749 23.5862 59.6764 23.5368 59.5963 23.5032C59.5161 23.4695 59.4301 23.4521 59.3432 23.4521C59.2562 23.4521 59.1702 23.4695 59.0901 23.5032C59.0099 23.5368 58.9373 23.5862 58.8765 23.6482L58.1298 24.3949C58.0061 24.5187 57.9365 24.6865 57.9365 24.8616C57.9365 25.0366 58.0061 25.2045 58.1298 25.3282C58.2536 25.452 58.4215 25.5215 58.5965 25.5215C58.7715 25.5215 58.9394 25.452 59.0632 25.3282L59.1565 25.2349\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip8_196_9882)\">\\n<path d=\"M68.2109 22.9028H69.8909\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.2139 24.022H69.8939\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.3984 25.1416H69.8918\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.9072 24.7674C66.9072 24.6684 66.9466 24.5734 67.0166 24.5034C67.0866 24.4334 67.1815 24.394 67.2806 24.394C67.3796 24.394 67.4745 24.4334 67.5445 24.5034C67.6146 24.5734 67.6539 24.6684 67.6539 24.7674C67.6539 24.8777 67.5606 24.954 67.4672 25.0474L66.9072 25.514H67.6539\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M67.2815 23.6478V22.5278L66.9082 22.9012\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip9_196_9882)\">\\n<path d=\"M76.8018 22.9009H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 24.022H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 25.1421H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 22.9028V22.9055\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 24.0225V24.0252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0527 25.1426V25.1453\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip10_196_9882)\">\\n<path d=\"M85.7607 22.9014H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7607 24.022H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7617 25.1416H87.8151\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0137 22.9019V25.1437\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip11_196_9882)\">\\n<path d=\"M95.6523 22.3418V23.0885C95.6523 23.138 95.672 23.1855 95.707 23.2205C95.742 23.2555 95.7895 23.2751 95.839 23.2751H96.5857\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.2136 25.7023H94.347C94.248 25.7023 94.153 25.663 94.083 25.5929C94.013 25.5229 93.9736 25.428 93.9736 25.329V22.7156C93.9736 22.6166 94.013 22.5216 94.083 22.4516C94.153 22.3816 94.248 22.3423 94.347 22.3423H95.6536L96.587 23.2756V25.329C96.587 25.428 96.5476 25.5229 96.4776 25.5929C96.4076 25.663 96.3126 25.7023 96.2136 25.7023Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.9064 24.208L94.7197 24.5813L94.9064 24.9547\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.6523 24.2075L95.839 24.5809L95.6523 24.9542\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip12_196_9882)\">\\n<path d=\"M190.693 24.6758C190.693 24.8491 190.762 25.0152 190.885 25.1378C191.007 25.2603 191.173 25.3291 191.347 25.3291C191.52 25.3291 191.686 25.2603 191.809 25.1378C191.931 25.0152 192 24.8491 192 24.6758C192 24.5025 191.931 24.3363 191.809 24.2138C191.686 24.0913 191.52 24.0225 191.347 24.0225C191.173 24.0225 191.007 24.0913 190.885 24.2138C190.762 24.3363 190.693 24.5025 190.693 24.6758Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 25.3282V23.3682C188.643 23.1949 188.711 23.0287 188.834 22.9062C188.956 22.7837 189.123 22.7148 189.296 22.7148C189.469 22.7148 189.635 22.7837 189.758 22.9062C189.88 23.0287 189.949 23.1949 189.949 23.3682V25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 24.208H189.949\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.001 24.022V25.3286\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip13_196_9882)\">\\n<path d=\"M198.535 24.0211C198.535 24.2191 198.614 24.409 198.754 24.5491C198.894 24.6891 199.084 24.7677 199.282 24.7677C199.48 24.7677 199.67 24.6891 199.81 24.5491C199.95 24.409 200.028 24.2191 200.028 24.0211C200.028 23.8231 199.95 23.6331 199.81 23.4931C199.67 23.3531 199.48 23.2744 199.282 23.2744C199.084 23.2744 198.894 23.3531 198.754 23.4931C198.614 23.6331 198.535 23.8231 198.535 24.0211Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.027 24.0205V24.3005C200.027 24.4243 200.076 24.543 200.164 24.6305C200.251 24.718 200.37 24.7672 200.494 24.7672C200.618 24.7672 200.736 24.718 200.824 24.6305C200.911 24.543 200.961 24.4243 200.961 24.3005V24.0205C200.961 23.6595 200.845 23.308 200.63 23.018C200.415 22.728 200.113 22.5149 199.767 22.4104C199.422 22.3058 199.052 22.3154 198.712 22.4376C198.372 22.5598 198.081 22.7881 197.881 23.0888C197.681 23.3895 197.584 23.7466 197.603 24.1071C197.622 24.4675 197.757 24.8123 197.987 25.0903C198.217 25.3682 198.531 25.5646 198.882 25.6503C199.232 25.7361 199.601 25.7065 199.934 25.5661\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip14_196_9882)\">\\n<path d=\"M206.561 24.0213C206.561 24.2419 206.604 24.4604 206.688 24.6642C206.773 24.868 206.897 25.0532 207.053 25.2092C207.209 25.3653 207.394 25.489 207.598 25.5734C207.801 25.6579 208.02 25.7013 208.241 25.7013C208.461 25.7013 208.68 25.6579 208.883 25.5734C209.087 25.489 209.272 25.3653 209.428 25.2092C209.584 25.0532 209.708 24.868 209.793 24.6642C209.877 24.4604 209.921 24.2419 209.921 24.0213C209.921 23.8007 209.877 23.5822 209.793 23.3784C209.708 23.1746 209.584 22.9894 209.428 22.8334C209.272 22.6774 209.087 22.5536 208.883 22.4692C208.68 22.3848 208.461 22.3413 208.241 22.3413C208.02 22.3413 207.801 22.3848 207.598 22.4692C207.394 22.5536 207.209 22.6774 207.053 22.8334C206.897 22.9894 206.773 23.1746 206.688 23.3784C206.604 23.5822 206.561 23.8007 206.561 24.0213Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.679 23.6475H207.681\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M208.799 23.6484H208.802\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.775 24.5815C207.836 24.6436 207.909 24.693 207.989 24.7266C208.069 24.7603 208.155 24.7776 208.242 24.7776C208.329 24.7776 208.415 24.7603 208.495 24.7266C208.575 24.693 208.648 24.6436 208.709 24.5815\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip15_196_9882)\">\\n<path d=\"M217.763 23.0893L216.55 24.3027C216.475 24.3769 216.434 24.4776 216.434 24.5827C216.434 24.6877 216.475 24.7884 216.55 24.8627C216.624 24.9369 216.725 24.9786 216.83 24.9786C216.935 24.9786 217.035 24.9369 217.11 24.8627L218.323 23.6493C218.471 23.5008 218.555 23.2994 218.555 23.0893C218.555 22.8793 218.471 22.6778 218.323 22.5293C218.174 22.3808 217.973 22.2974 217.763 22.2974C217.553 22.2974 217.351 22.3808 217.203 22.5293L215.99 23.7427C215.767 23.9654 215.642 24.2676 215.642 24.5827C215.642 24.8977 215.767 25.1999 215.99 25.4227C216.212 25.6454 216.514 25.7706 216.83 25.7706C217.145 25.7706 217.447 25.6454 217.67 25.4227L218.883 24.2093\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<rect x=\"6.47965\" y=\"6.26187\" width=\"217.92\" height=\"23.36\" rx=\"1.44\" stroke=\"#555555\" stroke-width=\"0.32\"/>\\n<defs>\\n<clipPath id=\"clip0_196_9882\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_196_9882\">\\n<rect width=\"37.5556\" height=\"3.55556\" fill=\"white\" transform=\"translate(10.1592 10.7241)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_196_9882\">\\n<rect width=\"6.40001\" height=\"6.4\" fill=\"white\" transform=\"translate(8.55957 20.8218)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(21.3594 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(30.3193 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(39.2793 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(48.2393 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(57.1992 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(66.1592 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(75.1191 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(84.0801 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(93.04 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(188.08 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(197.04 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(206 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip15_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(214.96 21.7822)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6pm9yo\",\"data-border\":true,\"data-framer-name\":\"Frame 427322483\",layoutDependency:layoutDependency,layoutId:\"xo3TTx5V7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wffltk\",\"data-framer-name\":\"Frame 427322468\",layoutDependency:layoutDependency,layoutId:\"duMpsvD59\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fy5fby-container\",layoutDependency:layoutDependency,layoutId:\"Q2zklmGOW-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Q2zklmGOW\",layoutId:\"Q2zklmGOW\",style:{height:\"100%\",width:\"100%\"},variant:\"IEZpDik_S\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(31, 31, 31))\"},children:\"Business Analyst\"})]}),className:\"framer-ik87li\",\"data-framer-name\":\"Ahmed Taleb Business Analyst\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"cJodQ6flH\",style:{\"--extracted-2gxw0f\":\"rgb(31, 31, 31)\",\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"How to communicate with Ahmed:\"})}),className:\"framer-9xg6qm\",\"data-framer-name\":\"How to communicate with Ahmed:\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"k4ElVCqkE\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c25aao\",\"data-framer-name\":\"Frame 427322467\",layoutDependency:layoutDependency,layoutId:\"WXS95wAUv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ay89jy\",\"data-framer-name\":\"Frame 427322464\",layoutDependency:layoutDependency,layoutId:\"qk2RkmhFH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-e4wmp6\",\"data-framer-name\":\"Toggle / Status Complete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"BikHBzcgx\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.7283C4.63893 13.7283 2.12988 11.2192 2.12988 8.12414C2.12988 5.02907 4.63893 2.52002 7.73401 2.52002C10.8291 2.52002 13.3381 5.02907 13.3381 8.12414C13.3381 11.2192 10.8291 13.7283 7.73401 13.7283Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.25592C10.0433 6.07355 9.74758 6.07355 9.5652 6.25592L7.11225 8.70887L5.90466 7.50129C5.72228 7.31891 5.42658 7.31891 5.24421 7.50129C5.06183 7.68366 5.06183 7.97936 5.24421 8.16174L7.11225 10.0298L10.2256 6.91638C10.408 6.734 10.408 6.4383 10.2256 6.25592Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Don\u2019t interrupt Ahmed\"})}),className:\"framer-8s8yp7\",\"data-framer-name\":\"Don\u2019t interrupt Ace\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xiAsW6RVB\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6g5tbo\",\"data-framer-name\":\"Frame 427322465\",layoutDependency:layoutDependency,layoutId:\"AJ7vWyR9e\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lot5yv\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"hGOr1SDmd\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73498 13.4084C4.63991 13.4084 2.13086 10.8994 2.13086 7.80432C2.13086 4.70925 4.63991 2.2002 7.73498 2.2002C10.8301 2.2002 13.3391 4.70925 13.3391 7.80432C13.3391 10.8994 10.8301 13.4084 7.73498 13.4084Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 5.9361C10.0433 5.75372 9.74758 5.75372 9.5652 5.9361L7.11225 8.38905L5.90466 7.18146C5.72228 6.99908 5.42658 6.99908 5.24421 7.18146C5.06183 7.36384 5.06183 7.65953 5.24421 7.84191L7.11225 9.70996L10.2256 6.59655C10.408 6.41417 10.408 6.11848 10.2256 5.9361Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Provide a high-level summary before going into details.\"})}),className:\"framer-p0d2y0\",\"data-framer-name\":\"Provide a high-level summary before going into details.\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"eslGOJ3F5\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wpa26x\",\"data-framer-name\":\"Frame 427322466\",layoutDependency:layoutDependency,layoutId:\"yi6Nndod5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cr52yv\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ZiWg97Xcf\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.6165C4.63893 13.6165 2.12988 11.1074 2.12988 8.01233C2.12988 4.91725 4.63893 2.4082 7.73401 2.4082C10.8291 2.4082 13.3381 4.91725 13.3381 8.01233C13.3381 11.1074 10.8291 13.6165 7.73401 13.6165Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.1446C10.0433 5.96222 9.74758 5.96222 9.5652 6.1446L7.11225 8.59755L5.90466 7.38996C5.72228 7.20758 5.42658 7.20758 5.24421 7.38996C5.06183 7.57234 5.06183 7.86803 5.24421 8.05041L7.11225 9.91845L10.2256 6.80505C10.408 6.62267 10.408 6.32698 10.2256 6.1446Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Give Ahmed time to answer questions\"})}),className:\"framer-1p1uxl2\",\"data-framer-name\":\"Give Ace time to answer questions\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"jJgpnbiGJ\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-83glon\",\"data-framer-name\":\"Frame 1707479563\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MrpuTUpsq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 58\"><path d=\"M 4.799 1.804 C 4.634 1.64 4.366 1.64 4.201 1.804 L 1.508 4.479 C 1.343 4.643 1.343 4.909 1.508 5.073 C 1.673 5.237 1.941 5.237 2.107 5.073 L 4.5 2.696 L 6.893 5.073 C 7.058 5.237 7.326 5.237 7.491 5.073 C 7.657 4.909 7.657 4.643 7.491 4.479 Z M 4.077 2.101 L 4.077 26.478 L 4.923 26.478 L 4.923 2.101 Z M 31.577 53.797 L 55.269 53.797 L 55.269 52.957 L 31.577 52.957 Z M 4.077 26.478 C 4.077 41.566 16.389 53.797 31.577 53.797 L 31.577 52.957 C 16.856 52.957 4.923 41.102 4.923 26.478 Z\" fill=\"rgb(31,31,31)\"></path></svg>',svgContentId:12154212752,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-wfrycw\",\"data-framer-appear-id\":\"wfrycw\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"cjBwyKAcH\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mo2iw0-container\",layoutDependency:layoutDependency,layoutId:\"jDKPw3rmF-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"jDKPw3rmF\",layoutId:\"jDKPw3rmF\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Slack Integration\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Elevate your Slack game\"})}),className:\"framer-9j7hxz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MZOI40hTv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"By integrating SurePeople with Slack, you can transform your team's workflow, foster more effective communication, and take collaboration to new heights.\"})}),className:\"framer-vl4h4s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XGuvP5eIx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u8mspp\",\"data-framer-name\":\"Web app desktop\",layoutDependency:layoutDependency,layoutId:\"bbv3b9H8n\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r4081m\",\"data-border\":true,\"data-framer-name\":\"1. Web App - Dashboard\",layoutDependency:layoutDependency,layoutId:\"MhDF9JGz_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:9.6,borderBottomRightRadius:9.6,borderTopLeftRadius:9.6,borderTopRightRadius:9.6,boxShadow:\"0px 3px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-st6y7b\",\"data-framer-name\":\"Frame 427322485\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:360,layoutDependency:layoutDependency,layoutId:\"uSbxQkbZ7\",svg:'<svg width=\"360\" height=\"31\" viewBox=\"0 0 360 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.1848 18.9429L13.2065 20.0835L9.25 17.8022V13.2397L13.2066 10.9585L17.1631 13.2397L17.163 17.8023L15.1848 18.9429ZM12.3546 19.0656L9.70625 17.5386V17.4688L10.5688 15.9768L12.3546 19.0656ZM12.3546 11.9764L9.70625 16.5573V13.5033L12.3546 11.9764ZM12.2831 13.0116L13.1451 11.5206L13.2065 11.4851L13.268 11.5206L14.13 13.0116H12.2831ZM16.7068 16.5573L14.0585 11.9764L16.7068 13.5033V16.5573ZM15.8442 15.9768L16.7068 17.4688V17.5386L14.0585 19.0656L15.8442 15.9768ZM14.13 18.0304L13.268 19.5214L13.2065 19.5568L13.1451 19.5214L12.2831 18.0304H14.13ZM14.3938 17.5741H12.0193L10.8324 15.521L12.0193 13.4679H14.3938L15.5807 15.521L14.3938 17.5741ZM21.3701 16.3341C21.3701 16.3341 21.8592 16.7811 22.4037 16.7811C22.6218 16.7811 22.8567 16.6967 22.8567 16.4365C22.8567 16.2393 22.5704 16.1203 22.2175 15.9736C21.6499 15.7377 20.9099 15.4302 20.9099 14.6101C20.9099 13.8126 21.5809 13.2862 22.4399 13.2862C23.3711 13.2862 23.8301 13.7765 23.8301 13.7765L23.3832 14.6415C23.3832 14.6415 22.9482 14.2608 22.4278 14.2608C22.2098 14.2608 21.9688 14.3572 21.9688 14.5993C21.9688 14.81 22.2602 14.9245 22.6176 15.065C23.1838 15.2876 23.9156 15.5753 23.9156 16.4136C23.9156 17.1328 23.3651 17.7557 22.3917 17.7557C21.3761 17.7557 20.8135 17.1389 20.8135 17.1389L21.3701 16.3341ZM24.8768 13.3583H25.9345V16.0906C25.9345 16.5436 26.2309 16.7858 26.6838 16.7858C27.1368 16.7858 27.4332 16.5436 27.4332 16.0906V13.3583H28.4909V16.0906C28.4909 17.0641 27.7777 17.7532 26.6887 17.7532C25.5887 17.7532 24.8743 17.0641 24.8743 16.0906V13.3583H24.8768ZM31.25 13.3583H29.7453V17.6821H30.8031V16.2256H31.2982L32.0656 17.6821H33.2451L32.4042 16.1702C32.3018 15.9882 32.2415 15.9099 32.2415 15.9099V15.8979C32.6704 15.6798 32.8885 15.1787 32.8885 14.7185C32.8885 14.0896 32.5801 13.6487 32.0909 13.4607C31.903 13.3884 31.691 13.3583 31.25 13.3583ZM31.8127 14.7847C31.8127 15.1293 31.6006 15.3172 31.2621 15.3172H30.8031V14.2655H31.1597C31.6922 14.2655 31.8127 14.4582 31.8127 14.7847ZM34.1643 13.3583H36.8725V14.2655H35.2221V15.051H36.54V15.9581H35.2221V16.7749H36.9581V17.6821H34.1643V13.3583ZM38.6325 17.3317H38.0759V17.6811H39.612V17.3305H39.0554V16.0005H40.0167C40.2529 16.0005 40.4456 15.9824 40.6456 15.9161C41.1227 15.7463 41.419 15.2933 41.419 14.7066C41.419 14.1572 41.1528 13.7404 40.736 13.5525C40.5372 13.4561 40.2709 13.432 40.0107 13.432H38.0759V13.7826H38.6325V17.3317ZM40.489 15.5535C40.3492 15.6077 40.1806 15.6378 39.9746 15.6378H39.0566V13.7934H39.9758C40.1999 13.7934 40.3938 13.8295 40.5504 13.8958C40.8347 14.0416 40.9914 14.3199 40.9914 14.7066C40.9914 15.1246 40.8034 15.427 40.489 15.5535ZM42.2539 17.3317H42.8105V13.7826H42.2539V13.432H45.2597V14.3138H44.8718V13.7946H43.2333V15.3595H44.8417V15.7234H43.2333V17.3184H44.9874V16.7691H45.3681V17.6823H42.2539V17.3317ZM50.6713 15.5292C50.6713 14.3016 49.71 13.3583 48.5004 13.3583C47.2969 13.3583 46.3355 14.3016 46.3355 15.5292C46.3355 16.7749 47.2969 17.7544 48.5004 17.7544C49.71 17.7544 50.6713 16.7749 50.6713 15.5292ZM50.2292 15.5292C50.2292 16.5701 49.4497 17.3676 48.5004 17.3676C47.5511 17.3676 46.7777 16.5689 46.7777 15.5292C46.7777 14.5137 47.5511 13.745 48.5004 13.745C49.4497 13.745 50.2292 14.5137 50.2292 15.5292ZM51.6208 17.3317H52.1774V13.7825H51.6208V13.432H53.5556C53.8158 13.432 54.082 13.4561 54.2808 13.5524C54.6976 13.7404 54.9639 14.1572 54.9639 14.7066C54.9639 15.2933 54.6675 15.7462 54.1904 15.9161C53.9905 15.9824 53.7977 16.0004 53.5616 16.0004H52.6002V17.3305H53.1568V17.681H51.6208V17.3317ZM53.5194 15.6378C53.7254 15.6378 53.8941 15.6077 54.0338 15.5535C54.3483 15.427 54.5362 15.1246 54.5362 14.7066C54.5362 14.3199 54.3796 14.0416 54.0953 13.8958C53.9387 13.8295 53.7447 13.7934 53.5206 13.7934H52.6014V15.6378H53.5194ZM56.355 17.3317H55.7984V17.6822H58.8632V16.6112H58.4765V17.3184H56.7779V13.7946H57.3344V13.432H55.7984V13.7946H56.355V17.3317ZM59.6741 17.3317H60.2307V13.7825H59.6741V13.432H62.6787V14.3138H62.292V13.7946H60.6536V15.3595H62.2619V15.7234H60.6536V17.3184H62.4065V16.7691H62.7884V17.6822H59.6741V17.3317Z\" fill=\"#131316\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ryhx6\",\"data-framer-name\":\"Frame 1707479581\",layoutDependency:layoutDependency,layoutId:\"kNWcqrAE9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gs0dx5\",\"data-framer-name\":\"Frame 1707479570\",layoutDependency:layoutDependency,layoutId:\"iQgjp95ds\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngdjk8\",\"data-framer-name\":\"Frame 1707479580\",layoutDependency:layoutDependency,layoutId:\"JTe8uu__X\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-plbqfd\",\"data-framer-name\":\"Frame 937\",layoutDependency:layoutDependency,layoutId:\"SxJpBHNBm\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/IfQpFv8ddywaPWCPkGtW1ATrvk.png\"},className:\"framer-1ipcw1u\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"z5OxKrc1U\",style:{\"--border-bottom-width\":\"0.4166666567325592px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0.4166666567325592px\",\"--border-right-width\":\"0.4166666567325592px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4166666567325592px\",borderBottomLeftRadius:41.67,borderBottomRightRadius:41.67,borderTopLeftRadius:41.67,borderTopRightRadius:41.67}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"5.5px\",\"--framer-line-height\":\"2.25px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"5.5px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"Ace Jackson\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"2.25px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(51, 51, 51, 0.6499999761581421))\"},children:\"SVP, North American Region\"})})]}),className:\"framer-1fl6pag\",\"data-framer-name\":\"Ace Jackson SVP, North American Region\",fonts:[\"GF;Work Sans-500\",\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"c_jZj0fAY\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--extracted-5dqwso\":\"rgba(51, 51, 51, 0.6499999761581421)\",\"--framer-paragraph-spacing\":\"3.75px\"},verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11uajx1\",\"data-framer-name\":\"Frame 427322425\",layoutDependency:layoutDependency,layoutId:\"NAq9XRbYC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3x2td5\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"Nig3uS5pP\",svg:'<svg width=\"16\" height=\"21\" viewBox=\"0 0 16 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_242_9974)\">\\n<path d=\"M8.00033 2.16064L15.7087 6.64136V15.6028L8.00033 20.0835L0.291992 15.6028V6.64136L8.00033 2.16064Z\" fill=\"#F8941D\"/>\\n<mask id=\"mask0_242_9974\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"12\" width=\"2\" height=\"2\">\\n<path d=\"M6.72407 12.8604H5.50098V13.481H6.72407V12.8604Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_242_9974)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.74641 13.4676C5.79667 13.4536 5.84798 13.4298 5.89233 13.4047C6.07774 13.302 6.28299 13.2958 6.48804 13.3028C6.58476 13.3058 6.65677 13.3288 6.70217 13.2291C6.72877 13.1712 6.73363 13.0775 6.70217 13.0194C6.60461 12.8357 6.12905 12.8379 5.96244 12.8897C5.79667 12.9416 5.46133 13.1361 5.50483 13.3339C5.53735 13.4825 5.64104 13.4965 5.74641 13.4676Z\" fill=\"#0D0E0E\"/>\\n</g>\\n<path d=\"M10.5267 12.812C10.5267 12.5828 10.3429 12.397 10.1164 12.397C9.88977 12.397 9.70605 12.5828 9.70605 12.812V13.4345C9.70605 13.6637 9.88977 13.8495 10.1164 13.8495C10.3429 13.8495 10.5267 13.6637 10.5267 13.4345V12.812Z\" fill=\"#0D0E0E\"/>\\n<path d=\"M7.21777 13.8496H8.78212V13.9015C8.78212 14.4205 8.3659 14.8414 7.85297 14.8414C7.50285 14.8414 7.21777 14.5531 7.21777 14.1989V13.8496Z\" fill=\"#0D0E0E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.27221 14.2728H7.4043V13.9824H8.40144L8.27221 14.2728Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.2666 14.7036C7.32383 14.508 7.52803 14.3964 7.72125 14.4542C7.91447 14.5121 8.02512 14.7187 7.9679 14.9143\" fill=\"#ED2224\"/>\\n<path d=\"M10.5273 10.7858C10.975 10.5881 11.5448 10.9097 11.6258 11.3915C11.6364 11.4621 11.6383 11.535 11.6189 11.6132C11.5792 11.602 11.5462 11.5886 11.5144 11.5758C11.4312 11.5435 11.3416 11.5023 11.2671 11.4638C10.9657 11.3052 10.7007 11.0887 10.5273 10.7858Z\" fill=\"black\"/>\\n<path d=\"M5.28793 12.7105C5.0871 12.4628 5.10548 12.106 5.29152 11.8511C5.47566 11.5947 5.82873 11.4746 6.11466 11.6153C6.03969 11.7287 5.9548 11.8237 5.87287 11.9283C5.73603 12.0992 5.65536 12.2126 5.52845 12.3926C5.45412 12.4955 5.3781 12.612 5.28793 12.7105Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_242_9974\">\\n<rect width=\"15.4167\" height=\"19.5833\" fill=\"white\" transform=\"translate(0.291992 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p71urd\",\"data-framer-name\":\"Frame 1707479565\",layoutDependency:layoutDependency,layoutId:\"fY2MCW2gD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h3n4ht\",\"data-framer-name\":\"Frame 427322413\",layoutDependency:layoutDependency,layoutId:\"cDdSuNooE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"5px\",\"--framer-line-height\":\"2.25px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"Prism Portrait\"})})}),className:\"framer-mml5xs\",\"data-framer-name\":\"Prism Portrait\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"JPA4BO1F1\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"Discover who you are and how you can leverage your strengths and skills.\"})})}),className:\"framer-1l3al3w\",\"data-framer-name\":\"Discover who you are and how you can leverage your strengths and skills.\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"n3RWRywhL\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1df3zbc\",\"data-framer-name\":\"Frame 1707479577\",layoutDependency:layoutDependency,layoutId:\"EEIdzZkb4\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-giurpd\",\"data-framer-name\":\"Frame 1707479576\",layoutDependency:layoutDependency,layoutId:\"QyXr8xB0q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16z0v49\",\"data-framer-name\":\"Video icon\",layoutDependency:layoutDependency,layoutId:\"Et4JVnkfI\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1poiys0\",\"data-framer-name\":\"Video icon\",layoutDependency:layoutDependency,layoutId:\"W2brwTbVz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wnzup\",\"data-framer-name\":\"Video icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"OaVZvTKs9\",svg:'<svg width=\"8\" height=\"7\" viewBox=\"0 0 8 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.96112 0.583496H1.03888C0.809737 0.583496 0.625 0.769271 0.625 0.999703V5.66729C0.625 5.89772 0.809737 6.0835 1.03888 6.0835H6.96112C7.19026 6.0835 7.375 5.89772 7.375 5.66729V0.999703C7.375 0.769271 7.19026 0.583496 6.96112 0.583496ZM2.79743 1.00328H3.58967V1.50701H2.79743V1.00328ZM5.02849 3.34153C5.08533 3.37905 5.08711 3.463 5.02849 3.50051L3.40671 4.59551C3.34276 4.63838 3.25928 4.59194 3.25928 4.51692V2.37336C3.25928 2.29834 3.34276 2.25189 3.40493 2.29298L5.02671 3.34153H5.02849ZM1.97855 5.653H1.18632V5.14926H1.97855V5.653ZM1.97855 1.50701H1.18632V1.00328H1.97855V1.50701ZM3.59145 5.653H2.79921V5.14926H3.59145V5.653ZM5.20434 5.653H4.41211V5.14926H5.20434V5.653ZM5.20434 1.50701H4.41211V1.00328H5.20434V1.50701ZM6.81724 5.653H6.025V5.14926H6.81724V5.653ZM6.81724 1.50701H6.025V1.00328H6.81724V1.50701Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"5px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"700\"},children:\"How to Make a Compelling Pitch\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, rgba(255, 102, 51, 1))\"},children:\" \"})]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"By Anthony K. Tjan\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"8.75px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"Related Practice Area: \"})})]}),className:\"framer-iagurs\",\"data-framer-name\":\"How to Make a Compelling Pitch By Anthony K. Tjan Related Practice Area:\",fonts:[\"GF;Work Sans-700\",\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"NZhp_HWf9\",style:{\"--extracted-3sq8v0\":\"rgba(255, 102, 51, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uvyv4j\",\"data-framer-name\":\"Line 45\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"IsQSG6Zir\",svg:'<svg width=\"84\" height=\"4\" viewBox=\"-1 -1 84 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.875\" y1=\"1.0415\" x2=\"81.625\" y2=\"1.0415\" stroke=\"#BBBBBB\" stroke-width=\"0.25\" stroke-dasharray=\"0.5 0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tiux0\",\"data-framer-name\":\"Frame 1707479575\",layoutDependency:layoutDependency,layoutId:\"KdpW_isiC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e34ivu\",\"data-framer-name\":\"Podcast Icon\",layoutDependency:layoutDependency,layoutId:\"oLSaDsfmG\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1udnzci\",\"data-framer-name\":\"Refresh\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"VTnONSx2t\",svg:'<svg width=\"7\" height=\"4\" viewBox=\"0 0 7 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.1194 0.75C1.49166 0.75 0.169255 2.04421 0.12793 3.65625H0.81668C0.858005 2.42607 1.87276 1.43598 3.1194 1.43598C4.36604 1.43598 5.3808 2.42607 5.42213 3.65625H6.11088C6.06955 2.04421 4.74715 0.75 3.1194 0.75Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xlz427\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"WrS2YqF04\",svg:'<svg width=\"2\" height=\"3\" viewBox=\"0 0 2 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.14386 0.907096C0.836217 1.07402 0.625 1.39414 0.625 1.76685C0.625 2.13957 0.836217 2.45969 1.14386 2.62661C1.2839 2.70207 1.44002 2.7478 1.60991 2.7478C1.68108 2.7478 1.74996 2.73865 1.81654 2.72493V0.147949H1.14386V0.904809V0.907096Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-503luw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"Lq0v3Z0gf\",svg:'<svg width=\"2\" height=\"3\" viewBox=\"0 0 2 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.10398 0.907251V0.150391H0.433594V2.72737C0.500173 2.74109 0.569048 2.75024 0.640219 2.75024C0.810111 2.75024 0.966227 2.70451 1.10627 2.62905C1.41392 2.46213 1.62513 2.14201 1.62513 1.76929C1.62513 1.39658 1.41392 1.07646 1.10627 0.909537L1.10398 0.907251Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yh5mm4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:3,layoutDependency:layoutDependency,layoutId:\"Fs5JUjWO9\",svg:'<svg width=\"3\" height=\"3\" viewBox=\"0 0 3 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.47995 0.650879C1.18149 0.650879 0.94043 0.890971 0.94043 1.18823V2.71567H2.02177V1.18823C2.02177 0.890971 1.78071 0.650879 1.48225 0.650879H1.47995Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jzxf1v\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"UNLUqeINW\",svg:'<svg width=\"2\" height=\"3\" viewBox=\"0 0 2 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.730927 0.650879C0.432469 0.650879 0.191406 0.890971 0.191406 1.18823V2.71567H1.27274V1.18823C1.27274 0.890971 1.03168 0.650879 0.733223 0.650879H0.730927Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"5px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"700\"},children:\"Braving Trust\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, rgba(255, 102, 51, 1))\"},children:\" \"})]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"By Brene Brown\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"8.75px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"Related Practice Area: \"})})]}),className:\"framer-8qemdr\",\"data-framer-name\":\"Braving Trust By Brene Brown Related Practice Area:\",fonts:[\"GF;Work Sans-700\",\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"qwkZSJ8h9\",style:{\"--extracted-3sq8v0\":\"rgba(255, 102, 51, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hziqx5\",\"data-framer-name\":\"Line 46\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"xX24ijFm3\",svg:'<svg width=\"84\" height=\"3\" viewBox=\"-1 -1 84 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.875\" y1=\"0.208496\" x2=\"81.625\" y2=\"0.208496\" stroke=\"#BBBBBB\" stroke-width=\"0.25\" stroke-dasharray=\"0.5 0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s0hla3\",\"data-framer-name\":\"Frame 1707479574\",layoutDependency:layoutDependency,layoutId:\"mZkw2hru7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lj04\",\"data-framer-name\":\"Articles icon\",layoutDependency:layoutDependency,layoutId:\"l8BYSqpDH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2e2g1\",\"data-framer-name\":\"Articles icon\",layoutDependency:layoutDependency,layoutId:\"uJrRUzwdy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l9h6om\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"oSyxawJp2\",svg:'<svg width=\"6\" height=\"7\" viewBox=\"0 0 6 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.76725 0.560556H0.34668V6.41649H5.37499V2.06742L3.76725 0.558105V0.560556ZM4.86861 5.92645H0.853055V1.05059H3.26087V2.5599H4.86861V5.92645Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qfo3ws\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"uNlbFnCRq\",svg:'<svg width=\"5\" height=\"7\" viewBox=\"0 0 5 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.17218 6.14959H1.02786V1.27373H3.43568V1.38644H4.58515L3.94205 0.783691H0.521484V6.63962H1.17218V6.14959Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xkhxct\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"L9CyPSqty\",svg:'<svg width=\"5\" height=\"7\" viewBox=\"0 0 5 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.27569 6.2824H1.13138V1.40654H3.53919V1.51925H4.68866L4.04557 0.916504H0.625V6.77243H1.27569V6.2824Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jk3z2d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"Ux3AfaO5S\",svg:'<svg width=\"4\" height=\"1\" viewBox=\"0 0 4 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.29628 0.0771484H0.470703V0.469177H3.29628V0.0771484Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t0ctb2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"hV1kmNckm\",svg:'<svg width=\"4\" height=\"1\" viewBox=\"0 0 4 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.29628 0.105957H0.470703V0.497986H3.29628V0.105957Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17hb32u\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"UZlVxtg9W\",svg:'<svg width=\"4\" height=\"1\" viewBox=\"0 0 4 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.29628 0.134766H0.470703V0.526794H3.29628V0.134766Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"5px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"700\"},children:\"Build a Flexible Business Plan\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, rgba(255, 102, 51, 1))\"},children:\" \"})]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"By Matt Abrahams HBP\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"3.500000238418579px\",\"--framer-line-height\":\"8.75px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"3.5px\"},children:\"Related Practice Area: \"})})]}),className:\"framer-1wi119t\",\"data-framer-name\":\"Build a Flexible Business Plan By Matt Abrahams HBP Related Practice Area:\",fonts:[\"GF;Work Sans-700\",\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"pb15DCyh_\",style:{\"--extracted-3sq8v0\":\"rgba(255, 102, 51, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-156l65z\",\"data-framer-name\":\"Frame 1707479569\",layoutDependency:layoutDependency,layoutId:\"z_G33vZlE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-akn021\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"AZ4NUSzTg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvbaip\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"hUIDv8uKz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"18.6448px\",src:\"https://framerusercontent.com/images/1HNco4hufPGEk4DJKbYEUF4YLcE.png\",srcSet:\"https://framerusercontent.com/images/1HNco4hufPGEk4DJKbYEUF4YLcE.png 692w\"},className:\"framer-18plt74\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"cWCQWylUk\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Kara \",/*#__PURE__*/_jsx(motion.br,{}),\"Johns\"]})})}),className:\"framer-5covr6\",\"data-framer-name\":\"Kara \\u2028Johns\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"UY8y0SZ3i\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wa9dxt\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"NVdZxpTPX\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9p5mWHMXruu2ZMDtNbCbKkYw2w.png\"},className:\"framer-ij8sdh\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"hYBYwAGzD\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Allan \",/*#__PURE__*/_jsx(motion.br,{}),\"Robertson\"]})})}),className:\"framer-1ge42j0\",\"data-framer-name\":\"Allan \\u2028Robertson\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"nSlFrt94f\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hip2kr\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"jmtJtt7Bm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/58WGfk7PxAXnZRbjwS1AICVTODE.png\"},className:\"framer-vr3lyx\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"wMP0431wd\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Eva \",/*#__PURE__*/_jsx(motion.br,{}),\"Chambers\"]})})}),className:\"framer-1sgba9n\",\"data-framer-name\":\"Eva \\u2028Chambers\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"F8EUetgmA\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2tcby2\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"tm9_cYecX\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/thgBw7maiWHN6tQSztLdgY2h0c.png\"},className:\"framer-1kefjo7\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"hehkQhqK7\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Noah \",/*#__PURE__*/_jsx(motion.br,{}),\"Middleton\"]})})}),className:\"framer-wtgolr\",\"data-framer-name\":\"Noah \\u2028Middleton\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"E3C35fCid\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tp3eu\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"rUnQKmwFy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/7RJvXhabAvX9JcYio1mKa1Fu8.png\"},className:\"framer-1mo5leo\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"QnVW2V5dQ\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Aaron \",/*#__PURE__*/_jsx(motion.br,{}),\"Fox\"]})})}),className:\"framer-q06hn5\",\"data-framer-name\":\"Aaron \\u2028Fox\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"yk7Nd2Dac\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-42xp2p\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"Utb1qeLqE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sp7aWPwdrIh8aN2a7LAyGwa59Y.png\"},className:\"framer-1nf6pgw\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"KJedeHgfW\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Lisa \",/*#__PURE__*/_jsx(motion.br,{}),\"Watts\"]})})}),className:\"framer-ueaovn\",\"data-framer-name\":\"Lisa \\u2028Watts\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"gGfHhiNYe\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17375uo\",\"data-framer-name\":\"Person\",layoutDependency:layoutDependency,layoutId:\"n9pBIGhP4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pSIKyD75luf6ZvfXq5DHCPZqu8.png\"},className:\"framer-6gygef\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"oZ10JAycu\",style:{\"--border-bottom-width\":\"0.16065144538879395px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.16065144538879395px\",\"--border-right-width\":\"0.16065144538879395px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.16065144538879395px\",borderBottomLeftRadius:16.07,borderBottomRightRadius:16.07,borderTopLeftRadius:16.07,borderTopRightRadius:16.07}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"2.9662184715270996px\",\"--framer-line-height\":\"3.81px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"2.97px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(38, 39, 43, 1))\"},children:[\"Travis \",/*#__PURE__*/_jsx(motion.br,{}),\"Wilkerson\"]})})}),className:\"framer-5ds5eu\",\"data-framer-name\":\"Travis \\u2028Wilkerson\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Rkx0TiLt7\",style:{\"--extracted-1w3ko1f\":\"rgba(38, 39, 43, 1)\",\"--framer-paragraph-spacing\":\"2.9662184715270996px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tznid7\",\"data-framer-name\":\"Frame 1707479573\",layoutDependency:layoutDependency,layoutId:\"fHeV158H6\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jq2c23\",\"data-framer-name\":\"Frame 1707479572\",layoutDependency:layoutDependency,layoutId:\"CSDRhhgNC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(64, 64, 64, 1))\"},children:\"SureCoach\"})})}),className:\"framer-rmsl6a\",\"data-framer-name\":\"SureCoach\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"B8LVPKp_d\",style:{\"--extracted-1w3ko1f\":\"rgba(64, 64, 64, 1)\",\"--framer-paragraph-spacing\":\"2.5px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"5px\",\"--framer-line-height\":\"7.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"5px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"Personalized, AI-driven guidance based on your Prism Portraits.\"})})}),className:\"framer-8bh62j\",\"data-framer-name\":\"Title\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"UJhtaqvgT\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--framer-paragraph-spacing\":\"7.5px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yzdrv9\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"TeqE8RDUc\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",backgroundColor:\"rgb(248, 148, 29)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px 4px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4.5px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(31, 31, 31, 1))\"},children:\"Get Started\"})})}),className:\"framer-92we9d\",\"data-framer-name\":\"Button\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"KWk0nBWV_\",style:{\"--extracted-1w3ko1f\":\"rgba(31, 31, 31, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lo3hvz\",\"data-framer-name\":\"Frame 1707479579\",layoutDependency:layoutDependency,layoutId:\"iGKz_71jV\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d6a9pe\",\"data-framer-name\":\"Frame 1707479578\",layoutDependency:layoutDependency,layoutId:\"cq0M_kkg_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(64, 64, 64, 1))\"},children:\"SureAdvice\"})})}),className:\"framer-1qlat4h\",\"data-framer-name\":\"SureAdvice\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Cn4na5xz8\",style:{\"--extracted-1w3ko1f\":\"rgba(64, 64, 64, 1)\",\"--framer-paragraph-spacing\":\"2.5px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"5px\",\"--framer-line-height\":\"6.25px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"5px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"Get tailored insights and actionable strategies to help inspire, guide, and motivate every member of your team.\"})})}),className:\"framer-1y8r74l\",\"data-framer-name\":\"Title\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"DiajKW5db\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--framer-paragraph-spacing\":\"7.5px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ow6woi\",\"data-framer-name\":\"Frame 1707479571\",layoutDependency:layoutDependency,layoutId:\"MTgiYixP6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1glzkpd\",\"data-framer-name\":\"Team Dropdown\",layoutDependency:layoutDependency,layoutId:\"p0zYPotUq\",style:{backgroundColor:\"rgba(243, 243, 243, 0.48)\",borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r53syh\",\"data-framer-name\":\"Left content\",layoutDependency:layoutDependency,layoutId:\"CIrkwEImO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-anqlii\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"oHpp7FFAY\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v43ln2\",\"data-framer-name\":\"user\",layoutDependency:layoutDependency,layoutId:\"sydMLfgcc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hu5wfq\",\"data-framer-name\":\"user\",layoutDependency:layoutDependency,layoutId:\"EdGuVO2Vl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sa2u54\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"dX7NAkcw9\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"-1 -1 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.624023 5.16895C1.20797 4.54959 2.00078 4.16895 2.87402 4.16895C3.74727 4.16895 4.54008 4.54959 5.12402 5.16895M3.99902 2.04395C3.99902 2.66527 3.49534 3.16895 2.87402 3.16895C2.2527 3.16895 1.74902 2.66527 1.74902 2.04395C1.74902 1.42262 2.2527 0.918945 2.87402 0.918945C3.49534 0.918945 3.99902 1.42262 3.99902 2.04395Z\" stroke=\"#333333\" stroke-width=\"0.375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pd36zf\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"KsKM1CTD3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4.5px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4.5px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(15, 15, 15, 1))\",\"--framer-text-transform\":\"uppercase\"},children:\"Select a Team Member\"})})}),className:\"framer-yrnudl\",\"data-framer-name\":\"User\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Ovhbktygh\",style:{\"--extracted-1w3ko1f\":\"rgba(15, 15, 15, 1)\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lyfu00\",\"data-framer-name\":\"Frame 1707479568\",layoutDependency:layoutDependency,layoutId:\"z5S6QdNp2\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e1xsab\",\"data-framer-name\":\"Frame 1707479567\",layoutDependency:layoutDependency,layoutId:\"hiYGt3le2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6px\",\"--framer-line-height\":\"5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(64, 64, 64, 1))\"},children:\"4 Careful Decision Makers\"})})}),className:\"framer-h7y29b\",\"data-framer-name\":\"4 Careful Decision Makers\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Zb0glfMSO\",style:{\"--extracted-1w3ko1f\":\"rgba(64, 64, 64, 1)\",\"--framer-paragraph-spacing\":\"2.5px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tckgpf\",\"data-framer-name\":\"Frame 909\",layoutDependency:layoutDependency,layoutId:\"l2XUylluc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r63mq7\",\"data-framer-name\":\"Group 908\",layoutDependency:layoutDependency,layoutId:\"PPCvhdry9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ojud7l\",\"data-border\":true,\"data-framer-name\":\"Ellipse 26\",layoutDependency:layoutDependency,layoutId:\"tJKmjPGmB\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgba(153, 153, 153, 0)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",backgroundColor:\"rgb(248, 148, 29)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"2.25px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tODAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"AB\"})})}),className:\"framer-bhj4wc\",\"data-framer-name\":\"AB\",fonts:[\"GF;Gabarito-800\"],layoutDependency:layoutDependency,layoutId:\"kzM2GsPMk\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"9.25px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/58WGfk7PxAXnZRbjwS1AICVTODE.png\"},className:\"framer-16tgv95\",\"data-border\":true,\"data-framer-name\":\"Ellipse 26\",layoutDependency:layoutDependency,layoutId:\"zYyYHoJC0\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9lFqlyOUezPCwPtcLFfYfsis4I.png\"},className:\"framer-mb5e2d\",\"data-border\":true,\"data-framer-name\":\"Ellipse 27\",layoutDependency:layoutDependency,layoutId:\"NsNFkKjW2\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4px\",\"--framer-line-height\":\"2.25px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tODAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(51, 51, 51, 1))\"},children:\"+1\"})})}),className:\"framer-ucqz5s\",\"data-framer-name\":\"+1\",fonts:[\"GF;Gabarito-800\"],layoutDependency:layoutDependency,layoutId:\"K44FTQzQT\",style:{\"--extracted-1w3ko1f\":\"rgba(51, 51, 51, 1)\",\"--framer-paragraph-spacing\":\"9.25px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4oeak3\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"ke8sBSAyW\",style:{\"--border-bottom-width\":\"0.25px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0.25px\",\"--border-right-width\":\"0.25px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.25px\",backgroundColor:\"rgb(248, 148, 29)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px 4px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"4.5px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(31, 31, 31, 1))\"},children:\"Team Advisor\"})})}),className:\"framer-16esy24\",\"data-framer-name\":\"Button\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"arfM_DU7a\",style:{\"--extracted-1w3ko1f\":\"rgba(31, 31, 31, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1kuaoqe\",\"data-framer-appear-id\":\"1kuaoqe\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"l6eDia_m6\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-46233y-container\",layoutDependency:layoutDependency,layoutId:\"yLM2UB3GR-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"yLM2UB3GR\",layoutId:\"yLM2UB3GR\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Web App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Real-time web-based collaboration at it's best\"})}),className:\"framer-hvb242\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aBDx3dS4e\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Our cutting-edge technology offers a user-friendly, web-based platform that streamlines teamwork and boosts productivity through a turnkey interface.\"})}),className:\"framer-m59qa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m0mBFuMrG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpskkl-container\",layoutDependency:layoutDependency,layoutId:\"AhsxzeZXL-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:10,arrowPadding:-11,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:24,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:900,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:20,overflow:false},gap:32,height:\"100%\",id:\"AhsxzeZXL\",intervalControl:4,itemAmount:1,layoutId:\"AhsxzeZXL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:-33,dotSize:5,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2o0et\",\"data-framer-name\":\"Native app desktop\",layoutDependency:layoutDependency,layoutId:\"B5dMtuTLR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fw39al-container\",layoutDependency:layoutDependency,layoutId:\"HptPxoC94-container\",children:/*#__PURE__*/_jsx(PersonalityScreen,{height:\"100%\",id:\"HptPxoC94\",layoutId:\"HptPxoC94\",variant:\"lEMnVr_QL\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-t9lfgf\",\"data-framer-appear-id\":\"t9lfgf-1\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"eM5Xwxjv7\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tt3sen-container\",layoutDependency:layoutDependency,layoutId:\"gpPAG248p-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"gpPAG248p\",layoutId:\"gpPAG248p\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Phone App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Unleash SurePeople's potential in the palm of your hand\"})}),className:\"framer-vowtka\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iWIyWg8zX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Experience the convenience and power of our innovative technology with the SurePeople App.\"})}),className:\"framer-lpzoii\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rbQxhk8j2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lsk15t\",\"data-framer-name\":\"Web app desktop\",layoutDependency:layoutDependency,layoutId:\"yovsyEhEc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1trtn4j\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"RWWoSqeSz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17,boxShadow:\"0px 3px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xqbbw8\",\"data-framer-name\":\"2. Web App - Relationship Advisor\",layoutDependency:layoutDependency,layoutId:\"pRbwVdjum\",style:{\"--8wzv9z\":ZnRs9GjptIjQ1rlf0a,backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:5.33,borderBottomRightRadius:5.33,borderTopLeftRadius:5.33,borderTopRightRadius:5.33},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1474egi\",\"data-framer-name\":\"Rectangle 439\",layoutDependency:layoutDependency,layoutId:\"C3YhFJvAM\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r46mgf\",\"data-framer-name\":\"Rectangle 441\",layoutDependency:layoutDependency,layoutId:\"yHflrN_1L\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zdid1y\",\"data-framer-name\":\"Rectangle 442\",layoutDependency:layoutDependency,layoutId:\"xSNZHKtJ7\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wsuhnq\",\"data-framer-name\":\"Vector 17\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:307,intrinsicWidth:305,layoutDependency:layoutDependency,layoutId:\"wUSm9nrfT\",svg:'<svg width=\"305\" height=\"307\" viewBox=\"-1 -1 305 307\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" filter=\"url(#filter0_f_102_10465)\">\\n<path d=\"M45.2335 232.964C57.1992 283.005 157.494 294.319 214.344 258.598C293.074 209.129 298.294 147.457 239.541 78.0043C166.099 -8.81219 125.636 0.529685 136.834 130.273C148.032 260.017 33.2679 182.923 45.2335 232.964Z\" fill=\"#FF6B00\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_102_10465\" x=\"-102.909\" y=\"-125.99\" width=\"529.308\" height=\"552.681\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"73.6333\" result=\"effect1_foregroundBlur_102_10465\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tcgi2x\",\"data-framer-name\":\"Vector 18\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:290,intrinsicWidth:289,layoutDependency:layoutDependency,layoutId:\"mVlAhVhn9\",svg:'<svg width=\"289\" height=\"290\" viewBox=\"-1 -1 289 290\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.6\" filter=\"url(#filter0_f_102_10466)\">\\n<path d=\"M42.7329 220.261C54.0637 267.647 149.036 278.36 202.87 244.535C277.422 197.691 282.365 139.292 226.729 73.5244C157.184 -8.68519 118.869 0.160965 129.473 123.02C140.077 245.879 31.4022 172.875 42.7329 220.261Z\" fill=\"#FFC700\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_102_10466\" x=\"-105.363\" y=\"-127.46\" width=\"516.849\" height=\"538.982\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"73.6333\" result=\"effect1_foregroundBlur_102_10466\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p2ewup\",\"data-framer-name\":\"Ellipse 32\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:614,intrinsicWidth:659,layoutDependency:layoutDependency,layoutId:\"yD1ap1WNM\",svg:'<svg width=\"659\" height=\"614\" viewBox=\"0 0 659 614\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\" filter=\"url(#filter0_f_102_10467)\">\\n<path d=\"M3.80309 461.55C-18.5705 546.59 338.879 209.591 573.671 436C610.977 445.815 472.631 415.373 495.004 330.333C517.378 245.293 661.795 142.057 624.489 132.242C587.183 122.427 26.1767 376.51 3.80309 461.55Z\" fill=\"url(#paint0_linear_102_10467)\" fill-opacity=\"0.5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_102_10467\" x=\"-102.532\" y=\"26.6322\" width=\"838.478\" height=\"554.347\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"52.6667\" result=\"effect1_foregroundBlur_102_10467\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_102_10467\" x1=\"347.493\" y1=\"392.594\" x2=\"487.964\" y2=\"180.804\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A3FF\"/>\\n<stop offset=\"1\" stop-color=\"#2ED3B7\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6f9hha\",\"data-framer-name\":\"Vector 19\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:175,intrinsicWidth:168,layoutDependency:layoutDependency,layoutId:\"coawhSjyi\",svg:'<svg width=\"168\" height=\"175\" viewBox=\"-1 -1 168 175\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.8\" filter=\"url(#filter0_f_102_10468)\">\\n<path d=\"M26.28 131.444C33.2065 160.205 87.7506 167.547 118.306 147.58C160.62 119.927 162.923 84.6539 130.429 44.3734C89.8128 -5.9771 67.9276 -0.975427 75.1233 73.423C82.319 147.822 19.3535 102.683 26.28 131.444Z\" fill=\"#FFC700\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_102_10468\" x=\"-121.52\" y=\"-136.025\" width=\"421.468\" height=\"442.127\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"73.6333\" result=\"effect1_foregroundBlur_102_10468\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19pguy3\",\"data-framer-name\":\"Cursors / Default\",layoutDependency:layoutDependency,layoutId:\"XVYEKZZLc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sh6v29\",\"data-framer-name\":\"Cursors / Default\",layoutDependency:layoutDependency,layoutId:\"aU0XymsuJ\",style:{boxShadow:\"0px 0.3333333432674408px 0.6666666865348816px 0px rgba(0, 0, 0, 0.40490004420280457)\"}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dq2oo1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KUZdwdZHb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1avw6aa\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"YxmTdpZrR\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5lpl16\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:79,layoutDependency:layoutDependency,layoutId:\"MPu3bJnSZ\",svg:'<svg width=\"79\" height=\"13\" viewBox=\"0 0 79 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.24603 11.3959L5.6084 12.9167L0.333008 9.87499V3.79164L5.60846 0.75L10.8838 3.79164L10.8837 9.87506L8.24603 11.3959ZM4.47244 11.5595L0.941341 9.52353V9.43046L2.09147 7.44104L4.47244 11.5595ZM4.47244 2.10714L0.941341 8.21501V4.1431L4.47244 2.10714ZM4.37712 3.48747L5.52646 1.49942L5.6084 1.45218L5.69034 1.49942L6.83968 3.48747H4.37712ZM10.2755 8.21501L6.74435 2.10714L10.2755 4.1431V8.21501ZM9.12533 7.44104L10.2755 9.43046V9.52353L6.74435 11.5595L9.12533 7.44104ZM6.83968 10.1792L5.69033 12.1672L5.6084 12.2145L5.52646 12.1672L4.37712 10.1792H6.83968ZM7.19137 9.57082H4.02543L2.44281 6.83332L4.02543 4.09581H7.19137L8.77399 6.83332L7.19137 9.57082ZM16.4921 7.91757C16.4921 7.91757 17.1443 8.51351 17.8703 8.51351C18.1611 8.51351 18.4743 8.40107 18.4743 8.05411C18.4743 7.79111 18.0926 7.6325 17.622 7.43691C16.8653 7.12242 15.8785 6.71233 15.8785 5.61896C15.8785 4.55559 16.7732 3.85364 17.9185 3.85364C19.1602 3.85364 19.7722 4.5074 19.7722 4.5074L19.1763 5.66072C19.1763 5.66072 18.5964 5.15313 17.9025 5.15313C17.6117 5.15313 17.2905 5.28164 17.2905 5.6045C17.2905 5.88541 17.679 6.03816 18.1555 6.22546C18.9105 6.52226 19.8862 6.90582 19.8862 8.02359C19.8862 8.98255 19.1522 9.81301 17.8543 9.81301C16.5002 9.81301 15.75 8.99058 15.75 8.99058L16.4921 7.91757ZM21.1679 3.95007H22.5783V7.59316C22.5783 8.19713 22.9734 8.51999 23.5774 8.51999C24.1813 8.51999 24.5765 8.19713 24.5765 7.59316V3.95007H25.9868V7.59316C25.9868 8.89105 25.0359 9.80985 23.5838 9.80985C22.1173 9.80985 21.1647 8.89105 21.1647 7.59316V3.95007H21.1679ZM29.6654 3.95007H27.6592V9.71508H29.0695V7.77306H29.7297L30.7529 9.71508H32.3255L31.2043 7.69917C31.0677 7.45662 30.9874 7.35221 30.9874 7.35221V7.33615C31.5593 7.04541 31.85 6.37719 31.85 5.76358C31.85 4.92509 31.4388 4.33719 30.7866 4.0866C30.536 3.99023 30.2533 3.95007 29.6654 3.95007ZM30.4156 5.85193C30.4156 6.31133 30.1329 6.56191 29.6815 6.56191H29.0695V5.15962H29.545C30.2549 5.15962 30.4156 5.41662 30.4156 5.85193ZM33.5507 3.95H37.1616V5.15954H34.961V6.20685H36.7183V7.41639H34.961V8.50546H37.2757V9.715H33.5507V3.95ZM39.5084 9.24764H38.7663V9.71347H40.8143V9.24604H40.0722V7.47268H41.354C41.6689 7.47268 41.9259 7.44858 42.1925 7.36024C42.8286 7.13375 43.2238 6.52978 43.2238 5.74752C43.2238 5.01504 42.8688 4.45926 42.313 4.20868C42.048 4.08018 41.693 4.04805 41.346 4.04805H38.7663V4.51548H39.5084V9.24764ZM41.9837 6.87675C41.7974 6.94903 41.5725 6.98918 41.2978 6.98918H40.0738V4.52994H41.2994C41.5982 4.52994 41.8568 4.57813 42.0656 4.66648C42.4447 4.86084 42.6535 5.23189 42.6535 5.74752C42.6535 6.3049 42.4029 6.70808 41.9837 6.87675ZM44.3372 9.24769H45.0794V4.51553H44.3372V4.0481H48.345V5.22391H47.8277V4.53159H45.6432V6.61817H47.7876V7.10328H45.6432V9.23002H47.9819V8.49755H48.4895V9.71512H44.3372V9.24769ZM55.5599 6.84455C55.5599 5.20773 54.278 3.95 52.6653 3.95C51.0606 3.95 49.7788 5.20773 49.7788 6.84455C49.7788 8.50546 51.0606 9.81138 52.6653 9.81138C54.278 9.81138 55.5599 8.50546 55.5599 6.84455ZM54.9703 6.84455C54.9703 8.23239 53.9311 9.29576 52.6653 9.29576C51.3995 9.29576 50.3683 8.23078 50.3683 6.84455C50.3683 5.49044 51.3995 4.46562 52.6653 4.46562C53.9311 4.46562 54.9703 5.49044 54.9703 6.84455ZM56.8257 9.24764H57.5678V4.51548H56.8257V4.04805H59.4054C59.7523 4.04805 60.1073 4.08018 60.3724 4.20868C60.9281 4.45926 61.2831 5.01504 61.2831 5.74752C61.2831 6.52978 60.888 7.13375 60.2519 7.36024C59.9852 7.44858 59.7282 7.47268 59.4134 7.47268H58.1316V9.24604H58.8737V9.71347H56.8257V9.24764ZM59.3572 6.98918C59.6319 6.98918 59.8567 6.94903 60.0431 6.87675C60.4623 6.70808 60.7129 6.3049 60.7129 5.74752C60.7129 5.23189 60.5041 4.86084 60.125 4.66648C59.9162 4.57813 59.6576 4.52994 59.3588 4.52994H58.1332V6.98918H59.3572ZM63.1389 9.24769H62.3968V9.71512H66.4832V8.28712H65.9676V9.23002H63.7027V4.53159H64.4449V4.0481H62.3968V4.53159H63.1389V9.24769ZM67.5639 9.24764H68.306V4.51548H67.5639V4.04805H71.57V5.22386H71.0544V4.53155H68.8699V6.61813H71.0143V7.10323H68.8699V9.22997H71.207V8.4975H71.7162V9.71507H67.5639V9.24764Z\" fill=\"#131316\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ke7m5e\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"lkjhOY5wd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1min7jw\",\"data-framer-name\":\"Page \",layoutDependency:layoutDependency,layoutId:\"iG7CpJXwU\"})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16i5pbq\",\"data-framer-name\":\"Frame 938\",layoutDependency:layoutDependency,layoutId:\"tRQJPXmQB\",style:{borderBottomLeftRadius:3.33,borderBottomRightRadius:3.33},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l2zais\",\"data-framer-name\":\"Frame 427322431\",layoutDependency:layoutDependency,layoutId:\"ELE7Gz0ZR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ho4z9c\",\"data-framer-name\":\"Members\",layoutDependency:layoutDependency,layoutId:\"rliba4_dk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-260i4m\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"AXAUNNVXL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9nrr9q\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"DQGArTsL3\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8udzde\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"kgqrWIc1k\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9gf1ih\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"P5q12gdAx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18b4a52\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"aQAMNMZi2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lat0bo\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"pfHUEZToh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eqtu9a\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"tR6U4h699\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lzi2qc\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"EDYCNFZRF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fvbibc\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"LP64p4u5G\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sx9911\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"wRJSxTIgE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ft431o\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"EcUGSOjX0\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e0czun\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"mMiLnJupg\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u90p6a\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"V6QOIEsMV\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nlgwyi\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"HpY8lw_ix\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jho2y9\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"j0Rk8sPy5\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w6uxiv\",\"data-framer-name\":\"Member\",layoutDependency:layoutDependency,layoutId:\"w_8BsSAeY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ivmkpg\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"UdO1s29ZR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fv8i8g\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"yj0dYjPWu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}})]})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"6.67px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Relationship Advisor\"})}),className:\"framer-yzm40b\",\"data-framer-name\":\"Relationship Advisor\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"vbWfTQiu0\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"3.3333332538604736px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"6.67px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Conflict Management\"})}),className:\"framer-6um1s1\",\"data-framer-name\":\"Conflict Management\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"yKPN3irOe\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"3.3333332538604736px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fp7uni\",\"data-framer-name\":\"Group 9407\",layoutDependency:layoutDependency,layoutId:\"YInoQZcuZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-1hh7cug\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"IlGbagmki\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"8.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Ahmed Taleb\"})}),className:\"framer-xh0daw\",\"data-framer-name\":\"Michael Smith\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"m6u_9hQoB\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"6.287036895751953px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Set as Under Pressure\"})}),className:\"framer-1i7j5ky\",\"data-framer-name\":\"Set as Under Pressure\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"vF8kLMzWX\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"6.287036895751953px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1ew8omw\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Y6mOShsgu\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-165dgeq\",\"data-framer-name\":\"Frame 427322431\",layoutDependency:layoutDependency,layoutId:\"Cnd8st2Y6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"8.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Me\"})}),className:\"framer-lin6fr\",\"data-framer-name\":\"Me\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"HjPhsLZ4C\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"6.287036895751953px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Set as Under Pressure\"})}),className:\"framer-u13tla\",\"data-framer-name\":\"Set as Under Pressure\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"VNJHL0HL6\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"6.287036895751953px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-512jof\",\"data-framer-name\":\"Frame 427322327\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:140,layoutDependency:layoutDependency,layoutId:\"Eh6tnpQU6\",svg:'<svg width=\"140\" height=\"16\" viewBox=\"0 0 140 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_102_10580)\">\\n<g clip-path=\"url(#clip1_102_10580)\">\\n<circle cx=\"5.33333\" cy=\"5.50008\" r=\"5.33333\" fill=\"black\" fill-opacity=\"0.08\"/>\\n<rect x=\"14.667\" y=\"2.83337\" width=\"41\" height=\"5.33333\" rx=\"2.66667\" fill=\"black\" fill-opacity=\"0.16\"/>\\n</g>\\n</g>\\n<line x1=\"139.333\" y1=\"16.1667\" x2=\"0.000152588\" y2=\"16.1667\" stroke=\"#5CB63C\" stroke-width=\"0.666667\"/>\\n<defs>\\n<clipPath id=\"clip0_102_10580\">\\n<rect width=\"55.6667\" height=\"10.6667\" fill=\"white\" transform=\"translate(0 0.166748)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_102_10580\">\\n<rect width=\"55.6667\" height=\"10.6667\" fill=\"white\" transform=\"translate(0 0.166748)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aihj0b\",\"data-framer-name\":\"Frame 427322328\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:142,layoutDependency:layoutDependency,layoutId:\"afqwHtzf6\",svg:'<svg width=\"142\" height=\"16\" viewBox=\"0 0 142 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_102_10586)\">\\n<g clip-path=\"url(#clip1_102_10586)\">\\n<circle cx=\"5.33333\" cy=\"5.50008\" r=\"5.33333\" fill=\"black\" fill-opacity=\"0.08\"/>\\n<rect x=\"14.6665\" y=\"2.83337\" width=\"41\" height=\"5.33333\" rx=\"2.66667\" fill=\"black\" fill-opacity=\"0.16\"/>\\n</g>\\n</g>\\n<line x1=\"141.333\" y1=\"16.1667\" x2=\"0.000152588\" y2=\"16.1667\" stroke=\"#EE250A\" stroke-width=\"0.666667\"/>\\n<defs>\\n<clipPath id=\"clip0_102_10586\">\\n<rect width=\"55.6667\" height=\"10.6667\" fill=\"white\" transform=\"translate(0 0.166748)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_102_10586\">\\n<rect width=\"55.6667\" height=\"10.6667\" fill=\"white\" transform=\"translate(0 0.166748)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ln9rol\",\"data-framer-name\":\"x-close\",layoutDependency:layoutDependency,layoutId:\"KdnU8r9tr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b7tqsq\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"Jp8tXtERW\",svg:'<svg width=\"10\" height=\"9\" viewBox=\"-1 -1 10 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.4165 0.416626L0.916504 6.91663M0.916504 0.416626L7.4165 6.91663\" stroke=\"#6A6A6A\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nhay6m\",\"data-framer-name\":\"Group 9393\",layoutDependency:layoutDependency,layoutId:\"kj0dtAyom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Collaborating\"})}),className:\"framer-uhaaos\",\"data-framer-name\":\"Collaborating\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Wihr4J3zP\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\",\"--framer-text-transform\":\"uppercase\"},children:\"High\"})}),className:\"framer-1griqel\",\"data-framer-name\":\"High\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"hMXiZEqfi\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-exf36q\",\"data-framer-name\":\"Group 9399\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GguOhQnIl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 11\"><path d=\"M 207 10.5 L 0.333 10.5 L 0.333 11.167 L 207 11.167 Z\" fill=\"rgb(165,222,248)\"></path><path d=\"M 207 10.833 L 0.333 10.833 L 207 0.833 Z\" fill=\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255)) /* {&quot;name&quot;:&quot;Light Blue&quot;} */\"></path></svg>',svgContentId:10623313911,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w99g6e\",\"data-framer-name\":\"Person 2\",layoutDependency:layoutDependency,layoutId:\"aWF1w4NKp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Ahmed\"})}),className:\"framer-jgoxw3\",\"data-framer-name\":\"Hallie\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"JFULQ1hoE\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-8ru12o\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"JEmlG9lJN\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11f34r\",\"data-framer-name\":\"Person 1\",layoutDependency:layoutDependency,layoutId:\"Bn6dAop0p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Clarice \"})}),className:\"framer-iqm3m0\",\"data-framer-name\":\"Michael\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"y_YjNINij\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-63jrgz\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Asj5kBh__\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1epaduu\",\"data-framer-name\":\"Group 9394\",layoutDependency:layoutDependency,layoutId:\"Piu_2ox7Y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Competing\"})}),className:\"framer-1pawv0d\",\"data-framer-name\":\"Competing\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"U7aRBN3pe\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\",\"--framer-text-transform\":\"uppercase\"},children:\"High\"})}),className:\"framer-7othhm\",\"data-framer-name\":\"High\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"zZJoLT6pd\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-33gheo\",\"data-framer-name\":\"Group 9399\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ge5jNkvXF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 11\"><path d=\"M 207 9.833 L 0.333 9.833 L 0.333 10.5 L 207 10.5 Z\" fill=\"rgb(165,222,248)\"></path><path d=\"M 207 10.167 L 0.333 10.167 L 207 0.167 Z\" fill=\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255)) /* {&quot;name&quot;:&quot;Light Blue&quot;} */\"></path></svg>',svgContentId:10149353402,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-760pv4\",\"data-framer-name\":\"Person 1\",layoutDependency:layoutDependency,layoutId:\"yT_CaW7z5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Ahmed \"})}),className:\"framer-1j5alhj\",\"data-framer-name\":\"Michael\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"d14_RRSPK\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-sxbwc0\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"HIjdtI4Qh\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1holyut\",\"data-framer-name\":\"Person 2\",layoutDependency:layoutDependency,layoutId:\"O_ANosgFa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Clarice\"})}),className:\"framer-6dw6db\",\"data-framer-name\":\"Hallie\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Cm0hMdy3x\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-2j68eh\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"umA1IhoY2\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bvdrn\",\"data-framer-name\":\"Group 9395\",layoutDependency:layoutDependency,layoutId:\"MsXi4GvCr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Avoiding\"})}),className:\"framer-11cpltz\",\"data-framer-name\":\"Avoiding\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"xuxWnkQPU\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\",\"--framer-text-transform\":\"uppercase\"},children:\"High\"})}),className:\"framer-1ef9wsd\",\"data-framer-name\":\"High\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"U2EnaPkY_\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4qv1d\",\"data-framer-name\":\"Group 9399\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IPPph0G8m\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 11\"><path d=\"M 207 10.167 L 0.333 10.167 L 0.333 10.833 L 207 10.833 Z\" fill=\"rgb(165,222,248)\"></path><path d=\"M 207 10.833 L 0.333 10.833 L 207 0.833 Z\" fill=\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255)) /* {&quot;name&quot;:&quot;Light Blue&quot;} */\"></path></svg>',svgContentId:12759033780,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dbvzsm\",\"data-framer-name\":\"Person 2\",layoutDependency:layoutDependency,layoutId:\"JybZ9YaZn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Clarice\"})}),className:\"framer-9qqnfa\",\"data-framer-name\":\"Hallie\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"yNwcZnaDY\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1onarli\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ETz7OeE_E\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1649689\",\"data-framer-name\":\"Person 1\",layoutDependency:layoutDependency,layoutId:\"Rxck_gHcK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Ahmed \"})}),className:\"framer-a9m1on\",\"data-framer-name\":\"Michael\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"B8wNpN6wE\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-1djdxkw\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"akHiXxmPM\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sblvqs\",\"data-framer-name\":\"Group 9396\",layoutDependency:layoutDependency,layoutId:\"b05WWemvk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"6.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Accommodating\"})}),className:\"framer-4di8om\",\"data-framer-name\":\"Accommodating\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"dtGM9afnG\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\",\"--framer-text-transform\":\"uppercase\"},children:\"High\"})}),className:\"framer-ir0m7w\",\"data-framer-name\":\"High\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"tti10qdWx\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vhx44a\",\"data-framer-name\":\"Group 9399\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tDjLA05wp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 11\"><path d=\"M 207 10.167 L 0.333 10.167 L 0.333 10.833 L 207 10.833 Z\" fill=\"rgb(165,222,248)\"></path><path d=\"M 207 10.5 L 0.333 10.5 L 207 0.5 Z\" fill=\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255)) /* {&quot;name&quot;:&quot;Light Blue&quot;} */\"></path></svg>',svgContentId:11363224957,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184n1z3\",\"data-framer-name\":\"Person 2\",layoutDependency:layoutDependency,layoutId:\"VxQjsloRd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Clarice\"})}),className:\"framer-10a467q\",\"data-framer-name\":\"Hallie\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZrAZQKDFb\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1xj1tck\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"r7iVHol6V\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ccol48\",\"data-framer-name\":\"Person 1\",layoutDependency:layoutDependency,layoutId:\"XFrIiyokT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"4.67px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"3.33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Ahmed \"})}),className:\"framer-5o853y\",\"data-framer-name\":\"Michael\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"KiObq7vvW\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-182ez41\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"rfmTYYOu8\",style:{\"--border-bottom-width\":\"0.9px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"0.9px\",\"--border-right-width\":\"0.9px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9px\",borderBottomLeftRadius:50.3,borderBottomRightRadius:50.3,borderTopLeftRadius:50.3,borderTopRightRadius:50.3}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xhtsj9\",\"data-framer-name\":\"Frame 427322363\",layoutDependency:layoutDependency,layoutId:\"ARrbfgnmN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ykhr7t\",\"data-framer-name\":\"Ellipse 91\",layoutDependency:layoutDependency,layoutId:\"hh4yhsVEl\",style:{backgroundColor:\"rgb(255, 131, 41)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.33px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Primary\"})}),className:\"framer-ex940y\",\"data-framer-name\":\"Primary\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"GR9Ay13dE\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"5.5px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bovx17\",\"data-framer-name\":\"Frame 427322364\",layoutDependency:layoutDependency,layoutId:\"r0kIFzH1B\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhyb7t\",\"data-framer-name\":\"Ellipse 91\",layoutDependency:layoutDependency,layoutId:\"UFChwb51l\",style:{backgroundColor:\"rgb(255, 199, 0)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.33px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31)))\"},children:\"Secondary\"})}),className:\"framer-a74gi8\",\"data-framer-name\":\"Secondary\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"AVDZ2IsCy\",style:{\"--extracted-r6o4lv\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"5.5px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xd28a5\",\"data-framer-name\":\"Messages\",layoutDependency:layoutDependency,layoutId:\"vfTEtYVmx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8mc6vy\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"XR9naOdoI\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y5ulpz\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Mjbz6jV7l\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-aa8etv\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"ejpHYwFmD\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11tgj4r\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"GFk55vXIZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12nzzma\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"qX3Hb7aZQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lv2xfz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"f7xqaCICH\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s048z\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Ivyr0EQoJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18psk14\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"e3op3E6Bn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bbveif\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"lmC1sQHSN\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ufgvjs\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"lQrz_ZtpI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lijhkm\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"lSF3DMwAG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q6tspk\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"hdJUcOuFN\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gfw0dr\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"wKpVvhlHJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ydxvoh\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"axuq52HmK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x19u4c\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"zL_k82aJq\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gie3iw\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"wRGoIdiew\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ok6553\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tAuII96t8\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pvepq8\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"zf8TzfXKH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ovew5t\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"K0T06S3P4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19snd3l\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"cN0JZZp3a\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o7zgo1\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"BNP0Qygth\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3x284\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"QjywCRsmy\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4a54hd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"lah7NOlhh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1voqqkz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Xlu9MX3Zh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1juty4p\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ugYSXJPXZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-136ws2w\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"J6KkoBkDw\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ww57c8\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"qO_kKdxM1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-je8vpr\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"f64q7QjBY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o7pj2o\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"ehUOtGTKX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p3gi70\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"brLIJJ8Zh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kza3ab\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"JDeruJh9N\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-phjvup\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"yIqh1qD07\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oxey4t\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"wJlgfrJ1b\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sncsl6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"jcw1SV68j\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l9sv6q\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KfyLE96YZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xq5re5\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"lHJ02D941\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1heu76q\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"FtwauiS7Z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xmny0n\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Lrohm2UJ5\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1osn07z\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tSVmsX9ZZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jn56u\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"AbdCd6o6w\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x82kgx\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"IJg91scvM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yob7z7\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Dxhb3cX5N\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10fgiex\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"amyMrLsGf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqneoc\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"zBZs1PX9S\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m1p7xh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Y55NX526h\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fr2rdc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"EeQaGyfJJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vxrniw\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TcCDa8Z5I\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-31i6j9\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"rBige9pkk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v13nh7\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"OlKGPiqbR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xnjkhs\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"QH7TS9Pv6\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjljio\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FuncGwqps\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cw9ids\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"vwAEmP1UC\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mvccgi\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"X64jbSDNO\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j0twvv\",\"data-framer-name\":\"search\",layoutDependency:layoutDependency,layoutId:\"c9Rg_moBd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r2qjcu\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"rbUa_X4dL\",svg:'<svg width=\"11\" height=\"11\" viewBox=\"-1 -1 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.2915 8.45837L5.54155 5.70837M6.45817 3.41671C6.45817 5.18862 5.02175 6.62504 3.24984 6.62504C1.47792 6.62504 0.0415039 5.18862 0.0415039 3.41671C0.0415039 1.64479 1.47792 0.208374 3.24984 0.208374C5.02175 0.208374 6.45817 1.64479 6.45817 3.41671Z\" stroke=\"white\" stroke-width=\"0.6875\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i07iqb\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"e9qaGZXqD\",svg:'<svg width=\"11\" height=\"12\" viewBox=\"-1 -1 11 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.62036 8.79171C3.94354 9.07696 4.36807 9.25004 4.83303 9.25004C5.29798 9.25004 5.72251 9.07696 6.0457 8.79171M7.58303 2.83337C7.58303 2.10403 7.2933 1.40456 6.77757 0.88883C6.26185 0.373105 5.56237 0.083374 4.83303 0.083374C4.10368 0.083374 3.40421 0.373105 2.88848 0.88883C2.37276 1.40456 2.08303 2.10403 2.08303 2.83337C2.08303 4.24971 1.72574 5.21944 1.32662 5.86085C0.98996 6.4019 0.821628 6.67242 0.8278 6.74789C0.834635 6.83145 0.852337 6.86331 0.919674 6.91326C0.980487 6.95837 1.25463 6.95837 1.80292 6.95837H7.86313C8.41142 6.95837 8.68557 6.95837 8.74638 6.91326C8.81372 6.86331 8.83142 6.83145 8.83825 6.74789C8.84442 6.67242 8.67609 6.4019 8.33943 5.86085C7.94031 5.21944 7.58303 4.24971 7.58303 2.83337Z\" stroke=\"white\" stroke-width=\"0.6875\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lg6fb9\",\"data-framer-name\":\"Ellipse 33\",layoutDependency:layoutDependency,layoutId:\"oTqfNhBPD\",style:{backgroundColor:\"rgb(236, 0, 0)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r0lzqm\",\"data-framer-name\":\"Group 9402\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"scC5YWEzl\",svg:'<svg width=\"10\" height=\"7\" viewBox=\"0 0 10 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.666992\" y1=\"-0.166667\" x2=\"10.0003\" y2=\"-0.166667\" stroke=\"white\" stroke-width=\"0.833333\"/>\\n<line x1=\"0.666992\" y1=\"3.08333\" x2=\"10.0003\" y2=\"3.08333\" stroke=\"white\" stroke-width=\"0.833333\"/>\\n<line x1=\"0.666992\" y1=\"6.33333\" x2=\"10.0003\" y2=\"6.33333\" stroke=\"white\" stroke-width=\"0.833333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfn7sc\",\"data-framer-name\":\"Messages\",layoutDependency:layoutDependency,layoutId:\"jQckOgQ34\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r2twmw\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"LjGAjR9xs\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyyh6f\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"kR6yxlnVm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ivkyv9\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"yM4H9f_ic\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ahtvim\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"awgOX6l2D\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eitnpm\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"uQZtQ2N4I\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18s456b\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eW9wmZeGu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7fgqe\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"usXlsuYas\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yh9rwe\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"r1qUv4Azz\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r4eyf0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"EbV8r23Cy\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1odgdb6\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"ckavvZ4sx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hi6ru\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KZKnaU0Rl\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdf6eg\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"US27Xx400\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2l85s\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"B3nxM01uN\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15e80cw\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Dz4ETuWXC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxapfm\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"sV_mIg38o\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1627thk\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"YaB046gMe\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwx75c\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"jQ8Rx2H2a\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16o07vk\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"b3kkgQvTq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xdc65h\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"iyIBHouwV\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhnpd3\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"RO11UHcL_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11pzlwm\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"lZBBBaS33\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o491pg\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"xrn4dRoM7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uytbh9\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"qg_RqqWVC\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a9tsys\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"IB2EXIFSj\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1872vgb\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"mCRNuCktB\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewi9pf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"EaougrhG1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tscrmb\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"LgXXw35Hi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcixyy\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"af60EOcr5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17av1bn\",\"data-framer-name\":\"Username\",layoutDependency:layoutDependency,layoutId:\"XPkO4VM2d\",style:{backgroundColor:\"rgba(0, 0, 0, 0.16)\",borderBottomLeftRadius:16.67,borderBottomRightRadius:16.67,borderTopLeftRadius:16.67,borderTopRightRadius:16.67}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gptszl\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"dKYBdH7BQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c9xueg\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"iNRvawV5A\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4mkgt\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"IJV7P5Pxi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q7k1h8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"YNTxmYosu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17baels\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tCFP9jG12\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9uz33\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"cviTe1gLz\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5e05hv\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PYJg7flJg\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bmlfa0\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"IZYe8LRHl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18070jv\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"JQRMSse60\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xrum0s\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"cUFKAenDp\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gzxclf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"NLKyCt8hH\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l26gok\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"JS3qXd7Ra\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bo1ve9\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"gRQNdRxiZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fi7u06\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TqzogpqS0\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r0x1jl\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Mun_NjKAi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wz8o5m\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"zT10fBBgc\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4fctwr\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TkYGi168N\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1odcr2q\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"AGtz1gw5D\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-thp1qt\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"aIH9f_8TI\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wqub68\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"m_TAr516S\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-185065z\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"RFIEG7HsK\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6bxt8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"zTWKOHJ8u\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ukb1f6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"yUMkQQy9X\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ap9ymy\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"EslCtkDSv\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:2.67,borderBottomRightRadius:2.67,borderTopLeftRadius:2.67,borderTopRightRadius:2.67}})]})]})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-16p9i3z\",\"data-framer-appear-id\":\"16p9i3z\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"dalatHyJ7\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p9bnll-container\",layoutDependency:layoutDependency,layoutId:\"WbkY64mdH-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"WbkY64mdH\",layoutId:\"WbkY64mdH\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Web App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Real-time web-based collaboration at it's best\"})}),className:\"framer-1e9xsil\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C0KrbJpzz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Our cutting-edge technology offers a user-friendly, web-based platform that streamlines teamwork and boosts productivity through a turnkey interface.\"})}),className:\"framer-10itcc0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eCvFjZ5A8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0b16s\",\"data-framer-name\":\"Slack desktop\",layoutDependency:layoutDependency,layoutId:\"t5CP4DrKe\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-of5ml2\",layoutDependency:layoutDependency,layoutId:\"RHMtdZp9e\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bd6glj\",\"data-framer-name\":\"Slack\",layoutDependency:layoutDependency,layoutId:\"bjglTVTrP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp0nb7\",\"data-border\":true,\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"uV8Aapc6g\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3.56,borderBottomRightRadius:3.56,borderTopLeftRadius:3.56,borderTopRightRadius:3.56,boxShadow:\"0px 3px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-klhsw5\",\"data-border\":true,\"data-framer-name\":\"Frame 40\",layoutDependency:layoutDependency,layoutId:\"xkz3JRQu0\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(44, 9, 41)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tvkujv\",\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"VWfMPDbQX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-obene8\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"GisiD0SGR\",style:{backgroundColor:\"rgb(237, 106, 94)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nt3h9o\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"ItmHn4xMF\",style:{backgroundColor:\"rgb(244, 189, 79)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hh1dg2\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"JjKNPqTcZ\",style:{backgroundColor:\"rgb(97, 195, 84)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2rni2\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"nb5ef2mUm\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v253qc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"N0cHzlo5V\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9600)\">\\n<path d=\"M2.42578 4.08154H6.53245\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08154L4.18578 5.84154\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08031L4.18578 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9600\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fqexte\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"ZVE94YdYR\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" clip-path=\"url(#clip0_196_9605)\">\\n<path d=\"M6.37598 4.08105H2.26931\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08105L4.61597 5.84106\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08031L4.61597 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9605\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"matrix(-1 0 0 1 7.83984 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f17zuz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"qsDl1LjqQ\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9610)\">\\n<path d=\"M1.51953 4.08043C1.51953 4.42712 1.58782 4.77042 1.72049 5.09071C1.85316 5.41101 2.04762 5.70205 2.29277 5.94719C2.53792 6.19234 2.82895 6.3868 3.14925 6.51947C3.46955 6.65215 3.81284 6.72043 4.15953 6.72043C4.50622 6.72043 4.84952 6.65215 5.16982 6.51947C5.49012 6.3868 5.78115 6.19234 6.02629 5.94719C6.27144 5.70205 6.4659 5.41101 6.59857 5.09071C6.73125 4.77042 6.79953 4.42712 6.79953 4.08043C6.79953 3.73374 6.73125 3.39045 6.59857 3.07015C6.4659 2.74985 6.27144 2.45881 6.02629 2.21367C5.78115 1.96852 5.49012 1.77406 5.16982 1.64139C4.84952 1.50872 4.50622 1.44043 4.15953 1.44043C3.81284 1.44043 3.46955 1.50872 3.14925 1.64139C2.82895 1.77406 2.53792 1.96852 2.29277 2.21367C2.04762 2.45881 1.85316 2.74985 1.72049 3.07015C1.58782 3.39045 1.51953 3.73374 1.51953 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 4.08105H5.18585\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 2.61572V4.08239\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9610\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.639648 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ei5on9\",\"data-border\":true,\"data-framer-name\":\"Frame 37\",layoutDependency:layoutDependency,layoutId:\"EwovEzjSx\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(90, 60, 90)\",borderBottomLeftRadius:1.6,borderBottomRightRadius:1.6,borderTopLeftRadius:1.6,borderTopRightRadius:1.6},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mg2nc3\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"wD6dKIiXR\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9616)\">\\n<path d=\"M0.800781 2.65349C0.800781 2.8496 0.839408 3.04379 0.914455 3.22496C0.989502 3.40614 1.0995 3.57077 1.23817 3.70944C1.37684 3.84811 1.54146 3.9581 1.72264 4.03315C1.90382 4.1082 2.09801 4.14682 2.29412 4.14682C2.49022 4.14682 2.68441 4.1082 2.86559 4.03315C3.04677 3.9581 3.21139 3.84811 3.35006 3.70944C3.48873 3.57077 3.59873 3.40614 3.67378 3.22496C3.74883 3.04379 3.78745 2.8496 3.78745 2.65349C3.78745 2.45738 3.74883 2.2632 3.67378 2.08202C3.59873 1.90084 3.48873 1.73621 3.35006 1.59754C3.21139 1.45887 3.04677 1.34888 2.86559 1.27383C2.68441 1.19878 2.49022 1.16016 2.29412 1.16016C2.09801 1.16016 1.90382 1.19878 1.72264 1.27383C1.54146 1.34888 1.37684 1.45887 1.23817 1.59754C1.0995 1.73621 0.989502 1.90084 0.914455 2.08202C0.839408 2.2632 0.800781 2.45738 0.800781 2.65349Z\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.6384 5.0007L3.3584 3.7207\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9616\">\\n<rect width=\"5.12001\" height=\"5.12\" fill=\"white\" transform=\"translate(0.15918 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Search A1 Marketing Ltd.\"})}),className:\"framer-em849x\",\"data-framer-name\":\"Search A1 Marketing Ltd.\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"SRQaaodHP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-145h35l\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"nBTilCd3h\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9621)\">\\n<path d=\"M1.83887 4.08043C1.83887 4.42712 1.90715 4.77042 2.03983 5.09071C2.1725 5.41101 2.36696 5.70205 2.61211 5.94719C2.85725 6.19234 3.14828 6.3868 3.46858 6.51947C3.78888 6.65215 4.13218 6.72043 4.47887 6.72043C4.82556 6.72043 5.16885 6.65215 5.48915 6.51947C5.80945 6.3868 6.10048 6.19234 6.34563 5.94719C6.59078 5.70205 6.78524 5.41101 6.91791 5.09071C7.05058 4.77042 7.11887 4.42712 7.11887 4.08043C7.11887 3.73374 7.05058 3.39045 6.91791 3.07015C6.78524 2.74985 6.59078 2.45881 6.34563 2.21367C6.10048 1.96852 5.80945 1.77406 5.48915 1.64139C5.16885 1.50872 4.82556 1.44043 4.47887 1.44043C4.13218 1.44043 3.78888 1.50872 3.46858 1.64139C3.14828 1.77406 2.85725 1.96852 2.61211 2.21367C2.36696 2.45881 2.1725 2.74985 2.03983 3.07015C1.90715 3.39045 1.83887 3.73374 1.83887 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.4834 5.54785V5.55211\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.48315 4.52147C4.47775 4.42624 4.50344 4.33184 4.55634 4.25249C4.60925 4.17313 4.68651 4.11311 4.77649 4.08147C4.88674 4.03931 4.98571 3.97212 5.06559 3.88521C5.14547 3.79831 5.20408 3.69404 5.23682 3.58063C5.26956 3.46721 5.27552 3.34775 5.25425 3.23164C5.23297 3.11553 5.18503 3.00595 5.1142 2.91151C5.04338 2.81708 4.9516 2.74037 4.84609 2.68744C4.74058 2.6345 4.62423 2.60678 4.50619 2.60645C4.38814 2.60612 4.27164 2.6332 4.16584 2.68555C4.06004 2.7379 3.96783 2.81409 3.89648 2.90813\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9621\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2qdc4q\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"iGWe6nllk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1c0mndp\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"w1zs8XseR\",style:{\"--border-bottom-width\":\"0.8888891935348511px\",\"--border-color\":\"rgb(0, 163, 255)\",\"--border-left-width\":\"0.8888891935348511px\",\"--border-right-width\":\"0.8888891935348511px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888891935348511px\",borderBottomLeftRadius:33.53,borderBottomRightRadius:33.53,borderTopLeftRadius:33.53,borderTopRightRadius:33.53}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rc3u12\",\"data-border\":true,\"data-framer-name\":\"Ellipse 29\",layoutDependency:layoutDependency,layoutId:\"VytBRjjh0\",style:{\"--border-bottom-width\":\"0.6400004029273987px\",\"--border-color\":\"rgb(44, 9, 43)\",\"--border-left-width\":\"0.6400004029273987px\",\"--border-right-width\":\"0.6400004029273987px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6400004029273987px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uzuil7\",\"data-framer-name\":\"Frame 45\",layoutDependency:layoutDependency,layoutId:\"LKO7mnGkf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4klsr5\",\"data-framer-name\":\"Frame 43\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:207,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"UHENXHgyq\",svg:'<svg width=\"17\" height=\"207\" viewBox=\"0 0 17 207\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_196_9630\" fill=\"white\">\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\"/>\\n</mask>\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\" fill=\"#3E103F\"/>\\n<path d=\"M16.32 0.160156V206.222H16.96V0.160156H16.32Z\" fill=\"white\" fill-opacity=\"0.15\" mask=\"url(#path-1-inside-1_196_9630)\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" fill=\"#3E103F\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" stroke=\"white\" stroke-width=\"0.96\"/>\\n<g clip-path=\"url(#clip0_196_9630)\">\\n<path d=\"M8.32129 25.1729V28.9062\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.45703 27.04H10.1904\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9630\">\\n<rect width=\"6.40001\" height=\"12.16\" fill=\"white\" transform=\"translate(5.12012 18.0801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3d02e4\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"w0sSIliTR\",style:{backgroundColor:\"rgb(63, 15, 63)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ejttzr\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"rOVO63gIz\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-qhqia5\",\"data-framer-name\":\"Company\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"f6g11wKZ8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oi8apk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"OCEbk1KYV\",svg:'<svg width=\"11\" height=\"11\" viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.160156\" y=\"0.0800781\" width=\"10.24\" height=\"10.24\" rx=\"5.12\" fill=\"white\"/>\\n<path d=\"M3.81164 3.73291H3.51831C3.36271 3.73291 3.21349 3.79472 3.10347 3.90474C2.99345 4.01476 2.93164 4.16398 2.93164 4.31958V6.95958C2.93164 7.11517 2.99345 7.26439 3.10347 7.37441C3.21349 7.48443 3.36271 7.54624 3.51831 7.54624H6.15831C6.3139 7.54624 6.46312 7.48443 6.57315 7.37441C6.68317 7.26439 6.74498 7.11517 6.74498 6.95958V6.66624\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.73999 3.61071C7.85552 3.49519 7.92042 3.3385 7.92042 3.17511C7.92042 3.01173 7.85552 2.85504 7.73999 2.73951C7.62446 2.62399 7.46777 2.55908 7.30439 2.55908C7.14101 2.55908 6.98432 2.62399 6.86879 2.73951L4.40039 5.19911V6.07911H5.28039L7.73999 3.61071Z\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.4541 3.14697L7.3341 4.02697\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wstzqn\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"hFBrzK26V\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5k0jtg\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"OXg8KxmFO\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18ds6i5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"K7KaIRpY7\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9658)\">\\n<path d=\"M5.51855 4.84115L5.20655 3.90515C5.47621 3.50634 5.57376 3.03405 5.48106 2.5761C5.38837 2.11816 5.11174 1.70571 4.70261 1.41546C4.29348 1.1252 3.77969 0.976887 3.25677 0.998089C2.73385 1.01929 2.23739 1.20857 1.85968 1.53073C1.48198 1.85288 1.24874 2.286 1.20333 2.74955C1.15793 3.21309 1.30344 3.67553 1.61282 4.05086C1.9222 4.4262 2.37439 4.6889 2.88532 4.79012C3.39625 4.89134 3.93114 4.82419 4.39055 4.60115L5.51855 4.84115Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.4248 2.48975H4.15281M2.4968 3.49775H3.79281\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9658\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Threads\"})}),className:\"framer-11zg1ej\",\"data-framer-name\":\"Threads\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"wtL8XqMRj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pjfhwr\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"G_7CfI7Hl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wwg3q\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"kJdMc9nkp\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9664)\">\\n<path d=\"M2.28156 2.43994C1.55244 2.43994 0.961563 2.92354 0.961563 3.51994C0.961563 3.85522 1.14828 4.15474 1.44156 4.35274V4.83994L1.91292 4.55722C2.03372 4.58575 2.15744 4.60009 2.28156 4.59994C3.01068 4.59994 3.60156 4.11634 3.60156 3.51994C3.60156 2.92354 3.01068 2.43994 2.28156 2.43994Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.55737 3.80801C3.72297 3.85505 3.90057 3.88049 4.08465 3.88049C4.29791 3.88095 4.50977 3.84591 4.71153 3.77681L5.28465 4.12049V3.44825C5.58153 3.18857 5.76465 2.83289 5.76465 2.44049C5.76465 1.64513 5.01249 1.00049 4.08465 1.00049C3.17697 1.00049 2.43753 1.61729 2.40465 2.38889V2.44481\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9664\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"All DMs\"})}),className:\"framer-8yw3fx\",\"data-framer-name\":\"All DMs\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"O_l3M8bcX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zki2qa\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"Fpc7Ax6XV\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13yghny\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"pZ0HGrV23\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9670)\">\\n<path d=\"M4.8016 4.12074H3.1216C2.9943 4.12074 2.87221 4.07017 2.78219 3.98015C2.69217 3.89014 2.6416 3.76805 2.6416 3.64074V1.24074C2.6416 1.11344 2.69217 0.991348 2.78219 0.901331C2.87221 0.811313 2.9943 0.760742 3.1216 0.760742H4.0816L5.2816 1.96074V3.64074C5.2816 3.76805 5.23103 3.89014 5.14101 3.98015C5.05099 4.07017 4.92891 4.12074 4.8016 4.12074Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 2.28076H4.38733\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 1.45459V2.28126\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31871 4.11973V4.59973C4.31871 4.72703 4.26814 4.84912 4.17812 4.93914C4.0881 5.02915 3.96601 5.07973 3.83871 5.07973H2.15871C2.03141 5.07973 1.90932 5.02915 1.8193 4.93914C1.72928 4.84912 1.67871 4.72703 1.67871 4.59973V2.19973C1.67871 2.07242 1.72928 1.95033 1.8193 1.86032C1.90932 1.7703 2.03141 1.71973 2.15871 1.71973H2.63871\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9670\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Drafts\"})}),className:\"framer-yk83g0\",\"data-framer-name\":\"Drafts\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"DRVTwgfSG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgwe89\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"IsX5RS6yU\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6czahs\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"PjC_i2QA5\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9678)\">\\n<path d=\"M2.39941 2.92045C2.39941 3.17506 2.50056 3.41924 2.68059 3.59927C2.86063 3.77931 3.10481 3.88045 3.35941 3.88045C3.61402 3.88045 3.8582 3.77931 4.03824 3.59927C4.21827 3.41924 4.31942 3.17506 4.31942 2.92045C4.31942 2.66584 4.21827 2.42166 4.03824 2.24163C3.8582 2.06159 3.61402 1.96045 3.35941 1.96045C3.10481 1.96045 2.86063 2.06159 2.68059 2.24163C2.50056 2.42166 2.39941 2.66584 2.39941 2.92045Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31825 2.91912V3.27912C4.31825 3.43825 4.38146 3.59087 4.49398 3.70339C4.6065 3.81591 4.75912 3.87912 4.91825 3.87912C5.07738 3.87912 5.22999 3.81591 5.34251 3.70339C5.45503 3.59087 5.51825 3.43825 5.51825 3.27912V2.91912C5.51884 2.45499 5.36992 2.00301 5.09354 1.63013C4.81716 1.25725 4.42803 0.98332 3.98378 0.848907C3.53953 0.714495 3.0638 0.726753 2.62707 0.883866C2.19033 1.04098 1.81582 1.33459 1.55901 1.72121C1.3022 2.10782 1.17676 2.56687 1.20125 3.03036C1.22575 3.49385 1.3989 3.93712 1.69503 4.29451C1.99117 4.6519 2.39455 4.90439 2.84541 5.01459C3.29628 5.12478 3.77064 5.08682 4.19825 4.90633\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9678\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mnetions & reactions\"})}),className:\"framer-1hbywh1\",\"data-framer-name\":\"Mnetions & reactions\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"LqZYPFNOj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ui6w1m\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"mbR57nALH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a15qaj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"xzqFdPUIx\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9684)\">\\n<path d=\"M2.64016 0.999512H4.08016C4.20746 0.999512 4.32955 1.05008 4.41957 1.1401C4.50959 1.23012 4.56016 1.35221 4.56016 1.47951V4.83951L3.36016 4.11951L2.16016 4.83951V1.47951C2.16016 1.35221 2.21073 1.23012 2.30075 1.1401C2.39076 1.05008 2.51285 0.999512 2.64016 0.999512Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9684\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Saved items\"})}),className:\"framer-js69iv\",\"data-framer-name\":\"Saved items\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"JZXxGmWyY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k09uzi\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"vUQdwMfzE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a1pgt8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"NAQe5fBgt\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9689)\">\\n<path d=\"M3.12012 2.92066C3.12012 2.98432 3.1454 3.04536 3.19041 3.09037C3.23542 3.13538 3.29647 3.16066 3.36012 3.16066C3.42377 3.16066 3.48481 3.13538 3.52982 3.09037C3.57483 3.04536 3.60012 2.98432 3.60012 2.92066C3.60012 2.85701 3.57483 2.79597 3.52982 2.75096C3.48481 2.70595 3.42377 2.68066 3.36012 2.68066C3.29647 2.68066 3.23542 2.70595 3.19041 2.75096C3.1454 2.79597 3.12012 2.85701 3.12012 2.92066Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 4.59938C3.12109 4.66303 3.14638 4.72407 3.19139 4.76908C3.2364 4.81409 3.29744 4.83938 3.36109 4.83938C3.42475 4.83938 3.48579 4.81409 3.5308 4.76908C3.57581 4.72407 3.60109 4.66303 3.60109 4.59938C3.60109 4.53572 3.57581 4.47468 3.5308 4.42967C3.48579 4.38466 3.42475 4.35938 3.36109 4.35938C3.29744 4.35938 3.2364 4.38466 3.19139 4.42967C3.14638 4.47468 3.12109 4.53572 3.12109 4.59938Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 1.24C3.12109 1.30365 3.14638 1.3647 3.19139 1.40971C3.2364 1.45471 3.29744 1.48 3.36109 1.48C3.42475 1.48 3.48579 1.45471 3.5308 1.40971C3.57581 1.3647 3.60109 1.30365 3.60109 1.24C3.60109 1.17635 3.57581 1.1153 3.5308 1.07029C3.48579 1.02529 3.42475 1 3.36109 1C3.29744 1 3.2364 1.02529 3.19139 1.07029C3.14638 1.1153 3.12109 1.17635 3.12109 1.24Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9689\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"More\"})}),className:\"framer-1h3cky8\",\"data-framer-name\":\"More\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"jQqJ9Lno8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lhpjfc\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"fo0kzDUpT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3nmtg6\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"nloDWj3Ie\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u2B50\uFE0F\"})}),className:\"framer-ju84c3\",\"data-framer-name\":\"\u2B50\uFE0F\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"P3eNpo530\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Starred\"})}),className:\"framer-zvalvf\",\"data-framer-name\":\"Starred\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"YYQOTqHfW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bgt0f\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"vJ7DEVXtm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n52369\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"dt8gwJ4El\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-nsb0mj\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"YHX7TRAZ8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"design-team\"})}),className:\"framer-1ghukwn\",\"data-framer-name\":\"design-team\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"QX23tBVCE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hyea4q\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"yQLeduLvk\",style:{backgroundColor:\"rgb(17, 100, 163)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-140vvsj\",\"data-framer-name\":\"Frame 62\",layoutDependency:layoutDependency,layoutId:\"X5Xeai0pQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-8whwt3\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"IpV5xpiB3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"social-media\"})}),className:\"framer-144x17s\",\"data-framer-name\":\"social-media\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"gOyo5m_eA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jy7jgs\",\"data-framer-name\":\"Group 11\",layoutDependency:layoutDependency,layoutId:\"KqbKSujop\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9hbwet\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"B_SUPBR5X\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11djlsh\",\"data-border\":true,\"data-framer-name\":\"Rectangle 19\",layoutDependency:layoutDependency,layoutId:\"xs9c7HkJd\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgb(17, 100, 163)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a71a08\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"SXJsPqFpF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-19a6rbm\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"gPzN49Ttb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"team-finance\"})}),className:\"framer-p69knc\",\"data-framer-name\":\"team-finance\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"HZm0tmvPr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ucq60m\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"fF70c_KPW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8e2fw\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"P0Gb1tUMF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-1n51gd9\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ko6P3scLB\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr2vme\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"GuzgscoBT\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Elena Nowak\"})}),className:\"framer-fmk83i\",\"data-framer-name\":\"Elena Nowak\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"luh4mppMM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10g1wvk\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"Xjze9gY5d\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16q3jbf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"m8zUk11zF\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9719)\">\\n<path d=\"M1.9209 2.91846L3.3609 4.35846L4.8009 2.91846H1.9209Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9719\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Channels\"})}),className:\"framer-x87ph5\",\"data-framer-name\":\"Channels\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"GlcxDG9de\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ref9th\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"CT1WbwHjF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-12yz50u\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"by54lZQ2n\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"announcements\"})}),className:\"framer-1mlgzwg\",\"data-framer-name\":\"announcements\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"aw__RJRqp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ordpox\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"YVngghREJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-yv5nei\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"X_JaIuM3C\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"pr\"})}),className:\"framer-142wzsh\",\"data-framer-name\":\"pr\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"jYsuCoPBr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pd0v3b\",\"data-framer-name\":\"Frame 55\",layoutDependency:layoutDependency,layoutId:\"N0qT7JvML\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nyq1wk\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"d0kpbwLF5\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.76029C0.679688 1.2301 1.10949 0.800293 1.63969 0.800293H5.47969C6.00989 0.800293 6.43969 1.2301 6.43969 1.76029V5.60029C6.43969 6.13049 6.00988 6.56029 5.47969 6.56029H1.63969C1.10949 6.56029 0.679688 6.13049 0.679688 5.60029V1.76029Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 3.68066H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 3.68066H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add channel\"})}),className:\"framer-11uj73c\",\"data-framer-name\":\"Add channel\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"kpynYAMDb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c30unw\",\"data-framer-name\":\"Frame 57\",layoutDependency:layoutDependency,layoutId:\"CNy89k4Qv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmhy4z\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"FCxmlV2dK\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9736)\">\\n<path d=\"M1.91992 3.16016L3.35992 4.60016L4.79992 3.16016H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9736\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.760254)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Direct messages\"})}),className:\"framer-ves1hr\",\"data-framer-name\":\"Direct messages\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"QjeGnXE8L\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkaaa\",\"data-framer-name\":\"Frame 56\",layoutDependency:layoutDependency,layoutId:\"vxojIzdJX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cuza7l\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"oPENi7QXq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-3xhg0i\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"XdH_y6ye5\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qzgf1i\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"kUc4DB0qb\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will Rodrigues you\"})}),className:\"framer-rov9sb\",\"data-framer-name\":\"Will Rodrigues you\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"i3XsmHlEF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vkbm9m\",\"data-framer-name\":\"Frame 58\",layoutDependency:layoutDependency,layoutId:\"gni2qJKlr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qak9ro\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"mZnPG99w8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-hbktei\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ixUQG2vgs\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dn0p2h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"g_FAlQYk3\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"-1 -1 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.11926 0.0392968H1.19926C0.536516 0.0392968 -0.000742272 0.576554 -0.000742272 1.2393V3.1593C-0.000742272 3.82204 0.536516 4.3593 1.19926 4.3593H3.11926C3.782 4.3593 4.31926 3.82204 4.31926 3.1593V1.2393C4.31926 0.576556 3.782 0.0392968 3.11926 0.0392968Z\" fill=\"#654766\" stroke=\"#3F0F3F\" stroke-width=\"0.48\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-1wbkrey\",\"data-framer-name\":\"3\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"XXhalKLPX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bea Rosen, Carter Poplin ...\"})}),className:\"framer-6cop70\",\"data-framer-name\":\"Bea Rosen, Carter Poplin ...\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"iwKeVOojK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wx7l2n\",\"data-framer-name\":\"Frame 59\",layoutDependency:layoutDependency,layoutId:\"MvC0SKMZ8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mep9o7\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"rhZpXC4Si\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.00004C0.679688 0.469847 1.10949 0.0400391 1.63969 0.0400391H5.47969C6.00989 0.0400391 6.43969 0.469846 6.43969 1.00004V4.84004C6.43969 5.37023 6.00988 5.80004 5.47969 5.80004H1.63969C1.10949 5.80004 0.679688 5.37023 0.679688 4.84004V1.00004Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 2.92041H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 2.92041H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add teammates\"})}),className:\"framer-j2065a\",\"data-framer-name\":\"Add teammates\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"tVAL6QI3e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3khnak\",\"data-framer-name\":\"Frame 60\",layoutDependency:layoutDependency,layoutId:\"zqcW3QqPk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q8n96l\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"NfTMEruSG\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9758)\">\\n<path d=\"M1.91992 2.3999L3.35992 3.8399L4.79992 2.3999H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9758\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apps\"})}),className:\"framer-1aii5x6\",\"data-framer-name\":\"Apps\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"iVshqEcwx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c64h7g\",\"data-framer-name\":\"Frame 61\",layoutDependency:layoutDependency,layoutId:\"bG9OdjDLX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-86s3hz\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"ootgbJpWX\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gNso8VSNZ0zj7C1SGuV9JENjFaY.png\"},className:\"framer-wt8r03\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"Fd_Vfv4Pm\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Google Calendar\"})}),className:\"framer-mlvjob\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"F4BI84evn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qu2q60\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"OzCwx15Ih\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16iw716\",\"data-framer-name\":\"Frame 95\",layoutDependency:layoutDependency,layoutId:\"iiwd5nRTR\",style:{boxShadow:\"0px 0.32000020146369934px 0.6400004029273987px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvkksq\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"lHwiDfpU3\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yfiayy\",\"data-framer-name\":\"Frame 64\",layoutDependency:layoutDependency,layoutId:\"Y3EyUDf4l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-an6gc2\",\"data-framer-name\":\"Frame 63\",layoutDependency:layoutDependency,layoutId:\"JlKOQhguP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"#social-media\"})}),className:\"framer-bnibza\",\"data-framer-name\":\"#social-media\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"GfylOH2MR\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jodglc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"R3rTi3_tz\",svg:'<svg width=\"5\" height=\"5\" viewBox=\"0 0 5 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9772)\">\\n<path d=\"M1.59863 1.71826L2.55863 2.67826L3.51863 1.71826\" stroke=\"black\" stroke-width=\"0.32\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9772\">\\n<rect width=\"3.84\" height=\"3.84\" fill=\"white\" transform=\"translate(0.640625 0.280273)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Track and coordinate social media\"})}),className:\"framer-eqiauj\",\"data-framer-name\":\"Track and coordinate social media\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Wxw7_nNaV\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52u4mf\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",layoutDependency:layoutDependency,layoutId:\"TNlUOfF1S\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8xrazb\",\"data-framer-name\":\"Frame 66\",layoutDependency:layoutDependency,layoutId:\"jaJ8e18T9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-1dcj4bd\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"jagOVsaoV\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-5jg6tq\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"CfjXkSJNU\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-1xlgg8v\",\"data-border\":true,\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"e1xWqTId5\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"74\"})}),className:\"framer-k8asul\",\"data-framer-name\":\"74\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"R2xIARnsJ\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ki0ots\",\"data-border\":true,\"data-framer-name\":\"Frame 73\",layoutDependency:layoutDependency,layoutId:\"u15yhClPn\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pv7k9c\",\"data-framer-name\":\"Frame 69\",layoutDependency:layoutDependency,layoutId:\"mDtkWPR7f\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13wzdjr\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"sYJmLl4_Q\",svg:'<svg width=\"5\" height=\"6\" viewBox=\"0 0 5 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 3.03996V4.95996H2.08C1.01961 4.95996 0.16 4.10035 0.16 3.03996C0.16 1.97957 1.01961 1.11996 2.08 1.11996C3.14039 1.11996 4 1.97957 4 3.03996Z\" fill=\"#FF745A\" stroke=\"#A9371E\" stroke-width=\"0.32\"/>\\n<rect x=\"1.27832\" y=\"2.23975\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"1.27734\" y=\"3.52051\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"0.642578\" y=\"2.87988\" width=\"2.88\" height=\"0.32\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Project brief\"})}),className:\"framer-hliojr\",\"data-framer-name\":\"Project brief\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"y1WEfRixp\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0vi9q\",\"data-framer-name\":\"Frame 70\",layoutDependency:layoutDependency,layoutId:\"q8TjPThB0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IUHnFKXiU3VfBfJXFNTCY4a1wo.png\"},className:\"framer-f64wqq\",\"data-framer-name\":\"image 6\",layoutDependency:layoutDependency,layoutId:\"kLcE6dZOd\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Resources\"})}),className:\"framer-1vyrzzl\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Xty_kXxJB\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvmd7h\",\"data-framer-name\":\"Frame 71\",layoutDependency:layoutDependency,layoutId:\"F2y1lF79Z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Y2vp2AqNyff9hAi6fwwZY77ntAI.png\"},className:\"framer-ufjme4\",\"data-framer-name\":\"image 7\",layoutDependency:layoutDependency,layoutId:\"GLyfTibyB\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"To do\"})}),className:\"framer-i2hq6e\",\"data-framer-name\":\"To do\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"IOVR9S5RC\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-140qzi6\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"Dx5vXZisP\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8GaDqAaekbaT3si4EOHyA9jveW0.png\"},className:\"framer-vpokqd\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"NBgD2UFnp\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Jira board\"})}),className:\"framer-1uef3q3\",\"data-framer-name\":\"Jira board\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Incz3wpCF\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4c2x9\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"rJw3admNm\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.99805 2.08008V4.00007\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.04395 3.04102H3.96394\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxp1g9\",\"data-framer-name\":\"Frame 81\",layoutDependency:layoutDependency,layoutId:\"ZedkO35ql\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iez1yn\",\"data-framer-name\":\"Frame 86\",layoutDependency:layoutDependency,layoutId:\"YOyvA9csR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-zessrd\",\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"Gqf79LYmf\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j6otbp\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"XmJD1KSD5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1861s8u\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"jj2_V9FSC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-ul15qv\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"vl0DYi5eZ\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:55\"})}),className:\"framer-1hjvigd\",\"data-framer-name\":\"11:55\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"sH1G5KBIR\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ghr6hf\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"NxXmQuLNd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bthpt6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"oSgVbcYzn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19bzncd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"hdpEZhHrG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wb4326\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"GKjepwEVx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bprzyz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KlKzxZ241\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1its76k\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ZrDujEoSV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5jalra\",\"data-framer-name\":\"Frame 84\",layoutDependency:layoutDependency,layoutId:\"Gh6c482Sv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-11zisbo\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"CNYDflxWO\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h6orwa\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"f4WXXJErU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-woids4\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"lejHvyFvp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Ace Jackson\"})}),className:\"framer-1wlsly6\",\"data-framer-name\":\"Ace Jackson\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"JpmN9iF22\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:56\"})}),className:\"framer-7tn4tu\",\"data-framer-name\":\"11:56\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"Rp_egBR2R\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpxuhs\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"kJbGqeNYE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1apif2y\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"pa4962rvW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwz4dc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"IGBwG7aDk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18yz4eu\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Sp3Cp12AH\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onz26p\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DEaFG1vhN\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7yuww8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eolB6Ld3E\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1epeeuy\",\"data-framer-name\":\"Frame 85\",layoutDependency:layoutDependency,layoutId:\"JrOSefwSe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fWXUvu7nJBhGWelcyHPpgt9I5E.png\"},className:\"framer-1gcieuq\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"Gm1DY92TI\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-syeory\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"aw3aPten8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bt5o\",\"data-framer-name\":\"Frame 89\",layoutDependency:layoutDependency,layoutId:\"D5ZNrfuTO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-75xdwb\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"E7zKe1rhU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Google Calendar\"})}),className:\"framer-emii3k\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"ou8HqeAa7\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3ajp0\",\"data-framer-name\":\"Frame 88\",layoutDependency:layoutDependency,layoutId:\"MtrYhvmZC\",style:{backgroundColor:\"rgb(223, 223, 223)\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"2.88px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"APP\"})}),className:\"framer-1u5yyy5\",\"data-framer-name\":\"APP\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"qeoysiMuR\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:45\"})}),className:\"framer-17jlzs4\",\"data-framer-name\":\"12:45\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"mozvYLCu1\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5hq1n\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"WidYSMG1g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-le8xl2\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FPAC7Zmpf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-61hqgs\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"MZEurDsGF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixsl3u\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Bfm0ypNFJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oks0uy\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tE7PkGLoU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzsizh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"LRr17JAZ1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10mni51\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"un7cNa5NX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m18v3n\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Hxsr_AJs3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zziouz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"jDo2lIeMZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kbvuko\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"it0o0dw6g\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d13ye8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TCrXDOvHQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6tslk\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Z9fNw7Jwf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rhkgkv\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"QjODhxfee\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-imubhf\",\"data-framer-name\":\"Rectangle 27\",layoutDependency:layoutDependency,layoutId:\"jDYT9BV_R\",style:{backgroundColor:\"rgb(32, 157, 212)\",borderBottomLeftRadius:3.2,borderBottomRightRadius:3.2,borderTopLeftRadius:3.2,borderTopRightRadius:3.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9sdx89\",\"data-framer-name\":\"Frame 92\",layoutDependency:layoutDependency,layoutId:\"bPXLaiINK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aam77d\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"nRs21gGIA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qfevvf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Neaco6_w4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o38ogc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"WoBbuCqZR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ap67nb\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PbrL0nswD\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-svfalt\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"fIv4vt3Gl\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wzbgcw\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"B_X1Da4a_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4zvbso\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ckpX4ZMK1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rl53ov\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"shGdpibDA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-owdio0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"BYA563P8y\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhmba\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PjWAztFX7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xx0n56\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"gw29XDL7U\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ekuibd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"KpzHM7z0A\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10e0zb7\",\"data-framer-name\":\"Frame 87\",layoutDependency:layoutDependency,layoutId:\"zWXWpx_BR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-16awv32\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"FDYpEEZcc\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yc2phy\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"fc9JjW60d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jo3hiu\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"Wi6bxQe2M\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-zoxayw\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"xJ8BWAPON\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:58\"})}),className:\"framer-1jeqocg\",\"data-framer-name\":\"12:58\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"b4JaCrrzh\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hxcp7a\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"yWo90QfJo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-115hbvh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"xYLXifV_s\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sgfp33\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"oUEVcnzXi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yum3me\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"hEN5uLKhz\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4an93v\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Qrq4irNeA\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y8bod\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eLIhWDNa2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mucaw7\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"fm6KgjJLM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kworxh\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"wsVHEBhH3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oosnbh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FQapLuTap\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uf1ckb\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"WAH8qnWwk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnqiyl\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"GZMJO0cDW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1potijd\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tw7zzBEHM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejwdrd\",\"data-framer-name\":\"Frame 80\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:230,layoutDependency:layoutDependency,layoutId:\"nES4sdtI0\",svg:'<svg width=\"230\" height=\"36\" viewBox=\"0 0 230 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9882)\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n<rect x=\"9.83984\" y=\"9.30176\" width=\"0.32\" height=\"6.4\" fill=\"#4C4C4C\"/>\\n<g clip-path=\"url(#clip1_196_9882)\">\\n<rect x=\"10.1592\" y=\"10.7241\" width=\"15.7778\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"26.8262\" y=\"10.7241\" width=\"13.5556\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"41.2705\" y=\"10.7241\" width=\"6.44445\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n</g>\\n<mask id=\"path-7-inside-1_196_9882\" fill=\"white\">\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\"/>\\n</mask>\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M6.63965 18.902H224.24V18.262H6.63965V18.902Z\" fill=\"black\" fill-opacity=\"0.15\" mask=\"url(#path-7-inside-1_196_9882)\"/>\\n<g clip-path=\"url(#clip2_196_9882)\">\\n<path d=\"M12.0249 21.6221V23.4887H13.6249L11.4916 26.4221V24.5554H9.8916L12.0249 21.6221Z\" stroke=\"#5F5F5F\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<rect x=\"16.5596\" y=\"20.502\" width=\"0.32\" height=\"7.04\" fill=\"#D9D9D9\"/>\\n<g clip-path=\"url(#clip3_196_9882)\">\\n<path d=\"M22.667 22.7139H23.787C23.9603 22.7139 24.1264 22.7827 24.249 22.9052C24.3715 23.0277 24.4403 23.1939 24.4403 23.3672C24.4403 23.5405 24.3715 23.7067 24.249 23.8292C24.1264 23.9517 23.9603 24.0205 23.787 24.0205H22.667V22.7139Z\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M23.787 24.02H23.9737C24.1469 24.02 24.3131 24.0889 24.4356 24.2114C24.5582 24.3339 24.627 24.5001 24.627 24.6734C24.627 24.8466 24.5582 25.0128 24.4356 25.1353C24.3131 25.2579 24.1469 25.3267 23.9737 25.3267H22.667V24.02\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip4_196_9882)\">\\n<path d=\"M32.3721 22.7158H33.4921\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.627 25.3286H32.747\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M32.9332 22.7148L32.1865 25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip5_196_9882)\">\\n<path d=\"M40.2119 24.0205H42.8252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.2683 22.9941C42.226 22.9119 42.129 22.8394 41.9933 22.7885C41.8575 22.7376 41.6912 22.7114 41.5216 22.7141H41.335C41.1617 22.7141 40.9955 22.7829 40.873 22.9054C40.7505 23.0279 40.6816 23.1941 40.6816 23.3674C40.6816 23.5407 40.7505 23.7068 40.873 23.8294C40.9955 23.9519 41.1617 24.0207 41.335 24.0207H41.7083C41.8816 24.0207 42.0478 24.0896 42.1703 24.2121C42.2928 24.3346 42.3616 24.5008 42.3616 24.6741C42.3616 24.8473 42.2928 25.0135 42.1703 25.136C42.0478 25.2586 41.8816 25.3274 41.7083 25.3274H41.4283C41.2587 25.3301 41.0924 25.3038 40.9567 25.2529C40.821 25.202 40.724 25.1295 40.6816 25.0474\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip6_196_9882)\">\\n<path d=\"M49.5474 23.2759L48.8008 24.0225L49.5474 24.7692\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M51.415 23.2749L52.1617 24.0216L51.415 24.7682\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M50.856 22.5288L50.1094 25.5155\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip7_196_9882)\">\\n<path d=\"M59.0654 24.3948C59.1263 24.4569 59.1989 24.5062 59.279 24.5399C59.3591 24.5735 59.4452 24.5909 59.5321 24.5909C59.619 24.5909 59.7051 24.5735 59.7852 24.5399C59.8653 24.5062 59.9379 24.4569 59.9988 24.3948L60.7454 23.6481C60.8692 23.5243 60.9387 23.3565 60.9387 23.1815C60.9387 23.0064 60.8692 22.8386 60.7454 22.7148C60.6217 22.591 60.4538 22.5215 60.2788 22.5215C60.1037 22.5215 59.9359 22.591 59.8121 22.7148L59.7188 22.8081\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.8098 23.6482C59.749 23.5862 59.6764 23.5368 59.5963 23.5032C59.5161 23.4695 59.4301 23.4521 59.3432 23.4521C59.2562 23.4521 59.1702 23.4695 59.0901 23.5032C59.0099 23.5368 58.9373 23.5862 58.8765 23.6482L58.1298 24.3949C58.0061 24.5187 57.9365 24.6865 57.9365 24.8616C57.9365 25.0366 58.0061 25.2045 58.1298 25.3282C58.2536 25.452 58.4215 25.5215 58.5965 25.5215C58.7715 25.5215 58.9394 25.452 59.0632 25.3282L59.1565 25.2349\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip8_196_9882)\">\\n<path d=\"M68.2109 22.9028H69.8909\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.2139 24.022H69.8939\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.3984 25.1416H69.8918\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.9072 24.7674C66.9072 24.6684 66.9466 24.5734 67.0166 24.5034C67.0866 24.4334 67.1815 24.394 67.2806 24.394C67.3796 24.394 67.4745 24.4334 67.5445 24.5034C67.6146 24.5734 67.6539 24.6684 67.6539 24.7674C67.6539 24.8777 67.5606 24.954 67.4672 25.0474L66.9072 25.514H67.6539\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M67.2815 23.6478V22.5278L66.9082 22.9012\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip9_196_9882)\">\\n<path d=\"M76.8018 22.9009H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 24.022H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 25.1421H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 22.9028V22.9055\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 24.0225V24.0252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0527 25.1426V25.1453\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip10_196_9882)\">\\n<path d=\"M85.7607 22.9014H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7607 24.022H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7617 25.1416H87.8151\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0137 22.9019V25.1437\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip11_196_9882)\">\\n<path d=\"M95.6523 22.3418V23.0885C95.6523 23.138 95.672 23.1855 95.707 23.2205C95.742 23.2555 95.7895 23.2751 95.839 23.2751H96.5857\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.2136 25.7023H94.347C94.248 25.7023 94.153 25.663 94.083 25.5929C94.013 25.5229 93.9736 25.428 93.9736 25.329V22.7156C93.9736 22.6166 94.013 22.5216 94.083 22.4516C94.153 22.3816 94.248 22.3423 94.347 22.3423H95.6536L96.587 23.2756V25.329C96.587 25.428 96.5476 25.5229 96.4776 25.5929C96.4076 25.663 96.3126 25.7023 96.2136 25.7023Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.9064 24.208L94.7197 24.5813L94.9064 24.9547\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.6523 24.2075L95.839 24.5809L95.6523 24.9542\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip12_196_9882)\">\\n<path d=\"M190.693 24.6758C190.693 24.8491 190.762 25.0152 190.885 25.1378C191.007 25.2603 191.173 25.3291 191.347 25.3291C191.52 25.3291 191.686 25.2603 191.809 25.1378C191.931 25.0152 192 24.8491 192 24.6758C192 24.5025 191.931 24.3363 191.809 24.2138C191.686 24.0913 191.52 24.0225 191.347 24.0225C191.173 24.0225 191.007 24.0913 190.885 24.2138C190.762 24.3363 190.693 24.5025 190.693 24.6758Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 25.3282V23.3682C188.643 23.1949 188.711 23.0287 188.834 22.9062C188.956 22.7837 189.123 22.7148 189.296 22.7148C189.469 22.7148 189.635 22.7837 189.758 22.9062C189.88 23.0287 189.949 23.1949 189.949 23.3682V25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 24.208H189.949\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.001 24.022V25.3286\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip13_196_9882)\">\\n<path d=\"M198.535 24.0211C198.535 24.2191 198.614 24.409 198.754 24.5491C198.894 24.6891 199.084 24.7677 199.282 24.7677C199.48 24.7677 199.67 24.6891 199.81 24.5491C199.95 24.409 200.028 24.2191 200.028 24.0211C200.028 23.8231 199.95 23.6331 199.81 23.4931C199.67 23.3531 199.48 23.2744 199.282 23.2744C199.084 23.2744 198.894 23.3531 198.754 23.4931C198.614 23.6331 198.535 23.8231 198.535 24.0211Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.027 24.0205V24.3005C200.027 24.4243 200.076 24.543 200.164 24.6305C200.251 24.718 200.37 24.7672 200.494 24.7672C200.618 24.7672 200.736 24.718 200.824 24.6305C200.911 24.543 200.961 24.4243 200.961 24.3005V24.0205C200.961 23.6595 200.845 23.308 200.63 23.018C200.415 22.728 200.113 22.5149 199.767 22.4104C199.422 22.3058 199.052 22.3154 198.712 22.4376C198.372 22.5598 198.081 22.7881 197.881 23.0888C197.681 23.3895 197.584 23.7466 197.603 24.1071C197.622 24.4675 197.757 24.8123 197.987 25.0903C198.217 25.3682 198.531 25.5646 198.882 25.6503C199.232 25.7361 199.601 25.7065 199.934 25.5661\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip14_196_9882)\">\\n<path d=\"M206.561 24.0213C206.561 24.2419 206.604 24.4604 206.688 24.6642C206.773 24.868 206.897 25.0532 207.053 25.2092C207.209 25.3653 207.394 25.489 207.598 25.5734C207.801 25.6579 208.02 25.7013 208.241 25.7013C208.461 25.7013 208.68 25.6579 208.883 25.5734C209.087 25.489 209.272 25.3653 209.428 25.2092C209.584 25.0532 209.708 24.868 209.793 24.6642C209.877 24.4604 209.921 24.2419 209.921 24.0213C209.921 23.8007 209.877 23.5822 209.793 23.3784C209.708 23.1746 209.584 22.9894 209.428 22.8334C209.272 22.6774 209.087 22.5536 208.883 22.4692C208.68 22.3848 208.461 22.3413 208.241 22.3413C208.02 22.3413 207.801 22.3848 207.598 22.4692C207.394 22.5536 207.209 22.6774 207.053 22.8334C206.897 22.9894 206.773 23.1746 206.688 23.3784C206.604 23.5822 206.561 23.8007 206.561 24.0213Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.679 23.6475H207.681\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M208.799 23.6484H208.802\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.775 24.5815C207.836 24.6436 207.909 24.693 207.989 24.7266C208.069 24.7603 208.155 24.7776 208.242 24.7776C208.329 24.7776 208.415 24.7603 208.495 24.7266C208.575 24.693 208.648 24.6436 208.709 24.5815\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip15_196_9882)\">\\n<path d=\"M217.763 23.0893L216.55 24.3027C216.475 24.3769 216.434 24.4776 216.434 24.5827C216.434 24.6877 216.475 24.7884 216.55 24.8627C216.624 24.9369 216.725 24.9786 216.83 24.9786C216.935 24.9786 217.035 24.9369 217.11 24.8627L218.323 23.6493C218.471 23.5008 218.555 23.2994 218.555 23.0893C218.555 22.8793 218.471 22.6778 218.323 22.5293C218.174 22.3808 217.973 22.2974 217.763 22.2974C217.553 22.2974 217.351 22.3808 217.203 22.5293L215.99 23.7427C215.767 23.9654 215.642 24.2676 215.642 24.5827C215.642 24.8977 215.767 25.1999 215.99 25.4227C216.212 25.6454 216.514 25.7706 216.83 25.7706C217.145 25.7706 217.447 25.6454 217.67 25.4227L218.883 24.2093\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<rect x=\"6.47965\" y=\"6.26187\" width=\"217.92\" height=\"23.36\" rx=\"1.44\" stroke=\"#555555\" stroke-width=\"0.32\"/>\\n<defs>\\n<clipPath id=\"clip0_196_9882\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_196_9882\">\\n<rect width=\"37.5556\" height=\"3.55556\" fill=\"white\" transform=\"translate(10.1592 10.7241)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_196_9882\">\\n<rect width=\"6.40001\" height=\"6.4\" fill=\"white\" transform=\"translate(8.55957 20.8218)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(21.3594 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(30.3193 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(39.2793 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(48.2393 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(57.1992 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(66.1592 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(75.1191 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(84.0801 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(93.04 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(188.08 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(197.04 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(206 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip15_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(214.96 21.7822)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6pm9yo\",\"data-border\":true,\"data-framer-name\":\"Frame 427322483\",layoutDependency:layoutDependency,layoutId:\"xo3TTx5V7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wffltk\",\"data-framer-name\":\"Frame 427322468\",layoutDependency:layoutDependency,layoutId:\"duMpsvD59\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fy5fby-container\",layoutDependency:layoutDependency,layoutId:\"Q2zklmGOW-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Q2zklmGOW\",layoutId:\"Q2zklmGOW\",style:{height:\"100%\",width:\"100%\"},variant:\"IEZpDik_S\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(31, 31, 31))\"},children:\"Business Analyst\"})]}),className:\"framer-ik87li\",\"data-framer-name\":\"Ahmed Taleb Business Analyst\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"cJodQ6flH\",style:{\"--extracted-2gxw0f\":\"rgb(31, 31, 31)\",\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"How to communicate with Ahmed:\"})}),className:\"framer-9xg6qm\",\"data-framer-name\":\"How to communicate with Ahmed:\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"k4ElVCqkE\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c25aao\",\"data-framer-name\":\"Frame 427322467\",layoutDependency:layoutDependency,layoutId:\"WXS95wAUv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ay89jy\",\"data-framer-name\":\"Frame 427322464\",layoutDependency:layoutDependency,layoutId:\"qk2RkmhFH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-e4wmp6\",\"data-framer-name\":\"Toggle / Status Complete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"BikHBzcgx\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.7283C4.63893 13.7283 2.12988 11.2192 2.12988 8.12414C2.12988 5.02907 4.63893 2.52002 7.73401 2.52002C10.8291 2.52002 13.3381 5.02907 13.3381 8.12414C13.3381 11.2192 10.8291 13.7283 7.73401 13.7283Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.25592C10.0433 6.07355 9.74758 6.07355 9.5652 6.25592L7.11225 8.70887L5.90466 7.50129C5.72228 7.31891 5.42658 7.31891 5.24421 7.50129C5.06183 7.68366 5.06183 7.97936 5.24421 8.16174L7.11225 10.0298L10.2256 6.91638C10.408 6.734 10.408 6.4383 10.2256 6.25592Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Don\u2019t interrupt Ahmed\"})}),className:\"framer-8s8yp7\",\"data-framer-name\":\"Don\u2019t interrupt Ace\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xiAsW6RVB\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6g5tbo\",\"data-framer-name\":\"Frame 427322465\",layoutDependency:layoutDependency,layoutId:\"AJ7vWyR9e\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lot5yv\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"hGOr1SDmd\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73498 13.4084C4.63991 13.4084 2.13086 10.8994 2.13086 7.80432C2.13086 4.70925 4.63991 2.2002 7.73498 2.2002C10.8301 2.2002 13.3391 4.70925 13.3391 7.80432C13.3391 10.8994 10.8301 13.4084 7.73498 13.4084Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 5.9361C10.0433 5.75372 9.74758 5.75372 9.5652 5.9361L7.11225 8.38905L5.90466 7.18146C5.72228 6.99908 5.42658 6.99908 5.24421 7.18146C5.06183 7.36384 5.06183 7.65953 5.24421 7.84191L7.11225 9.70996L10.2256 6.59655C10.408 6.41417 10.408 6.11848 10.2256 5.9361Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Provide a high-level summary before going into details.\"})}),className:\"framer-p0d2y0\",\"data-framer-name\":\"Provide a high-level summary before going into details.\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"eslGOJ3F5\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wpa26x\",\"data-framer-name\":\"Frame 427322466\",layoutDependency:layoutDependency,layoutId:\"yi6Nndod5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cr52yv\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ZiWg97Xcf\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.6165C4.63893 13.6165 2.12988 11.1074 2.12988 8.01233C2.12988 4.91725 4.63893 2.4082 7.73401 2.4082C10.8291 2.4082 13.3381 4.91725 13.3381 8.01233C13.3381 11.1074 10.8291 13.6165 7.73401 13.6165Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.1446C10.0433 5.96222 9.74758 5.96222 9.5652 6.1446L7.11225 8.59755L5.90466 7.38996C5.72228 7.20758 5.42658 7.20758 5.24421 7.38996C5.06183 7.57234 5.06183 7.86803 5.24421 8.05041L7.11225 9.91845L10.2256 6.80505C10.408 6.62267 10.408 6.32698 10.2256 6.1446Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Give Ahmed time to answer questions\"})}),className:\"framer-1p1uxl2\",\"data-framer-name\":\"Give Ace time to answer questions\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"jJgpnbiGJ\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-83glon\",\"data-framer-name\":\"Frame 1707479563\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MrpuTUpsq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 58\"><path d=\"M 4.799 1.804 C 4.634 1.64 4.366 1.64 4.201 1.804 L 1.508 4.479 C 1.343 4.643 1.343 4.909 1.508 5.073 C 1.673 5.237 1.941 5.237 2.107 5.073 L 4.5 2.696 L 6.893 5.073 C 7.058 5.237 7.326 5.237 7.491 5.073 C 7.657 4.909 7.657 4.643 7.491 4.479 Z M 4.077 2.101 L 4.077 26.478 L 4.923 26.478 L 4.923 2.101 Z M 31.577 53.797 L 55.269 53.797 L 55.269 52.957 L 31.577 52.957 Z M 4.077 26.478 C 4.077 41.566 16.389 53.797 31.577 53.797 L 31.577 52.957 C 16.856 52.957 4.923 41.102 4.923 26.478 Z\" fill=\"rgb(31,31,31)\"></path></svg>',svgContentId:12154212752,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-wfrycw\",\"data-framer-appear-id\":\"wfrycw-1\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"cjBwyKAcH\",optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mo2iw0-container\",layoutDependency:layoutDependency,layoutId:\"jDKPw3rmF-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"jDKPw3rmF\",layoutId:\"jDKPw3rmF\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Slack Integration\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Elevate your Slack game\"})}),className:\"framer-9j7hxz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MZOI40hTv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"By integrating SurePeople with Slack, you can transform your team's workflow, foster more effective communication, and take collaboration to new heights.\"})}),className:\"framer-vl4h4s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XGuvP5eIx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-npnnch-container\",layoutDependency:layoutDependency,layoutId:\"Wx8H7rpXZ-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:13,arrowPadding:20,arrowPaddingBottom:14,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:32,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.6,effectsPerspective:900,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Wx8H7rpXZ\",intervalControl:4,itemAmount:1,layoutId:\"Wx8H7rpXZ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:-52,dotSize:4,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ikh08\",\"data-framer-name\":\"Native app Mobile\",layoutDependency:layoutDependency,layoutId:\"yOTH_NlkI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyw89u-container\",layoutDependency:layoutDependency,layoutId:\"L0dF1LW4F-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"L0dF1LW4F\",layoutId:\"L0dF1LW4F\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Phone App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hl3fpq\",layoutDependency:layoutDependency,layoutId:\"k1UXS2rf_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8azfrt-container\",layoutDependency:layoutDependency,layoutId:\"LmFTRWzwW-container\",children:/*#__PURE__*/_jsx(PersonalityScreen,{height:\"100%\",id:\"LmFTRWzwW\",layoutId:\"LmFTRWzwW\",variant:\"vZcoL265I\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1vydlyb\",\"data-framer-appear-id\":\"1vydlyb\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"TOR1AtQP9\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Unleash SurePeople's potential in the palm of your hand\"})}),className:\"framer-10qdezj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RerBtiHhl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Experience the convenience and power of our innovative technology with the SurePeople App\"})}),className:\"framer-hoekwv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PHtn16SVm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1500xhl\",\"data-framer-name\":\"Slack Mobile\",layoutDependency:layoutDependency,layoutId:\"SU52nn0XF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m6lsce-container\",layoutDependency:layoutDependency,layoutId:\"fPgVrKe15-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"fPgVrKe15\",layoutId:\"fPgVrKe15\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Slack Integration\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gi7gx\",layoutDependency:layoutDependency,layoutId:\"x1Ogqs_8V\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m335es\",\"data-framer-name\":\"Slack\",layoutDependency:layoutDependency,layoutId:\"Dn73OpOVX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12sf8pi\",\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"o69zwOBwu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3.56,borderBottomRightRadius:3.56,borderTopLeftRadius:3.56,borderTopRightRadius:3.56},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f6f9kf\",\"data-border\":true,\"data-framer-name\":\"Frame 40\",layoutDependency:layoutDependency,layoutId:\"Xi5olSTPX\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(44, 9, 41)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jl4rdy\",\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"lfK27QAMW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-swmzkr\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"XFJ_VbVwd\",style:{backgroundColor:\"rgb(237, 106, 94)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rtxzjx\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"U9CqDo0Yg\",style:{backgroundColor:\"rgb(244, 189, 79)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k5fljp\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"rF71WOu7R\",style:{backgroundColor:\"rgb(97, 195, 84)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h5l3co\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"KH8ui6vO7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-136gwy0\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"jg9b68ZAO\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9600)\">\\n<path d=\"M2.42578 4.08154H6.53245\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08154L4.18578 5.84154\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08031L4.18578 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9600\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17enul\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"oEAhjdUPk\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" clip-path=\"url(#clip0_196_9605)\">\\n<path d=\"M6.37598 4.08105H2.26931\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08105L4.61597 5.84106\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08031L4.61597 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9605\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"matrix(-1 0 0 1 7.83984 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j8q1os\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"UmAyigf3_\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9610)\">\\n<path d=\"M1.51953 4.08043C1.51953 4.42712 1.58782 4.77042 1.72049 5.09071C1.85316 5.41101 2.04762 5.70205 2.29277 5.94719C2.53792 6.19234 2.82895 6.3868 3.14925 6.51947C3.46955 6.65215 3.81284 6.72043 4.15953 6.72043C4.50622 6.72043 4.84952 6.65215 5.16982 6.51947C5.49012 6.3868 5.78115 6.19234 6.02629 5.94719C6.27144 5.70205 6.4659 5.41101 6.59857 5.09071C6.73125 4.77042 6.79953 4.42712 6.79953 4.08043C6.79953 3.73374 6.73125 3.39045 6.59857 3.07015C6.4659 2.74985 6.27144 2.45881 6.02629 2.21367C5.78115 1.96852 5.49012 1.77406 5.16982 1.64139C4.84952 1.50872 4.50622 1.44043 4.15953 1.44043C3.81284 1.44043 3.46955 1.50872 3.14925 1.64139C2.82895 1.77406 2.53792 1.96852 2.29277 2.21367C2.04762 2.45881 1.85316 2.74985 1.72049 3.07015C1.58782 3.39045 1.51953 3.73374 1.51953 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 4.08105H5.18585\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 2.61572V4.08239\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9610\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.639648 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-px1yxp\",\"data-border\":true,\"data-framer-name\":\"Frame 37\",layoutDependency:layoutDependency,layoutId:\"WJoujgSXE\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(90, 60, 90)\",borderBottomLeftRadius:1.6,borderBottomRightRadius:1.6,borderTopLeftRadius:1.6,borderTopRightRadius:1.6},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7cd9ou\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"ir4kIkdE1\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9616)\">\\n<path d=\"M0.800781 2.65349C0.800781 2.8496 0.839408 3.04379 0.914455 3.22496C0.989502 3.40614 1.0995 3.57077 1.23817 3.70944C1.37684 3.84811 1.54146 3.9581 1.72264 4.03315C1.90382 4.1082 2.09801 4.14682 2.29412 4.14682C2.49022 4.14682 2.68441 4.1082 2.86559 4.03315C3.04677 3.9581 3.21139 3.84811 3.35006 3.70944C3.48873 3.57077 3.59873 3.40614 3.67378 3.22496C3.74883 3.04379 3.78745 2.8496 3.78745 2.65349C3.78745 2.45738 3.74883 2.2632 3.67378 2.08202C3.59873 1.90084 3.48873 1.73621 3.35006 1.59754C3.21139 1.45887 3.04677 1.34888 2.86559 1.27383C2.68441 1.19878 2.49022 1.16016 2.29412 1.16016C2.09801 1.16016 1.90382 1.19878 1.72264 1.27383C1.54146 1.34888 1.37684 1.45887 1.23817 1.59754C1.0995 1.73621 0.989502 1.90084 0.914455 2.08202C0.839408 2.2632 0.800781 2.45738 0.800781 2.65349Z\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.6384 5.0007L3.3584 3.7207\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9616\">\\n<rect width=\"5.12001\" height=\"5.12\" fill=\"white\" transform=\"translate(0.15918 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Search A1 Marketing Ltd.\"})}),className:\"framer-1ihztzu\",\"data-framer-name\":\"Search A1 Marketing Ltd.\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"BAlJMrVnb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u5dk02\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"h_vXfozzd\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9621)\">\\n<path d=\"M1.83887 4.08043C1.83887 4.42712 1.90715 4.77042 2.03983 5.09071C2.1725 5.41101 2.36696 5.70205 2.61211 5.94719C2.85725 6.19234 3.14828 6.3868 3.46858 6.51947C3.78888 6.65215 4.13218 6.72043 4.47887 6.72043C4.82556 6.72043 5.16885 6.65215 5.48915 6.51947C5.80945 6.3868 6.10048 6.19234 6.34563 5.94719C6.59078 5.70205 6.78524 5.41101 6.91791 5.09071C7.05058 4.77042 7.11887 4.42712 7.11887 4.08043C7.11887 3.73374 7.05058 3.39045 6.91791 3.07015C6.78524 2.74985 6.59078 2.45881 6.34563 2.21367C6.10048 1.96852 5.80945 1.77406 5.48915 1.64139C5.16885 1.50872 4.82556 1.44043 4.47887 1.44043C4.13218 1.44043 3.78888 1.50872 3.46858 1.64139C3.14828 1.77406 2.85725 1.96852 2.61211 2.21367C2.36696 2.45881 2.1725 2.74985 2.03983 3.07015C1.90715 3.39045 1.83887 3.73374 1.83887 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.4834 5.54785V5.55211\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.48315 4.52147C4.47775 4.42624 4.50344 4.33184 4.55634 4.25249C4.60925 4.17313 4.68651 4.11311 4.77649 4.08147C4.88674 4.03931 4.98571 3.97212 5.06559 3.88521C5.14547 3.79831 5.20408 3.69404 5.23682 3.58063C5.26956 3.46721 5.27552 3.34775 5.25425 3.23164C5.23297 3.11553 5.18503 3.00595 5.1142 2.91151C5.04338 2.81708 4.9516 2.74037 4.84609 2.68744C4.74058 2.6345 4.62423 2.60678 4.50619 2.60645C4.38814 2.60612 4.27164 2.6332 4.16584 2.68555C4.06004 2.7379 3.96783 2.81409 3.89648 2.90813\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9621\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xgivpm\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"WyTm2RYdH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1rdoros\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"cv7lFkFSG\",style:{\"--border-bottom-width\":\"0.8888891935348511px\",\"--border-color\":\"rgb(0, 163, 255)\",\"--border-left-width\":\"0.8888891935348511px\",\"--border-right-width\":\"0.8888891935348511px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888891935348511px\",borderBottomLeftRadius:33.53,borderBottomRightRadius:33.53,borderTopLeftRadius:33.53,borderTopRightRadius:33.53}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ixl32v\",\"data-border\":true,\"data-framer-name\":\"Ellipse 29\",layoutDependency:layoutDependency,layoutId:\"C_TSmzuVn\",style:{\"--border-bottom-width\":\"0.6400004029273987px\",\"--border-color\":\"rgb(44, 9, 43)\",\"--border-left-width\":\"0.6400004029273987px\",\"--border-right-width\":\"0.6400004029273987px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6400004029273987px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y3tl9m\",\"data-framer-name\":\"Frame 45\",layoutDependency:layoutDependency,layoutId:\"xpUE879ft\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fsbafa\",\"data-framer-name\":\"Frame 43\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:207,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"fAtOSCJbr\",svg:'<svg width=\"17\" height=\"207\" viewBox=\"0 0 17 207\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_196_9630\" fill=\"white\">\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\"/>\\n</mask>\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\" fill=\"#3E103F\"/>\\n<path d=\"M16.32 0.160156V206.222H16.96V0.160156H16.32Z\" fill=\"white\" fill-opacity=\"0.15\" mask=\"url(#path-1-inside-1_196_9630)\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" fill=\"#3E103F\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" stroke=\"white\" stroke-width=\"0.96\"/>\\n<g clip-path=\"url(#clip0_196_9630)\">\\n<path d=\"M8.32129 25.1729V28.9062\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.45703 27.04H10.1904\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9630\">\\n<rect width=\"6.40001\" height=\"12.16\" fill=\"white\" transform=\"translate(5.12012 18.0801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijptzq\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"lMwR8LCzP\",style:{backgroundColor:\"rgb(63, 15, 63)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1soqa12\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"mKBbGV4oC\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-y57ef5\",\"data-framer-name\":\"Company\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"vQJOncsHN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z4xh3d\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"pGJPFShlT\",svg:'<svg width=\"11\" height=\"11\" viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.160156\" y=\"0.0800781\" width=\"10.24\" height=\"10.24\" rx=\"5.12\" fill=\"white\"/>\\n<path d=\"M3.81164 3.73291H3.51831C3.36271 3.73291 3.21349 3.79472 3.10347 3.90474C2.99345 4.01476 2.93164 4.16398 2.93164 4.31958V6.95958C2.93164 7.11517 2.99345 7.26439 3.10347 7.37441C3.21349 7.48443 3.36271 7.54624 3.51831 7.54624H6.15831C6.3139 7.54624 6.46312 7.48443 6.57315 7.37441C6.68317 7.26439 6.74498 7.11517 6.74498 6.95958V6.66624\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.73999 3.61071C7.85552 3.49519 7.92042 3.3385 7.92042 3.17511C7.92042 3.01173 7.85552 2.85504 7.73999 2.73951C7.62446 2.62399 7.46777 2.55908 7.30439 2.55908C7.14101 2.55908 6.98432 2.62399 6.86879 2.73951L4.40039 5.19911V6.07911H5.28039L7.73999 3.61071Z\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.4541 3.14697L7.3341 4.02697\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxedts\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"XnnbOvuFt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gi0esn\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"PC_Yu2x7E\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-375z4e\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"ww5Cp__94\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9658)\">\\n<path d=\"M5.51855 4.84115L5.20655 3.90515C5.47621 3.50634 5.57376 3.03405 5.48106 2.5761C5.38837 2.11816 5.11174 1.70571 4.70261 1.41546C4.29348 1.1252 3.77969 0.976887 3.25677 0.998089C2.73385 1.01929 2.23739 1.20857 1.85968 1.53073C1.48198 1.85288 1.24874 2.286 1.20333 2.74955C1.15793 3.21309 1.30344 3.67553 1.61282 4.05086C1.9222 4.4262 2.37439 4.6889 2.88532 4.79012C3.39625 4.89134 3.93114 4.82419 4.39055 4.60115L5.51855 4.84115Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.4248 2.48975H4.15281M2.4968 3.49775H3.79281\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9658\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Threads\"})}),className:\"framer-18mhsky\",\"data-framer-name\":\"Threads\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Ksw4v0OHk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f78g37\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"ARGosdji5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18tli1s\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"fejzs4dIR\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9664)\">\\n<path d=\"M2.28156 2.43994C1.55244 2.43994 0.961563 2.92354 0.961563 3.51994C0.961563 3.85522 1.14828 4.15474 1.44156 4.35274V4.83994L1.91292 4.55722C2.03372 4.58575 2.15744 4.60009 2.28156 4.59994C3.01068 4.59994 3.60156 4.11634 3.60156 3.51994C3.60156 2.92354 3.01068 2.43994 2.28156 2.43994Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.55737 3.80801C3.72297 3.85505 3.90057 3.88049 4.08465 3.88049C4.29791 3.88095 4.50977 3.84591 4.71153 3.77681L5.28465 4.12049V3.44825C5.58153 3.18857 5.76465 2.83289 5.76465 2.44049C5.76465 1.64513 5.01249 1.00049 4.08465 1.00049C3.17697 1.00049 2.43753 1.61729 2.40465 2.38889V2.44481\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9664\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"All DMs\"})}),className:\"framer-hgzf9f\",\"data-framer-name\":\"All DMs\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"EK2ExdED4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15xujy2\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"PLAXS5iSn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i3re1g\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"vULcPd3hL\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9670)\">\\n<path d=\"M4.8016 4.12074H3.1216C2.9943 4.12074 2.87221 4.07017 2.78219 3.98015C2.69217 3.89014 2.6416 3.76805 2.6416 3.64074V1.24074C2.6416 1.11344 2.69217 0.991348 2.78219 0.901331C2.87221 0.811313 2.9943 0.760742 3.1216 0.760742H4.0816L5.2816 1.96074V3.64074C5.2816 3.76805 5.23103 3.89014 5.14101 3.98015C5.05099 4.07017 4.92891 4.12074 4.8016 4.12074Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 2.28076H4.38733\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 1.45459V2.28126\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31871 4.11973V4.59973C4.31871 4.72703 4.26814 4.84912 4.17812 4.93914C4.0881 5.02915 3.96601 5.07973 3.83871 5.07973H2.15871C2.03141 5.07973 1.90932 5.02915 1.8193 4.93914C1.72928 4.84912 1.67871 4.72703 1.67871 4.59973V2.19973C1.67871 2.07242 1.72928 1.95033 1.8193 1.86032C1.90932 1.7703 2.03141 1.71973 2.15871 1.71973H2.63871\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9670\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Drafts\"})}),className:\"framer-v8zdyh\",\"data-framer-name\":\"Drafts\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"ZswyLQY3l\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-85jzat\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"pAUn5SnZT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t5z3oi\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"f3ohYYi2B\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9678)\">\\n<path d=\"M2.39941 2.92045C2.39941 3.17506 2.50056 3.41924 2.68059 3.59927C2.86063 3.77931 3.10481 3.88045 3.35941 3.88045C3.61402 3.88045 3.8582 3.77931 4.03824 3.59927C4.21827 3.41924 4.31942 3.17506 4.31942 2.92045C4.31942 2.66584 4.21827 2.42166 4.03824 2.24163C3.8582 2.06159 3.61402 1.96045 3.35941 1.96045C3.10481 1.96045 2.86063 2.06159 2.68059 2.24163C2.50056 2.42166 2.39941 2.66584 2.39941 2.92045Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31825 2.91912V3.27912C4.31825 3.43825 4.38146 3.59087 4.49398 3.70339C4.6065 3.81591 4.75912 3.87912 4.91825 3.87912C5.07738 3.87912 5.22999 3.81591 5.34251 3.70339C5.45503 3.59087 5.51825 3.43825 5.51825 3.27912V2.91912C5.51884 2.45499 5.36992 2.00301 5.09354 1.63013C4.81716 1.25725 4.42803 0.98332 3.98378 0.848907C3.53953 0.714495 3.0638 0.726753 2.62707 0.883866C2.19033 1.04098 1.81582 1.33459 1.55901 1.72121C1.3022 2.10782 1.17676 2.56687 1.20125 3.03036C1.22575 3.49385 1.3989 3.93712 1.69503 4.29451C1.99117 4.6519 2.39455 4.90439 2.84541 5.01459C3.29628 5.12478 3.77064 5.08682 4.19825 4.90633\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9678\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mnetions & reactions\"})}),className:\"framer-2ffioo\",\"data-framer-name\":\"Mnetions & reactions\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"ABEt_Bkua\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6zfamk\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"LuXGTsRYF\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u9dmhq\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"RRi8p9WLG\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9684)\">\\n<path d=\"M2.64016 0.999512H4.08016C4.20746 0.999512 4.32955 1.05008 4.41957 1.1401C4.50959 1.23012 4.56016 1.35221 4.56016 1.47951V4.83951L3.36016 4.11951L2.16016 4.83951V1.47951C2.16016 1.35221 2.21073 1.23012 2.30075 1.1401C2.39076 1.05008 2.51285 0.999512 2.64016 0.999512Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9684\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Saved items\"})}),className:\"framer-10ykph1\",\"data-framer-name\":\"Saved items\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"woZBln5tz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fij8mo\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"odriGt3X_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nwz1na\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"yx_7sCJE9\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9689)\">\\n<path d=\"M3.12012 2.92066C3.12012 2.98432 3.1454 3.04536 3.19041 3.09037C3.23542 3.13538 3.29647 3.16066 3.36012 3.16066C3.42377 3.16066 3.48481 3.13538 3.52982 3.09037C3.57483 3.04536 3.60012 2.98432 3.60012 2.92066C3.60012 2.85701 3.57483 2.79597 3.52982 2.75096C3.48481 2.70595 3.42377 2.68066 3.36012 2.68066C3.29647 2.68066 3.23542 2.70595 3.19041 2.75096C3.1454 2.79597 3.12012 2.85701 3.12012 2.92066Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 4.59938C3.12109 4.66303 3.14638 4.72407 3.19139 4.76908C3.2364 4.81409 3.29744 4.83938 3.36109 4.83938C3.42475 4.83938 3.48579 4.81409 3.5308 4.76908C3.57581 4.72407 3.60109 4.66303 3.60109 4.59938C3.60109 4.53572 3.57581 4.47468 3.5308 4.42967C3.48579 4.38466 3.42475 4.35938 3.36109 4.35938C3.29744 4.35938 3.2364 4.38466 3.19139 4.42967C3.14638 4.47468 3.12109 4.53572 3.12109 4.59938Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 1.24C3.12109 1.30365 3.14638 1.3647 3.19139 1.40971C3.2364 1.45471 3.29744 1.48 3.36109 1.48C3.42475 1.48 3.48579 1.45471 3.5308 1.40971C3.57581 1.3647 3.60109 1.30365 3.60109 1.24C3.60109 1.17635 3.57581 1.1153 3.5308 1.07029C3.48579 1.02529 3.42475 1 3.36109 1C3.29744 1 3.2364 1.02529 3.19139 1.07029C3.14638 1.1153 3.12109 1.17635 3.12109 1.24Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9689\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"More\"})}),className:\"framer-23aiby\",\"data-framer-name\":\"More\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"vtJz_Xh2m\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l2n26a\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"qCRyHXtiL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bqvn48\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"Xw2Q_vJYY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u2B50\uFE0F\"})}),className:\"framer-1w7meij\",\"data-framer-name\":\"\u2B50\uFE0F\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"QWuiLo9X1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Starred\"})}),className:\"framer-1d4iq4b\",\"data-framer-name\":\"Starred\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"PYSlbOsXf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s4qez0\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"puKmAtPS0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vhuxqb\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"q9nbAWjg1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-8of17l\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"fhUCF_Opa\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"design-team\"})}),className:\"framer-1180k82\",\"data-framer-name\":\"design-team\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"UHglXPKvG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bfrb8g\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"nrV72a_9W\",style:{backgroundColor:\"rgb(17, 100, 163)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yoxn1j\",\"data-framer-name\":\"Frame 62\",layoutDependency:layoutDependency,layoutId:\"glGA8fBDD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-twac8g\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"Ae1ov9b3f\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"social-media\"})}),className:\"framer-1dws3jn\",\"data-framer-name\":\"social-media\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"bsLhxrtW7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n1wofr\",\"data-framer-name\":\"Group 11\",layoutDependency:layoutDependency,layoutId:\"Nh8vGkZlA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5nl7d\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"bFxViXu6g\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17n2vgt\",\"data-border\":true,\"data-framer-name\":\"Rectangle 19\",layoutDependency:layoutDependency,layoutId:\"TqvO9_Bsm\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgb(17, 100, 163)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jx3wnd\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"lgx9idT__\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-7xp9ej\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"JjqPV6dOF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"team-finance\"})}),className:\"framer-k98ew1\",\"data-framer-name\":\"team-finance\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"pYsAAWgD2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5u7trw\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"cPDC30_SR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dx3zsu\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"kRvchfpKZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-gnye2p\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"hw2jBDoaH\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m13ldj\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"RwF0tUoNT\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Elena Nowak\"})}),className:\"framer-18fn5f2\",\"data-framer-name\":\"Elena Nowak\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"dGmMiW29V\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mntoo3\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"m1dMH9Qne\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v8x1y5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"M0U15O9YR\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9719)\">\\n<path d=\"M1.9209 2.91846L3.3609 4.35846L4.8009 2.91846H1.9209Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9719\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Channels\"})}),className:\"framer-ovi1r4\",\"data-framer-name\":\"Channels\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"JX_W4Lbag\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1diijfm\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"WRaKny0zX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-c7nv0d\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"WNrnobcxt\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"announcements\"})}),className:\"framer-s63yrd\",\"data-framer-name\":\"announcements\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"lNXe0gePO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lle0vo\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"AybSFreE5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-1a1fp07\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"NvK4WLDb5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"pr\"})}),className:\"framer-1w4k6bp\",\"data-framer-name\":\"pr\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"R01U4Lw8K\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r3bv86\",\"data-framer-name\":\"Frame 55\",layoutDependency:layoutDependency,layoutId:\"W217K30cB\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lbnhdu\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"nBGUxbJYQ\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.76029C0.679688 1.2301 1.10949 0.800293 1.63969 0.800293H5.47969C6.00989 0.800293 6.43969 1.2301 6.43969 1.76029V5.60029C6.43969 6.13049 6.00988 6.56029 5.47969 6.56029H1.63969C1.10949 6.56029 0.679688 6.13049 0.679688 5.60029V1.76029Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 3.68066H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 3.68066H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add channel\"})}),className:\"framer-1bljihq\",\"data-framer-name\":\"Add channel\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Yyoat8dI0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tzp3l5\",\"data-framer-name\":\"Frame 57\",layoutDependency:layoutDependency,layoutId:\"IlHLBTIZK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pjtjn7\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"u3wOENmfP\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9736)\">\\n<path d=\"M1.91992 3.16016L3.35992 4.60016L4.79992 3.16016H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9736\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.760254)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Direct messages\"})}),className:\"framer-1dc564h\",\"data-framer-name\":\"Direct messages\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"anIiQuJiN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g5yn0w\",\"data-framer-name\":\"Frame 56\",layoutDependency:layoutDependency,layoutId:\"lyRhXJE2n\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x6h88\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"TOyjF4tfj\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-1azcxzo\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"FkxNNqjf2\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l94kei\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"drL0KsG0r\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will Rodrigues you\"})}),className:\"framer-1fl9jc9\",\"data-framer-name\":\"Will Rodrigues you\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"V4Pp4vZY5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m7mqz6\",\"data-framer-name\":\"Frame 58\",layoutDependency:layoutDependency,layoutId:\"FvQn_Sp99\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11bkfgy\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"ibB3Kk0V1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-1130lco\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"OtIFZk8wV\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mt57ww\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"D3hh3VBkJ\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"-1 -1 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.11926 0.0392968H1.19926C0.536516 0.0392968 -0.000742272 0.576554 -0.000742272 1.2393V3.1593C-0.000742272 3.82204 0.536516 4.3593 1.19926 4.3593H3.11926C3.782 4.3593 4.31926 3.82204 4.31926 3.1593V1.2393C4.31926 0.576556 3.782 0.0392968 3.11926 0.0392968Z\" fill=\"#654766\" stroke=\"#3F0F3F\" stroke-width=\"0.48\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-qloq6e\",\"data-framer-name\":\"3\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"YQCeQGXNB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bea Rosen, Carter Poplin ...\"})}),className:\"framer-yhp76n\",\"data-framer-name\":\"Bea Rosen, Carter Poplin ...\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"luv3t9u81\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x89qi\",\"data-framer-name\":\"Frame 59\",layoutDependency:layoutDependency,layoutId:\"wsxg_ULkW\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-b2r4x3\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"HxhvE7F_7\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.00004C0.679688 0.469847 1.10949 0.0400391 1.63969 0.0400391H5.47969C6.00989 0.0400391 6.43969 0.469846 6.43969 1.00004V4.84004C6.43969 5.37023 6.00988 5.80004 5.47969 5.80004H1.63969C1.10949 5.80004 0.679688 5.37023 0.679688 4.84004V1.00004Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 2.92041H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 2.92041H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add teammates\"})}),className:\"framer-okso0f\",\"data-framer-name\":\"Add teammates\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"AuysW47LM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qpewfu\",\"data-framer-name\":\"Frame 60\",layoutDependency:layoutDependency,layoutId:\"H_WwW5A2Z\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wm3n02\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"VtlLNeOG8\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9758)\">\\n<path d=\"M1.91992 2.3999L3.35992 3.8399L4.79992 2.3999H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9758\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apps\"})}),className:\"framer-sgt4t8\",\"data-framer-name\":\"Apps\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"s2P1Tonoq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qqgwkp\",\"data-framer-name\":\"Frame 61\",layoutDependency:layoutDependency,layoutId:\"AOXJMt78B\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1442uqm\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"j7BOLyI1L\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gNso8VSNZ0zj7C1SGuV9JENjFaY.png\"},className:\"framer-1wtp29d\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"CVIrDV_5U\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Google Calendar\"})}),className:\"framer-1kve4sm\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"ioDUNyQ8O\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lvww0o\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"JoOGBWS2i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bzkfsv\",\"data-framer-name\":\"Frame 95\",layoutDependency:layoutDependency,layoutId:\"aj5qEucDe\",style:{boxShadow:\"0px 0.32000020146369934px 0.6400004029273987px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11m95vv\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"aG6Nytd_Y\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-138g9ez\",\"data-framer-name\":\"Frame 64\",layoutDependency:layoutDependency,layoutId:\"hYnSedeQt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4dugq\",\"data-framer-name\":\"Frame 63\",layoutDependency:layoutDependency,layoutId:\"oWbpUvfIA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"#social-media\"})}),className:\"framer-18rt8ig\",\"data-framer-name\":\"#social-media\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"L78kgDKn1\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8z83x0\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"Uzlro2fH7\",svg:'<svg width=\"5\" height=\"5\" viewBox=\"0 0 5 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9772)\">\\n<path d=\"M1.59863 1.71826L2.55863 2.67826L3.51863 1.71826\" stroke=\"black\" stroke-width=\"0.32\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9772\">\\n<rect width=\"3.84\" height=\"3.84\" fill=\"white\" transform=\"translate(0.640625 0.280273)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Track and coordinate social media\"})}),className:\"framer-13osot\",\"data-framer-name\":\"Track and coordinate social media\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"n1kJ7Lx3p\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f0vvv5\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",layoutDependency:layoutDependency,layoutId:\"r97yllDbM\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ps3rno\",\"data-framer-name\":\"Frame 66\",layoutDependency:layoutDependency,layoutId:\"gAOFd8Lt6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-u7uha8\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"vUOihXbNA\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-16mqr5l\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"aW0a2qOgg\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-16g7mve\",\"data-border\":true,\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"JXlIVXbhx\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"74\"})}),className:\"framer-1fxxv0s\",\"data-framer-name\":\"74\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"RV_MFn_kg\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11wymjr\",\"data-border\":true,\"data-framer-name\":\"Frame 73\",layoutDependency:layoutDependency,layoutId:\"xPO659xUS\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-62398c\",\"data-framer-name\":\"Frame 69\",layoutDependency:layoutDependency,layoutId:\"f5fpbiynT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dbcpll\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"jrq2EqdVy\",svg:'<svg width=\"5\" height=\"6\" viewBox=\"0 0 5 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 3.03996V4.95996H2.08C1.01961 4.95996 0.16 4.10035 0.16 3.03996C0.16 1.97957 1.01961 1.11996 2.08 1.11996C3.14039 1.11996 4 1.97957 4 3.03996Z\" fill=\"#FF745A\" stroke=\"#A9371E\" stroke-width=\"0.32\"/>\\n<rect x=\"1.27832\" y=\"2.23975\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"1.27734\" y=\"3.52051\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"0.642578\" y=\"2.87988\" width=\"2.88\" height=\"0.32\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Project brief\"})}),className:\"framer-1h8lonz\",\"data-framer-name\":\"Project brief\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"ccz_4MSOn\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tz1g3l\",\"data-framer-name\":\"Frame 70\",layoutDependency:layoutDependency,layoutId:\"fnnHnpuKV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IUHnFKXiU3VfBfJXFNTCY4a1wo.png\"},className:\"framer-19de29\",\"data-framer-name\":\"image 6\",layoutDependency:layoutDependency,layoutId:\"eYWhfrc9K\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Resources\"})}),className:\"framer-1p9nigk\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"D03Ii8_ya\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162505c\",\"data-framer-name\":\"Frame 71\",layoutDependency:layoutDependency,layoutId:\"YqS1Nmy3i\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Y2vp2AqNyff9hAi6fwwZY77ntAI.png\"},className:\"framer-k8t0x4\",\"data-framer-name\":\"image 7\",layoutDependency:layoutDependency,layoutId:\"ETfpxL8Fi\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"To do\"})}),className:\"framer-wftr78\",\"data-framer-name\":\"To do\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"MKOeMbAp_\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3q1yu\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"WD26IALTG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8GaDqAaekbaT3si4EOHyA9jveW0.png\"},className:\"framer-rpacz1\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"GcUMkLLqX\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Jira board\"})}),className:\"framer-138zkjt\",\"data-framer-name\":\"Jira board\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"uF2eWozaO\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15n7hjr\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"OKOmZ54Qt\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.99805 2.08008V4.00007\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.04395 3.04102H3.96394\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fuqy8v\",\"data-framer-name\":\"Frame 81\",layoutDependency:layoutDependency,layoutId:\"E70FwXAzo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qciapd\",\"data-framer-name\":\"Frame 86\",layoutDependency:layoutDependency,layoutId:\"PYk_d3xU3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-ka0sa\",\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"sKcEFo7s5\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tgzwjf\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"oD_RtRYF4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o7w8h2\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"uXkQTaGxM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-12t942x\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"AJ3etVdNM\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:55\"})}),className:\"framer-1cpwt3\",\"data-framer-name\":\"11:55\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"vqTZ7_TPK\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bzevgf\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"q7tkD69b0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9x4c4o\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DY9Puke8C\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x8tj0z\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"k5z478coQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18qvmz5\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"LWIbBNDFV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ekk36\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"CpLu4r8XW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tanl0r\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DeMGu5eMM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z9euya\",\"data-framer-name\":\"Frame 84\",layoutDependency:layoutDependency,layoutId:\"TsYpf7fMI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-szf1m3\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"LEefT2PE1\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gmvpu9\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"tTOykrqhu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ofn152\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"v4ca48OuO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Ace Jackson\"})}),className:\"framer-idmiv9\",\"data-framer-name\":\"Ace Jackson\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"ljPQPIZnQ\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:56\"})}),className:\"framer-vnzdhy\",\"data-framer-name\":\"11:56\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"D6mqTeVHt\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ybjfwc\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"t_Z_6XIZv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p02gbo\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"O2zjM5hnV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fm1ywa\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"V3m6sSGWS\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aypl9x\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"otXCnrdqa\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emlyv6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Dg1EbIFIx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hsl49u\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"YaS80Pe39\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13a32p4\",\"data-framer-name\":\"Frame 85\",layoutDependency:layoutDependency,layoutId:\"xhHJQxeTo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fWXUvu7nJBhGWelcyHPpgt9I5E.png\"},className:\"framer-1esjdvf\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"MHpcx8966\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hah5pp\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"E6D9iNX4c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mlyfsa\",\"data-framer-name\":\"Frame 89\",layoutDependency:layoutDependency,layoutId:\"xz3TVpr_6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xayt2r\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"K8q42qa8a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Google Calendar\"})}),className:\"framer-127o827\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"l2oCy_aZS\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f5g7ew\",\"data-framer-name\":\"Frame 88\",layoutDependency:layoutDependency,layoutId:\"Pjigj7Qj9\",style:{backgroundColor:\"rgb(223, 223, 223)\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"2.88px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"APP\"})}),className:\"framer-bl6gxe\",\"data-framer-name\":\"APP\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"hSIGBH9xv\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:45\"})}),className:\"framer-1w9fi6l\",\"data-framer-name\":\"12:45\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"JR36JWW0S\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lvpx2e\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"yOFVW7HeI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4d62p\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"CAHnxN4sw\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c2avl1\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"SFPK_dP8D\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f2o362\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"haoDojiXo\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-189eufs\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"kRhI7BLjg\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dshedt\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ONCUd0frt\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tu1tiz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DYvqsKH_O\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lpq6w4\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"vWSOOlF1o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yshij3\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"UkuKKaGxY\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9my3q8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"xCf_aFyLu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hnixys\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"rlgDJ8kbe\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3ey3a\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"co9_la0XX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-49xeur\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"OmJAst1p6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6h1c39\",\"data-framer-name\":\"Rectangle 27\",layoutDependency:layoutDependency,layoutId:\"w_epJW09g\",style:{backgroundColor:\"rgb(32, 157, 212)\",borderBottomLeftRadius:3.2,borderBottomRightRadius:3.2,borderTopLeftRadius:3.2,borderTopRightRadius:3.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33zfla\",\"data-framer-name\":\"Frame 92\",layoutDependency:layoutDependency,layoutId:\"ZJ9nGPa2Z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o1skkv\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Hkb2Nq3qU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15eaac\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HWqMT0Mvk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2bjogu\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"PdBTevdBq\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ocvlyh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tKvAnAAs4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e9gws\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"gDbISfsOU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xd6ekz\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"lh7YkN7B2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nux3g\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"sv0ShrPUr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10srr6w\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"F3Xjvscq3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u0bom3\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HUoeRvMnn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16x5zkl\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"JjFCr7P4r\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1et0mor\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"fresnVDJ6\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17dcokr\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"uCU0eIe2_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a6225z\",\"data-framer-name\":\"Frame 87\",layoutDependency:layoutDependency,layoutId:\"QMGfpGplt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-l6k03r\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"OBlKUC1EA\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bhdo2r\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"njS_HnHz9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y5ae5i\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"ffBja9djO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-19qq9ga\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"dY6Bg7w6b\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:58\"})}),className:\"framer-8i1x4r\",\"data-framer-name\":\"12:58\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"vh7FIWX4p\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18z1ie3\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"ucC8LS7Vi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8by4kq\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"sqqJNOueE\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ikreoy\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Q62ehuya_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4om665\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HhghJAIKB\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dqll1o\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"n_YmmxnHy\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-191g9am\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"QNo9cMiac\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ohjn11\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Lr7BZiRzB\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ilrri\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"N_21Sk4R3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o0q414\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"he48OF58I\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdgxw2\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"CHhyx37Si\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-px3qrm\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DNCKmNA0S\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-45zh9e\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"b8sdploDZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-85fehg\",\"data-framer-name\":\"Frame 80\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:230,layoutDependency:layoutDependency,layoutId:\"KsflypU9f\",svg:'<svg width=\"230\" height=\"36\" viewBox=\"0 0 230 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9882)\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n<rect x=\"9.83984\" y=\"9.30176\" width=\"0.32\" height=\"6.4\" fill=\"#4C4C4C\"/>\\n<g clip-path=\"url(#clip1_196_9882)\">\\n<rect x=\"10.1592\" y=\"10.7241\" width=\"15.7778\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"26.8262\" y=\"10.7241\" width=\"13.5556\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"41.2705\" y=\"10.7241\" width=\"6.44445\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n</g>\\n<mask id=\"path-7-inside-1_196_9882\" fill=\"white\">\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\"/>\\n</mask>\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M6.63965 18.902H224.24V18.262H6.63965V18.902Z\" fill=\"black\" fill-opacity=\"0.15\" mask=\"url(#path-7-inside-1_196_9882)\"/>\\n<g clip-path=\"url(#clip2_196_9882)\">\\n<path d=\"M12.0249 21.6221V23.4887H13.6249L11.4916 26.4221V24.5554H9.8916L12.0249 21.6221Z\" stroke=\"#5F5F5F\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<rect x=\"16.5596\" y=\"20.502\" width=\"0.32\" height=\"7.04\" fill=\"#D9D9D9\"/>\\n<g clip-path=\"url(#clip3_196_9882)\">\\n<path d=\"M22.667 22.7139H23.787C23.9603 22.7139 24.1264 22.7827 24.249 22.9052C24.3715 23.0277 24.4403 23.1939 24.4403 23.3672C24.4403 23.5405 24.3715 23.7067 24.249 23.8292C24.1264 23.9517 23.9603 24.0205 23.787 24.0205H22.667V22.7139Z\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M23.787 24.02H23.9737C24.1469 24.02 24.3131 24.0889 24.4356 24.2114C24.5582 24.3339 24.627 24.5001 24.627 24.6734C24.627 24.8466 24.5582 25.0128 24.4356 25.1353C24.3131 25.2579 24.1469 25.3267 23.9737 25.3267H22.667V24.02\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip4_196_9882)\">\\n<path d=\"M32.3721 22.7158H33.4921\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.627 25.3286H32.747\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M32.9332 22.7148L32.1865 25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip5_196_9882)\">\\n<path d=\"M40.2119 24.0205H42.8252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.2683 22.9941C42.226 22.9119 42.129 22.8394 41.9933 22.7885C41.8575 22.7376 41.6912 22.7114 41.5216 22.7141H41.335C41.1617 22.7141 40.9955 22.7829 40.873 22.9054C40.7505 23.0279 40.6816 23.1941 40.6816 23.3674C40.6816 23.5407 40.7505 23.7068 40.873 23.8294C40.9955 23.9519 41.1617 24.0207 41.335 24.0207H41.7083C41.8816 24.0207 42.0478 24.0896 42.1703 24.2121C42.2928 24.3346 42.3616 24.5008 42.3616 24.6741C42.3616 24.8473 42.2928 25.0135 42.1703 25.136C42.0478 25.2586 41.8816 25.3274 41.7083 25.3274H41.4283C41.2587 25.3301 41.0924 25.3038 40.9567 25.2529C40.821 25.202 40.724 25.1295 40.6816 25.0474\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip6_196_9882)\">\\n<path d=\"M49.5474 23.2759L48.8008 24.0225L49.5474 24.7692\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M51.415 23.2749L52.1617 24.0216L51.415 24.7682\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M50.856 22.5288L50.1094 25.5155\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip7_196_9882)\">\\n<path d=\"M59.0654 24.3948C59.1263 24.4569 59.1989 24.5062 59.279 24.5399C59.3591 24.5735 59.4452 24.5909 59.5321 24.5909C59.619 24.5909 59.7051 24.5735 59.7852 24.5399C59.8653 24.5062 59.9379 24.4569 59.9988 24.3948L60.7454 23.6481C60.8692 23.5243 60.9387 23.3565 60.9387 23.1815C60.9387 23.0064 60.8692 22.8386 60.7454 22.7148C60.6217 22.591 60.4538 22.5215 60.2788 22.5215C60.1037 22.5215 59.9359 22.591 59.8121 22.7148L59.7188 22.8081\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.8098 23.6482C59.749 23.5862 59.6764 23.5368 59.5963 23.5032C59.5161 23.4695 59.4301 23.4521 59.3432 23.4521C59.2562 23.4521 59.1702 23.4695 59.0901 23.5032C59.0099 23.5368 58.9373 23.5862 58.8765 23.6482L58.1298 24.3949C58.0061 24.5187 57.9365 24.6865 57.9365 24.8616C57.9365 25.0366 58.0061 25.2045 58.1298 25.3282C58.2536 25.452 58.4215 25.5215 58.5965 25.5215C58.7715 25.5215 58.9394 25.452 59.0632 25.3282L59.1565 25.2349\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip8_196_9882)\">\\n<path d=\"M68.2109 22.9028H69.8909\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.2139 24.022H69.8939\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.3984 25.1416H69.8918\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.9072 24.7674C66.9072 24.6684 66.9466 24.5734 67.0166 24.5034C67.0866 24.4334 67.1815 24.394 67.2806 24.394C67.3796 24.394 67.4745 24.4334 67.5445 24.5034C67.6146 24.5734 67.6539 24.6684 67.6539 24.7674C67.6539 24.8777 67.5606 24.954 67.4672 25.0474L66.9072 25.514H67.6539\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M67.2815 23.6478V22.5278L66.9082 22.9012\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip9_196_9882)\">\\n<path d=\"M76.8018 22.9009H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 24.022H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 25.1421H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 22.9028V22.9055\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 24.0225V24.0252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0527 25.1426V25.1453\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip10_196_9882)\">\\n<path d=\"M85.7607 22.9014H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7607 24.022H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7617 25.1416H87.8151\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0137 22.9019V25.1437\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip11_196_9882)\">\\n<path d=\"M95.6523 22.3418V23.0885C95.6523 23.138 95.672 23.1855 95.707 23.2205C95.742 23.2555 95.7895 23.2751 95.839 23.2751H96.5857\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.2136 25.7023H94.347C94.248 25.7023 94.153 25.663 94.083 25.5929C94.013 25.5229 93.9736 25.428 93.9736 25.329V22.7156C93.9736 22.6166 94.013 22.5216 94.083 22.4516C94.153 22.3816 94.248 22.3423 94.347 22.3423H95.6536L96.587 23.2756V25.329C96.587 25.428 96.5476 25.5229 96.4776 25.5929C96.4076 25.663 96.3126 25.7023 96.2136 25.7023Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.9064 24.208L94.7197 24.5813L94.9064 24.9547\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.6523 24.2075L95.839 24.5809L95.6523 24.9542\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip12_196_9882)\">\\n<path d=\"M190.693 24.6758C190.693 24.8491 190.762 25.0152 190.885 25.1378C191.007 25.2603 191.173 25.3291 191.347 25.3291C191.52 25.3291 191.686 25.2603 191.809 25.1378C191.931 25.0152 192 24.8491 192 24.6758C192 24.5025 191.931 24.3363 191.809 24.2138C191.686 24.0913 191.52 24.0225 191.347 24.0225C191.173 24.0225 191.007 24.0913 190.885 24.2138C190.762 24.3363 190.693 24.5025 190.693 24.6758Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 25.3282V23.3682C188.643 23.1949 188.711 23.0287 188.834 22.9062C188.956 22.7837 189.123 22.7148 189.296 22.7148C189.469 22.7148 189.635 22.7837 189.758 22.9062C189.88 23.0287 189.949 23.1949 189.949 23.3682V25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 24.208H189.949\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.001 24.022V25.3286\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip13_196_9882)\">\\n<path d=\"M198.535 24.0211C198.535 24.2191 198.614 24.409 198.754 24.5491C198.894 24.6891 199.084 24.7677 199.282 24.7677C199.48 24.7677 199.67 24.6891 199.81 24.5491C199.95 24.409 200.028 24.2191 200.028 24.0211C200.028 23.8231 199.95 23.6331 199.81 23.4931C199.67 23.3531 199.48 23.2744 199.282 23.2744C199.084 23.2744 198.894 23.3531 198.754 23.4931C198.614 23.6331 198.535 23.8231 198.535 24.0211Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.027 24.0205V24.3005C200.027 24.4243 200.076 24.543 200.164 24.6305C200.251 24.718 200.37 24.7672 200.494 24.7672C200.618 24.7672 200.736 24.718 200.824 24.6305C200.911 24.543 200.961 24.4243 200.961 24.3005V24.0205C200.961 23.6595 200.845 23.308 200.63 23.018C200.415 22.728 200.113 22.5149 199.767 22.4104C199.422 22.3058 199.052 22.3154 198.712 22.4376C198.372 22.5598 198.081 22.7881 197.881 23.0888C197.681 23.3895 197.584 23.7466 197.603 24.1071C197.622 24.4675 197.757 24.8123 197.987 25.0903C198.217 25.3682 198.531 25.5646 198.882 25.6503C199.232 25.7361 199.601 25.7065 199.934 25.5661\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip14_196_9882)\">\\n<path d=\"M206.561 24.0213C206.561 24.2419 206.604 24.4604 206.688 24.6642C206.773 24.868 206.897 25.0532 207.053 25.2092C207.209 25.3653 207.394 25.489 207.598 25.5734C207.801 25.6579 208.02 25.7013 208.241 25.7013C208.461 25.7013 208.68 25.6579 208.883 25.5734C209.087 25.489 209.272 25.3653 209.428 25.2092C209.584 25.0532 209.708 24.868 209.793 24.6642C209.877 24.4604 209.921 24.2419 209.921 24.0213C209.921 23.8007 209.877 23.5822 209.793 23.3784C209.708 23.1746 209.584 22.9894 209.428 22.8334C209.272 22.6774 209.087 22.5536 208.883 22.4692C208.68 22.3848 208.461 22.3413 208.241 22.3413C208.02 22.3413 207.801 22.3848 207.598 22.4692C207.394 22.5536 207.209 22.6774 207.053 22.8334C206.897 22.9894 206.773 23.1746 206.688 23.3784C206.604 23.5822 206.561 23.8007 206.561 24.0213Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.679 23.6475H207.681\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M208.799 23.6484H208.802\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.775 24.5815C207.836 24.6436 207.909 24.693 207.989 24.7266C208.069 24.7603 208.155 24.7776 208.242 24.7776C208.329 24.7776 208.415 24.7603 208.495 24.7266C208.575 24.693 208.648 24.6436 208.709 24.5815\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip15_196_9882)\">\\n<path d=\"M217.763 23.0893L216.55 24.3027C216.475 24.3769 216.434 24.4776 216.434 24.5827C216.434 24.6877 216.475 24.7884 216.55 24.8627C216.624 24.9369 216.725 24.9786 216.83 24.9786C216.935 24.9786 217.035 24.9369 217.11 24.8627L218.323 23.6493C218.471 23.5008 218.555 23.2994 218.555 23.0893C218.555 22.8793 218.471 22.6778 218.323 22.5293C218.174 22.3808 217.973 22.2974 217.763 22.2974C217.553 22.2974 217.351 22.3808 217.203 22.5293L215.99 23.7427C215.767 23.9654 215.642 24.2676 215.642 24.5827C215.642 24.8977 215.767 25.1999 215.99 25.4227C216.212 25.6454 216.514 25.7706 216.83 25.7706C217.145 25.7706 217.447 25.6454 217.67 25.4227L218.883 24.2093\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<rect x=\"6.47965\" y=\"6.26187\" width=\"217.92\" height=\"23.36\" rx=\"1.44\" stroke=\"#555555\" stroke-width=\"0.32\"/>\\n<defs>\\n<clipPath id=\"clip0_196_9882\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_196_9882\">\\n<rect width=\"37.5556\" height=\"3.55556\" fill=\"white\" transform=\"translate(10.1592 10.7241)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_196_9882\">\\n<rect width=\"6.40001\" height=\"6.4\" fill=\"white\" transform=\"translate(8.55957 20.8218)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(21.3594 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(30.3193 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(39.2793 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(48.2393 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(57.1992 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(66.1592 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(75.1191 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(84.0801 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(93.04 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(188.08 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(197.04 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(206 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip15_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(214.96 21.7822)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1reiahr\",\"data-border\":true,\"data-framer-name\":\"Frame 427322483\",layoutDependency:layoutDependency,layoutId:\"sLNHj4Brl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sgiywi\",\"data-framer-name\":\"Frame 427322468\",layoutDependency:layoutDependency,layoutId:\"wasLEnLm5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-172ki6r-container\",layoutDependency:layoutDependency,layoutId:\"xv9hPbuNn-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"xv9hPbuNn\",layoutId:\"xv9hPbuNn\",style:{height:\"100%\",width:\"100%\"},variant:\"IEZpDik_S\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(31, 31, 31))\"},children:\"Business Analyst\"})]}),className:\"framer-1lcrdn9\",\"data-framer-name\":\"Ahmed Taleb Business Analyst\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"zM7XcIiAs\",style:{\"--extracted-2gxw0f\":\"rgb(31, 31, 31)\",\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"How to communicate with Ahmed:\"})}),className:\"framer-19yphs\",\"data-framer-name\":\"How to communicate with Ahmed:\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"HXSpaOP5V\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m26i6g\",\"data-framer-name\":\"Frame 427322467\",layoutDependency:layoutDependency,layoutId:\"gbY5RmkRQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t5ewb4\",\"data-framer-name\":\"Frame 427322464\",layoutDependency:layoutDependency,layoutId:\"TDcAS_qBJ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-156lnjh\",\"data-framer-name\":\"Toggle / Status Complete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"wzlxFE_Fi\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.7283C4.63893 13.7283 2.12988 11.2192 2.12988 8.12414C2.12988 5.02907 4.63893 2.52002 7.73401 2.52002C10.8291 2.52002 13.3381 5.02907 13.3381 8.12414C13.3381 11.2192 10.8291 13.7283 7.73401 13.7283Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.25592C10.0433 6.07355 9.74758 6.07355 9.5652 6.25592L7.11225 8.70887L5.90466 7.50129C5.72228 7.31891 5.42658 7.31891 5.24421 7.50129C5.06183 7.68366 5.06183 7.97936 5.24421 8.16174L7.11225 10.0298L10.2256 6.91638C10.408 6.734 10.408 6.4383 10.2256 6.25592Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Don\u2019t interrupt Ahmed\"})}),className:\"framer-19jbcql\",\"data-framer-name\":\"Don\u2019t interrupt Ace\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"DYt993Y_0\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13dmtgb\",\"data-framer-name\":\"Frame 427322465\",layoutDependency:layoutDependency,layoutId:\"zmMY9yDF_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q3zzjl\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"abfVh6T4M\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73498 13.4084C4.63991 13.4084 2.13086 10.8994 2.13086 7.80432C2.13086 4.70925 4.63991 2.2002 7.73498 2.2002C10.8301 2.2002 13.3391 4.70925 13.3391 7.80432C13.3391 10.8994 10.8301 13.4084 7.73498 13.4084Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 5.9361C10.0433 5.75372 9.74758 5.75372 9.5652 5.9361L7.11225 8.38905L5.90466 7.18146C5.72228 6.99908 5.42658 6.99908 5.24421 7.18146C5.06183 7.36384 5.06183 7.65953 5.24421 7.84191L7.11225 9.70996L10.2256 6.59655C10.408 6.41417 10.408 6.11848 10.2256 5.9361Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Provide a high-level summary before going into details.\"})}),className:\"framer-1pp42xd\",\"data-framer-name\":\"Provide a high-level summary before going into details.\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"S8HEZEASe\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eel6y9\",\"data-framer-name\":\"Frame 427322466\",layoutDependency:layoutDependency,layoutId:\"YXC2FvdCR\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tviwi5\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"cNpt8YXFs\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.6165C4.63893 13.6165 2.12988 11.1074 2.12988 8.01233C2.12988 4.91725 4.63893 2.4082 7.73401 2.4082C10.8291 2.4082 13.3381 4.91725 13.3381 8.01233C13.3381 11.1074 10.8291 13.6165 7.73401 13.6165Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.1446C10.0433 5.96222 9.74758 5.96222 9.5652 6.1446L7.11225 8.59755L5.90466 7.38996C5.72228 7.20758 5.42658 7.20758 5.24421 7.38996C5.06183 7.57234 5.06183 7.86803 5.24421 8.05041L7.11225 9.91845L10.2256 6.80505C10.408 6.62267 10.408 6.32698 10.2256 6.1446Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Give Ahmed time to answer questions\"})}),className:\"framer-7pino7\",\"data-framer-name\":\"Give Ace time to answer questions\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"y5nyWUcNi\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-qw6ofc\",\"data-framer-appear-id\":\"qw6ofc\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"DrUeEQft1\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Elevate your Slack game\"})}),className:\"framer-111n6wv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bHlOpgYm0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"By integrating SurePeople with Slack, you can transform your team's workflow, foster more effective communication, and take collaboration to new heights.\"})}),className:\"framer-1kip73g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UjBW4WlcV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d0hlfo\",\"data-framer-name\":\"Web app Russ\",layoutDependency:layoutDependency,layoutId:\"cvszt0g_1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-177cqap-container\",layoutDependency:layoutDependency,layoutId:\"XWZECl857-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"XWZECl857\",layoutId:\"XWZECl857\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Web App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z32ggl\",layoutDependency:layoutDependency,layoutId:\"zBxyDC4in\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:497,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-604dpl-container\",layoutDependency:layoutDependency,layoutId:\"p1S4FwzAG-container\",children:/*#__PURE__*/_jsx(WebApp,{height:\"100%\",id:\"p1S4FwzAG\",layoutId:\"p1S4FwzAG\",variant:\"IKANp8B5C\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1j0wmfq\",\"data-framer-appear-id\":\"1j0wmfq\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"iK33Jllzx\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Real-time web-based collaboration at it's best\"})}),className:\"framer-1gclbmo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E61n1DuSF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Our cutting-edge technology offers a user-friendly, web-based platform that streamlines teamwork and boosts productivity through a turnkey interface.\"})}),className:\"framer-180epnk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yDT5N1UMG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fyxrsv\",layoutDependency:layoutDependency,layoutId:\"PKs0JZOaC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggx4si-container\",layoutDependency:layoutDependency,layoutId:\"a_9nzcNM3-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:13,arrowPadding:20,arrowPaddingBottom:41,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:32,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.6,effectsPerspective:900,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"a_9nzcNM3\",intervalControl:4,itemAmount:1,layoutId:\"a_9nzcNM3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:-52,dotSize:4,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sz1ph3\",\"data-framer-name\":\"Slack Mobile\",layoutDependency:layoutDependency,layoutId:\"PLDP3NKDb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xtnate-container\",layoutDependency:layoutDependency,layoutId:\"FuSxJ4arg-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"FuSxJ4arg\",layoutId:\"FuSxJ4arg\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Slack Integration\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8gsf7b\",layoutDependency:layoutDependency,layoutId:\"Hr_GneKhP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wa6d40\",\"data-framer-name\":\"Slack\",layoutDependency:layoutDependency,layoutId:\"mYhcvqGb3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4gd5cl\",\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"AIntSAcT9\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3.56,borderBottomRightRadius:3.56,borderTopLeftRadius:3.56,borderTopRightRadius:3.56},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t70rri\",\"data-border\":true,\"data-framer-name\":\"Frame 40\",layoutDependency:layoutDependency,layoutId:\"vg0h4Be2z\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(44, 9, 41)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ap6svg\",\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"f0ShpGW0n\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1tfp5\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"aZFhCaeAm\",style:{backgroundColor:\"rgb(237, 106, 94)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ommvzv\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"hDO0xuQBW\",style:{backgroundColor:\"rgb(244, 189, 79)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stuan0\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"qwpANh6_I\",style:{backgroundColor:\"rgb(97, 195, 84)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjkhte\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"RdJx6wK5O\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rg8j7y\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"cOxPXuPUm\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9600)\">\\n<path d=\"M2.42578 4.08154H6.53245\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08154L4.18578 5.84154\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.42578 4.08031L4.18578 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9600\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17fevmf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"S5PEaufo1\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" clip-path=\"url(#clip0_196_9605)\">\\n<path d=\"M6.37598 4.08105H2.26931\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08105L4.61597 5.84106\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.37598 4.08031L4.61597 2.32031\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9605\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"matrix(-1 0 0 1 7.83984 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sulkda\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"vtKxNjiEM\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9610)\">\\n<path d=\"M1.51953 4.08043C1.51953 4.42712 1.58782 4.77042 1.72049 5.09071C1.85316 5.41101 2.04762 5.70205 2.29277 5.94719C2.53792 6.19234 2.82895 6.3868 3.14925 6.51947C3.46955 6.65215 3.81284 6.72043 4.15953 6.72043C4.50622 6.72043 4.84952 6.65215 5.16982 6.51947C5.49012 6.3868 5.78115 6.19234 6.02629 5.94719C6.27144 5.70205 6.4659 5.41101 6.59857 5.09071C6.73125 4.77042 6.79953 4.42712 6.79953 4.08043C6.79953 3.73374 6.73125 3.39045 6.59857 3.07015C6.4659 2.74985 6.27144 2.45881 6.02629 2.21367C5.78115 1.96852 5.49012 1.77406 5.16982 1.64139C4.84952 1.50872 4.50622 1.44043 4.15953 1.44043C3.81284 1.44043 3.46955 1.50872 3.14925 1.64139C2.82895 1.77406 2.53792 1.96852 2.29277 2.21367C2.04762 2.45881 1.85316 2.74985 1.72049 3.07015C1.58782 3.39045 1.51953 3.73374 1.51953 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 4.08105H5.18585\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.15918 2.61572V4.08239\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9610\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.639648 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15f3bn2\",\"data-border\":true,\"data-framer-name\":\"Frame 37\",layoutDependency:layoutDependency,layoutId:\"o3yQRbmyZ\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(90, 60, 90)\",borderBottomLeftRadius:1.6,borderBottomRightRadius:1.6,borderTopLeftRadius:1.6,borderTopRightRadius:1.6},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4do12\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"KaMC9q9dP\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9616)\">\\n<path d=\"M0.800781 2.65349C0.800781 2.8496 0.839408 3.04379 0.914455 3.22496C0.989502 3.40614 1.0995 3.57077 1.23817 3.70944C1.37684 3.84811 1.54146 3.9581 1.72264 4.03315C1.90382 4.1082 2.09801 4.14682 2.29412 4.14682C2.49022 4.14682 2.68441 4.1082 2.86559 4.03315C3.04677 3.9581 3.21139 3.84811 3.35006 3.70944C3.48873 3.57077 3.59873 3.40614 3.67378 3.22496C3.74883 3.04379 3.78745 2.8496 3.78745 2.65349C3.78745 2.45738 3.74883 2.2632 3.67378 2.08202C3.59873 1.90084 3.48873 1.73621 3.35006 1.59754C3.21139 1.45887 3.04677 1.34888 2.86559 1.27383C2.68441 1.19878 2.49022 1.16016 2.29412 1.16016C2.09801 1.16016 1.90382 1.19878 1.72264 1.27383C1.54146 1.34888 1.37684 1.45887 1.23817 1.59754C1.0995 1.73621 0.989502 1.90084 0.914455 2.08202C0.839408 2.2632 0.800781 2.45738 0.800781 2.65349Z\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.6384 5.0007L3.3584 3.7207\" stroke=\"white\" stroke-width=\"0.426667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9616\">\\n<rect width=\"5.12001\" height=\"5.12\" fill=\"white\" transform=\"translate(0.15918 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Search A1 Marketing Ltd.\"})}),className:\"framer-1dllx48\",\"data-framer-name\":\"Search A1 Marketing Ltd.\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"pzGWPWn91\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ow1341\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"BrxHroPOq\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9621)\">\\n<path d=\"M1.83887 4.08043C1.83887 4.42712 1.90715 4.77042 2.03983 5.09071C2.1725 5.41101 2.36696 5.70205 2.61211 5.94719C2.85725 6.19234 3.14828 6.3868 3.46858 6.51947C3.78888 6.65215 4.13218 6.72043 4.47887 6.72043C4.82556 6.72043 5.16885 6.65215 5.48915 6.51947C5.80945 6.3868 6.10048 6.19234 6.34563 5.94719C6.59078 5.70205 6.78524 5.41101 6.91791 5.09071C7.05058 4.77042 7.11887 4.42712 7.11887 4.08043C7.11887 3.73374 7.05058 3.39045 6.91791 3.07015C6.78524 2.74985 6.59078 2.45881 6.34563 2.21367C6.10048 1.96852 5.80945 1.77406 5.48915 1.64139C5.16885 1.50872 4.82556 1.44043 4.47887 1.44043C4.13218 1.44043 3.78888 1.50872 3.46858 1.64139C3.14828 1.77406 2.85725 1.96852 2.61211 2.21367C2.36696 2.45881 2.1725 2.74985 2.03983 3.07015C1.90715 3.39045 1.83887 3.73374 1.83887 4.08043Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.4834 5.54785V5.55211\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.48315 4.52147C4.47775 4.42624 4.50344 4.33184 4.55634 4.25249C4.60925 4.17313 4.68651 4.11311 4.77649 4.08147C4.88674 4.03931 4.98571 3.97212 5.06559 3.88521C5.14547 3.79831 5.20408 3.69404 5.23682 3.58063C5.26956 3.46721 5.27552 3.34775 5.25425 3.23164C5.23297 3.11553 5.18503 3.00595 5.1142 2.91151C5.04338 2.81708 4.9516 2.74037 4.84609 2.68744C4.74058 2.6345 4.62423 2.60678 4.50619 2.60645C4.38814 2.60612 4.27164 2.6332 4.16584 2.68555C4.06004 2.7379 3.96783 2.81409 3.89648 2.90813\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9621\">\\n<rect width=\"7.04001\" height=\"7.04\" fill=\"white\" transform=\"translate(0.959961 0.560059)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-atraaz\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"PCl6pu4ZS\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-tec9ka\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"W6L4YJBzu\",style:{\"--border-bottom-width\":\"0.8888891935348511px\",\"--border-color\":\"rgb(0, 163, 255)\",\"--border-left-width\":\"0.8888891935348511px\",\"--border-right-width\":\"0.8888891935348511px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888891935348511px\",borderBottomLeftRadius:33.53,borderBottomRightRadius:33.53,borderTopLeftRadius:33.53,borderTopRightRadius:33.53}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fyerk6\",\"data-border\":true,\"data-framer-name\":\"Ellipse 29\",layoutDependency:layoutDependency,layoutId:\"HHfPQU6by\",style:{\"--border-bottom-width\":\"0.6400004029273987px\",\"--border-color\":\"rgb(44, 9, 43)\",\"--border-left-width\":\"0.6400004029273987px\",\"--border-right-width\":\"0.6400004029273987px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6400004029273987px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-848rha\",\"data-framer-name\":\"Frame 45\",layoutDependency:layoutDependency,layoutId:\"zbnUZXDNg\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wyxdo\",\"data-framer-name\":\"Frame 43\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:207,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"AZuLz40X9\",svg:'<svg width=\"17\" height=\"207\" viewBox=\"0 0 17 207\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_196_9630\" fill=\"white\">\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\"/>\\n</mask>\\n<path d=\"M0 0.160156H16.64V206.222H0V0.160156Z\" fill=\"#3E103F\"/>\\n<path d=\"M16.32 0.160156V206.222H16.96V0.160156H16.32Z\" fill=\"white\" fill-opacity=\"0.15\" mask=\"url(#path-1-inside-1_196_9630)\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" fill=\"#3E103F\"/>\\n<rect x=\"2.39992\" y=\"3.84035\" width=\"11.84\" height=\"11.84\" rx=\"3.36\" stroke=\"white\" stroke-width=\"0.96\"/>\\n<g clip-path=\"url(#clip0_196_9630)\">\\n<path d=\"M8.32129 25.1729V28.9062\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.45703 27.04H10.1904\" stroke=\"white\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9630\">\\n<rect width=\"6.40001\" height=\"12.16\" fill=\"white\" transform=\"translate(5.12012 18.0801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h28h16\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"qXNuaQcJE\",style:{backgroundColor:\"rgb(63, 15, 63)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1va6w5u\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"P0PFgpQRr\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-kev7cy\",\"data-framer-name\":\"Company\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"M76bjQxwW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7r10l8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"cBL0aP2A9\",svg:'<svg width=\"11\" height=\"11\" viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.160156\" y=\"0.0800781\" width=\"10.24\" height=\"10.24\" rx=\"5.12\" fill=\"white\"/>\\n<path d=\"M3.81164 3.73291H3.51831C3.36271 3.73291 3.21349 3.79472 3.10347 3.90474C2.99345 4.01476 2.93164 4.16398 2.93164 4.31958V6.95958C2.93164 7.11517 2.99345 7.26439 3.10347 7.37441C3.21349 7.48443 3.36271 7.54624 3.51831 7.54624H6.15831C6.3139 7.54624 6.46312 7.48443 6.57315 7.37441C6.68317 7.26439 6.74498 7.11517 6.74498 6.95958V6.66624\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.73999 3.61071C7.85552 3.49519 7.92042 3.3385 7.92042 3.17511C7.92042 3.01173 7.85552 2.85504 7.73999 2.73951C7.62446 2.62399 7.46777 2.55908 7.30439 2.55908C7.14101 2.55908 6.98432 2.62399 6.86879 2.73951L4.40039 5.19911V6.07911H5.28039L7.73999 3.61071Z\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.4541 3.14697L7.3341 4.02697\" stroke=\"black\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ibh0yr\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"vdDOXEFcQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iuu6fw\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"fjH5mneto\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pq9ypi\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"NVp0iJtMl\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9658)\">\\n<path d=\"M5.51855 4.84115L5.20655 3.90515C5.47621 3.50634 5.57376 3.03405 5.48106 2.5761C5.38837 2.11816 5.11174 1.70571 4.70261 1.41546C4.29348 1.1252 3.77969 0.976887 3.25677 0.998089C2.73385 1.01929 2.23739 1.20857 1.85968 1.53073C1.48198 1.85288 1.24874 2.286 1.20333 2.74955C1.15793 3.21309 1.30344 3.67553 1.61282 4.05086C1.9222 4.4262 2.37439 4.6889 2.88532 4.79012C3.39625 4.89134 3.93114 4.82419 4.39055 4.60115L5.51855 4.84115Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.4248 2.48975H4.15281M2.4968 3.49775H3.79281\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9658\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Threads\"})}),className:\"framer-1j9fwmp\",\"data-framer-name\":\"Threads\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"uFhyCQnqM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e6hhz8\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"xje3UzP_I\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1db4ods\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"tgaW8glU6\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9664)\">\\n<path d=\"M2.28156 2.43994C1.55244 2.43994 0.961563 2.92354 0.961563 3.51994C0.961563 3.85522 1.14828 4.15474 1.44156 4.35274V4.83994L1.91292 4.55722C2.03372 4.58575 2.15744 4.60009 2.28156 4.59994C3.01068 4.59994 3.60156 4.11634 3.60156 3.51994C3.60156 2.92354 3.01068 2.43994 2.28156 2.43994Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.55737 3.80801C3.72297 3.85505 3.90057 3.88049 4.08465 3.88049C4.29791 3.88095 4.50977 3.84591 4.71153 3.77681L5.28465 4.12049V3.44825C5.58153 3.18857 5.76465 2.83289 5.76465 2.44049C5.76465 1.64513 5.01249 1.00049 4.08465 1.00049C3.17697 1.00049 2.43753 1.61729 2.40465 2.38889V2.44481\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9664\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"matrix(-1 0 0 1 6.23926 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"All DMs\"})}),className:\"framer-453rss\",\"data-framer-name\":\"All DMs\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"HpIFGnxeM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14rq28r\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"Fj5j4aAj_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-30g6j6\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"xA8q6ynYe\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9670)\">\\n<path d=\"M4.8016 4.12074H3.1216C2.9943 4.12074 2.87221 4.07017 2.78219 3.98015C2.69217 3.89014 2.6416 3.76805 2.6416 3.64074V1.24074C2.6416 1.11344 2.69217 0.991348 2.78219 0.901331C2.87221 0.811313 2.9943 0.760742 3.1216 0.760742H4.0816L5.2816 1.96074V3.64074C5.2816 3.76805 5.23103 3.89014 5.14101 3.98015C5.05099 4.07017 4.92891 4.12074 4.8016 4.12074Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 2.28076H4.38733\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.68066 1.45459V2.28126\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31871 4.11973V4.59973C4.31871 4.72703 4.26814 4.84912 4.17812 4.93914C4.0881 5.02915 3.96601 5.07973 3.83871 5.07973H2.15871C2.03141 5.07973 1.90932 5.02915 1.8193 4.93914C1.72928 4.84912 1.67871 4.72703 1.67871 4.59973V2.19973C1.67871 2.07242 1.72928 1.95033 1.8193 1.86032C1.90932 1.7703 2.03141 1.71973 2.15871 1.71973H2.63871\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9670\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Drafts\"})}),className:\"framer-gqugq2\",\"data-framer-name\":\"Drafts\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"xqL0hVV4u\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1alqe3l\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"NJzh3Qzv1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jlvwe1\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"Y3Yz52Ou3\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9678)\">\\n<path d=\"M2.39941 2.92045C2.39941 3.17506 2.50056 3.41924 2.68059 3.59927C2.86063 3.77931 3.10481 3.88045 3.35941 3.88045C3.61402 3.88045 3.8582 3.77931 4.03824 3.59927C4.21827 3.41924 4.31942 3.17506 4.31942 2.92045C4.31942 2.66584 4.21827 2.42166 4.03824 2.24163C3.8582 2.06159 3.61402 1.96045 3.35941 1.96045C3.10481 1.96045 2.86063 2.06159 2.68059 2.24163C2.50056 2.42166 2.39941 2.66584 2.39941 2.92045Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.31825 2.91912V3.27912C4.31825 3.43825 4.38146 3.59087 4.49398 3.70339C4.6065 3.81591 4.75912 3.87912 4.91825 3.87912C5.07738 3.87912 5.22999 3.81591 5.34251 3.70339C5.45503 3.59087 5.51825 3.43825 5.51825 3.27912V2.91912C5.51884 2.45499 5.36992 2.00301 5.09354 1.63013C4.81716 1.25725 4.42803 0.98332 3.98378 0.848907C3.53953 0.714495 3.0638 0.726753 2.62707 0.883866C2.19033 1.04098 1.81582 1.33459 1.55901 1.72121C1.3022 2.10782 1.17676 2.56687 1.20125 3.03036C1.22575 3.49385 1.3989 3.93712 1.69503 4.29451C1.99117 4.6519 2.39455 4.90439 2.84541 5.01459C3.29628 5.12478 3.77064 5.08682 4.19825 4.90633\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9678\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mnetions & reactions\"})}),className:\"framer-x9zjw2\",\"data-framer-name\":\"Mnetions & reactions\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Px5CesOQ9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ofs6uw\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"KyWT99SUP\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l6pvd3\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"k81IuGxYW\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9684)\">\\n<path d=\"M2.64016 0.999512H4.08016C4.20746 0.999512 4.32955 1.05008 4.41957 1.1401C4.50959 1.23012 4.56016 1.35221 4.56016 1.47951V4.83951L3.36016 4.11951L2.16016 4.83951V1.47951C2.16016 1.35221 2.21073 1.23012 2.30075 1.1401C2.39076 1.05008 2.51285 0.999512 2.64016 0.999512Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9684\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Saved items\"})}),className:\"framer-onswtg\",\"data-framer-name\":\"Saved items\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"c4yRDIfn0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pwqswc\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"amaiQZiBH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xz0vty\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"dlVH_wfm1\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.7\" clip-path=\"url(#clip0_196_9689)\">\\n<path d=\"M3.12012 2.92066C3.12012 2.98432 3.1454 3.04536 3.19041 3.09037C3.23542 3.13538 3.29647 3.16066 3.36012 3.16066C3.42377 3.16066 3.48481 3.13538 3.52982 3.09037C3.57483 3.04536 3.60012 2.98432 3.60012 2.92066C3.60012 2.85701 3.57483 2.79597 3.52982 2.75096C3.48481 2.70595 3.42377 2.68066 3.36012 2.68066C3.29647 2.68066 3.23542 2.70595 3.19041 2.75096C3.1454 2.79597 3.12012 2.85701 3.12012 2.92066Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 4.59938C3.12109 4.66303 3.14638 4.72407 3.19139 4.76908C3.2364 4.81409 3.29744 4.83938 3.36109 4.83938C3.42475 4.83938 3.48579 4.81409 3.5308 4.76908C3.57581 4.72407 3.60109 4.66303 3.60109 4.59938C3.60109 4.53572 3.57581 4.47468 3.5308 4.42967C3.48579 4.38466 3.42475 4.35938 3.36109 4.35938C3.29744 4.35938 3.2364 4.38466 3.19139 4.42967C3.14638 4.47468 3.12109 4.53572 3.12109 4.59938Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.12109 1.24C3.12109 1.30365 3.14638 1.3647 3.19139 1.40971C3.2364 1.45471 3.29744 1.48 3.36109 1.48C3.42475 1.48 3.48579 1.45471 3.5308 1.40971C3.57581 1.3647 3.60109 1.30365 3.60109 1.24C3.60109 1.17635 3.57581 1.1153 3.5308 1.07029C3.48579 1.02529 3.42475 1 3.36109 1C3.29744 1 3.2364 1.02529 3.19139 1.07029C3.14638 1.1153 3.12109 1.17635 3.12109 1.24Z\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9689\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.0400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"More\"})}),className:\"framer-11g8qyj\",\"data-framer-name\":\"More\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"NTlit6jG2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ppdiw\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"UqQmRspvL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d5m9rx\",\"data-framer-name\":\"Frame 47\",layoutDependency:layoutDependency,layoutId:\"hyjjXhkUj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u2B50\uFE0F\"})}),className:\"framer-1kc4hk9\",\"data-framer-name\":\"\u2B50\uFE0F\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"paL5JxEdF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Starred\"})}),className:\"framer-rmg8a\",\"data-framer-name\":\"Starred\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Jh3N0jQYu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tfo043\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"aGLLA1CZ0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1adh2gr\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"rT2Dga1z2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-1giq26d\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"RIEHyKbvJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"design-team\"})}),className:\"framer-1840biz\",\"data-framer-name\":\"design-team\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"TL6IdgJUv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2fzp75\",\"data-framer-name\":\"Frame 49\",layoutDependency:layoutDependency,layoutId:\"cYo8L3bxE\",style:{backgroundColor:\"rgb(17, 100, 163)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r82z8s\",\"data-framer-name\":\"Frame 62\",layoutDependency:layoutDependency,layoutId:\"UFmO9uvol\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-3ncbl2\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"SaKWkiIZc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"social-media\"})}),className:\"framer-1c0xk4l\",\"data-framer-name\":\"social-media\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"L2J5VZGgr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iofu48\",\"data-framer-name\":\"Group 11\",layoutDependency:layoutDependency,layoutId:\"ETtkU5mxE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aez5dw\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"uj9DnmbUm\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r76zcp\",\"data-border\":true,\"data-framer-name\":\"Rectangle 19\",layoutDependency:layoutDependency,layoutId:\"g9YPApP3S\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgb(17, 100, 163)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32,rotate:-45}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bl8m10\",\"data-framer-name\":\"Frame 50\",layoutDependency:layoutDependency,layoutId:\"LiQ21akpG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-xh1q48\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"gkPvSuUNs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"team-finance\"})}),className:\"framer-3l1o82\",\"data-framer-name\":\"team-finance\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"UyhKsU75x\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-102ze45\",\"data-framer-name\":\"Frame 51\",layoutDependency:layoutDependency,layoutId:\"BSexLch70\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ii12k\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"eDwOJcElt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-7dnljr\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ySm8awiga\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xkkkn9\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"d4pe_wf46\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Elena Nowak\"})}),className:\"framer-k113f0\",\"data-framer-name\":\"Elena Nowak\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"kEefZN59b\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k4hkh1\",\"data-framer-name\":\"Frame 52\",layoutDependency:layoutDependency,layoutId:\"Vyke51q54\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-195jenz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"DnF_TnwIj\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9719)\">\\n<path d=\"M1.9209 2.91846L3.3609 4.35846L4.8009 2.91846H1.9209Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9719\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.52002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Channels\"})}),className:\"framer-1quhymm\",\"data-framer-name\":\"Channels\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"LY5jDxIim\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4pwsx\",\"data-framer-name\":\"Frame 53\",layoutDependency:layoutDependency,layoutId:\"CXb5eEinP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-l946co\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"clPc7cL59\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"announcements\"})}),className:\"framer-1dssd05\",\"data-framer-name\":\"announcements\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"C1O5HtMxR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dmndp0\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"PFJksJ6YY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"#\"})}),className:\"framer-10ny32e\",\"data-framer-name\":\"#\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"hTnJOwGBI\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"pr\"})}),className:\"framer-rdd36i\",\"data-framer-name\":\"pr\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"P0YL2uejM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zsexch\",\"data-framer-name\":\"Frame 55\",layoutDependency:layoutDependency,layoutId:\"KJLpETq4c\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kw7lkp\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"SPir_VfF8\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.76029C0.679688 1.2301 1.10949 0.800293 1.63969 0.800293H5.47969C6.00989 0.800293 6.43969 1.2301 6.43969 1.76029V5.60029C6.43969 6.13049 6.00988 6.56029 5.47969 6.56029H1.63969C1.10949 6.56029 0.679688 6.13049 0.679688 5.60029V1.76029Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55859 2.72168V4.64167\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 3.68066H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 3.68066H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add channel\"})}),className:\"framer-13ax2a4\",\"data-framer-name\":\"Add channel\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Bfw9f9IIe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4fmckh\",\"data-framer-name\":\"Frame 57\",layoutDependency:layoutDependency,layoutId:\"E63y4PPML\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16029av\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"uSrxK8Guc\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9736)\">\\n<path d=\"M1.91992 3.16016L3.35992 4.60016L4.79992 3.16016H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9736\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492 0.760254)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Direct messages\"})}),className:\"framer-13y00uy\",\"data-framer-name\":\"Direct messages\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Xd_zwqpK4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jysydn\",\"data-framer-name\":\"Frame 56\",layoutDependency:layoutDependency,layoutId:\"HUpV2dIV1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3337jq\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"Les04t4s0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-kl4pbj\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"p0wnvrW14\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17lcfd8\",\"data-border\":true,\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"VPKnH_vhN\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(62, 16, 63)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",backgroundColor:\"rgb(47, 170, 117)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will Rodrigues you\"})}),className:\"framer-hmjdkr\",\"data-framer-name\":\"Will Rodrigues you\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"jI2bU1DZf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10t73g2\",\"data-framer-name\":\"Frame 58\",layoutDependency:layoutDependency,layoutId:\"vjnMj6Q8R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hgcduq\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"uNSOKp1IU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-dfl2o8\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"ZYGHlpbYt\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2khqmz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"HRZzylJ7y\",svg:'<svg width=\"7\" height=\"7\" viewBox=\"-1 -1 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.11926 0.0392968H1.19926C0.536516 0.0392968 -0.000742272 0.576554 -0.000742272 1.2393V3.1593C-0.000742272 3.82204 0.536516 4.3593 1.19926 4.3593H3.11926C3.782 4.3593 4.31926 3.82204 4.31926 3.1593V1.2393C4.31926 0.576556 3.782 0.0392968 3.11926 0.0392968Z\" fill=\"#654766\" stroke=\"#3F0F3F\" stroke-width=\"0.48\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-1jl99ez\",\"data-framer-name\":\"3\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"C1M0vJYl2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bea Rosen, Carter Poplin ...\"})}),className:\"framer-xg39hm\",\"data-framer-name\":\"Bea Rosen, Carter Poplin ...\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"uCcrrbvQq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fth2hv\",\"data-framer-name\":\"Frame 59\",layoutDependency:layoutDependency,layoutId:\"cPeOou4dc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fsjm7g\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"okYSNYdOo\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.679688 1.00004C0.679688 0.469847 1.10949 0.0400391 1.63969 0.0400391H5.47969C6.00989 0.0400391 6.43969 0.469846 6.43969 1.00004V4.84004C6.43969 5.37023 6.00988 5.80004 5.47969 5.80004H1.63969C1.10949 5.80004 0.679688 5.37023 0.679688 4.84004V1.00004Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M3.55762 1.96045V3.88044\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.60254 2.92041H4.52253Z\" fill=\"white\" fill-opacity=\"0.1\"/>\\n<path d=\"M2.60254 2.92041H4.52253\" stroke=\"white\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Add teammates\"})}),className:\"framer-1vgiftz\",\"data-framer-name\":\"Add teammates\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"BzztojlV4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v0820s\",\"data-framer-name\":\"Frame 60\",layoutDependency:layoutDependency,layoutId:\"mD75yXaNi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bx748q\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"zsMEGTtSH\",svg:'<svg width=\"7\" height=\"6\" viewBox=\"0 0 7 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9758)\">\\n<path d=\"M1.91992 2.3999L3.35992 3.8399L4.79992 2.3999H1.91992Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9758\">\\n<rect width=\"5.76\" height=\"5.76\" fill=\"white\" transform=\"translate(0.479492)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apps\"})}),className:\"framer-ll9k8q\",\"data-framer-name\":\"Apps\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"ipU0SJZYS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17zzf86\",\"data-framer-name\":\"Frame 61\",layoutDependency:layoutDependency,layoutId:\"g4x4icCT4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-159mpwo\",\"data-framer-name\":\"Frame 54\",layoutDependency:layoutDependency,layoutId:\"nXXLEgZzW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gNso8VSNZ0zj7C1SGuV9JENjFaY.png\"},className:\"framer-8yg0u7\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"KwcS1O5sT\",style:{borderBottomLeftRadius:.64,borderBottomRightRadius:.64,borderTopLeftRadius:.64,borderTopRightRadius:.64}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Google Calendar\"})}),className:\"framer-k9dxzq\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"iDdtXrCwq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n2742a\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"dXO_6fB45\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tt7eze\",\"data-framer-name\":\"Frame 95\",layoutDependency:layoutDependency,layoutId:\"jxudyDkON\",style:{boxShadow:\"0px 0.32000020146369934px 0.6400004029273987px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfvfy0\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"l0nttHNPm\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eo25cq\",\"data-framer-name\":\"Frame 64\",layoutDependency:layoutDependency,layoutId:\"cjhJdBFR0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oav3k7\",\"data-framer-name\":\"Frame 63\",layoutDependency:layoutDependency,layoutId:\"UUTznaiwB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"5.12px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"#social-media\"})}),className:\"framer-16hbvtr\",\"data-framer-name\":\"#social-media\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"jmwhP3s5M\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16zxuew\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"CDxO0Bhc4\",svg:'<svg width=\"5\" height=\"5\" viewBox=\"0 0 5 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9772)\">\\n<path d=\"M1.59863 1.71826L2.55863 2.67826L3.51863 1.71826\" stroke=\"black\" stroke-width=\"0.32\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_196_9772\">\\n<rect width=\"3.84\" height=\"3.84\" fill=\"white\" transform=\"translate(0.640625 0.280273)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Track and coordinate social media\"})}),className:\"framer-1asfrrh\",\"data-framer-name\":\"Track and coordinate social media\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"sqlAikAAp\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ixecsl\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",layoutDependency:layoutDependency,layoutId:\"ix94c36mH\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0.32000020146369934px\",\"--border-right-width\":\"0.32000020146369934px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.32000020146369934px\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1faycep\",\"data-framer-name\":\"Frame 66\",layoutDependency:layoutDependency,layoutId:\"XbIe6Ww8k\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gKtPARdlNKe4klLiAgN0jwKY.png\"},className:\"framer-1v9otq2\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"c5avc0rLR\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-1taq5zq\",\"data-border\":true,\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"NnbIwiIYy\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-1hgxml\",\"data-border\":true,\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"woF_jVVNC\",style:{\"--border-bottom-width\":\"0.48000016808509827px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.48000016808509827px\",\"--border-right-width\":\"0.48000016808509827px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.48000016808509827px\",borderBottomLeftRadius:.32,borderBottomRightRadius:.32,borderTopLeftRadius:.32,borderTopRightRadius:.32}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"74\"})}),className:\"framer-128w3a\",\"data-framer-name\":\"74\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"j2C4V9BgT\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13h8mxq\",\"data-border\":true,\"data-framer-name\":\"Frame 73\",layoutDependency:layoutDependency,layoutId:\"qQ2IJOAXC\",style:{\"--border-bottom-width\":\"0.32000020146369934px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lg1kil\",\"data-framer-name\":\"Frame 69\",layoutDependency:layoutDependency,layoutId:\"VVDPANlMu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fro5qy\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"Pf0VMSjAP\",svg:'<svg width=\"5\" height=\"6\" viewBox=\"0 0 5 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 3.03996V4.95996H2.08C1.01961 4.95996 0.16 4.10035 0.16 3.03996C0.16 1.97957 1.01961 1.11996 2.08 1.11996C3.14039 1.11996 4 1.97957 4 3.03996Z\" fill=\"#FF745A\" stroke=\"#A9371E\" stroke-width=\"0.32\"/>\\n<rect x=\"1.27832\" y=\"2.23975\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"1.27734\" y=\"3.52051\" width=\"1.6\" height=\"0.32\" fill=\"white\"/>\\n<rect x=\"0.642578\" y=\"2.87988\" width=\"2.88\" height=\"0.32\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Project brief\"})}),className:\"framer-1dzwmtm\",\"data-framer-name\":\"Project brief\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"xqhJcPmWF\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-23hsww\",\"data-framer-name\":\"Frame 70\",layoutDependency:layoutDependency,layoutId:\"DW9gJWg29\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IUHnFKXiU3VfBfJXFNTCY4a1wo.png\"},className:\"framer-vc7roo\",\"data-framer-name\":\"image 6\",layoutDependency:layoutDependency,layoutId:\"mHSou_15k\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Resources\"})}),className:\"framer-12seuv0\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"KqKk92zrU\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3r8p34\",\"data-framer-name\":\"Frame 71\",layoutDependency:layoutDependency,layoutId:\"zh36c8CW3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Y2vp2AqNyff9hAi6fwwZY77ntAI.png\"},className:\"framer-ixsmga\",\"data-framer-name\":\"image 7\",layoutDependency:layoutDependency,layoutId:\"sNOT3roPT\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"To do\"})}),className:\"framer-xs5lgh\",\"data-framer-name\":\"To do\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"GHtuKn_k5\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b0op6j\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"yrLUgIWVG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8GaDqAaekbaT3si4EOHyA9jveW0.png\"},className:\"framer-1q4nz30\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"XSz0kIRDB\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.84px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Jira board\"})}),className:\"framer-1sgd2b7\",\"data-framer-name\":\"Jira board\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"NQrEfNU0b\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aj1xie\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"Wf9uq0yoy\",svg:'<svg width=\"6\" height=\"6\" viewBox=\"0 0 6 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.99805 2.08008V4.00007\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.04395 3.04102H3.96394\" stroke=\"#5A5A5A\" stroke-width=\"0.274284\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v07i9c\",\"data-framer-name\":\"Frame 81\",layoutDependency:layoutDependency,layoutId:\"asuDylX4R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-smamrc\",\"data-framer-name\":\"Frame 86\",layoutDependency:layoutDependency,layoutId:\"Uhpe8oUZ7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-os8axw\",\"data-framer-name\":\"Alborz 5\",layoutDependency:layoutDependency,layoutId:\"Vl3OmbkGN\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yptuqw\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"DELU92rT_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ic39ib\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"eLTVs7q5v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-2wyyxn\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"upw7bZVOC\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:55\"})}),className:\"framer-1t3kzub\",\"data-framer-name\":\"11:55\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"ROOH6F2fc\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4kvgh9\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"jB0yKx_Qe\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vmoqua\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"JaRAK_GaZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c815ih\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"z4N3s8fQo\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1th2hum\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TbMyihYgw\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4fo3c\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"yrkQYkVcF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iruve0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"h4MEtyMzb\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jfgkti\",\"data-framer-name\":\"Frame 84\",layoutDependency:layoutDependency,layoutId:\"tUYap95oH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-1a32pap\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"cHHCo4I4V\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q1ydwt\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"Wfr1QiFyj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3b0ezu\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"qHjbbw0aA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Ace Jackson\"})}),className:\"framer-103bta5\",\"data-framer-name\":\"Ace Jackson\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"mi2bd360T\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"11:56\"})}),className:\"framer-14je8pb\",\"data-framer-name\":\"11:56\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"ZZ3kA2kyw\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jcu0dz\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"ADoFudvqr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wygw3s\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HQfN2fuUB\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vd8yn1\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"P_Hv8cC7T\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qswool\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HqRaM8L8D\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nha2z0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"X1nwCxhUn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tuavo8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"cumoiUV8S\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mv848e\",\"data-framer-name\":\"Frame 85\",layoutDependency:layoutDependency,layoutId:\"fGcD6y256\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fWXUvu7nJBhGWelcyHPpgt9I5E.png\"},className:\"framer-fe4b08\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"U80RNG6VD\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zkor5v\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"bWDaDhLFJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-187kx6l\",\"data-framer-name\":\"Frame 89\",layoutDependency:layoutDependency,layoutId:\"VeCgJkP0J\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-25ixoc\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"cHI2clMgb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Google Calendar\"})}),className:\"framer-1lua3h2\",\"data-framer-name\":\"Google Calendar\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"aQIk01bvR\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8v89gb\",\"data-framer-name\":\"Frame 88\",layoutDependency:layoutDependency,layoutId:\"ykYL7ghe9\",style:{backgroundColor:\"rgb(223, 223, 223)\",borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"2.88px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"APP\"})}),className:\"framer-15u95bj\",\"data-framer-name\":\"APP\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"spViPlW0G\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:45\"})}),className:\"framer-qm8bqv\",\"data-framer-name\":\"12:45\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"uAJNowxCx\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwcl8y\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"EmrorNPfa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-179fzg3\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"HGTCE48zM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-esvye8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"iyfX0uaNh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w19xq3\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"rsSVRXzAi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1u2mc\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"gLNAJ5EP2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as760n\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"QvEwFLXiG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgb5yx\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"B4pC89VUU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlqy3n\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"loIB5bJHD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxtwk3\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FA9Ei7IEH\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1agzesv\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"wLfDBKeTj\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-56s4ed\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Pvwxam8HM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g0ouwf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"sgdTiCUKs\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l0dq9j\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"AjMDWcik9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2jlbh\",\"data-framer-name\":\"Rectangle 27\",layoutDependency:layoutDependency,layoutId:\"XnqBsplzt\",style:{backgroundColor:\"rgb(32, 157, 212)\",borderBottomLeftRadius:3.2,borderBottomRightRadius:3.2,borderTopLeftRadius:3.2,borderTopRightRadius:3.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8iufxt\",\"data-framer-name\":\"Frame 92\",layoutDependency:layoutDependency,layoutId:\"xuHxep54L\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c2cfl3\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"Ehy_LoOds\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18cked0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"FqjTv9JAs\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6duggh\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"VbfsPfZnb\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8lhg68\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"WauD8HNJC\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jol24\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"aueWUYDK4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuy37x\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"eaAnxXyUF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xp7c9g\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"yXVZWfnhn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p6dopq\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"FzBUSTIGB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1envewf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"xc4qOzcB7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ibunj\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"sTuFHh9H0\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uzwjke\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"SbRclfYST\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rqeq8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"rwXIa948G\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tnvhcb\",\"data-framer-name\":\"Frame 87\",layoutDependency:layoutDependency,layoutId:\"DFlw4nubm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pqc27V9caYqiHt8dpor66cHRkVI.png\"},className:\"framer-3guij0\",\"data-framer-name\":\"Alborz\",layoutDependency:layoutDependency,layoutId:\"AXVfVOw0k\",style:{borderBottomLeftRadius:.96,borderBottomRightRadius:.96,borderTopLeftRadius:.96,borderTopRightRadius:.96}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6dxohh\",\"data-framer-name\":\"Frame 83\",layoutDependency:layoutDependency,layoutId:\"FvpYA7XJX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcsdtm\",\"data-framer-name\":\"Frame 82\",layoutDependency:layoutDependency,layoutId:\"Yu4kCrhMm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by04MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"4.16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clarice St. Claire\"})}),className:\"framer-blnueg\",\"data-framer-name\":\"Clarice St. Claire\",fonts:[\"GF;Lato-800\"],layoutDependency:layoutDependency,layoutId:\"kJxrCV5Ec\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by01MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"3.52px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"12:58\"})}),className:\"framer-1ic54w4\",\"data-framer-name\":\"12:58\",fonts:[\"GF;Lato-500\"],layoutDependency:layoutDependency,layoutId:\"DaTgz_MDD\",style:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oqz339\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"GD8S19AqY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15byxe7\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"E88Fokxd1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11iyecx\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"pFRQXgm0C\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t9j8vn\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"QklUJ0K10\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m863i4\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Ri8Woo3kG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5g4gq7\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"EhZ2AlpV_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1repxy9\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Q5OQPf3wS\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1msxmik\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"vGFitOnaK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kevkmx\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"flYA_wzyZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mct9e\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"MaWVFihsR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vnpd28\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"M6wURVJgv\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kupdic\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"iRK2n2IIc\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderBottomLeftRadius:.89,borderBottomRightRadius:.89,borderTopLeftRadius:.89,borderTopRightRadius:.89}})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12x18ga\",\"data-framer-name\":\"Frame 80\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:230,layoutDependency:layoutDependency,layoutId:\"kLi_XV4tE\",svg:'<svg width=\"230\" height=\"36\" viewBox=\"0 0 230 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_196_9882)\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n<rect x=\"9.83984\" y=\"9.30176\" width=\"0.32\" height=\"6.4\" fill=\"#4C4C4C\"/>\\n<g clip-path=\"url(#clip1_196_9882)\">\\n<rect x=\"10.1592\" y=\"10.7241\" width=\"15.7778\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"26.8262\" y=\"10.7241\" width=\"13.5556\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n<rect x=\"41.2705\" y=\"10.7241\" width=\"6.44445\" height=\"3.55556\" rx=\"1.77778\" fill=\"black\" fill-opacity=\"0.05\"/>\\n</g>\\n<mask id=\"path-7-inside-1_196_9882\" fill=\"white\">\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\"/>\\n</mask>\\n<path d=\"M6.63965 18.582H224.24V29.462H6.63965V18.582Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M6.63965 18.902H224.24V18.262H6.63965V18.902Z\" fill=\"black\" fill-opacity=\"0.15\" mask=\"url(#path-7-inside-1_196_9882)\"/>\\n<g clip-path=\"url(#clip2_196_9882)\">\\n<path d=\"M12.0249 21.6221V23.4887H13.6249L11.4916 26.4221V24.5554H9.8916L12.0249 21.6221Z\" stroke=\"#5F5F5F\" stroke-width=\"0.533334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<rect x=\"16.5596\" y=\"20.502\" width=\"0.32\" height=\"7.04\" fill=\"#D9D9D9\"/>\\n<g clip-path=\"url(#clip3_196_9882)\">\\n<path d=\"M22.667 22.7139H23.787C23.9603 22.7139 24.1264 22.7827 24.249 22.9052C24.3715 23.0277 24.4403 23.1939 24.4403 23.3672C24.4403 23.5405 24.3715 23.7067 24.249 23.8292C24.1264 23.9517 23.9603 24.0205 23.787 24.0205H22.667V22.7139Z\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M23.787 24.02H23.9737C24.1469 24.02 24.3131 24.0889 24.4356 24.2114C24.5582 24.3339 24.627 24.5001 24.627 24.6734C24.627 24.8466 24.5582 25.0128 24.4356 25.1353C24.3131 25.2579 24.1469 25.3267 23.9737 25.3267H22.667V24.02\" stroke=\"#5F5F5F\" stroke-width=\"0.48\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip4_196_9882)\">\\n<path d=\"M32.3721 22.7158H33.4921\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.627 25.3286H32.747\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M32.9332 22.7148L32.1865 25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip5_196_9882)\">\\n<path d=\"M40.2119 24.0205H42.8252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.2683 22.9941C42.226 22.9119 42.129 22.8394 41.9933 22.7885C41.8575 22.7376 41.6912 22.7114 41.5216 22.7141H41.335C41.1617 22.7141 40.9955 22.7829 40.873 22.9054C40.7505 23.0279 40.6816 23.1941 40.6816 23.3674C40.6816 23.5407 40.7505 23.7068 40.873 23.8294C40.9955 23.9519 41.1617 24.0207 41.335 24.0207H41.7083C41.8816 24.0207 42.0478 24.0896 42.1703 24.2121C42.2928 24.3346 42.3616 24.5008 42.3616 24.6741C42.3616 24.8473 42.2928 25.0135 42.1703 25.136C42.0478 25.2586 41.8816 25.3274 41.7083 25.3274H41.4283C41.2587 25.3301 41.0924 25.3038 40.9567 25.2529C40.821 25.202 40.724 25.1295 40.6816 25.0474\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip6_196_9882)\">\\n<path d=\"M49.5474 23.2759L48.8008 24.0225L49.5474 24.7692\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M51.415 23.2749L52.1617 24.0216L51.415 24.7682\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M50.856 22.5288L50.1094 25.5155\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip7_196_9882)\">\\n<path d=\"M59.0654 24.3948C59.1263 24.4569 59.1989 24.5062 59.279 24.5399C59.3591 24.5735 59.4452 24.5909 59.5321 24.5909C59.619 24.5909 59.7051 24.5735 59.7852 24.5399C59.8653 24.5062 59.9379 24.4569 59.9988 24.3948L60.7454 23.6481C60.8692 23.5243 60.9387 23.3565 60.9387 23.1815C60.9387 23.0064 60.8692 22.8386 60.7454 22.7148C60.6217 22.591 60.4538 22.5215 60.2788 22.5215C60.1037 22.5215 59.9359 22.591 59.8121 22.7148L59.7188 22.8081\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.8098 23.6482C59.749 23.5862 59.6764 23.5368 59.5963 23.5032C59.5161 23.4695 59.4301 23.4521 59.3432 23.4521C59.2562 23.4521 59.1702 23.4695 59.0901 23.5032C59.0099 23.5368 58.9373 23.5862 58.8765 23.6482L58.1298 24.3949C58.0061 24.5187 57.9365 24.6865 57.9365 24.8616C57.9365 25.0366 58.0061 25.2045 58.1298 25.3282C58.2536 25.452 58.4215 25.5215 58.5965 25.5215C58.7715 25.5215 58.9394 25.452 59.0632 25.3282L59.1565 25.2349\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip8_196_9882)\">\\n<path d=\"M68.2109 22.9028H69.8909\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.2139 24.022H69.8939\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M68.3984 25.1416H69.8918\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.9072 24.7674C66.9072 24.6684 66.9466 24.5734 67.0166 24.5034C67.0866 24.4334 67.1815 24.394 67.2806 24.394C67.3796 24.394 67.4745 24.4334 67.5445 24.5034C67.6146 24.5734 67.6539 24.6684 67.6539 24.7674C67.6539 24.8777 67.5606 24.954 67.4672 25.0474L66.9072 25.514H67.6539\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M67.2815 23.6478V22.5278L66.9082 22.9012\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip9_196_9882)\">\\n<path d=\"M76.8018 22.9009H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 24.022H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.8018 25.1421H78.8551\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 22.9028V22.9055\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0518 24.0225V24.0252\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76.0527 25.1426V25.1453\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip10_196_9882)\">\\n<path d=\"M85.7607 22.9014H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7607 24.022H87.8141\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.7617 25.1416H87.8151\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0137 22.9019V25.1437\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip11_196_9882)\">\\n<path d=\"M95.6523 22.3418V23.0885C95.6523 23.138 95.672 23.1855 95.707 23.2205C95.742 23.2555 95.7895 23.2751 95.839 23.2751H96.5857\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.2136 25.7023H94.347C94.248 25.7023 94.153 25.663 94.083 25.5929C94.013 25.5229 93.9736 25.428 93.9736 25.329V22.7156C93.9736 22.6166 94.013 22.5216 94.083 22.4516C94.153 22.3816 94.248 22.3423 94.347 22.3423H95.6536L96.587 23.2756V25.329C96.587 25.428 96.5476 25.5229 96.4776 25.5929C96.4076 25.663 96.3126 25.7023 96.2136 25.7023Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.9064 24.208L94.7197 24.5813L94.9064 24.9547\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.6523 24.2075L95.839 24.5809L95.6523 24.9542\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip12_196_9882)\">\\n<path d=\"M190.693 24.6758C190.693 24.8491 190.762 25.0152 190.885 25.1378C191.007 25.2603 191.173 25.3291 191.347 25.3291C191.52 25.3291 191.686 25.2603 191.809 25.1378C191.931 25.0152 192 24.8491 192 24.6758C192 24.5025 191.931 24.3363 191.809 24.2138C191.686 24.0913 191.52 24.0225 191.347 24.0225C191.173 24.0225 191.007 24.0913 190.885 24.2138C190.762 24.3363 190.693 24.5025 190.693 24.6758Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 25.3282V23.3682C188.643 23.1949 188.711 23.0287 188.834 22.9062C188.956 22.7837 189.123 22.7148 189.296 22.7148C189.469 22.7148 189.635 22.7837 189.758 22.9062C189.88 23.0287 189.949 23.1949 189.949 23.3682V25.3282\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M188.643 24.208H189.949\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.001 24.022V25.3286\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip13_196_9882)\">\\n<path d=\"M198.535 24.0211C198.535 24.2191 198.614 24.409 198.754 24.5491C198.894 24.6891 199.084 24.7677 199.282 24.7677C199.48 24.7677 199.67 24.6891 199.81 24.5491C199.95 24.409 200.028 24.2191 200.028 24.0211C200.028 23.8231 199.95 23.6331 199.81 23.4931C199.67 23.3531 199.48 23.2744 199.282 23.2744C199.084 23.2744 198.894 23.3531 198.754 23.4931C198.614 23.6331 198.535 23.8231 198.535 24.0211Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.027 24.0205V24.3005C200.027 24.4243 200.076 24.543 200.164 24.6305C200.251 24.718 200.37 24.7672 200.494 24.7672C200.618 24.7672 200.736 24.718 200.824 24.6305C200.911 24.543 200.961 24.4243 200.961 24.3005V24.0205C200.961 23.6595 200.845 23.308 200.63 23.018C200.415 22.728 200.113 22.5149 199.767 22.4104C199.422 22.3058 199.052 22.3154 198.712 22.4376C198.372 22.5598 198.081 22.7881 197.881 23.0888C197.681 23.3895 197.584 23.7466 197.603 24.1071C197.622 24.4675 197.757 24.8123 197.987 25.0903C198.217 25.3682 198.531 25.5646 198.882 25.6503C199.232 25.7361 199.601 25.7065 199.934 25.5661\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip14_196_9882)\">\\n<path d=\"M206.561 24.0213C206.561 24.2419 206.604 24.4604 206.688 24.6642C206.773 24.868 206.897 25.0532 207.053 25.2092C207.209 25.3653 207.394 25.489 207.598 25.5734C207.801 25.6579 208.02 25.7013 208.241 25.7013C208.461 25.7013 208.68 25.6579 208.883 25.5734C209.087 25.489 209.272 25.3653 209.428 25.2092C209.584 25.0532 209.708 24.868 209.793 24.6642C209.877 24.4604 209.921 24.2419 209.921 24.0213C209.921 23.8007 209.877 23.5822 209.793 23.3784C209.708 23.1746 209.584 22.9894 209.428 22.8334C209.272 22.6774 209.087 22.5536 208.883 22.4692C208.68 22.3848 208.461 22.3413 208.241 22.3413C208.02 22.3413 207.801 22.3848 207.598 22.4692C207.394 22.5536 207.209 22.6774 207.053 22.8334C206.897 22.9894 206.773 23.1746 206.688 23.3784C206.604 23.5822 206.561 23.8007 206.561 24.0213Z\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.679 23.6475H207.681\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M208.799 23.6484H208.802\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M207.775 24.5815C207.836 24.6436 207.909 24.693 207.989 24.7266C208.069 24.7603 208.155 24.7776 208.242 24.7776C208.329 24.7776 208.415 24.7603 208.495 24.7266C208.575 24.693 208.648 24.6436 208.709 24.5815\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip15_196_9882)\">\\n<path d=\"M217.763 23.0893L216.55 24.3027C216.475 24.3769 216.434 24.4776 216.434 24.5827C216.434 24.6877 216.475 24.7884 216.55 24.8627C216.624 24.9369 216.725 24.9786 216.83 24.9786C216.935 24.9786 217.035 24.9369 217.11 24.8627L218.323 23.6493C218.471 23.5008 218.555 23.2994 218.555 23.0893C218.555 22.8793 218.471 22.6778 218.323 22.5293C218.174 22.3808 217.973 22.2974 217.763 22.2974C217.553 22.2974 217.351 22.3808 217.203 22.5293L215.99 23.7427C215.767 23.9654 215.642 24.2676 215.642 24.5827C215.642 24.8977 215.767 25.1999 215.99 25.4227C216.212 25.6454 216.514 25.7706 216.83 25.7706C217.145 25.7706 217.447 25.6454 217.67 25.4227L218.883 24.2093\" stroke=\"#5F5F5F\" stroke-width=\"0.373334\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<rect x=\"6.47965\" y=\"6.26187\" width=\"217.92\" height=\"23.36\" rx=\"1.44\" stroke=\"#555555\" stroke-width=\"0.32\"/>\\n<defs>\\n<clipPath id=\"clip0_196_9882\">\\n<rect x=\"6.63965\" y=\"6.42188\" width=\"217.6\" height=\"23.04\" rx=\"1.28\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_196_9882\">\\n<rect width=\"37.5556\" height=\"3.55556\" fill=\"white\" transform=\"translate(10.1592 10.7241)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_196_9882\">\\n<rect width=\"6.40001\" height=\"6.4\" fill=\"white\" transform=\"translate(8.55957 20.8218)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(21.3594 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(30.3193 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(39.2793 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(48.2393 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(57.1992 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(66.1592 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(75.1191 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip10_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(84.0801 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(93.04 21.7817)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(188.08 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(197.04 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(206 21.7822)\"/>\\n</clipPath>\\n<clipPath id=\"clip15_196_9882\">\\n<rect width=\"4.48\" height=\"4.48\" fill=\"white\" transform=\"translate(214.96 21.7822)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gce9t4\",\"data-border\":true,\"data-framer-name\":\"Frame 427322483\",layoutDependency:layoutDependency,layoutId:\"OaoieC1qf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9fxgnx\",\"data-framer-name\":\"Frame 427322468\",layoutDependency:layoutDependency,layoutId:\"wXACBgp6v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c4dxc1-container\",layoutDependency:layoutDependency,layoutId:\"Q9hvcLwVe-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Q9hvcLwVe\",layoutId:\"Q9hvcLwVe\",style:{height:\"100%\",width:\"100%\"},variant:\"IEZpDik_S\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(31, 31, 31))\"},children:\"Business Analyst\"})]}),className:\"framer-1dt8bf3\",\"data-framer-name\":\"Ahmed Taleb Business Analyst\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"N0ZXGDTl6\",style:{\"--extracted-2gxw0f\":\"rgb(31, 31, 31)\",\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"How to communicate with Ahmed:\"})}),className:\"framer-eid3xw\",\"data-framer-name\":\"How to communicate with Ahmed:\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Sl3r9jlnn\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sssotp\",\"data-framer-name\":\"Frame 427322467\",layoutDependency:layoutDependency,layoutId:\"ZojC9I4zg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-twbqv0\",\"data-framer-name\":\"Frame 427322464\",layoutDependency:layoutDependency,layoutId:\"iV2idM4rj\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14es9au\",\"data-framer-name\":\"Toggle / Status Complete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"UkeO9vkaT\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.7283C4.63893 13.7283 2.12988 11.2192 2.12988 8.12414C2.12988 5.02907 4.63893 2.52002 7.73401 2.52002C10.8291 2.52002 13.3381 5.02907 13.3381 8.12414C13.3381 11.2192 10.8291 13.7283 7.73401 13.7283Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.25592C10.0433 6.07355 9.74758 6.07355 9.5652 6.25592L7.11225 8.70887L5.90466 7.50129C5.72228 7.31891 5.42658 7.31891 5.24421 7.50129C5.06183 7.68366 5.06183 7.97936 5.24421 8.16174L7.11225 10.0298L10.2256 6.91638C10.408 6.734 10.408 6.4383 10.2256 6.25592Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Don\u2019t interrupt Ahmed\"})}),className:\"framer-1511lwq\",\"data-framer-name\":\"Don\u2019t interrupt Ace\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"LZfObdpsD\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fobzv7\",\"data-framer-name\":\"Frame 427322465\",layoutDependency:layoutDependency,layoutId:\"Y4ylvexJD\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q00c9g\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LN8gYKhRw\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73498 13.4084C4.63991 13.4084 2.13086 10.8994 2.13086 7.80432C2.13086 4.70925 4.63991 2.2002 7.73498 2.2002C10.8301 2.2002 13.3391 4.70925 13.3391 7.80432C13.3391 10.8994 10.8301 13.4084 7.73498 13.4084Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 5.9361C10.0433 5.75372 9.74758 5.75372 9.5652 5.9361L7.11225 8.38905L5.90466 7.18146C5.72228 6.99908 5.42658 6.99908 5.24421 7.18146C5.06183 7.36384 5.06183 7.65953 5.24421 7.84191L7.11225 9.70996L10.2256 6.59655C10.408 6.41417 10.408 6.11848 10.2256 5.9361Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Provide a high-level summary before going into details.\"})}),className:\"framer-1hqpe3r\",\"data-framer-name\":\"Provide a high-level summary before going into details.\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"EhpfZq8tb\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imzdhh\",\"data-framer-name\":\"Frame 427322466\",layoutDependency:layoutDependency,layoutId:\"JiTgMraBc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i3yjwx\",\"data-framer-name\":\"Box\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"vfv2ahIzg\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.73401 13.6165C4.63893 13.6165 2.12988 11.1074 2.12988 8.01233C2.12988 4.91725 4.63893 2.4082 7.73401 2.4082C10.8291 2.4082 13.3381 4.91725 13.3381 8.01233C13.3381 11.1074 10.8291 13.6165 7.73401 13.6165Z\" fill=\"#FF8624\"/>\\n<path d=\"M10.2256 6.1446C10.0433 5.96222 9.74758 5.96222 9.5652 6.1446L7.11225 8.59755L5.90466 7.38996C5.72228 7.20758 5.42658 7.20758 5.24421 7.38996C5.06183 7.57234 5.06183 7.86803 5.24421 8.05041L7.11225 9.91845L10.2256 6.80505C10.408 6.62267 10.408 6.32698 10.2256 6.1446Z\" fill=\"#E4E4E4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.41px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Give Ahmed time to answer questions\"})}),className:\"framer-exk17h\",\"data-framer-name\":\"Give Ace time to answer questions\",fonts:[\"GF;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"TpAyBeXAS\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rvu5zb\",\"data-framer-name\":\"Frame 1707479563\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aW9pgYL10\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 58\"><path d=\"M 4.799 1.804 C 4.634 1.64 4.366 1.64 4.201 1.804 L 1.508 4.479 C 1.343 4.643 1.343 4.909 1.508 5.073 C 1.673 5.237 1.941 5.237 2.107 5.073 L 4.5 2.696 L 6.893 5.073 C 7.058 5.237 7.326 5.237 7.491 5.073 C 7.657 4.909 7.657 4.643 7.491 4.479 Z M 4.077 2.101 L 4.077 26.478 L 4.923 26.478 L 4.923 2.101 Z M 31.577 53.797 L 55.269 53.797 L 55.269 52.957 L 31.577 52.957 Z M 4.077 26.478 C 4.077 41.566 16.389 53.797 31.577 53.797 L 31.577 52.957 C 16.856 52.957 4.923 41.102 4.923 26.478 Z\" fill=\"rgb(31,31,31)\"></path></svg>',svgContentId:12623145010,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-a3zdl3\",\"data-framer-appear-id\":\"a3zdl3\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"EF7fGonWm\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Elevate your Slack game\"})}),className:\"framer-yoouad\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tWSx7dcwg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"By integrating SurePeople with Slack, you can transform your team's workflow, foster more effective communication, and take collaboration to new heights.\"})}),className:\"framer-1uc2emi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qd_HPGmCX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c59wy8\",\"data-framer-name\":\"Web app Mobile\",layoutDependency:layoutDependency,layoutId:\"ydEf6nNby\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p28pmu-container\",layoutDependency:layoutDependency,layoutId:\"i5x9uxDVu-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"i5x9uxDVu\",layoutId:\"i5x9uxDVu\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Web App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17y14lx\",layoutDependency:layoutDependency,layoutId:\"wltW6WTEC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:497,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6idse-container\",layoutDependency:layoutDependency,layoutId:\"BX3Sojq12-container\",children:/*#__PURE__*/_jsx(WebApp,{height:\"100%\",id:\"BX3Sojq12\",layoutId:\"BX3Sojq12\",variant:\"reM9ph9BG\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1vmds0d\",\"data-framer-appear-id\":\"1vmds0d\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"ve5DjKT22\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Real-time web-based collaboration at it's best\"})}),className:\"framer-186vyy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g5QAKI4A8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Our cutting-edge technology offers a user-friendly, web-based platform that streamlines teamwork and boosts productivity through a turnkey interface.\"})}),className:\"framer-kbiedr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z5KFvIRFC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-piy165\",\"data-framer-name\":\"Native app Mobile\",layoutDependency:layoutDependency,layoutId:\"JMLumnOxF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vu5uch-container\",layoutDependency:layoutDependency,layoutId:\"NsndmtGx0-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"NsndmtGx0\",layoutId:\"NsndmtGx0\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Phone App\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1knoo30\",layoutDependency:layoutDependency,layoutId:\"ztMDWr818\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5uio3c-container\",layoutDependency:layoutDependency,layoutId:\"FEqld3Geg-container\",children:/*#__PURE__*/_jsx(PersonalityScreen,{height:\"100%\",id:\"FEqld3Geg\",layoutId:\"FEqld3Geg\",variant:\"VstFWx9ny\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-zn0s5l\",\"data-framer-appear-id\":\"zn0s5l\",\"data-framer-name\":\"Sentence\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"IxbntSRIV\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",children:\"Unleash SurePeople's potential in the palm of your hand\"})}),className:\"framer-1vamweq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uw4HS9P77\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"Experience the convenience and power of our innovative technology with the SurePeople App.\"})}),className:\"framer-4b0u33\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qpJWPmr9j\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FHu7m.framer-11a1dbd, .framer-FHu7m .framer-11a1dbd { display: block; }\",\".framer-FHu7m.framer-1ye6yvf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-FHu7m .framer-16t24p1 { 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: 32px 0px 104px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-FHu7m .framer-12gi6uv { bottom: 249px; flex: none; height: 299px; left: 224px; overflow: visible; position: absolute; width: 564px; z-index: 0; }\",\".framer-FHu7m .framer-9p7j4e { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 299px); }\",\".framer-FHu7m .framer-htp6ny { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 299px); }\",\".framer-FHu7m .framer-bq59v0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-1o8ulih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-FHu7m .framer-xxtb0r { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 69%; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-dj0vb8, .framer-FHu7m .framer-vowtka, .framer-FHu7m .framer-lpzoii, .framer-FHu7m .framer-9j7hxz, .framer-FHu7m .framer-vl4h4s, .framer-FHu7m .framer-hvb242, .framer-FHu7m .framer-m59qa, .framer-FHu7m .framer-1e9xsil, .framer-FHu7m .framer-10itcc0, .framer-FHu7m .framer-10qdezj, .framer-FHu7m .framer-hoekwv, .framer-FHu7m .framer-111n6wv, .framer-FHu7m .framer-1kip73g, .framer-FHu7m .framer-1gclbmo, .framer-FHu7m .framer-180epnk, .framer-FHu7m .framer-yoouad, .framer-FHu7m .framer-1uc2emi, .framer-FHu7m .framer-186vyy, .framer-FHu7m .framer-kbiedr, .framer-FHu7m .framer-1vamweq, .framer-FHu7m .framer-4b0u33 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-14fufp4-container { flex: none; height: 527px; position: relative; width: 922px; }\",\".framer-FHu7m .framer-1n2o0et { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 475px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1fw39al-container, .framer-FHu7m .framer-1tt3sen-container, .framer-FHu7m .framer-1mo2iw0-container, .framer-FHu7m .framer-46233y-container, .framer-FHu7m .framer-1p9bnll-container, .framer-FHu7m .framer-vyw89u-container, .framer-FHu7m .framer-8azfrt-container, .framer-FHu7m .framer-1m6lsce-container, .framer-FHu7m .framer-177cqap-container, .framer-FHu7m .framer-604dpl-container, .framer-FHu7m .framer-1xtnate-container, .framer-FHu7m .framer-p28pmu-container, .framer-FHu7m .framer-p6idse-container, .framer-FHu7m .framer-1vu5uch-container, .framer-FHu7m .framer-5uio3c-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FHu7m .framer-t9lfgf, .framer-FHu7m .framer-wfrycw, .framer-FHu7m .framer-1kuaoqe, .framer-FHu7m .framer-16p9i3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-FHu7m .framer-x0b16s, .framer-FHu7m .framer-u8mspp, .framer-FHu7m .framer-1lsk15t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 411px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-of5ml2, .framer-FHu7m .framer-8gsf7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1bd6glj { flex: none; height: 354px; overflow: visible; position: relative; width: 359px; }\",\".framer-FHu7m .framer-dp0nb7, .framer-FHu7m .framer-4gd5cl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 218px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-klhsw5, .framer-FHu7m .framer-1f6f9kf, .framer-FHu7m .framer-t70rri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2.2400012016296387px 5.1200032234191895px 2.2400012016296387px 5.1200032234191895px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1tvkujv, .framer-FHu7m .framer-jl4rdy, .framer-FHu7m .framer-1ap6svg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-obene8, .framer-FHu7m .framer-nt3h9o, .framer-FHu7m .framer-hh1dg2, .framer-FHu7m .framer-swmzkr, .framer-FHu7m .framer-rtxzjx, .framer-FHu7m .framer-k5fljp, .framer-FHu7m .framer-1b1tfp5, .framer-FHu7m .framer-ommvzv, .framer-FHu7m .framer-1stuan0 { aspect-ratio: 1.0000006829697337 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); position: relative; width: 4px; }\",\".framer-FHu7m .framer-1n2rni2, .framer-FHu7m .framer-1h5l3co, .framer-FHu7m .framer-1xjkhte { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-v253qc, .framer-FHu7m .framer-fqexte, .framer-FHu7m .framer-1f17zuz, .framer-FHu7m .framer-145h35l, .framer-FHu7m .framer-136gwy0, .framer-FHu7m .framer-17enul, .framer-FHu7m .framer-1j8q1os, .framer-FHu7m .framer-1u5dk02, .framer-FHu7m .framer-1rg8j7y, .framer-FHu7m .framer-17fevmf, .framer-FHu7m .framer-1sulkda, .framer-FHu7m .framer-ow1341 { flex: none; height: 8px; position: relative; width: 8px; }\",\".framer-FHu7m .framer-1ei5on9, .framer-FHu7m .framer-px1yxp, .framer-FHu7m .framer-15f3bn2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 1.2800008058547974px 0px 1.2800008058547974px 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-mg2nc3, .framer-FHu7m .framer-1w4c2x9, .framer-FHu7m .framer-7cd9ou, .framer-FHu7m .framer-15n7hjr, .framer-FHu7m .framer-1w4do12, .framer-FHu7m .framer-aj1xie { flex: none; height: 6px; position: relative; width: 6px; }\",\".framer-FHu7m .framer-em849x, .framer-FHu7m .framer-qhqia5, .framer-FHu7m .framer-11zg1ej, .framer-FHu7m .framer-8yw3fx, .framer-FHu7m .framer-yk83g0, .framer-FHu7m .framer-1hbywh1, .framer-FHu7m .framer-js69iv, .framer-FHu7m .framer-1h3cky8, .framer-FHu7m .framer-zvalvf, .framer-FHu7m .framer-1ghukwn, .framer-FHu7m .framer-144x17s, .framer-FHu7m .framer-p69knc, .framer-FHu7m .framer-fmk83i, .framer-FHu7m .framer-x87ph5, .framer-FHu7m .framer-1mlgzwg, .framer-FHu7m .framer-142wzsh, .framer-FHu7m .framer-11uj73c, .framer-FHu7m .framer-ves1hr, .framer-FHu7m .framer-rov9sb, .framer-FHu7m .framer-1wbkrey, .framer-FHu7m .framer-6cop70, .framer-FHu7m .framer-j2065a, .framer-FHu7m .framer-1aii5x6, .framer-FHu7m .framer-mlvjob, .framer-FHu7m .framer-bnibza, .framer-FHu7m .framer-eqiauj, .framer-FHu7m .framer-k8asul, .framer-FHu7m .framer-hliojr, .framer-FHu7m .framer-1vyrzzl, .framer-FHu7m .framer-i2hq6e, .framer-FHu7m .framer-1uef3q3, .framer-FHu7m .framer-ul15qv, .framer-FHu7m .framer-1hjvigd, .framer-FHu7m .framer-1wlsly6, .framer-FHu7m .framer-7tn4tu, .framer-FHu7m .framer-emii3k, .framer-FHu7m .framer-1u5yyy5, .framer-FHu7m .framer-17jlzs4, .framer-FHu7m .framer-zoxayw, .framer-FHu7m .framer-1jeqocg, .framer-FHu7m .framer-ik87li, .framer-FHu7m .framer-1fl6pag, .framer-FHu7m .framer-iagurs, .framer-FHu7m .framer-8qemdr, .framer-FHu7m .framer-5covr6, .framer-FHu7m .framer-1ge42j0, .framer-FHu7m .framer-1sgba9n, .framer-FHu7m .framer-wtgolr, .framer-FHu7m .framer-q06hn5, .framer-FHu7m .framer-ueaovn, .framer-FHu7m .framer-5ds5eu, .framer-FHu7m .framer-92we9d, .framer-FHu7m .framer-yrnudl, .framer-FHu7m .framer-16esy24, .framer-FHu7m .framer-ex940y, .framer-FHu7m .framer-a74gi8, .framer-FHu7m .framer-1ihztzu, .framer-FHu7m .framer-y57ef5, .framer-FHu7m .framer-18mhsky, .framer-FHu7m .framer-hgzf9f, .framer-FHu7m .framer-v8zdyh, .framer-FHu7m .framer-2ffioo, .framer-FHu7m .framer-10ykph1, .framer-FHu7m .framer-23aiby, .framer-FHu7m .framer-1d4iq4b, .framer-FHu7m .framer-1180k82, .framer-FHu7m .framer-1dws3jn, .framer-FHu7m .framer-k98ew1, .framer-FHu7m .framer-18fn5f2, .framer-FHu7m .framer-ovi1r4, .framer-FHu7m .framer-s63yrd, .framer-FHu7m .framer-1w4k6bp, .framer-FHu7m .framer-1bljihq, .framer-FHu7m .framer-1dc564h, .framer-FHu7m .framer-1fl9jc9, .framer-FHu7m .framer-qloq6e, .framer-FHu7m .framer-yhp76n, .framer-FHu7m .framer-okso0f, .framer-FHu7m .framer-sgt4t8, .framer-FHu7m .framer-1kve4sm, .framer-FHu7m .framer-18rt8ig, .framer-FHu7m .framer-13osot, .framer-FHu7m .framer-1fxxv0s, .framer-FHu7m .framer-1h8lonz, .framer-FHu7m .framer-1p9nigk, .framer-FHu7m .framer-wftr78, .framer-FHu7m .framer-138zkjt, .framer-FHu7m .framer-12t942x, .framer-FHu7m .framer-1cpwt3, .framer-FHu7m .framer-idmiv9, .framer-FHu7m .framer-vnzdhy, .framer-FHu7m .framer-127o827, .framer-FHu7m .framer-bl6gxe, .framer-FHu7m .framer-1w9fi6l, .framer-FHu7m .framer-19qq9ga, .framer-FHu7m .framer-8i1x4r, .framer-FHu7m .framer-1lcrdn9, .framer-FHu7m .framer-1dllx48, .framer-FHu7m .framer-kev7cy, .framer-FHu7m .framer-1j9fwmp, .framer-FHu7m .framer-453rss, .framer-FHu7m .framer-gqugq2, .framer-FHu7m .framer-x9zjw2, .framer-FHu7m .framer-onswtg, .framer-FHu7m .framer-11g8qyj, .framer-FHu7m .framer-rmg8a, .framer-FHu7m .framer-1840biz, .framer-FHu7m .framer-1c0xk4l, .framer-FHu7m .framer-3l1o82, .framer-FHu7m .framer-k113f0, .framer-FHu7m .framer-1quhymm, .framer-FHu7m .framer-1dssd05, .framer-FHu7m .framer-rdd36i, .framer-FHu7m .framer-13ax2a4, .framer-FHu7m .framer-13y00uy, .framer-FHu7m .framer-hmjdkr, .framer-FHu7m .framer-1jl99ez, .framer-FHu7m .framer-xg39hm, .framer-FHu7m .framer-1vgiftz, .framer-FHu7m .framer-ll9k8q, .framer-FHu7m .framer-k9dxzq, .framer-FHu7m .framer-16hbvtr, .framer-FHu7m .framer-1asfrrh, .framer-FHu7m .framer-128w3a, .framer-FHu7m .framer-1dzwmtm, .framer-FHu7m .framer-12seuv0, .framer-FHu7m .framer-xs5lgh, .framer-FHu7m .framer-1sgd2b7, .framer-FHu7m .framer-2wyyxn, .framer-FHu7m .framer-1t3kzub, .framer-FHu7m .framer-103bta5, .framer-FHu7m .framer-14je8pb, .framer-FHu7m .framer-1lua3h2, .framer-FHu7m .framer-15u95bj, .framer-FHu7m .framer-qm8bqv, .framer-FHu7m .framer-blnueg, .framer-FHu7m .framer-1ic54w4, .framer-FHu7m .framer-1dt8bf3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FHu7m .framer-2qdc4q, .framer-FHu7m .framer-1xgivpm, .framer-FHu7m .framer-atraaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1c0mndp, .framer-FHu7m .framer-1rdoros, .framer-FHu7m .framer-tec9ka { aspect-ratio: 1.0000006829697337 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-FHu7m .framer-1rc3u12, .framer-FHu7m .framer-ixl32v, .framer-FHu7m .framer-fyerk6 { aspect-ratio: 1.0000007450578683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); position: relative; width: 3px; }\",\".framer-FHu7m .framer-uzuil7, .framer-FHu7m .framer-1y3tl9m, .framer-FHu7m .framer-848rha { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-4klsr5, .framer-FHu7m .framer-fsbafa, .framer-FHu7m .framer-1wyxdo { flex: none; height: 207px; position: relative; width: 17px; }\",\".framer-FHu7m .framer-3d02e4, .framer-FHu7m .framer-ijptzq, .framer-FHu7m .framer-1h28h16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1ejttzr, .framer-FHu7m .framer-1soqa12, .framer-FHu7m .framer-1va6w5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 1.920000672340393px 4.480002403259277px 1.920000672340393px 4.480002403259277px; position: relative; width: 74px; }\",\".framer-FHu7m .framer-oi8apk, .framer-FHu7m .framer-9nrr9q, .framer-FHu7m .framer-18b4a52, .framer-FHu7m .framer-1lzi2qc, .framer-FHu7m .framer-1ft431o, .framer-FHu7m .framer-1nlgwyi, .framer-FHu7m .framer-1ivmkpg, .framer-FHu7m .framer-z4xh3d, .framer-FHu7m .framer-7r10l8 { flex: none; height: 11px; position: relative; width: 11px; }\",\".framer-FHu7m .framer-1wstzqn, .framer-FHu7m .framer-1lhpjfc, .framer-FHu7m .framer-nxedts, .framer-FHu7m .framer-1l2n26a, .framer-FHu7m .framer-ibh0yr, .framer-FHu7m .framer-2ppdiw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-5k0jtg, .framer-FHu7m .framer-pjfhwr, .framer-FHu7m .framer-zki2qa, .framer-FHu7m .framer-tgwe89, .framer-FHu7m .framer-ui6w1m, .framer-FHu7m .framer-k09uzi, .framer-FHu7m .framer-3nmtg6, .framer-FHu7m .framer-gi0esn, .framer-FHu7m .framer-f78g37, .framer-FHu7m .framer-15xujy2, .framer-FHu7m .framer-85jzat, .framer-FHu7m .framer-6zfamk, .framer-FHu7m .framer-1fij8mo, .framer-FHu7m .framer-1bqvn48, .framer-FHu7m .framer-1iuu6fw, .framer-FHu7m .framer-e6hhz8, .framer-FHu7m .framer-14rq28r, .framer-FHu7m .framer-1alqe3l, .framer-FHu7m .framer-ofs6uw, .framer-FHu7m .framer-pwqswc, .framer-FHu7m .framer-1d5m9rx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 3.840001344680786px 0px 3.840001344680786px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-18ds6i5, .framer-FHu7m .framer-wwg3q, .framer-FHu7m .framer-13yghny, .framer-FHu7m .framer-6czahs, .framer-FHu7m .framer-1a15qaj, .framer-FHu7m .framer-1a1pgt8, .framer-FHu7m .framer-1mep9o7, .framer-FHu7m .framer-1q8n96l, .framer-FHu7m .framer-375z4e, .framer-FHu7m .framer-18tli1s, .framer-FHu7m .framer-i3re1g, .framer-FHu7m .framer-t5z3oi, .framer-FHu7m .framer-u9dmhq, .framer-FHu7m .framer-1nwz1na, .framer-FHu7m .framer-b2r4x3, .framer-FHu7m .framer-wm3n02, .framer-FHu7m .framer-1pq9ypi, .framer-FHu7m .framer-1db4ods, .framer-FHu7m .framer-30g6j6, .framer-FHu7m .framer-jlvwe1, .framer-FHu7m .framer-l6pvd3, .framer-FHu7m .framer-xz0vty, .framer-FHu7m .framer-fsjm7g, .framer-FHu7m .framer-bx748q { flex: none; height: 6px; position: relative; width: 7px; }\",\".framer-FHu7m .framer-ju84c3, .framer-FHu7m .framer-nsb0mj, .framer-FHu7m .framer-8whwt3, .framer-FHu7m .framer-19a6rbm, .framer-FHu7m .framer-12yz50u, .framer-FHu7m .framer-yv5nei, .framer-FHu7m .framer-1w7meij, .framer-FHu7m .framer-8of17l, .framer-FHu7m .framer-twac8g, .framer-FHu7m .framer-7xp9ej, .framer-FHu7m .framer-c7nv0d, .framer-FHu7m .framer-1a1fp07, .framer-FHu7m .framer-1kc4hk9, .framer-FHu7m .framer-1giq26d, .framer-FHu7m .framer-3ncbl2, .framer-FHu7m .framer-xh1q48, .framer-FHu7m .framer-l946co, .framer-FHu7m .framer-10ny32e { flex: none; height: 6px; position: relative; white-space: pre-wrap; width: 6px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-6bgt0f, .framer-FHu7m .framer-16iw716, .framer-FHu7m .framer-s4qez0, .framer-FHu7m .framer-bzkfsv, .framer-FHu7m .framer-tfo043, .framer-FHu7m .framer-1tt7eze { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1n52369, .framer-FHu7m .framer-a71a08, .framer-FHu7m .framer-1ucq60m, .framer-FHu7m .framer-1ref9th, .framer-FHu7m .framer-ordpox, .framer-FHu7m .framer-1pd0v3b, .framer-FHu7m .framer-1jkaaa, .framer-FHu7m .framer-vkbm9m, .framer-FHu7m .framer-wx7l2n, .framer-FHu7m .framer-1c64h7g, .framer-FHu7m .framer-1vhuxqb, .framer-FHu7m .framer-jx3wnd, .framer-FHu7m .framer-5u7trw, .framer-FHu7m .framer-1diijfm, .framer-FHu7m .framer-lle0vo, .framer-FHu7m .framer-r3bv86, .framer-FHu7m .framer-g5yn0w, .framer-FHu7m .framer-1m7mqz6, .framer-FHu7m .framer-4x89qi, .framer-FHu7m .framer-1qqgwkp, .framer-FHu7m .framer-1adh2gr, .framer-FHu7m .framer-bl8m10, .framer-FHu7m .framer-102ze45, .framer-FHu7m .framer-1l4pwsx, .framer-FHu7m .framer-dmndp0, .framer-FHu7m .framer-zsexch, .framer-FHu7m .framer-jysydn, .framer-FHu7m .framer-10t73g2, .framer-FHu7m .framer-fth2hv, .framer-FHu7m .framer-17zzf86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0.9600003361701965px 0px 0.9600003361701965px 7.040005207061768px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-hyea4q, .framer-FHu7m .framer-1bfrb8g, .framer-FHu7m .framer-2fzp75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0.9600003361701965px 5.1200032234191895px 0.9600003361701965px 7.040005207061768px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-140vvsj, .framer-FHu7m .framer-140qzi6, .framer-FHu7m .framer-yoxn1j, .framer-FHu7m .framer-1c3q1yu, .framer-FHu7m .framer-1r82z8s, .framer-FHu7m .framer-b0op6j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-jy7jgs, .framer-FHu7m .framer-n1wofr, .framer-FHu7m .framer-1iofu48 { flex: none; height: 3px; overflow: visible; position: relative; width: 5px; }\",\".framer-FHu7m .framer-9hbwet, .framer-FHu7m .framer-d5nl7d, .framer-FHu7m .framer-1aez5dw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 0px; position: absolute; top: 0px; width: 2px; }\",\".framer-FHu7m .framer-11djlsh, .framer-FHu7m .framer-17n2vgt, .framer-FHu7m .framer-r76zcp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 2px; position: absolute; top: 0px; width: 2px; }\",\".framer-FHu7m .framer-n8e2fw, .framer-FHu7m .framer-1cuza7l, .framer-FHu7m .framer-86s3hz, .framer-FHu7m .framer-pv7k9c, .framer-FHu7m .framer-1h0vi9q, .framer-FHu7m .framer-1bvmd7h, .framer-FHu7m .framer-dx3zsu, .framer-FHu7m .framer-4x6h88, .framer-FHu7m .framer-1442uqm, .framer-FHu7m .framer-62398c, .framer-FHu7m .framer-1tz1g3l, .framer-FHu7m .framer-162505c, .framer-FHu7m .framer-12ii12k, .framer-FHu7m .framer-3337jq, .framer-FHu7m .framer-159mpwo, .framer-FHu7m .framer-1lg1kil, .framer-FHu7m .framer-23hsww, .framer-FHu7m .framer-3r8p34 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1n51gd9, .framer-FHu7m .framer-3xhg0i, .framer-FHu7m .framer-wt8r03, .framer-FHu7m .framer-gnye2p, .framer-FHu7m .framer-1azcxzo, .framer-FHu7m .framer-1wtp29d, .framer-FHu7m .framer-7dnljr, .framer-FHu7m .framer-kl4pbj, .framer-FHu7m .framer-8yg0u7 { aspect-ratio: 1.00000033113682 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); position: relative; width: 6px; }\",\".framer-FHu7m .framer-hr2vme, .framer-FHu7m .framer-qzgf1i, .framer-FHu7m .framer-m13ldj, .framer-FHu7m .framer-l94kei, .framer-FHu7m .framer-1xkkkn9, .framer-FHu7m .framer-17lcfd8 { aspect-ratio: 1.0000006829697337 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); position: relative; width: 2px; }\",\".framer-FHu7m .framer-10g1wvk, .framer-FHu7m .framer-1c30unw, .framer-FHu7m .framer-3khnak, .framer-FHu7m .framer-1mntoo3, .framer-FHu7m .framer-1tzp3l5, .framer-FHu7m .framer-qpewfu, .framer-FHu7m .framer-1k4hkh1, .framer-FHu7m .framer-4fmckh, .framer-FHu7m .framer-1v0820s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1.920000672340393px 0px 2.2400012016296387px 3.840001344680786px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-16q3jbf, .framer-FHu7m .framer-1nyq1wk, .framer-FHu7m .framer-1vmhy4z, .framer-FHu7m .framer-1dn0p2h, .framer-FHu7m .framer-1v8x1y5, .framer-FHu7m .framer-1lbnhdu, .framer-FHu7m .framer-1pjtjn7, .framer-FHu7m .framer-1mt57ww, .framer-FHu7m .framer-195jenz, .framer-FHu7m .framer-kw7lkp, .framer-FHu7m .framer-16029av, .framer-FHu7m .framer-2khqmz { flex: none; height: 7px; position: relative; width: 7px; }\",\".framer-FHu7m .framer-qak9ro, .framer-FHu7m .framer-11bkfgy, .framer-FHu7m .framer-hgcduq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 6px; }\",\".framer-FHu7m .framer-hbktei, .framer-FHu7m .framer-1130lco, .framer-FHu7m .framer-dfl2o8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); position: relative; width: 4px; }\",\".framer-FHu7m .framer-1qu2q60, .framer-FHu7m .framer-1lvww0o, .framer-FHu7m .framer-n2742a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-kvkksq, .framer-FHu7m .framer-11m95vv, .framer-FHu7m .framer-1mfvfy0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 2.8800017833709717px 4.480002403259277px 2.8800017833709717px 4.480002403259277px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-yfiayy, .framer-FHu7m .framer-138g9ez, .framer-FHu7m .framer-1eo25cq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-an6gc2, .framer-FHu7m .framer-1861s8u, .framer-FHu7m .framer-woids4, .framer-FHu7m .framer-75xdwb, .framer-FHu7m .framer-jo3hiu, .framer-FHu7m .framer-c4dugq, .framer-FHu7m .framer-o7w8h2, .framer-FHu7m .framer-1ofn152, .framer-FHu7m .framer-xayt2r, .framer-FHu7m .framer-1y5ae5i, .framer-FHu7m .framer-oav3k7, .framer-FHu7m .framer-ic39ib, .framer-FHu7m .framer-3b0ezu, .framer-FHu7m .framer-25ixoc, .framer-FHu7m .framer-1pcsdtm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-jodglc, .framer-FHu7m .framer-8z83x0, .framer-FHu7m .framer-16zxuew { flex: none; height: 5px; position: relative; width: 5px; }\",\".framer-FHu7m .framer-52u4mf, .framer-FHu7m .framer-f0vvv5, .framer-FHu7m .framer-ixecsl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0.9600003361701965px 2.8800017833709717px 0.9600003361701965px 0.9600003361701965px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-8xrazb, .framer-FHu7m .framer-1ps3rno, .framer-FHu7m .framer-1faycep { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-FHu7m .framer-1dcj4bd, .framer-FHu7m .framer-5jg6tq, .framer-FHu7m .framer-1xlgg8v, .framer-FHu7m .framer-u7uha8, .framer-FHu7m .framer-16mqr5l, .framer-FHu7m .framer-16g7mve, .framer-FHu7m .framer-1v9otq2, .framer-FHu7m .framer-1taq5zq, .framer-FHu7m .framer-1hgxml { aspect-ratio: 1.0000005960462168 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); position: relative; width: 6px; }\",\".framer-FHu7m .framer-1ki0ots, .framer-FHu7m .framer-11wymjr, .framer-FHu7m .framer-13h8mxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1.920000672340393px 5.1200032234191895px 1.920000672340393px 5.1200032234191895px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-13wzdjr, .framer-FHu7m .framer-1dbcpll, .framer-FHu7m .framer-1fro5qy { flex: none; height: 6px; position: relative; width: 5px; }\",\".framer-FHu7m .framer-f64wqq, .framer-FHu7m .framer-ufjme4, .framer-FHu7m .framer-vpokqd, .framer-FHu7m .framer-19de29, .framer-FHu7m .framer-k8t0x4, .framer-FHu7m .framer-rpacz1, .framer-FHu7m .framer-vc7roo, .framer-FHu7m .framer-ixsmga, .framer-FHu7m .framer-1q4nz30 { aspect-ratio: 1.000000496705304 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); position: relative; width: 5px; }\",\".framer-FHu7m .framer-1yxp1g9, .framer-FHu7m .framer-1fuqy8v, .framer-FHu7m .framer-1v07i9c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 0px 5.760003566741943px 0px 5.760003566741943px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-iez1yn, .framer-FHu7m .framer-5jalra, .framer-FHu7m .framer-1epeeuy, .framer-FHu7m .framer-10e0zb7, .framer-FHu7m .framer-1qciapd, .framer-FHu7m .framer-z9euya, .framer-FHu7m .framer-13a32p4, .framer-FHu7m .framer-a6225z, .framer-FHu7m .framer-smamrc, .framer-FHu7m .framer-1jfgkti, .framer-FHu7m .framer-mv848e, .framer-FHu7m .framer-1tnvhcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-zessrd, .framer-FHu7m .framer-11zisbo, .framer-FHu7m .framer-1gcieuq, .framer-FHu7m .framer-16awv32, .framer-FHu7m .framer-ka0sa, .framer-FHu7m .framer-szf1m3, .framer-FHu7m .framer-1esjdvf, .framer-FHu7m .framer-l6k03r, .framer-FHu7m .framer-os8axw, .framer-FHu7m .framer-1a32pap, .framer-FHu7m .framer-fe4b08, .framer-FHu7m .framer-3guij0 { aspect-ratio: 1.0000007450578683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); position: relative; width: 10px; }\",\".framer-FHu7m .framer-j6otbp, .framer-FHu7m .framer-1h6orwa, .framer-FHu7m .framer-yc2phy, .framer-FHu7m .framer-1tgzwjf, .framer-FHu7m .framer-gmvpu9, .framer-FHu7m .framer-1bhdo2r, .framer-FHu7m .framer-yptuqw, .framer-FHu7m .framer-1q1ydwt, .framer-FHu7m .framer-6dxohh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-1ghr6hf, .framer-FHu7m .framer-bpxuhs, .framer-FHu7m .framer-l5hq1n, .framer-FHu7m .framer-1m18v3n, .framer-FHu7m .framer-1aam77d, .framer-FHu7m .framer-1rl53ov, .framer-FHu7m .framer-1hxcp7a, .framer-FHu7m .framer-kworxh, .framer-FHu7m .framer-11tgj4r, .framer-FHu7m .framer-1ufgvjs, .framer-FHu7m .framer-1ydxvoh, .framer-FHu7m .framer-o7zgo1, .framer-FHu7m .framer-1p3gi70, .framer-FHu7m .framer-1heu76q, .framer-FHu7m .framer-iqneoc, .framer-FHu7m .framer-v13nh7, .framer-FHu7m .framer-ahtvim, .framer-FHu7m .framer-1odgdb6, .framer-FHu7m .framer-15e80cw, .framer-FHu7m .framer-11pzlwm, .framer-FHu7m .framer-gptszl, .framer-FHu7m .framer-bmlfa0, .framer-FHu7m .framer-r0x1jl, .framer-FHu7m .framer-1wqub68, .framer-FHu7m .framer-bzevgf, .framer-FHu7m .framer-ybjfwc, .framer-FHu7m .framer-lvpx2e, .framer-FHu7m .framer-1lpq6w4, .framer-FHu7m .framer-1o1skkv, .framer-FHu7m .framer-10srr6w, .framer-FHu7m .framer-18z1ie3, .framer-FHu7m .framer-8ilrri, .framer-FHu7m .framer-4kvgh9, .framer-FHu7m .framer-1jcu0dz, .framer-FHu7m .framer-1rwcl8y, .framer-FHu7m .framer-zlqy3n, .framer-FHu7m .framer-c2cfl3, .framer-FHu7m .framer-1p6dopq, .framer-FHu7m .framer-1oqz339, .framer-FHu7m .framer-1msxmik { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1bthpt6, .framer-FHu7m .framer-1apif2y, .framer-FHu7m .framer-d13ye8, .framer-FHu7m .framer-1xx0n56, .framer-FHu7m .framer-1qnqiyl, .framer-FHu7m .framer-9x4c4o, .framer-FHu7m .framer-p02gbo, .framer-FHu7m .framer-hnixys, .framer-FHu7m .framer-1et0mor, .framer-FHu7m .framer-px3qrm, .framer-FHu7m .framer-vmoqua, .framer-FHu7m .framer-1wygw3s, .framer-FHu7m .framer-56s4ed, .framer-FHu7m .framer-1uzwjke, .framer-FHu7m .framer-1vnpd28 { flex: none; height: 4px; position: relative; width: 12px; }\",\".framer-FHu7m .framer-19bzncd, .framer-FHu7m .framer-xwz4dc, .framer-FHu7m .framer-1x8tj0z, .framer-FHu7m .framer-1fm1ywa, .framer-FHu7m .framer-c815ih, .framer-FHu7m .framer-vd8yn1 { flex: none; height: 4px; position: relative; width: 9px; }\",\".framer-FHu7m .framer-1wb4326, .framer-FHu7m .framer-18yz4eu, .framer-FHu7m .framer-18qvmz5, .framer-FHu7m .framer-1aypl9x, .framer-FHu7m .framer-1th2hum, .framer-FHu7m .framer-qswool { flex: none; height: 4px; position: relative; width: 11px; }\",\".framer-FHu7m .framer-1bprzyz, .framer-FHu7m .framer-1onz26p, .framer-FHu7m .framer-10ekk36, .framer-FHu7m .framer-1emlyv6, .framer-FHu7m .framer-1e4fo3c, .framer-FHu7m .framer-nha2z0 { flex: none; height: 4px; position: relative; width: 13px; }\",\".framer-FHu7m .framer-1its76k, .framer-FHu7m .framer-7yuww8, .framer-FHu7m .framer-1tanl0r, .framer-FHu7m .framer-1hsl49u, .framer-FHu7m .framer-1iruve0, .framer-FHu7m .framer-tuavo8 { flex: none; height: 4px; position: relative; width: 17px; }\",\".framer-FHu7m .framer-syeory, .framer-FHu7m .framer-hah5pp, .framer-FHu7m .framer-zkor5v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FHu7m .framer-7bt5o, .framer-FHu7m .framer-mlyfsa, .framer-FHu7m .framer-187kx6l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-q3ajp0, .framer-FHu7m .framer-f5g7ew, .framer-FHu7m .framer-8v89gb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0.32000020146369934px 1.2800008058547974px 0.32000020146369934px 1.2800008058547974px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-le8xl2, .framer-FHu7m .framer-1ixsl3u, .framer-FHu7m .framer-oks0uy, .framer-FHu7m .framer-1qfevvf, .framer-FHu7m .framer-1ap67nb, .framer-FHu7m .framer-svfalt, .framer-FHu7m .framer-115hbvh, .framer-FHu7m .framer-1yum3me, .framer-FHu7m .framer-4an93v, .framer-FHu7m .framer-1i4d62p, .framer-FHu7m .framer-1f2o362, .framer-FHu7m .framer-189eufs, .framer-FHu7m .framer-15eaac, .framer-FHu7m .framer-1ocvlyh, .framer-FHu7m .framer-7e9gws, .framer-FHu7m .framer-8by4kq, .framer-FHu7m .framer-4om665, .framer-FHu7m .framer-1dqll1o, .framer-FHu7m .framer-179fzg3, .framer-FHu7m .framer-w19xq3, .framer-FHu7m .framer-y1u2mc, .framer-FHu7m .framer-18cked0, .framer-FHu7m .framer-8lhg68, .framer-FHu7m .framer-13jol24, .framer-FHu7m .framer-15byxe7, .framer-FHu7m .framer-t9j8vn, .framer-FHu7m .framer-m863i4 { flex: none; height: 4px; position: relative; width: 6px; }\",\".framer-FHu7m .framer-61hqgs, .framer-FHu7m .framer-10mni51, .framer-FHu7m .framer-zziouz, .framer-FHu7m .framer-1o38ogc, .framer-FHu7m .framer-4zvbso, .framer-FHu7m .framer-owdio0, .framer-FHu7m .framer-sgfp33, .framer-FHu7m .framer-mucaw7, .framer-FHu7m .framer-1oosnbh, .framer-FHu7m .framer-1c2avl1, .framer-FHu7m .framer-tu1tiz, .framer-FHu7m .framer-1yshij3, .framer-FHu7m .framer-2bjogu, .framer-FHu7m .framer-1nux3g, .framer-FHu7m .framer-1u0bom3, .framer-FHu7m .framer-ikreoy, .framer-FHu7m .framer-ohjn11, .framer-FHu7m .framer-o0q414, .framer-FHu7m .framer-esvye8, .framer-FHu7m .framer-fgb5yx, .framer-FHu7m .framer-zxtwk3, .framer-FHu7m .framer-6duggh, .framer-FHu7m .framer-xp7c9g, .framer-FHu7m .framer-1envewf, .framer-FHu7m .framer-11iyecx, .framer-FHu7m .framer-1repxy9, .framer-FHu7m .framer-1kevkmx { flex: none; height: 4px; position: relative; width: 14px; }\",\".framer-FHu7m .framer-1jzsizh, .framer-FHu7m .framer-1wzbgcw, .framer-FHu7m .framer-y8bod, .framer-FHu7m .framer-1dshedt, .framer-FHu7m .framer-1xd6ekz, .framer-FHu7m .framer-191g9am, .framer-FHu7m .framer-1as760n, .framer-FHu7m .framer-yuy37x, .framer-FHu7m .framer-5g4gq7 { flex: none; height: 4px; position: relative; width: 8px; }\",\".framer-FHu7m .framer-kbvuko, .framer-FHu7m .framer-1e6tslk, .framer-FHu7m .framer-mhmba, .framer-FHu7m .framer-1ekuibd, .framer-FHu7m .framer-1uf1ckb, .framer-FHu7m .framer-1potijd, .framer-FHu7m .framer-9my3q8, .framer-FHu7m .framer-w3ey3a, .framer-FHu7m .framer-16x5zkl, .framer-FHu7m .framer-17dcokr, .framer-FHu7m .framer-1mdgxw2, .framer-FHu7m .framer-45zh9e, .framer-FHu7m .framer-1agzesv, .framer-FHu7m .framer-g0ouwf, .framer-FHu7m .framer-8ibunj, .framer-FHu7m .framer-5rqeq8, .framer-FHu7m .framer-12mct9e, .framer-FHu7m .framer-1kupdic { flex: none; height: 4px; position: relative; width: 16px; }\",\".framer-FHu7m .framer-rhkgkv, .framer-FHu7m .framer-49xeur, .framer-FHu7m .framer-l0dq9j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-imubhf, .framer-FHu7m .framer-6h1c39, .framer-FHu7m .framer-p2jlbh { flex: none; height: 100%; position: relative; width: 1px; }\",\".framer-FHu7m .framer-9sdx89, .framer-FHu7m .framer-33zfla, .framer-FHu7m .framer-8iufxt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1ejwdrd, .framer-FHu7m .framer-85fehg, .framer-FHu7m .framer-12x18ga { flex: none; height: 36px; position: relative; width: 230px; }\",\".framer-FHu7m .framer-6pm9yo { align-content: flex-start; align-items: flex-start; bottom: 1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 16px 24px 16px; position: absolute; right: -1px; width: min-content; }\",\".framer-FHu7m .framer-1wffltk, .framer-FHu7m .framer-1sgiywi, .framer-FHu7m .framer-9fxgnx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1fy5fby-container, .framer-FHu7m .framer-172ki6r-container, .framer-FHu7m .framer-1c4dxc1-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-FHu7m .framer-9xg6qm, .framer-FHu7m .framer-19yphs, .framer-FHu7m .framer-eid3xw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 137px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-c25aao, .framer-FHu7m .framer-m26i6g, .framer-FHu7m .framer-1sssotp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1ay89jy, .framer-FHu7m .framer-6g5tbo, .framer-FHu7m .framer-1wpa26x, .framer-FHu7m .framer-t5ewb4, .framer-FHu7m .framer-13dmtgb, .framer-FHu7m .framer-1eel6y9, .framer-FHu7m .framer-twbqv0, .framer-FHu7m .framer-1fobzv7, .framer-FHu7m .framer-1imzdhh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-e4wmp6, .framer-FHu7m .framer-lot5yv, .framer-FHu7m .framer-cr52yv, .framer-FHu7m .framer-156lnjh, .framer-FHu7m .framer-1q3zzjl, .framer-FHu7m .framer-tviwi5, .framer-FHu7m .framer-14es9au, .framer-FHu7m .framer-1q00c9g, .framer-FHu7m .framer-i3yjwx { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-FHu7m .framer-8s8yp7, .framer-FHu7m .framer-p0d2y0, .framer-FHu7m .framer-1p1uxl2, .framer-FHu7m .framer-19jbcql, .framer-FHu7m .framer-1pp42xd, .framer-FHu7m .framer-7pino7, .framer-FHu7m .framer-1511lwq, .framer-FHu7m .framer-1hqpe3r, .framer-FHu7m .framer-exk17h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 118px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-83glon { bottom: 78px; flex: none; height: 58px; left: 134px; position: absolute; width: 55px; }\",\".framer-FHu7m .framer-1r4081m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 207px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-st6y7b { flex: none; height: 31px; position: relative; width: 360px; }\",\".framer-FHu7m .framer-15ryhx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1gs0dx5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 113px; }\",\".framer-FHu7m .framer-ngdjk8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 6.666666507720947px 0px 6.666666507720947px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-plbqfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1ipcw1u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 17px; overflow: visible; padding: 0px; position: relative; width: 17px; }\",\".framer-FHu7m .framer-11uajx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6.666666507720947px 0px 6.666666507720947px 6.666666507720947px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-3x2td5 { flex: none; height: 21px; position: relative; width: 16px; }\",\".framer-FHu7m .framer-1p71urd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-h3n4ht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 39px; }\",\".framer-FHu7m .framer-mml5xs { flex: none; height: 6px; position: relative; white-space: pre-wrap; width: 96px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1l3al3w { flex: none; height: 18px; position: relative; white-space: pre-wrap; width: 65px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1df3zbc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 3.3333332538604736px 10px 3.3333332538604736px 10px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-giurpd, .framer-FHu7m .framer-1tiux0, .framer-FHu7m .framer-1s0hla3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-16z0v49 { flex: none; height: 6px; overflow: visible; position: relative; width: 7px; }\",\".framer-FHu7m .framer-1poiys0 { aspect-ratio: 1.2272727272727273 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 6px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-FHu7m .framer-wnzup { bottom: 1px; flex: none; left: -1px; position: absolute; right: 1px; top: -1px; }\",\".framer-FHu7m .framer-uvyv4j { flex: none; height: 4px; position: relative; width: 84px; }\",\".framer-FHu7m .framer-1e34ivu { aspect-ratio: 1.1666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: visible; position: relative; width: 7px; }\",\".framer-FHu7m .framer-1udnzci { bottom: 4px; flex: none; left: 0px; position: absolute; right: 1px; top: -1px; }\",\".framer-FHu7m .framer-1xlz427 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 6px; top: 3px; }\",\".framer-FHu7m .framer-503luw { bottom: 0px; flex: none; left: 5px; position: absolute; right: 0px; top: 3px; }\",\".framer-FHu7m .framer-yh5mm4 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 6px; top: 3px; }\",\".framer-FHu7m .framer-jzxf1v { bottom: 1px; flex: none; left: 4px; position: absolute; right: 2px; top: 3px; }\",\".framer-FHu7m .framer-1hziqx5 { flex: none; height: 3px; position: relative; width: 84px; }\",\".framer-FHu7m .framer-15lj04 { flex: none; height: 8px; overflow: visible; position: relative; width: 7px; }\",\".framer-FHu7m .framer-t2e2g1 { aspect-ratio: 0.9 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 8px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-FHu7m .framer-l9h6om { bottom: 1px; flex: none; left: 1px; position: absolute; right: 0px; top: 1px; }\",\".framer-FHu7m .framer-1qfo3ws { bottom: 1px; flex: none; left: 0px; position: absolute; right: 2px; top: 0px; }\",\".framer-FHu7m .framer-xkhxct { bottom: 2px; flex: none; left: 0px; position: absolute; right: 3px; top: -1px; }\",\".framer-FHu7m .framer-jk3z2d { bottom: 3px; flex: none; left: 2px; position: absolute; right: 2px; top: 4px; }\",\".framer-FHu7m .framer-1t0ctb2 { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; top: 5px; }\",\".framer-FHu7m .framer-17hb32u { bottom: 1px; flex: none; left: 2px; position: absolute; right: 2px; top: 6px; }\",\".framer-FHu7m .framer-1wi119t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 81px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-156l65z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 225px; }\",\".framer-FHu7m .framer-akn021 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-mvbaip, .framer-FHu7m .framer-1wa9dxt, .framer-FHu7m .framer-hip2kr, .framer-FHu7m .framer-2tcby2, .framer-FHu7m .framer-1tp3eu, .framer-FHu7m .framer-42xp2p, .framer-FHu7m .framer-17375uo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-18plt74 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 19px; overflow: visible; padding: 0px; position: relative; width: 19px; }\",\".framer-FHu7m .framer-ij8sdh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 19px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 19px; }\",\".framer-FHu7m .framer-vr3lyx, .framer-FHu7m .framer-1kefjo7, .framer-FHu7m .framer-1mo5leo, .framer-FHu7m .framer-1nf6pgw, .framer-FHu7m .framer-6gygef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 19px; justify-content: flex-start; overflow: visible; padding: 3.389963150024414px; position: relative; width: 19px; }\",\".framer-FHu7m .framer-1tznid7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px 6.666666507720947px 10px 6.666666507720947px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1jq2c23 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 155px; }\",\".framer-FHu7m .framer-rmsl6a, .framer-FHu7m .framer-8bh62j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 155px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-yzdrv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 12px; justify-content: center; overflow: visible; padding: 2.5px 6px 2.5px 6px; position: relative; width: 37px; }\",\".framer-FHu7m .framer-lo3hvz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6.666666507720947px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1d6a9pe { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 93px; }\",\".framer-FHu7m .framer-1qlat4h { flex: none; height: 7px; position: relative; white-space: pre-wrap; width: 93px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1y8r74l { flex: none; height: 17px; position: relative; white-space: pre-wrap; width: 93px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1ow6woi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 18px; justify-content: flex-start; overflow: visible; padding: 5.416666507720947px 3.75px 5.416666507720947px 3.75px; position: relative; width: 97px; }\",\".framer-FHu7m .framer-1glzkpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px 3px 4px 3px; position: relative; width: 97px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-1r53syh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 66px; }\",\".framer-FHu7m .framer-anqlii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 10px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-1v43ln2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: visible; position: relative; width: 6px; }\",\".framer-FHu7m .framer-1hu5wfq { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 6px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-FHu7m .framer-sa2u54 { bottom: 3px; flex: none; left: -1px; position: absolute; right: 3px; top: -1px; }\",\".framer-FHu7m .framer-pd36zf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 53px; }\",\".framer-FHu7m .framer-lyfu00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px 6.666666507720947px 10px 6.666666507720947px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1e1xsab { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 120px; }\",\".framer-FHu7m .framer-h7y29b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 120px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1tckgpf { align-content: center; align-items: center; 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: min-content; }\",\".framer-FHu7m .framer-1r63mq7 { flex: none; height: 9px; overflow: visible; position: relative; width: 9px; }\",\".framer-FHu7m .framer-ojud7l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-FHu7m .framer-bhj4wc { flex: none; height: 3px; left: 0px; position: absolute; top: 3px; white-space: pre-wrap; width: 8px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-16tgv95, .framer-FHu7m .framer-mb5e2d { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; }\",\".framer-FHu7m .framer-ucqz5s { flex: none; height: 3px; position: relative; white-space: pre-wrap; width: 22px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-4oeak3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 12px; justify-content: center; overflow: visible; padding: 2.5px 6px 2.5px 6px; position: relative; width: 38px; }\",\".framer-FHu7m .framer-1bpskkl-container { flex: none; height: 527px; position: relative; width: 90%; }\",\".framer-FHu7m .framer-1trtn4j { 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; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-xqbbw8 { flex: none; height: 367px; overflow: var(--8wzv9z); position: relative; width: 480px; }\",\".framer-FHu7m .framer-1474egi { flex: none; height: 287px; left: 138px; position: absolute; top: 69px; width: 332px; }\",\".framer-FHu7m .framer-1r46mgf { flex: none; height: 37px; left: 11px; position: absolute; top: 69px; width: 120px; }\",\".framer-FHu7m .framer-zdid1y { flex: none; height: 37px; left: 11px; position: absolute; top: 111px; width: 120px; }\",\".framer-FHu7m .framer-wsuhnq { flex: none; height: 307px; left: -210px; position: absolute; top: 511px; width: 305px; }\",\".framer-FHu7m .framer-1tcgi2x { flex: none; height: 290px; left: -264px; position: absolute; top: 708px; width: 289px; }\",\".framer-FHu7m .framer-1p2ewup { flex: none; height: 614px; left: 129px; position: absolute; top: 528px; width: 659px; }\",\".framer-FHu7m .framer-6f9hha { flex: none; height: 175px; left: 406px; position: absolute; top: 559px; width: 168px; }\",\".framer-FHu7m .framer-19pguy3 { flex: none; height: 11px; left: 51px; overflow: visible; position: absolute; top: 662px; width: 11px; }\",\".framer-FHu7m .framer-sh6v29 { flex: none; height: 6px; left: calc(50.006106496221214% - 4px / 2); overflow: hidden; position: absolute; top: calc(51.56173864374986% - 6.3333330154418945px / 2); width: 4px; }\",\".framer-FHu7m .framer-dq2oo1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 480px; }\",\".framer-FHu7m .framer-1avw6aa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 12.333333015441895px 0px 12.333333015441895px; position: relative; width: 480px; }\",\".framer-FHu7m .framer-5lpl16 { flex: none; height: 13px; position: relative; width: 79px; }\",\".framer-FHu7m .framer-1ke7m5e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 157px; }\",\".framer-FHu7m .framer-1min7jw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; min-height: 32px; min-width: 38px; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-16i5pbq { flex: none; height: 140px; left: calc(14.340413411458334% - 115px / 2); overflow: visible; position: absolute; top: 155px; width: 115px; }\",\".framer-FHu7m .framer-1l2zais { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 3px; width: 115px; }\",\".framer-FHu7m .framer-1ho4z9c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-260i4m, .framer-FHu7m .framer-9gf1ih, .framer-FHu7m .framer-eqtu9a, .framer-FHu7m .framer-sx9911, .framer-FHu7m .framer-1u90p6a, .framer-FHu7m .framer-1w6uxiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-8udzde { flex: none; height: 5px; position: relative; width: 41px; }\",\".framer-FHu7m .framer-1lat0bo { flex: none; height: 5px; position: relative; width: 32px; }\",\".framer-FHu7m .framer-fvbibc { flex: none; height: 5px; position: relative; width: 28px; }\",\".framer-FHu7m .framer-e0czun, .framer-FHu7m .framer-fv8i8g, .framer-FHu7m .framer-q6tspk, .framer-FHu7m .framer-1voqqkz, .framer-FHu7m .framer-1sdf6eg, .framer-FHu7m .framer-a9tsys { flex: none; height: 5px; position: relative; width: 20px; }\",\".framer-FHu7m .framer-1jho2y9 { flex: none; height: 5px; position: relative; width: 40px; }\",\".framer-FHu7m .framer-yzm40b { flex: none; height: 9px; left: 11px; position: absolute; top: 49px; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-6um1s1 { flex: none; height: 9px; left: 138px; position: absolute; top: 49px; white-space: pre-wrap; width: 119px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-fp7uni { flex: none; height: 23px; left: 17px; overflow: visible; position: absolute; top: 117px; width: 109px; }\",\".framer-FHu7m .framer-1hh7cug { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 23px; justify-content: flex-start; left: 0px; overflow: visible; padding: 7.185185432434082px; position: absolute; top: 0px; width: 23px; }\",\".framer-FHu7m .framer-xh0daw { flex: none; height: auto; left: 27px; position: absolute; top: 3px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1i7j5ky { flex: none; height: auto; left: 27px; position: absolute; top: 14px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1ew8omw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 23px; justify-content: flex-start; left: 17px; overflow: visible; padding: 7.185185432434082px; position: absolute; top: 75px; width: 23px; }\",\".framer-FHu7m .framer-165dgeq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; left: 44px; overflow: visible; padding: 0px; position: absolute; top: 79px; width: min-content; }\",\".framer-FHu7m .framer-lin6fr, .framer-FHu7m .framer-u13tla { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-512jof { flex: none; height: 16px; left: 154px; position: absolute; top: 225px; width: 140px; }\",\".framer-FHu7m .framer-aihj0b { flex: none; height: 16px; left: 312px; position: absolute; top: 225px; width: 142px; }\",\".framer-FHu7m .framer-1ln9rol { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 457px; overflow: hidden; position: absolute; top: 43px; width: 13px; }\",\".framer-FHu7m .framer-b7tqsq { bottom: 5px; flex: none; left: 2px; position: absolute; right: 5px; top: 2px; }\",\".framer-FHu7m .framer-1nhay6m { flex: none; height: 25px; left: 158px; overflow: visible; position: absolute; top: 86px; width: 285px; }\",\".framer-FHu7m .framer-uhaaos { flex: none; height: auto; left: 0px; position: absolute; top: 7px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1griqel { flex: none; height: auto; left: 241px; position: absolute; top: 5px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-exf36q { flex: none; height: 11px; left: 59px; position: absolute; top: 2px; width: 207px; }\",\".framer-FHu7m .framer-1w99g6e { flex: none; height: 25px; left: 215px; overflow: visible; position: absolute; top: 0px; width: 18px; }\",\".framer-FHu7m .framer-jgoxw3, .framer-FHu7m .framer-6dw6db, .framer-FHu7m .framer-9qqnfa, .framer-FHu7m .framer-10a467q { flex: none; height: 6px; left: 0px; position: absolute; top: 18px; white-space: pre-wrap; width: 18px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-8ru12o, .framer-FHu7m .framer-2j68eh, .framer-FHu7m .framer-1onarli, .framer-FHu7m .framer-1xj1tck { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 17px; justify-content: flex-start; left: 1px; overflow: visible; padding: 7.185185432434082px; position: absolute; top: 0px; width: 17px; }\",\".framer-FHu7m .framer-11f34r { flex: none; height: 25px; left: 222px; overflow: visible; position: absolute; top: 87px; width: 24px; }\",\".framer-FHu7m .framer-iqm3m0, .framer-FHu7m .framer-1j5alhj, .framer-FHu7m .framer-a9m1on, .framer-FHu7m .framer-5o853y { flex: none; height: 6px; left: 0px; position: absolute; top: 18px; white-space: pre-wrap; width: 24px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-63jrgz, .framer-FHu7m .framer-sxbwc0, .framer-FHu7m .framer-1djdxkw, .framer-FHu7m .framer-182ez41 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 17px; justify-content: flex-start; left: 5px; overflow: visible; padding: 7.185185432434082px; position: absolute; top: 0px; width: 17px; }\",\".framer-FHu7m .framer-1epaduu { flex: none; height: 25px; left: 158px; overflow: visible; position: absolute; top: 118px; width: 285px; }\",\".framer-FHu7m .framer-1pawv0d { flex: none; height: auto; left: 0px; position: absolute; top: 8px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-7othhm { flex: none; height: auto; left: 241px; position: absolute; top: 7px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-33gheo { flex: none; height: 11px; left: 59px; position: absolute; top: 4px; width: 207px; }\",\".framer-FHu7m .framer-760pv4 { flex: none; height: 25px; left: 189px; overflow: visible; position: absolute; top: 0px; width: 24px; }\",\".framer-FHu7m .framer-1holyut { flex: none; height: 25px; left: 120px; overflow: visible; position: absolute; top: 0px; width: 18px; }\",\".framer-FHu7m .framer-10bvdrn { flex: none; height: 25px; left: 158px; overflow: visible; position: absolute; top: 151px; width: 285px; }\",\".framer-FHu7m .framer-11cpltz { flex: none; height: auto; left: 0px; position: absolute; top: 8px; white-space: pre-wrap; width: 53px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1ef9wsd { flex: none; height: auto; left: 241px; position: absolute; top: 4px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1y4qv1d { flex: none; height: 11px; left: 59px; position: absolute; top: 1px; width: 207px; }\",\".framer-FHu7m .framer-1dbvzsm { flex: none; height: 25px; left: 109px; overflow: visible; position: absolute; top: 0px; width: 18px; }\",\".framer-FHu7m .framer-1649689 { flex: none; height: 25px; left: 391px; overflow: visible; position: absolute; top: 152px; width: 24px; }\",\".framer-FHu7m .framer-1sblvqs { flex: none; height: 25px; left: 158px; overflow: visible; position: absolute; top: 185px; width: 285px; }\",\".framer-FHu7m .framer-4di8om { flex: none; height: auto; left: 0px; position: absolute; top: 6px; white-space: pre-wrap; width: 54px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-ir0m7w { flex: none; height: auto; left: 241px; position: absolute; top: 3px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-FHu7m .framer-1vhx44a { flex: none; height: 11px; left: 59px; position: absolute; top: 0px; width: 207px; }\",\".framer-FHu7m .framer-184n1z3 { flex: none; height: 25px; left: 182px; overflow: visible; position: absolute; top: 0px; width: 18px; }\",\".framer-FHu7m .framer-1ccol48 { flex: none; height: 25px; left: 224px; overflow: visible; position: absolute; top: 185px; width: 24px; }\",\".framer-FHu7m .framer-1xhtsj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; left: 244px; overflow: visible; padding: 0px; position: absolute; top: 49px; width: min-content; }\",\".framer-FHu7m .framer-1ykhr7t, .framer-FHu7m .framer-1fhyb7t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); position: relative; width: 3px; }\",\".framer-FHu7m .framer-bovx17 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; left: 278px; overflow: visible; padding: 0px; position: absolute; top: 49px; width: min-content; }\",\".framer-FHu7m .framer-xd28a5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 312px; overflow: hidden; padding: 0px; position: absolute; top: 248px; width: min-content; }\",\".framer-FHu7m .framer-8mc6vy, .framer-FHu7m .framer-pvepq8, .framer-FHu7m .framer-1ww57c8, .framer-FHu7m .framer-r2twmw, .framer-FHu7m .framer-16o07vk, .framer-FHu7m .framer-tscrmb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-1y5ulpz, .framer-FHu7m .framer-1ovew5t, .framer-FHu7m .framer-je8vpr, .framer-FHu7m .framer-pyyh6f, .framer-FHu7m .framer-xdc65h, .framer-FHu7m .framer-1pcixyy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FHu7m .framer-aa8etv, .framer-FHu7m .framer-x19u4c, .framer-FHu7m .framer-1gie3iw, .framer-FHu7m .framer-ivkyv9, .framer-FHu7m .framer-zxapfm, .framer-FHu7m .framer-1627thk { flex: none; height: 5px; position: relative; width: 23px; }\",\".framer-FHu7m .framer-12nzzma, .framer-FHu7m .framer-136ws2w, .framer-FHu7m .framer-1fr2rdc, .framer-FHu7m .framer-1eitnpm, .framer-FHu7m .framer-ewi9pf, .framer-FHu7m .framer-4fctwr { flex: none; height: 5px; position: relative; width: 17px; }\",\".framer-FHu7m .framer-1lv2xfz, .framer-FHu7m .framer-1sncsl6, .framer-FHu7m .framer-1xq5re5, .framer-FHu7m .framer-18s456b, .framer-FHu7m .framer-17baels, .framer-FHu7m .framer-5e05hv { flex: none; height: 5px; position: relative; width: 13px; }\",\".framer-FHu7m .framer-s048z, .framer-FHu7m .framer-s7fgqe { flex: none; height: 5px; position: relative; width: 16px; }\",\".framer-FHu7m .framer-18psk14, .framer-FHu7m .framer-1vxrniw, .framer-FHu7m .framer-yh9rwe, .framer-FHu7m .framer-1odcr2q { flex: none; height: 5px; position: relative; width: 19px; }\",\".framer-FHu7m .framer-bbveif, .framer-FHu7m .framer-1l9sv6q, .framer-FHu7m .framer-mvccgi, .framer-FHu7m .framer-1r4eyf0, .framer-FHu7m .framer-1m9uz33, .framer-FHu7m .framer-ap9ymy { flex: none; height: 5px; position: relative; width: 25px; }\",\".framer-FHu7m .framer-1lijhkm, .framer-FHu7m .framer-1jjljio, .framer-FHu7m .framer-3hi6ru, .framer-FHu7m .framer-1o6bxt8 { flex: none; height: 5px; position: relative; width: 24px; }\",\".framer-FHu7m .framer-gfw0dr, .framer-FHu7m .framer-1xmny0n, .framer-FHu7m .framer-p2l85s, .framer-FHu7m .framer-18070jv { flex: none; height: 5px; position: relative; width: 10px; }\",\".framer-FHu7m .framer-1ok6553, .framer-FHu7m .framer-1osn07z, .framer-FHu7m .framer-10fgiex, .framer-FHu7m .framer-xnjkhs, .framer-FHu7m .framer-xwx75c, .framer-FHu7m .framer-xrum0s, .framer-FHu7m .framer-1fi7u06, .framer-FHu7m .framer-185065z { flex: none; height: 5px; position: relative; width: 21px; }\",\".framer-FHu7m .framer-19snd3l, .framer-FHu7m .framer-mhnpd3 { flex: none; height: 5px; position: relative; width: 36px; }\",\".framer-FHu7m .framer-c3x284, .framer-FHu7m .framer-1o491pg { flex: none; height: 5px; position: relative; width: 27px; }\",\".framer-FHu7m .framer-4a54hd, .framer-FHu7m .framer-1uytbh9 { flex: none; height: 5px; position: relative; width: 11px; }\",\".framer-FHu7m .framer-1juty4p, .framer-FHu7m .framer-1kza3ab, .framer-FHu7m .framer-31i6j9, .framer-FHu7m .framer-cw9ids, .framer-FHu7m .framer-1872vgb, .framer-FHu7m .framer-1c9xueg, .framer-FHu7m .framer-thp1qt, .framer-FHu7m .framer-1ukb1f6 { flex: none; height: 5px; position: relative; width: 18px; }\",\".framer-FHu7m .framer-1o7pj2o, .framer-FHu7m .framer-17av1bn { flex: none; height: 5px; position: relative; width: 34px; }\",\".framer-FHu7m .framer-phjvup, .framer-FHu7m .framer-13jn56u, .framer-FHu7m .framer-x82kgx, .framer-FHu7m .framer-1w4mkgt, .framer-FHu7m .framer-1gzxclf, .framer-FHu7m .framer-l26gok { flex: none; height: 5px; position: relative; width: 8px; }\",\".framer-FHu7m .framer-1oxey4t, .framer-FHu7m .framer-1q7k1h8 { flex: none; height: 5px; position: relative; width: 22px; }\",\".framer-FHu7m .framer-1yob7z7, .framer-FHu7m .framer-1bo1ve9 { flex: none; height: 5px; position: relative; width: 12px; }\",\".framer-FHu7m .framer-m1p7xh, .framer-FHu7m .framer-wz8o5m { flex: none; height: 5px; position: relative; width: 14px; }\",\".framer-FHu7m .framer-j0twvv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: 405px; overflow: hidden; position: absolute; top: 11px; width: 11px; }\",\".framer-FHu7m .framer-1r2qjcu { bottom: 3px; flex: none; left: 0px; position: absolute; right: 3px; top: 0px; }\",\".framer-FHu7m .framer-i07iqb { bottom: 347px; flex: none; left: 430px; position: absolute; right: 42px; top: 11px; }\",\".framer-FHu7m .framer-1lg6fb9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 440px; position: absolute; top: 10px; width: 3px; }\",\".framer-FHu7m .framer-r0lzqm { flex: none; height: 7px; left: 458px; position: absolute; top: 13px; width: 10px; }\",\".framer-FHu7m .framer-1tfn7sc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 157px; overflow: hidden; padding: 0px; position: absolute; top: 248px; width: min-content; }\",\".framer-FHu7m .framer-npnnch-container { flex: none; height: 849px; position: relative; width: 240px; }\",\".framer-FHu7m .framer-16ikh08, .framer-FHu7m .framer-1500xhl, .framer-FHu7m .framer-1d0hlfo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 240px; }\",\".framer-FHu7m .framer-1hl3fpq, .framer-FHu7m .framer-z32ggl, .framer-FHu7m .framer-17y14lx, .framer-FHu7m .framer-1knoo30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 348px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1vydlyb, .framer-FHu7m .framer-qw6ofc, .framer-FHu7m .framer-1j0wmfq, .framer-FHu7m .framer-a3zdl3, .framer-FHu7m .framer-1vmds0d, .framer-FHu7m .framer-zn0s5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-FHu7m .framer-10gi7gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1m335es { flex: none; height: 348px; overflow: visible; position: relative; width: 100%; }\",\".framer-FHu7m .framer-12sf8pi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 199px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FHu7m .framer-1reiahr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 51%; overflow: visible; padding: 16px 16px 24px 16px; position: absolute; top: 51%; width: min-content; }\",\".framer-FHu7m .framer-1fyxrsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 766px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FHu7m .framer-1ggx4si-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-FHu7m .framer-sz1ph3, .framer-FHu7m .framer-c59wy8, .framer-FHu7m .framer-piy165 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 390px; }\",\".framer-FHu7m .framer-wa6d40 { flex: none; height: 348px; overflow: visible; position: relative; width: 359px; }\",\".framer-FHu7m .framer-1gce9t4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 16px 24px 16px; position: absolute; right: -1px; top: 51%; width: min-content; }\",\".framer-FHu7m .framer-1rvu5zb { bottom: 73px; flex: none; height: 58px; left: 134px; position: absolute; width: 55px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FHu7m.framer-1ye6yvf, .framer-FHu7m .framer-16t24p1, .framer-FHu7m .framer-bq59v0, .framer-FHu7m .framer-1o8ulih, .framer-FHu7m .framer-1n2o0et, .framer-FHu7m .framer-t9lfgf, .framer-FHu7m .framer-x0b16s, .framer-FHu7m .framer-of5ml2, .framer-FHu7m .framer-dp0nb7, .framer-FHu7m .framer-klhsw5, .framer-FHu7m .framer-1tvkujv, .framer-FHu7m .framer-1n2rni2, .framer-FHu7m .framer-1ei5on9, .framer-FHu7m .framer-2qdc4q, .framer-FHu7m .framer-uzuil7, .framer-FHu7m .framer-3d02e4, .framer-FHu7m .framer-1wstzqn, .framer-FHu7m .framer-5k0jtg, .framer-FHu7m .framer-pjfhwr, .framer-FHu7m .framer-zki2qa, .framer-FHu7m .framer-tgwe89, .framer-FHu7m .framer-ui6w1m, .framer-FHu7m .framer-k09uzi, .framer-FHu7m .framer-1lhpjfc, .framer-FHu7m .framer-3nmtg6, .framer-FHu7m .framer-6bgt0f, .framer-FHu7m .framer-1n52369, .framer-FHu7m .framer-140vvsj, .framer-FHu7m .framer-a71a08, .framer-FHu7m .framer-1ucq60m, .framer-FHu7m .framer-n8e2fw, .framer-FHu7m .framer-10g1wvk, .framer-FHu7m .framer-1ref9th, .framer-FHu7m .framer-ordpox, .framer-FHu7m .framer-1pd0v3b, .framer-FHu7m .framer-1c30unw, .framer-FHu7m .framer-1jkaaa, .framer-FHu7m .framer-1cuza7l, .framer-FHu7m .framer-vkbm9m, .framer-FHu7m .framer-qak9ro, .framer-FHu7m .framer-wx7l2n, .framer-FHu7m .framer-3khnak, .framer-FHu7m .framer-1c64h7g, .framer-FHu7m .framer-86s3hz, .framer-FHu7m .framer-1qu2q60, .framer-FHu7m .framer-16iw716, .framer-FHu7m .framer-yfiayy, .framer-FHu7m .framer-an6gc2, .framer-FHu7m .framer-52u4mf, .framer-FHu7m .framer-8xrazb, .framer-FHu7m .framer-1ki0ots, .framer-FHu7m .framer-pv7k9c, .framer-FHu7m .framer-1h0vi9q, .framer-FHu7m .framer-1bvmd7h, .framer-FHu7m .framer-140qzi6, .framer-FHu7m .framer-1yxp1g9, .framer-FHu7m .framer-iez1yn, .framer-FHu7m .framer-j6otbp, .framer-FHu7m .framer-1861s8u, .framer-FHu7m .framer-1ghr6hf, .framer-FHu7m .framer-5jalra, .framer-FHu7m .framer-1h6orwa, .framer-FHu7m .framer-woids4, .framer-FHu7m .framer-bpxuhs, .framer-FHu7m .framer-1epeeuy, .framer-FHu7m .framer-syeory, .framer-FHu7m .framer-7bt5o, .framer-FHu7m .framer-75xdwb, .framer-FHu7m .framer-q3ajp0, .framer-FHu7m .framer-l5hq1n, .framer-FHu7m .framer-1m18v3n, .framer-FHu7m .framer-rhkgkv, .framer-FHu7m .framer-9sdx89, .framer-FHu7m .framer-1aam77d, .framer-FHu7m .framer-1rl53ov, .framer-FHu7m .framer-10e0zb7, .framer-FHu7m .framer-yc2phy, .framer-FHu7m .framer-jo3hiu, .framer-FHu7m .framer-1hxcp7a, .framer-FHu7m .framer-kworxh, .framer-FHu7m .framer-6pm9yo, .framer-FHu7m .framer-1wffltk, .framer-FHu7m .framer-c25aao, .framer-FHu7m .framer-1ay89jy, .framer-FHu7m .framer-6g5tbo, .framer-FHu7m .framer-1wpa26x, .framer-FHu7m .framer-wfrycw, .framer-FHu7m .framer-u8mspp, .framer-FHu7m .framer-1r4081m, .framer-FHu7m .framer-15ryhx6, .framer-FHu7m .framer-1gs0dx5, .framer-FHu7m .framer-ngdjk8, .framer-FHu7m .framer-plbqfd, .framer-FHu7m .framer-1ipcw1u, .framer-FHu7m .framer-11uajx1, .framer-FHu7m .framer-1p71urd, .framer-FHu7m .framer-h3n4ht, .framer-FHu7m .framer-1df3zbc, .framer-FHu7m .framer-giurpd, .framer-FHu7m .framer-1tiux0, .framer-FHu7m .framer-1s0hla3, .framer-FHu7m .framer-156l65z, .framer-FHu7m .framer-mvbaip, .framer-FHu7m .framer-18plt74, .framer-FHu7m .framer-1wa9dxt, .framer-FHu7m .framer-ij8sdh, .framer-FHu7m .framer-hip2kr, .framer-FHu7m .framer-vr3lyx, .framer-FHu7m .framer-2tcby2, .framer-FHu7m .framer-1kefjo7, .framer-FHu7m .framer-1tp3eu, .framer-FHu7m .framer-1mo5leo, .framer-FHu7m .framer-42xp2p, .framer-FHu7m .framer-1nf6pgw, .framer-FHu7m .framer-17375uo, .framer-FHu7m .framer-6gygef, .framer-FHu7m .framer-1jq2c23, .framer-FHu7m .framer-yzdrv9, .framer-FHu7m .framer-lo3hvz, .framer-FHu7m .framer-1d6a9pe, .framer-FHu7m .framer-1ow6woi, .framer-FHu7m .framer-1glzkpd, .framer-FHu7m .framer-1r53syh, .framer-FHu7m .framer-anqlii, .framer-FHu7m .framer-pd36zf, .framer-FHu7m .framer-1e1xsab, .framer-FHu7m .framer-1tckgpf, .framer-FHu7m .framer-4oeak3, .framer-FHu7m .framer-1kuaoqe, .framer-FHu7m .framer-1lsk15t, .framer-FHu7m .framer-1trtn4j, .framer-FHu7m .framer-dq2oo1, .framer-FHu7m .framer-1min7jw, .framer-FHu7m .framer-1l2zais, .framer-FHu7m .framer-1ho4z9c, .framer-FHu7m .framer-260i4m, .framer-FHu7m .framer-9gf1ih, .framer-FHu7m .framer-eqtu9a, .framer-FHu7m .framer-sx9911, .framer-FHu7m .framer-1u90p6a, .framer-FHu7m .framer-1w6uxiv, .framer-FHu7m .framer-1hh7cug, .framer-FHu7m .framer-1ew8omw, .framer-FHu7m .framer-165dgeq, .framer-FHu7m .framer-8ru12o, .framer-FHu7m .framer-63jrgz, .framer-FHu7m .framer-sxbwc0, .framer-FHu7m .framer-2j68eh, .framer-FHu7m .framer-1onarli, .framer-FHu7m .framer-1djdxkw, .framer-FHu7m .framer-1xj1tck, .framer-FHu7m .framer-182ez41, .framer-FHu7m .framer-1xhtsj9, .framer-FHu7m .framer-bovx17, .framer-FHu7m .framer-xd28a5, .framer-FHu7m .framer-8mc6vy, .framer-FHu7m .framer-1y5ulpz, .framer-FHu7m .framer-11tgj4r, .framer-FHu7m .framer-1ufgvjs, .framer-FHu7m .framer-1ydxvoh, .framer-FHu7m .framer-pvepq8, .framer-FHu7m .framer-1ovew5t, .framer-FHu7m .framer-o7zgo1, .framer-FHu7m .framer-1ww57c8, .framer-FHu7m .framer-je8vpr, .framer-FHu7m .framer-1p3gi70, .framer-FHu7m .framer-1heu76q, .framer-FHu7m .framer-iqneoc, .framer-FHu7m .framer-v13nh7, .framer-FHu7m .framer-1tfn7sc, .framer-FHu7m .framer-r2twmw, .framer-FHu7m .framer-pyyh6f, .framer-FHu7m .framer-ahtvim, .framer-FHu7m .framer-1odgdb6, .framer-FHu7m .framer-15e80cw, .framer-FHu7m .framer-16o07vk, .framer-FHu7m .framer-xdc65h, .framer-FHu7m .framer-11pzlwm, .framer-FHu7m .framer-tscrmb, .framer-FHu7m .framer-1pcixyy, .framer-FHu7m .framer-gptszl, .framer-FHu7m .framer-bmlfa0, .framer-FHu7m .framer-r0x1jl, .framer-FHu7m .framer-1wqub68, .framer-FHu7m .framer-16p9i3z, .framer-FHu7m .framer-16ikh08, .framer-FHu7m .framer-1hl3fpq, .framer-FHu7m .framer-1vydlyb, .framer-FHu7m .framer-1500xhl, .framer-FHu7m .framer-10gi7gx, .framer-FHu7m .framer-12sf8pi, .framer-FHu7m .framer-1f6f9kf, .framer-FHu7m .framer-jl4rdy, .framer-FHu7m .framer-1h5l3co, .framer-FHu7m .framer-px1yxp, .framer-FHu7m .framer-1xgivpm, .framer-FHu7m .framer-1y3tl9m, .framer-FHu7m .framer-ijptzq, .framer-FHu7m .framer-nxedts, .framer-FHu7m .framer-gi0esn, .framer-FHu7m .framer-f78g37, .framer-FHu7m .framer-15xujy2, .framer-FHu7m .framer-85jzat, .framer-FHu7m .framer-6zfamk, .framer-FHu7m .framer-1fij8mo, .framer-FHu7m .framer-1l2n26a, .framer-FHu7m .framer-1bqvn48, .framer-FHu7m .framer-s4qez0, .framer-FHu7m .framer-1vhuxqb, .framer-FHu7m .framer-yoxn1j, .framer-FHu7m .framer-jx3wnd, .framer-FHu7m .framer-5u7trw, .framer-FHu7m .framer-dx3zsu, .framer-FHu7m .framer-1mntoo3, .framer-FHu7m .framer-1diijfm, .framer-FHu7m .framer-lle0vo, .framer-FHu7m .framer-r3bv86, .framer-FHu7m .framer-1tzp3l5, .framer-FHu7m .framer-g5yn0w, .framer-FHu7m .framer-4x6h88, .framer-FHu7m .framer-1m7mqz6, .framer-FHu7m .framer-11bkfgy, .framer-FHu7m .framer-4x89qi, .framer-FHu7m .framer-qpewfu, .framer-FHu7m .framer-1qqgwkp, .framer-FHu7m .framer-1442uqm, .framer-FHu7m .framer-1lvww0o, .framer-FHu7m .framer-bzkfsv, .framer-FHu7m .framer-138g9ez, .framer-FHu7m .framer-c4dugq, .framer-FHu7m .framer-f0vvv5, .framer-FHu7m .framer-1ps3rno, .framer-FHu7m .framer-11wymjr, .framer-FHu7m .framer-62398c, .framer-FHu7m .framer-1tz1g3l, .framer-FHu7m .framer-162505c, .framer-FHu7m .framer-1c3q1yu, .framer-FHu7m .framer-1fuqy8v, .framer-FHu7m .framer-1qciapd, .framer-FHu7m .framer-1tgzwjf, .framer-FHu7m .framer-o7w8h2, .framer-FHu7m .framer-bzevgf, .framer-FHu7m .framer-z9euya, .framer-FHu7m .framer-gmvpu9, .framer-FHu7m .framer-1ofn152, .framer-FHu7m .framer-ybjfwc, .framer-FHu7m .framer-13a32p4, .framer-FHu7m .framer-hah5pp, .framer-FHu7m .framer-mlyfsa, .framer-FHu7m .framer-xayt2r, .framer-FHu7m .framer-f5g7ew, .framer-FHu7m .framer-lvpx2e, .framer-FHu7m .framer-1lpq6w4, .framer-FHu7m .framer-49xeur, .framer-FHu7m .framer-33zfla, .framer-FHu7m .framer-1o1skkv, .framer-FHu7m .framer-10srr6w, .framer-FHu7m .framer-a6225z, .framer-FHu7m .framer-1bhdo2r, .framer-FHu7m .framer-1y5ae5i, .framer-FHu7m .framer-18z1ie3, .framer-FHu7m .framer-8ilrri, .framer-FHu7m .framer-1reiahr, .framer-FHu7m .framer-1sgiywi, .framer-FHu7m .framer-m26i6g, .framer-FHu7m .framer-t5ewb4, .framer-FHu7m .framer-13dmtgb, .framer-FHu7m .framer-1eel6y9, .framer-FHu7m .framer-qw6ofc, .framer-FHu7m .framer-1d0hlfo, .framer-FHu7m .framer-z32ggl, .framer-FHu7m .framer-1j0wmfq, .framer-FHu7m .framer-1fyxrsv, .framer-FHu7m .framer-sz1ph3, .framer-FHu7m .framer-8gsf7b, .framer-FHu7m .framer-4gd5cl, .framer-FHu7m .framer-t70rri, .framer-FHu7m .framer-1ap6svg, .framer-FHu7m .framer-1xjkhte, .framer-FHu7m .framer-15f3bn2, .framer-FHu7m .framer-atraaz, .framer-FHu7m .framer-848rha, .framer-FHu7m .framer-1h28h16, .framer-FHu7m .framer-ibh0yr, .framer-FHu7m .framer-1iuu6fw, .framer-FHu7m .framer-e6hhz8, .framer-FHu7m .framer-14rq28r, .framer-FHu7m .framer-1alqe3l, .framer-FHu7m .framer-ofs6uw, .framer-FHu7m .framer-pwqswc, .framer-FHu7m .framer-2ppdiw, .framer-FHu7m .framer-1d5m9rx, .framer-FHu7m .framer-tfo043, .framer-FHu7m .framer-1adh2gr, .framer-FHu7m .framer-1r82z8s, .framer-FHu7m .framer-bl8m10, .framer-FHu7m .framer-102ze45, .framer-FHu7m .framer-12ii12k, .framer-FHu7m .framer-1k4hkh1, .framer-FHu7m .framer-1l4pwsx, .framer-FHu7m .framer-dmndp0, .framer-FHu7m .framer-zsexch, .framer-FHu7m .framer-4fmckh, .framer-FHu7m .framer-jysydn, .framer-FHu7m .framer-3337jq, .framer-FHu7m .framer-10t73g2, .framer-FHu7m .framer-hgcduq, .framer-FHu7m .framer-fth2hv, .framer-FHu7m .framer-1v0820s, .framer-FHu7m .framer-17zzf86, .framer-FHu7m .framer-159mpwo, .framer-FHu7m .framer-n2742a, .framer-FHu7m .framer-1tt7eze, .framer-FHu7m .framer-1eo25cq, .framer-FHu7m .framer-oav3k7, .framer-FHu7m .framer-ixecsl, .framer-FHu7m .framer-1faycep, .framer-FHu7m .framer-13h8mxq, .framer-FHu7m .framer-1lg1kil, .framer-FHu7m .framer-23hsww, .framer-FHu7m .framer-3r8p34, .framer-FHu7m .framer-b0op6j, .framer-FHu7m .framer-1v07i9c, .framer-FHu7m .framer-smamrc, .framer-FHu7m .framer-yptuqw, .framer-FHu7m .framer-ic39ib, .framer-FHu7m .framer-4kvgh9, .framer-FHu7m .framer-1jfgkti, .framer-FHu7m .framer-1q1ydwt, .framer-FHu7m .framer-3b0ezu, .framer-FHu7m .framer-1jcu0dz, .framer-FHu7m .framer-mv848e, .framer-FHu7m .framer-zkor5v, .framer-FHu7m .framer-187kx6l, .framer-FHu7m .framer-25ixoc, .framer-FHu7m .framer-8v89gb, .framer-FHu7m .framer-1rwcl8y, .framer-FHu7m .framer-zlqy3n, .framer-FHu7m .framer-l0dq9j, .framer-FHu7m .framer-8iufxt, .framer-FHu7m .framer-c2cfl3, .framer-FHu7m .framer-1p6dopq, .framer-FHu7m .framer-1tnvhcb, .framer-FHu7m .framer-6dxohh, .framer-FHu7m .framer-1pcsdtm, .framer-FHu7m .framer-1oqz339, .framer-FHu7m .framer-1msxmik, .framer-FHu7m .framer-1gce9t4, .framer-FHu7m .framer-9fxgnx, .framer-FHu7m .framer-1sssotp, .framer-FHu7m .framer-twbqv0, .framer-FHu7m .framer-1fobzv7, .framer-FHu7m .framer-1imzdhh, .framer-FHu7m .framer-a3zdl3, .framer-FHu7m .framer-c59wy8, .framer-FHu7m .framer-17y14lx, .framer-FHu7m .framer-1vmds0d, .framer-FHu7m .framer-piy165, .framer-FHu7m .framer-1knoo30, .framer-FHu7m .framer-zn0s5l { gap: 0px; } .framer-FHu7m.framer-1ye6yvf > *, .framer-FHu7m .framer-t9lfgf > *, .framer-FHu7m .framer-wfrycw > *, .framer-FHu7m .framer-1kuaoqe > *, .framer-FHu7m .framer-16p9i3z > *, .framer-FHu7m .framer-1vydlyb > *, .framer-FHu7m .framer-qw6ofc > *, .framer-FHu7m .framer-1j0wmfq > *, .framer-FHu7m .framer-a3zdl3 > *, .framer-FHu7m .framer-1vmds0d > *, .framer-FHu7m .framer-zn0s5l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FHu7m.framer-1ye6yvf > :first-child, .framer-FHu7m .framer-bq59v0 > :first-child, .framer-FHu7m .framer-1o8ulih > :first-child, .framer-FHu7m .framer-t9lfgf > :first-child, .framer-FHu7m .framer-of5ml2 > :first-child, .framer-FHu7m .framer-dp0nb7 > :first-child, .framer-FHu7m .framer-2qdc4q > :first-child, .framer-FHu7m .framer-3d02e4 > :first-child, .framer-FHu7m .framer-1wstzqn > :first-child, .framer-FHu7m .framer-1lhpjfc > :first-child, .framer-FHu7m .framer-6bgt0f > :first-child, .framer-FHu7m .framer-1qu2q60 > :first-child, .framer-FHu7m .framer-16iw716 > :first-child, .framer-FHu7m .framer-1yxp1g9 > :first-child, .framer-FHu7m .framer-j6otbp > :first-child, .framer-FHu7m .framer-1h6orwa > :first-child, .framer-FHu7m .framer-syeory > :first-child, .framer-FHu7m .framer-7bt5o > :first-child, .framer-FHu7m .framer-9sdx89 > :first-child, .framer-FHu7m .framer-yc2phy > :first-child, .framer-FHu7m .framer-6pm9yo > :first-child, .framer-FHu7m .framer-1wffltk > :first-child, .framer-FHu7m .framer-c25aao > :first-child, .framer-FHu7m .framer-wfrycw > :first-child, .framer-FHu7m .framer-1r4081m > :first-child, .framer-FHu7m .framer-1gs0dx5 > :first-child, .framer-FHu7m .framer-ngdjk8 > :first-child, .framer-FHu7m .framer-1ipcw1u > :first-child, .framer-FHu7m .framer-1p71urd > :first-child, .framer-FHu7m .framer-h3n4ht > :first-child, .framer-FHu7m .framer-1df3zbc > :first-child, .framer-FHu7m .framer-156l65z > :first-child, .framer-FHu7m .framer-mvbaip > :first-child, .framer-FHu7m .framer-18plt74 > :first-child, .framer-FHu7m .framer-1wa9dxt > :first-child, .framer-FHu7m .framer-ij8sdh > :first-child, .framer-FHu7m .framer-hip2kr > :first-child, .framer-FHu7m .framer-vr3lyx > :first-child, .framer-FHu7m .framer-2tcby2 > :first-child, .framer-FHu7m .framer-1kefjo7 > :first-child, .framer-FHu7m .framer-1tp3eu > :first-child, .framer-FHu7m .framer-1mo5leo > :first-child, .framer-FHu7m .framer-42xp2p > :first-child, .framer-FHu7m .framer-1nf6pgw > :first-child, .framer-FHu7m .framer-17375uo > :first-child, .framer-FHu7m .framer-6gygef > :first-child, .framer-FHu7m .framer-1jq2c23 > :first-child, .framer-FHu7m .framer-1d6a9pe > :first-child, .framer-FHu7m .framer-anqlii > :first-child, .framer-FHu7m .framer-pd36zf > :first-child, .framer-FHu7m .framer-1e1xsab > :first-child, .framer-FHu7m .framer-1kuaoqe > :first-child, .framer-FHu7m .framer-dq2oo1 > :first-child, .framer-FHu7m .framer-1l2zais > :first-child, .framer-FHu7m .framer-1ho4z9c > :first-child, .framer-FHu7m .framer-1hh7cug > :first-child, .framer-FHu7m .framer-1ew8omw > :first-child, .framer-FHu7m .framer-165dgeq > :first-child, .framer-FHu7m .framer-8ru12o > :first-child, .framer-FHu7m .framer-63jrgz > :first-child, .framer-FHu7m .framer-sxbwc0 > :first-child, .framer-FHu7m .framer-2j68eh > :first-child, .framer-FHu7m .framer-1onarli > :first-child, .framer-FHu7m .framer-1djdxkw > :first-child, .framer-FHu7m .framer-1xj1tck > :first-child, .framer-FHu7m .framer-182ez41 > :first-child, .framer-FHu7m .framer-xd28a5 > :first-child, .framer-FHu7m .framer-1y5ulpz > :first-child, .framer-FHu7m .framer-1ovew5t > :first-child, .framer-FHu7m .framer-je8vpr > :first-child, .framer-FHu7m .framer-1tfn7sc > :first-child, .framer-FHu7m .framer-pyyh6f > :first-child, .framer-FHu7m .framer-xdc65h > :first-child, .framer-FHu7m .framer-1pcixyy > :first-child, .framer-FHu7m .framer-16p9i3z > :first-child, .framer-FHu7m .framer-16ikh08 > :first-child, .framer-FHu7m .framer-1vydlyb > :first-child, .framer-FHu7m .framer-1500xhl > :first-child, .framer-FHu7m .framer-10gi7gx > :first-child, .framer-FHu7m .framer-12sf8pi > :first-child, .framer-FHu7m .framer-1xgivpm > :first-child, .framer-FHu7m .framer-ijptzq > :first-child, .framer-FHu7m .framer-nxedts > :first-child, .framer-FHu7m .framer-1l2n26a > :first-child, .framer-FHu7m .framer-s4qez0 > :first-child, .framer-FHu7m .framer-1lvww0o > :first-child, .framer-FHu7m .framer-bzkfsv > :first-child, .framer-FHu7m .framer-1fuqy8v > :first-child, .framer-FHu7m .framer-1tgzwjf > :first-child, .framer-FHu7m .framer-gmvpu9 > :first-child, .framer-FHu7m .framer-hah5pp > :first-child, .framer-FHu7m .framer-mlyfsa > :first-child, .framer-FHu7m .framer-33zfla > :first-child, .framer-FHu7m .framer-1bhdo2r > :first-child, .framer-FHu7m .framer-1reiahr > :first-child, .framer-FHu7m .framer-1sgiywi > :first-child, .framer-FHu7m .framer-m26i6g > :first-child, .framer-FHu7m .framer-qw6ofc > :first-child, .framer-FHu7m .framer-1d0hlfo > :first-child, .framer-FHu7m .framer-1j0wmfq > :first-child, .framer-FHu7m .framer-sz1ph3 > :first-child, .framer-FHu7m .framer-8gsf7b > :first-child, .framer-FHu7m .framer-4gd5cl > :first-child, .framer-FHu7m .framer-atraaz > :first-child, .framer-FHu7m .framer-1h28h16 > :first-child, .framer-FHu7m .framer-ibh0yr > :first-child, .framer-FHu7m .framer-2ppdiw > :first-child, .framer-FHu7m .framer-tfo043 > :first-child, .framer-FHu7m .framer-n2742a > :first-child, .framer-FHu7m .framer-1tt7eze > :first-child, .framer-FHu7m .framer-1v07i9c > :first-child, .framer-FHu7m .framer-yptuqw > :first-child, .framer-FHu7m .framer-1q1ydwt > :first-child, .framer-FHu7m .framer-zkor5v > :first-child, .framer-FHu7m .framer-187kx6l > :first-child, .framer-FHu7m .framer-8iufxt > :first-child, .framer-FHu7m .framer-6dxohh > :first-child, .framer-FHu7m .framer-1gce9t4 > :first-child, .framer-FHu7m .framer-9fxgnx > :first-child, .framer-FHu7m .framer-1sssotp > :first-child, .framer-FHu7m .framer-a3zdl3 > :first-child, .framer-FHu7m .framer-c59wy8 > :first-child, .framer-FHu7m .framer-1vmds0d > :first-child, .framer-FHu7m .framer-piy165 > :first-child, .framer-FHu7m .framer-zn0s5l > :first-child { margin-top: 0px; } .framer-FHu7m.framer-1ye6yvf > :last-child, .framer-FHu7m .framer-bq59v0 > :last-child, .framer-FHu7m .framer-1o8ulih > :last-child, .framer-FHu7m .framer-t9lfgf > :last-child, .framer-FHu7m .framer-of5ml2 > :last-child, .framer-FHu7m .framer-dp0nb7 > :last-child, .framer-FHu7m .framer-2qdc4q > :last-child, .framer-FHu7m .framer-3d02e4 > :last-child, .framer-FHu7m .framer-1wstzqn > :last-child, .framer-FHu7m .framer-1lhpjfc > :last-child, .framer-FHu7m .framer-6bgt0f > :last-child, .framer-FHu7m .framer-1qu2q60 > :last-child, .framer-FHu7m .framer-16iw716 > :last-child, .framer-FHu7m .framer-1yxp1g9 > :last-child, .framer-FHu7m .framer-j6otbp > :last-child, .framer-FHu7m .framer-1h6orwa > :last-child, .framer-FHu7m .framer-syeory > :last-child, .framer-FHu7m .framer-7bt5o > :last-child, .framer-FHu7m .framer-9sdx89 > :last-child, .framer-FHu7m .framer-yc2phy > :last-child, .framer-FHu7m .framer-6pm9yo > :last-child, .framer-FHu7m .framer-1wffltk > :last-child, .framer-FHu7m .framer-c25aao > :last-child, .framer-FHu7m .framer-wfrycw > :last-child, .framer-FHu7m .framer-1r4081m > :last-child, .framer-FHu7m .framer-1gs0dx5 > :last-child, .framer-FHu7m .framer-ngdjk8 > :last-child, .framer-FHu7m .framer-1ipcw1u > :last-child, .framer-FHu7m .framer-1p71urd > :last-child, .framer-FHu7m .framer-h3n4ht > :last-child, .framer-FHu7m .framer-1df3zbc > :last-child, .framer-FHu7m .framer-156l65z > :last-child, .framer-FHu7m .framer-mvbaip > :last-child, .framer-FHu7m .framer-18plt74 > :last-child, .framer-FHu7m .framer-1wa9dxt > :last-child, .framer-FHu7m .framer-ij8sdh > :last-child, .framer-FHu7m .framer-hip2kr > :last-child, .framer-FHu7m .framer-vr3lyx > :last-child, .framer-FHu7m .framer-2tcby2 > :last-child, .framer-FHu7m .framer-1kefjo7 > :last-child, .framer-FHu7m .framer-1tp3eu > :last-child, .framer-FHu7m .framer-1mo5leo > :last-child, .framer-FHu7m .framer-42xp2p > :last-child, .framer-FHu7m .framer-1nf6pgw > :last-child, .framer-FHu7m .framer-17375uo > :last-child, .framer-FHu7m .framer-6gygef > :last-child, .framer-FHu7m .framer-1jq2c23 > :last-child, .framer-FHu7m .framer-1d6a9pe > :last-child, .framer-FHu7m .framer-anqlii > :last-child, .framer-FHu7m .framer-pd36zf > :last-child, .framer-FHu7m .framer-1e1xsab > :last-child, .framer-FHu7m .framer-1kuaoqe > :last-child, .framer-FHu7m .framer-dq2oo1 > :last-child, .framer-FHu7m .framer-1l2zais > :last-child, .framer-FHu7m .framer-1ho4z9c > :last-child, .framer-FHu7m .framer-1hh7cug > :last-child, .framer-FHu7m .framer-1ew8omw > :last-child, .framer-FHu7m .framer-165dgeq > :last-child, .framer-FHu7m .framer-8ru12o > :last-child, .framer-FHu7m .framer-63jrgz > :last-child, .framer-FHu7m .framer-sxbwc0 > :last-child, .framer-FHu7m .framer-2j68eh > :last-child, .framer-FHu7m .framer-1onarli > :last-child, .framer-FHu7m .framer-1djdxkw > :last-child, .framer-FHu7m .framer-1xj1tck > :last-child, .framer-FHu7m .framer-182ez41 > :last-child, .framer-FHu7m .framer-xd28a5 > :last-child, .framer-FHu7m .framer-1y5ulpz > :last-child, .framer-FHu7m .framer-1ovew5t > :last-child, .framer-FHu7m .framer-je8vpr > :last-child, .framer-FHu7m .framer-1tfn7sc > :last-child, .framer-FHu7m .framer-pyyh6f > :last-child, .framer-FHu7m .framer-xdc65h > :last-child, .framer-FHu7m .framer-1pcixyy > :last-child, .framer-FHu7m .framer-16p9i3z > :last-child, .framer-FHu7m .framer-16ikh08 > :last-child, .framer-FHu7m .framer-1vydlyb > :last-child, .framer-FHu7m .framer-1500xhl > :last-child, .framer-FHu7m .framer-10gi7gx > :last-child, .framer-FHu7m .framer-12sf8pi > :last-child, .framer-FHu7m .framer-1xgivpm > :last-child, .framer-FHu7m .framer-ijptzq > :last-child, .framer-FHu7m .framer-nxedts > :last-child, .framer-FHu7m .framer-1l2n26a > :last-child, .framer-FHu7m .framer-s4qez0 > :last-child, .framer-FHu7m .framer-1lvww0o > :last-child, .framer-FHu7m .framer-bzkfsv > :last-child, .framer-FHu7m .framer-1fuqy8v > :last-child, .framer-FHu7m .framer-1tgzwjf > :last-child, .framer-FHu7m .framer-gmvpu9 > :last-child, .framer-FHu7m .framer-hah5pp > :last-child, .framer-FHu7m .framer-mlyfsa > :last-child, .framer-FHu7m .framer-33zfla > :last-child, .framer-FHu7m .framer-1bhdo2r > :last-child, .framer-FHu7m .framer-1reiahr > :last-child, .framer-FHu7m .framer-1sgiywi > :last-child, .framer-FHu7m .framer-m26i6g > :last-child, .framer-FHu7m .framer-qw6ofc > :last-child, .framer-FHu7m .framer-1d0hlfo > :last-child, .framer-FHu7m .framer-1j0wmfq > :last-child, .framer-FHu7m .framer-sz1ph3 > :last-child, .framer-FHu7m .framer-8gsf7b > :last-child, .framer-FHu7m .framer-4gd5cl > :last-child, .framer-FHu7m .framer-atraaz > :last-child, .framer-FHu7m .framer-1h28h16 > :last-child, .framer-FHu7m .framer-ibh0yr > :last-child, .framer-FHu7m .framer-2ppdiw > :last-child, .framer-FHu7m .framer-tfo043 > :last-child, .framer-FHu7m .framer-n2742a > :last-child, .framer-FHu7m .framer-1tt7eze > :last-child, .framer-FHu7m .framer-1v07i9c > :last-child, .framer-FHu7m .framer-yptuqw > :last-child, .framer-FHu7m .framer-1q1ydwt > :last-child, .framer-FHu7m .framer-zkor5v > :last-child, .framer-FHu7m .framer-187kx6l > :last-child, .framer-FHu7m .framer-8iufxt > :last-child, .framer-FHu7m .framer-6dxohh > :last-child, .framer-FHu7m .framer-1gce9t4 > :last-child, .framer-FHu7m .framer-9fxgnx > :last-child, .framer-FHu7m .framer-1sssotp > :last-child, .framer-FHu7m .framer-a3zdl3 > :last-child, .framer-FHu7m .framer-c59wy8 > :last-child, .framer-FHu7m .framer-1vmds0d > :last-child, .framer-FHu7m .framer-piy165 > :last-child, .framer-FHu7m .framer-zn0s5l > :last-child { margin-bottom: 0px; } .framer-FHu7m .framer-16t24p1 > *, .framer-FHu7m .framer-uzuil7 > *, .framer-FHu7m .framer-1tckgpf > *, .framer-FHu7m .framer-1y3tl9m > *, .framer-FHu7m .framer-848rha > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-FHu7m .framer-16t24p1 > :first-child, .framer-FHu7m .framer-1n2o0et > :first-child, .framer-FHu7m .framer-x0b16s > :first-child, .framer-FHu7m .framer-klhsw5 > :first-child, .framer-FHu7m .framer-1tvkujv > :first-child, .framer-FHu7m .framer-1n2rni2 > :first-child, .framer-FHu7m .framer-1ei5on9 > :first-child, .framer-FHu7m .framer-uzuil7 > :first-child, .framer-FHu7m .framer-5k0jtg > :first-child, .framer-FHu7m .framer-pjfhwr > :first-child, .framer-FHu7m .framer-zki2qa > :first-child, .framer-FHu7m .framer-tgwe89 > :first-child, .framer-FHu7m .framer-ui6w1m > :first-child, .framer-FHu7m .framer-k09uzi > :first-child, .framer-FHu7m .framer-3nmtg6 > :first-child, .framer-FHu7m .framer-1n52369 > :first-child, .framer-FHu7m .framer-140vvsj > :first-child, .framer-FHu7m .framer-a71a08 > :first-child, .framer-FHu7m .framer-1ucq60m > :first-child, .framer-FHu7m .framer-n8e2fw > :first-child, .framer-FHu7m .framer-10g1wvk > :first-child, .framer-FHu7m .framer-1ref9th > :first-child, .framer-FHu7m .framer-ordpox > :first-child, .framer-FHu7m .framer-1pd0v3b > :first-child, .framer-FHu7m .framer-1c30unw > :first-child, .framer-FHu7m .framer-1jkaaa > :first-child, .framer-FHu7m .framer-1cuza7l > :first-child, .framer-FHu7m .framer-vkbm9m > :first-child, .framer-FHu7m .framer-qak9ro > :first-child, .framer-FHu7m .framer-wx7l2n > :first-child, .framer-FHu7m .framer-3khnak > :first-child, .framer-FHu7m .framer-1c64h7g > :first-child, .framer-FHu7m .framer-86s3hz > :first-child, .framer-FHu7m .framer-yfiayy > :first-child, .framer-FHu7m .framer-an6gc2 > :first-child, .framer-FHu7m .framer-52u4mf > :first-child, .framer-FHu7m .framer-8xrazb > :first-child, .framer-FHu7m .framer-1ki0ots > :first-child, .framer-FHu7m .framer-pv7k9c > :first-child, .framer-FHu7m .framer-1h0vi9q > :first-child, .framer-FHu7m .framer-1bvmd7h > :first-child, .framer-FHu7m .framer-140qzi6 > :first-child, .framer-FHu7m .framer-iez1yn > :first-child, .framer-FHu7m .framer-1861s8u > :first-child, .framer-FHu7m .framer-1ghr6hf > :first-child, .framer-FHu7m .framer-5jalra > :first-child, .framer-FHu7m .framer-woids4 > :first-child, .framer-FHu7m .framer-bpxuhs > :first-child, .framer-FHu7m .framer-1epeeuy > :first-child, .framer-FHu7m .framer-75xdwb > :first-child, .framer-FHu7m .framer-q3ajp0 > :first-child, .framer-FHu7m .framer-l5hq1n > :first-child, .framer-FHu7m .framer-1m18v3n > :first-child, .framer-FHu7m .framer-rhkgkv > :first-child, .framer-FHu7m .framer-1aam77d > :first-child, .framer-FHu7m .framer-1rl53ov > :first-child, .framer-FHu7m .framer-10e0zb7 > :first-child, .framer-FHu7m .framer-jo3hiu > :first-child, .framer-FHu7m .framer-1hxcp7a > :first-child, .framer-FHu7m .framer-kworxh > :first-child, .framer-FHu7m .framer-1ay89jy > :first-child, .framer-FHu7m .framer-6g5tbo > :first-child, .framer-FHu7m .framer-1wpa26x > :first-child, .framer-FHu7m .framer-u8mspp > :first-child, .framer-FHu7m .framer-15ryhx6 > :first-child, .framer-FHu7m .framer-plbqfd > :first-child, .framer-FHu7m .framer-11uajx1 > :first-child, .framer-FHu7m .framer-giurpd > :first-child, .framer-FHu7m .framer-1tiux0 > :first-child, .framer-FHu7m .framer-1s0hla3 > :first-child, .framer-FHu7m .framer-yzdrv9 > :first-child, .framer-FHu7m .framer-lo3hvz > :first-child, .framer-FHu7m .framer-1ow6woi > :first-child, .framer-FHu7m .framer-1glzkpd > :first-child, .framer-FHu7m .framer-1r53syh > :first-child, .framer-FHu7m .framer-1tckgpf > :first-child, .framer-FHu7m .framer-4oeak3 > :first-child, .framer-FHu7m .framer-1lsk15t > :first-child, .framer-FHu7m .framer-1trtn4j > :first-child, .framer-FHu7m .framer-1min7jw > :first-child, .framer-FHu7m .framer-260i4m > :first-child, .framer-FHu7m .framer-9gf1ih > :first-child, .framer-FHu7m .framer-eqtu9a > :first-child, .framer-FHu7m .framer-sx9911 > :first-child, .framer-FHu7m .framer-1u90p6a > :first-child, .framer-FHu7m .framer-1w6uxiv > :first-child, .framer-FHu7m .framer-1xhtsj9 > :first-child, .framer-FHu7m .framer-bovx17 > :first-child, .framer-FHu7m .framer-8mc6vy > :first-child, .framer-FHu7m .framer-11tgj4r > :first-child, .framer-FHu7m .framer-1ufgvjs > :first-child, .framer-FHu7m .framer-1ydxvoh > :first-child, .framer-FHu7m .framer-pvepq8 > :first-child, .framer-FHu7m .framer-o7zgo1 > :first-child, .framer-FHu7m .framer-1ww57c8 > :first-child, .framer-FHu7m .framer-1p3gi70 > :first-child, .framer-FHu7m .framer-1heu76q > :first-child, .framer-FHu7m .framer-iqneoc > :first-child, .framer-FHu7m .framer-v13nh7 > :first-child, .framer-FHu7m .framer-r2twmw > :first-child, .framer-FHu7m .framer-ahtvim > :first-child, .framer-FHu7m .framer-1odgdb6 > :first-child, .framer-FHu7m .framer-15e80cw > :first-child, .framer-FHu7m .framer-16o07vk > :first-child, .framer-FHu7m .framer-11pzlwm > :first-child, .framer-FHu7m .framer-tscrmb > :first-child, .framer-FHu7m .framer-gptszl > :first-child, .framer-FHu7m .framer-bmlfa0 > :first-child, .framer-FHu7m .framer-r0x1jl > :first-child, .framer-FHu7m .framer-1wqub68 > :first-child, .framer-FHu7m .framer-1hl3fpq > :first-child, .framer-FHu7m .framer-1f6f9kf > :first-child, .framer-FHu7m .framer-jl4rdy > :first-child, .framer-FHu7m .framer-1h5l3co > :first-child, .framer-FHu7m .framer-px1yxp > :first-child, .framer-FHu7m .framer-1y3tl9m > :first-child, .framer-FHu7m .framer-gi0esn > :first-child, .framer-FHu7m .framer-f78g37 > :first-child, .framer-FHu7m .framer-15xujy2 > :first-child, .framer-FHu7m .framer-85jzat > :first-child, .framer-FHu7m .framer-6zfamk > :first-child, .framer-FHu7m .framer-1fij8mo > :first-child, .framer-FHu7m .framer-1bqvn48 > :first-child, .framer-FHu7m .framer-1vhuxqb > :first-child, .framer-FHu7m .framer-yoxn1j > :first-child, .framer-FHu7m .framer-jx3wnd > :first-child, .framer-FHu7m .framer-5u7trw > :first-child, .framer-FHu7m .framer-dx3zsu > :first-child, .framer-FHu7m .framer-1mntoo3 > :first-child, .framer-FHu7m .framer-1diijfm > :first-child, .framer-FHu7m .framer-lle0vo > :first-child, .framer-FHu7m .framer-r3bv86 > :first-child, .framer-FHu7m .framer-1tzp3l5 > :first-child, .framer-FHu7m .framer-g5yn0w > :first-child, .framer-FHu7m .framer-4x6h88 > :first-child, .framer-FHu7m .framer-1m7mqz6 > :first-child, .framer-FHu7m .framer-11bkfgy > :first-child, .framer-FHu7m .framer-4x89qi > :first-child, .framer-FHu7m .framer-qpewfu > :first-child, .framer-FHu7m .framer-1qqgwkp > :first-child, .framer-FHu7m .framer-1442uqm > :first-child, .framer-FHu7m .framer-138g9ez > :first-child, .framer-FHu7m .framer-c4dugq > :first-child, .framer-FHu7m .framer-f0vvv5 > :first-child, .framer-FHu7m .framer-1ps3rno > :first-child, .framer-FHu7m .framer-11wymjr > :first-child, .framer-FHu7m .framer-62398c > :first-child, .framer-FHu7m .framer-1tz1g3l > :first-child, .framer-FHu7m .framer-162505c > :first-child, .framer-FHu7m .framer-1c3q1yu > :first-child, .framer-FHu7m .framer-1qciapd > :first-child, .framer-FHu7m .framer-o7w8h2 > :first-child, .framer-FHu7m .framer-bzevgf > :first-child, .framer-FHu7m .framer-z9euya > :first-child, .framer-FHu7m .framer-1ofn152 > :first-child, .framer-FHu7m .framer-ybjfwc > :first-child, .framer-FHu7m .framer-13a32p4 > :first-child, .framer-FHu7m .framer-xayt2r > :first-child, .framer-FHu7m .framer-f5g7ew > :first-child, .framer-FHu7m .framer-lvpx2e > :first-child, .framer-FHu7m .framer-1lpq6w4 > :first-child, .framer-FHu7m .framer-49xeur > :first-child, .framer-FHu7m .framer-1o1skkv > :first-child, .framer-FHu7m .framer-10srr6w > :first-child, .framer-FHu7m .framer-a6225z > :first-child, .framer-FHu7m .framer-1y5ae5i > :first-child, .framer-FHu7m .framer-18z1ie3 > :first-child, .framer-FHu7m .framer-8ilrri > :first-child, .framer-FHu7m .framer-t5ewb4 > :first-child, .framer-FHu7m .framer-13dmtgb > :first-child, .framer-FHu7m .framer-1eel6y9 > :first-child, .framer-FHu7m .framer-z32ggl > :first-child, .framer-FHu7m .framer-1fyxrsv > :first-child, .framer-FHu7m .framer-t70rri > :first-child, .framer-FHu7m .framer-1ap6svg > :first-child, .framer-FHu7m .framer-1xjkhte > :first-child, .framer-FHu7m .framer-15f3bn2 > :first-child, .framer-FHu7m .framer-848rha > :first-child, .framer-FHu7m .framer-1iuu6fw > :first-child, .framer-FHu7m .framer-e6hhz8 > :first-child, .framer-FHu7m .framer-14rq28r > :first-child, .framer-FHu7m .framer-1alqe3l > :first-child, .framer-FHu7m .framer-ofs6uw > :first-child, .framer-FHu7m .framer-pwqswc > :first-child, .framer-FHu7m .framer-1d5m9rx > :first-child, .framer-FHu7m .framer-1adh2gr > :first-child, .framer-FHu7m .framer-1r82z8s > :first-child, .framer-FHu7m .framer-bl8m10 > :first-child, .framer-FHu7m .framer-102ze45 > :first-child, .framer-FHu7m .framer-12ii12k > :first-child, .framer-FHu7m .framer-1k4hkh1 > :first-child, .framer-FHu7m .framer-1l4pwsx > :first-child, .framer-FHu7m .framer-dmndp0 > :first-child, .framer-FHu7m .framer-zsexch > :first-child, .framer-FHu7m .framer-4fmckh > :first-child, .framer-FHu7m .framer-jysydn > :first-child, .framer-FHu7m .framer-3337jq > :first-child, .framer-FHu7m .framer-10t73g2 > :first-child, .framer-FHu7m .framer-hgcduq > :first-child, .framer-FHu7m .framer-fth2hv > :first-child, .framer-FHu7m .framer-1v0820s > :first-child, .framer-FHu7m .framer-17zzf86 > :first-child, .framer-FHu7m .framer-159mpwo > :first-child, .framer-FHu7m .framer-1eo25cq > :first-child, .framer-FHu7m .framer-oav3k7 > :first-child, .framer-FHu7m .framer-ixecsl > :first-child, .framer-FHu7m .framer-1faycep > :first-child, .framer-FHu7m .framer-13h8mxq > :first-child, .framer-FHu7m .framer-1lg1kil > :first-child, .framer-FHu7m .framer-23hsww > :first-child, .framer-FHu7m .framer-3r8p34 > :first-child, .framer-FHu7m .framer-b0op6j > :first-child, .framer-FHu7m .framer-smamrc > :first-child, .framer-FHu7m .framer-ic39ib > :first-child, .framer-FHu7m .framer-4kvgh9 > :first-child, .framer-FHu7m .framer-1jfgkti > :first-child, .framer-FHu7m .framer-3b0ezu > :first-child, .framer-FHu7m .framer-1jcu0dz > :first-child, .framer-FHu7m .framer-mv848e > :first-child, .framer-FHu7m .framer-25ixoc > :first-child, .framer-FHu7m .framer-8v89gb > :first-child, .framer-FHu7m .framer-1rwcl8y > :first-child, .framer-FHu7m .framer-zlqy3n > :first-child, .framer-FHu7m .framer-l0dq9j > :first-child, .framer-FHu7m .framer-c2cfl3 > :first-child, .framer-FHu7m .framer-1p6dopq > :first-child, .framer-FHu7m .framer-1tnvhcb > :first-child, .framer-FHu7m .framer-1pcsdtm > :first-child, .framer-FHu7m .framer-1oqz339 > :first-child, .framer-FHu7m .framer-1msxmik > :first-child, .framer-FHu7m .framer-twbqv0 > :first-child, .framer-FHu7m .framer-1fobzv7 > :first-child, .framer-FHu7m .framer-1imzdhh > :first-child, .framer-FHu7m .framer-17y14lx > :first-child, .framer-FHu7m .framer-1knoo30 > :first-child { margin-left: 0px; } .framer-FHu7m .framer-16t24p1 > :last-child, .framer-FHu7m .framer-1n2o0et > :last-child, .framer-FHu7m .framer-x0b16s > :last-child, .framer-FHu7m .framer-klhsw5 > :last-child, .framer-FHu7m .framer-1tvkujv > :last-child, .framer-FHu7m .framer-1n2rni2 > :last-child, .framer-FHu7m .framer-1ei5on9 > :last-child, .framer-FHu7m .framer-uzuil7 > :last-child, .framer-FHu7m .framer-5k0jtg > :last-child, .framer-FHu7m .framer-pjfhwr > :last-child, .framer-FHu7m .framer-zki2qa > :last-child, .framer-FHu7m .framer-tgwe89 > :last-child, .framer-FHu7m .framer-ui6w1m > :last-child, .framer-FHu7m .framer-k09uzi > :last-child, .framer-FHu7m .framer-3nmtg6 > :last-child, .framer-FHu7m .framer-1n52369 > :last-child, .framer-FHu7m .framer-140vvsj > :last-child, .framer-FHu7m .framer-a71a08 > :last-child, .framer-FHu7m .framer-1ucq60m > :last-child, .framer-FHu7m .framer-n8e2fw > :last-child, .framer-FHu7m .framer-10g1wvk > :last-child, .framer-FHu7m .framer-1ref9th > :last-child, .framer-FHu7m .framer-ordpox > :last-child, .framer-FHu7m .framer-1pd0v3b > :last-child, .framer-FHu7m .framer-1c30unw > :last-child, .framer-FHu7m .framer-1jkaaa > :last-child, .framer-FHu7m .framer-1cuza7l > :last-child, .framer-FHu7m .framer-vkbm9m > :last-child, .framer-FHu7m .framer-qak9ro > :last-child, .framer-FHu7m .framer-wx7l2n > :last-child, .framer-FHu7m .framer-3khnak > :last-child, .framer-FHu7m .framer-1c64h7g > :last-child, .framer-FHu7m .framer-86s3hz > :last-child, .framer-FHu7m .framer-yfiayy > :last-child, .framer-FHu7m .framer-an6gc2 > :last-child, .framer-FHu7m .framer-52u4mf > :last-child, .framer-FHu7m .framer-8xrazb > :last-child, .framer-FHu7m .framer-1ki0ots > :last-child, .framer-FHu7m .framer-pv7k9c > :last-child, .framer-FHu7m .framer-1h0vi9q > :last-child, .framer-FHu7m .framer-1bvmd7h > :last-child, .framer-FHu7m .framer-140qzi6 > :last-child, .framer-FHu7m .framer-iez1yn > :last-child, .framer-FHu7m .framer-1861s8u > :last-child, .framer-FHu7m .framer-1ghr6hf > :last-child, .framer-FHu7m .framer-5jalra > :last-child, .framer-FHu7m .framer-woids4 > :last-child, .framer-FHu7m .framer-bpxuhs > :last-child, .framer-FHu7m .framer-1epeeuy > :last-child, .framer-FHu7m .framer-75xdwb > :last-child, .framer-FHu7m .framer-q3ajp0 > :last-child, .framer-FHu7m .framer-l5hq1n > :last-child, .framer-FHu7m .framer-1m18v3n > :last-child, .framer-FHu7m .framer-rhkgkv > :last-child, .framer-FHu7m .framer-1aam77d > :last-child, .framer-FHu7m .framer-1rl53ov > :last-child, .framer-FHu7m .framer-10e0zb7 > :last-child, .framer-FHu7m .framer-jo3hiu > :last-child, .framer-FHu7m .framer-1hxcp7a > :last-child, .framer-FHu7m .framer-kworxh > :last-child, .framer-FHu7m .framer-1ay89jy > :last-child, .framer-FHu7m .framer-6g5tbo > :last-child, .framer-FHu7m .framer-1wpa26x > :last-child, .framer-FHu7m .framer-u8mspp > :last-child, .framer-FHu7m .framer-15ryhx6 > :last-child, .framer-FHu7m .framer-plbqfd > :last-child, .framer-FHu7m .framer-11uajx1 > :last-child, .framer-FHu7m .framer-giurpd > :last-child, .framer-FHu7m .framer-1tiux0 > :last-child, .framer-FHu7m .framer-1s0hla3 > :last-child, .framer-FHu7m .framer-yzdrv9 > :last-child, .framer-FHu7m .framer-lo3hvz > :last-child, .framer-FHu7m .framer-1ow6woi > :last-child, .framer-FHu7m .framer-1glzkpd > :last-child, .framer-FHu7m .framer-1r53syh > :last-child, .framer-FHu7m .framer-1tckgpf > :last-child, .framer-FHu7m .framer-4oeak3 > :last-child, .framer-FHu7m .framer-1lsk15t > :last-child, .framer-FHu7m .framer-1trtn4j > :last-child, .framer-FHu7m .framer-1min7jw > :last-child, .framer-FHu7m .framer-260i4m > :last-child, .framer-FHu7m .framer-9gf1ih > :last-child, .framer-FHu7m .framer-eqtu9a > :last-child, .framer-FHu7m .framer-sx9911 > :last-child, .framer-FHu7m .framer-1u90p6a > :last-child, .framer-FHu7m .framer-1w6uxiv > :last-child, .framer-FHu7m .framer-1xhtsj9 > :last-child, .framer-FHu7m .framer-bovx17 > :last-child, .framer-FHu7m .framer-8mc6vy > :last-child, .framer-FHu7m .framer-11tgj4r > :last-child, .framer-FHu7m .framer-1ufgvjs > :last-child, .framer-FHu7m .framer-1ydxvoh > :last-child, .framer-FHu7m .framer-pvepq8 > :last-child, .framer-FHu7m .framer-o7zgo1 > :last-child, .framer-FHu7m .framer-1ww57c8 > :last-child, .framer-FHu7m .framer-1p3gi70 > :last-child, .framer-FHu7m .framer-1heu76q > :last-child, .framer-FHu7m .framer-iqneoc > :last-child, .framer-FHu7m .framer-v13nh7 > :last-child, .framer-FHu7m .framer-r2twmw > :last-child, .framer-FHu7m .framer-ahtvim > :last-child, .framer-FHu7m .framer-1odgdb6 > :last-child, .framer-FHu7m .framer-15e80cw > :last-child, .framer-FHu7m .framer-16o07vk > :last-child, .framer-FHu7m .framer-11pzlwm > :last-child, .framer-FHu7m .framer-tscrmb > :last-child, .framer-FHu7m .framer-gptszl > :last-child, .framer-FHu7m .framer-bmlfa0 > :last-child, .framer-FHu7m .framer-r0x1jl > :last-child, .framer-FHu7m .framer-1wqub68 > :last-child, .framer-FHu7m .framer-1hl3fpq > :last-child, .framer-FHu7m .framer-1f6f9kf > :last-child, .framer-FHu7m .framer-jl4rdy > :last-child, .framer-FHu7m .framer-1h5l3co > :last-child, .framer-FHu7m .framer-px1yxp > :last-child, .framer-FHu7m .framer-1y3tl9m > :last-child, .framer-FHu7m .framer-gi0esn > :last-child, .framer-FHu7m .framer-f78g37 > :last-child, .framer-FHu7m .framer-15xujy2 > :last-child, .framer-FHu7m .framer-85jzat > :last-child, .framer-FHu7m .framer-6zfamk > :last-child, .framer-FHu7m .framer-1fij8mo > :last-child, .framer-FHu7m .framer-1bqvn48 > :last-child, .framer-FHu7m .framer-1vhuxqb > :last-child, .framer-FHu7m .framer-yoxn1j > :last-child, .framer-FHu7m .framer-jx3wnd > :last-child, .framer-FHu7m .framer-5u7trw > :last-child, .framer-FHu7m .framer-dx3zsu > :last-child, .framer-FHu7m .framer-1mntoo3 > :last-child, .framer-FHu7m .framer-1diijfm > :last-child, .framer-FHu7m .framer-lle0vo > :last-child, .framer-FHu7m .framer-r3bv86 > :last-child, .framer-FHu7m .framer-1tzp3l5 > :last-child, .framer-FHu7m .framer-g5yn0w > :last-child, .framer-FHu7m .framer-4x6h88 > :last-child, .framer-FHu7m .framer-1m7mqz6 > :last-child, .framer-FHu7m .framer-11bkfgy > :last-child, .framer-FHu7m .framer-4x89qi > :last-child, .framer-FHu7m .framer-qpewfu > :last-child, .framer-FHu7m .framer-1qqgwkp > :last-child, .framer-FHu7m .framer-1442uqm > :last-child, .framer-FHu7m .framer-138g9ez > :last-child, .framer-FHu7m .framer-c4dugq > :last-child, .framer-FHu7m .framer-f0vvv5 > :last-child, .framer-FHu7m .framer-1ps3rno > :last-child, .framer-FHu7m .framer-11wymjr > :last-child, .framer-FHu7m .framer-62398c > :last-child, .framer-FHu7m .framer-1tz1g3l > :last-child, .framer-FHu7m .framer-162505c > :last-child, .framer-FHu7m .framer-1c3q1yu > :last-child, .framer-FHu7m .framer-1qciapd > :last-child, .framer-FHu7m .framer-o7w8h2 > :last-child, .framer-FHu7m .framer-bzevgf > :last-child, .framer-FHu7m .framer-z9euya > :last-child, .framer-FHu7m .framer-1ofn152 > :last-child, .framer-FHu7m .framer-ybjfwc > :last-child, .framer-FHu7m .framer-13a32p4 > :last-child, .framer-FHu7m .framer-xayt2r > :last-child, .framer-FHu7m .framer-f5g7ew > :last-child, .framer-FHu7m .framer-lvpx2e > :last-child, .framer-FHu7m .framer-1lpq6w4 > :last-child, .framer-FHu7m .framer-49xeur > :last-child, .framer-FHu7m .framer-1o1skkv > :last-child, .framer-FHu7m .framer-10srr6w > :last-child, .framer-FHu7m .framer-a6225z > :last-child, .framer-FHu7m .framer-1y5ae5i > :last-child, .framer-FHu7m .framer-18z1ie3 > :last-child, .framer-FHu7m .framer-8ilrri > :last-child, .framer-FHu7m .framer-t5ewb4 > :last-child, .framer-FHu7m .framer-13dmtgb > :last-child, .framer-FHu7m .framer-1eel6y9 > :last-child, .framer-FHu7m .framer-z32ggl > :last-child, .framer-FHu7m .framer-1fyxrsv > :last-child, .framer-FHu7m .framer-t70rri > :last-child, .framer-FHu7m .framer-1ap6svg > :last-child, .framer-FHu7m .framer-1xjkhte > :last-child, .framer-FHu7m .framer-15f3bn2 > :last-child, .framer-FHu7m .framer-848rha > :last-child, .framer-FHu7m .framer-1iuu6fw > :last-child, .framer-FHu7m .framer-e6hhz8 > :last-child, .framer-FHu7m .framer-14rq28r > :last-child, .framer-FHu7m .framer-1alqe3l > :last-child, .framer-FHu7m .framer-ofs6uw > :last-child, .framer-FHu7m .framer-pwqswc > :last-child, .framer-FHu7m .framer-1d5m9rx > :last-child, .framer-FHu7m .framer-1adh2gr > :last-child, .framer-FHu7m .framer-1r82z8s > :last-child, .framer-FHu7m .framer-bl8m10 > :last-child, .framer-FHu7m .framer-102ze45 > :last-child, .framer-FHu7m .framer-12ii12k > :last-child, .framer-FHu7m .framer-1k4hkh1 > :last-child, .framer-FHu7m .framer-1l4pwsx > :last-child, .framer-FHu7m .framer-dmndp0 > :last-child, .framer-FHu7m .framer-zsexch > :last-child, .framer-FHu7m .framer-4fmckh > :last-child, .framer-FHu7m .framer-jysydn > :last-child, .framer-FHu7m .framer-3337jq > :last-child, .framer-FHu7m .framer-10t73g2 > :last-child, .framer-FHu7m .framer-hgcduq > :last-child, .framer-FHu7m .framer-fth2hv > :last-child, .framer-FHu7m .framer-1v0820s > :last-child, .framer-FHu7m .framer-17zzf86 > :last-child, .framer-FHu7m .framer-159mpwo > :last-child, .framer-FHu7m .framer-1eo25cq > :last-child, .framer-FHu7m .framer-oav3k7 > :last-child, .framer-FHu7m .framer-ixecsl > :last-child, .framer-FHu7m .framer-1faycep > :last-child, .framer-FHu7m .framer-13h8mxq > :last-child, .framer-FHu7m .framer-1lg1kil > :last-child, .framer-FHu7m .framer-23hsww > :last-child, .framer-FHu7m .framer-3r8p34 > :last-child, .framer-FHu7m .framer-b0op6j > :last-child, .framer-FHu7m .framer-smamrc > :last-child, .framer-FHu7m .framer-ic39ib > :last-child, .framer-FHu7m .framer-4kvgh9 > :last-child, .framer-FHu7m .framer-1jfgkti > :last-child, .framer-FHu7m .framer-3b0ezu > :last-child, .framer-FHu7m .framer-1jcu0dz > :last-child, .framer-FHu7m .framer-mv848e > :last-child, .framer-FHu7m .framer-25ixoc > :last-child, .framer-FHu7m .framer-8v89gb > :last-child, .framer-FHu7m .framer-1rwcl8y > :last-child, .framer-FHu7m .framer-zlqy3n > :last-child, .framer-FHu7m .framer-l0dq9j > :last-child, .framer-FHu7m .framer-c2cfl3 > :last-child, .framer-FHu7m .framer-1p6dopq > :last-child, .framer-FHu7m .framer-1tnvhcb > :last-child, .framer-FHu7m .framer-1pcsdtm > :last-child, .framer-FHu7m .framer-1oqz339 > :last-child, .framer-FHu7m .framer-1msxmik > :last-child, .framer-FHu7m .framer-twbqv0 > :last-child, .framer-FHu7m .framer-1fobzv7 > :last-child, .framer-FHu7m .framer-1imzdhh > :last-child, .framer-FHu7m .framer-17y14lx > :last-child, .framer-FHu7m .framer-1knoo30 > :last-child { margin-right: 0px; } .framer-FHu7m .framer-bq59v0 > *, .framer-FHu7m .framer-1o8ulih > *, .framer-FHu7m .framer-of5ml2 > *, .framer-FHu7m .framer-6pm9yo > *, .framer-FHu7m .framer-10gi7gx > *, .framer-FHu7m .framer-1reiahr > *, .framer-FHu7m .framer-8gsf7b > *, .framer-FHu7m .framer-1gce9t4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FHu7m .framer-1n2o0et > *, .framer-FHu7m .framer-x0b16s > *, .framer-FHu7m .framer-u8mspp > *, .framer-FHu7m .framer-1lsk15t > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-FHu7m .framer-dp0nb7 > *, .framer-FHu7m .framer-2qdc4q > *, .framer-FHu7m .framer-1qu2q60 > *, .framer-FHu7m .framer-16iw716 > *, .framer-FHu7m .framer-1ipcw1u > *, .framer-FHu7m .framer-1p71urd > *, .framer-FHu7m .framer-18plt74 > *, .framer-FHu7m .framer-ij8sdh > *, .framer-FHu7m .framer-anqlii > *, .framer-FHu7m .framer-pd36zf > *, .framer-FHu7m .framer-dq2oo1 > *, .framer-FHu7m .framer-12sf8pi > *, .framer-FHu7m .framer-1xgivpm > *, .framer-FHu7m .framer-1lvww0o > *, .framer-FHu7m .framer-bzkfsv > *, .framer-FHu7m .framer-4gd5cl > *, .framer-FHu7m .framer-atraaz > *, .framer-FHu7m .framer-n2742a > *, .framer-FHu7m .framer-1tt7eze > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FHu7m .framer-klhsw5 > *, .framer-FHu7m .framer-1f6f9kf > *, .framer-FHu7m .framer-t70rri > * { margin: 0px; margin-left: calc(67.20003509521484px / 2); margin-right: calc(67.20003509521484px / 2); } .framer-FHu7m .framer-1tvkujv > *, .framer-FHu7m .framer-iez1yn > *, .framer-FHu7m .framer-5jalra > *, .framer-FHu7m .framer-1epeeuy > *, .framer-FHu7m .framer-10e0zb7 > *, .framer-FHu7m .framer-jl4rdy > *, .framer-FHu7m .framer-1qciapd > *, .framer-FHu7m .framer-z9euya > *, .framer-FHu7m .framer-13a32p4 > *, .framer-FHu7m .framer-a6225z > *, .framer-FHu7m .framer-1ap6svg > *, .framer-FHu7m .framer-smamrc > *, .framer-FHu7m .framer-1jfgkti > *, .framer-FHu7m .framer-mv848e > *, .framer-FHu7m .framer-1tnvhcb > * { margin: 0px; margin-left: calc(2.5600016117095947px / 2); margin-right: calc(2.5600016117095947px / 2); } .framer-FHu7m .framer-1n2rni2 > *, .framer-FHu7m .framer-1h5l3co > *, .framer-FHu7m .framer-1xjkhte > * { margin: 0px; margin-left: calc(4.800002574920654px / 2); margin-right: calc(4.800002574920654px / 2); } .framer-FHu7m .framer-1ei5on9 > *, .framer-FHu7m .framer-yfiayy > *, .framer-FHu7m .framer-q3ajp0 > *, .framer-FHu7m .framer-px1yxp > *, .framer-FHu7m .framer-138g9ez > *, .framer-FHu7m .framer-f5g7ew > *, .framer-FHu7m .framer-15f3bn2 > *, .framer-FHu7m .framer-1eo25cq > *, .framer-FHu7m .framer-8v89gb > * { margin: 0px; margin-left: calc(3.200002670288086px / 2); margin-right: calc(3.200002670288086px / 2); } .framer-FHu7m .framer-3d02e4 > *, .framer-FHu7m .framer-ijptzq > *, .framer-FHu7m .framer-1h28h16 > * { margin: 0px; margin-bottom: calc(4.800002574920654px / 2); margin-top: calc(4.800002574920654px / 2); } .framer-FHu7m .framer-1wstzqn > *, .framer-FHu7m .framer-1lhpjfc > *, .framer-FHu7m .framer-nxedts > *, .framer-FHu7m .framer-1l2n26a > *, .framer-FHu7m .framer-ibh0yr > *, .framer-FHu7m .framer-2ppdiw > * { margin: 0px; margin-bottom: calc(2.2400012016296387px / 2); margin-top: calc(2.2400012016296387px / 2); } .framer-FHu7m .framer-5k0jtg > *, .framer-FHu7m .framer-pjfhwr > *, .framer-FHu7m .framer-zki2qa > *, .framer-FHu7m .framer-tgwe89 > *, .framer-FHu7m .framer-ui6w1m > *, .framer-FHu7m .framer-k09uzi > *, .framer-FHu7m .framer-3nmtg6 > *, .framer-FHu7m .framer-1n52369 > *, .framer-FHu7m .framer-140vvsj > *, .framer-FHu7m .framer-a71a08 > *, .framer-FHu7m .framer-1ucq60m > *, .framer-FHu7m .framer-n8e2fw > *, .framer-FHu7m .framer-10g1wvk > *, .framer-FHu7m .framer-1ref9th > *, .framer-FHu7m .framer-ordpox > *, .framer-FHu7m .framer-1pd0v3b > *, .framer-FHu7m .framer-1c30unw > *, .framer-FHu7m .framer-1jkaaa > *, .framer-FHu7m .framer-1cuza7l > *, .framer-FHu7m .framer-vkbm9m > *, .framer-FHu7m .framer-qak9ro > *, .framer-FHu7m .framer-wx7l2n > *, .framer-FHu7m .framer-3khnak > *, .framer-FHu7m .framer-1c64h7g > *, .framer-FHu7m .framer-86s3hz > *, .framer-FHu7m .framer-gi0esn > *, .framer-FHu7m .framer-f78g37 > *, .framer-FHu7m .framer-15xujy2 > *, .framer-FHu7m .framer-85jzat > *, .framer-FHu7m .framer-6zfamk > *, .framer-FHu7m .framer-1fij8mo > *, .framer-FHu7m .framer-1bqvn48 > *, .framer-FHu7m .framer-1vhuxqb > *, .framer-FHu7m .framer-yoxn1j > *, .framer-FHu7m .framer-jx3wnd > *, .framer-FHu7m .framer-5u7trw > *, .framer-FHu7m .framer-dx3zsu > *, .framer-FHu7m .framer-1mntoo3 > *, .framer-FHu7m .framer-1diijfm > *, .framer-FHu7m .framer-lle0vo > *, .framer-FHu7m .framer-r3bv86 > *, .framer-FHu7m .framer-1tzp3l5 > *, .framer-FHu7m .framer-g5yn0w > *, .framer-FHu7m .framer-4x6h88 > *, .framer-FHu7m .framer-1m7mqz6 > *, .framer-FHu7m .framer-11bkfgy > *, .framer-FHu7m .framer-4x89qi > *, .framer-FHu7m .framer-qpewfu > *, .framer-FHu7m .framer-1qqgwkp > *, .framer-FHu7m .framer-1442uqm > *, .framer-FHu7m .framer-1iuu6fw > *, .framer-FHu7m .framer-e6hhz8 > *, .framer-FHu7m .framer-14rq28r > *, .framer-FHu7m .framer-1alqe3l > *, .framer-FHu7m .framer-ofs6uw > *, .framer-FHu7m .framer-pwqswc > *, .framer-FHu7m .framer-1d5m9rx > *, .framer-FHu7m .framer-1adh2gr > *, .framer-FHu7m .framer-1r82z8s > *, .framer-FHu7m .framer-bl8m10 > *, .framer-FHu7m .framer-102ze45 > *, .framer-FHu7m .framer-12ii12k > *, .framer-FHu7m .framer-1k4hkh1 > *, .framer-FHu7m .framer-1l4pwsx > *, .framer-FHu7m .framer-dmndp0 > *, .framer-FHu7m .framer-zsexch > *, .framer-FHu7m .framer-4fmckh > *, .framer-FHu7m .framer-jysydn > *, .framer-FHu7m .framer-3337jq > *, .framer-FHu7m .framer-10t73g2 > *, .framer-FHu7m .framer-hgcduq > *, .framer-FHu7m .framer-fth2hv > *, .framer-FHu7m .framer-1v0820s > *, .framer-FHu7m .framer-17zzf86 > *, .framer-FHu7m .framer-159mpwo > * { margin: 0px; margin-left: calc(1.920000672340393px / 2); margin-right: calc(1.920000672340393px / 2); } .framer-FHu7m .framer-6bgt0f > *, .framer-FHu7m .framer-s4qez0 > *, .framer-FHu7m .framer-tfo043 > * { margin: 0px; margin-bottom: calc(0.32000020146369934px / 2); margin-top: calc(0.32000020146369934px / 2); } .framer-FHu7m .framer-an6gc2 > *, .framer-FHu7m .framer-1861s8u > *, .framer-FHu7m .framer-woids4 > *, .framer-FHu7m .framer-75xdwb > *, .framer-FHu7m .framer-jo3hiu > *, .framer-FHu7m .framer-c4dugq > *, .framer-FHu7m .framer-o7w8h2 > *, .framer-FHu7m .framer-1ofn152 > *, .framer-FHu7m .framer-xayt2r > *, .framer-FHu7m .framer-1y5ae5i > *, .framer-FHu7m .framer-oav3k7 > *, .framer-FHu7m .framer-ic39ib > *, .framer-FHu7m .framer-3b0ezu > *, .framer-FHu7m .framer-25ixoc > *, .framer-FHu7m .framer-1pcsdtm > * { margin: 0px; margin-left: calc(1.2800008058547974px / 2); margin-right: calc(1.2800008058547974px / 2); } .framer-FHu7m .framer-52u4mf > *, .framer-FHu7m .framer-f0vvv5 > *, .framer-FHu7m .framer-ixecsl > * { margin: 0px; margin-left: calc(2.8800017833709717px / 2); margin-right: calc(2.8800017833709717px / 2); } .framer-FHu7m .framer-8xrazb > *, .framer-FHu7m .framer-1ps3rno > *, .framer-FHu7m .framer-1faycep > * { margin: 0px; margin-left: calc(-1.920000672340393px / 2); margin-right: calc(-1.920000672340393px / 2); } .framer-FHu7m .framer-1ki0ots > *, .framer-FHu7m .framer-11wymjr > *, .framer-FHu7m .framer-13h8mxq > * { margin: 0px; margin-left: calc(7.040005207061768px / 2); margin-right: calc(7.040005207061768px / 2); } .framer-FHu7m .framer-pv7k9c > *, .framer-FHu7m .framer-1h0vi9q > *, .framer-FHu7m .framer-1bvmd7h > *, .framer-FHu7m .framer-140qzi6 > *, .framer-FHu7m .framer-62398c > *, .framer-FHu7m .framer-1tz1g3l > *, .framer-FHu7m .framer-162505c > *, .framer-FHu7m .framer-1c3q1yu > *, .framer-FHu7m .framer-1lg1kil > *, .framer-FHu7m .framer-23hsww > *, .framer-FHu7m .framer-3r8p34 > *, .framer-FHu7m .framer-b0op6j > * { margin: 0px; margin-left: calc(1.600001335144043px / 2); margin-right: calc(1.600001335144043px / 2); } .framer-FHu7m .framer-1yxp1g9 > *, .framer-FHu7m .framer-1fuqy8v > *, .framer-FHu7m .framer-1v07i9c > * { margin: 0px; margin-bottom: calc(3.200002670288086px / 2); margin-top: calc(3.200002670288086px / 2); } .framer-FHu7m .framer-j6otbp > *, .framer-FHu7m .framer-1h6orwa > *, .framer-FHu7m .framer-7bt5o > *, .framer-FHu7m .framer-9sdx89 > *, .framer-FHu7m .framer-yc2phy > *, .framer-FHu7m .framer-1tgzwjf > *, .framer-FHu7m .framer-gmvpu9 > *, .framer-FHu7m .framer-mlyfsa > *, .framer-FHu7m .framer-33zfla > *, .framer-FHu7m .framer-1bhdo2r > *, .framer-FHu7m .framer-yptuqw > *, .framer-FHu7m .framer-1q1ydwt > *, .framer-FHu7m .framer-187kx6l > *, .framer-FHu7m .framer-8iufxt > *, .framer-FHu7m .framer-6dxohh > * { margin: 0px; margin-bottom: calc(0.9600003361701965px / 2); margin-top: calc(0.9600003361701965px / 2); } .framer-FHu7m .framer-1ghr6hf > *, .framer-FHu7m .framer-bpxuhs > *, .framer-FHu7m .framer-l5hq1n > *, .framer-FHu7m .framer-1m18v3n > *, .framer-FHu7m .framer-1aam77d > *, .framer-FHu7m .framer-1rl53ov > *, .framer-FHu7m .framer-1hxcp7a > *, .framer-FHu7m .framer-kworxh > *, .framer-FHu7m .framer-bzevgf > *, .framer-FHu7m .framer-ybjfwc > *, .framer-FHu7m .framer-lvpx2e > *, .framer-FHu7m .framer-1lpq6w4 > *, .framer-FHu7m .framer-1o1skkv > *, .framer-FHu7m .framer-10srr6w > *, .framer-FHu7m .framer-18z1ie3 > *, .framer-FHu7m .framer-8ilrri > *, .framer-FHu7m .framer-4kvgh9 > *, .framer-FHu7m .framer-1jcu0dz > *, .framer-FHu7m .framer-1rwcl8y > *, .framer-FHu7m .framer-zlqy3n > *, .framer-FHu7m .framer-c2cfl3 > *, .framer-FHu7m .framer-1p6dopq > *, .framer-FHu7m .framer-1oqz339 > *, .framer-FHu7m .framer-1msxmik > * { margin: 0px; margin-left: calc(0.8888893127441406px / 2); margin-right: calc(0.8888893127441406px / 2); } .framer-FHu7m .framer-syeory > *, .framer-FHu7m .framer-hah5pp > *, .framer-FHu7m .framer-zkor5v > * { margin: 0px; margin-bottom: calc(2.8800017833709717px / 2); margin-top: calc(2.8800017833709717px / 2); } .framer-FHu7m .framer-rhkgkv > *, .framer-FHu7m .framer-49xeur > *, .framer-FHu7m .framer-l0dq9j > * { margin: 0px; margin-left: calc(3.840001344680786px / 2); margin-right: calc(3.840001344680786px / 2); } .framer-FHu7m .framer-1wffltk > *, .framer-FHu7m .framer-1sgiywi > *, .framer-FHu7m .framer-9fxgnx > * { margin: 0px; margin-bottom: calc(3.7360830307006836px / 2); margin-top: calc(3.7360830307006836px / 2); } .framer-FHu7m .framer-c25aao > *, .framer-FHu7m .framer-m26i6g > *, .framer-FHu7m .framer-1sssotp > * { margin: 0px; margin-bottom: calc(11.20824909210205px / 2); margin-top: calc(11.20824909210205px / 2); } .framer-FHu7m .framer-1ay89jy > *, .framer-FHu7m .framer-6g5tbo > *, .framer-FHu7m .framer-1wpa26x > *, .framer-FHu7m .framer-t5ewb4 > *, .framer-FHu7m .framer-13dmtgb > *, .framer-FHu7m .framer-1eel6y9 > *, .framer-FHu7m .framer-twbqv0 > *, .framer-FHu7m .framer-1fobzv7 > *, .framer-FHu7m .framer-1imzdhh > * { margin: 0px; margin-left: calc(3.7360830307006836px / 2); margin-right: calc(3.7360830307006836px / 2); } .framer-FHu7m .framer-1r4081m > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-FHu7m .framer-15ryhx6 > * { margin: 0px; margin-left: calc(4.5833330154418945px / 2); margin-right: calc(4.5833330154418945px / 2); } .framer-FHu7m .framer-1gs0dx5 > * { margin: 0px; margin-bottom: calc(6.666666507720947px / 2); margin-top: calc(6.666666507720947px / 2); } .framer-FHu7m .framer-ngdjk8 > *, .framer-FHu7m .framer-1l2zais > *, .framer-FHu7m .framer-165dgeq > * { margin: 0px; margin-bottom: calc(3.3333332538604736px / 2); margin-top: calc(3.3333332538604736px / 2); } .framer-FHu7m .framer-plbqfd > *, .framer-FHu7m .framer-1trtn4j > *, .framer-FHu7m .framer-1hl3fpq > *, .framer-FHu7m .framer-z32ggl > *, .framer-FHu7m .framer-1fyxrsv > *, .framer-FHu7m .framer-17y14lx > *, .framer-FHu7m .framer-1knoo30 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FHu7m .framer-11uajx1 > * { margin: 0px; margin-left: calc(5.416666507720947px / 2); margin-right: calc(5.416666507720947px / 2); } .framer-FHu7m .framer-h3n4ht > * { margin: 0px; margin-bottom: calc(3.75px / 2); margin-top: calc(3.75px / 2); } .framer-FHu7m .framer-1df3zbc > * { margin: 0px; margin-bottom: calc(4.5833330154418945px / 2); margin-top: calc(4.5833330154418945px / 2); } .framer-FHu7m .framer-giurpd > *, .framer-FHu7m .framer-1tiux0 > *, .framer-FHu7m .framer-1s0hla3 > * { margin: 0px; margin-left: calc(7.916666507720947px / 2); margin-right: calc(7.916666507720947px / 2); } .framer-FHu7m .framer-156l65z > * { margin: 0px; margin-bottom: calc(5.8333330154418945px / 2); margin-top: calc(5.8333330154418945px / 2); } .framer-FHu7m .framer-mvbaip > *, .framer-FHu7m .framer-1wa9dxt > *, .framer-FHu7m .framer-hip2kr > *, .framer-FHu7m .framer-2tcby2 > *, .framer-FHu7m .framer-1tp3eu > *, .framer-FHu7m .framer-42xp2p > *, .framer-FHu7m .framer-17375uo > * { margin: 0px; margin-bottom: calc(0.8474907875061035px / 2); margin-top: calc(0.8474907875061035px / 2); } .framer-FHu7m .framer-vr3lyx > *, .framer-FHu7m .framer-1kefjo7 > *, .framer-FHu7m .framer-1mo5leo > *, .framer-FHu7m .framer-1nf6pgw > *, .framer-FHu7m .framer-6gygef > * { margin: 0px; margin-bottom: calc(1.694981575012207px / 2); margin-top: calc(1.694981575012207px / 2); } .framer-FHu7m .framer-1jq2c23 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-FHu7m .framer-yzdrv9 > *, .framer-FHu7m .framer-4oeak3 > * { margin: 0px; margin-left: calc(2.5px / 2); margin-right: calc(2.5px / 2); } .framer-FHu7m .framer-lo3hvz > * { margin: 0px; margin-left: calc(15.833333015441895px / 2); margin-right: calc(15.833333015441895px / 2); } .framer-FHu7m .framer-1d6a9pe > * { margin: 0px; margin-bottom: calc(4.166666507720947px / 2); margin-top: calc(4.166666507720947px / 2); } .framer-FHu7m .framer-1ow6woi > * { margin: 0px; margin-left: calc(3.3333332538604736px / 2); margin-right: calc(3.3333332538604736px / 2); } .framer-FHu7m .framer-1glzkpd > * { margin: 0px; margin-left: calc(8.75px / 2); margin-right: calc(8.75px / 2); } .framer-FHu7m .framer-1r53syh > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-FHu7m .framer-1e1xsab > * { margin: 0px; margin-bottom: calc(7.916666507720947px / 2); margin-top: calc(7.916666507720947px / 2); } .framer-FHu7m .framer-1min7jw > * { margin: 0px; margin-left: calc(3.3333334922790527px / 2); margin-right: calc(3.3333334922790527px / 2); } .framer-FHu7m .framer-1ho4z9c > * { margin: 0px; margin-bottom: calc(2.6666667461395264px / 2); margin-top: calc(2.6666667461395264px / 2); } .framer-FHu7m .framer-260i4m > *, .framer-FHu7m .framer-9gf1ih > *, .framer-FHu7m .framer-eqtu9a > *, .framer-FHu7m .framer-sx9911 > *, .framer-FHu7m .framer-1u90p6a > *, .framer-FHu7m .framer-1w6uxiv > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FHu7m .framer-1hh7cug > *, .framer-FHu7m .framer-1ew8omw > *, .framer-FHu7m .framer-8ru12o > *, .framer-FHu7m .framer-63jrgz > *, .framer-FHu7m .framer-sxbwc0 > *, .framer-FHu7m .framer-2j68eh > *, .framer-FHu7m .framer-1onarli > *, .framer-FHu7m .framer-1djdxkw > *, .framer-FHu7m .framer-1xj1tck > *, .framer-FHu7m .framer-182ez41 > * { margin: 0px; margin-bottom: calc(3.592592716217041px / 2); margin-top: calc(3.592592716217041px / 2); } .framer-FHu7m .framer-1xhtsj9 > *, .framer-FHu7m .framer-bovx17 > * { margin: 0px; margin-left: calc(2.75px / 2); margin-right: calc(2.75px / 2); } .framer-FHu7m .framer-xd28a5 > *, .framer-FHu7m .framer-1tfn7sc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-FHu7m .framer-8mc6vy > *, .framer-FHu7m .framer-pvepq8 > *, .framer-FHu7m .framer-1ww57c8 > *, .framer-FHu7m .framer-r2twmw > *, .framer-FHu7m .framer-16o07vk > *, .framer-FHu7m .framer-tscrmb > * { margin: 0px; margin-left: calc(5.333333492279053px / 2); margin-right: calc(5.333333492279053px / 2); } .framer-FHu7m .framer-1y5ulpz > *, .framer-FHu7m .framer-1ovew5t > *, .framer-FHu7m .framer-je8vpr > *, .framer-FHu7m .framer-pyyh6f > *, .framer-FHu7m .framer-xdc65h > *, .framer-FHu7m .framer-1pcixyy > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-FHu7m .framer-11tgj4r > *, .framer-FHu7m .framer-1ufgvjs > *, .framer-FHu7m .framer-1ydxvoh > *, .framer-FHu7m .framer-o7zgo1 > *, .framer-FHu7m .framer-1p3gi70 > *, .framer-FHu7m .framer-1heu76q > *, .framer-FHu7m .framer-iqneoc > *, .framer-FHu7m .framer-v13nh7 > *, .framer-FHu7m .framer-ahtvim > *, .framer-FHu7m .framer-1odgdb6 > *, .framer-FHu7m .framer-15e80cw > *, .framer-FHu7m .framer-11pzlwm > *, .framer-FHu7m .framer-gptszl > *, .framer-FHu7m .framer-bmlfa0 > *, .framer-FHu7m .framer-r0x1jl > *, .framer-FHu7m .framer-1wqub68 > * { margin: 0px; margin-left: calc(1.3333333730697632px / 2); margin-right: calc(1.3333333730697632px / 2); } .framer-FHu7m .framer-16ikh08 > *, .framer-FHu7m .framer-1500xhl > *, .framer-FHu7m .framer-1d0hlfo > *, .framer-FHu7m .framer-sz1ph3 > *, .framer-FHu7m .framer-c59wy8 > *, .framer-FHu7m .framer-piy165 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-FHu7m.framer-v-1gbxe5m.framer-1ye6yvf { width: 1024px; }\",\".framer-FHu7m.framer-v-1gbxe5m .framer-12gi6uv { left: 58px; width: 474px; }\",\".framer-FHu7m.framer-v-1gbxe5m .framer-xxtb0r { width: 89%; }\",\".framer-FHu7m.framer-v-x4lnl8.framer-1ye6yvf { padding: 56px 0px 0px 0px; width: 390px; }\",\".framer-FHu7m.framer-v-x4lnl8 .framer-16t24p1, .framer-FHu7m.framer-v-1eeo2gv .framer-16t24p1 { padding: 0px; }\",\".framer-FHu7m.framer-v-x4lnl8 .framer-1o8ulih, .framer-FHu7m.framer-v-1eeo2gv .framer-1o8ulih { gap: 8px; order: 2; width: 90%; }\",\".framer-FHu7m.framer-v-x4lnl8 .framer-xxtb0r, .framer-FHu7m.framer-v-1eeo2gv .framer-xxtb0r { width: 100%; }\",\".framer-FHu7m.framer-v-x4lnl8 .framer-1fyxrsv { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FHu7m.framer-v-x4lnl8 .framer-1o8ulih { gap: 0px; } .framer-FHu7m.framer-v-x4lnl8 .framer-1o8ulih > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-FHu7m.framer-v-x4lnl8 .framer-1o8ulih > :first-child { margin-top: 0px; } .framer-FHu7m.framer-v-x4lnl8 .framer-1o8ulih > :last-child { margin-bottom: 0px; } }\",\".framer-FHu7m.framer-v-1eeo2gv.framer-1ye6yvf { padding: 56px 0px 0px 0px; width: 240px; }\",\".framer-FHu7m.framer-v-1eeo2gv .framer-9p7j4e, .framer-FHu7m.framer-v-1eeo2gv .framer-htp6ny { width: var(--framer-aspect-ratio-supported, 722px); }\",\".framer-FHu7m.framer-v-1eeo2gv .framer-npnnch-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FHu7m.framer-v-1eeo2gv .framer-1o8ulih { gap: 0px; } .framer-FHu7m.framer-v-1eeo2gv .framer-1o8ulih > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-FHu7m.framer-v-1eeo2gv .framer-1o8ulih > :first-child { margin-top: 0px; } .framer-FHu7m.framer-v-1eeo2gv .framer-1o8ulih > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-FHu7m[data-border=\"true\"]::after, .framer-FHu7m [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 947\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NvTYqy1bW\":{\"layout\":[\"fixed\",\"auto\"]},\"xV63EmHSr\":{\"layout\":[\"fixed\",\"auto\"]},\"c9jFqnbfm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIzWFQ31jN=withCSS(Component,css,\"framer-FHu7m\");export default FramerIzWFQ31jN;FramerIzWFQ31jN.displayName=\"3 channels\";FramerIzWFQ31jN.defaultProps={height:947,width:1440};addPropertyControls(FramerIzWFQ31jN,{variant:{options:[\"waKrVsugR\",\"NvTYqy1bW\",\"xV63EmHSr\",\"c9jFqnbfm\"],optionTitles:[\"Desktop\",\"tab\",\"Phone\",\"RUSS PHONE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIzWFQ31jN,[{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:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNi0Dp6_cOyA.woff2\",weight:\"600\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNi0Dp6_cOyA.woff2\",weight:\"500\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNi0Dp6_cOyA.woff2\",weight:\"700\"},{family:\"Gabarito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gabarito/v7/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2Y8W0EwItq6bFIg.woff2\",weight:\"800\"}]},...PersonalityScreenFonts,...BadgeFonts,...PeopleFonts,...SlideshowFonts,...WebAppFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIzWFQ31jN\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NvTYqy1bW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xV63EmHSr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c9jFqnbfm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"947\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/G3ywNsrai8gUIPoLriym/Scyz862LHB1Tmv7hBFFv/BUFU3eB6_.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lEOCM4qbuHKnXBMcx1Rr/T1EoF0cXT6eG6bspHQwY/rYEMUuCfo.js\";import Button from\"https://framerusercontent.com/modules/LHjXpCkGfHeAUvymr89F/PQ9t53LY2rDFHMQontaD/DmC0ZSyBZ.js\";import PersonalityScreen from\"https://framerusercontent.com/modules/EKPID0dGAaTcEARRV3LM/ViqVQNPy0LI1fjLLq8IH/Jy95YS182.js\";import DecisionMaking from\"https://framerusercontent.com/modules/hV6cs8J1TzUxiH6vMPsu/7q4G43jUlL4Wm13R2TlM/L4Aibc34K.js\";import ConflictManagerMoving from\"https://framerusercontent.com/modules/v8hkdLdu8blj5Ry4SORJ/ImNhjuqXpCDfaJDb9Cwm/ObrtXyZUb.js\";import Badge from\"https://framerusercontent.com/modules/AXdVHfaUlrvBqjdn9w8h/NMr1VzpAMYTQ9S1UXXdX/z_6X07ADe.js\";const BadgeFonts=getFonts(Badge);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const DecisionMakingFonts=getFonts(DecisionMaking);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const ConflictManagerMovingFonts=getFonts(ConflictManagerMoving);const PersonalityScreenFonts=getFonts(PersonalityScreen);const cycleOrder=[\"M6LdclWka\",\"WeTzCrx5J\",\"mtho6a7sH\",\"cZXuExYhS\"];const serializationHash=\"framer-UxHpD\";const variantClassNames={cZXuExYhS:\"framer-v-uopd46\",M6LdclWka:\"framer-v-kbnrn0\",mtho6a7sH:\"framer-v-unce4a\",WeTzCrx5J:\"framer-v-cn285t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};const transition3={delay:2.5,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:.6,rotate:60,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:100,y:100};const transition4={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-100,y:-100};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Russ Phone\":\"cZXuExYhS\",Desktop:\"M6LdclWka\",Phone:\"mtho6a7sH\",tab:\"WeTzCrx5J\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"M6LdclWka\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,LcJ1W7bEeKGXdd2ZOe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M6LdclWka\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mtho6a7sH\",\"cZXuExYhS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"mtho6a7sH\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"cZXuExYhS\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kbnrn0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"M6LdclWka\",ref:refBinding,style:{...style},...addPropertyOverrides({cZXuExYhS:{\"data-framer-name\":\"Russ Phone\"},mtho6a7sH:{\"data-framer-name\":\"Phone\"},WeTzCrx5J:{\"data-framer-name\":\"tab\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3skpbk\",\"data-framer-name\":\"Contents\",layoutDependency:layoutDependency,layoutId:\"r2Q6dQ7yf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ghuhi2\",\"data-framer-name\":\"Hero\",layoutDependency:layoutDependency,layoutId:\"M9taxihgr\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fk78ui\",\"data-framer-name\":\"Text + Button\",layoutDependency:layoutDependency,layoutId:\"VcWi0RrRh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m4bxlf\",layoutDependency:layoutDependency,layoutId:\"qIptJtVbW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wax6jm-container\",layoutDependency:layoutDependency,layoutId:\"XsZHYh5GY-container\",nodeId:\"XsZHYh5GY\",rendersWithMotion:true,scopeId:\"J3YjjM8g9\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"XsZHYh5GY\",layoutId:\"XsZHYh5GY\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"People Intelligence - Powered by Prism\\xae\",SA9jAg9_n:false,variant:\"WS5ZYU_NY\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rq9wjs\",\"data-border\":true,\"data-framer-name\":\"Temp Badge\",layoutDependency:layoutDependency,layoutId:\"I5l63Hbxz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 1px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe))\"},children:[\"People Intelligence - \",/*#__PURE__*/_jsx(motion.br,{}),\"Powered by Prism\\xae\"]})}),className:\"framer-1ovmgim\",\"data-framer-name\":\"Get started\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"DOV3XBvGu\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe)\",\"--variable-reference-LcJ1W7bEe-KGXdd2ZOe\":LcJ1W7bEeKGXdd2ZOe},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",children:'Say goodbye to stale \"personality tests\"'})}),className:\"framer-iu8g3f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gTnOb9AI2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mtho6a7sH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",children:\"Say goodbye to stale personality tests\"})})},WeTzCrx5J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",children:\"Say goodbye to stale \u201Cpersonality tests\u201D\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yvlj32\",\"data-border\":true,\"data-framer-name\":\"Temp Badge\",layoutDependency:layoutDependency,layoutId:\"OpoGxLOHX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 1px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe))\"},children:\"People Intelligence - \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe))\"},children:\"Powered by Prism\\xae\"})]}),className:\"framer-kujkeo\",\"data-framer-name\":\"Get started\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"aQDmGSoZt\",style:{\"--extracted-2gxw0f\":\"var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe)\",\"--extracted-r6o4lv\":\"var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe)\",\"--variable-reference-LcJ1W7bEe-KGXdd2ZOe\":LcJ1W7bEeKGXdd2ZOe},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwjqt8\",layoutDependency:layoutDependency,layoutId:\"G6PqPd1zd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople democratizes access to assessments, empowering the modern workforce with self and team insights - in the moments that matter most and in the tools you already use.\"})}),className:\"framer-oy9nqx\",\"data-framer-name\":\"Did you know that your unused PTO has a cash value that's waiting for you? We're here to help you access it now! See what your anticipated payout could be with our free calculator.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vkD7V6rl8\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,...addPropertyOverrides({cZXuExYhS:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8954)`,y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-821)/2+0+0)+0+0+0+0+0+331},mtho6a7sH:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-884)/2+0+0)+0+0+0+0+0+314}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1boh3ir-container\",layoutDependency:layoutDependency,layoutId:\"LCIVIbcYE-container\",nodeId:\"LCIVIbcYE\",rendersWithMotion:true,scopeId:\"J3YjjM8g9\",children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:50,GDBvPe0Ba:\"https://meetings.hubspot.com/surepeople/request-a-demo?uuid=847c612c-1370-4717-b0e2-6252ab547315\",height:\"100%\",id:\"LCIVIbcYE\",J61qut8Pm:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",kN9fQFqwN:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 11))\",kvN6MvY_7:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",layoutId:\"LCIVIbcYE\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Get Access for Free!\",SA9jAg9_n:true,tHrQPVLyi:true,variant:\"FFohPlw_8\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-right-circle\",...addPropertyOverrides({cZXuExYhS:{style:{width:\"100%\"},variant:\"jP0G1OLh5\"},mtho6a7sH:{variant:\"TrbTAzlYo\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h24gvt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oi534kUvL\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qgofnh\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"zPgG9IzzI\",style:{rotate:-22,transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1b02hmr\",\"data-framer-name\":\"color\",layoutDependency:layoutDependency,layoutId:\"dsql_Jczt\",style:{backgroundColor:\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgb(208, 239, 255))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,filter:\"blur(100px)\",WebkitFilter:\"blur(100px)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-113gps7\",\"data-framer-name\":\"color\",layoutDependency:layoutDependency,layoutId:\"jziSNPlZj\",style:{backgroundColor:\"var(--token-dcad5a88-eebb-49c1-8e25-9a9f4877fc32, rgb(40, 181, 237))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,filter:\"blur(100px)\",WebkitFilter:\"blur(100px)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16wwzij\",layoutDependency:layoutDependency,layoutId:\"gcmayp16i\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:361,width:\"309px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-wd75cv-container\",layoutDependency:layoutDependency,layoutId:\"QzOYlHGjG-container\",nodeId:\"QzOYlHGjG\",rendersWithMotion:true,scopeId:\"J3YjjM8g9\",style:{rotate:5},children:/*#__PURE__*/_jsx(DecisionMaking,{height:\"100%\",id:\"QzOYlHGjG\",layoutId:\"QzOYlHGjG\",style:{width:\"100%\"},variant:\"tA48k4cUA\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18nl8gu-container\",layoutDependency:layoutDependency,layoutId:\"yImH14Bp4-container\",nodeId:\"yImH14Bp4\",rendersWithMotion:true,scopeId:\"J3YjjM8g9\",style:{rotate:-6},children:/*#__PURE__*/_jsx(ConflictManagerMoving,{height:\"100%\",id:\"yImH14Bp4\",layoutId:\"yImH14Bp4\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:578,width:\"378px\",...addPropertyOverrides({cZXuExYhS:{height:564,y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-821)/2+0+0)+0+437+0+-90.8421},mtho6a7sH:{height:564,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-884)/2+0+0)+0+428+0+-55}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15qml9z-container\",layoutDependency:layoutDependency,layoutId:\"XwddBgfsg-container\",nodeId:\"XwddBgfsg\",rendersWithMotion:true,scopeId:\"J3YjjM8g9\",...addPropertyOverrides({cZXuExYhS:{transformTemplate:transformTemplate1},mtho6a7sH:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(PersonalityScreen,{height:\"100%\",id:\"XwddBgfsg\",layoutId:\"XwddBgfsg\",style:{height:\"100%\",width:\"100%\"},variant:\"ZcmZGagTW\",width:\"100%\",...addPropertyOverrides({cZXuExYhS:{style:{width:\"100%\"},variant:\"VstFWx9ny\"},mtho6a7sH:{style:{width:\"100%\"},variant:\"lEMnVr_QL\"}},baseVariant,gestureVariant)})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UxHpD.framer-18g7h4t, .framer-UxHpD .framer-18g7h4t { display: block; }\",\".framer-UxHpD.framer-kbnrn0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 56px 0px; position: relative; width: 1440px; }\",\".framer-UxHpD .framer-3skpbk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UxHpD .framer-1ghuhi2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64%; }\",\".framer-UxHpD .framer-fk78ui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 74%; }\",\".framer-UxHpD .framer-m4bxlf, .framer-UxHpD .framer-xwjqt8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UxHpD .framer-1wax6jm-container, .framer-UxHpD .framer-1boh3ir-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UxHpD .framer-rq9wjs { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 2px 10px 2px 10px; position: relative; width: min-content; }\",\".framer-UxHpD .framer-1ovmgim, .framer-UxHpD .framer-kujkeo { cursor: default; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UxHpD .framer-iu8g3f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 592px; word-break: break-word; word-wrap: break-word; }\",\".framer-UxHpD .framer-1yvlj32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-UxHpD .framer-oy9nqx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-UxHpD .framer-1h24gvt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 652px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UxHpD .framer-qgofnh { bottom: 9px; flex: none; height: 299px; left: -72px; overflow: visible; position: absolute; width: 564px; z-index: 0; }\",\".framer-UxHpD .framer-1b02hmr { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 299px); }\",\".framer-UxHpD .framer-113gps7 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 299px); }\",\".framer-UxHpD .framer-16wwzij { flex: none; height: 560px; overflow: visible; position: relative; width: 378px; }\",\".framer-UxHpD .framer-wd75cv-container { bottom: 30px; flex: none; height: auto; position: absolute; right: -23px; width: 309px; }\",\".framer-UxHpD .framer-18nl8gu-container { bottom: 23px; flex: none; height: 307px; left: -31px; position: absolute; width: auto; }\",\".framer-UxHpD .framer-15qml9z-container { bottom: -18px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UxHpD.framer-v-cn285t.framer-kbnrn0 { width: 1024px; }\",\".framer-UxHpD.framer-v-cn285t .framer-1ghuhi2 { align-self: stretch; height: auto; width: 59%; }\",\".framer-UxHpD.framer-v-cn285t .framer-iu8g3f { width: 103%; }\",\".framer-UxHpD.framer-v-cn285t .framer-qgofnh { left: 0px; right: -145px; width: unset; }\",\".framer-UxHpD.framer-v-unce4a.framer-kbnrn0 { gap: 40px; justify-content: center; padding: 32px 0px 32px 0px; width: 390px; }\",\".framer-UxHpD.framer-v-unce4a .framer-3skpbk { flex-direction: column; gap: 40px; justify-content: center; max-width: 100%; }\",\".framer-UxHpD.framer-v-unce4a .framer-1ghuhi2, .framer-UxHpD.framer-v-uopd46 .framer-1ghuhi2 { width: 99%; }\",\".framer-UxHpD.framer-v-unce4a .framer-fk78ui, .framer-UxHpD.framer-v-unce4a .framer-iu8g3f, .framer-UxHpD.framer-v-uopd46 .framer-fk78ui { width: 90%; }\",\".framer-UxHpD.framer-v-unce4a .framer-oy9nqx, .framer-UxHpD.framer-v-uopd46 .framer-oy9nqx, .framer-UxHpD.framer-v-uopd46 .framer-1boh3ir-container { width: 100%; }\",\".framer-UxHpD.framer-v-unce4a .framer-1h24gvt, .framer-UxHpD.framer-v-uopd46 .framer-1h24gvt { flex: none; height: min-content; justify-content: center; width: 100%; }\",\".framer-UxHpD.framer-v-unce4a .framer-qgofnh, .framer-UxHpD.framer-v-uopd46 .framer-qgofnh { bottom: 25px; right: -101px; width: unset; }\",\".framer-UxHpD.framer-v-unce4a .framer-1b02hmr, .framer-UxHpD.framer-v-unce4a .framer-113gps7, .framer-UxHpD.framer-v-uopd46 .framer-1b02hmr, .framer-UxHpD.framer-v-uopd46 .framer-113gps7 { width: var(--framer-aspect-ratio-supported, 722px); }\",\".framer-UxHpD.framer-v-unce4a .framer-16wwzij { height: 456px; }\",\".framer-UxHpD.framer-v-unce4a .framer-15qml9z-container, .framer-UxHpD.framer-v-uopd46 .framer-15qml9z-container { bottom: unset; height: auto; top: 50%; }\",\".framer-UxHpD.framer-v-uopd46.framer-kbnrn0 { gap: 40px; justify-content: center; padding: 16px 0px 32px 0px; width: 240px; }\",\".framer-UxHpD.framer-v-uopd46 .framer-3skpbk { flex-direction: column; gap: 32px; justify-content: center; max-width: 100%; }\",\".framer-UxHpD.framer-v-uopd46 .framer-m4bxlf { gap: 20px; }\",\".framer-UxHpD.framer-v-uopd46 .framer-iu8g3f { order: 3; width: 90%; }\",\".framer-UxHpD.framer-v-uopd46 .framer-1yvlj32 { cursor: default; gap: 8px; order: 2; padding: 2px 10px 2px 10px; }\",\".framer-UxHpD.framer-v-uopd46 .framer-xwjqt8 { order: 4; }\",\".framer-UxHpD.framer-v-uopd46 .framer-16wwzij { height: 384px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-UxHpD[data-border=\"true\"]::after, .framer-UxHpD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 748\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WeTzCrx5J\":{\"layout\":[\"fixed\",\"auto\"]},\"mtho6a7sH\":{\"layout\":[\"fixed\",\"auto\"]},\"cZXuExYhS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJ3YjjM8g9=withCSS(Component,css,\"framer-UxHpD\");export default FramerJ3YjjM8g9;FramerJ3YjjM8g9.displayName=\"Hero\";FramerJ3YjjM8g9.defaultProps={height:748,width:1440};addPropertyControls(FramerJ3YjjM8g9,{variant:{options:[\"M6LdclWka\",\"WeTzCrx5J\",\"mtho6a7sH\",\"cZXuExYhS\"],optionTitles:[\"Desktop\",\"tab\",\"Phone\",\"Russ Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJ3YjjM8g9,[{explicitInter:true,fonts:[{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNi0Dp6_cOyA.woff2\",weight:\"500\"},{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\"}]},...BadgeFonts,...ButtonFonts,...DecisionMakingFonts,...ConflictManagerMovingFonts,...PersonalityScreenFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ3YjjM8g9\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"748\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WeTzCrx5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mtho6a7sH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cZXuExYhS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J3YjjM8g9.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/G3ywNsrai8gUIPoLriym/Scyz862LHB1Tmv7hBFFv/BUFU3eB6_.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lEOCM4qbuHKnXBMcx1Rr/T1EoF0cXT6eG6bspHQwY/rYEMUuCfo.js\";import Button from\"https://framerusercontent.com/modules/LHjXpCkGfHeAUvymr89F/PQ9t53LY2rDFHMQontaD/DmC0ZSyBZ.js\";import Logo from\"https://framerusercontent.com/modules/c40tGIq1PVVWjLDOD4Ng/6uHK3DSJZBiiCIcAa2Cb/k5fJ6bKzX.js\";import SurleyBodyColor from\"https://framerusercontent.com/modules/eejWnaOHs8Q5QbkZRQH8/UK5doMdJt0C02fmcN28A/KRPN8jwRM.js\";import Badge from\"https://framerusercontent.com/modules/AXdVHfaUlrvBqjdn9w8h/NMr1VzpAMYTQ9S1UXXdX/z_6X07ADe.js\";const BadgeFonts=getFonts(Badge);const ButtonFonts=getFonts(Button);const LogoFonts=getFonts(Logo);const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const SurleyBodyColorFonts=getFonts(SurleyBodyColor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"l2vRvw_2v\",\"tzZiLTswA\",\"y8NpVF3OL\",\"bzXwMxz5A\"];const serializationHash=\"framer-7kyUs\";const variantClassNames={bzXwMxz5A:\"framer-v-1tof8be\",l2vRvw_2v:\"framer-v-12szp6e\",tzZiLTswA:\"framer-v-1xb5a2x\",y8NpVF3OL:\"framer-v-3eo61s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-209,y:0};const transition2={damping:30,delay:.8,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-209,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-58,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-58,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-65,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-65,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-164,y:0};const transition3={damping:30,delay:1,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-164,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-139,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-139,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-234,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-234,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-15,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-15,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:30,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:30,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:67,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:67,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:100,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:71,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:71,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:155,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:155,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:115,y:0};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:115,y:0};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:57,y:0};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:57,y:0};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:41,y:0};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:41,y:0};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-347,y:0};const transition4={damping:30,delay:1.2,mass:1.3,stiffness:150,type:\"spring\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-347,y:0};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-137,y:0};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-137,y:0};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-277,y:0};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-277,y:0};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-16,y:0};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-16,y:0};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:204,y:0};const transition5={damping:30,delay:1.2,mass:1,stiffness:150,type:\"spring\"};const animation39={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:204,y:0};const animation40={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:104,y:0};const animation41={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:104,y:0};const animation42={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:282,y:0};const animation43={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:282,y:0};const animation44={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:24,y:0};const animation45={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:24,y:0};const animation46={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:6,x:0,y:100};const transition6={damping:30,delay:1.7,mass:1,stiffness:400,type:\"spring\"};const animation47={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:6,transition:transition6,x:0,y:100};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Russ Phone\":\"bzXwMxz5A\",Desktop:\"l2vRvw_2v\",Phone:\"tzZiLTswA\",Tablet:\"y8NpVF3OL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"l2vRvw_2v\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LcJ1W7bEeKGXdd2ZOe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l2vRvw_2v\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bzXwMxz5A\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"bzXwMxz5A\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12szp6e\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"l2vRvw_2v\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({bzXwMxz5A:{\"data-framer-name\":\"Russ Phone\"},tzZiLTswA:{\"data-framer-name\":\"Phone\"},y8NpVF3OL:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j04r6j\",layoutDependency:layoutDependency,layoutId:\"yzWZ2zomm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"center\"},children:\"It all starts with Prism\\xae\"})}),className:\"framer-ss9tjy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jQJZ0myEK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"It all starts with Prism\\xae\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"It all starts with Prism\\xae\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fjvisd\",\"data-border\":true,\"data-framer-name\":\"Temp Badge\",layoutDependency:layoutDependency,layoutId:\"xqeZW77In\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 1px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe))\"},children:\"The most robust psychometric \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe))\"},children:\"assessment in the world!\"})]}),className:\"framer-6klsie\",\"data-framer-name\":\"Get started\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"JqOTJgfoj\",style:{\"--extracted-2gxw0f\":\"var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe)\",\"--extracted-r6o4lv\":\"var(--variable-reference-LcJ1W7bEe-KGXdd2ZOe)\",\"--variable-reference-LcJ1W7bEe-KGXdd2ZOe\":LcJ1W7bEeKGXdd2ZOe},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+0+0)+8+87,...addPropertyOverrides({tzZiLTswA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+0+0)+8+87}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s43nsd-container\",layoutDependency:layoutDependency,layoutId:\"ZW0ieKbTj-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"ZW0ieKbTj\",layoutId:\"ZW0ieKbTj\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"The most robust psychometric assessment in the world!\",SA9jAg9_n:false,variant:\"WS5ZYU_NY\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",...addPropertyOverrides({tzZiLTswA:{variant:\"TOdBGj83t\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52vnh8\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Gu3JNX9qV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iwlio6\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"DGJqUuQi3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lk685f\",layoutDependency:layoutDependency,layoutId:\"xodTGGm0A\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gain a deeper understanding of yourself and your co-workers with Prism\\xae. We empower every person to understand their strengths, navigate challenges, and build stronger relationships by measuring and providing visibility into 54 distinct traits and attributes.\"})}),className:\"framer-1bn9c1c\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pxbXlgcs5\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Gain a deeper understanding of yourself and your co-workers with Prism\\xae. We empower every person to understand their strengths, navigate challenges, and build stronger relationships by measuring and providing visibility into 54 distinct traits and attributes.\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Gain a deeper understanding of yourself and your co-workers with Prism\\xae. We empower every person to understand their strengths, navigate challenges, and build stronger relationships by measuring and providing visibility into 54 distinct traits and attributes.\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,y:(componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+0+0+0+200,...addPropertyOverrides({bzXwMxz5A:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+0+0+0+200},tzZiLTswA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+0+0+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bcjh2r-container\",layoutDependency:layoutDependency,layoutId:\"X938g0WgL-container\",children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:50,GDBvPe0Ba:\"https://meetings.hubspot.com/surepeople/request-a-demo?uuid=847c612c-1370-4717-b0e2-6252ab547315\",height:\"100%\",id:\"X938g0WgL\",J61qut8Pm:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",kN9fQFqwN:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(218, 191, 245))\",kvN6MvY_7:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",layoutId:\"X938g0WgL\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Get Access for Free\",SA9jAg9_n:true,tHrQPVLyi:false,variant:\"TrbTAzlYo\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-right-circle\",...addPropertyOverrides({bzXwMxz5A:{variant:\"jP0G1OLh5\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kj5thz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cnMvQbIjS\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8uzwk\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"sbOozZfSB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o4o86p\",\"data-border\":true,\"data-framer-name\":\"Image \",layoutDependency:layoutDependency,layoutId:\"c80OW8gl5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 21px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},variants:{bzXwMxz5A:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},tzZiLTswA:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-saerx2\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"GjxdKT_WH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sckoa1\",\"data-framer-name\":\"User\",layoutDependency:layoutDependency,layoutId:\"zlUYmfF3A\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+0+314+0+0+24+0+0+2,...addPropertyOverrides({bzXwMxz5A:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+0+328+0+0+15+0+0+0},tzZiLTswA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+0+328+0+0+15+0+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hrxdd2-container\",layoutDependency:layoutDependency,layoutId:\"uLihHLiYH-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"uLihHLiYH\",layoutId:\"uLihHLiYH\",style:{height:\"100%\"},variant:\"DOmUnd4Pt\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rtgzqe\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"vNewHPiHk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v1mwz8\",layoutDependency:layoutDependency,layoutId:\"lHLtBgBrA\",style:{backgroundColor:\"rgb(243, 243, 247)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iakrfg\",layoutDependency:layoutDependency,layoutId:\"Cd8gC0r13\",style:{backgroundColor:\"rgb(243, 243, 247)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-132w3t0-container\",layoutDependency:layoutDependency,layoutId:\"ntDrH5d6w-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"menu\",id:\"ntDrH5d6w\",layoutId:\"ntDrH5d6w\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2oi50g\",layoutDependency:layoutDependency,layoutId:\"MlNkbjCFN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i0ysnz\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"j7U4D4Xho\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"External\"})}),className:\"framer-7txdc9\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"iT9683YSo\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"External\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"External\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"External\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1ck93\",\"data-framer-name\":\"Union\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xKJKTAH5r\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 499 10\"><path d=\"M 10.56 6.364 C 9.921 8.462 7.845 10 5.381 10 C 2.918 10 0.841 8.462 0.203 6.364 L 0 6.364 L 0 5 L 0 3.636 L 0.203 3.636 C 0.841 1.538 2.918 0 5.381 0 C 7.845 0 9.921 1.538 10.56 3.636 L 97.85 3.636 C 98.489 1.538 100.565 0 103.029 0 C 105.492 0 107.569 1.538 108.208 3.636 L 195.497 3.636 C 196.136 1.538 198.214 0 200.676 0 C 203.14 0 205.216 1.538 205.855 3.636 L 293.145 3.636 C 293.784 1.538 295.86 0 298.324 0 C 300.786 0 302.864 1.538 303.503 3.636 L 390.792 3.636 C 391.431 1.538 393.507 0 395.971 0 C 398.434 0 400.511 1.538 401.15 3.636 L 488.44 3.636 C 489.079 1.538 491.155 0 493.619 0 C 496.082 0 498.159 1.538 498.797 3.636 L 499 3.636 L 499 5 L 499 6.364 L 498.797 6.364 C 498.159 8.462 496.082 10 493.619 10 C 491.155 10 489.079 8.462 488.44 6.364 L 401.15 6.364 C 400.511 8.462 398.434 10 395.971 10 C 393.507 10 391.431 8.462 390.792 6.364 L 303.503 6.364 C 302.864 8.462 300.786 10 298.324 10 C 295.86 10 293.784 8.462 293.145 6.364 L 205.855 6.364 C 205.216 8.462 203.14 10 200.676 10 C 198.214 10 196.136 8.462 195.497 6.364 L 108.208 6.364 C 107.569 8.462 105.492 10 103.029 10 C 100.565 10 98.489 8.462 97.85 6.364 Z\" fill=\"rgb(243, 243, 247)\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10299218903,withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 1\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"M 2.074 1.273 C 1.948 1.692 1.541 2 1.057 2 C 0.573 2 0.165 1.692 0.04 1.273 L 0 1.273 L 0 1 L 0 0.727 L 0.04 0.727 C 0.165 0.308 0.573 0 1.057 0 C 1.541 0 1.948 0.308 2.074 0.727 L 19.217 0.727 C 19.343 0.308 19.75 0 20.234 0 C 20.718 0 21.126 0.308 21.251 0.727 L 38.394 0.727 C 38.52 0.308 38.928 0 39.411 0 C 39.895 0 40.303 0.308 40.428 0.727 L 57.572 0.727 C 57.697 0.308 58.105 0 58.589 0 C 59.072 0 59.48 0.308 59.606 0.727 L 76.749 0.727 C 76.874 0.308 77.282 0 77.766 0 C 78.25 0 78.657 0.308 78.783 0.727 L 95.926 0.727 C 96.052 0.308 96.459 0 96.943 0 C 97.427 0 97.835 0.308 97.96 0.727 L 98 0.727 L 98 1 L 98 1.273 L 97.96 1.273 C 97.835 1.692 97.427 2 96.943 2 C 96.459 2 96.052 1.692 95.926 1.273 L 78.783 1.273 C 78.657 1.692 78.25 2 77.766 2 C 77.282 2 76.874 1.692 76.749 1.273 L 59.606 1.273 C 59.48 1.692 59.072 2 58.589 2 C 58.105 2 57.697 1.692 57.572 1.273 L 40.428 1.273 C 40.303 1.692 39.895 2 39.411 2 C 38.928 2 38.52 1.692 38.394 1.273 L 21.251 1.273 C 21.126 1.692 20.718 2 20.234 2 C 19.75 2 19.343 1.692 19.217 1.273 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:10656361330},tzZiLTswA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 196 3\"><path d=\"M 4.148 1.909 C 3.897 2.539 3.081 3 2.114 3 C 1.146 3 0.33 2.539 0.08 1.909 L 0 1.909 L 0 1.5 L 0 1.091 L 0.08 1.091 C 0.33 0.461 1.146 0 2.114 0 C 3.081 0 3.897 0.461 4.148 1.091 L 38.434 1.091 C 38.685 0.461 39.501 0 40.468 0 C 41.436 0 42.251 0.461 42.502 1.091 L 76.789 1.091 C 77.04 0.461 77.855 0 78.823 0 C 79.79 0 80.606 0.461 80.857 1.091 L 115.143 1.091 C 115.394 0.461 116.21 0 117.177 0 C 118.145 0 118.96 0.461 119.211 1.091 L 153.498 1.091 C 153.749 0.461 154.564 0 155.532 0 C 156.499 0 157.315 0.461 157.566 1.091 L 191.852 1.091 C 192.103 0.461 192.919 0 193.886 0 C 194.854 0 195.669 0.461 195.92 1.091 L 196 1.091 L 196 1.5 L 196 1.909 L 195.92 1.909 C 195.669 2.539 194.854 3 193.886 3 C 192.919 3 192.103 2.539 191.852 1.909 L 157.566 1.909 C 157.315 2.539 156.499 3 155.532 3 C 154.564 3 153.749 2.539 153.498 1.909 L 119.211 1.909 C 118.96 2.539 118.145 3 117.177 3 C 116.21 3 115.394 2.539 115.143 1.909 L 80.857 1.909 C 80.606 2.539 79.79 3 78.823 3 C 77.855 3 77.04 2.539 76.789 1.909 L 42.502 1.909 C 42.251 2.539 41.436 3 40.468 3 C 39.501 3 38.685 2.539 38.434 1.909 Z\" fill=\"rgb(243, 243, 247)\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10854888495}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Internal\"})}),className:\"framer-4bmlti\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"JjnoPaA7s\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Internal\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Internal\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Internal\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16jbicx\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"yX99JHhKz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Concrete\"})}),className:\"framer-1madc5s\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"tLY935hmQ\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Concrete\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Concrete\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Concrete\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dzuqv3\",\"data-framer-name\":\"Union\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dNi42ncp8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 499 10\"><path d=\"M 10.56 6.364 C 9.921 8.462 7.845 10 5.381 10 C 2.918 10 0.841 8.462 0.203 6.364 L 0 6.364 L 0 5 L 0 3.636 L 0.203 3.636 C 0.841 1.538 2.918 0 5.381 0 C 7.845 0 9.921 1.538 10.56 3.636 L 97.85 3.636 C 98.489 1.538 100.565 0 103.029 0 C 105.492 0 107.569 1.538 108.208 3.636 L 195.497 3.636 C 196.136 1.538 198.214 0 200.676 0 C 203.14 0 205.216 1.538 205.855 3.636 L 293.145 3.636 C 293.784 1.538 295.86 0 298.324 0 C 300.786 0 302.864 1.538 303.503 3.636 L 390.792 3.636 C 391.431 1.538 393.507 0 395.971 0 C 398.434 0 400.511 1.538 401.15 3.636 L 488.44 3.636 C 489.079 1.538 491.155 0 493.619 0 C 496.082 0 498.159 1.538 498.797 3.636 L 499 3.636 L 499 5 L 499 6.364 L 498.797 6.364 C 498.159 8.462 496.082 10 493.619 10 C 491.155 10 489.079 8.462 488.44 6.364 L 401.15 6.364 C 400.511 8.462 398.434 10 395.971 10 C 393.507 10 391.431 8.462 390.792 6.364 L 303.503 6.364 C 302.864 8.462 300.786 10 298.324 10 C 295.86 10 293.784 8.462 293.145 6.364 L 205.855 6.364 C 205.216 8.462 203.14 10 200.676 10 C 198.214 10 196.136 8.462 195.497 6.364 L 108.208 6.364 C 107.569 8.462 105.492 10 103.029 10 C 100.565 10 98.489 8.462 97.85 6.364 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:8664983299,withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 2\"><path d=\"M 2.074 1.273 C 1.948 1.692 1.541 2 1.057 2 C 0.573 2 0.165 1.692 0.04 1.273 L 0 1.273 L 0 1 L 0 0.727 L 0.04 0.727 C 0.165 0.308 0.573 0 1.057 0 C 1.541 0 1.948 0.308 2.074 0.727 L 19.217 0.727 C 19.343 0.308 19.75 0 20.234 0 C 20.718 0 21.126 0.308 21.251 0.727 L 38.394 0.727 C 38.52 0.308 38.928 0 39.411 0 C 39.895 0 40.303 0.308 40.428 0.727 L 57.572 0.727 C 57.697 0.308 58.105 0 58.589 0 C 59.072 0 59.48 0.308 59.606 0.727 L 76.749 0.727 C 76.874 0.308 77.282 0 77.766 0 C 78.25 0 78.657 0.308 78.783 0.727 L 95.926 0.727 C 96.052 0.308 96.459 0 96.943 0 C 97.427 0 97.835 0.308 97.96 0.727 L 98 0.727 L 98 1 L 98 1.273 L 97.96 1.273 C 97.835 1.692 97.427 2 96.943 2 C 96.459 2 96.052 1.692 95.926 1.273 L 78.783 1.273 C 78.657 1.692 78.25 2 77.766 2 C 77.282 2 76.874 1.692 76.749 1.273 L 59.606 1.273 C 59.48 1.692 59.072 2 58.589 2 C 58.105 2 57.697 1.692 57.572 1.273 L 40.428 1.273 C 40.303 1.692 39.895 2 39.411 2 C 38.928 2 38.52 1.692 38.394 1.273 L 21.251 1.273 C 21.126 1.692 20.718 2 20.234 2 C 19.75 2 19.343 1.692 19.217 1.273 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:11043709531},tzZiLTswA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 196 4\"><path d=\"M 4.148 2.545 C 3.897 3.385 3.081 4 2.114 4 C 1.146 4 0.33 3.385 0.08 2.545 L 0 2.545 L 0 2 L 0 1.455 L 0.08 1.455 C 0.33 0.615 1.146 0 2.114 0 C 3.081 0 3.897 0.615 4.148 1.455 L 38.434 1.455 C 38.685 0.615 39.501 0 40.468 0 C 41.436 0 42.251 0.615 42.502 1.455 L 76.789 1.455 C 77.04 0.615 77.855 0 78.823 0 C 79.79 0 80.606 0.615 80.857 1.455 L 115.143 1.455 C 115.394 0.615 116.21 0 117.177 0 C 118.145 0 118.96 0.615 119.211 1.455 L 153.498 1.455 C 153.749 0.615 154.564 0 155.532 0 C 156.499 0 157.315 0.615 157.566 1.455 L 191.852 1.455 C 192.103 0.615 192.919 0 193.886 0 C 194.854 0 195.669 0.615 195.92 1.455 L 196 1.455 L 196 2 L 196 2.545 L 195.92 2.545 C 195.669 3.385 194.854 4 193.886 4 C 192.919 4 192.103 3.385 191.852 2.545 L 157.566 2.545 C 157.315 3.385 156.499 4 155.532 4 C 154.564 4 153.749 3.385 153.498 2.545 L 119.211 2.545 C 118.96 3.385 118.145 4 117.177 4 C 116.21 4 115.394 3.385 115.143 2.545 L 80.857 2.545 C 80.606 3.385 79.79 4 78.823 4 C 77.855 4 77.04 3.385 76.789 2.545 L 42.502 2.545 C 42.251 3.385 41.436 4 40.468 4 C 39.501 4 38.685 3.385 38.434 2.545 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:10584364431}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Intuitive\"})}),className:\"framer-ljpgbg\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"fgSPkTjAi\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Intuitive\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Intuitive\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Intuitive\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gabnba\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"WQA1dAZ59\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Logic\"})}),className:\"framer-hfphgt\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"EhXTI0T1K\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Logic\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Logic\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Logic\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yf3ag4\",\"data-framer-name\":\"Union\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UBTroG_xg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 499 10\"><path d=\"M 10.56 6.364 C 9.921 8.462 7.845 10 5.381 10 C 2.918 10 0.841 8.462 0.203 6.364 L 0 6.364 L 0 5 L 0 3.636 L 0.203 3.636 C 0.841 1.538 2.918 0 5.381 0 C 7.845 0 9.921 1.538 10.56 3.636 L 97.85 3.636 C 98.489 1.538 100.565 0 103.029 0 C 105.492 0 107.569 1.538 108.208 3.636 L 195.497 3.636 C 196.136 1.538 198.214 0 200.676 0 C 203.14 0 205.216 1.538 205.855 3.636 L 293.145 3.636 C 293.784 1.538 295.86 0 298.324 0 C 300.786 0 302.864 1.538 303.503 3.636 L 390.792 3.636 C 391.431 1.538 393.507 0 395.971 0 C 398.434 0 400.511 1.538 401.15 3.636 L 488.44 3.636 C 489.079 1.538 491.155 0 493.619 0 C 496.082 0 498.159 1.538 498.797 3.636 L 499 3.636 L 499 5 L 499 6.364 L 498.797 6.364 C 498.159 8.462 496.082 10 493.619 10 C 491.155 10 489.079 8.462 488.44 6.364 L 401.15 6.364 C 400.511 8.462 398.434 10 395.971 10 C 393.507 10 391.431 8.462 390.792 6.364 L 303.503 6.364 C 302.864 8.462 300.786 10 298.324 10 C 295.86 10 293.784 8.462 293.145 6.364 L 205.855 6.364 C 205.216 8.462 203.14 10 200.676 10 C 198.214 10 196.136 8.462 195.497 6.364 L 108.208 6.364 C 107.569 8.462 105.492 10 103.029 10 C 100.565 10 98.489 8.462 97.85 6.364 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:8664983299,withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 2\"><path d=\"M 2.074 1.273 C 1.948 1.692 1.541 2 1.057 2 C 0.573 2 0.165 1.692 0.04 1.273 L 0 1.273 L 0 1 L 0 0.727 L 0.04 0.727 C 0.165 0.308 0.573 0 1.057 0 C 1.541 0 1.948 0.308 2.074 0.727 L 19.217 0.727 C 19.343 0.308 19.75 0 20.234 0 C 20.718 0 21.126 0.308 21.251 0.727 L 38.394 0.727 C 38.52 0.308 38.928 0 39.411 0 C 39.895 0 40.303 0.308 40.428 0.727 L 57.572 0.727 C 57.697 0.308 58.105 0 58.589 0 C 59.072 0 59.48 0.308 59.606 0.727 L 76.749 0.727 C 76.874 0.308 77.282 0 77.766 0 C 78.25 0 78.657 0.308 78.783 0.727 L 95.926 0.727 C 96.052 0.308 96.459 0 96.943 0 C 97.427 0 97.835 0.308 97.96 0.727 L 98 0.727 L 98 1 L 98 1.273 L 97.96 1.273 C 97.835 1.692 97.427 2 96.943 2 C 96.459 2 96.052 1.692 95.926 1.273 L 78.783 1.273 C 78.657 1.692 78.25 2 77.766 2 C 77.282 2 76.874 1.692 76.749 1.273 L 59.606 1.273 C 59.48 1.692 59.072 2 58.589 2 C 58.105 2 57.697 1.692 57.572 1.273 L 40.428 1.273 C 40.303 1.692 39.895 2 39.411 2 C 38.928 2 38.52 1.692 38.394 1.273 L 21.251 1.273 C 21.126 1.692 20.718 2 20.234 2 C 19.75 2 19.343 1.692 19.217 1.273 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:11043709531},tzZiLTswA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 196 4\"><path d=\"M 4.148 2.545 C 3.897 3.385 3.081 4 2.114 4 C 1.146 4 0.33 3.385 0.08 2.545 L 0 2.545 L 0 2 L 0 1.455 L 0.08 1.455 C 0.33 0.615 1.146 0 2.114 0 C 3.081 0 3.897 0.615 4.148 1.455 L 38.434 1.455 C 38.685 0.615 39.501 0 40.468 0 C 41.436 0 42.251 0.615 42.502 1.455 L 76.789 1.455 C 77.04 0.615 77.855 0 78.823 0 C 79.79 0 80.606 0.615 80.857 1.455 L 115.143 1.455 C 115.394 0.615 116.21 0 117.177 0 C 118.145 0 118.96 0.615 119.211 1.455 L 153.498 1.455 C 153.749 0.615 154.564 0 155.532 0 C 156.499 0 157.315 0.615 157.566 1.455 L 191.852 1.455 C 192.103 0.615 192.919 0 193.886 0 C 194.854 0 195.669 0.615 195.92 1.455 L 196 1.455 L 196 2 L 196 2.545 L 195.92 2.545 C 195.669 3.385 194.854 4 193.886 4 C 192.919 4 192.103 3.385 191.852 2.545 L 157.566 2.545 C 157.315 3.385 156.499 4 155.532 4 C 154.564 4 153.749 3.385 153.498 2.545 L 119.211 2.545 C 118.96 3.385 118.145 4 117.177 4 C 116.21 4 115.394 3.385 115.143 2.545 L 80.857 2.545 C 80.606 3.385 79.79 4 78.823 4 C 77.855 4 77.04 3.385 76.789 2.545 L 42.502 2.545 C 42.251 3.385 41.436 4 40.468 4 C 39.501 4 38.685 3.385 38.434 2.545 Z\" fill=\"rgb(243, 243, 247)\"></path></svg>',svgContentId:10584364431}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Emotion\"})}),className:\"framer-1bj1w31\",fonts:[\"GF;Gabarito-regular\"],layoutDependency:layoutDependency,layoutId:\"NTdB6wJr4\",style:{\"--extracted-r6o4lv\":\"var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Emotion\"})})},tzZiLTswA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Emotion\"})})},y8NpVF3OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tcmVndWxhcg==\",\"--framer-font-family\":'\"Gabarito\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff3687e4-0ac1-4e42-a191-fdac2f3f2381, rgb(28, 26, 26)))\"},children:\"Emotion\"})})}},baseVariant,gestureVariant)})]})]})]})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-247.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-djwexo\",layoutDependency:layoutDependency,layoutId:\"ry6ZbvyLa\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation4,__framer__exit:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-138.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}},tzZiLTswA:{__framer__enter:animation2,__framer__exit:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-195.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-173),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-1svlqkn\",layoutDependency:layoutDependency,layoutId:\"uXCqJUgnw\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation12,__framer__exit:animation13,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-96),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}},tzZiLTswA:{__framer__enter:animation8,__framer__exit:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-127),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}},y8NpVF3OL:{__framer__enter:animation10,__framer__exit:animation11}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-247.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-fnz2p2\",layoutDependency:layoutDependency,layoutId:\"wzZfQ8p2b\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation20,__framer__exit:animation21,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-138.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},transformTemplate:transformTemplate1},tzZiLTswA:{__framer__enter:animation16,__framer__exit:animation17,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-195.5),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},transformTemplate:transformTemplate1},y8NpVF3OL:{__framer__enter:animation18,__framer__exit:animation19}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-173),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-132y71k\",layoutDependency:layoutDependency,layoutId:\"GPTwedGQh\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation28,__framer__exit:animation29,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-96),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"}},tzZiLTswA:{__framer__enter:animation24,__framer__exit:animation25,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-127),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"}},y8NpVF3OL:{__framer__enter:animation26,__framer__exit:animation27}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation30,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-109),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"},className:\"framer-11p0gqh\",layoutDependency:layoutDependency,layoutId:\"saGSFK9pF\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation36,__framer__exit:animation37,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-57),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}},tzZiLTswA:{__framer__enter:animation32,__framer__exit:animation33,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-61),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/vjQeKKnYUBQa0ljHwhjpS6exqn8.png\"}},y8NpVF3OL:{__framer__enter:animation34,__framer__exit:animation35}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation38,__framer__exit:animation39,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-109),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"},className:\"framer-vfsun0\",layoutDependency:layoutDependency,layoutId:\"WzGcX1CHF\",style:{transformPerspective:1200},...addPropertyOverrides({bzXwMxz5A:{__framer__enter:animation44,__framer__exit:animation45,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-57),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"}},tzZiLTswA:{__framer__enter:animation40,__framer__exit:animation41,background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-61),pixelHeight:250,pixelWidth:250,src:\"https://framerusercontent.com/images/0B3sOUWhDHy1zKsr5nVoHtAY.png\"}},y8NpVF3OL:{__framer__enter:animation42,__framer__exit:animation43}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation46,__framer__exit:animation47,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-nvtyq4\",layoutDependency:layoutDependency,layoutId:\"IMYyBvmqu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:229,width:\"195px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-163+-24.5,...addPropertyOverrides({bzXwMxz5A:{height:226,width:\"197px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-675)/2+137+16)+522-82+-72.4730539521062},tzZiLTswA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-729)/2+135+16)+578-163+-24.5},y8NpVF3OL:{height:228,y:(componentViewport?.y||0)+0+(((componentViewport?.height||810)-0-791)/2+135+16)+640-135+-24.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1er7p-container\",layoutDependency:layoutDependency,layoutId:\"oB73qOg6b-container\",style:{rotate:6},children:/*#__PURE__*/_jsx(SurleyBodyColor,{height:\"100%\",id:\"oB73qOg6b\",layoutId:\"oB73qOg6b\",style:{height:\"100%\",width:\"100%\"},variant:\"vOer0emCh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ccx64e\",\"data-framer-name\":\"PRIZZIE\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"A_Hu4tI4h\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 117\"><path d=\"M 30.597 77.134 C 32.491 78.159 34.632 78.709 36.734 78.906 C 38.85 79.122 41.02 78.812 43.08 78.215 C 42.598 79.451 41.566 80.396 40.391 80.983 C 37.988 82.17 34.948 81.871 32.775 80.329 C 31.72 79.566 30.791 78.46 30.597 77.135 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 53.384 70.181 C 53.513 68.686 52.415 67.37 50.931 67.242 C 49.448 67.114 48.141 68.222 48.012 69.716 L 47.663 73.775 C 47.534 75.27 48.632 76.586 50.116 76.714 C 51.599 76.842 52.906 75.734 53.035 74.24 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 27.188 67.914 C 27.317 66.42 26.218 65.104 24.735 64.976 C 23.252 64.848 21.945 65.955 21.816 67.45 L 21.466 71.509 C 21.337 73.003 22.436 74.319 23.919 74.447 C 25.403 74.575 26.71 73.468 26.839 71.974 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 54.689 56.701 C 57.293 54.888 61.11 56.821 61.806 59.77 C 62.056 60.761 61.979 61.849 61.369 62.714 C 60.728 62.12 60.158 61.568 59.5 61.022 C 58.312 60.014 57.323 59.154 56.155 58.099 C 55.891 57.849 55.608 57.61 55.348 57.351 C 55.119 57.145 54.917 56.963 54.687 56.701 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 25.937 54.212 C 25.665 54.431 25.436 54.574 25.175 54.738 C 24.874 54.95 24.553 55.136 24.252 55.338 C 22.92 56.177 21.801 56.853 20.458 57.643 C 19.717 58.066 19.061 58.513 18.328 58.988 C 17.443 57.048 18.685 54.797 20.398 53.796 C 22.109 52.765 24.472 52.749 25.938 54.212 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11367155905,withExternalLayout:true,...addPropertyOverrides({bzXwMxz5A:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 117\"><path d=\"M 30.308 76.474 C 32.184 77.491 34.305 78.036 36.387 78.232 C 38.483 78.446 40.633 78.138 42.673 77.546 C 42.197 78.772 41.174 79.709 40.01 80.291 C 37.63 81.468 34.618 81.171 32.466 79.643 C 31.42 78.886 30.501 77.789 30.308 76.476 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 52.881 69.581 C 53.009 68.099 51.92 66.794 50.451 66.668 C 48.982 66.541 47.687 67.639 47.559 69.12 L 47.213 73.145 C 47.085 74.626 48.174 75.931 49.643 76.058 C 51.112 76.185 52.407 75.087 52.534 73.606 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 26.932 67.334 C 27.059 65.852 25.971 64.548 24.502 64.421 C 23.033 64.294 21.738 65.392 21.61 66.873 L 21.264 70.898 C 21.136 72.379 22.225 73.684 23.694 73.811 C 25.163 73.938 26.458 72.84 26.585 71.359 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 54.173 56.217 C 56.752 54.419 60.533 56.335 61.223 59.259 C 61.47 60.241 61.395 61.32 60.79 62.178 C 60.155 61.589 59.59 61.041 58.939 60.501 C 57.762 59.501 56.782 58.648 55.625 57.603 C 55.364 57.354 55.084 57.117 54.825 56.861 C 54.599 56.657 54.399 56.476 54.171 56.217 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 25.692 53.749 C 25.423 53.966 25.196 54.108 24.938 54.27 C 24.639 54.48 24.322 54.665 24.024 54.865 C 22.704 55.697 21.595 56.367 20.265 57.15 C 19.531 57.57 18.881 58.012 18.155 58.484 C 17.278 56.56 18.508 54.328 20.206 53.337 C 21.9 52.314 24.241 52.298 25.693 53.749 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11147085286},y8NpVF3OL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 117\"><path d=\"M 32.618 82.408 C 34.637 83.503 36.919 84.09 39.16 84.301 C 41.415 84.532 43.728 84.2 45.925 83.563 C 45.412 84.884 44.311 85.893 43.058 86.521 C 40.497 87.788 37.256 87.469 34.94 85.822 C 33.814 85.006 32.825 83.824 32.618 82.409 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 56.91 74.979 C 57.047 73.383 55.876 71.977 54.295 71.84 C 52.714 71.703 51.32 72.886 51.183 74.483 L 50.81 78.82 C 50.673 80.416 51.844 81.822 53.425 81.959 C 55.006 82.096 56.399 80.913 56.537 79.316 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 28.984 72.558 C 29.121 70.962 27.95 69.556 26.369 69.419 C 24.788 69.282 23.394 70.465 23.257 72.062 L 22.884 76.399 C 22.746 77.995 23.918 79.401 25.499 79.538 C 27.08 79.674 28.473 78.491 28.611 76.895 Z\" fill=\"rgb(13,14,14)\"></path><path d=\"M 58.3 60.578 C 61.076 58.641 65.145 60.706 65.888 63.857 C 66.154 64.915 66.072 66.078 65.422 67.002 C 64.738 66.367 64.13 65.777 63.429 65.195 C 62.163 64.117 61.109 63.199 59.863 62.072 C 59.582 61.804 59.281 61.549 59.003 61.272 C 58.759 61.052 58.544 60.858 58.299 60.578 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 27.65 57.919 C 27.36 58.152 27.116 58.306 26.838 58.481 C 26.517 58.707 26.175 58.906 25.854 59.122 C 24.434 60.018 23.24 60.74 21.809 61.584 C 21.019 62.036 20.319 62.513 19.538 63.022 C 18.595 60.948 19.918 58.543 21.745 57.475 C 23.569 56.373 26.088 56.356 27.651 57.919 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9333355457}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7kyUs.framer-lsmm6w, .framer-7kyUs .framer-lsmm6w { display: block; }\",\".framer-7kyUs.framer-12szp6e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-7kyUs .framer-j04r6j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-ss9tjy { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-7kyUs .framer-fjvisd { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 2px 10px 2px 10px; position: relative; width: min-content; }\",\".framer-7kyUs .framer-6klsie { cursor: default; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7kyUs .framer-s43nsd-container, .framer-7kyUs .framer-1bcjh2r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7kyUs .framer-52vnh8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-iwlio6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-1lk685f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-1bn9c1c { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7kyUs .framer-kj5thz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 326px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-u8uzwk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 680px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 740px; }\",\".framer-7kyUs .framer-1o4o86p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7kyUs .framer-saerx2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-sckoa1 { 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-7kyUs .framer-1hrxdd2-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-7kyUs .framer-1rtgzqe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-7kyUs .framer-1v1mwz8 { flex: none; height: 11px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7kyUs .framer-1iakrfg { flex: none; height: 11px; overflow: hidden; position: relative; width: 57px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7kyUs .framer-132w3t0-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-7kyUs .framer-2oi50g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kyUs .framer-i0ysnz, .framer-7kyUs .framer-16jbicx, .framer-7kyUs .framer-gabnba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7kyUs .framer-7txdc9, .framer-7kyUs .framer-4bmlti, .framer-7kyUs .framer-1madc5s, .framer-7kyUs .framer-ljpgbg, .framer-7kyUs .framer-hfphgt, .framer-7kyUs .framer-1bj1w31 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-7kyUs .framer-1t1ck93, .framer-7kyUs .framer-1dzuqv3, .framer-7kyUs .framer-1yf3ag4 { flex: none; height: 10px; position: relative; width: 499px; }\",\".framer-7kyUs .framer-djwexo { bottom: 190px; flex: none; height: 58px; left: calc(48.62500000000002% - 58px / 2); position: absolute; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-1svlqkn { bottom: 115px; flex: none; height: 58px; left: 314px; position: absolute; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-fnz2p2 { aspect-ratio: 1 / 1; bottom: 190px; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: absolute; right: 180px; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-132y71k { bottom: 115px; flex: none; height: 58px; position: absolute; right: 306px; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-11p0gqh { bottom: 51px; flex: none; height: 58px; position: absolute; right: 244px; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-vfsun0 { bottom: 51px; flex: none; height: 58px; left: calc(52.25000000000002% - 58px / 2); position: absolute; width: 58px; z-index: 1; }\",\".framer-7kyUs .framer-nvtyq4 { bottom: -4px; flex: none; height: 167px; overflow: visible; position: absolute; right: -96px; width: 146px; }\",\".framer-7kyUs .framer-r1er7p-container { bottom: -37px; flex: none; left: -52px; position: absolute; top: -24px; width: 195px; }\",\".framer-7kyUs .framer-1ccx64e { flex: none; height: 117px; left: -6px; position: absolute; top: calc(50.8982035928144% - 117px / 2); width: 106px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7kyUs.framer-12szp6e, .framer-7kyUs .framer-j04r6j, .framer-7kyUs .framer-fjvisd, .framer-7kyUs .framer-52vnh8, .framer-7kyUs .framer-iwlio6, .framer-7kyUs .framer-1lk685f, .framer-7kyUs .framer-kj5thz, .framer-7kyUs .framer-u8uzwk, .framer-7kyUs .framer-1o4o86p, .framer-7kyUs .framer-sckoa1, .framer-7kyUs .framer-1rtgzqe, .framer-7kyUs .framer-2oi50g, .framer-7kyUs .framer-i0ysnz, .framer-7kyUs .framer-16jbicx, .framer-7kyUs .framer-gabnba { gap: 0px; } .framer-7kyUs.framer-12szp6e > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7kyUs.framer-12szp6e > :first-child, .framer-7kyUs .framer-j04r6j > :first-child, .framer-7kyUs .framer-52vnh8 > :first-child, .framer-7kyUs .framer-iwlio6 > :first-child, .framer-7kyUs .framer-1lk685f > :first-child, .framer-7kyUs .framer-1o4o86p > :first-child, .framer-7kyUs .framer-1rtgzqe > :first-child, .framer-7kyUs .framer-2oi50g > :first-child { margin-top: 0px; } .framer-7kyUs.framer-12szp6e > :last-child, .framer-7kyUs .framer-j04r6j > :last-child, .framer-7kyUs .framer-52vnh8 > :last-child, .framer-7kyUs .framer-iwlio6 > :last-child, .framer-7kyUs .framer-1lk685f > :last-child, .framer-7kyUs .framer-1o4o86p > :last-child, .framer-7kyUs .framer-1rtgzqe > :last-child, .framer-7kyUs .framer-2oi50g > :last-child { margin-bottom: 0px; } .framer-7kyUs .framer-j04r6j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7kyUs .framer-fjvisd > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-7kyUs .framer-fjvisd > :first-child, .framer-7kyUs .framer-kj5thz > :first-child, .framer-7kyUs .framer-u8uzwk > :first-child, .framer-7kyUs .framer-sckoa1 > :first-child, .framer-7kyUs .framer-i0ysnz > :first-child, .framer-7kyUs .framer-16jbicx > :first-child, .framer-7kyUs .framer-gabnba > :first-child { margin-left: 0px; } .framer-7kyUs .framer-fjvisd > :last-child, .framer-7kyUs .framer-kj5thz > :last-child, .framer-7kyUs .framer-u8uzwk > :last-child, .framer-7kyUs .framer-sckoa1 > :last-child, .framer-7kyUs .framer-i0ysnz > :last-child, .framer-7kyUs .framer-16jbicx > :last-child, .framer-7kyUs .framer-gabnba > :last-child { margin-right: 0px; } .framer-7kyUs .framer-52vnh8 > *, .framer-7kyUs .framer-iwlio6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7kyUs .framer-1lk685f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7kyUs .framer-kj5thz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7kyUs .framer-u8uzwk > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-7kyUs .framer-1o4o86p > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-7kyUs .framer-sckoa1 > *, .framer-7kyUs .framer-i0ysnz > *, .framer-7kyUs .framer-16jbicx > *, .framer-7kyUs .framer-gabnba > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7kyUs .framer-1rtgzqe > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-7kyUs .framer-2oi50g > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } }\",\".framer-7kyUs.framer-v-1xb5a2x.framer-12szp6e { width: 390px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-j04r6j, .framer-7kyUs.framer-v-1tof8be .framer-j04r6j { width: 90%; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-ss9tjy, .framer-7kyUs.framer-v-1xb5a2x .framer-i0ysnz, .framer-7kyUs.framer-v-1xb5a2x .framer-16jbicx, .framer-7kyUs.framer-v-1xb5a2x .framer-gabnba, .framer-7kyUs.framer-v-1tof8be .framer-i0ysnz, .framer-7kyUs.framer-v-1tof8be .framer-16jbicx { width: 100%; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-52vnh8, .framer-7kyUs.framer-v-1tof8be .framer-52vnh8 { gap: 54px; max-width: 100%; width: 90%; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-kj5thz { height: 250px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-u8uzwk, .framer-7kyUs.framer-v-1tof8be .framer-u8uzwk { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; gap: 10px; height: 289px; justify-content: center; width: 1px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-1o4o86p, .framer-7kyUs.framer-v-1tof8be .framer-1o4o86p { gap: 13px; padding: 15px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-1t1ck93 { height: 3px; width: 196px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-1dzuqv3, .framer-7kyUs.framer-v-1xb5a2x .framer-1yf3ag4 { height: 4px; width: 196px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-djwexo { aspect-ratio: 1 / 1; bottom: 164px; height: var(--framer-aspect-ratio-supported, 32px); left: 135px; width: 32px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-1svlqkn { aspect-ratio: 1 / 1; bottom: 95px; height: var(--framer-aspect-ratio-supported, 32px); left: unset; right: 107px; width: 32px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-fnz2p2 { bottom: 164px; height: var(--framer-aspect-ratio-supported, 32px); left: 55%; right: unset; width: 32px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-132y71k { aspect-ratio: 1 / 1; bottom: 95px; height: var(--framer-aspect-ratio-supported, 32px); left: 127px; right: unset; width: 32px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-11p0gqh { aspect-ratio: 1 / 1; bottom: 29px; height: var(--framer-aspect-ratio-supported, 32px); right: 107px; width: 32px; }\",\".framer-7kyUs.framer-v-1xb5a2x .framer-vfsun0 { aspect-ratio: 1 / 1; bottom: 29px; height: var(--framer-aspect-ratio-supported, 32px); left: 143px; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7kyUs.framer-v-1xb5a2x .framer-52vnh8, .framer-7kyUs.framer-v-1xb5a2x .framer-u8uzwk, .framer-7kyUs.framer-v-1xb5a2x .framer-1o4o86p { gap: 0px; } .framer-7kyUs.framer-v-1xb5a2x .framer-52vnh8 > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-7kyUs.framer-v-1xb5a2x .framer-52vnh8 > :first-child, .framer-7kyUs.framer-v-1xb5a2x .framer-1o4o86p > :first-child { margin-top: 0px; } .framer-7kyUs.framer-v-1xb5a2x .framer-52vnh8 > :last-child, .framer-7kyUs.framer-v-1xb5a2x .framer-1o4o86p > :last-child { margin-bottom: 0px; } .framer-7kyUs.framer-v-1xb5a2x .framer-u8uzwk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7kyUs.framer-v-1xb5a2x .framer-u8uzwk > :first-child { margin-left: 0px; } .framer-7kyUs.framer-v-1xb5a2x .framer-u8uzwk > :last-child { margin-right: 0px; } .framer-7kyUs.framer-v-1xb5a2x .framer-1o4o86p > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",\".framer-7kyUs.framer-v-3eo61s.framer-12szp6e { width: 810px; }\",\".framer-7kyUs.framer-v-3eo61s .framer-52vnh8 { max-width: 95%; width: 713px; }\",\".framer-7kyUs.framer-v-3eo61s .framer-1bn9c1c { max-width: unset; }\",\".framer-7kyUs.framer-v-3eo61s .framer-u8uzwk { flex: 1 0 0px; height: 502px; width: 1px; }\",\".framer-7kyUs.framer-v-3eo61s .framer-132y71k { right: 134px; }\",\".framer-7kyUs.framer-v-3eo61s .framer-vfsun0 { left: 236px; }\",\".framer-7kyUs.framer-v-3eo61s .framer-nvtyq4 { bottom: -31px; height: 166px; width: 144px; }\",\".framer-7kyUs.framer-v-1tof8be.framer-12szp6e { width: 240px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-kj5thz { height: 194px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-1v1mwz8, .framer-7kyUs.framer-v-1tof8be .framer-1iakrfg { height: 7px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-2oi50g { gap: 10px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-7txdc9 { order: 0; }\",\".framer-7kyUs.framer-v-1tof8be .framer-1t1ck93 { height: 1px; order: 1; width: 98px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-4bmlti { order: 2; }\",\".framer-7kyUs.framer-v-1tof8be .framer-1dzuqv3, .framer-7kyUs.framer-v-1tof8be .framer-1yf3ag4 { height: 2px; width: 98px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-gabnba { overflow: unset; width: 100%; }\",\".framer-7kyUs.framer-v-1tof8be .framer-djwexo { aspect-ratio: 1 / 1; bottom: 115px; height: var(--framer-aspect-ratio-supported, 24px); left: unset; right: 69px; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-1svlqkn { aspect-ratio: 1 / 1; bottom: 72px; height: var(--framer-aspect-ratio-supported, 24px); left: 74px; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-fnz2p2 { bottom: 115px; height: var(--framer-aspect-ratio-supported, 24px); left: 45%; right: unset; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-132y71k { aspect-ratio: 1 / 1; bottom: 72px; height: var(--framer-aspect-ratio-supported, 24px); right: 77px; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-11p0gqh { aspect-ratio: 1 / 1; bottom: 33px; height: var(--framer-aspect-ratio-supported, 24px); left: 75px; right: unset; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-vfsun0 { aspect-ratio: 1 / 1; bottom: 33px; height: var(--framer-aspect-ratio-supported, 24px); left: unset; right: 59px; width: 24px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-nvtyq4 { bottom: -34px; height: 116px; right: -86px; width: 101px; }\",\".framer-7kyUs.framer-v-1tof8be .framer-r1er7p-container { bottom: -38px; left: -52px; right: -44px; top: -72px; width: unset; }\",\".framer-7kyUs.framer-v-1tof8be .framer-1ccx64e { top: -19px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7kyUs.framer-v-1tof8be .framer-52vnh8, .framer-7kyUs.framer-v-1tof8be .framer-u8uzwk, .framer-7kyUs.framer-v-1tof8be .framer-1o4o86p, .framer-7kyUs.framer-v-1tof8be .framer-2oi50g { gap: 0px; } .framer-7kyUs.framer-v-1tof8be .framer-52vnh8 > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-7kyUs.framer-v-1tof8be .framer-52vnh8 > :first-child, .framer-7kyUs.framer-v-1tof8be .framer-1o4o86p > :first-child, .framer-7kyUs.framer-v-1tof8be .framer-2oi50g > :first-child { margin-top: 0px; } .framer-7kyUs.framer-v-1tof8be .framer-52vnh8 > :last-child, .framer-7kyUs.framer-v-1tof8be .framer-1o4o86p > :last-child, .framer-7kyUs.framer-v-1tof8be .framer-2oi50g > :last-child { margin-bottom: 0px; } .framer-7kyUs.framer-v-1tof8be .framer-u8uzwk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7kyUs.framer-v-1tof8be .framer-u8uzwk > :first-child { margin-left: 0px; } .framer-7kyUs.framer-v-1tof8be .framer-u8uzwk > :last-child { margin-right: 0px; } .framer-7kyUs.framer-v-1tof8be .framer-1o4o86p > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-7kyUs.framer-v-1tof8be .framer-2oi50g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-7kyUs[data-border=\"true\"]::after, .framer-7kyUs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 810\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tzZiLTswA\":{\"layout\":[\"fixed\",\"auto\"]},\"y8NpVF3OL\":{\"layout\":[\"fixed\",\"auto\"]},\"bzXwMxz5A\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLvDci0Trq=withCSS(Component,css,\"framer-7kyUs\");export default FramerLvDci0Trq;FramerLvDci0Trq.displayName=\"CTA\";FramerLvDci0Trq.defaultProps={height:810,width:1440};addPropertyControls(FramerLvDci0Trq,{variant:{options:[\"l2vRvw_2v\",\"tzZiLTswA\",\"y8NpVF3OL\",\"bzXwMxz5A\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\",\"Russ Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLvDci0Trq,[{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:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNi0Dp6_cOyA.woff2\",weight:\"500\"},{family:\"Gabarito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gabarito/v7/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj248K0EwItq6bFIg.woff2\",weight:\"400\"}]},...BadgeFonts,...ButtonFonts,...LogoFonts,...FeatherFonts,...SurleyBodyColorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLvDci0Trq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tzZiLTswA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y8NpVF3OL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bzXwMxz5A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"810\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/G3ywNsrai8gUIPoLriym/Scyz862LHB1Tmv7hBFFv/BUFU3eB6_.js\";const EmbedFonts=getFonts(Embed);const cycleOrder=[\"XqOyxCnbJ\",\"M07ziOrVL\",\"S2kPPrnHK\",\"Bp0BfC5jv\"];const serializationHash=\"framer-JIKNw\";const variantClassNames={Bp0BfC5jv:\"framer-v-g3jurm\",M07ziOrVL:\"framer-v-r8y21i\",S2kPPrnHK:\"framer-v-1tjznnx\",XqOyxCnbJ:\"framer-v-ip3a2b\"};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 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.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"Bp0BfC5jv\",Desktop:\"XqOyxCnbJ\",Phone:\"S2kPPrnHK\",tab:\"M07ziOrVL\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XqOyxCnbJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XqOyxCnbJ\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ip3a2b\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XqOyxCnbJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Bp0BfC5jv:{\"data-framer-name\":\"Variant 4\"},M07ziOrVL:{\"data-framer-name\":\"tab\"},S2kPPrnHK:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlock the full potential of your team\"})}),className:\"framer-bnwzik\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"roADrI5pN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bp0BfC5jv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unlock the full potential of your team\"})})},S2kPPrnHK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unlock the full potential of your team\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1usa4d7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sqnAtVvwD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17,boxShadow:\"0px 3px 0px 0px var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aagxf-container\",layoutDependency:layoutDependency,layoutId:\"FHvLaDfEZ-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=https://player.vimeo.com/video/1029412391?title=0&amp;byline=0&amp;portrait=0&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479 frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"SurePeople Leadership and Team Solution\"></iframe>',id:\"FHvLaDfEZ\",layoutId:\"FHvLaDfEZ\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JIKNw.framer-1umbbt, .framer-JIKNw .framer-1umbbt { display: block; }\",\".framer-JIKNw.framer-ip3a2b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1201px; }\",\".framer-JIKNw .framer-bnwzik { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JIKNw .framer-1usa4d7 { 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: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JIKNw .framer-aagxf-container { aspect-ratio: 1.8274111675126903 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 422px); pointer-events: auto; position: relative; width: 770px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JIKNw.framer-ip3a2b, .framer-JIKNw .framer-1usa4d7 { gap: 0px; } .framer-JIKNw.framer-ip3a2b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JIKNw.framer-ip3a2b > :first-child { margin-top: 0px; } .framer-JIKNw.framer-ip3a2b > :last-child { margin-bottom: 0px; } .framer-JIKNw .framer-1usa4d7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JIKNw .framer-1usa4d7 > :first-child { margin-left: 0px; } .framer-JIKNw .framer-1usa4d7 > :last-child { margin-right: 0px; } }\",\".framer-JIKNw.framer-v-r8y21i.framer-ip3a2b { width: 1024px; }\",\".framer-JIKNw.framer-v-1tjznnx.framer-ip3a2b { overflow: visible; padding: 16px 0px 17px 0px; width: 390px; }\",\".framer-JIKNw.framer-v-1tjznnx .framer-bnwzik, .framer-JIKNw.framer-v-g3jurm .framer-bnwzik { width: 90%; }\",\".framer-JIKNw.framer-v-1tjznnx .framer-1usa4d7, .framer-JIKNw.framer-v-g3jurm .framer-1usa4d7 { padding: 8px; }\",\".framer-JIKNw.framer-v-1tjznnx .framer-aagxf-container { height: var(--framer-aspect-ratio-supported, 195px); width: 355px; }\",\".framer-JIKNw.framer-v-g3jurm.framer-ip3a2b { overflow: visible; padding: 16px 0px 17px 0px; width: 240px; }\",\".framer-JIKNw.framer-v-g3jurm .framer-aagxf-container { height: var(--framer-aspect-ratio-supported, 122px); width: 222px; }\",...sharedStyle.css,'.framer-JIKNw[data-border=\"true\"]::after, .framer-JIKNw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 707.5\n * @framerIntrinsicWidth 1201\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M07ziOrVL\":{\"layout\":[\"fixed\",\"auto\"]},\"S2kPPrnHK\":{\"layout\":[\"fixed\",\"auto\"]},\"Bp0BfC5jv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPvqjJQSJ_=withCSS(Component,css,\"framer-JIKNw\");export default FramerPvqjJQSJ_;FramerPvqjJQSJ_.displayName=\"VIDEO\";FramerPvqjJQSJ_.defaultProps={height:707.5,width:1201};addPropertyControls(FramerPvqjJQSJ_,{variant:{options:[\"XqOyxCnbJ\",\"M07ziOrVL\",\"S2kPPrnHK\",\"Bp0BfC5jv\"],optionTitles:[\"Desktop\",\"tab\",\"Phone\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPvqjJQSJ_,[{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\"}]},...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPvqjJQSJ_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1201\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M07ziOrVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S2kPPrnHK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bp0BfC5jv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"707.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (92f3d02)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRmMGjT9QuubTc3sL0W9/tyKtgI6f46iVchcXH1t7/bjqF1t6Hd.js\";import Badge from\"https://framerusercontent.com/modules/AXdVHfaUlrvBqjdn9w8h/NMr1VzpAMYTQ9S1UXXdX/z_6X07ADe.js\";const BadgeFonts=getFonts(Badge);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"S5mn2tfYU\",\"EUjHdYZNr\",\"gpdSCgOI4\"];const serializationHash=\"framer-AgzrA\";const variantClassNames={EUjHdYZNr:\"framer-v-6y9r3y\",gpdSCgOI4:\"framer-v-a0n5mm\",S5mn2tfYU:\"framer-v-eohqw0\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};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 humanReadableVariantMap={Desktop:\"S5mn2tfYU\",Phone:\"gpdSCgOI4\",tab:\"EUjHdYZNr\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"S5mn2tfYU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S5mn2tfYU\",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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eohqw0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"S5mn2tfYU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'linear-gradient(180deg, rgb(255, 255, 255) 0%, var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 250, 240)) /* {\"name\":\"White\"} */ 100%)',...style},...addPropertyOverrides({EUjHdYZNr:{\"data-framer-name\":\"tab\"},gpdSCgOI4:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ftebd9\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"S5mn2tfYUc5dBsrKEh\",style:{transformPerspective:1200},variants:{gpdSCgOI4:{transformPerspective:undefined}},...addPropertyOverrides({gpdSCgOI4:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4nhua7\",layoutDependency:layoutDependency,layoutId:\"kvErd9vok\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s17kht-container\",layoutDependency:layoutDependency,layoutId:\"S5mn2tfYUVJy_50tSR-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,height:\"100%\",id:\"S5mn2tfYUVJy_50tSR\",layoutId:\"S5mn2tfYUVJy_50tSR\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Awards\",SA9jAg9_n:false,variant:\"m_6cEzjzP\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Highly accredited and recognized for impactful innovation\"})}),className:\"framer-g48gfp\",\"data-framer-name\":\"30,000+ designers use Clonify to design and collaborate.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S5mn2tfYUWNKhnYqp_\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gpdSCgOI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Highly accredited and recognized for impactful innovation\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cw0her\",layoutDependency:layoutDependency,layoutId:\"NTuZpU7Cz\",style:{borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ajjr3g\",\"data-framer-name\":\"Frame 1707479546\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:225,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"QhdLn8YpO\",svg:'<svg width=\"224\" height=\"225\" viewBox=\"0 0 224 225\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_130_9328)\">\\n<path d=\"M182.839 112.03C182.775 117.693 182.236 122.666 181.145 127.578C181.067 127.931 180.991 128.064 180.601 127.94C179.827 127.695 179.041 127.491 178.253 127.295C177.955 127.222 177.895 127.105 177.962 126.808C178.62 123.897 179.056 120.954 179.313 117.98C179.591 114.768 179.653 111.553 179.475 108.335C179.175 102.92 178.27 97.6087 176.695 92.4162C173.553 82.0557 168.225 72.9661 160.728 65.1647C152.011 56.0923 141.587 49.8536 129.426 46.5777C121.327 44.3958 113.095 43.7736 104.751 44.6347C93.2311 45.8233 82.6936 49.6971 73.1963 56.3119C63.6746 62.9441 56.2819 71.4562 51.0762 81.8412C47.4749 89.0264 45.2686 96.6286 44.4034 104.614C43.5991 112.03 43.9733 119.392 45.5889 126.681C45.6906 127.139 45.6062 127.321 45.1385 127.42C44.3952 127.579 43.6642 127.8 42.9352 128.02C42.6414 128.11 42.5234 128.056 42.4563 127.744C41.8849 125.093 41.4304 122.425 41.1458 119.729C40.7614 116.084 40.6476 112.431 40.8163 108.769C41.1132 102.358 42.2296 96.0948 44.2254 89.9913C47.6854 79.4101 53.3425 70.1639 61.15 62.2385C69.9753 53.279 80.4324 47.0515 92.5438 43.6353C100.327 41.4402 108.265 40.6349 116.327 41.1504C128.07 41.8997 139.012 45.2753 148.99 51.518C163.498 60.5944 173.604 73.2365 179.168 89.4484C180.877 94.4294 181.938 99.5598 182.462 104.803C182.723 107.419 182.829 110.039 182.838 112.03H182.839ZM201.233 172.03C198.587 166.33 195.673 160.77 192.552 155.318C192.189 154.683 192.241 154.526 192.925 154.295C194.704 153.693 196.478 153.071 198.264 152.489C202.031 151.264 205.829 150.149 209.662 149.144C210.396 148.952 211.152 148.821 212 148.478C210.654 147.897 209.448 147.37 208.237 146.856C204.044 145.077 199.803 143.418 195.517 141.876C193.016 140.977 190.504 140.108 187.97 139.304C187.7 139.218 187.536 139.218 187.437 139.534C186.688 141.924 185.935 144.312 185.172 146.699C184.112 150.02 183.037 153.337 181.983 156.661C181.867 157.028 181.677 157.214 181.299 157.295C176.996 158.227 172.736 159.328 168.512 160.568C168.407 160.599 168.283 160.604 168.238 160.804C179.555 163.785 190.551 167.649 201.377 172.432C201.29 172.186 201.268 172.105 201.233 172.03ZM12.0325 148.581C12.6365 148.738 13.2394 148.897 13.8434 149.054C17.7761 150.077 21.6712 151.229 25.5378 152.477C27.3415 153.058 29.132 153.682 30.9235 154.298C31.5834 154.525 31.6444 154.691 31.3098 155.29C30.774 156.251 30.2179 157.201 29.6821 158.161C27.1941 162.629 24.882 167.186 22.7042 171.812C22.633 171.963 22.4693 172.113 22.6188 172.36C33.3169 167.639 44.3149 163.774 55.6169 160.746C55.4827 160.642 55.3597 160.589 55.2336 160.552C51.0305 159.303 46.7835 158.222 42.499 157.287C42.1645 157.214 41.9642 157.06 41.8686 156.721C41.708 156.151 41.5097 155.592 41.3298 155.028C40.1941 151.465 39.0604 147.902 37.9227 144.339C37.4184 142.759 36.9009 141.183 36.4027 139.601C36.299 139.27 36.1587 139.189 35.816 139.308C34.6336 139.719 33.4328 140.08 32.2493 140.488C26.0554 142.628 19.9407 144.975 13.9196 147.564C13.274 147.842 12.6395 148.142 11.999 148.433C12.0102 148.483 12.0214 148.534 12.0315 148.584L12.0325 148.581ZM127.616 181.36C142.912 177.807 155.622 169.987 165.895 158.139C166.695 157.216 167.292 156.251 167.47 155.041C167.48 154.974 167.496 154.908 167.511 154.842C167.62 154.353 168.01 153.74 167.783 153.415C167.559 153.095 166.862 153.119 166.381 152.963C166.059 152.858 165.871 152.939 165.661 153.214C162.187 157.757 158.212 161.811 153.713 165.344C142.991 173.764 130.82 178.515 117.243 179.646C112.214 180.065 107.193 179.893 102.19 179.187C95.0917 178.186 88.3202 176.124 81.8965 172.953C72.6513 168.389 64.8662 162.012 58.4628 153.939C57.622 152.878 57.623 152.888 56.2819 153.256C56.0023 153.332 55.9515 153.426 56.0297 153.71C56.3124 154.737 56.5666 155.773 56.8177 156.809C56.896 157.134 57.0638 157.394 57.2732 157.643C61.754 162.963 66.8651 167.583 72.6768 171.408C84.5431 179.218 97.6112 183.046 110.34 183.128C117.135 183.117 122.415 182.568 127.616 181.36ZM44.1512 156.805C45.0307 157.017 45.9122 157.224 46.7907 157.44C49.9598 158.215 53.1117 159.06 56.2402 159.988C56.3978 160.035 56.5879 160.153 56.7171 160.032C56.8574 159.9 56.7079 159.713 56.6693 159.558C56.2178 157.772 55.7552 155.988 55.3028 154.202C55.1309 153.526 55.1391 153.525 54.4589 153.716C51.855 154.447 49.2491 155.171 46.6483 155.91C45.8095 156.148 44.9809 156.425 44.1472 156.684C44.1482 156.725 44.1502 156.765 44.1512 156.806V156.805ZM179.054 156.482C175.824 155.464 172.556 154.575 169.288 153.687C168.807 153.556 168.637 153.689 168.525 154.15C168.091 155.943 167.623 157.727 167.169 159.516C167.128 159.675 167.014 159.864 167.142 159.998C167.294 160.156 167.493 160.016 167.663 159.966C170.392 159.162 173.139 158.422 175.897 157.724C177.158 157.405 178.424 157.106 179.725 156.788C179.501 156.603 179.272 156.551 179.052 156.482H179.054ZM119.417 109.067C119.223 109.078 119.037 109.111 118.858 109.164C118.679 109.217 118.527 109.297 118.401 109.404C118.276 109.511 118.213 109.659 118.213 109.849C118.213 110.055 118.301 110.207 118.476 110.306C118.65 110.404 118.833 110.454 119.024 110.454C119.19 110.454 119.353 110.432 119.509 110.386C119.664 110.34 119.803 110.276 119.925 110.192C120.047 110.108 120.144 110.002 120.216 109.873C120.288 109.743 120.325 109.591 120.325 109.416V109.051H119.903C119.774 109.051 119.612 109.057 119.418 109.068L119.417 109.067ZM73.9995 109.067C73.8053 109.078 73.6193 109.111 73.4403 109.164C73.2614 109.217 73.1099 109.297 72.9838 109.404C72.8577 109.511 72.7957 109.659 72.7957 109.849C72.7957 110.055 72.8832 110.207 73.058 110.306C73.2329 110.404 73.4159 110.454 73.606 110.454C73.7738 110.454 73.9355 110.432 74.091 110.386C74.2466 110.34 74.3859 110.276 74.5079 110.192C74.6299 110.108 74.7265 110.002 74.7987 109.873C74.8709 109.743 74.9075 109.591 74.9075 109.416V109.051H74.4855C74.3564 109.051 74.1947 109.057 74.0005 109.068L73.9995 109.067ZM86.9802 107.304C86.546 107.304 86.2095 107.433 85.9706 107.693C85.7306 107.951 85.6106 108.291 85.6106 108.708C85.6106 109.126 85.7306 109.466 85.9706 109.724C86.2105 109.982 86.5471 110.113 86.9802 110.113C87.4133 110.113 87.7509 109.983 87.9898 109.724C88.2298 109.466 88.3497 109.127 88.3497 108.708C88.3497 108.289 88.2298 107.952 87.9898 107.693C87.7499 107.434 87.4133 107.304 86.9802 107.304ZM63.6664 108.298C63.5221 108.237 63.3655 108.195 63.1987 108.173C63.031 108.15 62.8754 108.138 62.731 108.138H61.3849V109.975H62.9822C63.1194 109.975 63.2577 109.96 63.399 109.929C63.5394 109.899 63.6675 109.846 63.7813 109.77C63.8952 109.694 63.9887 109.595 64.0609 109.473C64.1331 109.351 64.1697 109.204 64.1697 109.028C64.1697 108.838 64.1219 108.684 64.0274 108.565C63.9318 108.447 63.8118 108.358 63.6675 108.297L63.6664 108.298ZM63.0788 106.585C63.212 106.555 63.3319 106.505 63.4387 106.437C63.5455 106.369 63.6309 106.277 63.6959 106.163C63.76 106.05 63.7925 105.912 63.7925 105.753C63.7925 105.593 63.7559 105.447 63.6837 105.336C63.6115 105.226 63.518 105.14 63.4041 105.079C63.2902 105.018 63.1601 104.974 63.0157 104.947C62.8714 104.921 62.73 104.908 62.5938 104.908H61.3839V106.631H62.6731C62.8104 106.631 62.9446 106.616 63.0778 106.585H63.0788ZM94.1695 107.304C93.7354 107.304 93.3988 107.433 93.1599 107.693C92.92 107.951 92.8 108.291 92.8 108.708C92.8 109.126 92.92 109.466 93.1599 109.724C93.3999 109.982 93.7364 110.113 94.1695 110.113C94.6027 110.113 94.9402 109.983 95.1791 109.724C95.4191 109.466 95.5391 109.127 95.5391 108.708C95.5391 108.289 95.4191 107.952 95.1791 107.693C94.9392 107.434 94.6027 107.304 94.1695 107.304ZM148.476 107.304C148.042 107.304 147.706 107.433 147.467 107.693C147.227 107.951 147.107 108.291 147.107 108.708C147.107 109.126 147.227 109.466 147.467 109.724C147.707 109.982 148.043 110.113 148.476 110.113C148.91 110.113 149.247 109.983 149.486 109.724C149.726 109.466 149.846 109.127 149.846 108.708C149.846 108.289 149.726 107.952 149.486 107.693C149.246 107.434 148.91 107.304 148.476 107.304ZM162.216 107.304C161.781 107.304 161.445 107.433 161.206 107.693C160.966 107.951 160.846 108.291 160.846 108.708C160.846 109.126 160.966 109.466 161.206 109.724C161.446 109.982 161.782 110.113 162.216 110.113C162.649 110.113 162.986 109.983 163.225 109.724C163.465 109.466 163.585 109.127 163.585 108.708C163.585 108.289 163.465 107.952 163.225 107.693C162.985 107.434 162.649 107.304 162.216 107.304ZM178.757 111.711C178.736 116.914 178.241 121.739 177.203 126.506C177.123 126.875 177.027 126.965 176.647 126.864C170.458 125.236 164.216 123.849 157.921 122.7C152.306 121.676 146.664 120.842 140.993 120.191C133.247 119.303 125.477 118.765 117.683 118.602C110.295 118.448 102.912 118.579 95.536 119.061C90.3456 119.4 85.1694 119.877 80.0095 120.526C71.4882 121.597 63.0412 123.091 54.6714 125.018C52.0655 125.618 49.4687 126.25 46.8873 126.946C46.5426 127.038 46.4643 126.962 46.3941 126.64C44.9412 119.957 44.4745 113.208 45.0622 106.392C46.2254 92.8961 50.9786 80.8 59.4775 70.2585C69.3998 57.953 82.1009 50.0092 97.5715 46.592C104.457 45.0709 111.424 44.6978 118.434 45.4024C130.381 46.6031 141.262 50.6792 150.98 57.7486C160.438 64.6288 167.676 73.3687 172.614 83.9834C175.366 89.9008 177.173 96.1029 178.082 102.566C178.303 104.143 178.463 105.726 178.582 107.314C178.7 108.886 178.723 110.461 178.757 111.709V111.711ZM95.7658 57.6967C95.8746 57.8421 95.8878 57.8747 95.9112 57.8889C98.2446 59.2645 100.474 60.7937 102.638 62.4195C106.911 65.6303 110.882 69.1838 114.609 73.0108C114.907 73.3168 115.056 73.3097 115.343 73.0078C116.681 71.5935 118.051 70.2097 119.397 68.8025C120.939 67.19 122.469 65.5653 124.005 63.9456C123.985 63.9049 123.966 63.8632 123.948 63.8226C123.416 63.8958 122.881 63.9527 122.352 64.0452C119.59 64.5251 116.945 65.4107 114.335 66.4041C114.039 66.5169 113.819 66.519 113.543 66.3359C112.853 65.8774 112.141 65.4524 111.429 65.0284C106.958 62.3636 102.3 60.0851 97.4312 58.2427C96.9239 58.0506 96.3992 57.9031 95.7668 57.6978L95.7658 57.6967ZM104.944 74.4353C101.596 79.8839 98.3798 85.4109 95.3683 91.0538C94.623 92.4498 93.9123 93.8641 93.1863 95.2702C93.2301 95.3058 93.2738 95.3414 93.3175 95.377C93.4487 95.2102 93.5676 95.0302 93.714 94.8788C95.4913 93.0405 97.2817 91.2165 99.0499 89.3691C103.673 84.5375 108.285 79.6948 112.911 74.8664C113.142 74.6254 113.092 74.5034 112.888 74.3021C112.214 73.6361 111.562 72.9468 110.89 72.2777C105.705 67.1178 100.16 62.392 94.0434 58.3586C93.9387 58.2895 93.8432 58.1594 93.6256 58.1848C93.9519 58.564 94.2407 58.8934 94.5234 59.2279C98.3636 63.7778 101.744 68.6582 104.936 73.6768C105.119 73.9655 105.12 74.1506 104.945 74.4363L104.944 74.4353ZM65.949 109.233C65.949 108.975 65.9073 108.731 65.824 108.503C65.7406 108.275 65.6206 108.075 65.464 107.904C65.3085 107.733 65.1214 107.592 64.9048 107.482C64.6883 107.372 64.4463 107.298 64.1799 107.26V107.237C64.5978 107.108 64.9343 106.894 65.1895 106.593C65.4447 106.292 65.5718 105.913 65.5718 105.457C65.5718 105 65.4844 104.662 65.3095 104.395C65.1346 104.129 64.9058 103.922 64.6252 103.773C64.3436 103.625 64.0264 103.526 63.6725 103.476C63.3187 103.426 62.9669 103.402 62.6172 103.402H59.6046V111.481H62.9141C63.2719 111.481 63.6309 111.443 63.9928 111.367C64.3538 111.291 64.6791 111.166 64.9689 110.991C65.2576 110.816 65.4935 110.586 65.6765 110.301C65.8595 110.015 65.95 109.66 65.95 109.234L65.949 109.233ZM70.685 105.855C70.6016 105.833 70.5101 105.818 70.4115 105.81C70.3128 105.803 70.2132 105.798 70.1146 105.798C69.7343 105.798 69.4181 105.884 69.167 106.056C68.9158 106.227 68.6993 106.484 68.5163 106.826H68.4939V105.937H66.7827V111.483H68.4939V109.167C68.4939 108.893 68.5092 108.642 68.5397 108.414C68.5702 108.186 68.6362 107.99 68.7389 107.826C68.8416 107.662 68.988 107.535 69.1782 107.444C69.3683 107.352 69.6265 107.306 69.9539 107.306C70.0831 107.306 70.2071 107.315 70.325 107.335C70.443 107.354 70.563 107.383 70.685 107.42V105.856V105.855ZM76.4814 108.663C76.4814 108.199 76.4427 107.789 76.3675 107.435C76.2912 107.082 76.156 106.783 75.9628 106.54C75.7686 106.297 75.5104 106.112 75.1871 105.987C74.8637 105.862 74.451 105.798 73.9487 105.798C73.4922 105.798 73.0509 105.873 72.6249 106.021C72.1989 106.17 71.8257 106.392 71.5065 106.689L72.4195 107.625C72.6015 107.419 72.8089 107.258 73.0418 107.14C73.2736 107.022 73.5308 106.963 73.8124 106.963C74.1093 106.963 74.3656 107.052 74.5831 107.231C74.7997 107.41 74.9085 107.652 74.9085 107.956C74.6726 107.956 74.4154 107.96 74.1378 107.967C73.8602 107.975 73.5827 107.998 73.3051 108.035C73.0275 108.074 72.7591 108.132 72.5009 108.212C72.2426 108.293 72.0118 108.404 71.8105 108.549C71.6092 108.693 71.4496 108.876 71.3316 109.097C71.2137 109.317 71.1547 109.588 71.1547 109.907C71.1547 110.189 71.2076 110.436 71.3143 110.649C71.4211 110.863 71.5655 111.041 71.7485 111.186C71.9315 111.331 72.1419 111.439 72.3819 111.512C72.6218 111.584 72.8709 111.62 73.1292 111.62C73.479 111.62 73.8114 111.555 74.1276 111.426C74.4428 111.297 74.696 111.083 74.8861 110.787H74.9085V111.483H76.4834V108.665L76.4814 108.663ZM82.8949 108.423C82.8949 108.05 82.8685 107.704 82.8146 107.385C82.7618 107.065 82.6611 106.788 82.5127 106.552C82.3642 106.316 82.1568 106.132 81.8904 105.999C81.624 105.866 81.2743 105.8 80.8401 105.8C80.6347 105.8 80.4446 105.826 80.2697 105.88C80.0949 105.933 79.9393 106.002 79.802 106.085C79.6648 106.169 79.5468 106.264 79.4482 106.371C79.3496 106.478 79.2733 106.584 79.2194 106.69H79.1971V105.937H77.554V111.483H79.2662V108.722C79.2662 108.539 79.2774 108.364 79.3008 108.197C79.3232 108.029 79.3709 107.88 79.4431 107.747C79.5153 107.613 79.62 107.507 79.7573 107.427C79.8946 107.348 80.0725 107.307 80.2941 107.307C80.5158 107.307 80.6835 107.353 80.8015 107.445C80.9194 107.536 81.0069 107.654 81.0638 107.798C81.1207 107.943 81.1553 108.1 81.1665 108.272C81.1777 108.444 81.1838 108.609 81.1838 108.768V111.484H82.896V108.426L82.8949 108.423ZM89.9247 102.854H88.2125V106.529H88.1901C87.9918 106.262 87.7397 106.074 87.4316 105.963C87.1235 105.853 86.7911 105.797 86.4332 105.797C86.0377 105.797 85.6839 105.879 85.3717 106.043C85.0596 106.206 84.7952 106.425 84.5787 106.698C84.3621 106.972 84.1943 107.286 84.0764 107.64C83.9585 107.994 83.8995 108.365 83.8995 108.752C83.8995 109.171 83.9635 109.555 84.0937 109.905C84.2228 110.255 84.4078 110.558 84.6468 110.812C84.8867 111.067 85.1734 111.264 85.508 111.406C85.8425 111.546 86.2156 111.617 86.6264 111.617C86.8165 111.617 87.0005 111.591 87.1795 111.537C87.3584 111.484 87.5221 111.415 87.6706 111.332C87.819 111.248 87.9481 111.155 88.0589 111.052C88.1688 110.949 88.2582 110.849 88.3274 110.75H88.3497V111.48H89.9247V102.853V102.854ZM97.2502 108.708C97.2502 108.267 97.1699 107.868 97.0103 107.51C96.8507 107.152 96.6321 106.846 96.3545 106.591C96.0769 106.335 95.7495 106.14 95.3733 106.003C94.9971 105.866 94.5955 105.797 94.1695 105.797C93.7435 105.797 93.3419 105.866 92.9657 106.003C92.5895 106.14 92.2621 106.335 91.9846 106.591C91.707 106.846 91.4884 107.152 91.3288 107.51C91.1691 107.868 91.0888 108.267 91.0888 108.708C91.0888 109.15 91.1691 109.549 91.3288 109.906C91.4884 110.264 91.707 110.57 91.9846 110.825C92.2621 111.08 92.5895 111.276 92.9657 111.413C93.3419 111.55 93.7435 111.618 94.1695 111.618C94.5955 111.618 94.9971 111.55 95.3733 111.413C95.7495 111.276 96.0769 111.08 96.3545 110.825C96.6321 110.57 96.8507 110.264 97.0103 109.906C97.1699 109.548 97.2502 109.15 97.2502 108.708ZM103.595 108.423C103.595 108.05 103.568 107.704 103.514 107.385C103.461 107.065 103.36 106.788 103.212 106.552C103.064 106.316 102.857 106.132 102.59 105.999C102.324 105.866 101.974 105.8 101.54 105.8C101.334 105.8 101.144 105.826 100.969 105.88C100.795 105.933 100.639 106.002 100.502 106.085C100.364 106.169 100.247 106.264 100.148 106.371C100.049 106.478 99.973 106.584 99.9202 106.69H99.8978V105.937H98.2548V111.483H99.9659V108.722C99.9659 108.539 99.9771 108.364 100.001 108.197C100.023 108.029 100.071 107.88 100.143 107.747C100.215 107.613 100.32 107.507 100.457 107.427C100.594 107.348 100.772 107.307 100.994 107.307C101.215 107.307 101.383 107.353 101.501 107.445C101.619 107.536 101.707 107.654 101.764 107.798C101.82 107.943 101.855 108.1 101.866 108.272C101.877 108.444 101.883 108.609 101.883 108.768V111.484H103.595V108.426V108.423ZM115.417 103.402H113.637V106.415H110.179V103.402H108.399V111.481H110.179V107.99H113.637V111.481H115.417V103.402ZM121.899 108.663C121.899 108.199 121.86 107.789 121.785 107.435C121.709 107.082 121.574 106.783 121.38 106.54C121.186 106.297 120.928 106.112 120.605 105.987C120.281 105.862 119.869 105.798 119.366 105.798C118.91 105.798 118.468 105.873 118.042 106.021C117.616 106.17 117.243 106.392 116.924 106.689L117.837 107.625C118.02 107.419 118.226 107.258 118.459 107.14C118.691 107.022 118.948 106.963 119.23 106.963C119.527 106.963 119.783 107.052 120.001 107.231C120.217 107.41 120.326 107.652 120.326 107.956C120.09 107.956 119.833 107.96 119.555 107.967C119.278 107.975 119 107.998 118.723 108.035C118.445 108.074 118.177 108.132 117.918 108.212C117.66 108.293 117.429 108.404 117.228 108.549C117.027 108.693 116.867 108.876 116.749 109.097C116.631 109.317 116.572 109.588 116.572 109.907C116.572 110.189 116.625 110.436 116.732 110.649C116.839 110.863 116.983 111.041 117.165 111.186C117.348 111.331 117.559 111.439 117.798 111.512C118.038 111.584 118.288 111.62 118.546 111.62C118.896 111.62 119.228 111.555 119.544 111.426C119.859 111.297 120.113 111.083 120.303 110.787H120.325V111.483H121.9V108.665L121.899 108.663ZM124.706 102.854H122.994V111.481H124.706V102.854ZM127.673 102.854H125.961V111.481H127.673V102.854ZM129.134 95.6942C128.586 94.7405 128.057 93.7746 127.483 92.8382C124.094 87.3183 120.044 82.3058 115.691 77.5292C115.292 77.0906 114.884 77.0944 114.469 77.5404C108.853 83.5615 103.117 89.4626 97.2614 95.2509C96.5446 95.9595 95.8492 96.6906 95.1405 97.4145C95.3235 97.4379 95.4404 97.2935 95.5777 97.2152C102.226 93.4309 108.787 89.4982 115.253 85.4089C115.514 85.2442 115.691 85.2137 115.963 85.4048C119.673 87.9934 123.317 90.6664 126.725 93.6475C127.533 94.3541 128.317 95.0872 129.128 95.8233C129.132 95.7552 129.147 95.7176 129.134 95.6952V95.6942ZM130.406 93.2245C130.077 92.158 129.768 91.0843 129.417 90.0249C127.847 85.297 125.821 80.7563 123.72 76.2481C123.59 75.9685 123.559 75.7346 123.662 75.4337C124.273 73.6371 124.747 71.8019 125.061 69.9291C125.336 68.2952 125.48 66.6501 125.37 64.941C125.345 64.9847 125.323 65.0305 125.293 65.0701C122.875 68.2535 120.31 71.319 117.766 74.4017C117.257 75.0189 117.249 75.027 117.766 75.6004C122.663 81.0369 126.841 86.9736 130.228 93.4635C130.28 93.5621 130.286 93.7359 130.471 93.7258C130.525 93.5448 130.457 93.3862 130.407 93.2245H130.406ZM139.815 106.688H136.654V108.331H138.103V109.644C137.935 109.735 137.711 109.825 137.43 109.912C137.148 110 136.813 110.043 136.425 110.043C136.037 110.043 135.7 109.979 135.392 109.849C135.084 109.72 134.82 109.539 134.599 109.307C134.378 109.075 134.21 108.801 134.092 108.486C133.974 108.171 133.915 107.822 133.915 107.442C133.915 107.061 133.974 106.723 134.092 106.403C134.21 106.084 134.378 105.809 134.599 105.576C134.82 105.344 135.084 105.163 135.392 105.034C135.7 104.905 136.045 104.84 136.425 104.84C136.882 104.84 137.262 104.905 137.566 105.034C137.87 105.163 138.144 105.353 138.387 105.604L139.643 104.235C139.232 103.854 138.754 103.586 138.21 103.431C137.666 103.275 137.071 103.197 136.424 103.197C135.777 103.197 135.21 103.295 134.678 103.494C134.146 103.692 133.686 103.974 133.298 104.344C132.909 104.713 132.607 105.159 132.391 105.685C132.174 106.21 132.065 106.796 132.065 107.442C132.065 108.087 132.174 108.674 132.391 109.198C132.607 109.723 132.91 110.17 133.298 110.54C133.686 110.909 134.146 111.192 134.678 111.39C135.211 111.587 135.793 111.686 136.424 111.686C137.018 111.686 137.599 111.625 138.17 111.503C138.74 111.381 139.288 111.184 139.813 110.91V106.687L139.815 106.688ZM145.064 105.855C144.981 105.833 144.889 105.818 144.791 105.81C144.692 105.803 144.592 105.798 144.494 105.798C144.114 105.798 143.797 105.884 143.546 106.056C143.295 106.227 143.079 106.484 142.896 106.826H142.873V105.937H141.161V111.483H142.873V109.167C142.873 108.893 142.888 108.642 142.919 108.414C142.949 108.186 143.016 107.99 143.118 107.826C143.221 107.662 143.367 107.535 143.557 107.444C143.748 107.352 144.006 107.306 144.333 107.306C144.462 107.306 144.586 107.315 144.704 107.335C144.822 107.354 144.942 107.383 145.064 107.42V105.856V105.855ZM151.557 108.708C151.557 108.267 151.477 107.868 151.317 107.51C151.158 107.152 150.939 106.846 150.661 106.591C150.384 106.335 150.056 106.14 149.68 106.003C149.304 105.866 148.902 105.797 148.476 105.797C148.05 105.797 147.649 105.866 147.273 106.003C146.896 106.14 146.569 106.335 146.291 106.591C146.014 106.846 145.795 107.152 145.636 107.51C145.476 107.868 145.396 108.267 145.396 108.708C145.396 109.15 145.476 109.549 145.636 109.906C145.795 110.264 146.014 110.57 146.291 110.825C146.569 111.08 146.896 111.276 147.273 111.413C147.649 111.55 148.05 111.618 148.476 111.618C148.902 111.618 149.304 111.55 149.68 111.413C150.056 111.276 150.384 111.08 150.661 110.825C150.939 110.57 151.158 110.264 151.317 109.906C151.477 109.548 151.557 109.15 151.557 108.708ZM157.902 105.936H156.189V108.697C156.189 108.88 156.178 109.055 156.155 109.222C156.132 109.39 156.085 109.54 156.012 109.672C155.94 109.805 155.836 109.912 155.698 109.992C155.561 110.071 155.382 110.111 155.161 110.111C154.941 110.111 154.772 110.066 154.654 109.974C154.536 109.883 154.449 109.765 154.392 109.62C154.335 109.476 154.3 109.318 154.289 109.147C154.278 108.975 154.272 108.81 154.272 108.65V105.935H152.56V108.993C152.56 109.366 152.584 109.712 152.634 110.031C152.684 110.35 152.782 110.628 152.931 110.864C153.079 111.1 153.289 111.285 153.558 111.417C153.827 111.55 154.18 111.616 154.613 111.616C154.819 111.616 155.009 111.59 155.184 111.536C155.359 111.483 155.514 111.414 155.652 111.331C155.789 111.247 155.905 111.152 155.999 111.045C156.094 110.938 156.172 110.832 156.233 110.726H156.255V111.479H157.899V105.933L157.902 105.936ZM165.296 108.663C165.296 108.245 165.231 107.86 165.102 107.51C164.973 107.16 164.788 106.857 164.549 106.603C164.309 106.348 164.022 106.15 163.688 106.009C163.353 105.869 162.98 105.797 162.569 105.797C162.371 105.797 162.185 105.824 162.01 105.878C161.835 105.931 161.674 106 161.525 106.083C161.377 106.167 161.248 106.26 161.137 106.363C161.026 106.465 160.938 106.566 160.868 106.665H160.846V105.935H159.271V114.083H160.982V110.887H161.005C161.203 111.154 161.455 111.342 161.763 111.453C162.071 111.562 162.404 111.618 162.762 111.618C163.157 111.618 163.511 111.537 163.823 111.373C164.135 111.21 164.4 110.991 164.616 110.717C164.833 110.444 165 110.13 165.118 109.776C165.236 109.422 165.295 109.051 165.295 108.664L165.296 108.663ZM109.816 163.361C109.771 163.215 109.702 163.091 109.609 162.989C109.515 162.887 109.387 162.836 109.224 162.836C109.062 162.836 108.928 162.887 108.837 162.989C108.745 163.091 108.677 163.215 108.633 163.361C108.588 163.507 108.56 163.66 108.55 163.819C108.54 163.977 108.535 164.113 108.535 164.227C108.535 164.341 108.54 164.477 108.55 164.636C108.56 164.795 108.588 164.947 108.633 165.093C108.677 165.24 108.745 165.364 108.837 165.466C108.928 165.567 109.058 165.618 109.224 165.618C109.391 165.618 109.515 165.567 109.609 165.466C109.702 165.364 109.771 165.24 109.816 165.093C109.861 164.947 109.888 164.795 109.898 164.636C109.909 164.477 109.914 164.341 109.914 164.227C109.914 164.113 109.909 163.977 109.898 163.819C109.888 163.66 109.861 163.507 109.816 163.361ZM123.139 155.931C123.005 155.829 122.848 155.753 122.667 155.702C122.486 155.651 122.295 155.626 122.096 155.626H121.535V158.188H122.029C122.249 158.188 122.453 158.165 122.642 158.121C122.831 158.076 122.995 158.002 123.133 157.898C123.272 157.794 123.38 157.658 123.46 157.489C123.539 157.321 123.579 157.114 123.579 156.87C123.579 156.659 123.539 156.475 123.46 156.318C123.38 156.161 123.274 156.032 123.139 155.931ZM110.426 155.909C110.308 155.785 110.167 155.689 110.002 155.62C109.837 155.55 109.653 155.516 109.45 155.516C109.247 155.516 109.063 155.55 108.898 155.62C108.733 155.689 108.592 155.785 108.474 155.909C108.356 156.033 108.266 156.181 108.203 156.352C108.139 156.522 108.108 156.707 108.108 156.907C108.108 157.106 108.139 157.296 108.203 157.465C108.266 157.634 108.356 157.78 108.474 157.904C108.592 158.028 108.733 158.125 108.898 158.194C109.063 158.263 109.247 158.298 109.45 158.298C109.653 158.298 109.837 158.263 110.002 158.194C110.167 158.125 110.308 158.028 110.426 157.904C110.544 157.78 110.635 157.634 110.698 157.465C110.761 157.296 110.792 157.11 110.792 156.907C110.792 156.703 110.761 156.522 110.698 156.352C110.635 156.181 110.544 156.033 110.426 155.909ZM165.036 152.673C164.137 153.886 163.196 155.017 162.223 156.12C154.963 164.362 146.254 170.545 136.008 174.538C130.279 176.771 124.349 178.191 118.229 178.734C103.43 180.046 89.6156 176.98 76.8921 169.242C69.9 164.989 63.9349 159.576 58.8797 153.147C58.6224 152.819 58.5279 152.705 59.0525 152.58C65.6521 151.002 72.3097 149.734 79.0232 148.755C87.4103 147.53 95.838 146.783 104.309 146.496C111.358 146.258 118.401 146.352 125.44 146.762C131.546 147.118 137.628 147.726 143.684 148.584C150.742 149.583 157.741 150.896 164.674 152.558C164.784 152.585 164.891 152.626 165.036 152.673ZM101.33 159.017C101.615 159.123 101.926 159.176 102.264 159.176C102.581 159.176 102.892 159.144 103.197 159.078C103.502 159.013 103.795 158.908 104.076 158.761V156.504H102.386V157.383H103.161V158.084C103.071 158.133 102.951 158.181 102.801 158.227C102.65 158.274 102.471 158.298 102.264 158.298C102.056 158.298 101.876 158.263 101.712 158.194C101.547 158.125 101.406 158.028 101.288 157.904C101.17 157.78 101.079 157.634 101.016 157.465C100.953 157.296 100.922 157.11 100.922 156.907C100.922 156.703 100.953 156.522 101.016 156.352C101.079 156.181 101.17 156.033 101.288 155.909C101.406 155.785 101.547 155.689 101.712 155.62C101.876 155.55 102.06 155.516 102.264 155.516C102.508 155.516 102.711 155.55 102.874 155.62C103.036 155.689 103.183 155.79 103.313 155.925L103.984 155.193C103.764 154.989 103.509 154.846 103.218 154.762C102.928 154.679 102.609 154.637 102.264 154.637C101.918 154.637 101.615 154.69 101.33 154.796C101.046 154.902 100.8 155.053 100.592 155.25C100.385 155.448 100.223 155.687 100.107 155.967C99.9914 156.248 99.9334 156.561 99.9334 156.907C99.9334 157.252 99.9914 157.566 100.107 157.846C100.223 158.127 100.385 158.366 100.592 158.563C100.8 158.76 101.046 158.912 101.33 159.017ZM104.68 165.582H102.764L104.076 164.453C104.157 164.38 104.232 164.305 104.301 164.227C104.37 164.15 104.43 164.066 104.481 163.974C104.532 163.883 104.572 163.781 104.6 163.669C104.629 163.557 104.643 163.432 104.643 163.294C104.643 163.078 104.607 162.889 104.536 162.727C104.465 162.564 104.366 162.429 104.24 162.321C104.114 162.213 103.966 162.132 103.795 162.077C103.624 162.022 103.441 161.994 103.246 161.994C103.034 161.994 102.838 162.022 102.657 162.077C102.476 162.132 102.319 162.214 102.184 162.324C102.05 162.434 101.942 162.571 101.861 162.736C101.78 162.9 101.733 163.095 101.721 163.318L102.636 163.385C102.648 163.231 102.702 163.101 102.798 162.995C102.893 162.889 103.026 162.836 103.197 162.836C103.339 162.836 103.464 162.878 103.569 162.961C103.675 163.045 103.728 163.16 103.728 163.306C103.728 163.436 103.685 163.55 103.6 163.648C103.514 163.745 103.429 163.833 103.344 163.91L101.666 165.417V166.387H104.68V165.582ZM110.829 164.227C110.829 163.971 110.805 163.711 110.759 163.446C110.712 163.182 110.628 162.942 110.508 162.727C110.388 162.511 110.225 162.335 110.017 162.199C109.81 162.063 109.546 161.994 109.224 161.994C108.903 161.994 108.639 162.063 108.431 162.199C108.224 162.335 108.06 162.511 107.94 162.727C107.82 162.942 107.737 163.182 107.69 163.446C107.643 163.711 107.62 163.971 107.62 164.227C107.62 164.483 107.643 164.744 107.69 165.008C107.737 165.272 107.82 165.512 107.94 165.728C108.06 165.943 108.224 166.119 108.431 166.256C108.639 166.392 108.903 166.46 109.224 166.46C109.546 166.46 109.81 166.392 110.017 166.256C110.225 166.119 110.388 165.943 110.508 165.728C110.628 165.512 110.712 165.272 110.759 165.008C110.805 164.744 110.829 164.483 110.829 164.227ZM111.78 156.907C111.78 156.561 111.722 156.248 111.607 155.967C111.491 155.687 111.329 155.448 111.122 155.25C110.914 155.053 110.668 154.902 110.383 154.796C110.099 154.69 109.788 154.637 109.45 154.637C109.112 154.637 108.801 154.69 108.517 154.796C108.232 154.902 107.986 155.053 107.779 155.25C107.571 155.448 107.409 155.687 107.294 155.967C107.178 156.248 107.12 156.561 107.12 156.907C107.12 157.252 107.178 157.566 107.294 157.846C107.409 158.127 107.571 158.366 107.779 158.563C107.986 158.76 108.232 158.912 108.517 159.017C108.801 159.123 109.112 159.176 109.45 159.176C109.788 159.176 110.099 159.123 110.383 159.017C110.668 158.912 110.914 158.76 111.122 158.563C111.329 158.366 111.491 158.127 111.607 157.846C111.722 157.566 111.78 157.252 111.78 156.907ZM116.783 165.582H114.867L116.179 164.453C116.26 164.38 116.335 164.305 116.405 164.227C116.474 164.15 116.534 164.066 116.584 163.974C116.635 163.883 116.675 163.781 116.703 163.669C116.732 163.557 116.746 163.432 116.746 163.294C116.746 163.078 116.711 162.889 116.639 162.727C116.568 162.564 116.47 162.429 116.344 162.321C116.217 162.213 116.069 162.132 115.898 162.077C115.727 162.022 115.544 161.994 115.349 161.994C115.138 161.994 114.941 162.022 114.76 162.077C114.579 162.132 114.422 162.214 114.288 162.324C114.153 162.434 114.046 162.571 113.964 162.736C113.883 162.9 113.836 163.095 113.824 163.318L114.739 163.385C114.751 163.231 114.805 163.101 114.901 162.995C114.996 162.889 115.13 162.836 115.3 162.836C115.443 162.836 115.567 162.878 115.672 162.961C115.778 163.045 115.831 163.16 115.831 163.306C115.831 163.436 115.788 163.55 115.703 163.648C115.618 163.745 115.532 163.833 115.447 163.91L113.769 165.417V166.387H116.783V165.582ZM117.619 158.188H115.855V154.747H114.904V159.066H117.619V158.188ZM122.157 162.068H121.303L119.894 163.257L120.412 163.855L121.279 163.093V166.387H122.157V162.068ZM124.567 156.919C124.567 156.524 124.499 156.189 124.363 155.912C124.226 155.636 124.042 155.411 123.81 155.238C123.579 155.065 123.307 154.94 122.996 154.863C122.685 154.786 122.356 154.747 122.011 154.747H120.583V159.066H122.139C122.46 159.066 122.767 159.02 123.06 158.926C123.353 158.832 123.611 158.695 123.835 158.514C124.058 158.333 124.236 158.11 124.369 157.843C124.501 157.577 124.567 157.269 124.567 156.919ZM154.753 136.95L156.035 137.177L155.678 135.433L154.753 136.95ZM76.5393 134.927C76.4285 134.732 76.2902 134.57 76.1225 134.442C75.9547 134.314 75.7636 134.224 75.549 134.173C75.3345 134.121 75.1037 134.115 74.8566 134.154C74.6085 134.194 74.392 134.272 74.2049 134.389C74.0178 134.506 73.8643 134.651 73.7453 134.825C73.6264 134.999 73.545 135.196 73.5013 135.417C73.4576 135.638 73.4556 135.868 73.4952 136.111C73.5349 136.36 73.6101 136.579 73.7199 136.772C73.8297 136.966 73.969 137.126 74.1368 137.254C74.3045 137.382 74.4957 137.472 74.7102 137.524C74.9248 137.576 75.1556 137.582 75.4026 137.542C75.6507 137.502 75.8673 137.424 76.0543 137.307C76.2414 137.19 76.3939 137.046 76.5139 136.871C76.6329 136.697 76.7142 136.501 76.7579 136.283C76.8016 136.066 76.8037 135.833 76.763 135.585C76.7244 135.342 76.6491 135.123 76.5393 134.927ZM86.8439 133.578C86.7423 133.377 86.6111 133.21 86.4484 133.074C86.2868 132.939 86.0997 132.841 85.8882 132.78C85.6767 132.719 85.4459 132.702 85.1968 132.731C84.9477 132.759 84.7271 132.828 84.5349 132.936C84.3428 133.044 84.1831 133.182 84.0561 133.351C83.929 133.52 83.8395 133.713 83.7856 133.932C83.7327 134.15 83.7205 134.381 83.748 134.625C83.7765 134.874 83.8415 135.098 83.9432 135.295C84.0439 135.493 84.176 135.659 84.3377 135.795C84.4993 135.93 84.6864 136.029 84.8979 136.09C85.1094 136.151 85.3402 136.167 85.5893 136.139C85.8384 136.11 86.059 136.042 86.2512 135.934C86.4433 135.826 86.603 135.687 86.7301 135.519C86.8572 135.35 86.9466 135.158 87.0005 134.942C87.0534 134.727 87.0666 134.494 87.0371 134.245C87.0087 134.001 86.9446 133.778 86.8429 133.578H86.8439ZM174.194 138.995C174.122 138.933 174.034 138.88 173.93 138.838C173.827 138.797 173.725 138.762 173.622 138.737L172.879 138.547L172.579 139.72L173.25 139.891C173.352 139.917 173.462 139.94 173.578 139.963C173.693 139.984 173.802 139.989 173.904 139.976C174.006 139.963 174.097 139.925 174.177 139.863C174.258 139.801 174.317 139.7 174.352 139.558C174.386 139.427 174.386 139.315 174.352 139.225C174.319 139.133 174.266 139.056 174.194 138.994V138.995ZM167.271 139.468L168.539 139.764L168.277 138.003L167.271 139.468ZM179.444 140.785C179.318 140.62 179.156 140.477 178.959 140.356C178.761 140.235 178.543 140.143 178.307 140.076L177.64 139.889L176.788 142.932L177.375 143.096C177.636 143.17 177.887 143.211 178.125 143.22C178.364 143.231 178.584 143.196 178.782 143.119C178.981 143.042 179.155 142.916 179.306 142.742C179.456 142.568 179.572 142.336 179.653 142.046C179.723 141.795 179.737 141.563 179.695 141.351C179.654 141.138 179.569 140.949 179.444 140.784V140.785ZM188.996 132.043C188.366 134.08 187.692 136.102 187.043 138.133C185.162 144.017 183.278 149.9 181.415 155.79C181.276 156.226 181.119 156.28 180.704 156.148C176.994 154.967 173.253 153.887 169.483 152.911C165.058 151.766 160.606 150.737 156.119 149.863C151.882 149.038 147.627 148.323 143.351 147.728C138.453 147.045 133.539 146.528 128.608 146.163C125.45 145.929 122.288 145.777 119.122 145.674C114.549 145.526 109.977 145.517 105.403 145.646C100.697 145.779 95.9997 146.073 91.3084 146.49C86.603 146.908 81.9158 147.474 77.248 148.189C73.9365 148.696 70.6392 149.293 67.3511 149.943C62.183 150.963 57.0627 152.176 51.9791 153.548C48.9878 154.356 46.0129 155.22 43.0653 156.176C42.6942 156.297 42.558 156.195 42.4482 155.847C40.798 150.653 39.1387 145.462 37.4804 140.271C36.5898 137.482 35.7062 134.69 34.7932 131.907C34.6437 131.451 34.7556 131.304 35.1948 131.166C39.6674 129.753 44.1766 128.468 48.7194 127.307C53.3435 126.125 57.9971 125.062 62.6843 124.155C65.9246 123.527 69.17 122.935 72.4317 122.427C76.881 121.735 81.3454 121.154 85.8262 120.694C89.886 120.277 93.953 119.945 98.028 119.728C102.662 119.48 107.302 119.331 111.944 119.376C117.129 119.335 122.31 119.511 127.485 119.827C132.217 120.116 136.937 120.542 141.647 121.097C146.691 121.692 151.713 122.432 156.712 123.324C162.696 124.392 168.632 125.673 174.525 127.166C179.235 128.36 183.905 129.69 188.538 131.147C189.253 131.371 189.252 131.219 188.996 132.045V132.043ZM48.7255 139.927L50.1906 139.523L49.9141 138.522L45.8532 139.645L46.1298 140.645L47.5949 140.24L48.7377 144.373L49.8693 144.06L48.7265 139.927H48.7255ZM55.5641 142.565L55.2936 141.515L52.7945 142.159L52.524 141.11L54.7609 140.534L54.4904 139.485L52.2536 140.06L52.0065 139.099L54.3745 138.49L54.104 137.44L50.5994 138.342L51.9272 143.501L55.5631 142.566L55.5641 142.565ZM60.6661 140.536L59.5466 140.051C59.4714 140.255 59.3545 140.426 59.1969 140.567C59.0393 140.707 58.8431 140.805 58.6092 140.861C58.4038 140.909 58.2025 140.913 58.0053 140.872C57.807 140.831 57.625 140.752 57.4583 140.634C57.2915 140.516 57.1461 140.365 57.0221 140.18C56.898 139.995 56.8075 139.782 56.7506 139.537C56.6937 139.298 56.6794 139.067 56.7069 138.843C56.7343 138.621 56.7974 138.418 56.896 138.238C56.9946 138.057 57.1268 137.905 57.2895 137.778C57.4532 137.652 57.6423 137.563 57.8568 137.513C58.0713 137.462 58.2696 137.454 58.4506 137.488C58.6316 137.523 58.7942 137.595 58.9386 137.705L59.6473 136.779C59.5019 136.665 59.3463 136.575 59.1816 136.511C59.0169 136.447 58.8512 136.403 58.6834 136.382C58.5157 136.36 58.3499 136.354 58.1842 136.365C58.0195 136.376 57.8639 136.398 57.7175 136.433C57.3118 136.528 56.954 136.68 56.6418 136.888C56.3297 137.096 56.0775 137.348 55.8843 137.643C55.6912 137.939 55.5651 138.271 55.5061 138.64C55.4461 139.01 55.4655 139.403 55.5641 139.817C55.6617 140.232 55.8203 140.592 56.0389 140.896C56.2575 141.2 56.5198 141.441 56.8248 141.619C57.1298 141.797 57.4684 141.909 57.8395 141.956C58.2117 142.001 58.6 141.977 59.0047 141.881C59.3606 141.797 59.69 141.642 59.993 141.416C60.2949 141.19 60.5196 140.897 60.6671 140.537L60.6661 140.536ZM65.9704 140.212L64.8642 135.001L63.7163 135.245L64.1291 137.188L61.8994 137.662L61.4866 135.719L60.3387 135.963L61.4449 141.174L62.5928 140.93L62.1149 138.678L64.3446 138.204L64.8225 140.456L65.9704 140.212ZM71.964 139.074L70.9798 133.839L69.8258 134.056L70.5101 137.693L70.4948 137.697L67.5849 134.478L66.0171 134.772L67.0013 140.008L68.1553 139.791L67.4548 136.065L67.4701 136.062L70.4552 139.359L71.964 139.075V139.074ZM77.9668 135.39C77.8987 134.969 77.7665 134.599 77.5703 134.279C77.3741 133.96 77.1301 133.701 76.8393 133.501C76.5485 133.302 76.2191 133.166 75.851 133.093C75.484 133.02 75.0946 133.017 74.6838 133.083C74.273 133.149 73.904 133.275 73.5786 133.459C73.2522 133.644 72.9828 133.877 72.7693 134.157C72.5558 134.438 72.4053 134.761 72.3199 135.125C72.2335 135.489 72.2243 135.883 72.2924 136.304C72.3605 136.725 72.4927 137.095 72.689 137.414C72.8852 137.733 73.1292 137.992 73.42 138.192C73.7108 138.391 74.0402 138.527 74.4083 138.6C74.7753 138.674 75.1647 138.677 75.5755 138.611C75.9862 138.544 76.3553 138.418 76.6807 138.234C77.006 138.049 77.2765 137.818 77.49 137.536C77.7035 137.255 77.854 136.932 77.9394 136.568C78.0248 136.204 78.0349 135.81 77.9668 135.39ZM82.5147 137.462L82.3673 136.388L80.2128 136.684L79.6343 132.48L78.4711 132.639L79.1971 137.916L82.5137 137.46L82.5147 137.462ZM88.2491 134.104C88.2003 133.68 88.0854 133.305 87.9034 132.978C87.7214 132.65 87.4896 132.381 87.2079 132.169C86.9263 131.956 86.603 131.806 86.239 131.716C85.875 131.627 85.4866 131.606 85.0728 131.654C84.659 131.702 84.2858 131.811 83.9513 131.98C83.6178 132.15 83.3372 132.371 83.1115 132.641C82.8848 132.913 82.7211 133.228 82.6184 133.588C82.5157 133.948 82.4893 134.34 82.5381 134.763C82.5869 135.187 82.7018 135.562 82.8838 135.89C83.0658 136.217 83.2976 136.488 83.5792 136.699C83.8608 136.912 84.1842 137.062 84.5482 137.152C84.9121 137.241 85.3005 137.261 85.7144 137.214C86.1282 137.166 86.5013 137.057 86.8358 136.887C87.1693 136.717 87.4499 136.497 87.6756 136.226C87.9024 135.955 88.0661 135.64 88.1688 135.28C88.2714 134.92 88.2979 134.527 88.2491 134.104ZM94.0851 135.874L93.8371 133.101L91.7609 133.287L91.8575 134.366L92.8091 134.28L92.8864 135.142C92.7817 135.213 92.6393 135.284 92.4604 135.358C92.2804 135.432 92.0639 135.48 91.8087 135.503C91.5585 135.526 91.3288 135.503 91.1193 135.436C90.9099 135.369 90.7248 135.267 90.5662 135.127C90.4076 134.988 90.2805 134.818 90.1849 134.618C90.0883 134.418 90.0294 134.193 90.007 133.943C89.9846 133.698 90.0029 133.467 90.0619 133.25C90.1209 133.034 90.2154 132.843 90.3466 132.677C90.4778 132.511 90.6404 132.377 90.8356 132.274C91.0309 132.172 91.2525 132.109 91.5026 132.086C91.8026 132.06 92.0557 132.079 92.2631 132.146C92.4706 132.213 92.6617 132.322 92.8366 132.473L93.5808 131.5C93.289 131.274 92.9596 131.126 92.5926 131.055C92.2265 130.985 91.831 130.969 91.406 131.006C90.9912 131.044 90.615 131.143 90.2764 131.304C89.9379 131.466 89.6532 131.678 89.4193 131.944C89.1865 132.209 89.0137 132.52 88.9028 132.878C88.791 133.236 88.7544 133.627 88.793 134.052C88.8306 134.477 88.9364 134.855 89.1102 135.186C89.2831 135.518 89.5088 135.794 89.7854 136.014C90.0619 136.233 90.3812 136.392 90.7421 136.491C91.1031 136.589 91.4914 136.62 91.9063 136.583C92.2957 136.549 92.6749 136.474 93.042 136.361C93.41 136.247 93.7577 136.085 94.0861 135.875L94.0851 135.874ZM97.4424 133.735L99.2278 130.55L97.8389 130.646L96.7836 132.719L95.5198 130.807L94.0638 130.908L96.2711 133.817L96.4287 136.083L97.6 136.002L97.4424 133.735ZM105.968 135.583L105.925 134.5L103.347 134.602L103.304 133.519L105.612 133.427L105.569 132.344L103.261 132.436L103.222 131.444L105.665 131.347L105.622 130.264L102.006 130.407L102.216 135.729L105.968 135.581V135.583ZM111.769 135.471L109.795 132.698L111.473 130.148L110.052 130.173L108.994 132.058L107.825 130.212L106.351 130.238L108.156 132.75L106.339 135.566L107.731 135.542L108.957 133.376L110.296 135.497L111.77 135.472L111.769 135.471ZM116.802 134.705L115.827 133.971C115.706 134.151 115.552 134.291 115.366 134.39C115.18 134.49 114.967 134.539 114.726 134.538C114.515 134.538 114.318 134.493 114.136 134.406C113.953 134.32 113.795 134.201 113.66 134.046C113.525 133.893 113.419 133.712 113.343 133.504C113.266 133.295 113.228 133.065 113.229 132.814C113.23 132.568 113.27 132.34 113.349 132.13C113.428 131.919 113.536 131.738 113.676 131.586C113.814 131.433 113.978 131.316 114.167 131.231C114.355 131.147 114.56 131.105 114.781 131.106C115.001 131.107 115.196 131.146 115.363 131.222C115.531 131.298 115.672 131.407 115.787 131.547L116.693 130.814C116.578 130.668 116.448 130.545 116.304 130.444C116.158 130.344 116.008 130.262 115.849 130.201C115.691 130.14 115.531 130.095 115.368 130.067C115.206 130.038 115.049 130.024 114.899 130.023C114.482 130.021 114.099 130.085 113.747 130.213C113.395 130.342 113.091 130.528 112.834 130.77C112.577 131.011 112.376 131.305 112.232 131.651C112.087 131.997 112.014 132.382 112.012 132.809C112.01 133.235 112.08 133.622 112.222 133.969C112.363 134.316 112.561 134.612 112.815 134.856C113.07 135.101 113.373 135.289 113.723 135.42C114.074 135.552 114.457 135.619 114.873 135.621C115.239 135.623 115.596 135.549 115.943 135.401C116.29 135.252 116.576 135.019 116.804 134.705H116.802ZM121.237 134.524L118.658 134.459L118.685 133.376L120.994 133.435L121.022 132.353L118.713 132.294L118.738 131.301L121.182 131.363L121.21 130.28L117.592 130.189L117.457 135.515L121.21 135.61L121.237 134.527V134.524ZM125.564 134.704L123.392 134.613L123.569 130.373L122.397 130.324L122.173 135.647L125.519 135.787L125.564 134.704ZM129.594 134.938L127.423 134.81L127.672 130.574L126.501 130.505L126.188 135.823L129.53 136.019L129.594 134.937V134.938ZM134.223 131.043L130.615 130.757L130.196 136.068L133.938 136.364L134.024 135.284L131.451 135.08L131.537 134.001L133.839 134.183L133.925 133.103L131.622 132.921L131.7 131.931L134.138 132.124L134.224 131.044L134.223 131.043ZM140.405 131.649L139.236 131.531L138.863 135.214H138.848L136.968 131.301L135.381 131.141L134.844 136.44L136.012 136.558L136.395 132.785L136.41 132.787L138.341 136.794L139.868 136.948L140.405 131.649ZM142.172 134.546C142.202 134.302 142.269 134.08 142.372 133.881C142.476 133.681 142.605 133.515 142.76 133.379C142.916 133.245 143.093 133.147 143.29 133.086C143.487 133.025 143.696 133.007 143.914 133.035C144.133 133.062 144.321 133.123 144.479 133.219C144.636 133.314 144.763 133.439 144.86 133.593L145.847 132.974C145.751 132.815 145.637 132.677 145.504 132.559C145.372 132.441 145.232 132.343 145.083 132.264C144.933 132.185 144.78 132.122 144.621 132.074C144.462 132.026 144.309 131.994 144.159 131.974C143.747 131.922 143.357 131.94 142.993 132.025C142.628 132.111 142.304 132.259 142.02 132.468C141.736 132.678 141.502 132.945 141.317 133.272C141.132 133.597 141.013 133.972 140.96 134.395C140.907 134.818 140.93 135.211 141.029 135.572C141.127 135.933 141.289 136.25 141.513 136.523C141.736 136.797 142.014 137.019 142.347 137.192C142.679 137.365 143.051 137.478 143.465 137.529C143.828 137.575 144.191 137.544 144.553 137.437C144.915 137.331 145.228 137.135 145.49 136.85L144.611 136.004C144.468 136.168 144.3 136.288 144.103 136.365C143.907 136.441 143.689 136.464 143.45 136.435C143.24 136.408 143.05 136.342 142.879 136.234C142.708 136.127 142.565 135.989 142.449 135.821C142.333 135.652 142.25 135.46 142.199 135.243C142.147 135.027 142.138 134.795 142.169 134.546H142.172ZM150.397 132.982L146.816 132.457L146.044 137.728L149.76 138.272L149.916 137.2L147.363 136.826L147.52 135.755L149.805 136.089L149.962 135.017L147.676 134.683L147.821 133.7L150.24 134.054L150.397 132.982ZM157.814 139.646L156.459 133.997L155.503 133.828L152.31 138.673L153.583 138.897L154.217 137.863L156.254 138.223L156.51 139.415L157.814 139.646ZM163.454 140.781L166.044 135.873L164.878 135.636L163.301 138.892L163.286 138.889L162.903 135.233L161.834 135.015L160.061 138.14L160.046 138.137L159.895 134.62L158.642 134.365L159.127 139.9L160.115 140.101L162.001 136.724L162.016 136.727L162.43 140.573L163.455 140.781H163.454ZM170.181 142.326L169.134 136.612L168.189 136.391L164.736 141.056L165.997 141.35L166.685 140.351L168.7 140.821L168.89 142.025L170.18 142.326H170.181ZM175.532 139.868C175.609 139.567 175.62 139.302 175.567 139.074C175.514 138.845 175.414 138.649 175.267 138.486C175.12 138.321 174.936 138.184 174.713 138.073C174.491 137.962 174.248 137.872 173.985 137.805L171.987 137.296L170.67 142.457L171.807 142.747L172.334 140.684L172.895 140.827L173.447 143.166L174.811 143.513L174.054 140.999C174.437 141.024 174.755 140.933 175.009 140.726C175.263 140.52 175.437 140.234 175.531 139.869L175.532 139.868ZM180.902 141.171C180.832 140.797 180.689 140.469 180.471 140.187C180.253 139.904 179.973 139.665 179.628 139.47C179.285 139.275 178.907 139.119 178.497 139.004L176.802 138.529L175.365 143.659L177.212 144.176C177.594 144.283 177.974 144.33 178.353 144.315C178.732 144.302 179.084 144.225 179.411 144.084C179.736 143.943 180.022 143.737 180.268 143.464C180.513 143.192 180.694 142.848 180.811 142.432C180.942 141.964 180.972 141.543 180.902 141.169V141.171Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_130_9328\">\\n<rect width=\"200\" height=\"142.127\" fill=\"white\" transform=\"translate(12 41)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:224,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/osva6G57VZxvBSp4yaJ5s6T92s.svg\"},className:\"framer-1loectb\",\"data-framer-name\":\"Isolation_Mode\",layoutDependency:layoutDependency,layoutId:\"JVyjOxWe5\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ir5i39\",\"data-framer-name\":\"Frame 1707479545\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:225,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"E33oREF2p\",svg:'<svg width=\"224\" height=\"225\" viewBox=\"0 0 224 225\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_130_9327)\">\\n<path d=\"M182.839 112.03C182.775 117.693 182.236 122.666 181.145 127.578C181.067 127.931 180.991 128.064 180.601 127.94C179.827 127.695 179.04 127.491 178.253 127.295C177.955 127.222 177.895 127.105 177.962 126.808C178.62 123.897 179.056 120.954 179.313 117.98C179.591 114.768 179.653 111.553 179.475 108.335C179.175 102.92 178.27 97.6087 176.695 92.4162C173.553 82.0557 168.225 72.9661 160.728 65.1647C152.011 56.0923 141.587 49.8536 129.426 46.5777C121.327 44.3958 113.095 43.7736 104.751 44.6347C93.231 45.8233 82.6936 49.6971 73.1963 56.3119C63.6745 62.9441 56.2819 71.4562 51.0762 81.8412C47.4749 89.0264 45.2686 96.6286 44.4033 104.614C43.5991 112.03 43.9733 119.392 45.5889 126.681C45.6905 127.139 45.6061 127.321 45.1384 127.42C44.3952 127.579 43.6642 127.8 42.9352 128.02C42.6413 128.11 42.5234 128.056 42.4563 127.744C41.8849 125.093 41.4304 122.425 41.1457 119.729C40.7614 116.084 40.6475 112.431 40.8163 108.769C41.1132 102.358 42.2296 96.0948 44.2254 89.9913C47.6854 79.4101 53.3425 70.1639 61.15 62.2385C69.9753 53.279 80.4324 47.0515 92.5437 43.6353C100.327 41.4402 108.264 40.6349 116.327 41.1504C128.069 41.8997 139.012 45.2753 148.99 51.518C163.498 60.5944 173.604 73.2365 179.168 89.4484C180.877 94.4294 181.938 99.5598 182.462 104.803C182.723 107.419 182.829 110.039 182.838 112.03H182.839ZM201.233 172.03C198.587 166.33 195.673 160.77 192.552 155.318C192.189 154.683 192.241 154.526 192.925 154.295C194.704 153.693 196.477 153.071 198.264 152.489C202.031 151.264 205.829 150.149 209.661 149.144C210.396 148.952 211.152 148.821 212 148.478C210.654 147.897 209.448 147.37 208.237 146.856C204.044 145.077 199.803 143.418 195.517 141.876C193.015 140.977 190.504 140.108 187.97 139.304C187.7 139.218 187.536 139.218 187.437 139.534C186.688 141.924 185.935 144.312 185.172 146.699C184.112 150.02 183.037 153.337 181.983 156.661C181.867 157.028 181.677 157.214 181.299 157.295C176.996 158.227 172.736 159.328 168.512 160.568C168.407 160.599 168.283 160.604 168.238 160.804C179.555 163.785 190.551 167.649 201.377 172.432C201.29 172.186 201.268 172.105 201.233 172.03ZM12.0325 148.581C12.6365 148.738 13.2394 148.897 13.8433 149.054C17.7761 150.077 21.6712 151.229 25.5378 152.477C27.3415 153.058 29.132 153.682 30.9235 154.298C31.5833 154.525 31.6443 154.691 31.3098 155.29C30.774 156.251 30.2178 157.201 29.682 158.161C27.1941 162.629 24.882 167.186 22.7042 171.812C22.633 171.963 22.4693 172.113 22.6188 172.36C33.3169 167.639 44.3149 163.774 55.6169 160.746C55.4827 160.642 55.3597 160.589 55.2336 160.552C51.0304 159.303 46.7835 158.222 42.499 157.287C42.1645 157.214 41.9642 157.06 41.8686 156.721C41.708 156.151 41.5097 155.592 41.3297 155.028C40.1941 151.465 39.0604 147.902 37.9227 144.339C37.4184 142.759 36.9008 141.183 36.4026 139.601C36.2989 139.27 36.1586 139.189 35.816 139.308C34.6335 139.719 33.4328 140.08 32.2493 140.488C26.0553 142.628 19.9407 144.975 13.9196 147.564C13.2739 147.842 12.6395 148.142 11.999 148.433C12.0101 148.483 12.0213 148.534 12.0315 148.584L12.0325 148.581ZM127.616 181.36C142.912 177.807 155.622 169.987 165.895 158.139C166.695 157.216 167.292 156.251 167.47 155.041C167.48 154.974 167.496 154.908 167.511 154.842C167.619 154.353 168.01 153.74 167.783 153.415C167.558 153.095 166.862 153.119 166.381 152.963C166.059 152.858 165.871 152.939 165.661 153.214C162.187 157.757 158.212 161.811 153.713 165.344C142.991 173.764 130.82 178.515 117.243 179.646C112.213 180.065 107.193 179.893 102.19 179.187C95.0917 178.186 88.3202 176.124 81.8965 172.953C72.6513 168.389 64.8662 162.012 58.4628 153.939C57.6219 152.878 57.6229 152.888 56.2819 153.256C56.0023 153.332 55.9514 153.426 56.0297 153.71C56.3124 154.737 56.5665 155.773 56.8177 156.809C56.896 157.134 57.0637 157.394 57.2732 157.643C61.7539 162.963 66.8651 167.583 72.6767 171.408C84.543 179.218 97.6111 183.046 110.34 183.128C117.135 183.117 122.415 182.568 127.616 181.36ZM44.1512 156.805C45.0307 157.017 45.9122 157.224 46.7906 157.44C49.9598 158.215 53.1117 159.06 56.2402 159.988C56.3978 160.035 56.5879 160.153 56.717 160.032C56.8573 159.9 56.7079 159.713 56.6692 159.558C56.2178 157.772 55.7552 155.988 55.3027 154.202C55.1309 153.526 55.1391 153.525 54.4589 153.716C51.855 154.447 49.2491 155.171 46.6483 155.91C45.8095 156.148 44.9808 156.425 44.1471 156.684C44.1481 156.725 44.1502 156.765 44.1512 156.806V156.805ZM179.054 156.482C175.824 155.464 172.556 154.575 169.288 153.687C168.807 153.556 168.637 153.689 168.525 154.15C168.091 155.943 167.623 157.727 167.169 159.516C167.128 159.675 167.014 159.864 167.142 159.998C167.294 160.156 167.493 160.016 167.663 159.966C170.392 159.162 173.139 158.422 175.897 157.724C177.157 157.405 178.424 157.106 179.725 156.788C179.501 156.603 179.272 156.551 179.052 156.482H179.054ZM149.842 132.964C149.741 132.892 149.621 132.836 149.483 132.795C149.345 132.754 149.207 132.723 149.072 132.702L148.088 132.551L147.849 134.104L148.737 134.241C148.872 134.261 149.015 134.278 149.168 134.293C149.32 134.306 149.462 134.299 149.591 134.269C149.72 134.24 149.833 134.18 149.929 134.089C150.026 133.999 150.088 133.86 150.116 133.673C150.143 133.499 150.129 133.356 150.074 133.242C150.019 133.128 149.94 133.036 149.84 132.965L149.842 132.964ZM140.946 134.479L142.622 134.688L142.046 132.452L140.946 134.479ZM188.996 132.043C188.366 134.08 187.692 136.102 187.043 138.133C185.162 144.017 183.279 149.9 181.415 155.79C181.276 156.226 181.119 156.28 180.704 156.148C176.994 154.967 173.253 153.887 169.483 152.911C165.058 151.766 160.606 150.737 156.119 149.863C151.882 149.038 147.627 148.323 143.351 147.728C138.453 147.045 133.539 146.528 128.608 146.163C125.45 145.929 122.288 145.777 119.122 145.674C114.549 145.526 109.977 145.517 105.403 145.646C100.697 145.779 95.9996 146.073 91.3084 146.49C86.603 146.908 81.9158 147.474 77.248 148.189C73.9365 148.696 70.6392 149.293 67.3511 149.943C62.183 150.963 57.0627 152.176 51.979 153.548C48.9878 154.356 46.0128 155.22 43.0653 156.176C42.6942 156.297 42.558 156.195 42.4482 155.847C40.798 150.653 39.1387 145.462 37.4804 140.271C36.5897 137.482 35.7062 134.69 34.7932 131.907C34.6437 131.451 34.7555 131.304 35.1948 131.166C39.6674 129.753 44.1766 128.468 48.7194 127.307C53.3435 126.125 57.9971 125.062 62.6842 124.155C65.9246 123.527 69.17 122.935 72.4317 122.427C76.8809 121.735 81.3454 121.154 85.8262 120.694C89.886 120.277 93.9529 119.945 98.028 119.728C102.662 119.48 107.302 119.331 111.944 119.376C117.129 119.335 122.31 119.511 127.485 119.827C132.217 120.116 136.937 120.542 141.647 121.097C146.691 121.692 151.713 122.432 156.712 123.324C162.696 124.392 168.632 125.673 174.525 127.166C179.235 128.36 183.905 129.69 188.538 131.147C189.253 131.371 189.252 131.219 188.996 132.045V132.043ZM53.3547 142.762L52.9968 141.403L49.7595 142.255L49.4016 140.895L52.2993 140.133L51.9414 138.773L49.0437 139.536L48.7153 138.29L51.7828 137.483L51.4249 136.124L46.8852 137.319L48.6452 144.002L53.3557 142.762H53.3547ZM60.6721 141.018L57.4054 138.047L58.8318 134.352L57.0363 134.775L56.2137 137.456L54.224 135.437L52.3623 135.876L55.3414 138.564L53.8132 142.634L55.5712 142.22L56.5299 139.136L58.8115 141.457L60.6731 141.019L60.6721 141.018ZM66.8437 138.711L65.4111 138.038C65.3054 138.299 65.1468 138.517 64.9373 138.693C64.7279 138.869 64.4696 138.988 64.1636 139.051C63.8962 139.106 63.6349 139.103 63.3797 139.042C63.1245 138.981 62.8917 138.871 62.6792 138.712C62.4677 138.553 62.2847 138.351 62.1322 138.107C61.9786 137.863 61.8698 137.582 61.8048 137.262C61.7407 136.95 61.7305 136.65 61.7753 136.362C61.819 136.074 61.9085 135.815 62.0447 135.584C62.1799 135.354 62.3569 135.16 62.5734 135.002C62.79 134.845 63.0391 134.738 63.3197 134.68C63.6003 134.623 63.8565 134.62 64.0904 134.672C64.3232 134.724 64.5317 134.824 64.7147 134.973L65.6704 133.8C65.4854 133.646 65.2881 133.524 65.0776 133.433C64.8662 133.344 64.6526 133.281 64.4361 133.246C64.2195 133.211 64.004 133.196 63.7894 133.205C63.5749 133.212 63.3726 133.235 63.1814 133.275C62.6517 133.384 62.182 133.566 61.7692 133.823C61.3564 134.08 61.0198 134.396 60.7575 134.772C60.4962 135.149 60.3193 135.575 60.2278 136.051C60.1363 136.528 60.1455 137.038 60.2563 137.58C60.3671 138.122 60.5583 138.593 60.8307 138.997C61.1032 139.401 61.4326 139.722 61.821 139.965C62.2094 140.208 62.6436 140.366 63.1235 140.441C63.6034 140.515 64.1087 140.499 64.6374 140.39C65.1031 140.294 65.5362 140.106 65.9368 139.825C66.3374 139.543 66.6404 139.173 66.8447 138.712L66.8437 138.711ZM72.6808 138.706L72.4327 137.322L69.1375 137.914L68.8894 136.53L71.8389 136.001L71.5908 134.617L68.6413 135.147L68.4135 133.879L71.5359 133.317L71.2879 131.934L66.6668 132.763L67.8879 139.565L72.6818 138.704L72.6808 138.706ZM78.1935 137.851L77.98 136.462L75.1921 136.89L74.3574 131.449L72.8526 131.679L73.8999 138.51L78.1935 137.851ZM83.3545 137.178L83.1735 135.784L80.3765 136.148L79.6658 130.689L78.1559 130.885L79.0476 137.738L83.3545 137.178ZM89.0502 136.566L88.9018 135.168L85.573 135.521L85.4245 134.123L88.4046 133.808L88.2562 132.41L85.2761 132.725L85.1409 131.444L88.2958 131.109L88.1474 129.711L83.4785 130.205L84.2065 137.077L89.0502 136.565V136.566ZM96.7459 135.946L96.2111 129.056L94.6931 129.174L95.0652 133.962H95.0459L91.7446 129.403L89.6816 129.564L90.2164 136.453L91.7344 136.335L91.3531 131.43H91.3725L94.7602 136.1L96.7449 135.946H96.7459ZM103.902 134.565L102.589 133.679C102.445 133.92 102.255 134.113 102.021 134.254C101.787 134.395 101.513 134.473 101.201 134.489C100.928 134.502 100.67 134.459 100.429 134.36C100.186 134.261 99.972 134.116 99.787 133.926C99.6019 133.736 99.4525 133.51 99.3396 133.244C99.2257 132.98 99.1617 132.684 99.1454 132.36C99.1301 132.041 99.1667 131.744 99.2542 131.465C99.3416 131.187 99.4707 130.945 99.6395 130.738C99.8083 130.532 100.013 130.367 100.252 130.245C100.491 130.123 100.752 130.055 101.039 130.042C101.324 130.028 101.578 130.065 101.801 130.151C102.024 130.239 102.214 130.37 102.372 130.544L103.496 129.532C103.337 129.351 103.16 129.2 102.966 129.079C102.771 128.958 102.57 128.863 102.361 128.795C102.153 128.727 101.942 128.68 101.729 128.654C101.515 128.628 101.312 128.62 101.117 128.629C100.577 128.655 100.084 128.763 99.6375 128.954C99.1901 129.145 98.8089 129.405 98.4927 129.737C98.1764 130.068 97.9365 130.461 97.7718 130.919C97.6081 131.377 97.539 131.881 97.5654 132.434C97.5918 132.986 97.7088 133.482 97.9151 133.922C98.1215 134.362 98.3981 134.732 98.7448 135.031C99.0915 135.331 99.4962 135.553 99.9588 135.701C100.421 135.848 100.923 135.909 101.463 135.883C101.937 135.86 102.394 135.74 102.833 135.524C103.272 135.307 103.628 134.988 103.902 134.564V134.565ZM109.663 135.477L109.635 134.072L106.288 134.138L106.261 132.733L109.257 132.674L109.229 131.269L106.233 131.328L106.208 130.04L109.379 129.976L109.351 128.571L104.657 128.664L104.793 135.574L109.664 135.478L109.663 135.477ZM115.3 128.595L113.777 128.577L113.701 135.487L115.224 135.504L115.3 128.595ZM123.349 128.819L121.827 128.769L121.667 133.569H121.648L118.871 128.67L116.803 128.601L116.572 135.508L118.094 135.558L118.258 130.641H118.277L121.127 135.659L123.117 135.725L123.348 128.818L123.349 128.819ZM131.833 134.887L129.02 134.682L129.422 129.192L127.903 129.081L127.398 135.973L131.731 136.29L131.833 134.888V134.887ZM134.507 132.315L134.632 131.033L137.788 131.339L137.924 129.94L133.251 129.487L132.584 136.366L137.432 136.835L137.567 135.436L134.235 135.113L134.37 133.714L137.352 134.003L137.488 132.604L134.505 132.315H134.507ZM145.09 137.77L142.963 130.54L141.713 130.384L137.893 136.872L139.559 137.08L140.311 135.699L142.975 136.031L143.385 137.557L145.09 137.77ZM151.625 132.892C151.528 132.605 151.374 132.364 151.164 132.17C150.953 131.976 150.697 131.821 150.396 131.706C150.094 131.59 149.77 131.506 149.423 131.453L146.779 131.046L145.729 137.877L147.234 138.108L147.654 135.378L148.397 135.492L149.405 138.442L151.208 138.719L149.916 135.567C150.412 135.551 150.812 135.395 151.115 135.095C151.418 134.796 151.606 134.405 151.68 133.922C151.741 133.524 151.724 133.18 151.626 132.892H151.625ZM159.618 133.219L158.12 132.945L157.257 137.669L157.238 137.666L155.211 132.414L153.176 132.041L151.933 138.839L153.431 139.113L154.315 134.273L154.335 134.276L156.417 139.658L158.375 140.016L159.618 133.218V133.219ZM161.184 140.607L162.582 133.84L161.09 133.532L159.692 140.299L161.184 140.607ZM170.445 135.613L168.962 135.27L167.878 139.948L167.858 139.944L166.08 134.602L164.064 134.135L162.504 140.867L163.988 141.21L165.098 136.417L165.117 136.422L166.945 141.895L168.885 142.344L170.445 135.612V135.613ZM172.254 139.644C172.335 139.336 172.46 139.062 172.628 138.824C172.796 138.586 172.996 138.395 173.229 138.252C173.462 138.108 173.72 138.017 174.004 137.977C174.286 137.938 174.585 137.96 174.9 138.043C175.278 138.143 175.578 138.28 175.801 138.454C176.024 138.628 176.209 138.844 176.355 139.106L177.693 138.249C177.437 137.844 177.101 137.518 176.686 137.27C176.27 137.021 175.795 136.826 175.26 136.685C174.738 136.547 174.235 136.501 173.751 136.548C173.267 136.594 172.825 136.728 172.424 136.948C172.022 137.169 171.674 137.472 171.379 137.858C171.086 138.245 170.867 138.705 170.726 139.24C170.584 139.775 170.546 140.283 170.61 140.764C170.674 141.245 170.826 141.681 171.066 142.072C171.306 142.462 171.624 142.796 172.022 143.077C172.418 143.357 172.878 143.566 173.401 143.704C173.892 143.835 174.386 143.912 174.884 143.936C175.382 143.961 175.878 143.917 176.373 143.805L177.298 140.314L174.684 139.621L174.324 140.98L175.523 141.297L175.235 142.382C175.076 142.42 174.871 142.446 174.62 142.456C174.368 142.467 174.082 142.429 173.761 142.344C173.446 142.261 173.176 142.132 172.949 141.958C172.722 141.784 172.544 141.576 172.412 141.335C172.28 141.095 172.201 140.832 172.172 140.544C172.144 140.258 172.172 139.957 172.255 139.643L172.254 139.644ZM121.861 155.931C121.727 155.829 121.569 155.753 121.389 155.702C121.208 155.651 121.017 155.626 120.818 155.626H120.257V158.188H120.751C120.971 158.188 121.175 158.165 121.364 158.121C121.553 158.076 121.717 158.002 121.855 157.898C121.993 157.794 122.102 157.658 122.182 157.489C122.261 157.321 122.301 157.114 122.301 156.87C122.301 156.659 122.261 156.475 122.182 156.318C122.102 156.161 121.996 156.032 121.861 155.931ZM108.538 163.361C108.493 163.215 108.424 163.091 108.331 162.989C108.237 162.887 108.109 162.836 107.946 162.836C107.784 162.836 107.65 162.887 107.559 162.989C107.467 163.091 107.399 163.215 107.355 163.361C107.31 163.507 107.282 163.66 107.272 163.819C107.262 163.977 107.257 164.113 107.257 164.227C107.257 164.341 107.262 164.477 107.272 164.636C107.282 164.795 107.31 164.947 107.355 165.093C107.399 165.24 107.467 165.364 107.559 165.466C107.65 165.567 107.78 165.618 107.946 165.618C108.113 165.618 108.237 165.567 108.331 165.466C108.424 165.364 108.493 165.24 108.538 165.093C108.583 164.947 108.61 164.795 108.62 164.636C108.631 164.477 108.636 164.341 108.636 164.227C108.636 164.113 108.631 163.977 108.62 163.819C108.61 163.66 108.583 163.507 108.538 163.361ZM109.148 155.909C109.03 155.785 108.889 155.689 108.724 155.62C108.559 155.55 108.375 155.516 108.172 155.516C107.969 155.516 107.785 155.55 107.62 155.62C107.455 155.689 107.314 155.785 107.196 155.909C107.078 156.033 106.987 156.181 106.924 156.352C106.861 156.522 106.83 156.707 106.83 156.907C106.83 157.106 106.861 157.296 106.924 157.465C106.987 157.634 107.078 157.78 107.196 157.904C107.314 158.028 107.455 158.125 107.62 158.194C107.785 158.263 107.969 158.298 108.172 158.298C108.375 158.298 108.559 158.263 108.724 158.194C108.889 158.125 109.03 158.028 109.148 157.904C109.266 157.78 109.356 157.634 109.42 157.465C109.483 157.296 109.514 157.11 109.514 156.907C109.514 156.703 109.483 156.522 109.42 156.352C109.356 156.181 109.266 156.033 109.148 155.909ZM165.036 152.673C164.137 153.886 163.196 155.017 162.223 156.12C154.963 164.362 146.254 170.545 136.008 174.538C130.279 176.771 124.349 178.191 118.229 178.734C103.43 180.046 89.6155 176.98 76.8921 169.242C69.9 164.989 63.9348 159.576 58.8796 153.147C58.6224 152.819 58.5278 152.705 59.0525 152.58C65.6521 151.002 72.3097 149.734 79.0232 148.755C87.4102 147.53 95.838 146.783 104.309 146.496C111.358 146.258 118.401 146.352 125.44 146.762C131.546 147.118 137.628 147.726 143.683 148.584C150.742 149.583 157.741 150.896 164.674 152.558C164.784 152.585 164.891 152.626 165.036 152.673ZM100.052 159.017C100.337 159.123 100.648 159.176 100.986 159.176C101.303 159.176 101.614 159.144 101.919 159.078C102.224 159.013 102.517 158.908 102.798 158.761V156.504H101.108V157.383H101.882V158.084C101.793 158.133 101.673 158.181 101.523 158.227C101.372 158.274 101.193 158.298 100.986 158.298C100.778 158.298 100.598 158.263 100.434 158.194C100.269 158.125 100.128 158.028 100.01 157.904C99.8917 157.78 99.8012 157.634 99.7382 157.465C99.6751 157.296 99.6436 157.11 99.6436 156.907C99.6436 156.703 99.6751 156.522 99.7382 156.352C99.8012 156.181 99.8917 156.033 100.01 155.909C100.128 155.785 100.269 155.689 100.434 155.62C100.598 155.55 100.782 155.516 100.986 155.516C101.23 155.516 101.433 155.55 101.596 155.62C101.758 155.689 101.905 155.79 102.035 155.925L102.706 155.193C102.486 154.989 102.231 154.846 101.94 154.762C101.65 154.679 101.331 154.637 100.986 154.637C100.64 154.637 100.337 154.69 100.052 154.796C99.7676 154.902 99.5216 155.053 99.3142 155.25C99.1068 155.448 98.9451 155.687 98.8292 155.967C98.7133 156.248 98.6553 156.561 98.6553 156.907C98.6553 157.252 98.7133 157.566 98.8292 157.846C98.9451 158.127 99.1068 158.366 99.3142 158.563C99.5216 158.76 99.7676 158.912 100.052 159.017ZM103.401 165.582H101.486L102.798 164.453C102.879 164.38 102.954 164.305 103.023 164.227C103.092 164.15 103.152 164.066 103.203 163.974C103.254 163.883 103.294 163.781 103.322 163.669C103.351 163.557 103.365 163.432 103.365 163.294C103.365 163.078 103.329 162.889 103.258 162.727C103.187 162.564 103.088 162.429 102.962 162.321C102.836 162.213 102.688 162.132 102.517 162.077C102.346 162.022 102.163 161.994 101.968 161.994C101.756 161.994 101.56 162.022 101.379 162.077C101.198 162.132 101.041 162.214 100.906 162.324C100.772 162.434 100.664 162.571 100.583 162.736C100.502 162.9 100.455 163.095 100.443 163.318L101.358 163.385C101.37 163.231 101.424 163.101 101.519 162.995C101.615 162.889 101.748 162.836 101.919 162.836C102.061 162.836 102.185 162.878 102.291 162.961C102.397 163.045 102.45 163.16 102.45 163.306C102.45 163.436 102.407 163.55 102.322 163.648C102.236 163.745 102.151 163.833 102.065 163.91L100.388 165.417V166.387H103.401V165.582ZM109.551 164.227C109.551 163.971 109.527 163.711 109.481 163.446C109.434 163.182 109.35 162.942 109.23 162.727C109.11 162.511 108.947 162.335 108.739 162.199C108.532 162.063 108.268 161.994 107.946 161.994C107.625 161.994 107.361 162.063 107.153 162.199C106.946 162.335 106.782 162.511 106.662 162.727C106.542 162.942 106.459 163.182 106.412 163.446C106.365 163.711 106.342 163.971 106.342 164.227C106.342 164.483 106.365 164.744 106.412 165.008C106.459 165.272 106.542 165.512 106.662 165.728C106.782 165.943 106.946 166.119 107.153 166.256C107.361 166.392 107.625 166.46 107.946 166.46C108.268 166.46 108.532 166.392 108.739 166.256C108.947 166.119 109.11 165.943 109.23 165.728C109.35 165.512 109.434 165.272 109.481 165.008C109.527 164.744 109.551 164.483 109.551 164.227ZM110.502 156.907C110.502 156.561 110.444 156.248 110.328 155.967C110.213 155.687 110.051 155.448 109.843 155.25C109.636 155.053 109.39 154.902 109.105 154.796C108.821 154.69 108.51 154.637 108.172 154.637C107.834 154.637 107.523 154.69 107.239 154.796C106.954 154.902 106.708 155.053 106.5 155.25C106.293 155.448 106.131 155.687 106.015 155.967C105.9 156.248 105.842 156.561 105.842 156.907C105.842 157.252 105.9 157.566 106.015 157.846C106.131 158.127 106.293 158.366 106.5 158.563C106.708 158.76 106.954 158.912 107.239 159.017C107.523 159.123 107.834 159.176 108.172 159.176C108.51 159.176 108.821 159.123 109.105 159.017C109.39 158.912 109.636 158.76 109.843 158.563C110.051 158.366 110.213 158.127 110.328 157.846C110.444 157.566 110.502 157.252 110.502 156.907ZM115.505 165.582H113.589L114.901 164.453C114.982 164.38 115.057 164.305 115.126 164.227C115.196 164.15 115.256 164.066 115.306 163.974C115.357 163.883 115.397 163.781 115.425 163.669C115.454 163.557 115.468 163.432 115.468 163.294C115.468 163.078 115.432 162.889 115.361 162.727C115.29 162.564 115.192 162.429 115.065 162.321C114.939 162.213 114.791 162.132 114.62 162.077C114.449 162.022 114.266 161.994 114.071 161.994C113.86 161.994 113.663 162.022 113.482 162.077C113.301 162.132 113.144 162.214 113.01 162.324C112.875 162.434 112.768 162.571 112.686 162.736C112.605 162.9 112.558 163.095 112.546 163.318L113.461 163.385C113.473 163.231 113.527 163.101 113.623 162.995C113.718 162.889 113.851 162.836 114.022 162.836C114.165 162.836 114.289 162.878 114.394 162.961C114.5 163.045 114.553 163.16 114.553 163.306C114.553 163.436 114.51 163.55 114.425 163.648C114.339 163.745 114.254 163.833 114.169 163.91L112.491 165.417V166.387H115.505V165.582ZM116.34 158.188H114.577V154.747H113.626V159.066H116.34V158.188ZM121.556 165.582H119.641L120.952 164.453C121.034 164.38 121.109 164.305 121.178 164.227C121.247 164.15 121.307 164.066 121.358 163.974C121.409 163.883 121.449 163.781 121.477 163.669C121.505 163.557 121.52 163.432 121.52 163.294C121.52 163.078 121.484 162.889 121.413 162.727C121.342 162.564 121.243 162.429 121.117 162.321C120.991 162.213 120.843 162.132 120.672 162.077C120.501 162.022 120.318 161.994 120.123 161.994C119.911 161.994 119.715 162.022 119.534 162.077C119.353 162.132 119.195 162.214 119.061 162.324C118.927 162.434 118.819 162.571 118.738 162.736C118.657 162.9 118.61 163.095 118.598 163.318L119.513 163.385C119.525 163.231 119.579 163.101 119.674 162.995C119.77 162.889 119.903 162.836 120.074 162.836C120.216 162.836 120.34 162.878 120.446 162.961C120.552 163.045 120.605 163.16 120.605 163.306C120.605 163.436 120.562 163.55 120.477 163.648C120.391 163.745 120.306 163.833 120.22 163.91L118.543 165.417V166.387H121.556V165.582ZM123.289 156.919C123.289 156.524 123.221 156.189 123.084 155.912C122.948 155.636 122.764 155.411 122.532 155.238C122.301 155.065 122.029 154.94 121.718 154.863C121.407 154.786 121.078 154.747 120.733 154.747H119.305V159.066H120.861C121.182 159.066 121.489 159.02 121.782 158.926C122.075 158.832 122.333 158.695 122.557 158.514C122.78 158.333 122.958 158.11 123.091 157.843C123.223 157.577 123.289 157.269 123.289 156.919ZM86.9802 107.304C86.546 107.304 86.2095 107.433 85.9705 107.693C85.7306 107.951 85.6106 108.291 85.6106 108.708C85.6106 109.126 85.7306 109.466 85.9705 109.724C86.2105 109.982 86.547 110.113 86.9802 110.113C87.4133 110.113 87.7508 109.983 87.9898 109.724C88.2297 109.466 88.3497 109.127 88.3497 108.708C88.3497 108.289 88.2297 107.952 87.9898 107.693C87.7498 107.434 87.4133 107.304 86.9802 107.304ZM119.417 109.067C119.223 109.078 119.037 109.111 118.858 109.164C118.679 109.217 118.527 109.297 118.401 109.404C118.276 109.511 118.213 109.659 118.213 109.849C118.213 110.055 118.301 110.207 118.476 110.306C118.65 110.404 118.833 110.454 119.024 110.454C119.191 110.454 119.353 110.432 119.509 110.386C119.664 110.34 119.803 110.276 119.925 110.192C120.047 110.108 120.144 110.002 120.216 109.873C120.288 109.743 120.325 109.591 120.325 109.416V109.051H119.903C119.774 109.051 119.612 109.057 119.418 109.068L119.417 109.067ZM73.9995 109.067C73.8053 109.078 73.6192 109.111 73.4403 109.164C73.2613 109.217 73.1098 109.297 72.9838 109.404C72.8587 109.511 72.7957 109.659 72.7957 109.849C72.7957 110.055 72.8831 110.207 73.058 110.306C73.2329 110.404 73.4159 110.454 73.606 110.454C73.7738 110.454 73.9354 110.432 74.091 110.386C74.2466 110.34 74.3859 110.276 74.5079 110.192C74.6299 110.108 74.7265 110.002 74.7987 109.873C74.8708 109.743 74.9074 109.591 74.9074 109.416V109.051H74.4855C74.3564 109.051 74.1947 109.057 74.0005 109.068L73.9995 109.067ZM94.1695 107.304C93.7353 107.304 93.3988 107.433 93.1599 107.693C92.9199 107.951 92.8 108.291 92.8 108.708C92.8 109.126 92.9199 109.466 93.1599 109.724C93.3998 109.982 93.7364 110.113 94.1695 110.113C94.6026 110.113 94.9402 109.983 95.1791 109.724C95.4191 109.466 95.539 109.127 95.539 108.708C95.539 108.289 95.4191 107.952 95.1791 107.693C94.9392 107.434 94.6026 107.304 94.1695 107.304ZM63.0787 106.585C63.2119 106.555 63.3319 106.505 63.4387 106.437C63.5454 106.369 63.6308 106.277 63.6959 106.163C63.76 106.05 63.7925 105.912 63.7925 105.753C63.7925 105.593 63.7559 105.447 63.6837 105.336C63.6115 105.226 63.518 105.14 63.4041 105.079C63.2902 105.018 63.1601 104.974 63.0157 104.947C62.8713 104.921 62.73 104.908 62.5938 104.908H61.3838V106.631H62.6731C62.8103 106.631 62.9445 106.616 63.0777 106.585H63.0787ZM148.476 107.304C148.042 107.304 147.706 107.433 147.467 107.693C147.227 107.951 147.107 108.291 147.107 108.708C147.107 109.126 147.227 109.466 147.467 109.724C147.707 109.982 148.043 110.113 148.476 110.113C148.91 110.113 149.247 109.983 149.486 109.724C149.726 109.466 149.846 109.127 149.846 108.708C149.846 108.289 149.726 107.952 149.486 107.693C149.246 107.434 148.91 107.304 148.476 107.304ZM178.757 111.711C178.736 116.914 178.241 121.739 177.203 126.506C177.123 126.875 177.027 126.965 176.647 126.864C170.458 125.236 164.216 123.849 157.921 122.7C152.306 121.676 146.664 120.842 140.993 120.191C133.247 119.303 125.477 118.765 117.683 118.602C110.295 118.448 102.912 118.579 95.536 119.061C90.3456 119.4 85.1694 119.877 80.0094 120.526C71.4882 121.597 63.0411 123.091 54.6714 125.018C52.0655 125.618 49.4687 126.25 46.8872 126.946C46.5426 127.038 46.4643 126.962 46.3941 126.64C44.9412 119.957 44.4745 113.208 45.0622 106.392C46.2253 92.8961 50.9786 80.8 59.4775 70.2585C69.3998 57.953 82.1008 50.0092 97.5715 46.592C104.457 45.0709 111.423 44.6978 118.434 45.4024C130.381 46.6031 141.262 50.6792 150.98 57.7486C160.438 64.6288 167.676 73.3687 172.614 83.9834C175.366 89.9008 177.173 96.1029 178.082 102.566C178.303 104.143 178.463 105.726 178.582 107.314C178.7 108.886 178.723 110.461 178.757 111.709V111.711ZM95.7658 57.6967C95.8746 57.8421 95.8878 57.8747 95.9112 57.8889C98.2446 59.2645 100.474 60.7937 102.638 62.4195C106.911 65.6303 110.883 69.1838 114.609 73.0108C114.907 73.3168 115.056 73.3097 115.343 73.0078C116.681 71.5935 118.051 70.2097 119.397 68.8025C120.939 67.19 122.469 65.5653 124.005 63.9456C123.985 63.9049 123.966 63.8632 123.948 63.8226C123.416 63.8958 122.881 63.9527 122.352 64.0452C119.59 64.5251 116.945 65.4107 114.335 66.4041C114.039 66.5169 113.819 66.519 113.543 66.3359C112.853 65.8774 112.141 65.4524 111.429 65.0284C106.958 62.3636 102.3 60.0851 97.4312 58.2427C96.9238 58.0506 96.3992 57.9031 95.7668 57.6978L95.7658 57.6967ZM104.945 74.4353C101.597 79.8839 98.3808 85.4109 95.3692 91.0538C94.624 92.4498 93.9133 93.8641 93.1873 95.2702C93.231 95.3058 93.2748 95.3414 93.3185 95.377C93.4496 95.2102 93.5686 95.0302 93.715 94.8788C95.4923 93.0405 97.2827 91.2165 99.0508 89.3691C103.675 84.5375 108.286 79.6948 112.912 74.8664C113.143 74.6254 113.093 74.5034 112.889 74.3021C112.215 73.6361 111.563 72.9468 110.891 72.2777C105.706 67.1178 100.161 62.392 94.0444 58.3586C93.9397 58.2895 93.8441 58.1594 93.6266 58.1848C93.9529 58.564 94.2417 58.8934 94.5243 59.2279C98.3645 63.7778 101.745 68.6582 104.937 73.6768C105.12 73.9655 105.121 74.1506 104.946 74.4363L104.945 74.4353ZM65.949 109.233C65.949 108.975 65.9073 108.731 65.8239 108.503C65.7406 108.275 65.6206 108.075 65.464 107.904C65.3084 107.733 65.1214 107.592 64.9048 107.482C64.6882 107.372 64.4463 107.298 64.1799 107.26V107.237C64.5977 107.108 64.9343 106.894 65.1895 106.593C65.4447 106.292 65.5718 105.913 65.5718 105.457C65.5718 105 65.4843 104.662 65.3095 104.395C65.1346 104.129 64.9058 103.922 64.6252 103.773C64.3436 103.625 64.0263 103.526 63.6725 103.476C63.3187 103.426 62.9669 103.402 62.6171 103.402H59.6046V111.481H62.914C63.2719 111.481 63.6308 111.443 63.9928 111.367C64.3537 111.291 64.6791 111.166 64.9688 110.991C65.2576 110.816 65.4935 110.586 65.6765 110.301C65.8595 110.015 65.95 109.66 65.95 109.234L65.949 109.233ZM70.6849 105.855C70.6016 105.833 70.5101 105.818 70.4114 105.81C70.3128 105.803 70.2132 105.798 70.1146 105.798C69.7343 105.798 69.4181 105.884 69.167 106.056C68.9158 106.228 68.6993 106.484 68.5162 106.826H68.4939V105.937H66.7817V111.483H68.4939V109.167C68.4939 108.893 68.5091 108.642 68.5396 108.414C68.5701 108.186 68.6362 107.99 68.7389 107.826C68.8416 107.662 68.988 107.535 69.1781 107.444C69.3683 107.352 69.6265 107.306 69.9539 107.306C70.083 107.306 70.2071 107.315 70.325 107.335C70.443 107.354 70.5629 107.383 70.6849 107.42V105.856V105.855ZM76.4824 108.663C76.4824 108.199 76.4437 107.789 76.3685 107.435C76.2922 107.082 76.157 106.783 75.9638 106.54C75.7696 106.297 75.5114 106.112 75.1881 105.987C74.8647 105.862 74.4519 105.798 73.9497 105.798C73.4932 105.798 73.0519 105.873 72.6259 106.021C72.1999 106.17 71.8267 106.392 71.5075 106.689L72.4205 107.625C72.6035 107.419 72.8099 107.258 73.0427 107.14C73.2746 107.022 73.5318 106.963 73.8134 106.963C74.1103 106.963 74.3665 107.052 74.5841 107.231C74.8007 107.41 74.9095 107.652 74.9095 107.956C74.6736 107.956 74.4164 107.96 74.1388 107.967C73.8612 107.975 73.5836 107.998 73.3061 108.035C73.0285 108.074 72.7601 108.132 72.5018 108.212C72.2436 108.293 72.0128 108.404 71.8115 108.549C71.6102 108.693 71.4505 108.876 71.3326 109.097C71.2147 109.317 71.1557 109.588 71.1557 109.907C71.1557 110.189 71.2086 110.436 71.3153 110.649C71.4221 110.863 71.5664 111.041 71.7495 111.186C71.9325 111.331 72.1429 111.439 72.3829 111.512C72.6228 111.584 72.8719 111.62 73.1302 111.62C73.4799 111.62 73.8124 111.555 74.1286 111.426C74.4438 111.297 74.697 111.083 74.8871 110.787H74.9095V111.483H76.4844V108.665L76.4824 108.663ZM82.8949 108.423C82.8949 108.05 82.8685 107.704 82.8146 107.385C82.7617 107.065 82.66 106.788 82.5126 106.552C82.3642 106.316 82.1568 106.132 81.8904 105.999C81.624 105.866 81.2742 105.8 80.8401 105.8C80.6347 105.8 80.4446 105.826 80.2697 105.88C80.0948 105.933 79.9393 106.002 79.802 106.085C79.6647 106.169 79.5468 106.264 79.4482 106.371C79.3496 106.478 79.2733 106.584 79.2204 106.69H79.1981V105.937H77.555V111.483H79.2672V108.722C79.2672 108.539 79.2784 108.364 79.3018 108.197C79.3241 108.029 79.3719 107.88 79.4441 107.747C79.5163 107.613 79.621 107.507 79.7583 107.427C79.8955 107.348 80.0735 107.307 80.2951 107.307C80.5168 107.307 80.6845 107.353 80.8025 107.445C80.9204 107.536 81.0079 107.654 81.0648 107.798C81.1217 107.943 81.1563 108.1 81.1675 108.272C81.1787 108.444 81.1848 108.609 81.1848 108.768V111.484H82.8969V108.426L82.8949 108.423ZM89.9246 102.854H88.2124V106.529H88.1901C87.9918 106.262 87.7397 106.074 87.4316 105.963C87.1235 105.853 86.791 105.797 86.4332 105.797C86.0376 105.797 85.6838 105.879 85.3717 106.043C85.0595 106.206 84.7952 106.425 84.5786 106.698C84.3621 106.972 84.1943 107.286 84.0764 107.64C83.9584 107.994 83.8994 108.365 83.8994 108.752C83.8994 109.171 83.9635 109.555 84.0936 109.905C84.2228 110.255 84.4078 110.558 84.6467 110.812C84.8867 111.067 85.1734 111.264 85.5079 111.406C85.8424 111.546 86.2156 111.617 86.6263 111.617C86.8165 111.617 87.0005 111.591 87.1794 111.537C87.3584 111.484 87.5221 111.415 87.6705 111.332C87.819 111.248 87.9481 111.155 88.0589 111.052C88.1687 110.949 88.2582 110.849 88.3273 110.75H88.3497V111.48H89.9246V102.853V102.854ZM97.2502 108.708C97.2502 108.267 97.1699 107.868 97.0103 107.51C96.8506 107.152 96.632 106.846 96.3545 106.591C96.0769 106.335 95.7495 106.14 95.3733 106.003C94.9971 105.866 94.5955 105.797 94.1695 105.797C93.7435 105.797 93.3419 105.866 92.9657 106.003C92.5895 106.14 92.2621 106.335 91.9845 106.591C91.707 106.846 91.4884 107.152 91.3287 107.51C91.1691 107.868 91.0888 108.267 91.0888 108.708C91.0888 109.15 91.1691 109.549 91.3287 109.906C91.4884 110.264 91.707 110.57 91.9845 110.825C92.2621 111.08 92.5895 111.276 92.9657 111.413C93.3419 111.55 93.7435 111.618 94.1695 111.618C94.5955 111.618 94.9971 111.55 95.3733 111.413C95.7495 111.276 96.0769 111.08 96.3545 110.825C96.632 110.57 96.8506 110.264 97.0103 109.906C97.1699 109.548 97.2502 109.15 97.2502 108.708ZM103.596 108.423C103.596 108.05 103.569 107.704 103.515 107.385C103.462 107.065 103.361 106.788 103.213 106.552C103.065 106.316 102.857 106.132 102.591 105.999C102.325 105.866 101.975 105.8 101.541 105.8C101.335 105.8 101.145 105.826 100.97 105.88C100.796 105.933 100.64 106.002 100.503 106.085C100.365 106.169 100.248 106.264 100.149 106.371C100.05 106.478 99.974 106.584 99.9212 106.69H99.8988V105.937H98.2558V111.483H99.9679V108.722C99.9679 108.539 99.9791 108.364 100.003 108.197C100.025 108.029 100.073 107.88 100.145 107.747C100.217 107.613 100.322 107.507 100.459 107.427C100.596 107.348 100.774 107.307 100.996 107.307C101.218 107.307 101.385 107.353 101.503 107.445C101.621 107.536 101.709 107.654 101.766 107.798C101.822 107.943 101.857 108.1 101.868 108.272C101.879 108.444 101.885 108.609 101.885 108.768V111.484H103.598V108.426L103.596 108.423ZM115.417 103.402H113.637V106.415H110.179V103.402H108.399V111.481H110.179V107.99H113.637V111.481H115.417V103.402ZM121.899 108.663C121.899 108.199 121.86 107.789 121.785 107.435C121.709 107.082 121.574 106.783 121.38 106.54C121.186 106.297 120.928 106.112 120.605 105.987C120.281 105.862 119.868 105.798 119.366 105.798C118.91 105.798 118.468 105.873 118.042 106.021C117.616 106.17 117.243 106.392 116.924 106.689L117.837 107.625C118.02 107.419 118.226 107.258 118.459 107.14C118.691 107.022 118.948 106.963 119.23 106.963C119.527 106.963 119.783 107.052 120.001 107.231C120.217 107.41 120.326 107.652 120.326 107.956C120.09 107.956 119.833 107.96 119.555 107.967C119.278 107.975 119 107.998 118.723 108.035C118.445 108.074 118.177 108.132 117.918 108.212C117.66 108.293 117.429 108.404 117.228 108.549C117.027 108.693 116.867 108.876 116.749 109.097C116.631 109.317 116.572 109.588 116.572 109.907C116.572 110.189 116.625 110.436 116.732 110.649C116.839 110.863 116.983 111.041 117.166 111.186C117.349 111.331 117.559 111.439 117.799 111.512C118.039 111.584 118.288 111.62 118.547 111.62C118.897 111.62 119.229 111.555 119.545 111.426C119.86 111.297 120.114 111.083 120.304 110.787H120.326V111.483H121.901V108.665L121.899 108.663ZM124.706 102.854H122.994V111.481H124.706V102.854ZM127.673 102.854H125.961V111.481H127.673V102.854ZM129.134 95.6942C128.586 94.7405 128.058 93.7746 127.483 92.8382C124.094 87.3183 120.044 82.3058 115.691 77.5292C115.291 77.0906 114.884 77.0944 114.469 77.5404C108.853 83.5615 103.117 89.4626 97.2614 95.2509C96.5446 95.9595 95.8491 96.6906 95.1405 97.4145C95.3235 97.4379 95.4404 97.2935 95.5777 97.2152C102.226 93.4309 108.787 89.4982 115.253 85.4089C115.514 85.2442 115.691 85.2137 115.963 85.4048C119.673 87.9934 123.317 90.6664 126.725 93.6475C127.533 94.3541 128.317 95.0872 129.128 95.8233C129.132 95.7552 129.147 95.7176 129.134 95.6952V95.6942ZM130.406 93.2245C130.077 92.158 129.768 91.0843 129.417 90.0249C127.847 85.297 125.82 80.7563 123.72 76.2481C123.59 75.9685 123.559 75.7346 123.662 75.4337C124.273 73.6371 124.747 71.8019 125.061 69.9291C125.335 68.2952 125.48 66.6501 125.37 64.941C125.345 64.9847 125.323 65.0305 125.293 65.0701C122.875 68.2535 120.31 71.319 117.766 74.4017C117.257 75.0189 117.249 75.027 117.766 75.6004C122.662 81.0369 126.841 86.9736 130.228 93.4635C130.28 93.5621 130.286 93.7359 130.471 93.7258C130.525 93.5448 130.457 93.3862 130.407 93.2245H130.406ZM139.815 106.688H136.654V108.331H138.103V109.644C137.935 109.735 137.711 109.825 137.43 109.912C137.148 110 136.813 110.043 136.425 110.043C136.037 110.043 135.7 109.979 135.392 109.849C135.084 109.72 134.82 109.539 134.599 109.307C134.378 109.075 134.209 108.801 134.092 108.486C133.974 108.171 133.915 107.822 133.915 107.442C133.915 107.061 133.974 106.723 134.092 106.403C134.21 106.084 134.378 105.809 134.599 105.576C134.82 105.344 135.084 105.163 135.392 105.034C135.7 104.905 136.045 104.84 136.425 104.84C136.882 104.84 137.262 104.905 137.566 105.034C137.87 105.163 138.144 105.353 138.387 105.604L139.643 104.235C139.232 103.854 138.754 103.586 138.21 103.431C137.666 103.275 137.071 103.197 136.425 103.197C135.779 103.197 135.211 103.295 134.679 103.494C134.147 103.692 133.687 103.974 133.299 104.344C132.91 104.713 132.608 105.159 132.392 105.685C132.175 106.209 132.066 106.796 132.066 107.442C132.066 108.087 132.175 108.674 132.392 109.198C132.608 109.723 132.911 110.17 133.299 110.54C133.687 110.909 134.147 111.192 134.679 111.39C135.212 111.587 135.794 111.686 136.425 111.686C137.019 111.686 137.6 111.625 138.171 111.503C138.741 111.381 139.289 111.184 139.814 110.91V106.687L139.815 106.688ZM145.064 105.855C144.981 105.833 144.889 105.818 144.791 105.81C144.692 105.803 144.592 105.798 144.494 105.798C144.114 105.798 143.797 105.884 143.546 106.056C143.295 106.228 143.079 106.484 142.896 106.826H142.873V105.937H141.161V111.483H142.873V109.167C142.873 108.893 142.888 108.642 142.919 108.414C142.949 108.186 143.015 107.99 143.118 107.826C143.221 107.662 143.367 107.535 143.557 107.444C143.748 107.352 144.006 107.306 144.333 107.306C144.462 107.306 144.586 107.315 144.704 107.335C144.822 107.354 144.942 107.383 145.064 107.42V105.856V105.855ZM151.557 108.708C151.557 108.267 151.477 107.868 151.317 107.51C151.158 107.152 150.939 106.846 150.661 106.591C150.384 106.335 150.056 106.14 149.68 106.003C149.304 105.866 148.902 105.797 148.476 105.797C148.05 105.797 147.649 105.866 147.273 106.003C146.896 106.14 146.569 106.335 146.291 106.591C146.014 106.846 145.795 107.152 145.636 107.51C145.476 107.868 145.396 108.267 145.396 108.708C145.396 109.15 145.476 109.549 145.636 109.906C145.795 110.264 146.014 110.57 146.291 110.825C146.569 111.08 146.896 111.276 147.273 111.413C147.649 111.55 148.05 111.618 148.476 111.618C148.902 111.618 149.304 111.55 149.68 111.413C150.056 111.276 150.384 111.08 150.661 110.825C150.939 110.57 151.158 110.264 151.317 109.906C151.477 109.548 151.557 109.15 151.557 108.708ZM157.902 105.936H156.189V108.697C156.189 108.88 156.178 109.055 156.155 109.222C156.132 109.39 156.085 109.54 156.012 109.672C155.94 109.805 155.836 109.912 155.698 109.992C155.561 110.072 155.382 110.111 155.161 110.111C154.941 110.111 154.771 110.066 154.654 109.974C154.536 109.883 154.449 109.765 154.392 109.62C154.335 109.476 154.3 109.318 154.289 109.147C154.278 108.975 154.272 108.81 154.272 108.65V105.935H152.56V108.993C152.56 109.366 152.584 109.712 152.634 110.031C152.684 110.35 152.782 110.628 152.931 110.864C153.079 111.1 153.289 111.285 153.558 111.417C153.827 111.55 154.18 111.616 154.613 111.616C154.819 111.616 155.009 111.59 155.184 111.536C155.359 111.483 155.514 111.414 155.651 111.331C155.789 111.247 155.905 111.152 155.999 111.045C156.094 110.938 156.172 110.832 156.233 110.726H156.255V111.479H157.898V105.933L157.902 105.936ZM165.296 108.663C165.296 108.245 165.231 107.86 165.102 107.51C164.973 107.16 164.788 106.857 164.549 106.603C164.309 106.348 164.022 106.15 163.688 106.009C163.353 105.869 162.98 105.797 162.569 105.797C162.371 105.797 162.185 105.824 162.01 105.878C161.835 105.931 161.674 106 161.525 106.083C161.377 106.167 161.248 106.26 161.137 106.363C161.026 106.465 160.938 106.566 160.868 106.665H160.846V105.935H159.271V114.083H160.983V110.887H161.006C161.203 111.154 161.456 111.342 161.764 111.453C162.072 111.562 162.405 111.618 162.763 111.618C163.158 111.618 163.512 111.537 163.824 111.373C164.136 111.21 164.401 110.991 164.617 110.717C164.834 110.444 165.001 110.13 165.119 109.776C165.237 109.422 165.296 109.051 165.296 108.664V108.663ZM162.216 107.304C161.781 107.304 161.445 107.433 161.206 107.693C160.966 107.951 160.846 108.291 160.846 108.708C160.846 109.126 160.966 109.466 161.206 109.724C161.446 109.982 161.782 110.113 162.216 110.113C162.649 110.113 162.986 109.983 163.225 109.724C163.465 109.466 163.585 109.127 163.585 108.708C163.585 108.289 163.465 107.952 163.225 107.693C162.985 107.434 162.649 107.304 162.216 107.304ZM63.6664 108.298C63.522 108.237 63.3655 108.195 63.1987 108.173C63.031 108.15 62.8754 108.138 62.731 108.138H61.3849V109.975H62.9821C63.1194 109.975 63.2577 109.96 63.399 109.929C63.5393 109.899 63.6674 109.846 63.7813 109.77C63.8952 109.694 63.9887 109.595 64.0609 109.473C64.1331 109.351 64.1697 109.204 64.1697 109.028C64.1697 108.838 64.1219 108.684 64.0274 108.565C63.9318 108.447 63.8118 108.358 63.6674 108.297L63.6664 108.298Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_130_9327\">\\n<rect width=\"200\" height=\"142.127\" fill=\"white\" transform=\"translate(12 41)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11m21b1\",\"data-framer-name\":\"Frame 1707479547\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"lPwQYFGrJ\",svg:'<svg width=\"224\" height=\"224\" viewBox=\"0 0 224 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_130_9329)\">\\n<path d=\"M59.1796 109.595C62.418 109.595 63.3987 112.558 63.3987 114.191H54.6712C54.6712 111.886 56.2728 109.595 59.1866 109.595H59.1796ZM68.4786 123.31C67.5544 123.621 66.5948 123.904 65.6353 124.102C64.5064 124.328 63.3423 124.455 62.157 124.455C58.3259 124.455 55.3273 123.176 54.8405 120.136H71.1809C71.3008 119.549 71.5195 118.135 71.5195 116.651C71.5195 109.737 68.0835 103.396 59.3278 103.396C50.572 103.396 46.2893 110.076 46.2893 117.57C46.2893 126.202 52.3147 131.143 60.7247 131.143C62.8696 131.143 64.4359 130.952 65.727 130.691C67.0676 130.415 68.5492 129.977 69.798 129.411L68.4786 123.31Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M186.036 109.595C189.274 109.595 190.255 112.558 190.255 114.191H181.528C181.528 111.886 183.129 109.595 186.043 109.595H186.036ZM195.342 123.31C194.425 123.621 193.458 123.904 192.499 124.102C191.37 124.328 190.206 124.455 189.02 124.455C185.189 124.455 182.191 123.176 181.704 120.136H198.044C198.164 119.549 198.376 118.135 198.376 116.651C198.376 109.737 194.94 103.396 186.184 103.396C177.428 103.396 173.146 110.076 173.146 117.57C173.146 126.202 179.171 131.143 187.581 131.143C189.726 131.143 191.285 130.952 192.583 130.691C193.924 130.415 195.406 129.977 196.654 129.411L195.335 123.31H195.342Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M75.5199 94.5938V130.57H84.3815V94.5938H75.5199Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M102.175 124.554C99.2967 124.554 97.4059 121.705 97.4059 117.294C97.4059 113.78 98.6758 110.033 102.204 110.033C105.731 110.033 106.825 113.922 106.825 117.258C106.825 121.691 104.983 124.561 102.175 124.561V124.554ZM102.055 131.143C108.97 131.143 115.969 126.781 115.969 117.032C115.969 111.228 112.54 103.438 102.493 103.438C92.4459 103.438 88.3749 110.988 88.3749 117.477C88.3749 125.614 94.0122 131.143 102.062 131.143H102.055Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M119.821 104.024V130.577H128.683V104.024H119.821Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M119.821 94.6006V101.493H128.683V94.6006H119.821Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M135.703 96.7991V104.017H132.295V110.599H135.703V121.479C135.703 127.459 138.433 131.121 144.663 131.121C145.834 131.121 147.154 131.001 148.367 130.817C149.489 130.648 150.491 130.443 150.928 130.301C150.928 130.301 150.865 123.366 150.865 123.338C150.583 123.437 148.572 123.776 147.838 123.776C147.104 123.776 146.067 123.684 145.312 122.907C144.769 122.355 144.388 121.45 144.388 119.987V110.592H150.117V104.01H144.388V95.8164L135.717 96.7991H135.703Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M156.206 96.7991V104.017H152.798V110.599H156.206V121.479C156.206 127.459 158.936 131.121 165.166 131.121C166.337 131.121 167.657 131.001 168.87 130.817C169.999 130.648 170.994 130.443 171.431 130.301C171.431 130.301 171.368 123.366 171.368 123.338C171.086 123.437 169.075 123.776 168.341 123.776C167.607 123.776 166.57 123.684 165.815 122.907C165.272 122.355 164.891 121.45 164.891 119.987V110.592H170.62V104.01H164.891V95.8164L156.213 96.7991H156.206Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M202.193 126.237C202.193 123.522 204.387 121.323 207.096 121.323C209.806 121.323 212 123.522 212 126.237C212 128.951 209.806 131.15 207.096 131.15C204.387 131.15 202.193 128.951 202.193 126.237Z\" fill=\"#99CA49\"/>\\n<path d=\"M12 130.613H22.0258C22.7031 130.613 23.5286 130.599 24.1706 130.563C37.8934 129.856 43.6083 121.712 43.6083 112.317C43.6083 100.575 35.7062 94 22.0681 94C18.5686 94 15.4572 94.1202 12 94.41V130.613ZM24.8197 123.444C24.4528 123.473 23.8954 123.487 23.5427 123.487H20.7346V101.373C21.7083 101.289 22.943 101.225 23.7684 101.225C28.9189 101.225 34.408 104.576 34.408 112.31C34.408 120.044 29.2505 123.07 24.8197 123.437V123.444Z\" fill=\"#1F1F1F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_130_9329\">\\n<rect width=\"200\" height=\"37.1501\" fill=\"white\" transform=\"translate(12 94)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AgzrA.framer-wl3h5y, .framer-AgzrA .framer-wl3h5y { display: block; }\",\".framer-AgzrA.framer-eohqw0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px; position: relative; width: 1440px; }\",\".framer-AgzrA .framer-ftebd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AgzrA .framer-4nhua7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64%; }\",\".framer-AgzrA .framer-1s17kht-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AgzrA .framer-g48gfp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AgzrA .framer-cw0her { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-width: 990px; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 78%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AgzrA .framer-ajjr3g, .framer-AgzrA .framer-1ir5i39 { flex: none; height: 219px; position: relative; width: 218px; }\",\".framer-AgzrA .framer-1loectb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 218px); position: relative; width: 218px; }\",\".framer-AgzrA .framer-11m21b1 { flex: none; height: 216px; position: relative; width: 218px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AgzrA.framer-eohqw0, .framer-AgzrA .framer-ftebd9, .framer-AgzrA .framer-4nhua7 { gap: 0px; } .framer-AgzrA.framer-eohqw0 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-AgzrA.framer-eohqw0 > :first-child, .framer-AgzrA .framer-ftebd9 > :first-child, .framer-AgzrA .framer-4nhua7 > :first-child { margin-top: 0px; } .framer-AgzrA.framer-eohqw0 > :last-child, .framer-AgzrA .framer-ftebd9 > :last-child, .framer-AgzrA .framer-4nhua7 > :last-child { margin-bottom: 0px; } .framer-AgzrA .framer-ftebd9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AgzrA .framer-4nhua7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-AgzrA.framer-v-6y9r3y.framer-eohqw0 { width: 1024px; }\",\".framer-AgzrA.framer-v-6y9r3y .framer-4nhua7 { width: 88%; }\",\".framer-AgzrA.framer-v-6y9r3y .framer-cw0her { min-width: unset; width: 88%; }\",\".framer-AgzrA.framer-v-6y9r3y .framer-ajjr3g, .framer-AgzrA.framer-v-6y9r3y .framer-11m21b1 { height: 157px; width: 155px; }\",\".framer-AgzrA.framer-v-6y9r3y .framer-1ir5i39 { height: 157px; width: 157px; }\",\".framer-AgzrA.framer-v-a0n5mm.framer-eohqw0 { padding: 54px 0px 0px 0px; width: 351px; }\",\".framer-AgzrA.framer-v-a0n5mm .framer-ftebd9 { gap: 24px; padding: 0px 0px 24px 0px; }\",\".framer-AgzrA.framer-v-a0n5mm .framer-4nhua7 { width: 90%; }\",\".framer-AgzrA.framer-v-a0n5mm .framer-cw0her { flex-direction: column; min-width: unset; width: 90%; }\",\".framer-AgzrA.framer-v-a0n5mm .framer-ajjr3g, .framer-AgzrA.framer-v-a0n5mm .framer-1ir5i39 { height: 168px; width: 167px; }\",\".framer-AgzrA.framer-v-a0n5mm .framer-11m21b1 { height: 165px; width: 167px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AgzrA.framer-v-a0n5mm .framer-ftebd9, .framer-AgzrA.framer-v-a0n5mm .framer-cw0her { gap: 0px; } .framer-AgzrA.framer-v-a0n5mm .framer-ftebd9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AgzrA.framer-v-a0n5mm .framer-ftebd9 > :first-child { margin-top: 0px; } .framer-AgzrA.framer-v-a0n5mm .framer-ftebd9 > :last-child { margin-bottom: 0px; } .framer-AgzrA.framer-v-a0n5mm .framer-cw0her > *, .framer-AgzrA.framer-v-a0n5mm .framer-cw0her > :first-child, .framer-AgzrA.framer-v-a0n5mm .framer-cw0her > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 603\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EUjHdYZNr\":{\"layout\":[\"fixed\",\"auto\"]},\"gpdSCgOI4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqoSvWsRDa=withCSS(Component,css,\"framer-AgzrA\");export default FramerqoSvWsRDa;FramerqoSvWsRDa.displayName=\"Awards\";FramerqoSvWsRDa.defaultProps={height:603,width:1440};addPropertyControls(FramerqoSvWsRDa,{variant:{options:[\"S5mn2tfYU\",\"EUjHdYZNr\",\"gpdSCgOI4\"],optionTitles:[\"Desktop\",\"tab\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqoSvWsRDa,[{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\"}]},...BadgeFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqoSvWsRDa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"603\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EUjHdYZNr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gpdSCgOI4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qRmMGjT9QuubTc3sL0W9/tyKtgI6f46iVchcXH1t7/bjqF1t6Hd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/G3ywNsrai8gUIPoLriym/Scyz862LHB1Tmv7hBFFv/BUFU3eB6_.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/bIEBUFXVFQ20lyigjYJY/wdyeyrDAIszhJtl6cMqM/JAW1iXkPv.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/lEOCM4qbuHKnXBMcx1Rr/T1EoF0cXT6eG6bspHQwY/rYEMUuCfo.js\";import People from\"https://framerusercontent.com/modules/8GoWz2IzNHdVHxz4Xm87/nBIZgvWq8fLYoQwMhZs7/FjLeSfywE.js\";const PeopleFonts=getFonts(People);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"wy79ZQUg8\",\"a2xSGIrVq\",\"QR7bO3QmG\",\"eU9HcPWKs\"];const serializationHash=\"framer-gMClZ\";const variantClassNames={a2xSGIrVq:\"framer-v-19yxk83\",eU9HcPWKs:\"framer-v-6m4148\",QR7bO3QmG:\"framer-v-fxv8ro\",wy79ZQUg8:\"framer-v-19ju955\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transformTemplate1=(_,t)=>`translateX(-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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"wy79ZQUg8\",Mobile:\"a2xSGIrVq\",Russ:\"eU9HcPWKs\",Tab:\"QR7bO3QmG\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"wy79ZQUg8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wy79ZQUg8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"QR7bO3QmG\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"eU9HcPWKs\")return true;return false;};const isDisplayed2=()=>{if([\"a2xSGIrVq\",\"QR7bO3QmG\",\"eU9HcPWKs\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"a2xSGIrVq\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19ju955\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wy79ZQUg8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'linear-gradient(180deg, var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245)) /* {\"name\":\"White\"} */ 26%, var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 250, 240)) /* {\"name\":\"White\"} */ 100%)',...style},...addPropertyOverrides({a2xSGIrVq:{\"data-framer-name\":\"Mobile\"},eU9HcPWKs:{\"data-framer-name\":\"Russ\"},QR7bO3QmG:{\"data-framer-name\":\"Tab\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e9wr3r\",layoutDependency:layoutDependency,layoutId:\"tmkA8GI5B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Solve For\"})}),className:\"framer-u8fjv6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"idov_klOE\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a2xSGIrVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Say goodbye to\"})})},eU9HcPWKs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"left\"},children:\"We Solve For\"})})},QR7bO3QmG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-17u41zw\",\"data-styles-preset\":\"BUFU3eB6_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Say goodbye to\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxy3je-container\",\"data-framer-name\":\"Slideshow Tab\",layoutDependency:layoutDependency,layoutId:\"iAlmuJjWT-container\",name:\"Slideshow Tab\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:16,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"iAlmuJjWT\",intervalControl:2,itemAmount:1,layoutId:\"iAlmuJjWT\",name:\"Slideshow Tab\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15m1uqw\",\"data-framer-name\":\"Breakdowns in Communication\",layoutDependency:layoutDependency,layoutId:\"aQjc53goS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-446krb\",layoutDependency:layoutDependency,layoutId:\"Lsm_73nDu\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xcg7zx\",\"data-border\":true,\"data-framer-name\":\"Layer_1\",layoutDependency:layoutDependency,layoutId:\"n5cQ00upr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11mr7nx\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tPQrgcWMs\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 219 136\"><path d=\"M 2 68.773 C 25.386 68.808 60.079 68.841 83.463 68.718 C 90.238 68.567 97.027 69.325 103.707 70.456 C 108.065 71.194 112.434 72.223 116.338 74.292 C 120.241 76.362 123.67 79.578 125.26 83.688 C 125.8 85.086 126.05 86.586 125.993 88.083 C 125.684 95.992 118.259 103.3 109.206 101.657 C 100.751 100.416 95.744 90.49 97.247 82.106 C 98.751 73.721 104.962 66.952 111.66 61.661 C 117.688 56.899 124.545 52.83 132.141 51.629 C 140.112 50.366 148.566 52.479 154.995 57.341 C 161.425 62.203 165.743 69.747 166.326 77.56 C 169.914 99.177 155.315 121.346 135.154 130.09 C 131.056 131.867 126.705 133.188 122.239 133.387 C 109.116 133.968 97.998 124.221 90.1 114.304 C 82.957 105.337 82.612 92.155 87.574 81.829 C 92.536 71.502 101.354 63.648 109.283 55.361 C 116.568 47.748 123.418 39.262 126.632 28.653 C 128.139 23.102 129.655 17.256 128.267 11.673 C 126.88 6.091 121.497 1.046 115.833 2.154 C 110.771 3.144 107.803 8.208 105.009 12.528 C 100.479 19.53 94.083 25.884 85.292 27.327 C 75.146 28.992 64.491 30.029 56.932 36.978 C 49.373 43.925 44.93 54.122 44.995 64.37 C 45.009 66.483 45.294 68.6 46.023 70.583 C 48.361 76.951 53.521 80.47 56.66 81.13 C 62.332 82.32 68.503 79.784 70.819 74.491 C 73.134 69.197 72.074 62.986 69.77 57.686 C 68.452 54.654 66.564 51.623 63.551 50.24 C 60.538 48.86 56.248 49.922 55.21 53.06 C 54.158 56.239 57.068 59.667 60.371 60.278 C 63.673 60.889 67.012 59.452 69.863 57.682 C 81.065 50.729 88.268 37.791 88.256 24.639 C 88.252 20.46 87.33 15.864 84.011 13.311 C 80.585 10.672 75.359 11.169 71.969 13.853 C 68.58 16.539 66.915 20.981 66.854 25.295 C 66.793 29.611 68.166 33.829 69.956 37.758 C 73.648 45.864 79.274 53.194 86.616 58.266 C 93.959 63.337 103.064 66.041 111.945 65.071 C 115.768 64.653 119.495 63.579 123.101 62.248 C 136.532 57.288 148.999 48.102 154.43 35.655 C 155.667 32.079 156.917 28.456 157.2 24.684 C 157.484 20.912 156.7 16.914 154.266 14.014 C 151.868 11.157 148.177 9.692 144.522 8.918 C 130.894 6.032 116.306 11.632 106.448 21.442 C 102.972 24.9 99.919 29.022 98.893 33.809 C 97.866 38.596 99.265 44.124 103.248 46.989 C 108.389 50.686 115.561 48.903 121.404 46.447 C 125.662 44.656 129.923 42.488 132.916 38.977 C 135.909 35.468 137.377 30.328 135.454 26.139 C 132.874 20.523 124.115 19.131 119.912 23.671 C 115.555 28.376 117.388 36.625 122.444 40.572 C 127.501 44.52 134.575 44.897 140.857 43.552 C 147.137 42.207 152.982 39.362 159.092 37.391 C 161.748 36.534 164.543 35.835 167.313 36.183 C 170.084 36.531 172.846 38.125 173.879 40.711 C 175.394 44.505 172.709 48.781 169.333 51.098 C 167.1 52.632 164.35 53.684 161.691 53.152 C 159.033 52.62 156.688 50.085 157.096 47.415 C 157.573 44.289 161.23 42.696 164.403 42.61 C 172.338 42.396 179.923 48.734 180.541 56.824 C 182.565 69.462 179.255 82.863 171.573 93.121 C 168.194 97.634 163.892 101.624 158.645 103.711 C 153.397 105.798 147.119 105.761 142.351 102.741 C 137.582 99.719 134.839 93.447 136.715 88.136 C 137.184 86.806 137.98 85.506 139.243 84.874 C 140.851 84.069 142.847 84.544 144.368 85.504 C 147.665 87.588 149.285 91.725 149.031 95.607 C 148.777 99.489 146.887 103.112 144.445 106.148 C 136.451 116.085 121.861 120.146 109.855 115.777 C 105.049 114.028 100.199 110.175 100.321 105.076 C 100.43 100.573 104.759 96.915 109.264 96.559 C 113.768 96.204 118.149 98.558 121.266 101.82 C 123.309 103.958 124.949 106.562 125.518 109.46 C 126.923 116.608 121.282 123.667 114.454 126.265 C 107.626 128.863 99.945 129.34 93.095 128.283 C 86.561 127.276 79.696 124.464 75.083 119.744 C 69.741 114.277 68.927 105.633 70.917 98.266 C 73.002 90.551 78.243 82.928 86.004 80.914 C 91.556 79.472 96.374 79.455 101.334 80.641 C 104 81.279 106.396 82.734 107.494 85.057 C 108.631 87.46 107.457 90.349 105.778 92.412 C 102.477 96.469 97.368 98.737 92.203 99.623 C 87.038 100.508 81.749 100.151 77.67 99.332 C 70.442 98.158 62.377 96.463 58.359 90.362 C 54.426 84.389 56.077 76.034 60.495 70.408 C 64.915 64.783 71.524 61.35 78.08 58.458 C 82.518 56.5 87.058 54.703 91.805 53.7 C 106.481 50.592 122.649 53.575 134.528 60.718 C 141.714 65.038 148.782 72.521 151.78 75.791 C 153.642 77.819 155.537 79.877 157.892 81.31 C 160.247 82.744 163.167 83.492 165.804 82.683 C 167.024 82.31 168.129 81.622 169.12 80.821 C 172.915 77.75 175.128 72.704 174.417 67.885 C 174.155 66.116 173.485 64.345 172.194 63.102 C 169.857 60.852 165.958 60.891 163.118 62.466 C 160.278 64.04 158.324 66.825 156.797 69.684 C 155.258 72.564 154.042 75.618 153.171 79.031 C 151.1 87.776 145.917 95.756 138.76 101.223 C 135.682 103.575 132.273 105.46 128.821 107.226 C 124.119 109.629 118.281 111.787 113.81 108.981 C 110.138 106.678 108.954 101.633 110.073 97.457 C 111.191 93.28 114.139 89.84 117.286 86.865 C 124.868 79.69 134.173 74.279 144.258 71.528 C 154.753 68.665 166.507 68.704 177.387 68.761 C 195.084 68.851 217 68.765 217 68.765\" fill=\"transparent\" stroke=\"rgb(31,31,31)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11891795588,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gdl4vu-container\",layoutDependency:layoutDependency,layoutId:\"pRI09OVvu-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"pRI09OVvu\",layoutId:\"pRI09OVvu\",style:{height:\"100%\",width:\"100%\"},variant:\"I32:8041;95:12933\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qo01er-container\",layoutDependency:layoutDependency,layoutId:\"cUe877E6o-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"cUe877E6o\",layoutId:\"cUe877E6o\",style:{height:\"100%\",width:\"100%\"},variant:\"OxulWU4Ha\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nhc7mq\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"Egrx3gZn6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q5hzec\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"lEX6VM9xQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gt355s\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Y3kDDwEbD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-parfs8\",\"data-framer-name\":\"HEADER\",layoutDependency:layoutDependency,layoutId:\"r7bBMQFuK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Breakdowns in communication\"})}),className:\"framer-nc3us9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WOEgwNm3X\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3z6cu\",layoutDependency:layoutDependency,layoutId:\"BxFhvVyYa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople helps break down communication barriers, fostering a culture of openness, transparency, and collective success.\"})}),className:\"framer-1ynwnlj\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O7ScKjMs0\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e02111\",\"data-framer-name\":\"Onboarding\",layoutDependency:layoutDependency,layoutId:\"jQPLvGnpE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1odxrx\",layoutDependency:layoutDependency,layoutId:\"bPG_Ztpjn\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-efc5c8\",\"data-border\":true,\"data-framer-name\":\"Layer_1\",layoutDependency:layoutDependency,layoutId:\"YJyY2K1e4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ou5ep\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:172,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"jnLlJByqT\",svg:'<svg width=\"211\" height=\"172\" viewBox=\"0 0 211 172\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M208.353 24.384C208.549 24.1889 208.549 23.8723 208.354 23.6769L205.175 20.492C204.98 20.2965 204.663 20.2962 204.468 20.4913C204.272 20.6864 204.272 21.003 204.467 21.1984L207.293 24.0294L204.462 26.8553C204.266 27.0503 204.266 27.3669 204.461 27.5624C204.656 27.7578 204.973 27.7581 205.168 27.563L208.353 24.384ZM175.383 34.0191L174.883 34.0196L175.383 34.0191ZM175.396 46.5057L174.896 46.5062L175.396 46.5057ZM142.79 66.5137L143.29 66.5132L142.79 66.5137ZM132.793 89.0071L132.793 88.5071L132.793 89.0071ZM110.197 99.0046L109.697 99.0051L110.197 99.0046ZM120.206 88.9948L120.207 88.4948L120.206 88.9948ZM100.199 121.499L100.199 121.999L100.199 121.499ZM67.6067 153.99L67.6062 154.49L67.6067 153.99ZM44.9995 154.468L67.6062 154.49L67.6072 153.49L45.0005 153.468L44.9995 154.468ZM78.1165 143.98L78.1042 131.496L77.1042 131.497L77.1165 143.981L78.1165 143.98ZM87.6135 121.986L100.199 121.999L100.2 120.999L87.6145 120.986L87.6135 121.986ZM110.709 111.488L110.697 99.0041L109.697 99.0051L109.709 111.489L110.709 111.488ZM120.206 89.4948L132.792 89.5071L132.793 88.5071L120.207 88.4948L120.206 89.4948ZM143.303 78.9962L143.29 66.5132L142.29 66.5142L142.303 78.9972L143.303 78.9962ZM152.799 57.0032L165.386 57.0156L165.386 56.0156L152.8 56.0032L152.799 57.0032ZM175.896 46.5052L175.883 34.0186L174.883 34.0196L174.896 46.5062L175.896 46.5052ZM185.392 24.5092L208 24.5301L208 23.5301L185.393 23.5092L185.392 24.5092ZM175.883 34.0186C175.878 28.7648 180.138 24.5044 185.392 24.5092L185.393 23.5092C179.586 23.5039 174.878 28.2128 174.883 34.0196L175.883 34.0186ZM165.386 57.0156C171.193 57.0213 175.902 52.3123 175.896 46.5052L174.896 46.5062C174.901 51.7602 170.64 56.0207 165.386 56.0156L165.386 57.0156ZM143.29 66.5132C143.284 61.2589 147.545 56.9981 152.799 57.0032L152.8 56.0032C146.993 55.9976 142.284 60.7069 142.29 66.5142L143.29 66.5132ZM132.792 89.5071C138.6 89.5128 143.309 84.8034 143.303 78.9962L142.303 78.9972C142.308 84.2514 138.048 88.5123 132.793 88.5071L132.792 89.5071ZM110.697 99.0041C110.691 93.7501 114.952 89.4896 120.206 89.4948L120.207 88.4948C114.4 88.4891 109.691 93.1981 109.697 99.0051L110.697 99.0041ZM100.199 121.999C106.006 122.004 110.715 117.295 110.709 111.488L109.709 111.489C109.714 116.743 105.454 121.004 100.2 120.999L100.199 121.999ZM78.1042 131.496C78.099 126.242 82.3595 121.981 87.6135 121.986L87.6145 120.986C81.8075 120.981 77.0985 125.69 77.1042 131.497L78.1042 131.496ZM67.6062 154.49C73.4133 154.496 78.1223 149.787 78.1165 143.98L77.1165 143.981C77.1217 149.235 72.8612 153.495 67.6072 153.49L67.6062 154.49Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M74.9588 90.0412L79.0412 90.0412L79.0412 85.9588L74.9588 85.9588L74.9588 90.0412ZM114.5 51C114.5 50.7239 114.276 50.5 114 50.5L109.5 50.5C109.224 50.5 109 50.7239 109 51C109 51.2761 109.224 51.5 109.5 51.5L113.5 51.5L113.5 55.5C113.5 55.7761 113.724 56 114 56C114.276 56 114.5 55.7761 114.5 55.5L114.5 51ZM77.3536 88.3536L114.354 51.3536L113.646 50.6464L76.6464 87.6464L77.3536 88.3536Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sw5p8j-container\",layoutDependency:layoutDependency,layoutId:\"nDNF_59Ip-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"nDNF_59Ip\",layoutId:\"nDNF_59Ip\",style:{height:\"100%\",width:\"100%\"},variant:\"qjRoLbcu8\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-166zg6g\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"XFUv3Sbi9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5b6l85\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"Q9euUFayl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x6itgj\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"YwI7yECtF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ur4rab\",\"data-framer-name\":\"HEADER\",layoutDependency:layoutDependency,layoutId:\"PY94_V1to\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Elongated onboarding\"})}),className:\"framer-zywmwb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C2bfxRrnl\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iik129\",layoutDependency:layoutDependency,layoutId:\"SiNFo47Ho\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's personalized approach accelerates the onboarding journey, equipping new employees with the insights and tools they need to make a meaningful impact from day one.\"})}),className:\"framer-1hxrtvg\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ll0kUNCAL\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wt6rfd\",\"data-framer-name\":\"Retention Challenge\",layoutDependency:layoutDependency,layoutId:\"TUW9NwqEo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2ni2l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"depDVJ9SF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e56nx2\",\"data-framer-name\":\"Background\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ukXfQuJVT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 143\"><path d=\"M 90.138 132.222 C 90.228 132.047 90.158 131.834 89.983 131.745 L 87.135 130.301 C 86.96 130.213 86.746 130.282 86.658 130.456 C 86.569 130.63 86.638 130.844 86.813 130.933 L 89.344 132.216 L 88.057 134.74 C 87.968 134.914 88.038 135.127 88.213 135.216 C 88.387 135.305 88.601 135.236 88.69 135.061 Z M 89.712 131.724 C 83.462 133.755 76.926 134.784 70.291 134.784 L 70.291 135.492 C 77 135.492 83.61 134.451 89.932 132.397 Z M 70.291 134.784 C 63.677 134.784 57.162 133.76 50.93 131.744 L 50.711 132.417 C 57.015 134.457 63.603 135.492 70.291 135.492 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 33.041 21.212 L 32.831 20.927 L 32.831 20.927 Z M 51.01 12.328 C 51.098 12.154 51.029 11.941 50.854 11.852 L 48.005 10.411 C 47.83 10.322 47.616 10.392 47.527 10.566 C 47.439 10.74 47.508 10.953 47.683 11.042 L 50.216 12.323 L 48.93 14.849 C 48.842 15.023 48.912 15.236 49.086 15.324 C 49.261 15.413 49.475 15.343 49.564 15.169 Z M 19.465 35.324 C 23.319 30.021 27.958 25.368 33.251 21.498 L 32.831 20.927 C 27.478 24.841 22.787 29.546 18.89 34.909 Z M 33.251 21.498 C 38.61 17.579 44.516 14.552 50.803 12.505 L 50.583 11.832 C 44.223 13.903 38.251 16.964 32.831 20.927 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 19.2 109.548 C 19.394 109.578 19.576 109.447 19.606 109.253 L 20.104 106.107 C 20.134 105.913 20.002 105.732 19.808 105.702 C 19.615 105.671 19.433 105.803 19.402 105.996 L 18.96 108.793 L 16.155 108.353 C 15.961 108.323 15.779 108.454 15.749 108.647 C 15.718 108.841 15.851 109.022 16.044 109.052 Z M 19.543 108.99 C 11.698 98.242 7.543 85.512 7.53 72.171 L 6.82 72.172 C 6.833 85.662 11.036 98.538 18.969 109.406 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 133.655 71.717 C 133.517 71.579 133.292 71.579 133.153 71.717 L 130.894 73.97 C 130.756 74.108 130.756 74.332 130.894 74.47 C 131.033 74.608 131.258 74.608 131.396 74.47 L 133.405 72.468 L 135.413 74.47 C 135.551 74.608 135.776 74.608 135.915 74.47 C 136.054 74.332 136.054 74.108 135.915 73.97 Z M 133.05 71.968 L 133.05 72.106 L 133.76 72.106 L 133.76 71.968 Z M 133.05 72.106 C 133.05 85.447 128.91 98.183 121.076 108.938 L 121.65 109.354 C 129.572 98.477 133.76 85.595 133.76 72.106 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 107.378 21.097 L 107.586 20.811 L 107.586 20.811 Z M 121.228 35.304 C 121.422 35.334 121.604 35.202 121.634 35.009 L 122.128 31.862 C 122.158 31.669 122.026 31.488 121.832 31.457 C 121.638 31.427 121.457 31.559 121.426 31.752 L 120.988 34.55 L 118.182 34.112 C 117.988 34.082 117.806 34.214 117.776 34.407 C 117.746 34.601 117.878 34.782 118.072 34.812 Z M 89.586 12.443 C 95.882 14.473 101.798 17.48 107.168 21.383 L 107.586 20.811 C 102.155 16.864 96.172 13.823 89.805 11.77 Z M 107.168 21.383 C 112.474 25.237 117.127 29.873 120.997 35.163 L 121.57 34.746 C 117.656 29.397 112.952 24.708 107.586 20.811 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12145515456,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mguoms-container\",layoutDependency:layoutDependency,layoutId:\"G2uggLrIP-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"G2uggLrIP\",layoutId:\"G2uggLrIP\",style:{height:\"100%\",width:\"100%\"},variant:\"XWwAWeltu\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kujmod\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"oxZX6tRsA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e2zotc\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"oT5bPC6iJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qul0z\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"pUP75Js2d\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vml8yx\",\"data-framer-name\":\"HEADER\",layoutDependency:layoutDependency,layoutId:\"BgIW47Q8Z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Retention challenges\"})}),className:\"framer-rjxuvh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DyYZ9N3oF\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8z20a7\",layoutDependency:layoutDependency,layoutId:\"rNdTaB3yv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople empowers managers with the skills and expertise to lead effectively, boosting employee satisfaction, retention, and overall well-being.\"})}),className:\"framer-s0fzpd\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S6lsMoV08\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wt6rfd\",\"data-framer-name\":\"Retention Challenge\",layoutDependency:layoutDependency,layoutId:\"TUW9NwqEo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2ni2l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"depDVJ9SF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e56nx2\",\"data-framer-name\":\"Background\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ukXfQuJVT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 143\"><path d=\"M 90.138 132.222 C 90.228 132.047 90.158 131.834 89.983 131.745 L 87.135 130.301 C 86.96 130.213 86.746 130.282 86.658 130.456 C 86.569 130.63 86.638 130.844 86.813 130.933 L 89.344 132.216 L 88.057 134.74 C 87.968 134.914 88.038 135.127 88.213 135.216 C 88.387 135.305 88.601 135.236 88.69 135.061 Z M 89.712 131.724 C 83.462 133.755 76.926 134.784 70.291 134.784 L 70.291 135.492 C 77 135.492 83.61 134.451 89.932 132.397 Z M 70.291 134.784 C 63.677 134.784 57.162 133.76 50.93 131.744 L 50.711 132.417 C 57.015 134.457 63.603 135.492 70.291 135.492 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 33.041 21.212 L 32.831 20.927 L 32.831 20.927 Z M 51.01 12.328 C 51.098 12.154 51.029 11.941 50.854 11.852 L 48.005 10.411 C 47.83 10.322 47.616 10.392 47.527 10.566 C 47.439 10.74 47.508 10.953 47.683 11.042 L 50.216 12.323 L 48.93 14.849 C 48.842 15.023 48.912 15.236 49.086 15.324 C 49.261 15.413 49.475 15.343 49.564 15.169 Z M 19.465 35.324 C 23.319 30.021 27.958 25.368 33.251 21.498 L 32.831 20.927 C 27.478 24.841 22.787 29.546 18.89 34.909 Z M 33.251 21.498 C 38.61 17.579 44.516 14.552 50.803 12.505 L 50.583 11.832 C 44.223 13.903 38.251 16.964 32.831 20.927 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 19.2 109.548 C 19.394 109.578 19.576 109.447 19.606 109.253 L 20.104 106.107 C 20.134 105.913 20.002 105.732 19.808 105.702 C 19.615 105.671 19.433 105.803 19.402 105.996 L 18.96 108.793 L 16.155 108.353 C 15.961 108.323 15.779 108.454 15.749 108.647 C 15.718 108.841 15.851 109.022 16.044 109.052 Z M 19.543 108.99 C 11.698 98.242 7.543 85.512 7.53 72.171 L 6.82 72.172 C 6.833 85.662 11.036 98.538 18.969 109.406 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 133.655 71.717 C 133.517 71.579 133.292 71.579 133.153 71.717 L 130.894 73.97 C 130.756 74.108 130.756 74.332 130.894 74.47 C 131.033 74.608 131.258 74.608 131.396 74.47 L 133.405 72.468 L 135.413 74.47 C 135.551 74.608 135.776 74.608 135.915 74.47 C 136.054 74.332 136.054 74.108 135.915 73.97 Z M 133.05 71.968 L 133.05 72.106 L 133.76 72.106 L 133.76 71.968 Z M 133.05 72.106 C 133.05 85.447 128.91 98.183 121.076 108.938 L 121.65 109.354 C 129.572 98.477 133.76 85.595 133.76 72.106 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 107.378 21.097 L 107.586 20.811 L 107.586 20.811 Z M 121.228 35.304 C 121.422 35.334 121.604 35.202 121.634 35.009 L 122.128 31.862 C 122.158 31.669 122.026 31.488 121.832 31.457 C 121.638 31.427 121.457 31.559 121.426 31.752 L 120.988 34.55 L 118.182 34.112 C 117.988 34.082 117.806 34.214 117.776 34.407 C 117.746 34.601 117.878 34.782 118.072 34.812 Z M 89.586 12.443 C 95.882 14.473 101.798 17.48 107.168 21.383 L 107.586 20.811 C 102.155 16.864 96.172 13.823 89.805 11.77 Z M 107.168 21.383 C 112.474 25.237 117.127 29.873 120.997 35.163 L 121.57 34.746 C 117.656 29.397 112.952 24.708 107.586 20.811 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12145515456,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mguoms-container\",layoutDependency:layoutDependency,layoutId:\"G2uggLrIP-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"G2uggLrIP\",layoutId:\"G2uggLrIP\",style:{height:\"100%\",width:\"100%\"},variant:\"XWwAWeltu\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kujmod\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"oxZX6tRsA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e2zotc\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"oT5bPC6iJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qul0z\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"pUP75Js2d\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vml8yx\",\"data-framer-name\":\"HEADER\",layoutDependency:layoutDependency,layoutId:\"BgIW47Q8Z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Retention challenges\"})}),className:\"framer-rjxuvh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DyYZ9N3oF\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8z20a7\",layoutDependency:layoutDependency,layoutId:\"rNdTaB3yv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople empowers managers with the skills and expertise to lead effectively, boosting employee satisfaction, retention, and overall well-being.\"})}),className:\"framer-s0fzpd\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S6lsMoV08\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1su879r\",\"data-framer-name\":\"Stunted Employee Development:\",layoutDependency:layoutDependency,layoutId:\"WibQTtLY0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h7sm74\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kyTwJwYGD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"68px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qv5a6w-container\",layoutDependency:layoutDependency,layoutId:\"XJsnxvHSV-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"XJsnxvHSV\",layoutId:\"XJsnxvHSV\",style:{height:\"100%\",width:\"100%\"},variant:\"MnKh2MqFC\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jr3x1i\",layoutDependency:layoutDependency,layoutId:\"gk3SaiXr5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-onl36c\",\"data-framer-name\":\"Frame 427322467\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"XNLiIDkuG\",svg:'<svg width=\"25\" height=\"113\" viewBox=\"0 0 25 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.958984\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 9.79877C16.2987 9.49481 15.8059 9.49481 15.5019 9.79877L11.4136 13.887L9.40099 11.8744C9.09703 11.5704 8.6042 11.5704 8.30024 11.8744C7.99627 12.1783 7.99627 12.6712 8.30024 12.9751L11.4136 16.0885L16.6026 10.8995C16.9066 10.5956 16.9066 10.1027 16.6026 9.79877Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"44.5464\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 53.3852C16.2987 53.0812 15.8059 53.0812 15.5019 53.3852L11.4136 57.4734L9.40099 55.4608C9.09703 55.1568 8.6042 55.1568 8.30024 55.4608C7.99627 55.7648 7.99627 56.2576 8.30024 56.5616L11.4136 59.675L16.6026 54.486C16.9066 54.182 16.9066 53.6892 16.6026 53.3852Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"88.1343\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1us4eu4\",layoutDependency:layoutDependency,layoutId:\"Bs7akJsa8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qisepd\",\"data-framer-name\":\"Vector 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"yX47AjUHE\",svg:'<svg width=\"114\" height=\"10\" viewBox=\"-1 -1 114 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 6.77762C10.0992 6.77762 20.4821 7.1659 30.4319 5.17594C31.9556 4.87121 36.6457 4.14383 36.2068 1.61992C35.8554 -0.40042 33.0433 -0.043183 31.6369 0.165182C30.1267 0.388905 26.4619 3.52642 28.6245 4.98492C31.6112 6.99919 34.6725 7.06548 38.1758 7.04212C46.0837 6.9894 54.0144 6.13282 61.8631 5.24941C65.3047 4.86205 69.5245 4.13824 72.972 4.80859C73.4475 4.90106 75.764 5.72638 75.2349 5.2935C74.5537 4.73615 72.9398 2.52625 73.7067 1.61992C75.3192 -0.285764 79.0676 -0.142222 81.2155 0.312125C85.314 1.17913 88.1173 4.98164 92.4566 4.13265C95.6674 3.50445 98.7782 2.69774 102.037 2.28116C105.199 1.87703 108.214 2.4408 111.354 2.81016\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lfda4z\",\"data-framer-name\":\"Vector 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"wGDwhUtwt\",svg:'<svg width=\"116\" height=\"16\" viewBox=\"-1 -1 116 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 11.7788C4.03559 9.59741 7.54045 6.37262 12.049 5.1364C14.8807 4.35998 17.2019 6.84061 19.0776 8.61208C27.0587 16.1498 39.6652 13.8126 49.2001 11.2381C51.2313 10.6897 67.34 6.64857 62.4077 1.89244C57.9138 -2.44095 49.4156 1.51159 47.8099 6.91286C45.4137 14.9726 59.4877 12.342 63.3346 11.6243C72.0479 9.9987 80.7341 6.68602 89.6725 8.14866C91.7885 8.49491 93.8064 9.63604 95.9287 9.6934C98.3567 9.75902 100.642 8.99827 103.035 8.99827C106.778 8.99827 110.757 12.2433 114.002 8.99827\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h2yu9z\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"AAeLbyJzO\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhd0dx\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"qjYdXMi_6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3psjda\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JC7evQEkB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v2ew9z\",layoutDependency:layoutDependency,layoutId:\"bEc0T6pw1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stunted employee development\"})}),className:\"framer-haayv3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kQfSwh01n\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17f5g2o\",layoutDependency:layoutDependency,layoutId:\"Vj_zMm6Uo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople identifies and addresses skill gaps, providing personalized development pathways that unlock employees' full potential and drive business success.\"})}),className:\"framer-of9qwg\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VSoLDlgGP\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pedcsg\",\"data-framer-name\":\"Remote Work Obstacles\",layoutDependency:layoutDependency,layoutId:\"qrRRsQOIE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tp3riz\",\"data-border\":true,\"data-framer-name\":\"Obstacles\",layoutDependency:layoutDependency,layoutId:\"aHxkj379l\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gr0wcr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:276,layoutDependency:layoutDependency,layoutId:\"mIMFyu9w8\",svg:'<svg width=\"276\" height=\"53\" viewBox=\"-1 -1 276 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M274.29 25.5858C274.515 25.4255 274.567 25.1133 274.407 24.8884L271.794 21.2247C271.634 20.9999 271.322 20.9476 271.097 21.1079C270.872 21.2683 270.82 21.5805 270.98 21.8053L273.303 25.062L270.046 27.3845C269.821 27.5449 269.769 27.8571 269.929 28.0819C270.09 28.3068 270.402 28.359 270.627 28.1987L274.29 25.5858ZM249.552 25.8065L249.443 25.3185L249.443 25.3185L249.552 25.8065ZM237.985 29.5885L237.785 29.13L237.785 29.1301L237.985 29.5885ZM227.097 35.4334L226.855 34.9961L226.855 34.9961L227.097 35.4334ZM215.972 38.5113L215.919 39.0085L215.919 39.0085L215.972 38.5113ZM208.266 32.4142L208.752 32.2947L208.752 32.2946L208.266 32.4142ZM207.488 20.9837L207.002 21.0991L207.002 21.0992L207.488 20.9837ZM201.794 14.68L201.71 15.1728L201.71 15.1729L201.794 14.68ZM193.352 18.726L192.95 18.4299L192.95 18.43L193.352 18.726ZM188.512 29.3069L188.055 29.1038L188.055 29.1039L188.512 29.3069ZM175.26 47.0304L175.546 47.4407L175.546 47.4407L175.26 47.0304ZM157.104 50.1318L156.96 50.6105L156.96 50.6105L157.104 50.1318ZM157.402 20.6035L157.608 21.0593L157.608 21.0593L157.402 20.6035ZM181.337 21.3299L181.52 20.8649L181.52 20.8649L181.337 21.3299ZM193.62 39.1637L193.142 39.0188L193.142 39.0188L193.62 39.1637ZM176.936 44.2741L176.675 44.7006L176.675 44.7006L176.936 44.2741ZM168.717 23.4386L169.214 23.4887L169.214 23.4887L168.717 23.4386ZM172.032 10.5671L171.579 10.3555L171.579 10.3556L172.032 10.5671ZM180.307 3.08298L180.206 2.5932L180.206 2.59321L180.307 3.08298ZM188.706 8.23788L188.234 8.40443L188.235 8.40455L188.706 8.23788ZM187.11 20.4662L187.565 20.6743L187.565 20.6743L187.11 20.4662ZM173.639 38.5993L173.336 38.2016L173.336 38.2016L173.639 38.5993ZM154.297 43.2532L154.41 42.7661L154.41 42.7661L154.297 43.2532ZM145.938 38.7894L145.584 39.1427L145.585 39.1428L145.938 38.7894ZM141.115 29.064L141.603 28.9511L141.603 28.9509L141.115 29.064ZM134.935 8.33997L135.33 8.03422L135.33 8.0342L134.935 8.33997ZM117.98 0.0707757L117.944 0.569477L117.944 0.569478L117.98 0.0707757ZM96.1075 6.05295L95.8638 5.61632L95.8638 5.61635L96.1075 6.05295ZM85.4437 12.8108L85.1635 12.3966L85.1634 12.3967L85.4437 12.8108ZM75.9209 19.9405L76.2567 20.311L76.2567 20.311L75.9209 19.9405ZM67.4651 38.6322L66.9678 38.6847L66.9678 38.6847L67.4651 38.6322ZM80.4191 50.8864L80.4573 50.3878L80.4572 50.3878L80.4191 50.8864ZM120.588 29.0358L120.496 28.5445L120.495 28.5445L120.588 29.0358ZM131.64 31.344L131.333 31.7385L131.333 31.7385L131.64 31.344ZM135.239 41.1668L134.756 41.0369L134.756 41.037L135.239 41.1668ZM126.99 47.6101L127.05 48.1066L127.05 48.1066L126.99 47.6101ZM115.316 44.1145L115.592 43.6976L115.592 43.6976L115.316 44.1145ZM104.112 25.3806L104.612 25.3776L104.612 25.3776L104.112 25.3806ZM114.838 10.999L114.699 10.5185L114.699 10.5185L114.838 10.999ZM128.654 20.1776L129.143 20.0727L129.143 20.0726L128.654 20.1776ZM120.448 38.5148L120.149 38.1139L120.149 38.1139L120.448 38.5148ZM79.1319 36.73L78.7601 37.0643L78.7601 37.0643L79.1319 36.73ZM72.8804 17.6793L72.3848 17.6135L72.3848 17.6136L72.8804 17.6793ZM86.1893 2.68871L86.1122 2.19468L86.1122 2.19469L86.1893 2.68871ZM99.5492 14.3127L99.0518 14.2617L99.0518 14.2617L99.5492 14.3127ZM83.2508 28.144L83.3215 28.639L83.3215 28.639L83.2508 28.144ZM70.4221 28.3329L70.4469 27.8336L70.4469 27.8336L70.4221 28.3329ZM56.0336 27.6101L56.0085 28.1095L56.0086 28.1095L56.0336 27.6101ZM27.7449 26.1879L27.77 25.6885L27.77 25.6885L27.7449 26.1879ZM-2.66667 24.7939C-2.66667 26.2666 -1.47276 27.4605 0 27.4605C1.47276 27.4605 2.66667 26.2666 2.66667 24.7939C2.66667 23.3211 1.47276 22.1272 0 22.1272C-1.47276 22.1272 -2.66667 23.3211 -2.66667 24.7939ZM274.083 24.6856C265.904 23.3163 257.545 23.5172 249.443 25.3185L249.66 26.2946C257.635 24.5216 265.864 24.3235 273.917 25.6719L274.083 24.6856ZM249.443 25.3185C245.443 26.2081 241.545 27.495 237.785 29.13L238.184 30.047C241.888 28.4363 245.725 27.1698 249.66 26.2946L249.443 25.3185ZM237.785 29.1301C233.957 30.7961 230.439 33.0099 226.855 34.9961L227.34 35.8707C230.989 33.8484 234.415 31.6877 238.184 30.047L237.785 29.1301ZM226.855 34.9961C223.452 36.882 219.84 38.4226 216.025 38.0142L215.919 39.0085C220.061 39.4519 223.908 37.7727 227.34 35.8707L226.855 34.9961ZM216.025 38.0142C212.588 37.6457 209.593 35.7141 208.752 32.2947L207.781 32.5336C208.751 36.4787 212.197 38.6095 215.919 39.0085L216.025 38.0142ZM208.752 32.2946C208.309 30.4979 208.334 28.6461 208.367 26.7161C208.399 24.8079 208.438 22.8214 207.975 20.8683L207.002 21.0992C207.431 22.9093 207.399 24.7681 207.367 26.6994C207.335 28.6089 207.302 30.5906 207.781 32.5337L208.752 32.2946ZM207.975 20.8683C207.257 17.842 205.3 14.7726 201.879 14.1872L201.71 15.1729C204.557 15.66 206.326 18.2489 207.002 21.0991L207.975 20.8683ZM201.879 14.1872C198.276 13.5697 194.948 15.7118 192.95 18.4299L193.755 19.0222C195.625 16.4786 198.617 14.6427 201.71 15.1728L201.879 14.1872ZM192.95 18.43C191.765 20.0417 190.926 21.8558 190.193 23.6847C189.449 25.539 188.832 27.3552 188.055 29.1038L188.969 29.5099C189.752 27.7489 190.408 25.8353 191.121 24.0569C191.845 22.2532 192.646 20.5317 193.755 19.0221L192.95 18.43ZM188.055 29.1039C185.065 35.8331 181.001 42.4211 174.974 46.6202L175.546 47.4407C181.793 43.0878 185.95 36.3033 188.969 29.5099L188.055 29.1039ZM174.974 46.6202C169.749 50.2602 163.353 51.4968 157.249 49.6532L156.96 50.6105C163.381 52.55 170.091 51.2403 175.546 47.4407L174.974 46.6202ZM157.249 49.6532C151.415 47.891 146.841 43.1107 146.841 36.7981H145.841C145.841 43.6561 150.813 48.7538 156.96 50.6105L157.249 49.6532ZM146.841 36.7981C146.841 30.0103 151.576 23.7804 157.608 21.0593L157.197 20.1478C150.867 23.0028 145.841 29.5539 145.841 36.7981H146.841ZM157.608 21.0593C164.976 17.735 173.741 18.865 181.153 21.7949L181.52 20.8649C173.978 17.883 164.908 16.6685 157.197 20.1478L157.608 21.0593ZM181.153 21.7949C184.544 23.1355 188.181 25.4252 190.645 28.3991C193.1 31.3616 194.369 34.9685 193.142 39.0188L194.099 39.3087C195.448 34.8551 194.022 30.908 191.415 27.7611C188.817 24.6255 185.024 22.2501 181.52 20.8649L181.153 21.7949ZM193.142 39.0188C192.144 42.3121 189.533 44.3411 186.46 45.1394C183.377 45.9404 179.876 45.4862 177.197 43.8475L176.675 44.7006C179.599 46.4895 183.382 46.9723 186.712 46.1073C190.052 45.2396 192.981 42.9997 194.099 39.3087L193.142 39.0188ZM177.197 43.8475C170.426 39.7052 168.443 31.1348 169.214 23.4887L168.219 23.3884C167.432 31.1941 169.421 40.2627 176.675 44.7006L177.197 43.8475ZM169.214 23.4887C169.646 19.2028 170.673 14.6601 172.485 10.7787L171.579 10.3556C169.706 14.3667 168.659 19.0261 168.219 23.3884L169.214 23.4887ZM172.485 10.7788C174.101 7.31901 176.693 4.33574 180.407 3.57275L180.206 2.59321C176.049 3.44721 173.258 6.76059 171.579 10.3555L172.485 10.7788ZM180.407 3.57276C183.967 2.84165 187.019 4.96515 188.234 8.40443L189.177 8.07133C187.83 4.25644 184.348 1.74252 180.206 2.5932L180.407 3.57276ZM188.235 8.40455C189.608 12.289 188.371 16.5109 186.656 20.2582L187.565 20.6743C189.299 16.8857 190.689 12.3468 189.177 8.07121L188.235 8.40455ZM186.656 20.2582C183.542 27.0611 179.261 33.6888 173.336 38.2016L173.942 38.9971C180.049 34.3453 184.417 27.5536 187.565 20.6743L186.656 20.2582ZM173.336 38.2016C167.898 42.3437 161.09 44.3176 154.41 42.7661L154.184 43.7402C161.206 45.3711 168.313 43.2849 173.942 38.9971L173.336 38.2016ZM154.41 42.7661C151.371 42.0603 148.498 40.645 146.292 38.4361L145.585 39.1428C147.947 41.5079 150.998 43.0004 154.184 43.7402L154.41 42.7661ZM146.292 38.4362C143.758 35.8976 142.425 32.4982 141.603 28.9511L140.628 29.1769C141.469 32.8018 142.859 36.4125 145.584 39.1427L146.292 38.4362ZM141.603 28.9509C141.199 27.214 140.898 25.4271 140.601 23.6176C140.304 21.8132 140.01 19.9847 139.622 18.1891C138.847 14.596 137.689 11.0861 135.33 8.03422L134.539 8.64572C136.766 11.5268 137.883 14.8691 138.645 18.3999C139.026 20.1663 139.316 21.9676 139.614 23.78C139.911 25.5874 140.217 27.4043 140.628 29.177L141.603 28.9509ZM135.33 8.0342C131.176 2.65965 124.516 0.0413173 118.016 -0.427927L117.944 0.569478C124.253 1.0249 130.608 3.56029 134.539 8.64574L135.33 8.0342ZM118.016 -0.427925C110.141 -0.996714 102.572 1.87322 95.8638 5.61632L96.3511 6.48957C102.988 2.78606 110.352 0.0211555 117.944 0.569477L118.016 -0.427925ZM95.8638 5.61635C92.1678 7.67935 88.6481 10.0389 85.1635 12.3966L85.7239 13.2249C89.2109 10.8654 92.6975 8.52887 96.3512 6.48954L95.8638 5.61635ZM85.1634 12.3967C81.8871 14.614 78.5621 16.8718 75.5851 19.5701L76.2567 20.311C79.1729 17.6678 82.4392 15.4478 85.7239 13.2248L85.1634 12.3967ZM75.5852 19.57C70.2819 24.3762 66.1651 31.0881 66.9678 38.6847L67.9623 38.5796C67.2064 31.4262 71.0771 25.005 76.2567 20.311L75.5852 19.57ZM66.9678 38.6847C67.7387 45.9776 73.3093 50.8436 80.3809 51.3849L80.4572 50.3878C73.8245 49.8801 68.6781 45.3515 67.9623 38.5796L66.9678 38.6847ZM80.3809 51.3849C89.1093 52.0536 95.4177 47.1784 101.394 41.9202C107.422 36.6164 113.095 30.9559 120.681 29.5272L120.495 28.5445C112.574 30.0364 106.663 35.9524 100.733 41.1694C94.7523 46.4319 88.7299 51.0216 80.4573 50.3878L80.3809 51.3849ZM120.681 29.5272C124.336 28.8392 128.388 29.4463 131.333 31.7385L131.947 30.9494C128.723 28.4399 124.359 27.8173 120.496 28.5445L120.681 29.5272ZM131.333 31.7385C134.061 33.862 135.665 37.6554 134.756 41.0369L135.721 41.2967C136.753 37.4615 134.936 33.2757 131.947 30.9494L131.333 31.7385ZM134.756 41.037C133.834 44.4666 130.392 46.6982 126.931 47.1137L127.05 48.1066C130.783 47.6584 134.663 45.2361 135.721 41.2966L134.756 41.037ZM126.931 47.1137C122.949 47.5906 118.961 45.928 115.592 43.6976L115.04 44.5313C118.491 46.8163 122.724 48.6247 127.05 48.1066L126.931 47.1137ZM115.592 43.6976C109.545 39.6932 104.656 32.8125 104.612 25.3776L103.612 25.3835C103.659 33.2455 108.803 40.4015 115.04 44.5314L115.592 43.6976ZM104.612 25.3776C104.574 19.0108 108.908 13.2256 114.976 11.4795L114.699 10.5185C108.199 12.3889 103.572 18.5704 103.612 25.3836L104.612 25.3776ZM114.976 11.4795C121.293 9.6621 126.804 13.9411 128.165 20.2825L129.143 20.0726C127.691 13.3067 121.704 8.50341 114.699 10.5185L114.976 11.4795ZM128.165 20.2824C129.681 27.3494 125.742 33.946 120.149 38.1139L120.746 38.9158C126.522 34.6115 130.77 27.6596 129.143 20.0727L128.165 20.2824ZM120.149 38.1139C114.343 42.441 106.725 44.8576 99.277 44.7615C91.8328 44.6656 84.5968 42.0616 79.5038 36.3958L78.7601 37.0643C84.0769 42.9791 91.6016 45.6627 99.2641 45.7615C106.923 45.8602 114.758 43.3789 120.747 38.9157L120.149 38.1139ZM79.5038 36.3958C75.038 31.4277 72.4886 24.4344 73.3761 17.7451L72.3848 17.6136C71.4539 24.63 74.1251 31.908 78.7601 37.0643L79.5038 36.3958ZM73.3761 17.7451C74.2874 10.8801 79.3379 4.26396 86.2664 3.18273L86.1122 2.19469C78.6337 3.36175 73.3381 10.4326 72.3848 17.6135L73.3761 17.7451ZM86.2664 3.18274C89.5175 2.67564 92.9046 3.69818 95.3856 5.73354C97.8605 7.76384 99.4096 10.7786 99.0518 14.2617L100.047 14.3638C100.444 10.4977 98.7134 7.17003 96.0199 4.96041C93.3326 2.75586 89.6622 1.64099 86.1122 2.19468L86.2664 3.18274ZM99.0518 14.2617C98.6464 18.2112 96.4901 21.2923 93.5182 23.5266C90.5401 25.7656 86.76 27.1383 83.1802 27.649L83.3215 28.639C87.0368 28.1089 90.9832 26.6836 94.1191 24.3259C97.2613 21.9636 99.6066 18.6495 100.047 14.3638L99.0518 14.2617ZM83.1802 27.649C78.9911 28.2467 74.7191 28.0463 70.4469 27.8336L70.3972 28.8323C74.6552 29.0444 79.0222 29.2524 83.3215 28.639L83.1802 27.649ZM70.4469 27.8336C65.6508 27.5954 60.8554 27.3513 56.0586 27.1107L56.0086 28.1095C60.8041 28.35 65.601 28.5941 70.3973 28.8323L70.4469 27.8336ZM56.0587 27.1107C51.3437 26.8737 46.629 26.6367 41.9143 26.3996C37.1996 26.1626 32.485 25.9256 27.77 25.6885L27.7198 26.6873C32.4347 26.9243 37.1494 27.1613 41.8641 27.3984C46.5788 27.6354 51.2935 27.8724 56.0085 28.1095L56.0587 27.1107ZM27.77 25.6885C23.146 25.4562 18.5218 25.2239 13.8975 24.9915C9.27328 24.7592 4.64904 24.5268 0.0250919 24.2945L-0.0250919 25.2932C4.59886 25.5256 9.2231 25.7579 13.8473 25.9903C18.4716 26.2226 23.0958 26.4549 27.7198 26.6873L27.77 25.6885Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"46px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-187ms9i-container\",layoutDependency:layoutDependency,layoutId:\"lUzaDK2qr-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"lUzaDK2qr\",layoutId:\"lUzaDK2qr\",style:{height:\"100%\",width:\"100%\"},variant:\"qNV5gQUtD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14.010308265686035px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tNTAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\"},children:\"A\"})})}),className:\"framer-171lgao\",\"data-framer-name\":\"A\",fonts:[\"GF;Gabarito-500\"],layoutDependency:layoutDependency,layoutId:\"Xj9DQKXPV\",style:{\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14.010308265686035px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tNTAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\"},children:\"B\"})})}),className:\"framer-1mcy15t\",\"data-framer-name\":\"B\",fonts:[\"GF;Gabarito-500\"],layoutDependency:layoutDependency,layoutId:\"EJFu_y_Wm\",style:{\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b5zayc\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"VHjwq5gIj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19riodo\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"twXeibZOd\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14bb8xd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ra0WZOQ4Z\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Remote work obstacles\"})}),className:\"framer-kc310e\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RtjhVa9pO\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vm17c0\",layoutDependency:layoutDependency,layoutId:\"OLRY45mnt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's innovative tools and strategies bridge the gap, fostering collaboration, connection, and a sense of community among distributed teams.\"})}),className:\"framer-iba0v1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sIllJCzto\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tcywvl\",\"data-framer-name\":\"Inefficient Meetings\",layoutDependency:layoutDependency,layoutId:\"o6xDVOjKF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1krgoa6\",\"data-framer-name\":\"Vid\",layoutDependency:layoutDependency,layoutId:\"qOy3MsVUm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"280px\",src:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png\",srcSet:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png 535w\"},className:\"framer-1jbtbzv\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"rnR6cQSPu\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"4.543979167938232px\",\"--framer-line-height\":\"6.49px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"4.54px\",\"--framer-font-weight\":\"500\"},children:\"    \"})})}),className:\"framer-2wzrup\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oaGNxXml9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h3gasi\",\"data-framer-name\":\"Frame 1707479561\",layoutDependency:layoutDependency,layoutId:\"SyE5NmceR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wm11rc\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"r3gJC7ViK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p3399s\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ZhJj3V7II\",style:{backgroundColor:\"rgb(31, 31, 31)\",borderBottomLeftRadius:49.81,borderBottomRightRadius:49.81,borderTopLeftRadius:49.81,borderTopRightRadius:49.81},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-19njos0\",\"data-framer-name\":\"People\",layoutDependency:layoutDependency,layoutId:\"paOlhcvIe\",style:{borderBottomLeftRadius:1.68,borderBottomRightRadius:1.68,borderTopLeftRadius:1.68,borderTopRightRadius:1.68}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.783504486083984px\",\"--framer-line-height\":\"6.23px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\"',\"--framer-font-size\":\"7.78px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(31, 31, 31, 1))\"},children:\"Ahmed Taleb\"})})}),className:\"framer-lxa8cs\",\"data-framer-name\":\"Ahmed Taleb\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"eT_DKmRYi\",style:{\"--extracted-1w3ko1f\":\"rgba(31, 31, 31, 1)\",\"--framer-paragraph-spacing\":\"4.670104026794434px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/azeVae0quZi1iOhR1lH1TT8OhA.png\"},className:\"framer-p6jaup\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"ozn5SgVYP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZZ6gK8QnPfRi6vrgctBxBL00Bs.png\"},className:\"framer-1fkaiu\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"I3r52q7Ew\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15j1skk\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"aprc0y1Jw\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y19x6z\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"C93ZeOu44\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vufaxp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Kq_F4xQlj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inefficient meetings\"})}),className:\"framer-jdtj8r\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QtV7E7sLQ\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wrsu4j\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cfDoPaOUO\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople optimizes meeting workflows, ensuring that every discussion is purposeful, engaging, and drives tangible outcomes.\"})}),className:\"framer-aroygj\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IQhYRXoa1\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:49,delay:0,mass:1,stiffness:166,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngz307-container\",\"data-framer-name\":\"Slideshow Mobile\",layoutDependency:layoutDependency,layoutId:\"BYCsIfx0j-container\",name:\"Slideshow Mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:16,arrowPadding:20,arrowPaddingBottom:-49,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"BYCsIfx0j\",intervalControl:4,itemAmount:1,layoutId:\"BYCsIfx0j\",name:\"Slideshow Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vdo6p8\",\"data-framer-name\":\"Breakdowns in Communication Mobile\",layoutDependency:layoutDependency,layoutId:\"APHcqX6r1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xmzrnp\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Vw5P0OLTw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xno2a\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RQ_SRem7y\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 125 77\"><path d=\"M 1.106 39.016 C 14.483 39.036 34.327 39.055 47.703 38.984 C 51.578 38.898 55.461 39.33 59.282 39.974 C 61.775 40.395 64.273 40.98 66.507 42.159 C 68.739 43.337 70.701 45.169 71.61 47.509 C 71.919 48.305 72.062 49.159 72.029 50.012 C 71.852 54.515 67.606 58.677 62.428 57.741 C 57.591 57.034 54.727 51.382 55.587 46.608 C 56.447 41.833 60 37.979 63.831 34.966 C 67.279 32.254 71.201 29.938 75.546 29.253 C 80.106 28.534 84.94 29.738 88.618 32.506 C 92.296 35.275 94.766 39.57 95.1 44.019 C 97.152 56.329 88.801 68.952 77.269 73.932 C 74.925 74.944 72.436 75.696 69.883 75.809 C 62.376 76.14 56.017 70.589 51.499 64.943 C 47.413 59.837 47.216 52.331 50.054 46.45 C 52.892 40.57 57.936 36.097 62.471 31.379 C 66.638 27.044 70.556 22.211 72.395 16.17 C 73.257 13.009 74.124 9.681 73.331 6.502 C 72.537 3.323 69.457 0.45 66.218 1.081 C 63.322 1.645 61.625 4.528 60.027 6.988 C 57.435 10.975 53.777 14.594 48.748 15.415 C 42.945 16.364 36.851 16.954 32.527 20.911 C 28.203 24.867 25.662 30.673 25.699 36.509 C 25.706 37.712 25.87 38.917 26.287 40.047 C 27.624 43.673 30.576 45.677 32.372 46.052 C 35.616 46.73 39.145 45.286 40.47 42.272 C 41.794 39.257 41.188 35.721 39.87 32.703 C 39.117 30.977 38.036 29.25 36.313 28.463 C 34.59 27.677 32.136 28.282 31.542 30.069 C 30.94 31.879 32.605 33.831 34.494 34.179 C 36.383 34.527 38.292 33.708 39.924 32.701 C 46.331 28.741 50.451 21.374 50.444 13.885 C 50.441 11.505 49.914 8.888 48.016 7.434 C 46.056 5.932 43.067 6.214 41.128 7.743 C 39.19 9.273 38.237 11.802 38.202 14.258 C 38.167 16.716 38.953 19.118 39.977 21.355 C 42.088 25.971 45.306 30.145 49.506 33.033 C 53.706 35.921 58.914 37.46 63.994 36.908 C 66.181 36.67 68.312 36.058 70.375 35.3 C 78.057 32.476 85.189 27.245 88.295 20.157 C 89.003 18.121 89.717 16.058 89.88 13.911 C 90.042 11.763 89.594 9.486 88.201 7.835 C 86.83 6.208 84.719 5.374 82.628 4.933 C 74.833 3.289 66.488 6.478 60.85 12.064 C 58.862 14.033 57.116 16.38 56.529 19.106 C 55.941 21.832 56.741 24.98 59.019 26.611 C 61.96 28.717 66.063 27.702 69.404 26.303 C 71.841 25.283 74.277 24.049 75.989 22.049 C 77.701 20.051 78.541 17.124 77.441 14.739 C 75.966 11.541 70.956 10.748 68.551 13.333 C 66.06 16.013 67.107 20.71 70 22.957 C 72.892 25.206 76.938 25.421 80.532 24.655 C 84.123 23.889 87.466 22.269 90.962 21.146 C 92.482 20.658 94.08 20.26 95.664 20.458 C 97.249 20.656 98.83 21.564 99.42 23.037 C 100.287 25.197 98.751 27.632 96.82 28.952 C 95.543 29.825 93.969 30.424 92.449 30.121 C 90.928 29.818 89.587 28.375 89.82 26.854 C 90.093 25.074 92.185 24.167 94 24.118 C 98.539 23.996 102.877 27.605 103.231 32.212 C 104.388 39.408 102.495 47.04 98.102 52.881 C 96.168 55.45 93.708 57.722 90.706 58.911 C 87.705 60.099 84.113 60.078 81.386 58.358 C 78.659 56.638 77.089 53.066 78.162 50.042 C 78.43 49.285 78.886 48.545 79.608 48.185 C 80.529 47.726 81.67 47.997 82.54 48.543 C 84.425 49.73 85.352 52.086 85.207 54.296 C 85.061 56.507 83.981 58.57 82.584 60.298 C 78.011 65.958 69.666 68.269 62.799 65.781 C 60.049 64.785 57.275 62.592 57.346 59.688 C 57.408 57.124 59.883 55.041 62.461 54.839 C 65.037 54.636 67.543 55.977 69.326 57.834 C 70.494 59.052 71.432 60.534 71.758 62.184 C 72.561 66.255 69.335 70.275 65.429 71.754 C 61.523 73.233 57.13 73.505 53.212 72.903 C 49.475 72.329 45.548 70.728 42.909 68.04 C 39.853 64.927 39.388 60.005 40.526 55.81 C 41.719 51.417 44.717 47.076 49.155 45.929 C 52.332 45.109 55.088 45.098 57.924 45.774 C 59.45 46.137 60.82 46.966 61.448 48.288 C 62.098 49.657 61.427 51.302 60.466 52.477 C 58.578 54.787 55.656 56.078 52.701 56.583 C 49.747 57.087 46.722 56.884 44.389 56.417 C 40.255 55.749 35.641 54.784 33.343 51.31 C 31.093 47.908 32.038 43.151 34.565 39.947 C 37.093 36.744 40.873 34.789 44.623 33.142 C 47.162 32.028 49.758 31.004 52.474 30.433 C 60.869 28.663 70.117 30.362 76.911 34.429 C 81.022 36.889 85.065 41.15 86.779 43.012 C 87.844 44.167 88.929 45.339 90.275 46.155 C 91.622 46.971 93.293 47.397 94.801 46.937 C 95.498 46.724 96.131 46.333 96.698 45.877 C 98.869 44.128 100.134 41.254 99.727 38.51 C 99.578 37.503 99.195 36.494 98.456 35.787 C 97.119 34.505 94.889 34.528 93.265 35.424 C 91.64 36.321 90.523 37.907 89.648 39.535 C 88.768 41.175 88.073 42.914 87.575 44.857 C 86.39 49.837 83.426 54.381 79.332 57.494 C 77.571 58.834 75.622 59.907 73.647 60.912 C 70.958 62.281 67.618 63.51 65.06 61.912 C 62.961 60.6 62.284 57.728 62.924 55.349 C 63.563 52.971 65.249 51.012 67.049 49.318 C 71.386 45.233 76.708 42.151 82.477 40.585 C 88.48 38.954 95.203 38.977 101.426 39.009 C 111.549 39.061 124.085 39.011 124.085 39.011\" fill=\"transparent\" stroke-width=\"0.84\" stroke=\"rgb(31,31,31)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9833640245,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t4w5zk-container\",layoutDependency:layoutDependency,layoutId:\"dYn9bHAch-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"dYn9bHAch\",layoutId:\"dYn9bHAch\",style:{height:\"100%\",width:\"100%\"},variant:\"OxulWU4Ha\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1haxmqp-container\",layoutDependency:layoutDependency,layoutId:\"DIjS7aE8H-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"DIjS7aE8H\",layoutId:\"DIjS7aE8H\",style:{height:\"100%\",width:\"100%\"},variant:\"I32:8041;95:12933\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h6ruq9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"l1srCuGYt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Breakdowns in Communication\"})}),className:\"framer-12oquxf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xtZmnbpYo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople helps break down communication barriers, fostering a culture of openness, transparency, and collective success.\"})}),className:\"framer-b9t1vj\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RYk3vTH3k\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sz2rbc\",\"data-framer-name\":\"Onboarding\",layoutDependency:layoutDependency,layoutId:\"fR6gVT2_P\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ir93tc\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"SqDI4Elbi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ecbi2a-container\",layoutDependency:layoutDependency,layoutId:\"swHS3xUuw-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"swHS3xUuw\",layoutId:\"swHS3xUuw\",style:{height:\"100%\",width:\"100%\"},variant:\"qjRoLbcu8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-179hqho\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:141,intrinsicWidth:173,layoutDependency:layoutDependency,layoutId:\"Nj7WMgRye\",svg:'<svg width=\"173\" height=\"141\" viewBox=\"0 0 173 141\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M170.893 20.0529C171.089 19.8578 171.089 19.5412 170.894 19.3458L167.715 16.1608C167.52 15.9654 167.203 15.9651 167.008 16.1602C166.812 16.3553 166.812 16.6719 167.007 16.8673L169.833 19.6983L167.002 22.5242C166.806 22.7192 166.806 23.0358 167.001 23.2313C167.196 23.4267 167.513 23.427 167.708 23.2319L170.893 20.0529ZM143.799 29.6934L143.299 29.6939L143.799 29.6934ZM133.796 46.3278L133.796 46.8278L133.796 46.3278ZM117.076 56.3316L117.576 56.3311L117.076 56.3316ZM117.083 62.9528L116.583 62.9533L117.083 62.9528ZM100.362 72.9567L100.362 73.4567L100.362 72.9567ZM80.3491 99.5988L80.3486 100.099L80.3491 99.5988ZM73.6395 99.5922L73.6399 99.0922L73.6395 99.5922ZM63.6362 116.224L63.1362 116.225L63.6362 116.224ZM36.895 126.718L53.6259 126.734L53.6269 125.734L36.896 125.718L36.895 126.718ZM64.1362 116.224L64.1297 109.602L63.1297 109.603L63.1362 116.225L64.1362 116.224ZM73.639 100.092L80.3486 100.099L80.3496 99.0988L73.6399 99.0922L73.639 100.092ZM90.8589 89.5884L90.8524 82.966L89.8524 82.967L89.8589 89.5894L90.8589 89.5884ZM100.362 73.4567L107.072 73.4633L107.073 72.4633L100.363 72.4567L100.362 73.4567ZM117.583 62.9523L117.576 56.3311L116.576 56.3321L116.583 62.9533L117.583 62.9523ZM127.085 46.8212L133.796 46.8278L133.797 45.8278L127.086 45.8212L127.085 46.8212ZM144.306 36.3174L144.299 29.6929L143.299 29.6939L143.306 36.3184L144.306 36.3174ZM153.808 20.1836L170.54 20.199L170.541 19.199L153.809 19.1836L153.808 20.1836ZM144.299 29.6929C144.294 24.4391 148.554 20.1787 153.808 20.1836L153.809 19.1836C148.002 19.1782 143.294 23.8871 143.299 29.6939L144.299 29.6929ZM133.796 46.8278C139.603 46.8334 144.312 42.1245 144.306 36.3174L143.306 36.3184C143.311 41.5724 139.051 45.8329 133.797 45.8278L133.796 46.8278ZM117.576 56.3311C117.57 51.0769 121.831 46.816 127.085 46.8212L127.086 45.8212C121.279 45.8155 116.57 50.5248 116.576 56.3321L117.576 56.3311ZM107.072 73.4633C112.88 73.4689 117.589 68.7596 117.583 62.9523L116.583 62.9533C116.588 68.2076 112.327 72.4684 107.073 72.4633L107.072 73.4633ZM90.8524 82.966C90.8472 77.712 95.1077 73.4515 100.362 73.4567L100.363 72.4567C94.5556 72.451 89.8467 77.16 89.8524 82.967L90.8524 82.966ZM80.3486 100.099C86.1557 100.104 90.8646 95.3955 90.8589 89.5884L89.8589 89.5894C89.8641 94.8434 85.6036 99.1039 80.3496 99.0988L80.3486 100.099ZM64.1297 109.602C64.1245 104.348 68.385 100.087 73.639 100.092L73.6399 99.0922C67.8329 99.0865 63.1239 103.795 63.1297 109.603L64.1297 109.602ZM53.6259 126.734C59.4329 126.74 64.1419 122.031 64.1362 116.224L63.1362 116.225C63.1414 121.479 58.8809 125.739 53.6269 125.734L53.6259 126.734Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M61.0914 74.1806L65.1739 74.1809L65.1742 70.0984L61.0917 70.0981L61.0914 74.1806ZM93.9693 41.8081C93.9693 41.532 93.7455 41.3081 93.4693 41.3081L88.9693 41.3077C88.6932 41.3077 88.4693 41.5315 88.4693 41.8077C88.4693 42.0838 88.6931 42.3077 88.9693 42.3077L92.9693 42.3081L92.9689 46.3081C92.9689 46.5842 93.1927 46.8081 93.4689 46.8081C93.745 46.8081 93.9689 46.5843 93.9689 46.3081L93.9693 41.8081ZM63.4863 72.4931L93.8228 42.1617L93.1158 41.4545L62.7793 71.7859L63.4863 72.4931Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4j02ss\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ETVwQRqxi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Elongated Onboarding\"})}),className:\"framer-k8mmq3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RD1dHXCrd\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's personalized approach accelerates the onboarding journey, equipping new employees with the insights and tools they need to make a meaningful impact from day one.\"})}),className:\"framer-1i9kk3u\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z68qPLoI9\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fz907b\",\"data-framer-name\":\"RETENTION\",layoutDependency:layoutDependency,layoutId:\"Ca0ATtzjN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14d51jl\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"mohJjCjm5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfy0i6-container\",layoutDependency:layoutDependency,layoutId:\"e0FTcBVEa-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"e0FTcBVEa\",layoutId:\"e0FTcBVEa\",style:{height:\"100%\",width:\"100%\"},variant:\"XWwAWeltu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r2f5d4\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:136,intrinsicWidth:134,layoutDependency:layoutDependency,layoutId:\"OBnIq3rEK\",svg:'<svg width=\"134\" height=\"136\" viewBox=\"0 0 134 136\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M85.2072 125.823C85.3321 125.576 85.2336 125.276 84.9872 125.151L80.9733 123.116C80.727 122.992 80.4261 123.09 80.3013 123.336C80.1764 123.583 80.2749 123.884 80.5212 124.008L84.0892 125.817L82.281 129.385C82.1562 129.631 82.2547 129.932 82.501 130.057C82.7473 130.181 83.0482 130.083 83.173 129.837L85.2072 125.823ZM84.6057 125.121C78.7245 127.047 72.5745 128.023 66.3308 128.023V129.023C72.6792 129.023 78.9343 128.03 84.9168 126.072L84.6057 125.121ZM66.3308 128.023C60.1067 128.023 53.9764 127.052 48.112 125.14L47.802 126.091C53.7673 128.036 60.0023 129.023 66.3308 129.023V128.023Z\" fill=\"black\"/>\\n<path d=\"M31.1803 20.1736L30.8836 19.7711L30.8836 19.7711L31.1803 20.1736ZM48.2837 11.7979C48.4083 11.5515 48.3096 11.2507 48.0632 11.1261L44.0475 9.09523C43.8011 8.9706 43.5003 9.06934 43.3757 9.31576C43.251 9.56219 43.3498 9.86298 43.5962 9.9876L47.1657 11.7928L45.3605 15.3623C45.2359 15.6087 45.3346 15.9095 45.581 16.0341C45.8275 16.1587 46.1282 16.06 46.2529 15.8136L48.2837 11.7979ZM18.5032 33.6897C22.1298 28.66 26.4955 24.2474 31.4769 20.5761L30.8836 19.7711C25.8185 23.5041 21.3793 27.991 17.6921 33.1048L18.5032 33.6897ZM31.4769 20.5761C36.5201 16.8595 42.077 13.9894 47.9935 12.0473L47.6816 11.0972C41.6635 13.0727 36.0117 15.992 30.8836 19.7711L31.4769 20.5761Z\" fill=\"black\"/>\\n<path d=\"M18.0917 104.347C18.3644 104.39 18.6208 104.204 18.6644 103.932L19.3751 99.4883C19.4187 99.2156 19.2331 98.9592 18.9604 98.9156C18.6877 98.872 18.4313 99.0577 18.3877 99.3304L17.7559 103.28L13.8061 102.648C13.5334 102.605 13.277 102.79 13.2334 103.063C13.1898 103.336 13.3755 103.592 13.6482 103.636L18.0917 104.347ZM18.5756 103.56C11.1934 93.3661 7.28316 81.2922 7.27051 68.6382L6.27051 68.6392C6.28337 81.5024 10.2595 93.7814 17.7657 104.146L18.5756 103.56Z\" fill=\"black\"/>\\n<path d=\"M126.242 68.0913C126.047 67.896 125.73 67.896 125.535 68.0913L122.353 71.2733C122.158 71.4685 122.158 71.7851 122.353 71.9804C122.548 72.1756 122.865 72.1756 123.06 71.9804L125.889 69.1519L128.717 71.9804C128.912 72.1756 129.229 72.1756 129.424 71.9804C129.619 71.7851 129.619 71.4685 129.424 71.2733L126.242 68.0913ZM125.389 68.4448V68.5761H126.389V68.4448H125.389ZM125.389 68.5761C125.389 81.2301 121.492 93.3097 114.12 103.51L114.931 104.096C122.427 93.724 126.389 81.4392 126.389 68.5761H125.389Z\" fill=\"black\"/>\\n<path d=\"M101.328 20.0641L101.624 19.6607L101.624 19.6607L101.328 20.0641ZM114.372 33.7374C114.645 33.7807 114.901 33.5947 114.944 33.322L115.65 28.8777C115.693 28.6049 115.507 28.3487 115.235 28.3054C114.962 28.2621 114.706 28.4481 114.662 28.7208L114.035 32.6713L110.085 32.0441C109.812 32.0007 109.556 32.1867 109.512 32.4595C109.469 32.7322 109.655 32.9884 109.928 33.0317L114.372 33.7374ZM84.488 11.9897C90.4117 13.9149 95.9785 16.7666 101.033 20.4675L101.624 19.6607C96.484 15.8974 90.8222 12.9968 84.7971 11.0386L84.488 11.9897ZM101.033 20.4675C106.025 24.1233 110.404 28.5203 114.046 33.5373L114.855 32.9498C111.152 27.849 106.7 23.3779 101.624 19.6607L101.033 20.4675Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17f5el2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"nV70rs7rx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Retention Challenges\"})}),className:\"framer-11mulxu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"enNpUrkJ4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople empowers managers with the skills and expertise to lead effectively, boosting employee satisfaction, retention, and overall well-being.\"})}),className:\"framer-wlzvap\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wmUoeNRvH\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igvia4\",\"data-framer-name\":\"REMOTE\",layoutDependency:layoutDependency,layoutId:\"XXb99Pihw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ejo6bi\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"mKmX_V8j2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dsd3st\",\"data-framer-name\":\"VECTOR\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:245,layoutDependency:layoutDependency,layoutId:\"Ov43cC8bE\",svg:'<svg width=\"245\" height=\"44\" viewBox=\"0 0 245 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M245.29 22.1298C245.515 21.9694 245.567 21.6571 245.407 21.4324L242.793 17.7697C242.632 17.545 242.32 17.4928 242.095 17.6533C241.87 17.8137 241.818 18.1259 241.979 18.3507L244.303 21.6064L241.047 23.9303C240.822 24.0907 240.77 24.403 240.93 24.6277C241.091 24.8525 241.403 24.9046 241.628 24.7442L245.29 22.1298ZM223.853 22.2645L223.745 21.7763L223.745 21.7763L223.853 22.2645ZM213.848 25.5273L213.649 25.0686L213.649 25.0687L213.848 25.5273ZM204.431 30.57L204.189 30.1324L204.189 30.1324L204.431 30.57ZM194.808 33.2254L194.755 33.7226L194.755 33.7226L194.808 33.2254ZM188.143 27.9652L188.628 27.8454L188.628 27.8453L188.143 27.9652ZM187.47 18.1036L186.983 18.2193L186.983 18.2193L187.47 18.1036ZM182.545 12.6651L182.461 13.158L182.461 13.158L182.545 12.6651ZM175.243 16.1558L174.84 15.8591L174.84 15.8592L175.243 16.1558ZM171.056 25.2844L170.6 25.0809L170.6 25.0809L171.056 25.2844ZM159.594 40.5753L159.879 40.9859L159.879 40.9859L159.594 40.5753ZM143.889 43.251L143.745 43.7297L143.745 43.7297L143.889 43.251ZM144.147 17.7756L144.352 18.2316L144.352 18.2316L144.147 17.7756ZM164.85 18.4023L165.033 17.9371L165.033 17.9371L164.85 18.4023ZM175.475 33.7883L174.996 33.6431L174.996 33.6431L175.475 33.7883ZM161.043 38.1972L160.783 38.624L160.783 38.624L161.043 38.1972ZM153.934 20.2215L154.431 20.2718L154.431 20.2718L153.934 20.2215ZM156.801 9.11676L156.348 8.90469L156.348 8.90477L156.801 9.11676ZM163.959 2.65983L163.859 2.17L163.858 2.17L163.959 2.65983ZM171.224 7.10719L170.752 7.27412L170.752 7.27424L171.224 7.10719ZM169.844 17.6571L170.298 17.8657L170.298 17.8657L169.844 17.6571ZM158.191 33.3014L157.889 32.9032L157.889 32.9032L158.191 33.3014ZM141.461 37.3165L141.574 36.8294L141.574 36.8294L141.461 37.3165ZM134.231 33.4654L133.878 33.8191L133.878 33.8192L134.231 33.4654ZM130.06 25.0748L130.547 24.9616L130.547 24.9615L130.06 25.0748ZM124.714 7.19527L125.109 6.88903L125.109 6.889L124.714 7.19527ZM110.048 0.0610614L110.013 0.559769L110.013 0.55977L110.048 0.0610614ZM91.1294 5.22215L90.8863 4.78526L90.8862 4.78529L91.1294 5.22215ZM81.9057 11.0524L81.6259 10.638L81.6259 10.638L81.9057 11.0524ZM73.6688 17.2036L74.0041 17.5745L74.0042 17.5745L73.6688 17.2036ZM66.3548 33.3297L65.8576 33.3824L65.8576 33.3824L66.3548 33.3297ZM77.5596 43.902L77.5977 43.4034L77.5976 43.4034L77.5596 43.902ZM112.304 25.0505L112.212 24.5591L112.212 24.5591L112.304 25.0505ZM121.864 27.0419L121.557 27.4368L121.557 27.4368L121.864 27.0419ZM124.976 35.5165L124.494 35.3863L124.494 35.3864L124.976 35.5165ZM117.842 41.0754L117.901 41.5719L117.901 41.5719L117.842 41.0754ZM107.744 38.0595L108.02 37.6423L108.02 37.6423L107.744 38.0595ZM98.0533 21.897L98.5533 21.894L98.5533 21.894L98.0533 21.897ZM107.33 9.48931L107.192 9.0087L107.192 9.00871L107.33 9.48931ZM119.281 17.4081L119.77 17.303L119.77 17.3029L119.281 17.4081ZM112.183 33.2285L111.885 32.8272L111.885 32.8272L112.183 33.2285ZM76.4462 31.6887L76.0748 32.0234L76.0748 32.0234L76.4462 31.6887ZM71.0389 15.2528L70.5433 15.1868L70.5433 15.1868L71.0389 15.2528ZM82.5506 2.31967L82.4737 1.82561L82.4737 1.82562L82.5506 2.31967ZM94.1064 12.3483L93.609 12.297L93.609 12.2971L94.1064 12.3483ZM80.0089 24.2811L80.0794 24.7761L80.0794 24.7761L80.0089 24.2811ZM68.9125 24.4441L68.9373 23.9447L68.9373 23.9447L68.9125 24.4441ZM56.467 23.8205L56.442 24.3199L56.442 24.3199L56.467 23.8205ZM31.9983 22.5935L32.0233 22.0941L32.0233 22.0941L31.9983 22.5935ZM5.33333 21.3908C5.33333 22.8635 6.52724 24.0575 8 24.0575C9.47276 24.0575 10.6667 22.8635 10.6667 21.3908C10.6667 19.918 9.47276 18.7241 8 18.7241C6.52724 18.7241 5.33333 19.918 5.33333 21.3908ZM245.082 21.2297C238 20.0469 230.761 20.2204 223.745 21.7763L223.962 22.7526C230.851 21.2248 237.96 21.0541 244.918 22.216L245.082 21.2297ZM223.745 21.7763C220.28 22.5448 216.905 23.6564 213.649 25.0686L214.047 25.9861C217.247 24.598 220.562 23.5067 223.962 22.7526L223.745 21.7763ZM213.649 25.0687C210.334 26.5078 207.285 28.4213 204.189 30.1324L204.673 31.0076C207.834 29.2604 210.79 27.3998 214.047 25.986L213.649 25.0687ZM204.189 30.1324C201.248 31.7583 198.139 33.0783 194.861 32.7283L194.755 33.7226C198.359 34.1075 201.702 32.6496 204.673 31.0076L204.189 30.1324ZM194.861 32.7283C191.906 32.4123 189.347 30.7589 188.628 27.8454L187.657 28.0849C188.506 31.525 191.517 33.3765 194.755 33.7226L194.861 32.7283ZM188.628 27.8453C188.248 26.3055 188.269 24.7169 188.297 23.0504C188.325 21.4057 188.359 19.6829 187.956 17.9879L186.983 18.2193C187.352 19.771 187.325 21.3658 187.297 23.0336C187.27 24.6796 187.241 26.3984 187.657 28.085L188.628 27.8453ZM187.956 17.9879C187.332 15.3642 185.627 12.6838 182.629 12.1723L182.461 13.158C184.885 13.5717 186.402 15.773 186.983 18.2193L187.956 17.9879ZM182.629 12.1723C179.479 11.6338 176.578 13.502 174.84 15.8591L175.645 16.4525C177.254 14.2701 179.819 12.7064 182.461 13.158L182.629 12.1723ZM174.84 15.8592C173.811 17.2568 173.083 18.8283 172.448 20.4079C171.802 22.013 171.271 23.5731 170.6 25.0809L171.513 25.4879C172.19 23.9676 172.761 22.3099 173.375 20.7809C174 19.2265 174.691 17.7477 175.645 16.4524L174.84 15.8592ZM170.6 25.0809C168.015 30.882 164.506 36.5524 159.308 40.1647L159.879 40.9859C165.298 37.22 168.9 31.3534 171.513 25.4879L170.6 25.0809ZM159.308 40.1647C154.804 43.2944 149.293 44.3565 144.034 42.7722L143.745 43.7297C149.321 45.4094 155.146 44.2747 159.879 40.9859L159.308 40.1647ZM144.034 42.7723C139.008 41.2581 135.079 37.1553 135.079 31.7474H134.079C134.079 37.7024 138.408 42.1217 143.745 43.7297L144.034 42.7723ZM135.079 31.7474C135.079 25.9233 139.154 20.5703 144.352 18.2316L143.942 17.3196C138.448 19.7917 134.079 25.4655 134.079 31.7474H135.079ZM144.352 18.2316C150.703 15.3738 158.264 16.3431 164.666 18.8674L165.033 17.9371C158.5 15.3611 150.635 14.3076 143.942 17.3196L144.352 18.2316ZM164.666 18.8674C167.592 20.0211 170.727 21.9907 172.849 24.5454C174.962 27.0888 176.049 30.1769 174.996 33.6431L175.953 33.9336C177.128 30.0631 175.884 26.634 173.619 23.9065C171.362 21.1902 168.071 19.1351 165.033 17.9371L164.666 18.8674ZM174.996 33.6431C174.142 36.4567 171.905 38.1931 169.265 38.8773C166.614 39.5641 163.604 39.1741 161.303 37.7704L160.783 38.624C163.329 40.1774 166.619 40.5958 169.516 39.8453C172.422 39.0922 174.978 37.1456 175.953 33.9336L174.996 33.6431ZM161.304 37.7704C155.48 34.2167 153.765 26.8569 154.431 20.2718L153.436 20.1712C152.754 26.9171 154.476 34.7753 160.783 38.624L161.304 37.7704ZM154.431 20.2718C154.804 16.5795 155.691 12.6684 157.254 9.32874L156.348 8.90477C154.724 12.3743 153.817 16.4023 153.436 20.1712L154.431 20.2718ZM157.254 9.32882C158.648 6.35354 160.876 3.80186 164.059 3.14965L163.858 2.17C160.233 2.91284 157.806 5.79357 156.348 8.90469L157.254 9.32882ZM164.059 3.14966C167.1 2.52673 169.711 4.33331 170.752 7.27412L171.695 6.94026C170.52 3.62257 167.48 1.42824 163.859 2.17L164.059 3.14966ZM170.752 7.27424C171.931 10.5983 170.871 14.2185 169.389 17.4486L170.298 17.8657C171.799 14.5943 173.012 10.6562 171.695 6.94014L170.752 7.27424ZM169.389 17.4486C166.699 23.3125 163.001 29.0193 157.889 32.9032L158.494 33.6995C163.789 29.6768 167.572 23.8061 170.298 17.8657L169.389 17.4486ZM157.889 32.9032C153.198 36.467 147.329 38.1627 141.574 36.8294L141.348 37.8036C147.444 39.2158 153.612 37.4086 158.494 33.6995L157.889 32.9032ZM141.574 36.8294C138.955 36.2226 136.482 35.0067 134.585 33.1116L133.878 33.8192C135.932 35.8703 138.583 37.163 141.348 37.8036L141.574 36.8294ZM134.585 33.1117C132.406 30.9347 131.257 28.0164 130.547 24.9616L129.573 25.188C130.301 28.3208 131.507 31.4505 133.878 33.8191L134.585 33.1117ZM130.547 24.9615C130.199 23.4654 129.939 21.9259 129.681 20.3647C129.424 18.8084 129.17 17.229 128.834 15.6778C128.163 12.5735 127.158 9.53373 125.109 6.88903L124.318 7.50151C126.235 9.97537 127.199 12.8473 127.857 15.8892C128.186 17.411 128.436 18.9633 128.694 20.5274C128.951 22.0866 129.216 23.6562 129.573 25.1881L130.547 24.9615ZM125.109 6.889C121.5 2.23246 115.719 -0.0319071 110.084 -0.437648L110.013 0.55977C115.457 0.951781 120.934 3.13376 124.318 7.50153L125.109 6.889ZM110.084 -0.437646C103.254 -0.929717 96.6932 1.55324 90.8863 4.78526L91.3726 5.65904C97.1085 2.46653 103.465 0.0880593 110.013 0.559769L110.084 -0.437646ZM90.8862 4.78529C87.6865 6.56671 84.6398 8.60391 81.6259 10.638L82.1854 11.4669C85.2016 9.43117 88.2153 7.41685 91.3727 5.65901L90.8862 4.78529ZM81.6259 10.638C78.7926 12.5506 75.9126 14.5011 73.3335 16.8327L74.0042 17.5745C76.5224 15.2978 79.3436 13.3851 82.1854 11.4668L81.6259 10.638ZM73.3336 16.8327C68.7381 20.9866 65.16 26.7974 65.8576 33.3824L66.852 33.2771C66.2015 27.1365 69.5323 21.6168 74.0041 17.5745L73.3336 16.8327ZM65.8576 33.3824C66.5282 39.7109 71.3762 43.9313 77.5215 44.4005L77.5976 43.4034C71.8892 42.9676 67.4673 39.0829 66.852 33.277L65.8576 33.3824ZM77.5215 44.4005C85.1014 44.9797 90.5771 40.7548 95.7462 36.2184C100.967 31.6368 105.858 26.7703 112.397 25.5419L112.212 24.5591C105.338 25.8505 100.209 30.9716 95.0865 35.4668C89.913 40.0071 84.723 43.9479 77.5977 43.4034L77.5215 44.4005ZM112.396 25.5419C115.544 24.951 119.029 25.4738 121.557 27.4368L122.171 26.6469C119.363 24.4673 115.568 23.9291 112.212 24.5591L112.396 25.5419ZM121.557 27.4368C123.9 29.2551 125.272 32.5008 124.494 35.3863L125.459 35.6466C126.36 32.306 124.773 28.6675 122.171 26.6469L121.557 27.4368ZM124.494 35.3864C123.706 38.3098 120.759 40.2226 117.782 40.579L117.901 41.5719C121.148 41.1831 124.534 39.0808 125.459 35.6465L124.494 35.3864ZM117.783 40.5789C114.361 40.9877 110.928 39.5629 108.02 37.6423L107.469 38.4767C110.459 40.4518 114.137 42.0216 117.901 41.5719L117.783 40.5789ZM108.02 37.6423C102.802 34.1959 98.5911 28.2785 98.5533 21.894L97.5533 21.8999C97.5937 28.7127 102.061 34.9054 107.469 38.4768L108.02 37.6423ZM98.5533 21.894C98.5205 16.4326 102.248 11.4681 107.468 9.9699L107.192 9.00871C101.541 10.6306 97.5179 15.9904 97.5533 21.9L98.5533 21.894ZM107.468 9.96991C112.887 8.41491 117.622 12.0725 118.792 17.5133L119.77 17.3029C118.507 11.4354 113.296 7.2573 107.192 9.0087L107.468 9.96991ZM118.792 17.5132C120.095 23.5738 116.71 29.2404 111.885 32.8272L112.481 33.6298C117.489 29.9072 121.185 23.8849 119.77 17.303L118.792 17.5132ZM111.885 32.8272C106.875 36.5512 100.3 38.6318 93.8719 38.5492C87.4472 38.4665 81.2077 36.2252 76.8176 31.3539L76.0748 32.0234C80.6889 37.1432 87.2168 39.4637 93.859 39.5491C100.498 39.6345 107.289 37.4895 112.481 33.6298L111.885 32.8272ZM76.8176 31.3539C72.9665 27.0806 70.77 21.0669 71.5345 15.3187L70.5433 15.1868C69.7351 21.2631 72.0542 27.562 76.0748 32.0234L76.8176 31.3539ZM71.5345 15.3187C72.3198 9.41841 76.6711 3.74087 82.6275 2.81372L82.4737 1.82562C75.9686 2.83818 71.3708 8.96898 70.5433 15.1868L71.5345 15.3187ZM82.6275 2.81373C85.4199 2.3793 88.3307 3.25546 90.4628 5.00004C92.5887 6.73958 93.9157 9.31893 93.609 12.297L94.6038 12.3995C94.9501 9.03707 93.4406 6.14454 91.096 4.22611C88.7576 2.31273 85.564 1.34485 82.4737 1.82561L82.6275 2.81373ZM93.609 12.2971C93.2608 15.681 91.4089 18.3232 88.8498 20.2422C86.2845 22.1659 83.0259 23.3467 79.9385 23.7861L80.0794 24.7761C83.302 24.3175 86.7265 23.0843 89.4497 21.0423C92.179 18.9956 94.2208 16.1204 94.6038 12.3994L93.609 12.2971ZM79.9385 23.7861C76.3224 24.3007 72.6335 24.1283 68.9373 23.9447L68.8877 24.9435C72.5697 25.1264 76.3534 25.3063 80.0794 24.7761L79.9385 23.7861ZM68.9373 23.9447C64.7888 23.7392 60.6411 23.5287 56.492 23.3211L56.442 24.3199C60.59 24.5274 64.7392 24.738 68.8878 24.9435L68.9373 23.9447ZM56.4921 23.3211C52.4138 23.1166 48.3357 22.9121 44.2577 22.7076C40.1797 22.5031 36.1016 22.2986 32.0233 22.0941L31.9733 23.0929C36.0515 23.2974 40.1296 23.5019 44.2076 23.7064C48.2857 23.9109 52.3637 24.1154 56.442 24.3199L56.4921 23.3211ZM32.0233 22.0941C28.0238 21.8937 24.024 21.6932 20.0242 21.4928C16.0244 21.2923 12.0246 21.0919 8.02503 20.8914L7.97497 21.8902C11.9745 22.0906 15.9743 22.2911 19.9741 22.4915C23.9739 22.692 27.9737 22.8924 31.9733 23.0929L32.0233 22.0941Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"39px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxfn08-container\",layoutDependency:layoutDependency,layoutId:\"Bpzn5wMI7-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Bpzn5wMI7\",layoutId:\"Bpzn5wMI7\",style:{height:\"100%\",width:\"100%\"},variant:\"qNV5gQUtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bp3mtp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"hS9TVAsnr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Remote Work Obstacles\"})}),className:\"framer-50tzsl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VArSBCSMP\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's innovative tools and strategies bridge the gap, fostering collaboration, connection, and a sense of community among distributed teams.\"})}),className:\"framer-4idukh\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"njVgf1RcT\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y8p0hk\",\"data-framer-name\":\"STUNTED\",layoutDependency:layoutDependency,layoutId:\"y84xOKIii\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ww0ncg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Z4YjNpZdW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"46px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uo0hjz-container\",layoutDependency:layoutDependency,layoutId:\"Oqb1rlfpn-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Oqb1rlfpn\",layoutId:\"Oqb1rlfpn\",style:{height:\"100%\",width:\"100%\"},variant:\"MnKh2MqFC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ta8aqd\",\"data-framer-name\":\"Vector'\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:149,layoutDependency:layoutDependency,layoutId:\"sU1xarO8H\",svg:'<svg width=\"149\" height=\"113\" viewBox=\"0 0 149 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.958984\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 9.79877C16.2987 9.49481 15.8059 9.49481 15.5019 9.79877L11.4136 13.887L9.40099 11.8744C9.09703 11.5704 8.6042 11.5704 8.30024 11.8744C7.99627 12.1783 7.99627 12.6712 8.30024 12.9751L11.4136 16.0885L16.6026 10.8995C16.9066 10.5956 16.9066 10.1027 16.6026 9.79877Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"44.5464\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 53.3852C16.2987 53.0812 15.8059 53.0812 15.5019 53.3852L11.4136 57.4734L9.40099 55.4608C9.09703 55.1568 8.6042 55.1568 8.30024 55.4608C7.99627 55.7648 7.99627 56.2576 8.30024 56.5616L11.4136 59.675L16.6026 54.486C16.9066 54.182 16.9066 53.6892 16.6026 53.3852Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"88.1343\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M35 16.7776C45.0992 16.7776 55.4821 17.1659 65.4319 15.1759C66.9556 14.8712 71.6457 14.1438 71.2068 11.6199C70.8554 9.59958 68.0433 9.95682 66.6369 10.1652C65.1267 10.3889 61.4619 13.5264 63.6245 14.9849C66.6112 16.9992 69.6725 17.0655 73.1758 17.0421C81.0837 16.9894 89.0144 16.1328 96.8631 15.2494C100.305 14.862 104.524 14.1382 107.972 14.8086C108.448 14.9011 110.764 15.7264 110.235 15.2935C109.554 14.7361 107.94 12.5262 108.707 11.6199C110.319 9.71424 114.068 9.85778 116.215 10.3121C120.314 11.1791 123.117 14.9816 127.457 14.1326C130.667 13.5045 133.778 12.6977 137.037 12.2812C140.199 11.877 143.214 12.4408 146.354 12.8102\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n<path d=\"M35 57.7788C39.0356 55.5974 42.5405 52.3726 47.049 51.1364C49.8807 50.36 52.2019 52.8406 54.0776 54.6121C62.0587 62.1498 74.6652 59.8126 84.2001 57.2381C86.2313 56.6897 102.34 52.6486 97.4077 47.8924C92.9138 43.5591 84.4156 47.5116 82.8099 52.9129C80.4137 60.9726 94.4877 58.342 98.3346 57.6243C107.048 55.9987 115.734 52.686 124.672 54.1487C126.788 54.4949 128.806 55.636 130.929 55.6934C133.357 55.759 135.642 54.9983 138.035 54.9983C141.778 54.9983 145.757 58.2433 149.002 54.9983\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kjl5a\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"B6DNs4Cjf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stunted Employee Development\"})}),className:\"framer-1yugq7b\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vb46f66_S\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople identifies and addresses skill gaps, providing personalized development pathways that unlock employees' full potential and drive business success.\"})}),className:\"framer-zm8nxv\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GIEf0lwhG\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwdfw2\",\"data-framer-name\":\"Inefficient Meetings\",layoutDependency:layoutDependency,layoutId:\"CoLIeorps\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-khqxje\",\"data-framer-name\":\"Vid\",layoutDependency:layoutDependency,layoutId:\"UA8hW1l_s\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"230px\",src:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png\",srcSet:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png 535w\"},className:\"framer-1do15yv\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"xmXISDT9o\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"4.54px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"6.49px\"},children:\"    \"})}),className:\"framer-1g8wle7\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"xcwa4YxGw\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8t3ojy\",\"data-framer-name\":\"Frame 1707479561\",layoutDependency:layoutDependency,layoutId:\"KG2ndvuKY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eotpie\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"VdOvPV2Lo\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13y6ujr\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"lZ3D2kFBl\",style:{backgroundColor:\"rgb(31, 31, 31)\",borderBottomLeftRadius:49.81,borderBottomRightRadius:49.81,borderTopLeftRadius:49.81,borderTopRightRadius:49.81},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-exg1t8\",\"data-framer-name\":\"People\",layoutDependency:layoutDependency,layoutId:\"cPQ7efX6x\",style:{borderBottomLeftRadius:1.68,borderBottomRightRadius:1.68,borderTopLeftRadius:1.68,borderTopRightRadius:1.68}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"7.78px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"6.23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"})}),className:\"framer-11s94de\",\"data-framer-name\":\"Ahmed Taleb\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"uzEO_r2e9\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"4.670104026794434px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/azeVae0quZi1iOhR1lH1TT8OhA.png\"},className:\"framer-1xtyy66\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"ThTlxPZtp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZZ6gK8QnPfRi6vrgctBxBL00Bs.png\"},className:\"framer-1q7jseh\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"VlZX_RGbE\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cm2kej\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"RtFXXnfrQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tw1b5k\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HQSEnyEsU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inefficient Meetings\"})}),className:\"framer-2gdaru\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Dmih7Alwx\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople optimizes meeting workflows, ensuring that every discussion is purposeful, engaging, and drives tangible outcomes.\"})}),className:\"framer-1slonip\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gKh1_A_41\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:49,delay:0,mass:1,stiffness:166,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3tp9yt-container\",layoutDependency:layoutDependency,layoutId:\"B_qxGTVqG-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:10,arrowPadding:-11,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:43,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:24,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"B_qxGTVqG\",intervalControl:4.1,itemAmount:1,layoutId:\"B_qxGTVqG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",dotsBlur:0,dotsFill:\"var(--token-37e98827-ba51-4d7f-9dc9-f9c31d9347bc, rgb(254, 187, 12))\",dotsGap:10,dotsInset:0,dotSize:4,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gtawqs\",\"data-framer-name\":\"Breakdowns in Communication\",layoutDependency:layoutDependency,layoutId:\"qxTZHBAu2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1beevuw\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"iPK03leec\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l1krdz\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"fFfIInU9z\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-uaay2f\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"fzmQGLKwY\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Breakdowns in Communication\"})}),className:\"framer-yzb2q2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mnq1xCNoT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople helps break down communication barriers, fostering a culture of openness, transparency, and collective success.\"})}),className:\"framer-1s8p5i1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kmvaSelO4\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzcd2z\",layoutDependency:layoutDependency,layoutId:\"ft6leVIH9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1owx6o1\",\"data-border\":true,\"data-framer-name\":\"Layer_1\",layoutDependency:layoutDependency,layoutId:\"nSwcnUBuT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ekqo8o\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hsFVk67jr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 219 136\"><path d=\"M 2 68.773 C 25.386 68.808 60.079 68.841 83.463 68.718 C 90.238 68.567 97.027 69.325 103.707 70.456 C 108.065 71.194 112.434 72.223 116.338 74.292 C 120.241 76.362 123.67 79.578 125.26 83.688 C 125.8 85.086 126.05 86.586 125.993 88.083 C 125.684 95.992 118.259 103.3 109.206 101.657 C 100.751 100.416 95.744 90.49 97.247 82.106 C 98.751 73.721 104.962 66.952 111.66 61.661 C 117.688 56.899 124.545 52.83 132.141 51.629 C 140.112 50.366 148.566 52.479 154.995 57.341 C 161.425 62.203 165.743 69.747 166.326 77.56 C 169.914 99.177 155.315 121.346 135.154 130.09 C 131.056 131.867 126.705 133.188 122.239 133.387 C 109.116 133.968 97.998 124.221 90.1 114.304 C 82.957 105.337 82.612 92.155 87.574 81.829 C 92.536 71.502 101.354 63.648 109.283 55.361 C 116.568 47.748 123.418 39.262 126.632 28.653 C 128.139 23.102 129.655 17.256 128.267 11.673 C 126.88 6.091 121.497 1.046 115.833 2.154 C 110.771 3.144 107.803 8.208 105.009 12.528 C 100.479 19.53 94.083 25.884 85.292 27.327 C 75.146 28.992 64.491 30.029 56.932 36.978 C 49.373 43.925 44.93 54.122 44.995 64.37 C 45.009 66.483 45.294 68.6 46.023 70.583 C 48.361 76.951 53.521 80.47 56.66 81.13 C 62.332 82.32 68.503 79.784 70.819 74.491 C 73.134 69.197 72.074 62.986 69.77 57.686 C 68.452 54.654 66.564 51.623 63.551 50.24 C 60.538 48.86 56.248 49.922 55.21 53.06 C 54.158 56.239 57.068 59.667 60.371 60.278 C 63.673 60.889 67.012 59.452 69.863 57.682 C 81.065 50.729 88.268 37.791 88.256 24.639 C 88.252 20.46 87.33 15.864 84.011 13.311 C 80.585 10.672 75.359 11.169 71.969 13.853 C 68.58 16.539 66.915 20.981 66.854 25.295 C 66.793 29.611 68.166 33.829 69.956 37.758 C 73.648 45.864 79.274 53.194 86.616 58.266 C 93.959 63.337 103.064 66.041 111.945 65.071 C 115.768 64.653 119.495 63.579 123.101 62.248 C 136.532 57.288 148.999 48.102 154.43 35.655 C 155.667 32.079 156.917 28.456 157.2 24.684 C 157.484 20.912 156.7 16.914 154.266 14.014 C 151.868 11.157 148.177 9.692 144.522 8.918 C 130.894 6.032 116.306 11.632 106.448 21.442 C 102.972 24.9 99.919 29.022 98.893 33.809 C 97.866 38.596 99.265 44.124 103.248 46.989 C 108.389 50.686 115.561 48.903 121.404 46.447 C 125.662 44.656 129.923 42.488 132.916 38.977 C 135.909 35.468 137.377 30.328 135.454 26.139 C 132.874 20.523 124.115 19.131 119.912 23.671 C 115.555 28.376 117.388 36.625 122.444 40.572 C 127.501 44.52 134.575 44.897 140.857 43.552 C 147.137 42.207 152.982 39.362 159.092 37.391 C 161.748 36.534 164.543 35.835 167.313 36.183 C 170.084 36.531 172.846 38.125 173.879 40.711 C 175.394 44.505 172.709 48.781 169.333 51.098 C 167.1 52.632 164.35 53.684 161.691 53.152 C 159.033 52.62 156.688 50.085 157.096 47.415 C 157.573 44.289 161.23 42.696 164.403 42.61 C 172.338 42.396 179.923 48.734 180.541 56.824 C 182.565 69.462 179.255 82.863 171.573 93.121 C 168.194 97.634 163.892 101.624 158.645 103.711 C 153.397 105.798 147.119 105.761 142.351 102.741 C 137.582 99.719 134.839 93.447 136.715 88.136 C 137.184 86.806 137.98 85.506 139.243 84.874 C 140.851 84.069 142.847 84.544 144.368 85.504 C 147.665 87.588 149.285 91.725 149.031 95.607 C 148.777 99.489 146.887 103.112 144.445 106.148 C 136.451 116.085 121.861 120.146 109.855 115.777 C 105.049 114.028 100.199 110.175 100.321 105.076 C 100.43 100.573 104.759 96.915 109.264 96.559 C 113.768 96.204 118.149 98.558 121.266 101.82 C 123.309 103.958 124.949 106.562 125.518 109.46 C 126.923 116.608 121.282 123.667 114.454 126.265 C 107.626 128.863 99.945 129.34 93.095 128.283 C 86.561 127.276 79.696 124.464 75.083 119.744 C 69.741 114.277 68.927 105.633 70.917 98.266 C 73.002 90.551 78.243 82.928 86.004 80.914 C 91.556 79.472 96.374 79.455 101.334 80.641 C 104 81.279 106.396 82.734 107.494 85.057 C 108.631 87.46 107.457 90.349 105.778 92.412 C 102.477 96.469 97.368 98.737 92.203 99.623 C 87.038 100.508 81.749 100.151 77.67 99.332 C 70.442 98.158 62.377 96.463 58.359 90.362 C 54.426 84.389 56.077 76.034 60.495 70.408 C 64.915 64.783 71.524 61.35 78.08 58.458 C 82.518 56.5 87.058 54.703 91.805 53.7 C 106.481 50.592 122.649 53.575 134.528 60.718 C 141.714 65.038 148.782 72.521 151.78 75.791 C 153.642 77.819 155.537 79.877 157.892 81.31 C 160.247 82.744 163.167 83.492 165.804 82.683 C 167.024 82.31 168.129 81.622 169.12 80.821 C 172.915 77.75 175.128 72.704 174.417 67.885 C 174.155 66.116 173.485 64.345 172.194 63.102 C 169.857 60.852 165.958 60.891 163.118 62.466 C 160.278 64.04 158.324 66.825 156.797 69.684 C 155.258 72.564 154.042 75.618 153.171 79.031 C 151.1 87.776 145.917 95.756 138.76 101.223 C 135.682 103.575 132.273 105.46 128.821 107.226 C 124.119 109.629 118.281 111.787 113.81 108.981 C 110.138 106.678 108.954 101.633 110.073 97.457 C 111.191 93.28 114.139 89.84 117.286 86.865 C 124.868 79.69 134.173 74.279 144.258 71.528 C 154.753 68.665 166.507 68.704 177.387 68.761 C 195.084 68.851 217 68.765 217 68.765\" fill=\"transparent\" stroke=\"rgb(31,31,31)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11891795588,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-119qzgs-container\",layoutDependency:layoutDependency,layoutId:\"mvshNBd1H-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"mvshNBd1H\",layoutId:\"mvshNBd1H\",style:{height:\"100%\",width:\"100%\"},variant:\"I32:8041;95:12933\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hj9qn-container\",layoutDependency:layoutDependency,layoutId:\"UQjMAFVUL-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"UQjMAFVUL\",layoutId:\"UQjMAFVUL\",style:{height:\"100%\",width:\"100%\"},variant:\"OxulWU4Ha\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-40j4sz\",\"data-framer-name\":\"Onboarding\",layoutDependency:layoutDependency,layoutId:\"Ce5Qvdjec\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16y7902\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"vfYmwNqeC\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ks4r4e\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"BmqUmqmuk\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pez70i\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"adKjSveKO\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Elongated Onboarding\"})}),className:\"framer-1mpv9id\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m8ALF5oLo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople's personalized approach accelerates the onboarding journey, equipping new employees with the insights and tools they need to make a meaningful impact from day one.\"})}),className:\"framer-w89kdm\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wGhVX_3cU\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfkh6g\",layoutDependency:layoutDependency,layoutId:\"y6mxturNA\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12za5m3\",\"data-border\":true,\"data-framer-name\":\"Layer_1\",layoutDependency:layoutDependency,layoutId:\"Ng50Yqlxk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fiqzb8\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:172,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"Q0QRTiV5s\",svg:'<svg width=\"211\" height=\"172\" viewBox=\"0 0 211 172\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M208.353 24.384C208.549 24.1889 208.549 23.8723 208.354 23.6769L205.175 20.492C204.98 20.2965 204.663 20.2962 204.468 20.4913C204.272 20.6864 204.272 21.003 204.467 21.1984L207.293 24.0294L204.462 26.8553C204.266 27.0503 204.266 27.3669 204.461 27.5624C204.656 27.7578 204.973 27.7581 205.168 27.563L208.353 24.384ZM175.383 34.0191L174.883 34.0196L175.383 34.0191ZM175.396 46.5057L174.896 46.5062L175.396 46.5057ZM142.79 66.5137L143.29 66.5132L142.79 66.5137ZM132.793 89.0071L132.793 88.5071L132.793 89.0071ZM110.197 99.0046L109.697 99.0051L110.197 99.0046ZM120.206 88.9948L120.207 88.4948L120.206 88.9948ZM100.199 121.499L100.199 121.999L100.199 121.499ZM67.6067 153.99L67.6062 154.49L67.6067 153.99ZM44.9995 154.468L67.6062 154.49L67.6072 153.49L45.0005 153.468L44.9995 154.468ZM78.1165 143.98L78.1042 131.496L77.1042 131.497L77.1165 143.981L78.1165 143.98ZM87.6135 121.986L100.199 121.999L100.2 120.999L87.6145 120.986L87.6135 121.986ZM110.709 111.488L110.697 99.0041L109.697 99.0051L109.709 111.489L110.709 111.488ZM120.206 89.4948L132.792 89.5071L132.793 88.5071L120.207 88.4948L120.206 89.4948ZM143.303 78.9962L143.29 66.5132L142.29 66.5142L142.303 78.9972L143.303 78.9962ZM152.799 57.0032L165.386 57.0156L165.386 56.0156L152.8 56.0032L152.799 57.0032ZM175.896 46.5052L175.883 34.0186L174.883 34.0196L174.896 46.5062L175.896 46.5052ZM185.392 24.5092L208 24.5301L208 23.5301L185.393 23.5092L185.392 24.5092ZM175.883 34.0186C175.878 28.7648 180.138 24.5044 185.392 24.5092L185.393 23.5092C179.586 23.5039 174.878 28.2128 174.883 34.0196L175.883 34.0186ZM165.386 57.0156C171.193 57.0213 175.902 52.3123 175.896 46.5052L174.896 46.5062C174.901 51.7602 170.64 56.0207 165.386 56.0156L165.386 57.0156ZM143.29 66.5132C143.284 61.2589 147.545 56.9981 152.799 57.0032L152.8 56.0032C146.993 55.9976 142.284 60.7069 142.29 66.5142L143.29 66.5132ZM132.792 89.5071C138.6 89.5128 143.309 84.8034 143.303 78.9962L142.303 78.9972C142.308 84.2514 138.048 88.5123 132.793 88.5071L132.792 89.5071ZM110.697 99.0041C110.691 93.7501 114.952 89.4896 120.206 89.4948L120.207 88.4948C114.4 88.4891 109.691 93.1981 109.697 99.0051L110.697 99.0041ZM100.199 121.999C106.006 122.004 110.715 117.295 110.709 111.488L109.709 111.489C109.714 116.743 105.454 121.004 100.2 120.999L100.199 121.999ZM78.1042 131.496C78.099 126.242 82.3595 121.981 87.6135 121.986L87.6145 120.986C81.8075 120.981 77.0985 125.69 77.1042 131.497L78.1042 131.496ZM67.6062 154.49C73.4133 154.496 78.1223 149.787 78.1165 143.98L77.1165 143.981C77.1217 149.235 72.8612 153.495 67.6072 153.49L67.6062 154.49Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M74.9588 90.0412L79.0412 90.0412L79.0412 85.9588L74.9588 85.9588L74.9588 90.0412ZM114.5 51C114.5 50.7239 114.276 50.5 114 50.5L109.5 50.5C109.224 50.5 109 50.7239 109 51C109 51.2761 109.224 51.5 109.5 51.5L113.5 51.5L113.5 55.5C113.5 55.7761 113.724 56 114 56C114.276 56 114.5 55.7761 114.5 55.5L114.5 51ZM77.3536 88.3536L114.354 51.3536L113.646 50.6464L76.6464 87.6464L77.3536 88.3536Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kw2q4s-container\",layoutDependency:layoutDependency,layoutId:\"Kzslugg57-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"Kzslugg57\",layoutId:\"Kzslugg57\",style:{height:\"100%\",width:\"100%\"},variant:\"qjRoLbcu8\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oo04v1\",\"data-framer-name\":\"Retention Challenge\",layoutDependency:layoutDependency,layoutId:\"DRmm8s2T0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kffztr\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"Qjzcsg7p5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-trb30q\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"wJBh_zyK3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ut2pc9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"WhweKcIT2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Retention Challenges\"})}),className:\"framer-1aevkoq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H2JY5sqB5\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople empowers managers with the skills and expertise to lead effectively, boosting employee satisfaction, retention, and overall well-being.\"})}),className:\"framer-lka37j\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SMKaMD2AG\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tnigpl\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"CgPCqViCZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(255, 252, 245))\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8loahn\",\"data-framer-name\":\"Background\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UhNt1GVZT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 143\"><path d=\"M 90.138 132.222 C 90.228 132.047 90.158 131.834 89.983 131.745 L 87.135 130.301 C 86.96 130.213 86.746 130.282 86.658 130.456 C 86.569 130.63 86.638 130.844 86.813 130.933 L 89.344 132.216 L 88.057 134.74 C 87.968 134.914 88.038 135.127 88.213 135.216 C 88.387 135.305 88.601 135.236 88.69 135.061 Z M 89.712 131.724 C 83.462 133.755 76.926 134.784 70.291 134.784 L 70.291 135.492 C 77 135.492 83.61 134.451 89.932 132.397 Z M 70.291 134.784 C 63.677 134.784 57.162 133.76 50.93 131.744 L 50.711 132.417 C 57.015 134.457 63.603 135.492 70.291 135.492 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 33.041 21.212 L 32.831 20.927 L 32.831 20.927 Z M 51.01 12.328 C 51.098 12.154 51.029 11.941 50.854 11.852 L 48.005 10.411 C 47.83 10.322 47.616 10.392 47.527 10.566 C 47.439 10.74 47.508 10.953 47.683 11.042 L 50.216 12.323 L 48.93 14.849 C 48.842 15.023 48.912 15.236 49.086 15.324 C 49.261 15.413 49.475 15.343 49.564 15.169 Z M 19.465 35.324 C 23.319 30.021 27.958 25.368 33.251 21.498 L 32.831 20.927 C 27.478 24.841 22.787 29.546 18.89 34.909 Z M 33.251 21.498 C 38.61 17.579 44.516 14.552 50.803 12.505 L 50.583 11.832 C 44.223 13.903 38.251 16.964 32.831 20.927 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 19.2 109.548 C 19.394 109.578 19.576 109.447 19.606 109.253 L 20.104 106.107 C 20.134 105.913 20.002 105.732 19.808 105.702 C 19.615 105.671 19.433 105.803 19.402 105.996 L 18.96 108.793 L 16.155 108.353 C 15.961 108.323 15.779 108.454 15.749 108.647 C 15.718 108.841 15.851 109.022 16.044 109.052 Z M 19.543 108.99 C 11.698 98.242 7.543 85.512 7.53 72.171 L 6.82 72.172 C 6.833 85.662 11.036 98.538 18.969 109.406 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 133.655 71.717 C 133.517 71.579 133.292 71.579 133.153 71.717 L 130.894 73.97 C 130.756 74.108 130.756 74.332 130.894 74.47 C 131.033 74.608 131.258 74.608 131.396 74.47 L 133.405 72.468 L 135.413 74.47 C 135.551 74.608 135.776 74.608 135.915 74.47 C 136.054 74.332 136.054 74.108 135.915 73.97 Z M 133.05 71.968 L 133.05 72.106 L 133.76 72.106 L 133.76 71.968 Z M 133.05 72.106 C 133.05 85.447 128.91 98.183 121.076 108.938 L 121.65 109.354 C 129.572 98.477 133.76 85.595 133.76 72.106 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 107.378 21.097 L 107.586 20.811 L 107.586 20.811 Z M 121.228 35.304 C 121.422 35.334 121.604 35.202 121.634 35.009 L 122.128 31.862 C 122.158 31.669 122.026 31.488 121.832 31.457 C 121.638 31.427 121.457 31.559 121.426 31.752 L 120.988 34.55 L 118.182 34.112 C 117.988 34.082 117.806 34.214 117.776 34.407 C 117.746 34.601 117.878 34.782 118.072 34.812 Z M 89.586 12.443 C 95.882 14.473 101.798 17.48 107.168 21.383 L 107.586 20.811 C 102.155 16.864 96.172 13.823 89.805 11.77 Z M 107.168 21.383 C 112.474 25.237 117.127 29.873 120.997 35.163 L 121.57 34.746 C 117.656 29.397 112.952 24.708 107.586 20.811 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12145515456,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"61px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lw0rm4-container\",layoutDependency:layoutDependency,layoutId:\"uaEGRSTiC-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"uaEGRSTiC\",layoutId:\"uaEGRSTiC\",style:{height:\"100%\",width:\"100%\"},variant:\"XWwAWeltu\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mirps8\",\"data-framer-name\":\"Stunted Employee Development:\",layoutDependency:layoutDependency,layoutId:\"INCq0C09a\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9uz2f5\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"QgZDhszEM\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8fcyt\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"yqGfpa9KG\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xuw6q\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"U5HtcNUI8\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Stunted Employee Development\"})}),className:\"framer-1w297gy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EilZeoa3m\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople identifies and addresses skill gaps, providing personalized development pathways that unlock employees' full potential and drive business success.\"})}),className:\"framer-1tuw13d\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hn1Ckn7Wi\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j0qx3i\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"XGXJ5bwsx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:19.54,borderBottomRightRadius:19.54,borderTopLeftRadius:19.54,borderTopRightRadius:19.54,boxShadow:\"0px 2.605863094329834px 0px 0px rgb(31, 31, 31)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"68px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1viguwk-container\",layoutDependency:layoutDependency,layoutId:\"isYC0pSn_-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"isYC0pSn_\",layoutId:\"isYC0pSn_\",style:{height:\"100%\",width:\"100%\"},variant:\"MnKh2MqFC\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bywy9d\",layoutDependency:layoutDependency,layoutId:\"hJ27S9u6b\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-90rjpk\",\"data-framer-name\":\"Frame 427322467\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"JiO9IL20W\",svg:'<svg width=\"25\" height=\"113\" viewBox=\"0 0 25 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.958984\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 9.79877C16.2987 9.49481 15.8059 9.49481 15.5019 9.79877L11.4136 13.887L9.40099 11.8744C9.09703 11.5704 8.6042 11.5704 8.30024 11.8744C7.99627 12.1783 7.99627 12.6712 8.30024 12.9751L11.4136 16.0885L16.6026 10.8995C16.9066 10.5956 16.9066 10.1027 16.6026 9.79877Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"44.5464\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 53.3852C16.2987 53.0812 15.8059 53.0812 15.5019 53.3852L11.4136 57.4734L9.40099 55.4608C9.09703 55.1568 8.6042 55.1568 8.30024 55.4608C7.99627 55.7648 7.99627 56.2576 8.30024 56.5616L11.4136 59.675L16.6026 54.486C16.9066 54.182 16.9066 53.6892 16.6026 53.3852Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"88.1343\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxv47t\",layoutDependency:layoutDependency,layoutId:\"oc27Pk4HX\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18vt6vo\",\"data-framer-name\":\"Vector 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"St9hnE3Pg\",svg:'<svg width=\"114\" height=\"10\" viewBox=\"-1 -1 114 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 6.77762C10.0992 6.77762 20.4821 7.1659 30.4319 5.17594C31.9556 4.87121 36.6457 4.14383 36.2068 1.61992C35.8554 -0.40042 33.0433 -0.043183 31.6369 0.165182C30.1267 0.388905 26.4619 3.52642 28.6245 4.98492C31.6112 6.99919 34.6725 7.06548 38.1758 7.04212C46.0837 6.9894 54.0144 6.13282 61.8631 5.24941C65.3047 4.86205 69.5245 4.13824 72.972 4.80859C73.4475 4.90106 75.764 5.72638 75.2349 5.2935C74.5537 4.73615 72.9398 2.52625 73.7067 1.61992C75.3192 -0.285764 79.0676 -0.142222 81.2155 0.312125C85.314 1.17913 88.1173 4.98164 92.4566 4.13265C95.6674 3.50445 98.7782 2.69774 102.037 2.28116C105.199 1.87703 108.214 2.4408 111.354 2.81016\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4vr9zz\",\"data-framer-name\":\"Vector 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"HXcz_d9LX\",svg:'<svg width=\"116\" height=\"16\" viewBox=\"-1 -1 116 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 11.7788C4.03559 9.59741 7.54045 6.37262 12.049 5.1364C14.8807 4.35998 17.2019 6.84061 19.0776 8.61208C27.0587 16.1498 39.6652 13.8126 49.2001 11.2381C51.2313 10.6897 67.34 6.64857 62.4077 1.89244C57.9138 -2.44095 49.4156 1.51159 47.8099 6.91286C45.4137 14.9726 59.4877 12.342 63.3346 11.6243C72.0479 9.9987 80.7341 6.68602 89.6725 8.14866C91.7885 8.49491 93.8064 9.63604 95.9287 9.6934C98.3567 9.75902 100.642 8.99827 103.035 8.99827C106.778 8.99827 110.757 12.2433 114.002 8.99827\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4stxk\",\"data-framer-name\":\"Remote Work Obstacles\",layoutDependency:layoutDependency,layoutId:\"WG_vOkY_W\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13u7j9x\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"LVRqdPj_B\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hlnubn\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"h323ze9U6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xloggq\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"aF2dTDHnB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Remote Work Obstacles\"})}),className:\"framer-touhvi\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q5vC1xqSK\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople's innovative tools and strategies bridge the gap, fostering collaboration, connection, and a sense of community among distributed teams.\"})}),className:\"framer-h0vy7u\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7gyLDjk1\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4k0dfs\",\"data-border\":true,\"data-framer-name\":\"Obstacles\",layoutDependency:layoutDependency,layoutId:\"YHMwSWR_B\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kd1l2b\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:276,layoutDependency:layoutDependency,layoutId:\"WQ4yJat6O\",svg:'<svg width=\"276\" height=\"53\" viewBox=\"-1 -1 276 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M274.29 25.5858C274.515 25.4255 274.567 25.1133 274.407 24.8884L271.794 21.2247C271.634 20.9999 271.322 20.9476 271.097 21.1079C270.872 21.2683 270.82 21.5805 270.98 21.8053L273.303 25.062L270.046 27.3845C269.821 27.5449 269.769 27.8571 269.929 28.0819C270.09 28.3068 270.402 28.359 270.627 28.1987L274.29 25.5858ZM249.552 25.8065L249.443 25.3185L249.443 25.3185L249.552 25.8065ZM237.985 29.5885L237.785 29.13L237.785 29.1301L237.985 29.5885ZM227.097 35.4334L226.855 34.9961L226.855 34.9961L227.097 35.4334ZM215.972 38.5113L215.919 39.0085L215.919 39.0085L215.972 38.5113ZM208.266 32.4142L208.752 32.2947L208.752 32.2946L208.266 32.4142ZM207.488 20.9837L207.002 21.0991L207.002 21.0992L207.488 20.9837ZM201.794 14.68L201.71 15.1728L201.71 15.1729L201.794 14.68ZM193.352 18.726L192.95 18.4299L192.95 18.43L193.352 18.726ZM188.512 29.3069L188.055 29.1038L188.055 29.1039L188.512 29.3069ZM175.26 47.0304L175.546 47.4407L175.546 47.4407L175.26 47.0304ZM157.104 50.1318L156.96 50.6105L156.96 50.6105L157.104 50.1318ZM157.402 20.6035L157.608 21.0593L157.608 21.0593L157.402 20.6035ZM181.337 21.3299L181.52 20.8649L181.52 20.8649L181.337 21.3299ZM193.62 39.1637L193.142 39.0188L193.142 39.0188L193.62 39.1637ZM176.936 44.2741L176.675 44.7006L176.675 44.7006L176.936 44.2741ZM168.717 23.4386L169.214 23.4887L169.214 23.4887L168.717 23.4386ZM172.032 10.5671L171.579 10.3555L171.579 10.3556L172.032 10.5671ZM180.307 3.08298L180.206 2.5932L180.206 2.59321L180.307 3.08298ZM188.706 8.23788L188.234 8.40443L188.235 8.40455L188.706 8.23788ZM187.11 20.4662L187.565 20.6743L187.565 20.6743L187.11 20.4662ZM173.639 38.5993L173.336 38.2016L173.336 38.2016L173.639 38.5993ZM154.297 43.2532L154.41 42.7661L154.41 42.7661L154.297 43.2532ZM145.938 38.7894L145.584 39.1427L145.585 39.1428L145.938 38.7894ZM141.115 29.064L141.603 28.9511L141.603 28.9509L141.115 29.064ZM134.935 8.33997L135.33 8.03422L135.33 8.0342L134.935 8.33997ZM117.98 0.0707757L117.944 0.569477L117.944 0.569478L117.98 0.0707757ZM96.1075 6.05295L95.8638 5.61632L95.8638 5.61635L96.1075 6.05295ZM85.4437 12.8108L85.1635 12.3966L85.1634 12.3967L85.4437 12.8108ZM75.9209 19.9405L76.2567 20.311L76.2567 20.311L75.9209 19.9405ZM67.4651 38.6322L66.9678 38.6847L66.9678 38.6847L67.4651 38.6322ZM80.4191 50.8864L80.4573 50.3878L80.4572 50.3878L80.4191 50.8864ZM120.588 29.0358L120.496 28.5445L120.495 28.5445L120.588 29.0358ZM131.64 31.344L131.333 31.7385L131.333 31.7385L131.64 31.344ZM135.239 41.1668L134.756 41.0369L134.756 41.037L135.239 41.1668ZM126.99 47.6101L127.05 48.1066L127.05 48.1066L126.99 47.6101ZM115.316 44.1145L115.592 43.6976L115.592 43.6976L115.316 44.1145ZM104.112 25.3806L104.612 25.3776L104.612 25.3776L104.112 25.3806ZM114.838 10.999L114.699 10.5185L114.699 10.5185L114.838 10.999ZM128.654 20.1776L129.143 20.0727L129.143 20.0726L128.654 20.1776ZM120.448 38.5148L120.149 38.1139L120.149 38.1139L120.448 38.5148ZM79.1319 36.73L78.7601 37.0643L78.7601 37.0643L79.1319 36.73ZM72.8804 17.6793L72.3848 17.6135L72.3848 17.6136L72.8804 17.6793ZM86.1893 2.68871L86.1122 2.19468L86.1122 2.19469L86.1893 2.68871ZM99.5492 14.3127L99.0518 14.2617L99.0518 14.2617L99.5492 14.3127ZM83.2508 28.144L83.3215 28.639L83.3215 28.639L83.2508 28.144ZM70.4221 28.3329L70.4469 27.8336L70.4469 27.8336L70.4221 28.3329ZM56.0336 27.6101L56.0085 28.1095L56.0086 28.1095L56.0336 27.6101ZM27.7449 26.1879L27.77 25.6885L27.77 25.6885L27.7449 26.1879ZM-2.66667 24.7939C-2.66667 26.2666 -1.47276 27.4605 0 27.4605C1.47276 27.4605 2.66667 26.2666 2.66667 24.7939C2.66667 23.3211 1.47276 22.1272 0 22.1272C-1.47276 22.1272 -2.66667 23.3211 -2.66667 24.7939ZM274.083 24.6856C265.904 23.3163 257.545 23.5172 249.443 25.3185L249.66 26.2946C257.635 24.5216 265.864 24.3235 273.917 25.6719L274.083 24.6856ZM249.443 25.3185C245.443 26.2081 241.545 27.495 237.785 29.13L238.184 30.047C241.888 28.4363 245.725 27.1698 249.66 26.2946L249.443 25.3185ZM237.785 29.1301C233.957 30.7961 230.439 33.0099 226.855 34.9961L227.34 35.8707C230.989 33.8484 234.415 31.6877 238.184 30.047L237.785 29.1301ZM226.855 34.9961C223.452 36.882 219.84 38.4226 216.025 38.0142L215.919 39.0085C220.061 39.4519 223.908 37.7727 227.34 35.8707L226.855 34.9961ZM216.025 38.0142C212.588 37.6457 209.593 35.7141 208.752 32.2947L207.781 32.5336C208.751 36.4787 212.197 38.6095 215.919 39.0085L216.025 38.0142ZM208.752 32.2946C208.309 30.4979 208.334 28.6461 208.367 26.7161C208.399 24.8079 208.438 22.8214 207.975 20.8683L207.002 21.0992C207.431 22.9093 207.399 24.7681 207.367 26.6994C207.335 28.6089 207.302 30.5906 207.781 32.5337L208.752 32.2946ZM207.975 20.8683C207.257 17.842 205.3 14.7726 201.879 14.1872L201.71 15.1729C204.557 15.66 206.326 18.2489 207.002 21.0991L207.975 20.8683ZM201.879 14.1872C198.276 13.5697 194.948 15.7118 192.95 18.4299L193.755 19.0222C195.625 16.4786 198.617 14.6427 201.71 15.1728L201.879 14.1872ZM192.95 18.43C191.765 20.0417 190.926 21.8558 190.193 23.6847C189.449 25.539 188.832 27.3552 188.055 29.1038L188.969 29.5099C189.752 27.7489 190.408 25.8353 191.121 24.0569C191.845 22.2532 192.646 20.5317 193.755 19.0221L192.95 18.43ZM188.055 29.1039C185.065 35.8331 181.001 42.4211 174.974 46.6202L175.546 47.4407C181.793 43.0878 185.95 36.3033 188.969 29.5099L188.055 29.1039ZM174.974 46.6202C169.749 50.2602 163.353 51.4968 157.249 49.6532L156.96 50.6105C163.381 52.55 170.091 51.2403 175.546 47.4407L174.974 46.6202ZM157.249 49.6532C151.415 47.891 146.841 43.1107 146.841 36.7981H145.841C145.841 43.6561 150.813 48.7538 156.96 50.6105L157.249 49.6532ZM146.841 36.7981C146.841 30.0103 151.576 23.7804 157.608 21.0593L157.197 20.1478C150.867 23.0028 145.841 29.5539 145.841 36.7981H146.841ZM157.608 21.0593C164.976 17.735 173.741 18.865 181.153 21.7949L181.52 20.8649C173.978 17.883 164.908 16.6685 157.197 20.1478L157.608 21.0593ZM181.153 21.7949C184.544 23.1355 188.181 25.4252 190.645 28.3991C193.1 31.3616 194.369 34.9685 193.142 39.0188L194.099 39.3087C195.448 34.8551 194.022 30.908 191.415 27.7611C188.817 24.6255 185.024 22.2501 181.52 20.8649L181.153 21.7949ZM193.142 39.0188C192.144 42.3121 189.533 44.3411 186.46 45.1394C183.377 45.9404 179.876 45.4862 177.197 43.8475L176.675 44.7006C179.599 46.4895 183.382 46.9723 186.712 46.1073C190.052 45.2396 192.981 42.9997 194.099 39.3087L193.142 39.0188ZM177.197 43.8475C170.426 39.7052 168.443 31.1348 169.214 23.4887L168.219 23.3884C167.432 31.1941 169.421 40.2627 176.675 44.7006L177.197 43.8475ZM169.214 23.4887C169.646 19.2028 170.673 14.6601 172.485 10.7787L171.579 10.3556C169.706 14.3667 168.659 19.0261 168.219 23.3884L169.214 23.4887ZM172.485 10.7788C174.101 7.31901 176.693 4.33574 180.407 3.57275L180.206 2.59321C176.049 3.44721 173.258 6.76059 171.579 10.3555L172.485 10.7788ZM180.407 3.57276C183.967 2.84165 187.019 4.96515 188.234 8.40443L189.177 8.07133C187.83 4.25644 184.348 1.74252 180.206 2.5932L180.407 3.57276ZM188.235 8.40455C189.608 12.289 188.371 16.5109 186.656 20.2582L187.565 20.6743C189.299 16.8857 190.689 12.3468 189.177 8.07121L188.235 8.40455ZM186.656 20.2582C183.542 27.0611 179.261 33.6888 173.336 38.2016L173.942 38.9971C180.049 34.3453 184.417 27.5536 187.565 20.6743L186.656 20.2582ZM173.336 38.2016C167.898 42.3437 161.09 44.3176 154.41 42.7661L154.184 43.7402C161.206 45.3711 168.313 43.2849 173.942 38.9971L173.336 38.2016ZM154.41 42.7661C151.371 42.0603 148.498 40.645 146.292 38.4361L145.585 39.1428C147.947 41.5079 150.998 43.0004 154.184 43.7402L154.41 42.7661ZM146.292 38.4362C143.758 35.8976 142.425 32.4982 141.603 28.9511L140.628 29.1769C141.469 32.8018 142.859 36.4125 145.584 39.1427L146.292 38.4362ZM141.603 28.9509C141.199 27.214 140.898 25.4271 140.601 23.6176C140.304 21.8132 140.01 19.9847 139.622 18.1891C138.847 14.596 137.689 11.0861 135.33 8.03422L134.539 8.64572C136.766 11.5268 137.883 14.8691 138.645 18.3999C139.026 20.1663 139.316 21.9676 139.614 23.78C139.911 25.5874 140.217 27.4043 140.628 29.177L141.603 28.9509ZM135.33 8.0342C131.176 2.65965 124.516 0.0413173 118.016 -0.427927L117.944 0.569478C124.253 1.0249 130.608 3.56029 134.539 8.64574L135.33 8.0342ZM118.016 -0.427925C110.141 -0.996714 102.572 1.87322 95.8638 5.61632L96.3511 6.48957C102.988 2.78606 110.352 0.0211555 117.944 0.569477L118.016 -0.427925ZM95.8638 5.61635C92.1678 7.67935 88.6481 10.0389 85.1635 12.3966L85.7239 13.2249C89.2109 10.8654 92.6975 8.52887 96.3512 6.48954L95.8638 5.61635ZM85.1634 12.3967C81.8871 14.614 78.5621 16.8718 75.5851 19.5701L76.2567 20.311C79.1729 17.6678 82.4392 15.4478 85.7239 13.2248L85.1634 12.3967ZM75.5852 19.57C70.2819 24.3762 66.1651 31.0881 66.9678 38.6847L67.9623 38.5796C67.2064 31.4262 71.0771 25.005 76.2567 20.311L75.5852 19.57ZM66.9678 38.6847C67.7387 45.9776 73.3093 50.8436 80.3809 51.3849L80.4572 50.3878C73.8245 49.8801 68.6781 45.3515 67.9623 38.5796L66.9678 38.6847ZM80.3809 51.3849C89.1093 52.0536 95.4177 47.1784 101.394 41.9202C107.422 36.6164 113.095 30.9559 120.681 29.5272L120.495 28.5445C112.574 30.0364 106.663 35.9524 100.733 41.1694C94.7523 46.4319 88.7299 51.0216 80.4573 50.3878L80.3809 51.3849ZM120.681 29.5272C124.336 28.8392 128.388 29.4463 131.333 31.7385L131.947 30.9494C128.723 28.4399 124.359 27.8173 120.496 28.5445L120.681 29.5272ZM131.333 31.7385C134.061 33.862 135.665 37.6554 134.756 41.0369L135.721 41.2967C136.753 37.4615 134.936 33.2757 131.947 30.9494L131.333 31.7385ZM134.756 41.037C133.834 44.4666 130.392 46.6982 126.931 47.1137L127.05 48.1066C130.783 47.6584 134.663 45.2361 135.721 41.2966L134.756 41.037ZM126.931 47.1137C122.949 47.5906 118.961 45.928 115.592 43.6976L115.04 44.5313C118.491 46.8163 122.724 48.6247 127.05 48.1066L126.931 47.1137ZM115.592 43.6976C109.545 39.6932 104.656 32.8125 104.612 25.3776L103.612 25.3835C103.659 33.2455 108.803 40.4015 115.04 44.5314L115.592 43.6976ZM104.612 25.3776C104.574 19.0108 108.908 13.2256 114.976 11.4795L114.699 10.5185C108.199 12.3889 103.572 18.5704 103.612 25.3836L104.612 25.3776ZM114.976 11.4795C121.293 9.6621 126.804 13.9411 128.165 20.2825L129.143 20.0726C127.691 13.3067 121.704 8.50341 114.699 10.5185L114.976 11.4795ZM128.165 20.2824C129.681 27.3494 125.742 33.946 120.149 38.1139L120.746 38.9158C126.522 34.6115 130.77 27.6596 129.143 20.0727L128.165 20.2824ZM120.149 38.1139C114.343 42.441 106.725 44.8576 99.277 44.7615C91.8328 44.6656 84.5968 42.0616 79.5038 36.3958L78.7601 37.0643C84.0769 42.9791 91.6016 45.6627 99.2641 45.7615C106.923 45.8602 114.758 43.3789 120.747 38.9157L120.149 38.1139ZM79.5038 36.3958C75.038 31.4277 72.4886 24.4344 73.3761 17.7451L72.3848 17.6136C71.4539 24.63 74.1251 31.908 78.7601 37.0643L79.5038 36.3958ZM73.3761 17.7451C74.2874 10.8801 79.3379 4.26396 86.2664 3.18273L86.1122 2.19469C78.6337 3.36175 73.3381 10.4326 72.3848 17.6135L73.3761 17.7451ZM86.2664 3.18274C89.5175 2.67564 92.9046 3.69818 95.3856 5.73354C97.8605 7.76384 99.4096 10.7786 99.0518 14.2617L100.047 14.3638C100.444 10.4977 98.7134 7.17003 96.0199 4.96041C93.3326 2.75586 89.6622 1.64099 86.1122 2.19468L86.2664 3.18274ZM99.0518 14.2617C98.6464 18.2112 96.4901 21.2923 93.5182 23.5266C90.5401 25.7656 86.76 27.1383 83.1802 27.649L83.3215 28.639C87.0368 28.1089 90.9832 26.6836 94.1191 24.3259C97.2613 21.9636 99.6066 18.6495 100.047 14.3638L99.0518 14.2617ZM83.1802 27.649C78.9911 28.2467 74.7191 28.0463 70.4469 27.8336L70.3972 28.8323C74.6552 29.0444 79.0222 29.2524 83.3215 28.639L83.1802 27.649ZM70.4469 27.8336C65.6508 27.5954 60.8554 27.3513 56.0586 27.1107L56.0086 28.1095C60.8041 28.35 65.601 28.5941 70.3973 28.8323L70.4469 27.8336ZM56.0587 27.1107C51.3437 26.8737 46.629 26.6367 41.9143 26.3996C37.1996 26.1626 32.485 25.9256 27.77 25.6885L27.7198 26.6873C32.4347 26.9243 37.1494 27.1613 41.8641 27.3984C46.5788 27.6354 51.2935 27.8724 56.0085 28.1095L56.0587 27.1107ZM27.77 25.6885C23.146 25.4562 18.5218 25.2239 13.8975 24.9915C9.27328 24.7592 4.64904 24.5268 0.0250919 24.2945L-0.0250919 25.2932C4.59886 25.5256 9.2231 25.7579 13.8473 25.9903C18.4716 26.2226 23.0958 26.4549 27.7198 26.6873L27.77 25.6885Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"46px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ryd48e-container\",layoutDependency:layoutDependency,layoutId:\"zSAIsXCVZ-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"zSAIsXCVZ\",layoutId:\"zSAIsXCVZ\",style:{height:\"100%\",width:\"100%\"},variant:\"qNV5gQUtD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14.010308265686035px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tNTAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\"},children:\"A\"})})}),className:\"framer-10zb515\",\"data-framer-name\":\"A\",fonts:[\"GF;Gabarito-500\"],layoutDependency:layoutDependency,layoutId:\"E3fxT4A7D\",style:{\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14.010308265686035px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tNTAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\"},children:\"B\"})})}),className:\"framer-14pjy5x\",\"data-framer-name\":\"B\",fonts:[\"GF;Gabarito-500\"],layoutDependency:layoutDependency,layoutId:\"PxRmuqOkG\",style:{\"--framer-paragraph-spacing\":\"5.604124546051025px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a5g96c\",\"data-framer-name\":\"Inefficient Meetings\",layoutDependency:layoutDependency,layoutId:\"qx_JNQEnH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q83prj\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"TZ9DsX8Y8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zn7efg\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"Q6FGjEMOl\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ttfxeo\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"y0cOgDaSS\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1uibza\",\"data-styles-preset\":\"bjqF1t6Hd\",children:\"Inefficient Meetings\"})}),className:\"framer-16ms3i0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TEBqF0mdf\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"SurePeople optimizes meeting workflows, ensuring that every discussion is purposeful, engaging, and drives tangible outcomes.\"})}),className:\"framer-1s5z3ty\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p6gyvKQjp\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ko30cf\",\"data-framer-name\":\"Vid\",layoutDependency:layoutDependency,layoutId:\"b6k2H_RRc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"336px\",src:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png\",srcSet:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png 535w\"},className:\"framer-1i18o1w\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"znUUYjN5v\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",children:\"    \"})}),className:\"framer-82jv8m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JXtQwKle7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zv1w2h\",\"data-framer-name\":\"Frame 1707479561\",layoutDependency:layoutDependency,layoutId:\"hyOioZQc7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a7yx6m\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"f_9UX9dJb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ic3bol\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"BH6mMbdp6\",style:{backgroundColor:\"rgb(31, 31, 31)\",borderBottomLeftRadius:59.78,borderBottomRightRadius:59.78,borderTopLeftRadius:59.78,borderTopRightRadius:59.78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-psaf37\",\"data-framer-name\":\"People\",layoutDependency:layoutDependency,layoutId:\"sFoOZoe6W\",style:{borderBottomLeftRadius:2.02,borderBottomRightRadius:2.02,borderTopLeftRadius:2.02,borderTopRightRadius:2.02}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"9.340205192565918px\",\"--framer-line-height\":\"7.47px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7R2FiYXJpdG8tNjAw\",\"--framer-font-family\":'\"Gabarito\"',\"--framer-font-size\":\"9.34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(31, 31, 31, 1))\"},children:\"Ahmed Taleb\"})})}),className:\"framer-1kwn881\",\"data-framer-name\":\"Ahmed Taleb\",fonts:[\"GF;Gabarito-600\"],layoutDependency:layoutDependency,layoutId:\"Ul1tZvu3G\",style:{\"--extracted-1w3ko1f\":\"rgba(31, 31, 31, 1)\",\"--framer-paragraph-spacing\":\"5.604124546051025px\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d46gzk-container\",layoutDependency:layoutDependency,layoutId:\"xHSSq_XWY-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",height:\"100%\",iconSearch:\"mute\",iconSelection:\"MicrophoneSlash\",id:\"xHSSq_XWY\",layoutId:\"xHSSq_XWY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/azeVae0quZi1iOhR1lH1TT8OhA.png\"},className:\"framer-1hf7ug5\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"d8V34Felp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q21gw9-container\",layoutDependency:layoutDependency,layoutId:\"Q7997Zh3R-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",height:\"100%\",iconSearch:\"mute\",iconSelection:\"MicrophoneSlash\",id:\"Q7997Zh3R\",layoutId:\"Q7997Zh3R\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZZ6gK8QnPfRi6vrgctBxBL00Bs.png\"},className:\"framer-3mnc29\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"U_mwJ9bPL\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghahy7-container\",layoutDependency:layoutDependency,layoutId:\"IxjDshfzS-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",height:\"100%\",iconSearch:\"mute\",iconSelection:\"MicrophoneSlash\",id:\"IxjDshfzS\",layoutId:\"IxjDshfzS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:49,delay:0,mass:1,stiffness:166,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ta9xg-container\",\"data-framer-name\":\"Slideshow Mobile\",layoutDependency:layoutDependency,layoutId:\"Nv24JIQqSmCGeWjLTc-container\",name:\"Slideshow Mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-208a49b9-008e-494d-82a1-8533007b4439, rgb(31, 31, 31))\",arrowGap:16,arrowPadding:20,arrowPaddingBottom:-49,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Nv24JIQqSmCGeWjLTc\",intervalControl:4,itemAmount:1,layoutId:\"Nv24JIQqSmCGeWjLTc\",name:\"Slideshow Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-svaofy\",\"data-framer-name\":\"Breakdowns in Communication Mobile\",layoutDependency:layoutDependency,layoutId:\"htoe98Mqs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k5md0e\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"eT0f7fAhq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14md13c\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"n9SkNhY4I-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 149 91\"><path d=\"M 1.318 46.118 C 17.263 46.142 40.918 46.165 56.862 46.08 C 61.481 45.977 66.109 46.494 70.664 47.265 C 73.636 47.768 76.614 48.47 79.276 49.881 C 81.937 51.292 84.275 53.485 85.359 56.287 C 85.728 57.241 85.898 58.263 85.859 59.284 C 85.648 64.676 80.586 69.659 74.414 68.539 C 68.649 67.693 65.235 60.925 66.26 55.208 C 67.285 49.491 71.52 44.877 76.086 41.269 C 80.196 38.022 84.872 35.248 90.051 34.429 C 95.486 33.568 101.249 35.008 105.633 38.323 C 110.017 41.638 112.961 46.782 113.359 52.109 C 115.805 66.848 105.851 81.963 92.105 87.925 C 89.311 89.137 86.344 90.038 83.3 90.173 C 74.352 90.569 66.772 83.923 61.387 77.162 C 56.516 71.048 56.281 62.06 59.664 55.019 C 63.047 47.979 69.06 42.623 74.466 36.974 C 79.433 31.783 84.103 25.997 86.295 18.763 C 87.322 14.978 88.356 10.993 87.41 7.186 C 86.464 3.38 82.793 -0.059 78.932 0.696 C 75.48 1.371 73.457 4.823 71.552 7.769 C 68.463 12.543 64.102 16.875 58.108 17.859 C 51.191 18.995 43.926 19.702 38.772 24.44 C 33.618 29.176 30.589 36.129 30.633 43.116 C 30.642 44.557 30.837 46 31.334 47.352 C 32.928 51.694 36.447 54.093 38.587 54.543 C 42.454 55.354 46.661 53.626 48.24 50.016 C 49.819 46.407 49.096 42.172 47.525 38.559 C 46.627 36.492 45.339 34.424 43.285 33.482 C 41.231 32.541 38.306 33.265 37.598 35.404 C 36.881 37.572 38.865 39.91 41.117 40.326 C 43.368 40.742 45.644 39.762 47.589 38.556 C 55.227 33.815 60.137 24.994 60.129 16.027 C 60.126 13.178 59.498 10.043 57.235 8.303 C 54.899 6.504 51.336 6.842 49.025 8.672 C 46.714 10.504 45.579 13.532 45.537 16.474 C 45.495 19.416 46.432 22.292 47.652 24.971 C 50.169 30.498 54.005 35.496 59.011 38.954 C 64.017 42.412 70.226 44.255 76.281 43.594 C 78.888 43.309 81.428 42.577 83.887 41.669 C 93.044 38.287 101.545 32.024 105.248 23.537 C 106.092 21.099 106.943 18.629 107.137 16.057 C 107.33 13.485 106.796 10.76 105.136 8.782 C 103.501 6.834 100.985 5.835 98.493 5.308 C 89.201 3.34 79.254 7.158 72.533 13.847 C 70.163 16.205 68.082 19.015 67.382 22.279 C 66.682 25.543 67.635 29.312 70.351 31.265 C 73.856 33.786 78.747 32.57 82.73 30.895 C 85.634 29.674 88.538 28.196 90.579 25.803 C 92.62 23.41 93.621 19.905 92.31 17.049 C 90.551 13.22 84.579 12.271 81.713 15.366 C 78.743 18.574 79.992 24.199 83.44 26.89 C 86.887 29.582 91.71 29.839 95.994 28.922 C 100.275 28.005 104.26 26.065 108.427 24.721 C 110.238 24.137 112.143 23.66 114.032 23.897 C 115.921 24.134 117.805 25.221 118.509 26.985 C 119.542 29.571 117.711 32.487 115.409 34.067 C 113.887 35.113 112.011 35.83 110.199 35.467 C 108.386 35.105 106.788 33.376 107.066 31.555 C 107.391 29.424 109.884 28.338 112.048 28.279 C 117.458 28.133 122.629 32.455 123.051 37.971 C 124.431 46.588 122.174 55.725 116.937 62.719 C 114.632 65.796 111.7 68.516 108.122 69.939 C 104.544 71.362 100.263 71.337 97.012 69.278 C 93.761 67.217 91.89 62.941 93.169 59.32 C 93.489 58.413 94.032 57.527 94.893 57.096 C 95.99 56.547 97.351 56.871 98.388 57.526 C 100.635 58.946 101.74 61.767 101.567 64.414 C 101.393 67.061 100.105 69.531 98.44 71.601 C 92.989 78.377 83.042 81.145 74.856 78.166 C 71.579 76.973 68.272 74.347 68.356 70.87 C 68.43 67.8 71.381 65.306 74.453 65.063 C 77.524 64.821 80.511 66.426 82.636 68.65 C 84.029 70.108 85.147 71.883 85.535 73.859 C 86.493 78.733 82.647 83.546 77.991 85.317 C 73.336 87.088 68.099 87.414 63.429 86.693 C 58.974 86.006 54.293 84.089 51.148 80.871 C 47.505 77.143 46.95 71.25 48.307 66.227 C 49.729 60.966 53.303 55.769 58.593 54.396 C 62.38 53.413 65.665 53.401 69.046 54.209 C 70.864 54.645 72.498 55.637 73.246 57.22 C 74.021 58.859 73.221 60.829 72.076 62.236 C 69.825 65.002 66.342 66.548 62.82 67.152 C 59.299 67.756 55.693 67.512 52.912 66.954 C 47.984 66.153 42.484 64.998 39.745 60.838 C 37.063 56.765 38.189 51.069 41.201 47.233 C 44.215 43.397 48.721 41.057 53.191 39.085 C 56.217 37.75 59.312 36.525 62.549 35.841 C 72.556 33.722 83.579 35.755 91.678 40.626 C 96.578 43.571 101.397 48.673 103.441 50.903 C 104.71 52.286 106.003 53.689 107.608 54.666 C 109.214 55.643 111.205 56.153 113.003 55.602 C 113.834 55.347 114.588 54.879 115.264 54.333 C 117.852 52.239 119.36 48.798 118.875 45.513 C 118.697 44.306 118.24 43.099 117.36 42.251 C 115.766 40.717 113.108 40.744 111.172 41.817 C 109.235 42.891 107.903 44.79 106.861 46.739 C 105.812 48.703 104.983 50.785 104.389 53.112 C 102.977 59.075 99.444 64.516 94.564 68.243 C 92.465 69.847 90.141 71.132 87.787 72.336 C 84.582 73.975 80.601 75.446 77.552 73.533 C 75.049 71.962 74.242 68.523 75.005 65.675 C 75.767 62.827 77.777 60.482 79.922 58.454 C 85.092 53.561 91.436 49.872 98.313 47.996 C 105.468 46.044 113.482 46.071 120.9 46.11 C 132.966 46.171 147.909 46.112 147.909 46.112\" fill=\"transparent\" stroke=\"rgb(31,31,31)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11297163893,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fs5ih0-container\",layoutDependency:layoutDependency,layoutId:\"VsNki8hlX-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"VsNki8hlX\",layoutId:\"VsNki8hlX\",style:{height:\"100%\",width:\"100%\"},variant:\"OxulWU4Ha\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hghs13-container\",layoutDependency:layoutDependency,layoutId:\"LLSJTkXbq-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"LLSJTkXbq\",layoutId:\"LLSJTkXbq\",style:{height:\"100%\",width:\"100%\"},variant:\"I32:8041;95:12933\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19zjllp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"EzimL7nP9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Breakdowns in communication\"})}),className:\"framer-1c0iubh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tXj01oCQ2\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople helps break down communication barriers, fostering a culture of openness, transparency, and collective success.\"})}),className:\"framer-1s9gwv2\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fWb_RaxCL\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ya2x20\",\"data-framer-name\":\"Onboarding\",layoutDependency:layoutDependency,layoutId:\"yCObgWaRE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2o4ixb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"eKbJ6Hmit\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1czjl8u-container\",layoutDependency:layoutDependency,layoutId:\"bcgHlik_c-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"bcgHlik_c\",layoutId:\"bcgHlik_c\",style:{height:\"100%\",width:\"100%\"},variant:\"qjRoLbcu8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gfxolb\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:141,intrinsicWidth:173,layoutDependency:layoutDependency,layoutId:\"gSl5OpmkJ\",svg:'<svg width=\"173\" height=\"141\" viewBox=\"0 0 173 141\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M170.893 20.0529C171.089 19.8578 171.089 19.5412 170.894 19.3458L167.715 16.1608C167.52 15.9654 167.203 15.9651 167.008 16.1602C166.812 16.3553 166.812 16.6719 167.007 16.8673L169.833 19.6983L167.002 22.5242C166.806 22.7192 166.806 23.0358 167.001 23.2313C167.196 23.4267 167.513 23.427 167.708 23.2319L170.893 20.0529ZM143.799 29.6934L143.299 29.6939L143.799 29.6934ZM133.796 46.3278L133.796 46.8278L133.796 46.3278ZM117.076 56.3316L117.576 56.3311L117.076 56.3316ZM117.083 62.9528L116.583 62.9533L117.083 62.9528ZM100.362 72.9567L100.362 73.4567L100.362 72.9567ZM80.3491 99.5988L80.3486 100.099L80.3491 99.5988ZM73.6395 99.5922L73.6399 99.0922L73.6395 99.5922ZM63.6362 116.224L63.1362 116.225L63.6362 116.224ZM36.895 126.718L53.6259 126.734L53.6269 125.734L36.896 125.718L36.895 126.718ZM64.1362 116.224L64.1297 109.602L63.1297 109.603L63.1362 116.225L64.1362 116.224ZM73.639 100.092L80.3486 100.099L80.3496 99.0988L73.6399 99.0922L73.639 100.092ZM90.8589 89.5884L90.8524 82.966L89.8524 82.967L89.8589 89.5894L90.8589 89.5884ZM100.362 73.4567L107.072 73.4633L107.073 72.4633L100.363 72.4567L100.362 73.4567ZM117.583 62.9523L117.576 56.3311L116.576 56.3321L116.583 62.9533L117.583 62.9523ZM127.085 46.8212L133.796 46.8278L133.797 45.8278L127.086 45.8212L127.085 46.8212ZM144.306 36.3174L144.299 29.6929L143.299 29.6939L143.306 36.3184L144.306 36.3174ZM153.808 20.1836L170.54 20.199L170.541 19.199L153.809 19.1836L153.808 20.1836ZM144.299 29.6929C144.294 24.4391 148.554 20.1787 153.808 20.1836L153.809 19.1836C148.002 19.1782 143.294 23.8871 143.299 29.6939L144.299 29.6929ZM133.796 46.8278C139.603 46.8334 144.312 42.1245 144.306 36.3174L143.306 36.3184C143.311 41.5724 139.051 45.8329 133.797 45.8278L133.796 46.8278ZM117.576 56.3311C117.57 51.0769 121.831 46.816 127.085 46.8212L127.086 45.8212C121.279 45.8155 116.57 50.5248 116.576 56.3321L117.576 56.3311ZM107.072 73.4633C112.88 73.4689 117.589 68.7596 117.583 62.9523L116.583 62.9533C116.588 68.2076 112.327 72.4684 107.073 72.4633L107.072 73.4633ZM90.8524 82.966C90.8472 77.712 95.1077 73.4515 100.362 73.4567L100.363 72.4567C94.5556 72.451 89.8467 77.16 89.8524 82.967L90.8524 82.966ZM80.3486 100.099C86.1557 100.104 90.8646 95.3955 90.8589 89.5884L89.8589 89.5894C89.8641 94.8434 85.6036 99.1039 80.3496 99.0988L80.3486 100.099ZM64.1297 109.602C64.1245 104.348 68.385 100.087 73.639 100.092L73.6399 99.0922C67.8329 99.0865 63.1239 103.795 63.1297 109.603L64.1297 109.602ZM53.6259 126.734C59.4329 126.74 64.1419 122.031 64.1362 116.224L63.1362 116.225C63.1414 121.479 58.8809 125.739 53.6269 125.734L53.6259 126.734Z\" fill=\"#1F1F1F\"/>\\n<path d=\"M61.0914 74.1806L65.1739 74.1809L65.1742 70.0984L61.0917 70.0981L61.0914 74.1806ZM93.9693 41.8081C93.9693 41.532 93.7455 41.3081 93.4693 41.3081L88.9693 41.3077C88.6932 41.3077 88.4693 41.5315 88.4693 41.8077C88.4693 42.0838 88.6931 42.3077 88.9693 42.3077L92.9693 42.3081L92.9689 46.3081C92.9689 46.5842 93.1927 46.8081 93.4689 46.8081C93.745 46.8081 93.9689 46.5843 93.9689 46.3081L93.9693 41.8081ZM63.4863 72.4931L93.8228 42.1617L93.1158 41.4545L62.7793 71.7859L63.4863 72.4931Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kaqhx4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gLtyeJWt5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Elongated onboarding\"})}),className:\"framer-enh5kq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jJC6pIeSW\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's personalized approach accelerates the onboarding journey, equipping new employees with the insights and tools they need to make a meaningful impact from day one.\"})}),className:\"framer-1okatbd\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jumvZuenx\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ohg0s\",\"data-framer-name\":\"RETENTION\",layoutDependency:layoutDependency,layoutId:\"sBFQmlr7f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v2khm5\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"I7bDfXNSP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ee9k7t-container\",layoutDependency:layoutDependency,layoutId:\"CfkAYk7ZD-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"CfkAYk7ZD\",layoutId:\"CfkAYk7ZD\",style:{height:\"100%\",width:\"100%\"},variant:\"XWwAWeltu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b9dwrq\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:136,intrinsicWidth:134,layoutDependency:layoutDependency,layoutId:\"RzG6OtWt_\",svg:'<svg width=\"134\" height=\"136\" viewBox=\"0 0 134 136\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M85.2072 125.823C85.3321 125.576 85.2336 125.276 84.9872 125.151L80.9733 123.116C80.727 122.992 80.4261 123.09 80.3013 123.336C80.1764 123.583 80.2749 123.884 80.5212 124.008L84.0892 125.817L82.281 129.385C82.1562 129.631 82.2547 129.932 82.501 130.057C82.7473 130.181 83.0482 130.083 83.173 129.837L85.2072 125.823ZM84.6057 125.121C78.7245 127.047 72.5745 128.023 66.3308 128.023V129.023C72.6792 129.023 78.9343 128.03 84.9168 126.072L84.6057 125.121ZM66.3308 128.023C60.1067 128.023 53.9764 127.052 48.112 125.14L47.802 126.091C53.7673 128.036 60.0023 129.023 66.3308 129.023V128.023Z\" fill=\"black\"/>\\n<path d=\"M31.1803 20.1736L30.8836 19.7711L30.8836 19.7711L31.1803 20.1736ZM48.2837 11.7979C48.4083 11.5515 48.3096 11.2507 48.0632 11.1261L44.0475 9.09523C43.8011 8.9706 43.5003 9.06934 43.3757 9.31576C43.251 9.56219 43.3498 9.86298 43.5962 9.9876L47.1657 11.7928L45.3605 15.3623C45.2359 15.6087 45.3346 15.9095 45.581 16.0341C45.8275 16.1587 46.1282 16.06 46.2529 15.8136L48.2837 11.7979ZM18.5032 33.6897C22.1298 28.66 26.4955 24.2474 31.4769 20.5761L30.8836 19.7711C25.8185 23.5041 21.3793 27.991 17.6921 33.1048L18.5032 33.6897ZM31.4769 20.5761C36.5201 16.8595 42.077 13.9894 47.9935 12.0473L47.6816 11.0972C41.6635 13.0727 36.0117 15.992 30.8836 19.7711L31.4769 20.5761Z\" fill=\"black\"/>\\n<path d=\"M18.0917 104.347C18.3644 104.39 18.6208 104.204 18.6644 103.932L19.3751 99.4883C19.4187 99.2156 19.2331 98.9592 18.9604 98.9156C18.6877 98.872 18.4313 99.0577 18.3877 99.3304L17.7559 103.28L13.8061 102.648C13.5334 102.605 13.277 102.79 13.2334 103.063C13.1898 103.336 13.3755 103.592 13.6482 103.636L18.0917 104.347ZM18.5756 103.56C11.1934 93.3661 7.28316 81.2922 7.27051 68.6382L6.27051 68.6392C6.28337 81.5024 10.2595 93.7814 17.7657 104.146L18.5756 103.56Z\" fill=\"black\"/>\\n<path d=\"M126.242 68.0913C126.047 67.896 125.73 67.896 125.535 68.0913L122.353 71.2733C122.158 71.4685 122.158 71.7851 122.353 71.9804C122.548 72.1756 122.865 72.1756 123.06 71.9804L125.889 69.1519L128.717 71.9804C128.912 72.1756 129.229 72.1756 129.424 71.9804C129.619 71.7851 129.619 71.4685 129.424 71.2733L126.242 68.0913ZM125.389 68.4448V68.5761H126.389V68.4448H125.389ZM125.389 68.5761C125.389 81.2301 121.492 93.3097 114.12 103.51L114.931 104.096C122.427 93.724 126.389 81.4392 126.389 68.5761H125.389Z\" fill=\"black\"/>\\n<path d=\"M101.328 20.0641L101.624 19.6607L101.624 19.6607L101.328 20.0641ZM114.372 33.7374C114.645 33.7807 114.901 33.5947 114.944 33.322L115.65 28.8777C115.693 28.6049 115.507 28.3487 115.235 28.3054C114.962 28.2621 114.706 28.4481 114.662 28.7208L114.035 32.6713L110.085 32.0441C109.812 32.0007 109.556 32.1867 109.512 32.4595C109.469 32.7322 109.655 32.9884 109.928 33.0317L114.372 33.7374ZM84.488 11.9897C90.4117 13.9149 95.9785 16.7666 101.033 20.4675L101.624 19.6607C96.484 15.8974 90.8222 12.9968 84.7971 11.0386L84.488 11.9897ZM101.033 20.4675C106.025 24.1233 110.404 28.5203 114.046 33.5373L114.855 32.9498C111.152 27.849 106.7 23.3779 101.624 19.6607L101.033 20.4675Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dj1nyb\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"q_9feuJEg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Retention challenges\"})}),className:\"framer-12tjgnr\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a9ihTssai\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople empowers managers with the skills and expertise to lead effectively, boosting employee satisfaction, retention, and overall well-being.\"})}),className:\"framer-ztnuq1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cpfssQiw7\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2rmqnw\",\"data-framer-name\":\"STUNTED\",layoutDependency:layoutDependency,layoutId:\"zZlxz8pt4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jx9inz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"PLkRXiXoC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"46px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tqtfd0-container\",layoutDependency:layoutDependency,layoutId:\"e4mOF9Zkn-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"e4mOF9Zkn\",layoutId:\"e4mOF9Zkn\",style:{height:\"100%\",width:\"100%\"},variant:\"MnKh2MqFC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-btsurv\",\"data-framer-name\":\"Vector'\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:149,layoutDependency:layoutDependency,layoutId:\"ISKZ9y4xF\",svg:'<svg width=\"149\" height=\"113\" viewBox=\"0 0 149 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.958984\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 9.79877C16.2987 9.49481 15.8059 9.49481 15.5019 9.79877L11.4136 13.887L9.40099 11.8744C9.09703 11.5704 8.6042 11.5704 8.30024 11.8744C7.99627 12.1783 7.99627 12.6712 8.30024 12.9751L11.4136 16.0885L16.6026 10.8995C16.9066 10.5956 16.9066 10.1027 16.6026 9.79877Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"44.5464\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M16.6026 53.3852C16.2987 53.0812 15.8059 53.0812 15.5019 53.3852L11.4136 57.4734L9.40099 55.4608C9.09703 55.1568 8.6042 55.1568 8.30024 55.4608C7.99627 55.7648 7.99627 56.2576 8.30024 56.5616L11.4136 59.675L16.6026 54.486C16.9066 54.182 16.9066 53.6892 16.6026 53.3852Z\" fill=\"#1F1F1F\"/>\\n<rect x=\"0.5\" y=\"88.1343\" width=\"23.9072\" height=\"23.9072\" rx=\"6.16667\" stroke=\"#1F1F1F\"/>\\n<path d=\"M35 16.7776C45.0992 16.7776 55.4821 17.1659 65.4319 15.1759C66.9556 14.8712 71.6457 14.1438 71.2068 11.6199C70.8554 9.59958 68.0433 9.95682 66.6369 10.1652C65.1267 10.3889 61.4619 13.5264 63.6245 14.9849C66.6112 16.9992 69.6725 17.0655 73.1758 17.0421C81.0837 16.9894 89.0144 16.1328 96.8631 15.2494C100.305 14.862 104.524 14.1382 107.972 14.8086C108.448 14.9011 110.764 15.7264 110.235 15.2935C109.554 14.7361 107.94 12.5262 108.707 11.6199C110.319 9.71424 114.068 9.85778 116.215 10.3121C120.314 11.1791 123.117 14.9816 127.457 14.1326C130.667 13.5045 133.778 12.6977 137.037 12.2812C140.199 11.877 143.214 12.4408 146.354 12.8102\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n<path d=\"M35 57.7788C39.0356 55.5974 42.5405 52.3726 47.049 51.1364C49.8807 50.36 52.2019 52.8406 54.0776 54.6121C62.0587 62.1498 74.6652 59.8126 84.2001 57.2381C86.2313 56.6897 102.34 52.6486 97.4077 47.8924C92.9138 43.5591 84.4156 47.5116 82.8099 52.9129C80.4137 60.9726 94.4877 58.342 98.3346 57.6243C107.048 55.9987 115.734 52.686 124.672 54.1487C126.788 54.4949 128.806 55.636 130.929 55.6934C133.357 55.759 135.642 54.9983 138.035 54.9983C141.778 54.9983 145.757 58.2433 149.002 54.9983\" stroke=\"#1F1F1F\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xu4zgp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"FyTUPEJpr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stunted employee development\"})}),className:\"framer-qgdpr5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b3ir3WigG\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople identifies and addresses skill gaps, providing personalized development pathways that unlock employees' full potential and drive business success.\"})}),className:\"framer-1yl3808\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V7opsw3pr\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zd8we2\",\"data-framer-name\":\"REMOTE\",layoutDependency:layoutDependency,layoutId:\"H1tlgEMGE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wjw3al\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"uwDtpzBVm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 252, 245)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dcfnk\",\"data-framer-name\":\"VECTOR\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:245,layoutDependency:layoutDependency,layoutId:\"Hp0odaw04\",svg:'<svg width=\"245\" height=\"44\" viewBox=\"0 0 245 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M245.29 22.1298C245.515 21.9694 245.567 21.6571 245.407 21.4324L242.793 17.7697C242.632 17.545 242.32 17.4928 242.095 17.6533C241.87 17.8137 241.818 18.1259 241.979 18.3507L244.303 21.6064L241.047 23.9303C240.822 24.0907 240.77 24.403 240.93 24.6277C241.091 24.8525 241.403 24.9046 241.628 24.7442L245.29 22.1298ZM223.853 22.2645L223.745 21.7763L223.745 21.7763L223.853 22.2645ZM213.848 25.5273L213.649 25.0686L213.649 25.0687L213.848 25.5273ZM204.431 30.57L204.189 30.1324L204.189 30.1324L204.431 30.57ZM194.808 33.2254L194.755 33.7226L194.755 33.7226L194.808 33.2254ZM188.143 27.9652L188.628 27.8454L188.628 27.8453L188.143 27.9652ZM187.47 18.1036L186.983 18.2193L186.983 18.2193L187.47 18.1036ZM182.545 12.6651L182.461 13.158L182.461 13.158L182.545 12.6651ZM175.243 16.1558L174.84 15.8591L174.84 15.8592L175.243 16.1558ZM171.056 25.2844L170.6 25.0809L170.6 25.0809L171.056 25.2844ZM159.594 40.5753L159.879 40.9859L159.879 40.9859L159.594 40.5753ZM143.889 43.251L143.745 43.7297L143.745 43.7297L143.889 43.251ZM144.147 17.7756L144.352 18.2316L144.352 18.2316L144.147 17.7756ZM164.85 18.4023L165.033 17.9371L165.033 17.9371L164.85 18.4023ZM175.475 33.7883L174.996 33.6431L174.996 33.6431L175.475 33.7883ZM161.043 38.1972L160.783 38.624L160.783 38.624L161.043 38.1972ZM153.934 20.2215L154.431 20.2718L154.431 20.2718L153.934 20.2215ZM156.801 9.11676L156.348 8.90469L156.348 8.90477L156.801 9.11676ZM163.959 2.65983L163.859 2.17L163.858 2.17L163.959 2.65983ZM171.224 7.10719L170.752 7.27412L170.752 7.27424L171.224 7.10719ZM169.844 17.6571L170.298 17.8657L170.298 17.8657L169.844 17.6571ZM158.191 33.3014L157.889 32.9032L157.889 32.9032L158.191 33.3014ZM141.461 37.3165L141.574 36.8294L141.574 36.8294L141.461 37.3165ZM134.231 33.4654L133.878 33.8191L133.878 33.8192L134.231 33.4654ZM130.06 25.0748L130.547 24.9616L130.547 24.9615L130.06 25.0748ZM124.714 7.19527L125.109 6.88903L125.109 6.889L124.714 7.19527ZM110.048 0.0610614L110.013 0.559769L110.013 0.55977L110.048 0.0610614ZM91.1294 5.22215L90.8863 4.78526L90.8862 4.78529L91.1294 5.22215ZM81.9057 11.0524L81.6259 10.638L81.6259 10.638L81.9057 11.0524ZM73.6688 17.2036L74.0041 17.5745L74.0042 17.5745L73.6688 17.2036ZM66.3548 33.3297L65.8576 33.3824L65.8576 33.3824L66.3548 33.3297ZM77.5596 43.902L77.5977 43.4034L77.5976 43.4034L77.5596 43.902ZM112.304 25.0505L112.212 24.5591L112.212 24.5591L112.304 25.0505ZM121.864 27.0419L121.557 27.4368L121.557 27.4368L121.864 27.0419ZM124.976 35.5165L124.494 35.3863L124.494 35.3864L124.976 35.5165ZM117.842 41.0754L117.901 41.5719L117.901 41.5719L117.842 41.0754ZM107.744 38.0595L108.02 37.6423L108.02 37.6423L107.744 38.0595ZM98.0533 21.897L98.5533 21.894L98.5533 21.894L98.0533 21.897ZM107.33 9.48931L107.192 9.0087L107.192 9.00871L107.33 9.48931ZM119.281 17.4081L119.77 17.303L119.77 17.3029L119.281 17.4081ZM112.183 33.2285L111.885 32.8272L111.885 32.8272L112.183 33.2285ZM76.4462 31.6887L76.0748 32.0234L76.0748 32.0234L76.4462 31.6887ZM71.0389 15.2528L70.5433 15.1868L70.5433 15.1868L71.0389 15.2528ZM82.5506 2.31967L82.4737 1.82561L82.4737 1.82562L82.5506 2.31967ZM94.1064 12.3483L93.609 12.297L93.609 12.2971L94.1064 12.3483ZM80.0089 24.2811L80.0794 24.7761L80.0794 24.7761L80.0089 24.2811ZM68.9125 24.4441L68.9373 23.9447L68.9373 23.9447L68.9125 24.4441ZM56.467 23.8205L56.442 24.3199L56.442 24.3199L56.467 23.8205ZM31.9983 22.5935L32.0233 22.0941L32.0233 22.0941L31.9983 22.5935ZM5.33333 21.3908C5.33333 22.8635 6.52724 24.0575 8 24.0575C9.47276 24.0575 10.6667 22.8635 10.6667 21.3908C10.6667 19.918 9.47276 18.7241 8 18.7241C6.52724 18.7241 5.33333 19.918 5.33333 21.3908ZM245.082 21.2297C238 20.0469 230.761 20.2204 223.745 21.7763L223.962 22.7526C230.851 21.2248 237.96 21.0541 244.918 22.216L245.082 21.2297ZM223.745 21.7763C220.28 22.5448 216.905 23.6564 213.649 25.0686L214.047 25.9861C217.247 24.598 220.562 23.5067 223.962 22.7526L223.745 21.7763ZM213.649 25.0687C210.334 26.5078 207.285 28.4213 204.189 30.1324L204.673 31.0076C207.834 29.2604 210.79 27.3998 214.047 25.986L213.649 25.0687ZM204.189 30.1324C201.248 31.7583 198.139 33.0783 194.861 32.7283L194.755 33.7226C198.359 34.1075 201.702 32.6496 204.673 31.0076L204.189 30.1324ZM194.861 32.7283C191.906 32.4123 189.347 30.7589 188.628 27.8454L187.657 28.0849C188.506 31.525 191.517 33.3765 194.755 33.7226L194.861 32.7283ZM188.628 27.8453C188.248 26.3055 188.269 24.7169 188.297 23.0504C188.325 21.4057 188.359 19.6829 187.956 17.9879L186.983 18.2193C187.352 19.771 187.325 21.3658 187.297 23.0336C187.27 24.6796 187.241 26.3984 187.657 28.085L188.628 27.8453ZM187.956 17.9879C187.332 15.3642 185.627 12.6838 182.629 12.1723L182.461 13.158C184.885 13.5717 186.402 15.773 186.983 18.2193L187.956 17.9879ZM182.629 12.1723C179.479 11.6338 176.578 13.502 174.84 15.8591L175.645 16.4525C177.254 14.2701 179.819 12.7064 182.461 13.158L182.629 12.1723ZM174.84 15.8592C173.811 17.2568 173.083 18.8283 172.448 20.4079C171.802 22.013 171.271 23.5731 170.6 25.0809L171.513 25.4879C172.19 23.9676 172.761 22.3099 173.375 20.7809C174 19.2265 174.691 17.7477 175.645 16.4524L174.84 15.8592ZM170.6 25.0809C168.015 30.882 164.506 36.5524 159.308 40.1647L159.879 40.9859C165.298 37.22 168.9 31.3534 171.513 25.4879L170.6 25.0809ZM159.308 40.1647C154.804 43.2944 149.293 44.3565 144.034 42.7722L143.745 43.7297C149.321 45.4094 155.146 44.2747 159.879 40.9859L159.308 40.1647ZM144.034 42.7723C139.008 41.2581 135.079 37.1553 135.079 31.7474H134.079C134.079 37.7024 138.408 42.1217 143.745 43.7297L144.034 42.7723ZM135.079 31.7474C135.079 25.9233 139.154 20.5703 144.352 18.2316L143.942 17.3196C138.448 19.7917 134.079 25.4655 134.079 31.7474H135.079ZM144.352 18.2316C150.703 15.3738 158.264 16.3431 164.666 18.8674L165.033 17.9371C158.5 15.3611 150.635 14.3076 143.942 17.3196L144.352 18.2316ZM164.666 18.8674C167.592 20.0211 170.727 21.9907 172.849 24.5454C174.962 27.0888 176.049 30.1769 174.996 33.6431L175.953 33.9336C177.128 30.0631 175.884 26.634 173.619 23.9065C171.362 21.1902 168.071 19.1351 165.033 17.9371L164.666 18.8674ZM174.996 33.6431C174.142 36.4567 171.905 38.1931 169.265 38.8773C166.614 39.5641 163.604 39.1741 161.303 37.7704L160.783 38.624C163.329 40.1774 166.619 40.5958 169.516 39.8453C172.422 39.0922 174.978 37.1456 175.953 33.9336L174.996 33.6431ZM161.304 37.7704C155.48 34.2167 153.765 26.8569 154.431 20.2718L153.436 20.1712C152.754 26.9171 154.476 34.7753 160.783 38.624L161.304 37.7704ZM154.431 20.2718C154.804 16.5795 155.691 12.6684 157.254 9.32874L156.348 8.90477C154.724 12.3743 153.817 16.4023 153.436 20.1712L154.431 20.2718ZM157.254 9.32882C158.648 6.35354 160.876 3.80186 164.059 3.14965L163.858 2.17C160.233 2.91284 157.806 5.79357 156.348 8.90469L157.254 9.32882ZM164.059 3.14966C167.1 2.52673 169.711 4.33331 170.752 7.27412L171.695 6.94026C170.52 3.62257 167.48 1.42824 163.859 2.17L164.059 3.14966ZM170.752 7.27424C171.931 10.5983 170.871 14.2185 169.389 17.4486L170.298 17.8657C171.799 14.5943 173.012 10.6562 171.695 6.94014L170.752 7.27424ZM169.389 17.4486C166.699 23.3125 163.001 29.0193 157.889 32.9032L158.494 33.6995C163.789 29.6768 167.572 23.8061 170.298 17.8657L169.389 17.4486ZM157.889 32.9032C153.198 36.467 147.329 38.1627 141.574 36.8294L141.348 37.8036C147.444 39.2158 153.612 37.4086 158.494 33.6995L157.889 32.9032ZM141.574 36.8294C138.955 36.2226 136.482 35.0067 134.585 33.1116L133.878 33.8192C135.932 35.8703 138.583 37.163 141.348 37.8036L141.574 36.8294ZM134.585 33.1117C132.406 30.9347 131.257 28.0164 130.547 24.9616L129.573 25.188C130.301 28.3208 131.507 31.4505 133.878 33.8191L134.585 33.1117ZM130.547 24.9615C130.199 23.4654 129.939 21.9259 129.681 20.3647C129.424 18.8084 129.17 17.229 128.834 15.6778C128.163 12.5735 127.158 9.53373 125.109 6.88903L124.318 7.50151C126.235 9.97537 127.199 12.8473 127.857 15.8892C128.186 17.411 128.436 18.9633 128.694 20.5274C128.951 22.0866 129.216 23.6562 129.573 25.1881L130.547 24.9615ZM125.109 6.889C121.5 2.23246 115.719 -0.0319071 110.084 -0.437648L110.013 0.55977C115.457 0.951781 120.934 3.13376 124.318 7.50153L125.109 6.889ZM110.084 -0.437646C103.254 -0.929717 96.6932 1.55324 90.8863 4.78526L91.3726 5.65904C97.1085 2.46653 103.465 0.0880593 110.013 0.559769L110.084 -0.437646ZM90.8862 4.78529C87.6865 6.56671 84.6398 8.60391 81.6259 10.638L82.1854 11.4669C85.2016 9.43117 88.2153 7.41685 91.3727 5.65901L90.8862 4.78529ZM81.6259 10.638C78.7926 12.5506 75.9126 14.5011 73.3335 16.8327L74.0042 17.5745C76.5224 15.2978 79.3436 13.3851 82.1854 11.4668L81.6259 10.638ZM73.3336 16.8327C68.7381 20.9866 65.16 26.7974 65.8576 33.3824L66.852 33.2771C66.2015 27.1365 69.5323 21.6168 74.0041 17.5745L73.3336 16.8327ZM65.8576 33.3824C66.5282 39.7109 71.3762 43.9313 77.5215 44.4005L77.5976 43.4034C71.8892 42.9676 67.4673 39.0829 66.852 33.277L65.8576 33.3824ZM77.5215 44.4005C85.1014 44.9797 90.5771 40.7548 95.7462 36.2184C100.967 31.6368 105.858 26.7703 112.397 25.5419L112.212 24.5591C105.338 25.8505 100.209 30.9716 95.0865 35.4668C89.913 40.0071 84.723 43.9479 77.5977 43.4034L77.5215 44.4005ZM112.396 25.5419C115.544 24.951 119.029 25.4738 121.557 27.4368L122.171 26.6469C119.363 24.4673 115.568 23.9291 112.212 24.5591L112.396 25.5419ZM121.557 27.4368C123.9 29.2551 125.272 32.5008 124.494 35.3863L125.459 35.6466C126.36 32.306 124.773 28.6675 122.171 26.6469L121.557 27.4368ZM124.494 35.3864C123.706 38.3098 120.759 40.2226 117.782 40.579L117.901 41.5719C121.148 41.1831 124.534 39.0808 125.459 35.6465L124.494 35.3864ZM117.783 40.5789C114.361 40.9877 110.928 39.5629 108.02 37.6423L107.469 38.4767C110.459 40.4518 114.137 42.0216 117.901 41.5719L117.783 40.5789ZM108.02 37.6423C102.802 34.1959 98.5911 28.2785 98.5533 21.894L97.5533 21.8999C97.5937 28.7127 102.061 34.9054 107.469 38.4768L108.02 37.6423ZM98.5533 21.894C98.5205 16.4326 102.248 11.4681 107.468 9.9699L107.192 9.00871C101.541 10.6306 97.5179 15.9904 97.5533 21.9L98.5533 21.894ZM107.468 9.96991C112.887 8.41491 117.622 12.0725 118.792 17.5133L119.77 17.3029C118.507 11.4354 113.296 7.2573 107.192 9.0087L107.468 9.96991ZM118.792 17.5132C120.095 23.5738 116.71 29.2404 111.885 32.8272L112.481 33.6298C117.489 29.9072 121.185 23.8849 119.77 17.303L118.792 17.5132ZM111.885 32.8272C106.875 36.5512 100.3 38.6318 93.8719 38.5492C87.4472 38.4665 81.2077 36.2252 76.8176 31.3539L76.0748 32.0234C80.6889 37.1432 87.2168 39.4637 93.859 39.5491C100.498 39.6345 107.289 37.4895 112.481 33.6298L111.885 32.8272ZM76.8176 31.3539C72.9665 27.0806 70.77 21.0669 71.5345 15.3187L70.5433 15.1868C69.7351 21.2631 72.0542 27.562 76.0748 32.0234L76.8176 31.3539ZM71.5345 15.3187C72.3198 9.41841 76.6711 3.74087 82.6275 2.81372L82.4737 1.82562C75.9686 2.83818 71.3708 8.96898 70.5433 15.1868L71.5345 15.3187ZM82.6275 2.81373C85.4199 2.3793 88.3307 3.25546 90.4628 5.00004C92.5887 6.73958 93.9157 9.31893 93.609 12.297L94.6038 12.3995C94.9501 9.03707 93.4406 6.14454 91.096 4.22611C88.7576 2.31273 85.564 1.34485 82.4737 1.82561L82.6275 2.81373ZM93.609 12.2971C93.2608 15.681 91.4089 18.3232 88.8498 20.2422C86.2845 22.1659 83.0259 23.3467 79.9385 23.7861L80.0794 24.7761C83.302 24.3175 86.7265 23.0843 89.4497 21.0423C92.179 18.9956 94.2208 16.1204 94.6038 12.3994L93.609 12.2971ZM79.9385 23.7861C76.3224 24.3007 72.6335 24.1283 68.9373 23.9447L68.8877 24.9435C72.5697 25.1264 76.3534 25.3063 80.0794 24.7761L79.9385 23.7861ZM68.9373 23.9447C64.7888 23.7392 60.6411 23.5287 56.492 23.3211L56.442 24.3199C60.59 24.5274 64.7392 24.738 68.8878 24.9435L68.9373 23.9447ZM56.4921 23.3211C52.4138 23.1166 48.3357 22.9121 44.2577 22.7076C40.1797 22.5031 36.1016 22.2986 32.0233 22.0941L31.9733 23.0929C36.0515 23.2974 40.1296 23.5019 44.2076 23.7064C48.2857 23.9109 52.3637 24.1154 56.442 24.3199L56.4921 23.3211ZM32.0233 22.0941C28.0238 21.8937 24.024 21.6932 20.0242 21.4928C16.0244 21.2923 12.0246 21.0919 8.02503 20.8914L7.97497 21.8902C11.9745 22.0906 15.9743 22.2911 19.9741 22.4915C23.9739 22.692 27.9737 22.8924 31.9733 23.0929L32.0233 22.0941Z\" fill=\"#1F1F1F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"45px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-scslvz-container\",layoutDependency:layoutDependency,layoutId:\"vr7kfPma_-container\",children:/*#__PURE__*/_jsx(People,{height:\"100%\",id:\"vr7kfPma_\",layoutId:\"vr7kfPma_\",style:{height:\"100%\",width:\"100%\"},variant:\"qNV5gQUtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ol050\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"I6ug8nXGs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Remote work obstacles\"})}),className:\"framer-1v6xc42\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QF917BPJ1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople's innovative tools and strategies bridge the gap, fostering collaboration, connection, and a sense of community among distributed teams.\"})}),className:\"framer-cqlwqu\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hf8g2kbS_\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ndfym\",\"data-framer-name\":\"Inefficient Meetings\",layoutDependency:layoutDependency,layoutId:\"WOMlwDn49\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ibaq7r\",\"data-framer-name\":\"Vid\",layoutDependency:layoutDependency,layoutId:\"DmRB4UBrN\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"280px\",src:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png\",srcSet:\"https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSkctr6ngYbCxrsbxVnDHi5udk.png 535w\"},className:\"framer-l5obww\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"U21YtZhYh\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"4.54px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"6.49px\"},children:\"    \"})}),className:\"framer-1qyukmb\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"esTvju7rx\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1afoobx\",\"data-framer-name\":\"Frame 1707479561\",layoutDependency:layoutDependency,layoutId:\"E6YUIpEyI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t72m0a\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"b20wSwvL_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rh4deu\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Rotx58k3g\",style:{backgroundColor:\"rgb(31, 31, 31)\",borderBottomLeftRadius:49.81,borderBottomRightRadius:49.81,borderTopLeftRadius:49.81,borderTopRightRadius:49.81},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gdNfcXheT2AaWc0qEAzJcu53pY.png\"},className:\"framer-cmxpv0\",\"data-framer-name\":\"People\",layoutDependency:layoutDependency,layoutId:\"kPp6ANoIH\",style:{borderBottomLeftRadius:1.68,borderBottomRightRadius:1.68,borderTopLeftRadius:1.68,borderTopRightRadius:1.68}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"7.78px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"6.23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Ahmed Taleb\"})}),className:\"framer-1pmu4fw\",\"data-framer-name\":\"Ahmed Taleb\",fonts:[\"GF;Work Sans-600\"],layoutDependency:layoutDependency,layoutId:\"IrhLikDBb\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-paragraph-spacing\":\"4.670104026794434px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/azeVae0quZi1iOhR1lH1TT8OhA.png\"},className:\"framer-18fxid6\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"wmF8FgbAJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZZ6gK8QnPfRi6vrgctBxBL00Bs.png\"},className:\"framer-o85j9j\",\"data-border\":true,\"data-framer-name\":\"Moderator Screen\",layoutDependency:layoutDependency,layoutId:\"cjzhFwnXj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(31, 31, 31)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:13.65,borderBottomRightRadius:13.65,borderTopLeftRadius:13.65,borderTopRightRadius:13.65,boxShadow:\"0px 2px 0px 0px rgba(31, 31, 31, 1)\"}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ed7gqj\",\"data-framer-name\":\"Badge & Title\",layoutDependency:layoutDependency,layoutId:\"Hc5OjVsAX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ltxwh3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"av7jhu6DR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-qv7p1g\",\"data-styles-preset\":\"JAW1iXkPv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inefficient Meetings\"})}),className:\"framer-1atlc7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XstaR2BuK\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioqp37\",\"data-styles-preset\":\"rYEMUuCfo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SurePeople optimizes meeting workflows, ensuring that every discussion is purposeful, engaging, and drives tangible outcomes.\"})}),className:\"framer-1p1jyt4\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nol8SlLmg\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})],startFrom:0,style:{height:\"100%\",maxHeight:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:49,delay:0,mass:1,stiffness:166,type:\"spring\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gMClZ.framer-19rtkbc, .framer-gMClZ .framer-19rtkbc { display: block; }\",\".framer-gMClZ.framer-19ju955 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 102px 0px 0px 0px; position: relative; width: 1201px; }\",\".framer-gMClZ .framer-e9wr3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-u8fjv6 { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-1dxy3je-container { flex: none; height: 517px; position: relative; width: 90%; }\",\".framer-gMClZ .framer-15m1uqw, .framer-gMClZ .framer-e02111, .framer-gMClZ .framer-wt6rfd, .framer-gMClZ .framer-1su879r, .framer-gMClZ .framer-1pedcsg, .framer-gMClZ .framer-tcywvl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 584px; justify-content: flex-start; overflow: visible; padding: 24px 0px 30px 0px; position: relative; width: 600px; }\",\".framer-gMClZ .framer-446krb, .framer-gMClZ .framer-parfs8, .framer-gMClZ .framer-1odxrx, .framer-gMClZ .framer-1iik129, .framer-gMClZ .framer-fzcd2z, .framer-gMClZ .framer-1dfkh6g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gMClZ .framer-1xcg7zx { flex: none; height: 225px; overflow: visible; position: relative; width: 440px; }\",\".framer-gMClZ .framer-11mr7nx, .framer-gMClZ .framer-ekqo8o { flex: none; height: 136px; left: 107px; position: absolute; top: 37px; width: 219px; }\",\".framer-gMClZ .framer-1gdl4vu-container, .framer-gMClZ .framer-119qzgs-container { flex: none; height: 61px; left: 48px; position: absolute; top: calc(50.00000000000002% - 61px / 2); width: 61px; }\",\".framer-gMClZ .framer-qo01er-container, .framer-gMClZ .framer-14hj9qn-container { flex: none; height: 61px; position: absolute; right: 56px; top: calc(50.00000000000002% - 61px / 2); width: 61px; }\",\".framer-gMClZ .framer-1nhc7mq, .framer-gMClZ .framer-166zg6g, .framer-gMClZ .framer-1kujmod { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-1q5hzec, .framer-gMClZ .framer-5b6l85, .framer-gMClZ .framer-1e2zotc, .framer-gMClZ .framer-1xhd0dx, .framer-gMClZ .framer-19riodo, .framer-gMClZ .framer-1y19x6z, .framer-gMClZ .framer-1l1krdz, .framer-gMClZ .framer-1ks4r4e, .framer-gMClZ .framer-trb30q, .framer-gMClZ .framer-1i8fcyt, .framer-gMClZ .framer-hlnubn, .framer-gMClZ .framer-zn7efg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-gt355s, .framer-gMClZ .framer-3psjda, .framer-gMClZ .framer-14bb8xd, .framer-gMClZ .framer-1vufaxp, .framer-gMClZ .framer-uaay2f, .framer-gMClZ .framer-1pez70i, .framer-gMClZ .framer-ut2pc9, .framer-gMClZ .framer-1xuw6q, .framer-gMClZ .framer-1xloggq, .framer-gMClZ .framer-ttfxeo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-nc3us9, .framer-gMClZ .framer-kc310e, .framer-gMClZ .framer-jdtj8r { flex: none; height: auto; min-height: 100px; overflow: visible; position: relative; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-w3z6cu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gMClZ .framer-1ynwnlj, .framer-gMClZ .framer-1hxrtvg { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-efc5c8, .framer-gMClZ .framer-12za5m3 { flex: none; height: 225px; overflow: visible; position: relative; width: 387px; }\",\".framer-gMClZ .framer-ou5ep, .framer-gMClZ .framer-fiqzb8 { flex: none; height: 172px; left: calc(49.35400516795868% - 211px / 2); position: absolute; top: 15px; width: 211px; }\",\".framer-gMClZ .framer-sw5p8j-container, .framer-gMClZ .framer-1kw2q4s-container { bottom: 33px; flex: none; height: 61px; left: 72px; position: absolute; width: 61px; }\",\".framer-gMClZ .framer-1x6itgj, .framer-gMClZ .framer-15qul0z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 540px; }\",\".framer-gMClZ .framer-ur4rab, .framer-gMClZ .framer-1vml8yx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 378px; }\",\".framer-gMClZ .framer-zywmwb, .framer-gMClZ .framer-rjxuvh { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-1w2ni2l { flex: none; height: 225px; overflow: visible; position: relative; width: 359px; }\",\".framer-gMClZ .framer-1e56nx2, .framer-gMClZ .framer-8loahn { flex: none; height: 143px; left: calc(50.13927576601673% - 142px / 2); position: absolute; top: calc(50.00000000000002% - 143px / 2); width: 142px; }\",\".framer-gMClZ .framer-mguoms-container, .framer-gMClZ .framer-1lw0rm4-container { flex: none; height: 61px; left: calc(50.13927576601673% - 61px / 2); position: absolute; top: calc(50.00000000000002% - 61px / 2); width: 61px; }\",\".framer-gMClZ .framer-8z20a7, .framer-gMClZ .framer-17f5g2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 540px; }\",\".framer-gMClZ .framer-s0fzpd, .framer-gMClZ .framer-of9qwg, .framer-gMClZ .framer-iba0v1 { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-1h7sm74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 225px; justify-content: center; overflow: visible; padding: 15.635178565979004px 20.846904754638672px 26.058631896972656px 20.846904754638672px; position: relative; width: min-content; }\",\".framer-gMClZ .framer-qv5a6w-container, .framer-gMClZ .framer-1viguwk-container { bottom: 22px; flex: none; height: 68px; position: absolute; right: 21px; width: 68px; z-index: 1; }\",\".framer-gMClZ .framer-1jr3x1i, .framer-gMClZ .framer-bywy9d { flex: none; height: 140px; overflow: visible; position: relative; width: 255px; }\",\".framer-gMClZ .framer-onl36c, .framer-gMClZ .framer-90rjpk { flex: none; height: 111px; left: 0px; position: absolute; top: 7px; width: 25px; }\",\".framer-gMClZ .framer-1us4eu4, .framer-gMClZ .framer-yxv47t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; left: 39px; overflow: visible; padding: 0px; position: absolute; top: 16px; width: min-content; }\",\".framer-gMClZ .framer-qisepd, .framer-gMClZ .framer-18vt6vo { flex: none; height: 10px; position: relative; width: 114px; }\",\".framer-gMClZ .framer-1lfda4z, .framer-gMClZ .framer-4vr9zz { flex: none; height: 16px; position: relative; width: 116px; }\",\".framer-gMClZ .framer-1h2yu9z, .framer-gMClZ .framer-b5zayc, .framer-gMClZ .framer-15j1skk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 540px; }\",\".framer-gMClZ .framer-1v2ew9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-haayv3 { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-tp3riz { flex: none; height: 225px; overflow: visible; position: relative; width: 367px; }\",\".framer-gMClZ .framer-gr0wcr, .framer-gMClZ .framer-1kd1l2b { bottom: 70px; flex: none; left: 45px; position: absolute; right: 48px; top: 78px; }\",\".framer-gMClZ .framer-187ms9i-container, .framer-gMClZ .framer-ryd48e-container { flex: none; height: 46px; left: calc(47.411444141689394% - 46px / 2); position: absolute; top: 43px; width: 46px; }\",\".framer-gMClZ .framer-171lgao, .framer-gMClZ .framer-10zb515 { flex: none; height: 17px; left: 41px; position: absolute; top: 113px; white-space: pre; width: 10px; }\",\".framer-gMClZ .framer-1mcy15t, .framer-gMClZ .framer-14pjy5x { flex: none; height: 17px; left: 315px; position: absolute; top: 113px; white-space: pre; width: 9px; }\",\".framer-gMClZ .framer-1vm17c0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-1krgoa6, .framer-gMClZ .framer-ibaq7r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 280px; }\",\".framer-gMClZ .framer-1jbtbzv, .framer-gMClZ .framer-1do15yv, .framer-gMClZ .framer-l5obww { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 151px; justify-content: flex-start; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-2wzrup, .framer-gMClZ .framer-lxa8cs, .framer-gMClZ .framer-1g8wle7, .framer-gMClZ .framer-11s94de, .framer-gMClZ .framer-82jv8m, .framer-gMClZ .framer-1qyukmb, .framer-gMClZ .framer-1pmu4fw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gMClZ .framer-1h3gasi, .framer-gMClZ .framer-8t3ojy, .framer-gMClZ .framer-1afoobx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-wm11rc, .framer-gMClZ .framer-1eotpie, .framer-gMClZ .framer-1t72m0a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 62px; justify-content: center; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-p3399s, .framer-gMClZ .framer-13y6ujr, .framer-gMClZ .framer-1rh4deu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: hidden; position: relative; width: 19px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-19njos0, .framer-gMClZ .framer-exg1t8, .framer-gMClZ .framer-cmxpv0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 19px; justify-content: flex-start; left: calc(49.99477226474068% - 18.68041229248047px / 2); overflow: visible; padding: 12.45361042022705px; position: absolute; top: calc(50% - 18.68041229248047px / 2); width: 19px; }\",\".framer-gMClZ .framer-p6jaup, .framer-gMClZ .framer-1fkaiu, .framer-gMClZ .framer-1xtyy66, .framer-gMClZ .framer-1q7jseh, .framer-gMClZ .framer-18fxid6, .framer-gMClZ .framer-o85j9j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 62px; justify-content: flex-start; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-1wrsu4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 128px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-aroygj, .framer-gMClZ .framer-b9t1vj, .framer-gMClZ .framer-1i9kk3u, .framer-gMClZ .framer-wlzvap, .framer-gMClZ .framer-4idukh, .framer-gMClZ .framer-zm8nxv, .framer-gMClZ .framer-1slonip, .framer-gMClZ .framer-1s8p5i1, .framer-gMClZ .framer-w89kdm, .framer-gMClZ .framer-lka37j, .framer-gMClZ .framer-1tuw13d, .framer-gMClZ .framer-h0vy7u, .framer-gMClZ .framer-1s5z3ty, .framer-gMClZ .framer-1s9gwv2, .framer-gMClZ .framer-1okatbd, .framer-gMClZ .framer-ztnuq1, .framer-gMClZ .framer-1yl3808, .framer-gMClZ .framer-cqlwqu, .framer-gMClZ .framer-1p1jyt4 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-ngz307-container { flex: none; height: 500px; max-width: 375px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-1vdo6p8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: 750px; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 240px; }\",\".framer-gMClZ .framer-xmzrnp { flex: none; height: 181px; overflow: visible; position: relative; width: 224px; }\",\".framer-gMClZ .framer-xno2a { flex: none; height: 77px; left: calc(49.55357142857145% - 125px / 2); position: absolute; top: calc(48.06629834254146% - 77px / 2); width: 125px; }\",\".framer-gMClZ .framer-1t4w5zk-container, .framer-gMClZ .framer-1fs5ih0-container { flex: none; height: 47px; position: absolute; right: 20px; top: calc(48.90510948905112% - 47px / 2); width: 47px; }\",\".framer-gMClZ .framer-1haxmqp-container, .framer-gMClZ .framer-hghs13-container { flex: none; height: 45px; left: 22px; position: absolute; top: calc(48.90510948905112% - 45px / 2); width: 45px; }\",\".framer-gMClZ .framer-h6ruq9, .framer-gMClZ .framer-4j02ss, .framer-gMClZ .framer-17f5el2, .framer-gMClZ .framer-bp3mtp, .framer-gMClZ .framer-19kjl5a, .framer-gMClZ .framer-1tw1b5k, .framer-gMClZ .framer-19zjllp, .framer-gMClZ .framer-kaqhx4, .framer-gMClZ .framer-1dj1nyb, .framer-gMClZ .framer-1xu4zgp, .framer-gMClZ .framer-8ol050, .framer-gMClZ .framer-ltxwh3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 88%; }\",\".framer-gMClZ .framer-12oquxf, .framer-gMClZ .framer-k8mmq3, .framer-gMClZ .framer-11mulxu, .framer-gMClZ .framer-50tzsl, .framer-gMClZ .framer-1yugq7b, .framer-gMClZ .framer-2gdaru, .framer-gMClZ .framer-yzb2q2, .framer-gMClZ .framer-1mpv9id, .framer-gMClZ .framer-1aevkoq, .framer-gMClZ .framer-1w297gy, .framer-gMClZ .framer-touhvi, .framer-gMClZ .framer-16ms3i0, .framer-gMClZ .framer-1c0iubh, .framer-gMClZ .framer-enh5kq, .framer-gMClZ .framer-12tjgnr, .framer-gMClZ .framer-qgdpr5, .framer-gMClZ .framer-1v6xc42, .framer-gMClZ .framer-1atlc7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gMClZ .framer-1sz2rbc, .framer-gMClZ .framer-1cwdfw2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 750px; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 240px; }\",\".framer-gMClZ .framer-1ir93tc { flex: none; height: 181px; overflow: visible; position: relative; width: 234px; }\",\".framer-gMClZ .framer-ecbi2a-container, .framer-gMClZ .framer-1czjl8u-container { bottom: 33px; flex: none; height: 45px; left: 36px; position: absolute; width: 45px; }\",\".framer-gMClZ .framer-179hqho { flex: none; height: 123px; left: calc(53.41880341880344% - 151px / 2); position: absolute; top: 19px; width: 151px; }\",\".framer-gMClZ .framer-fz907b, .framer-gMClZ .framer-1igvia4, .framer-gMClZ .framer-1y8p0hk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 750px; justify-content: flex-start; overflow: visible; padding: 20px 0px 28px 0px; position: relative; width: 240px; }\",\".framer-gMClZ .framer-14d51jl { flex: none; height: 181px; overflow: visible; position: relative; width: 230px; }\",\".framer-gMClZ .framer-xfy0i6-container { flex: none; height: 45px; left: calc(49.56521739130437% - 45px / 2); position: absolute; top: calc(49.72375690607737% - 45px / 2); width: 45px; }\",\".framer-gMClZ .framer-1r2f5d4 { flex: none; height: 136px; left: calc(50.00000000000002% - 134px / 2); position: absolute; top: calc(50.27624309392268% - 136px / 2); width: 134px; }\",\".framer-gMClZ .framer-1ejo6bi { flex: none; height: 181px; overflow: visible; position: relative; width: 228px; }\",\".framer-gMClZ .framer-dsd3st { flex: none; height: 32px; left: calc(50.00000000000002% - 179px / 2); position: absolute; top: calc(50.27624309392268% - 32px / 2); width: 179px; }\",\".framer-gMClZ .framer-1yxfn08-container { flex: none; height: 39px; left: calc(52.19298245614037% - 39px / 2); position: absolute; top: 42px; width: 39px; }\",\".framer-gMClZ .framer-ww0ncg { flex: none; height: 181px; overflow: visible; position: relative; width: 220px; }\",\".framer-gMClZ .framer-1uo0hjz-container, .framer-gMClZ .framer-tqtfd0-container { bottom: 20px; flex: none; height: 46px; position: absolute; right: 22px; width: 46px; }\",\".framer-gMClZ .framer-1ta8aqd, .framer-gMClZ .framer-btsurv { flex: none; height: 113px; left: 33px; position: absolute; top: calc(50.00000000000002% - 113px / 2); width: 149px; }\",\".framer-gMClZ .framer-khqxje { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 230px; }\",\".framer-gMClZ .framer-1cm2kej, .framer-gMClZ .framer-1ed7gqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-gMClZ .framer-3tp9yt-container { flex: none; height: 419px; position: relative; width: 80%; }\",\".framer-gMClZ .framer-1gtawqs, .framer-gMClZ .framer-40j4sz, .framer-gMClZ .framer-oo04v1, .framer-gMClZ .framer-e4stxk, .framer-gMClZ .framer-a5g96c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gMClZ .framer-1beevuw, .framer-gMClZ .framer-16y7902, .framer-gMClZ .framer-1kffztr, .framer-gMClZ .framer-9uz2f5, .framer-gMClZ .framer-13u7j9x, .framer-gMClZ .framer-1q83prj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 400px; }\",\".framer-gMClZ .framer-1owx6o1 { flex: none; height: 210px; overflow: visible; position: relative; width: 440px; }\",\".framer-gMClZ .framer-1tnigpl { flex: none; height: 194px; overflow: visible; position: relative; width: 359px; }\",\".framer-gMClZ .framer-mirps8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 811px; }\",\".framer-gMClZ .framer-1j0qx3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 15.635178565979004px 20.846904754638672px 26.058631896972656px 20.846904754638672px; position: relative; width: min-content; }\",\".framer-gMClZ .framer-4k0dfs { flex: none; height: 199px; overflow: visible; position: relative; width: 367px; }\",\".framer-gMClZ .framer-1ko30cf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 336px; }\",\".framer-gMClZ .framer-1i18o1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 181px; justify-content: flex-start; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-zv1w2h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gMClZ .framer-a7yx6m, .framer-gMClZ .framer-1hf7ug5, .framer-gMClZ .framer-3mnc29 { flex: 1 0 0px; height: 75px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-1ic3bol { flex: none; height: 23px; left: calc(49.261083743842384% - 22.5px / 2); overflow: hidden; position: absolute; top: 19px; width: 23px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gMClZ .framer-psaf37 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 22px; justify-content: flex-start; left: calc(49.995643553876434% - 22.416494369506836px / 2); overflow: visible; padding: 14.944332122802734px; position: absolute; top: calc(50% - 22.416494369506836px / 2); width: 22px; }\",\".framer-gMClZ .framer-1kwn881 { bottom: 20px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre; width: auto; }\",\".framer-gMClZ .framer-1d46gzk-container, .framer-gMClZ .framer-1q21gw9-container, .framer-gMClZ .framer-ghahy7-container { bottom: 7px; flex: none; height: 24px; position: absolute; right: 8px; width: 24px; }\",\".framer-gMClZ .framer-2ta9xg-container { flex: none; height: 524px; max-height: 532px; max-width: 375px; position: relative; width: 375px; }\",\".framer-gMClZ .framer-svaofy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: 593px; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 338px; }\",\".framer-gMClZ .framer-1k5md0e, .framer-gMClZ .framer-2o4ixb, .framer-gMClZ .framer-v2khm5, .framer-gMClZ .framer-jx9inz, .framer-gMClZ .framer-1wjw3al { flex: none; height: 181px; overflow: visible; position: relative; width: 264px; }\",\".framer-gMClZ .framer-14md13c { flex: none; height: 91px; left: calc(49.621212121212146% - 149px / 2); position: absolute; top: calc(48.60335195530728% - 91px / 2); width: 149px; }\",\".framer-gMClZ .framer-1ya2x20, .framer-gMClZ .framer-19ndfym { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 593px; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 338px; }\",\".framer-gMClZ .framer-gfxolb { flex: none; height: 141px; left: calc(49.621212121212146% - 173px / 2); position: absolute; top: calc(47.4860335195531% - 141px / 2); width: 173px; }\",\".framer-gMClZ .framer-3ohg0s, .framer-gMClZ .framer-2rmqnw, .framer-gMClZ .framer-zd8we2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 593px; justify-content: flex-start; overflow: visible; padding: 20px 0px 28px 0px; position: relative; width: 338px; }\",\".framer-gMClZ .framer-ee9k7t-container { flex: none; height: 45px; left: calc(49.621212121212146% - 45px / 2); position: absolute; top: calc(50.00000000000002% - 45px / 2); width: 45px; }\",\".framer-gMClZ .framer-b9dwrq { flex: none; height: 136px; left: calc(50.00000000000002% - 134px / 2); position: absolute; top: calc(50.00000000000002% - 136px / 2); width: 134px; }\",\".framer-gMClZ .framer-1dcfnk { flex: none; height: 44px; left: calc(50.00000000000002% - 245px / 2); position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 245px; }\",\".framer-gMClZ .framer-scslvz-container { flex: none; height: 45px; left: calc(50.00000000000002% - 45px / 2); position: absolute; top: 31px; width: 45px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gMClZ.framer-19ju955, .framer-gMClZ .framer-e9wr3r, .framer-gMClZ .framer-15m1uqw, .framer-gMClZ .framer-446krb, .framer-gMClZ .framer-1nhc7mq, .framer-gMClZ .framer-1q5hzec, .framer-gMClZ .framer-gt355s, .framer-gMClZ .framer-parfs8, .framer-gMClZ .framer-w3z6cu, .framer-gMClZ .framer-e02111, .framer-gMClZ .framer-1odxrx, .framer-gMClZ .framer-166zg6g, .framer-gMClZ .framer-5b6l85, .framer-gMClZ .framer-1x6itgj, .framer-gMClZ .framer-ur4rab, .framer-gMClZ .framer-1iik129, .framer-gMClZ .framer-wt6rfd, .framer-gMClZ .framer-1kujmod, .framer-gMClZ .framer-1e2zotc, .framer-gMClZ .framer-15qul0z, .framer-gMClZ .framer-1vml8yx, .framer-gMClZ .framer-8z20a7, .framer-gMClZ .framer-1su879r, .framer-gMClZ .framer-1h7sm74, .framer-gMClZ .framer-1us4eu4, .framer-gMClZ .framer-1h2yu9z, .framer-gMClZ .framer-1xhd0dx, .framer-gMClZ .framer-3psjda, .framer-gMClZ .framer-1v2ew9z, .framer-gMClZ .framer-17f5g2o, .framer-gMClZ .framer-1pedcsg, .framer-gMClZ .framer-b5zayc, .framer-gMClZ .framer-19riodo, .framer-gMClZ .framer-14bb8xd, .framer-gMClZ .framer-1vm17c0, .framer-gMClZ .framer-tcywvl, .framer-gMClZ .framer-1krgoa6, .framer-gMClZ .framer-1jbtbzv, .framer-gMClZ .framer-1h3gasi, .framer-gMClZ .framer-wm11rc, .framer-gMClZ .framer-19njos0, .framer-gMClZ .framer-p6jaup, .framer-gMClZ .framer-1fkaiu, .framer-gMClZ .framer-15j1skk, .framer-gMClZ .framer-1y19x6z, .framer-gMClZ .framer-1vufaxp, .framer-gMClZ .framer-1wrsu4j, .framer-gMClZ .framer-1vdo6p8, .framer-gMClZ .framer-h6ruq9, .framer-gMClZ .framer-1sz2rbc, .framer-gMClZ .framer-4j02ss, .framer-gMClZ .framer-fz907b, .framer-gMClZ .framer-17f5el2, .framer-gMClZ .framer-1igvia4, .framer-gMClZ .framer-bp3mtp, .framer-gMClZ .framer-1y8p0hk, .framer-gMClZ .framer-19kjl5a, .framer-gMClZ .framer-1cwdfw2, .framer-gMClZ .framer-khqxje, .framer-gMClZ .framer-1do15yv, .framer-gMClZ .framer-8t3ojy, .framer-gMClZ .framer-1eotpie, .framer-gMClZ .framer-exg1t8, .framer-gMClZ .framer-1xtyy66, .framer-gMClZ .framer-1q7jseh, .framer-gMClZ .framer-1cm2kej, .framer-gMClZ .framer-1tw1b5k, .framer-gMClZ .framer-1gtawqs, .framer-gMClZ .framer-1beevuw, .framer-gMClZ .framer-1l1krdz, .framer-gMClZ .framer-uaay2f, .framer-gMClZ .framer-fzcd2z, .framer-gMClZ .framer-40j4sz, .framer-gMClZ .framer-16y7902, .framer-gMClZ .framer-1ks4r4e, .framer-gMClZ .framer-1pez70i, .framer-gMClZ .framer-1dfkh6g, .framer-gMClZ .framer-oo04v1, .framer-gMClZ .framer-1kffztr, .framer-gMClZ .framer-trb30q, .framer-gMClZ .framer-ut2pc9, .framer-gMClZ .framer-mirps8, .framer-gMClZ .framer-9uz2f5, .framer-gMClZ .framer-1i8fcyt, .framer-gMClZ .framer-1xuw6q, .framer-gMClZ .framer-1j0qx3i, .framer-gMClZ .framer-yxv47t, .framer-gMClZ .framer-e4stxk, .framer-gMClZ .framer-13u7j9x, .framer-gMClZ .framer-hlnubn, .framer-gMClZ .framer-1xloggq, .framer-gMClZ .framer-a5g96c, .framer-gMClZ .framer-1q83prj, .framer-gMClZ .framer-zn7efg, .framer-gMClZ .framer-ttfxeo, .framer-gMClZ .framer-1ko30cf, .framer-gMClZ .framer-1i18o1w, .framer-gMClZ .framer-zv1w2h, .framer-gMClZ .framer-psaf37, .framer-gMClZ .framer-svaofy, .framer-gMClZ .framer-19zjllp, .framer-gMClZ .framer-1ya2x20, .framer-gMClZ .framer-kaqhx4, .framer-gMClZ .framer-3ohg0s, .framer-gMClZ .framer-1dj1nyb, .framer-gMClZ .framer-2rmqnw, .framer-gMClZ .framer-1xu4zgp, .framer-gMClZ .framer-zd8we2, .framer-gMClZ .framer-8ol050, .framer-gMClZ .framer-19ndfym, .framer-gMClZ .framer-ibaq7r, .framer-gMClZ .framer-l5obww, .framer-gMClZ .framer-1afoobx, .framer-gMClZ .framer-1t72m0a, .framer-gMClZ .framer-cmxpv0, .framer-gMClZ .framer-18fxid6, .framer-gMClZ .framer-o85j9j, .framer-gMClZ .framer-1ed7gqj, .framer-gMClZ .framer-ltxwh3 { gap: 0px; } .framer-gMClZ.framer-19ju955 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gMClZ.framer-19ju955 > :first-child, .framer-gMClZ .framer-e9wr3r > :first-child, .framer-gMClZ .framer-15m1uqw > :first-child, .framer-gMClZ .framer-1nhc7mq > :first-child, .framer-gMClZ .framer-1q5hzec > :first-child, .framer-gMClZ .framer-gt355s > :first-child, .framer-gMClZ .framer-e02111 > :first-child, .framer-gMClZ .framer-166zg6g > :first-child, .framer-gMClZ .framer-5b6l85 > :first-child, .framer-gMClZ .framer-1x6itgj > :first-child, .framer-gMClZ .framer-wt6rfd > :first-child, .framer-gMClZ .framer-1kujmod > :first-child, .framer-gMClZ .framer-1e2zotc > :first-child, .framer-gMClZ .framer-15qul0z > :first-child, .framer-gMClZ .framer-1su879r > :first-child, .framer-gMClZ .framer-1us4eu4 > :first-child, .framer-gMClZ .framer-1h2yu9z > :first-child, .framer-gMClZ .framer-1xhd0dx > :first-child, .framer-gMClZ .framer-3psjda > :first-child, .framer-gMClZ .framer-1pedcsg > :first-child, .framer-gMClZ .framer-b5zayc > :first-child, .framer-gMClZ .framer-19riodo > :first-child, .framer-gMClZ .framer-14bb8xd > :first-child, .framer-gMClZ .framer-tcywvl > :first-child, .framer-gMClZ .framer-1krgoa6 > :first-child, .framer-gMClZ .framer-1jbtbzv > :first-child, .framer-gMClZ .framer-wm11rc > :first-child, .framer-gMClZ .framer-p6jaup > :first-child, .framer-gMClZ .framer-1fkaiu > :first-child, .framer-gMClZ .framer-15j1skk > :first-child, .framer-gMClZ .framer-1y19x6z > :first-child, .framer-gMClZ .framer-1vufaxp > :first-child, .framer-gMClZ .framer-1wrsu4j > :first-child, .framer-gMClZ .framer-1vdo6p8 > :first-child, .framer-gMClZ .framer-h6ruq9 > :first-child, .framer-gMClZ .framer-1sz2rbc > :first-child, .framer-gMClZ .framer-4j02ss > :first-child, .framer-gMClZ .framer-fz907b > :first-child, .framer-gMClZ .framer-17f5el2 > :first-child, .framer-gMClZ .framer-1igvia4 > :first-child, .framer-gMClZ .framer-bp3mtp > :first-child, .framer-gMClZ .framer-1y8p0hk > :first-child, .framer-gMClZ .framer-19kjl5a > :first-child, .framer-gMClZ .framer-1cwdfw2 > :first-child, .framer-gMClZ .framer-khqxje > :first-child, .framer-gMClZ .framer-1do15yv > :first-child, .framer-gMClZ .framer-1eotpie > :first-child, .framer-gMClZ .framer-1xtyy66 > :first-child, .framer-gMClZ .framer-1q7jseh > :first-child, .framer-gMClZ .framer-1cm2kej > :first-child, .framer-gMClZ .framer-1tw1b5k > :first-child, .framer-gMClZ .framer-1beevuw > :first-child, .framer-gMClZ .framer-1l1krdz > :first-child, .framer-gMClZ .framer-uaay2f > :first-child, .framer-gMClZ .framer-16y7902 > :first-child, .framer-gMClZ .framer-1ks4r4e > :first-child, .framer-gMClZ .framer-1pez70i > :first-child, .framer-gMClZ .framer-1kffztr > :first-child, .framer-gMClZ .framer-trb30q > :first-child, .framer-gMClZ .framer-ut2pc9 > :first-child, .framer-gMClZ .framer-9uz2f5 > :first-child, .framer-gMClZ .framer-1i8fcyt > :first-child, .framer-gMClZ .framer-1xuw6q > :first-child, .framer-gMClZ .framer-yxv47t > :first-child, .framer-gMClZ .framer-13u7j9x > :first-child, .framer-gMClZ .framer-hlnubn > :first-child, .framer-gMClZ .framer-1xloggq > :first-child, .framer-gMClZ .framer-1q83prj > :first-child, .framer-gMClZ .framer-zn7efg > :first-child, .framer-gMClZ .framer-ttfxeo > :first-child, .framer-gMClZ .framer-1ko30cf > :first-child, .framer-gMClZ .framer-1i18o1w > :first-child, .framer-gMClZ .framer-svaofy > :first-child, .framer-gMClZ .framer-19zjllp > :first-child, .framer-gMClZ .framer-1ya2x20 > :first-child, .framer-gMClZ .framer-kaqhx4 > :first-child, .framer-gMClZ .framer-3ohg0s > :first-child, .framer-gMClZ .framer-1dj1nyb > :first-child, .framer-gMClZ .framer-2rmqnw > :first-child, .framer-gMClZ .framer-1xu4zgp > :first-child, .framer-gMClZ .framer-zd8we2 > :first-child, .framer-gMClZ .framer-8ol050 > :first-child, .framer-gMClZ .framer-19ndfym > :first-child, .framer-gMClZ .framer-ibaq7r > :first-child, .framer-gMClZ .framer-l5obww > :first-child, .framer-gMClZ .framer-1t72m0a > :first-child, .framer-gMClZ .framer-18fxid6 > :first-child, .framer-gMClZ .framer-o85j9j > :first-child, .framer-gMClZ .framer-1ed7gqj > :first-child, .framer-gMClZ .framer-ltxwh3 > :first-child { margin-top: 0px; } .framer-gMClZ.framer-19ju955 > :last-child, .framer-gMClZ .framer-e9wr3r > :last-child, .framer-gMClZ .framer-15m1uqw > :last-child, .framer-gMClZ .framer-1nhc7mq > :last-child, .framer-gMClZ .framer-1q5hzec > :last-child, .framer-gMClZ .framer-gt355s > :last-child, .framer-gMClZ .framer-e02111 > :last-child, .framer-gMClZ .framer-166zg6g > :last-child, .framer-gMClZ .framer-5b6l85 > :last-child, .framer-gMClZ .framer-1x6itgj > :last-child, .framer-gMClZ .framer-wt6rfd > :last-child, .framer-gMClZ .framer-1kujmod > :last-child, .framer-gMClZ .framer-1e2zotc > :last-child, .framer-gMClZ .framer-15qul0z > :last-child, .framer-gMClZ .framer-1su879r > :last-child, .framer-gMClZ .framer-1us4eu4 > :last-child, .framer-gMClZ .framer-1h2yu9z > :last-child, .framer-gMClZ .framer-1xhd0dx > :last-child, .framer-gMClZ .framer-3psjda > :last-child, .framer-gMClZ .framer-1pedcsg > :last-child, .framer-gMClZ .framer-b5zayc > :last-child, .framer-gMClZ .framer-19riodo > :last-child, .framer-gMClZ .framer-14bb8xd > :last-child, .framer-gMClZ .framer-tcywvl > :last-child, .framer-gMClZ .framer-1krgoa6 > :last-child, .framer-gMClZ .framer-1jbtbzv > :last-child, .framer-gMClZ .framer-wm11rc > :last-child, .framer-gMClZ .framer-p6jaup > :last-child, .framer-gMClZ .framer-1fkaiu > :last-child, .framer-gMClZ .framer-15j1skk > :last-child, .framer-gMClZ .framer-1y19x6z > :last-child, .framer-gMClZ .framer-1vufaxp > :last-child, .framer-gMClZ .framer-1wrsu4j > :last-child, .framer-gMClZ .framer-1vdo6p8 > :last-child, .framer-gMClZ .framer-h6ruq9 > :last-child, .framer-gMClZ .framer-1sz2rbc > :last-child, .framer-gMClZ .framer-4j02ss > :last-child, .framer-gMClZ .framer-fz907b > :last-child, .framer-gMClZ .framer-17f5el2 > :last-child, .framer-gMClZ .framer-1igvia4 > :last-child, .framer-gMClZ .framer-bp3mtp > :last-child, .framer-gMClZ .framer-1y8p0hk > :last-child, .framer-gMClZ .framer-19kjl5a > :last-child, .framer-gMClZ .framer-1cwdfw2 > :last-child, .framer-gMClZ .framer-khqxje > :last-child, .framer-gMClZ .framer-1do15yv > :last-child, .framer-gMClZ .framer-1eotpie > :last-child, .framer-gMClZ .framer-1xtyy66 > :last-child, .framer-gMClZ .framer-1q7jseh > :last-child, .framer-gMClZ .framer-1cm2kej > :last-child, .framer-gMClZ .framer-1tw1b5k > :last-child, .framer-gMClZ .framer-1beevuw > :last-child, .framer-gMClZ .framer-1l1krdz > :last-child, .framer-gMClZ .framer-uaay2f > :last-child, .framer-gMClZ .framer-16y7902 > :last-child, .framer-gMClZ .framer-1ks4r4e > :last-child, .framer-gMClZ .framer-1pez70i > :last-child, .framer-gMClZ .framer-1kffztr > :last-child, .framer-gMClZ .framer-trb30q > :last-child, .framer-gMClZ .framer-ut2pc9 > :last-child, .framer-gMClZ .framer-9uz2f5 > :last-child, .framer-gMClZ .framer-1i8fcyt > :last-child, .framer-gMClZ .framer-1xuw6q > :last-child, .framer-gMClZ .framer-yxv47t > :last-child, .framer-gMClZ .framer-13u7j9x > :last-child, .framer-gMClZ .framer-hlnubn > :last-child, .framer-gMClZ .framer-1xloggq > :last-child, .framer-gMClZ .framer-1q83prj > :last-child, .framer-gMClZ .framer-zn7efg > :last-child, .framer-gMClZ .framer-ttfxeo > :last-child, .framer-gMClZ .framer-1ko30cf > :last-child, .framer-gMClZ .framer-1i18o1w > :last-child, .framer-gMClZ .framer-svaofy > :last-child, .framer-gMClZ .framer-19zjllp > :last-child, .framer-gMClZ .framer-1ya2x20 > :last-child, .framer-gMClZ .framer-kaqhx4 > :last-child, .framer-gMClZ .framer-3ohg0s > :last-child, .framer-gMClZ .framer-1dj1nyb > :last-child, .framer-gMClZ .framer-2rmqnw > :last-child, .framer-gMClZ .framer-1xu4zgp > :last-child, .framer-gMClZ .framer-zd8we2 > :last-child, .framer-gMClZ .framer-8ol050 > :last-child, .framer-gMClZ .framer-19ndfym > :last-child, .framer-gMClZ .framer-ibaq7r > :last-child, .framer-gMClZ .framer-l5obww > :last-child, .framer-gMClZ .framer-1t72m0a > :last-child, .framer-gMClZ .framer-18fxid6 > :last-child, .framer-gMClZ .framer-o85j9j > :last-child, .framer-gMClZ .framer-1ed7gqj > :last-child, .framer-gMClZ .framer-ltxwh3 > :last-child { margin-bottom: 0px; } .framer-gMClZ .framer-e9wr3r > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-gMClZ .framer-15m1uqw > *, .framer-gMClZ .framer-e02111 > *, .framer-gMClZ .framer-wt6rfd > *, .framer-gMClZ .framer-1su879r > *, .framer-gMClZ .framer-1pedcsg > *, .framer-gMClZ .framer-tcywvl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-gMClZ .framer-446krb > *, .framer-gMClZ .framer-parfs8 > *, .framer-gMClZ .framer-w3z6cu > *, .framer-gMClZ .framer-1odxrx > *, .framer-gMClZ .framer-ur4rab > *, .framer-gMClZ .framer-1iik129 > *, .framer-gMClZ .framer-1vml8yx > *, .framer-gMClZ .framer-8z20a7 > *, .framer-gMClZ .framer-1h7sm74 > *, .framer-gMClZ .framer-1v2ew9z > *, .framer-gMClZ .framer-17f5g2o > *, .framer-gMClZ .framer-1vm17c0 > *, .framer-gMClZ .framer-fzcd2z > *, .framer-gMClZ .framer-1dfkh6g > *, .framer-gMClZ .framer-1j0qx3i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gMClZ .framer-446krb > :first-child, .framer-gMClZ .framer-parfs8 > :first-child, .framer-gMClZ .framer-w3z6cu > :first-child, .framer-gMClZ .framer-1odxrx > :first-child, .framer-gMClZ .framer-ur4rab > :first-child, .framer-gMClZ .framer-1iik129 > :first-child, .framer-gMClZ .framer-1vml8yx > :first-child, .framer-gMClZ .framer-8z20a7 > :first-child, .framer-gMClZ .framer-1h7sm74 > :first-child, .framer-gMClZ .framer-1v2ew9z > :first-child, .framer-gMClZ .framer-17f5g2o > :first-child, .framer-gMClZ .framer-1vm17c0 > :first-child, .framer-gMClZ .framer-1h3gasi > :first-child, .framer-gMClZ .framer-19njos0 > :first-child, .framer-gMClZ .framer-8t3ojy > :first-child, .framer-gMClZ .framer-exg1t8 > :first-child, .framer-gMClZ .framer-1gtawqs > :first-child, .framer-gMClZ .framer-fzcd2z > :first-child, .framer-gMClZ .framer-40j4sz > :first-child, .framer-gMClZ .framer-1dfkh6g > :first-child, .framer-gMClZ .framer-oo04v1 > :first-child, .framer-gMClZ .framer-mirps8 > :first-child, .framer-gMClZ .framer-1j0qx3i > :first-child, .framer-gMClZ .framer-e4stxk > :first-child, .framer-gMClZ .framer-a5g96c > :first-child, .framer-gMClZ .framer-zv1w2h > :first-child, .framer-gMClZ .framer-psaf37 > :first-child, .framer-gMClZ .framer-1afoobx > :first-child, .framer-gMClZ .framer-cmxpv0 > :first-child { margin-left: 0px; } .framer-gMClZ .framer-446krb > :last-child, .framer-gMClZ .framer-parfs8 > :last-child, .framer-gMClZ .framer-w3z6cu > :last-child, .framer-gMClZ .framer-1odxrx > :last-child, .framer-gMClZ .framer-ur4rab > :last-child, .framer-gMClZ .framer-1iik129 > :last-child, .framer-gMClZ .framer-1vml8yx > :last-child, .framer-gMClZ .framer-8z20a7 > :last-child, .framer-gMClZ .framer-1h7sm74 > :last-child, .framer-gMClZ .framer-1v2ew9z > :last-child, .framer-gMClZ .framer-17f5g2o > :last-child, .framer-gMClZ .framer-1vm17c0 > :last-child, .framer-gMClZ .framer-1h3gasi > :last-child, .framer-gMClZ .framer-19njos0 > :last-child, .framer-gMClZ .framer-8t3ojy > :last-child, .framer-gMClZ .framer-exg1t8 > :last-child, .framer-gMClZ .framer-1gtawqs > :last-child, .framer-gMClZ .framer-fzcd2z > :last-child, .framer-gMClZ .framer-40j4sz > :last-child, .framer-gMClZ .framer-1dfkh6g > :last-child, .framer-gMClZ .framer-oo04v1 > :last-child, .framer-gMClZ .framer-mirps8 > :last-child, .framer-gMClZ .framer-1j0qx3i > :last-child, .framer-gMClZ .framer-e4stxk > :last-child, .framer-gMClZ .framer-a5g96c > :last-child, .framer-gMClZ .framer-zv1w2h > :last-child, .framer-gMClZ .framer-psaf37 > :last-child, .framer-gMClZ .framer-1afoobx > :last-child, .framer-gMClZ .framer-cmxpv0 > :last-child { margin-right: 0px; } .framer-gMClZ .framer-1nhc7mq > *, .framer-gMClZ .framer-166zg6g > *, .framer-gMClZ .framer-1kujmod > *, .framer-gMClZ .framer-1h2yu9z > *, .framer-gMClZ .framer-b5zayc > *, .framer-gMClZ .framer-15j1skk > *, .framer-gMClZ .framer-1sz2rbc > *, .framer-gMClZ .framer-fz907b > *, .framer-gMClZ .framer-1igvia4 > *, .framer-gMClZ .framer-1y8p0hk > *, .framer-gMClZ .framer-1cwdfw2 > *, .framer-gMClZ .framer-1beevuw > *, .framer-gMClZ .framer-16y7902 > *, .framer-gMClZ .framer-1kffztr > *, .framer-gMClZ .framer-9uz2f5 > *, .framer-gMClZ .framer-13u7j9x > *, .framer-gMClZ .framer-1q83prj > *, .framer-gMClZ .framer-1ya2x20 > *, .framer-gMClZ .framer-3ohg0s > *, .framer-gMClZ .framer-2rmqnw > *, .framer-gMClZ .framer-zd8we2 > *, .framer-gMClZ .framer-19ndfym > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gMClZ .framer-1q5hzec > *, .framer-gMClZ .framer-5b6l85 > *, .framer-gMClZ .framer-1e2zotc > *, .framer-gMClZ .framer-1xhd0dx > *, .framer-gMClZ .framer-19riodo > *, .framer-gMClZ .framer-1jbtbzv > *, .framer-gMClZ .framer-p6jaup > *, .framer-gMClZ .framer-1fkaiu > *, .framer-gMClZ .framer-1y19x6z > *, .framer-gMClZ .framer-1do15yv > *, .framer-gMClZ .framer-1xtyy66 > *, .framer-gMClZ .framer-1q7jseh > *, .framer-gMClZ .framer-1cm2kej > *, .framer-gMClZ .framer-1l1krdz > *, .framer-gMClZ .framer-1ks4r4e > *, .framer-gMClZ .framer-trb30q > *, .framer-gMClZ .framer-1i8fcyt > *, .framer-gMClZ .framer-hlnubn > *, .framer-gMClZ .framer-zn7efg > *, .framer-gMClZ .framer-1i18o1w > *, .framer-gMClZ .framer-l5obww > *, .framer-gMClZ .framer-18fxid6 > *, .framer-gMClZ .framer-o85j9j > *, .framer-gMClZ .framer-1ed7gqj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-gMClZ .framer-gt355s > *, .framer-gMClZ .framer-1x6itgj > *, .framer-gMClZ .framer-15qul0z > *, .framer-gMClZ .framer-3psjda > *, .framer-gMClZ .framer-14bb8xd > *, .framer-gMClZ .framer-1vufaxp > *, .framer-gMClZ .framer-1wrsu4j > *, .framer-gMClZ .framer-uaay2f > *, .framer-gMClZ .framer-1pez70i > *, .framer-gMClZ .framer-ut2pc9 > *, .framer-gMClZ .framer-1xuw6q > *, .framer-gMClZ .framer-1xloggq > *, .framer-gMClZ .framer-ttfxeo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-gMClZ .framer-1us4eu4 > *, .framer-gMClZ .framer-yxv47t > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-gMClZ .framer-1krgoa6 > *, .framer-gMClZ .framer-khqxje > *, .framer-gMClZ .framer-ibaq7r > * { margin: 0px; margin-bottom: calc(16.877635955810547px / 2); margin-top: calc(16.877635955810547px / 2); } .framer-gMClZ .framer-1h3gasi > *, .framer-gMClZ .framer-8t3ojy > *, .framer-gMClZ .framer-1afoobx > * { margin: 0px; margin-left: calc(12.982797622680664px / 2); margin-right: calc(12.982797622680664px / 2); } .framer-gMClZ .framer-wm11rc > *, .framer-gMClZ .framer-1eotpie > *, .framer-gMClZ .framer-1t72m0a > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-gMClZ .framer-19njos0 > *, .framer-gMClZ .framer-exg1t8 > *, .framer-gMClZ .framer-cmxpv0 > * { margin: 0px; margin-left: calc(6.226805210113525px / 2); margin-right: calc(6.226805210113525px / 2); } .framer-gMClZ .framer-1vdo6p8 > *, .framer-gMClZ .framer-svaofy > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-gMClZ .framer-h6ruq9 > *, .framer-gMClZ .framer-4j02ss > *, .framer-gMClZ .framer-17f5el2 > *, .framer-gMClZ .framer-bp3mtp > *, .framer-gMClZ .framer-19kjl5a > *, .framer-gMClZ .framer-1tw1b5k > *, .framer-gMClZ .framer-19zjllp > *, .framer-gMClZ .framer-kaqhx4 > *, .framer-gMClZ .framer-1dj1nyb > *, .framer-gMClZ .framer-1xu4zgp > *, .framer-gMClZ .framer-8ol050 > *, .framer-gMClZ .framer-ltxwh3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-gMClZ .framer-1gtawqs > *, .framer-gMClZ .framer-40j4sz > *, .framer-gMClZ .framer-oo04v1 > *, .framer-gMClZ .framer-mirps8 > *, .framer-gMClZ .framer-e4stxk > *, .framer-gMClZ .framer-a5g96c > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-gMClZ .framer-1ko30cf > * { margin: 0px; margin-bottom: calc(20.253164291381836px / 2); margin-top: calc(20.253164291381836px / 2); } .framer-gMClZ .framer-zv1w2h > * { margin: 0px; margin-left: calc(15.579357147216797px / 2); margin-right: calc(15.579357147216797px / 2); } .framer-gMClZ .framer-psaf37 > * { margin: 0px; margin-left: calc(7.472166061401367px / 2); margin-right: calc(7.472166061401367px / 2); } }\",\".framer-gMClZ.framer-v-19yxk83.framer-19ju955 { gap: 32px; justify-content: flex-start; max-height: 900px; padding: 64px 0px 90px 0px; width: 375px; }\",\".framer-gMClZ.framer-v-19yxk83 .framer-e9wr3r, .framer-gMClZ.framer-v-6m4148 .framer-e9wr3r { order: 0; }\",\".framer-gMClZ.framer-v-19yxk83 .framer-u8fjv6, .framer-gMClZ.framer-v-6m4148 .framer-u8fjv6 { width: 90%; }\",\".framer-gMClZ.framer-v-19yxk83 .framer-2ta9xg-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gMClZ.framer-v-19yxk83.framer-19ju955 { gap: 0px; } .framer-gMClZ.framer-v-19yxk83.framer-19ju955 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-gMClZ.framer-v-19yxk83.framer-19ju955 > :first-child { margin-top: 0px; } .framer-gMClZ.framer-v-19yxk83.framer-19ju955 > :last-child { margin-bottom: 0px; } }\",\".framer-gMClZ.framer-v-fxv8ro.framer-19ju955 { gap: 32px; padding: 40px 0px 40px 0px; width: 1024px; }\",\".framer-gMClZ.framer-v-fxv8ro .framer-e9wr3r { gap: 24px; }\",\".framer-gMClZ.framer-v-fxv8ro .framer-u8fjv6 { width: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gMClZ.framer-v-fxv8ro.framer-19ju955, .framer-gMClZ.framer-v-fxv8ro .framer-e9wr3r { gap: 0px; } .framer-gMClZ.framer-v-fxv8ro.framer-19ju955 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-gMClZ.framer-v-fxv8ro.framer-19ju955 > :first-child, .framer-gMClZ.framer-v-fxv8ro .framer-e9wr3r > :first-child { margin-top: 0px; } .framer-gMClZ.framer-v-fxv8ro.framer-19ju955 > :last-child, .framer-gMClZ.framer-v-fxv8ro .framer-e9wr3r > :last-child { margin-bottom: 0px; } .framer-gMClZ.framer-v-fxv8ro .framer-e9wr3r > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-gMClZ.framer-v-6m4148.framer-19ju955 { justify-content: flex-start; padding: 64px 0px 90px 0px; width: 240px; }\",\".framer-gMClZ.framer-v-6m4148 .framer-ngz307-container { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-gMClZ[data-border=\"true\"]::after, .framer-gMClZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 584\n * @framerIntrinsicWidth 1201\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a2xSGIrVq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"900px\"]},\"QR7bO3QmG\":{\"layout\":[\"fixed\",\"auto\"]},\"eU9HcPWKs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrbdA1k6EM=withCSS(Component,css,\"framer-gMClZ\");export default FramerrbdA1k6EM;FramerrbdA1k6EM.displayName=\"Slideshow\";FramerrbdA1k6EM.defaultProps={height:584,width:1201};addPropertyControls(FramerrbdA1k6EM,{variant:{options:[\"wy79ZQUg8\",\"a2xSGIrVq\",\"QR7bO3QmG\",\"eU9HcPWKs\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tab\",\"Russ\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrbdA1k6EM,[{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:\"Gabarito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gabarito/v7/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj20cK0EwItq6bFIg.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNi0Dp6_cOyA.woff2\",weight:\"600\"},{family:\"Gabarito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gabarito/v7/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2PcW0EwItq6bFIg.woff2\",weight:\"600\"}]},...PeopleFonts,...SlideshowFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrbdA1k6EM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"584\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a2xSGIrVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"900px\\\"]},\\\"QR7bO3QmG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eU9HcPWKs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1201\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"#framer/local/canvasComponent/G_MbfHfai/G_MbfHfai.js\";import SurePeopleNav from\"#framer/local/canvasComponent/gB9jHO3Tz/gB9jHO3Tz.js\";import CarouselSlideshow from\"#framer/local/canvasComponent/IjQ1rlf0a/IjQ1rlf0a.js\";import Testimonials from\"#framer/local/canvasComponent/irIGTzDeI/irIGTzDeI.js\";import Channels from\"#framer/local/canvasComponent/IzWFQ31jN/IzWFQ31jN.js\";import Hero from\"#framer/local/canvasComponent/J3YjjM8g9/J3YjjM8g9.js\";import CTA from\"#framer/local/canvasComponent/LvDci0Trq/LvDci0Trq.js\";import Gradient from\"#framer/local/canvasComponent/NlDMETkaE/NlDMETkaE.js\";import Footer from\"#framer/local/canvasComponent/NlziKpihc/NlziKpihc.js\";import VIDEO from\"#framer/local/canvasComponent/PvqjJQSJ_/PvqjJQSJ_.js\";import Awards from\"#framer/local/canvasComponent/qoSvWsRDa/qoSvWsRDa.js\";import Slideshow from\"#framer/local/canvasComponent/rbdA1k6EM/rbdA1k6EM.js\";import SingleCTA from\"#framer/local/canvasComponent/v2YF5ahaU/v2YF5ahaU.js\";import{CustomComponent}from\"#framer/local/codeFile/WLLPXhu/Textmove.js\";import metadataProvider from\"#framer/local/webPageMetadata/Xl7gU4Y85/Xl7gU4Y85.js\";const SurePeopleNavFonts=getFonts(SurePeopleNav);const HeroFonts=getFonts(Hero);const CTAFonts=getFonts(CTA);const ContainerWithFX=withFX(Container);const SlideshowFonts=getFonts(Slideshow);const CarouselSlideshowFonts=getFonts(CarouselSlideshow);const ChannelsFonts=getFonts(Channels);const VIDEOFonts=getFonts(VIDEO);const CustomComponentFonts=getFonts(CustomComponent);const TestimonialsFonts=getFonts(Testimonials);const TickerFonts=getFonts(Ticker);const AwardsFonts=getFonts(Awards);const SingleCTAFonts=getFonts(SingleCTA);const FooterFonts=getFonts(Footer);const GradientFonts=getFonts(Gradient);const breakpoints={GbT3EFliJ:\"(min-width: 1201px)\",MXBPsi51p:\"(max-width: 374px)\",Vi09WlIZq:\"(min-width: 375px) and (max-width: 1023px)\",Xjtg9H8DZ:\"(min-width: 1024px) and (max-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-K031I\";const variantClassNames={GbT3EFliJ:\"framer-v-12iwnhg\",MXBPsi51p:\"framer-v-19wzxp3\",Vi09WlIZq:\"framer-v-uy3zxm\",Xjtg9H8DZ:\"framer-v-w11iba\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Russ Phone \":\"MXBPsi51p\",Desktop:\"GbT3EFliJ\",Phone:\"Vi09WlIZq\",tab:\"Xjtg9H8DZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GbT3EFliJ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"rAHTiLOdt\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"M6BnZ18sN\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"acpWFR79t\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"kQPTpNcg2\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GbT3EFliJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, rgb(254, 252, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12iwnhg\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ccrr4r-container\",\"data-framer-name\":\"Sorbet Nav\",name:\"Sorbet Nav\",nodeId:\"W_PrmLu07\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"ytoKQqW3a\"},Vi09WlIZq:{variant:\"ytoKQqW3a\"}},children:/*#__PURE__*/_jsx(SurePeopleNav,{EgsywlaXZ:\"var(--token-3078e55e-8ed0-45af-ac0d-9ae40a3b512a, rgb(36, 35, 35))\",EjhMd67Qm:\"fGqQwTyvi\",height:\"100%\",id:\"W_PrmLu07\",layoutId:\"W_PrmLu07\",name:\"Sorbet Nav\",qCUKjhRQH:\"var(--token-3078e55e-8ed0-45af-ac0d-9ae40a3b512a, rgb(36, 35, 35))\",style:{width:\"100%\"},variant:\"rHDfU4X4j\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:748,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+135,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vcdgz-container\",nodeId:\"pVRe3hMI7\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"cZXuExYhS\"},Vi09WlIZq:{variant:\"mtho6a7sH\"},Xjtg9H8DZ:{variant:\"WeTzCrx5J\"}},children:/*#__PURE__*/_jsx(Hero,{height:\"100%\",id:\"pVRe3hMI7\",layoutId:\"pVRe3hMI7\",style:{width:\"100%\"},variant:\"M6LdclWka\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:810,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+883,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{__framer__styleAppearEffectEnabled:undefined,style:{}},Vi09WlIZq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uggsh8-container\",\"data-framer-name\":\"Prism\",id:elementId,name:\"Prism\",nodeId:\"rAHTiLOdt\",ref:ref1,rendersWithMotion:true,scopeId:\"Xl7gU4Y85\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"bzXwMxz5A\"},Vi09WlIZq:{variant:\"tzZiLTswA\"},Xjtg9H8DZ:{variant:\"y8NpVF3OL\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"rAHTiLOdt\",layoutId:\"rAHTiLOdt\",name:\"Prism\",style:{width:\"100%\"},variant:\"l2vRvw_2v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1693,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gp2kv8-container\",\"data-framer-name\":\"Channels\",name:\"Channels\",nodeId:\"efWyf5SHG\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"eU9HcPWKs\"},Vi09WlIZq:{variant:\"a2xSGIrVq\"},Xjtg9H8DZ:{variant:\"QR7bO3QmG\"}},children:/*#__PURE__*/_jsx(Slideshow,{height:\"100%\",id:\"efWyf5SHG\",layoutId:\"efWyf5SHG\",name:\"Channels\",style:{width:\"100%\"},variant:\"wy79ZQUg8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{width:componentViewport?.width||\"100vw\"},Vi09WlIZq:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.88)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1437,width:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,y:(componentViewport?.y||0)+0+2277,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y39k0i-container\",id:elementId1,nodeId:\"M6BnZ18sN\",ref:ref2,scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"bZFIlTFfs\"},Vi09WlIZq:{variant:\"bZFIlTFfs\"},Xjtg9H8DZ:{variant:\"VnSS1BKzq\"}},children:/*#__PURE__*/_jsx(CarouselSlideshow,{height:\"100%\",HH5LtCuuC:\"How it works\",id:\"M6BnZ18sN\",layoutId:\"M6BnZ18sN\",style:{width:\"100%\"},variant:\"Zx_umBlnw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:947,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3714,children:/*#__PURE__*/_jsx(Container,{className:\"framer-846vls-container\",id:elementId2,nodeId:\"acpWFR79t\",ref:ref3,scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"c9jFqnbfm\"},Vi09WlIZq:{variant:\"xV63EmHSr\"},Xjtg9H8DZ:{variant:\"NvTYqy1bW\"}},children:/*#__PURE__*/_jsx(Channels,{height:\"100%\",id:\"acpWFR79t\",layoutId:\"acpWFR79t\",style:{width:\"100%\"},variant:\"waKrVsugR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{y:(componentViewport?.y||0)+0+4861},Vi09WlIZq:{y:(componentViewport?.y||0)+0+4861},Xjtg9H8DZ:{y:(componentViewport?.y||0)+0+4861}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:707,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4661,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ccekd4-container\",nodeId:\"MqgDw4iwJ\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"Bp0BfC5jv\"},Vi09WlIZq:{variant:\"S2kPPrnHK\"},Xjtg9H8DZ:{variant:\"M07ziOrVL\"}},children:/*#__PURE__*/_jsx(VIDEO,{height:\"100%\",id:\"MqgDw4iwJ\",layoutId:\"MqgDw4iwJ\",style:{width:\"100%\"},variant:\"XqOyxCnbJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zvvadx-container\",isAuthoredByUser:true,nodeId:\"k61d4JW7L\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(CustomComponent,{height:\"100%\",id:\"k61d4JW7L\",layoutId:\"k61d4JW7L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:759,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5568,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hyfvxw-container\",nodeId:\"fVCK3lvSJ\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"R2JOHvVFP\"},Vi09WlIZq:{variant:\"LEFhFXzte\"},Xjtg9H8DZ:{variant:\"cF8JtCPRX\"}},children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"fVCK3lvSJ\",layoutId:\"fVCK3lvSJ\",style:{width:\"100%\"},variant:\"l7pILWivZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6327,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rkd93q-container\",nodeId:\"ZpJhHo97r\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(Ticker,{height:\"100%\",id:\"ZpJhHo97r\",layoutId:\"ZpJhHo97r\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:603,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6443,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1irlp4q-container\",nodeId:\"mDbVMp6X9\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"gpdSCgOI4\"},Vi09WlIZq:{variant:\"gpdSCgOI4\"},Xjtg9H8DZ:{variant:\"EUjHdYZNr\"}},children:/*#__PURE__*/_jsx(Awards,{height:\"100%\",id:\"mDbVMp6X9\",layoutId:\"mDbVMp6X9\",style:{width:\"100%\"},variant:\"S5mn2tfYU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7046,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h16wy3-container\",nodeId:\"k0bCXqylg\",scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"WYybam42v\"},Vi09WlIZq:{variant:\"WYybam42v\"},Xjtg9H8DZ:{variant:\"BcjAyQri4\"}},children:/*#__PURE__*/_jsx(SingleCTA,{height:\"100%\",id:\"k0bCXqylg\",layoutId:\"k0bCXqylg\",o4Z7Ddmmt:\"Learn how SurePeople can help your organization  \",style:{width:\"100%\"},variant:\"lIIlm9o6D\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7284,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1odrkri-container\",id:elementId3,nodeId:\"kQPTpNcg2\",ref:ref4,scopeId:\"Xl7gU4Y85\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"XX68kOg5Q\"},Vi09WlIZq:{variant:\"XX68kOg5Q\"},Xjtg9H8DZ:{variant:\"RRAETVh9Q\"}},children:/*#__PURE__*/_jsx(Footer,{bpKF4itQZ:\"var(--token-37fef118-9086-4cf0-9130-03d901fceaee, rgba(37, 246, 250, 0.4))\",height:\"100%\",id:\"kQPTpNcg2\",layoutId:\"kQPTpNcg2\",style:{width:\"100%\"},variant:\"DfSw21Bim\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:389,width:\"564px\",y:(componentViewport?.y||0)+-270,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u5d081-container\",nodeId:\"tfrKBoAnF\",rendersWithMotion:true,scopeId:\"Xl7gU4Y85\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MXBPsi51p:{variant:\"gSckXc2Qn\"},Vi09WlIZq:{variant:\"gSckXc2Qn\"}},children:/*#__PURE__*/_jsx(Gradient,{height:\"100%\",id:\"tfrKBoAnF\",layoutId:\"tfrKBoAnF\",style:{height:\"100%\",width:\"100%\"},variant:\"VQ7NhnGnd\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K031I.framer-1bnk7fc, .framer-K031I .framer-1bnk7fc { display: block; }\",\".framer-K031I.framer-12iwnhg { align-content: center; align-items: center; background-color: var(--token-7d971fb2-aa7a-4fc6-9b2d-d28af0ab037a, #fefcf5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1201px; }\",\".framer-K031I .framer-ccrr4r-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-K031I .framer-16vcdgz-container { cursor: pointer; flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-K031I .framer-uggsh8-container, .framer-K031I .framer-gp2kv8-container, .framer-K031I .framer-846vls-container, .framer-K031I .framer-ccekd4-container, .framer-K031I .framer-1hyfvxw-container, .framer-K031I .framer-rkd93q-container, .framer-K031I .framer-1irlp4q-container, .framer-K031I .framer-1h16wy3-container, .framer-K031I .framer-1odrkri-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-K031I .framer-y39k0i-container { flex: none; height: auto; position: relative; width: 80%; z-index: 1; }\",\".framer-K031I .framer-zvvadx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-K031I .framer-1u5d081-container { flex: none; height: 389px; left: -292px; opacity: 0.3; position: absolute; top: -270px; width: 564px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K031I.framer-12iwnhg { gap: 0px; } .framer-K031I.framer-12iwnhg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K031I.framer-12iwnhg > :first-child { margin-top: 0px; } .framer-K031I.framer-12iwnhg > :last-child { margin-bottom: 0px; } }\",\"@media (min-width: 1024px) and (max-width: 1200px) { .framer-K031I.framer-12iwnhg { width: 1024px; } .framer-K031I .framer-ccrr4r-container { order: 0; } .framer-K031I .framer-16vcdgz-container { cursor: default; order: 1; } .framer-K031I .framer-uggsh8-container { order: 2; } .framer-K031I .framer-gp2kv8-container { order: 3; } .framer-K031I .framer-y39k0i-container { order: 4; } .framer-K031I .framer-846vls-container { order: 5; } .framer-K031I .framer-ccekd4-container { order: 7; } .framer-K031I .framer-zvvadx-container { order: 6; } .framer-K031I .framer-1hyfvxw-container { order: 8; } .framer-K031I .framer-rkd93q-container { order: 9; } .framer-K031I .framer-1irlp4q-container { order: 10; } .framer-K031I .framer-1h16wy3-container { order: 11; } .framer-K031I .framer-1odrkri-container { order: 12; } .framer-K031I .framer-1u5d081-container { order: 13; }}\",\"@media (min-width: 375px) and (max-width: 1023px) { .framer-K031I.framer-12iwnhg { width: 375px; } .framer-K031I .framer-ccrr4r-container { order: 0; } .framer-K031I .framer-16vcdgz-container { order: 1; } .framer-K031I .framer-uggsh8-container { order: 2; } .framer-K031I .framer-gp2kv8-container { order: 3; } .framer-K031I .framer-y39k0i-container { order: 4; width: 88%; } .framer-K031I .framer-846vls-container { order: 5; } .framer-K031I .framer-ccekd4-container { order: 7; z-index: 0; } .framer-K031I .framer-zvvadx-container { order: 6; } .framer-K031I .framer-1hyfvxw-container { order: 8; z-index: 1; } .framer-K031I .framer-rkd93q-container { order: 9; } .framer-K031I .framer-1irlp4q-container { order: 10; } .framer-K031I .framer-1h16wy3-container { order: 11; } .framer-K031I .framer-1odrkri-container { order: 12; } .framer-K031I .framer-1u5d081-container { order: 13; }}\",\"@media (max-width: 374px) { .framer-K031I.framer-12iwnhg { width: 260px; } .framer-K031I .framer-ccrr4r-container { order: 0; } .framer-K031I .framer-16vcdgz-container { order: 1; } .framer-K031I .framer-uggsh8-container { order: 2; } .framer-K031I .framer-gp2kv8-container { order: 3; } .framer-K031I .framer-y39k0i-container { order: 4; width: 100%; } .framer-K031I .framer-846vls-container { order: 5; } .framer-K031I .framer-ccekd4-container { order: 7; z-index: 0; } .framer-K031I .framer-zvvadx-container { order: 6; } .framer-K031I .framer-1hyfvxw-container { order: 8; z-index: 1; } .framer-K031I .framer-rkd93q-container { order: 9; } .framer-K031I .framer-1irlp4q-container { order: 10; } .framer-K031I .framer-1h16wy3-container { order: 11; } .framer-K031I .framer-1odrkri-container { order: 12; } .framer-K031I .framer-1u5d081-container { order: 13; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7651.5\n * @framerIntrinsicWidth 1201\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Xjtg9H8DZ\":{\"layout\":[\"fixed\",\"auto\"]},\"Vi09WlIZq\":{\"layout\":[\"fixed\",\"auto\"]},\"MXBPsi51p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rAHTiLOdt\":{\"pattern\":\":rAHTiLOdt\",\"name\":\"cta14\"},\"M6BnZ18sN\":{\"pattern\":\":M6BnZ18sN\",\"name\":\"distribution-channels\"},\"acpWFR79t\":{\"pattern\":\":acpWFR79t\",\"name\":\"three-channels\"},\"kQPTpNcg2\":{\"pattern\":\":kQPTpNcg2\",\"name\":\"footer08\"}}\n * @framerResponsiveScreen\n */const FramerXl7gU4Y85=withCSS(Component,css,\"framer-K031I\");export default FramerXl7gU4Y85;FramerXl7gU4Y85.displayName=\"Home\";FramerXl7gU4Y85.defaultProps={height:7651.5,width:1201};addFonts(FramerXl7gU4Y85,[{explicitInter:true,fonts:[]},...SurePeopleNavFonts,...HeroFonts,...CTAFonts,...SlideshowFonts,...CarouselSlideshowFonts,...ChannelsFonts,...VIDEOFonts,...CustomComponentFonts,...TestimonialsFonts,...TickerFonts,...AwardsFonts,...SingleCTAFonts,...FooterFonts,...GradientFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXl7gU4Y85\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7651.5\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"rAHTiLOdt\\\":{\\\"pattern\\\":\\\":rAHTiLOdt\\\",\\\"name\\\":\\\"cta14\\\"},\\\"M6BnZ18sN\\\":{\\\"pattern\\\":\\\":M6BnZ18sN\\\",\\\"name\\\":\\\"distribution-channels\\\"},\\\"acpWFR79t\\\":{\\\"pattern\\\":\\\":acpWFR79t\\\",\\\"name\\\":\\\"three-channels\\\"},\\\"kQPTpNcg2\\\":{\\\"pattern\\\":\\\":kQPTpNcg2\\\",\\\"name\\\":\\\"footer08\\\"}}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xjtg9H8DZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vi09WlIZq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MXBPsi51p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1201\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "29DAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,GAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,GAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,GAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,GAAYC,EAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,IAAaW,GAAK,SAAQK,GAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,IAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,IAAtLd,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,YAAYA,GAAY,CAAC,EAAE,QAAQ,UAAUA,GAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,GAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,GAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,GAAaC,GAAcC,GAAcC,GAAc,IAAIC,GAAOL,IAAQ,IAAGK,GAAI3B,GAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,GAAI3B,GAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,KAAa,CAAC,IAAIT,GAAaC,GAAcC,GAAcC,GAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAMzC,GAAW0C,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,MAAM,OAAO,OAAOzC,GAAYgD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,GAAehC,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,GAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,EAAS,EAEzCrC,IAA+BwD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,IAAgB,CAAC/D,GAAe,OAAAuE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,EAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,GAAe/D,CAAK,CAAC,EACtX6C,GAAU,IAAI,CAAK0B,GAAa,UAAkBC,GAAUD,GAAa,QAAQ,YAAY,SAAUA,GAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,GAAa,QAAQ,YAAY,WAAWA,GAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,IAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,IAAO3E,GAAaiE,GAAK,SAASU,GAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMY,GAAczD,GAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,EAAa,mBAAmBnE,CAAS,KAAKsE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBrE,CAAS,KAAKwE,EAAY,KAAsB,OAAI/D,GAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,GAAY6E,GAAS,OAAU,aAAa7E,GAAY6E,GAAS,OAAU,UAAU7E,GAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,GAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,GAAa,MAAM,SAAS,GAAGf,GAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,GAAa,UACz5DA,GAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,GAAa,UACzGA,GAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC5Bh/F,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAyCC,GAA0BC,EAAOC,EAAO,GAAG,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAuCuB,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGvB,GAAUmB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAK2C,GAAyC,CAAC,GAAGtB,EAAU,GAAGI,EAAgB,0BAA0BpC,GAAU,0BAA0BC,GAAW,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU4C,EAAGD,EAAkB,iBAAiBf,EAAUK,CAAU,EAAE,wBAAwB,UAAU,mBAAmB,UAAU,iBAAiBS,EAAiB,SAAS,YAAY,UAAU,GAAK,IAAInB,GAAKuB,EAAK,MAAM,CAAC,gBAAgB,qBAAqB,GAAGnB,CAAK,EAAE,SAAsBjB,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK6C,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc7C,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gyNAAgyN,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,irDAAirD,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wqWAAwqW,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ioMAAioM,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA02b,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,s4FAAs4F,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+iHAA+iH,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ileAAile,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,kzHAAkzH,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA2pZ,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA86F,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAo2R,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkgF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09+B,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBf,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,kFAAkF,4QAA4Q,4GAA4G,0SAA0S,qGAAqG,6KAA6K,oXAAoX,qRAAqR,mFAAmF,89BAA89B,EAQhhsIC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRmsB,IAAMC,GAAWC,EAASC,CAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAWJ,EAASK,EAAK,EAAQC,GAAcN,EAASO,EAAQ,EAAQC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASzB,EAAO,OAAa0B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAOG,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,UAAA2C,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,IAAIuC,EAAW,QAAAhC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB5B,GAAuBD,EAAM3B,CAAQ,EAAO,CAAC,sBAAAyD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAoBH,EAAsB,SAASI,KAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAA4DC,GAAkBC,EAAGnE,GAAkB,GAArE,CAAa+C,EAAS,CAAuE,EAAQqB,GAAY,IAAQjB,IAAc,YAA6CkB,GAAa,IAAQlB,IAAc,YAAuC,OAAoB7B,EAAKgD,EAAY,CAAC,GAAGtB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsBgE,EAAMzE,EAAO,IAAI,CAAC,GAAGoD,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,GAAkB,gBAAgBnB,EAAUK,EAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAoB,IAAI1B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAAcgB,EAAM3E,GAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,MAAS,EAAE,UAAU,CAAC,qBAAqB,MAAS,CAAC,EAAE,GAAG1D,GAAqB,CAAC,UAAU,CAAC,mCAAmC,MAAS,EAAE,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAAcjC,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAG5B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,GAAG0C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBjC,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKjC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,eAAe,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2DAA2D,MAAM,CAAC,OAAO,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1D,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqD,EAAYI,CAAc,CAAC,CAAC,EAAejC,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAG5B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG1C,GAAqB,CAAC,UAAU,CAAC,GAAG0C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBjC,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK/B,GAAO,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qBAAqB,UAAU,eAAe,UAAU,oCAA+B,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6E,GAAY,GAAgB9C,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK3B,GAAS,CAAC,MAAM,SAAS,UAAU,eAAe,YAAY,CAAC,UAAU,uEAAuE,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAM,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,GAAG,YAAY,EAAE,eAAe,GAAK,aAAa,EAAE,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,EAAE,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAc2B,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,6SAA6S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,sTAAsT,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,uTAAuT,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBH,EAAY/C,EAAS,CAAC,SAAS,CAAcF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+BAA+B,CAAC,EAAewB,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,+SAA+S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBH,EAAY/C,EAAS,CAAC,SAAS,CAAcF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,EAAewB,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,4SAA6S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBH,EAAY/C,EAAS,CAAC,SAAS,CAAcF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,EAAewB,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAM,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAES,GAAa,GAAgB/C,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK3B,GAAS,CAAC,MAAM,SAAS,UAAU,eAAe,YAAY,CAAC,UAAU,uEAAuE,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,GAAG,YAAY,EAAE,eAAe,GAAK,aAAa,EAAE,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,EAAE,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAc2B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,+SAA+S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,uTAAuT,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,sTAAsT,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,kBAAkBjD,GAAmB,SAAS,CAAcW,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,6SAA6S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBtC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAActC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBb,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAK7B,GAAM,CAAC,OAAO,OAAO,KAAK,4SAA6S,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8D,EAAiB,SAAS,YAAY,SAAsBW,EAAMzE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8D,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAsBwB,EAAKxB,EAAO,OAAO,CAAC,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAM,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAG1D,GAAqB,CAAC,UAAU,CAAC,KAAK,EAAK,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,kFAAkF,sRAAsR,sRAAsR,iJAAiJ,oKAAoK,0GAA0G,gOAAgO,0jBAA0jB,wWAAwW,ybAAyb,2bAA2b,kiBAAkiB,gjCAAgjC,uGAAuG,iOAAiO,uWAAuW,4NAA4N,2UAA2U,8QAA8Q,oSAAoS,gTAAgT,iEAAiE,0TAA0T,kFAAkF,yEAAyE,yGAAyG,yGAAyG,GAAeA,GAAI,+bAA+b,EAWn+vEC,GAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,QAAQ,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzF,GAAW,GAAGG,GAAY,GAAGE,GAAW,GAAGE,GAAc,GAAGwF,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXj1C,IAAMC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAuBC,EAASC,EAAiB,EAAQC,GAAWF,EAASG,CAAK,EAAQC,GAAyCC,GAA0BR,EAAOC,EAAO,GAAG,CAAC,EAAQQ,GAAYN,EAASO,CAAM,EAAQC,GAAeR,EAASS,EAAS,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,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,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAmCE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAAS9C,EAAO,OAAa+C,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMlC,IAAekC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAEkC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAUsC,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA5C,EAAQ,mBAAA6C,EAAmB,GAAGC,CAAS,EAAElB,GAASI,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAxD,CAAQ,EAAEyD,GAAgB,CAAC,WAAA9D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6D,EAAiBrB,GAAuBH,EAAMlC,CAAQ,EAAQ2D,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASb,CAAW,EAAmCc,EAAa,IAAQd,IAAc,YAA6Ce,EAAa,IAAQf,IAAc,YAA6CgB,EAAsBC,EAAM,EAAQC,EAAsB,CAAatB,GAAuBA,GAAuBA,EAAS,EAAQuB,GAAkBC,EAAqB,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGxB,GAA4CmB,EAAgB,SAAsBvC,EAAKC,GAAS,CAAC,QAAQ3B,EAAS,QAAQ,GAAM,SAAsB0B,EAAKR,GAAW,CAAC,MAAMf,GAAY,SAAsBuB,EAAK7C,EAAO,IAAI,CAAC,GAAGmE,EAAU,GAAGI,EAAgB,UAAUmB,EAAG3E,GAAkB,GAAGuE,EAAsB,iBAAiBtB,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,GAAG9C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEmD,EAAYI,CAAc,EAAE,SAAsBmB,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM7F,GAAgB,CAAC,kBAAkB,CAAC,WAAW0B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAchC,EAAK/C,GAAgB,CAAC,eAAe6B,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,aAAa,aAAa,YAAY,CAAC,CAAC,EAAehC,EAAK/C,GAAgB,CAAC,eAAe+B,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,mCAAmC,OAAO,cAAc,aAAa,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5D,GAAqB,CAAC,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB6C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoE,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4IAA4I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5D,GAAqB,CAAC,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4IAA4I,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB6C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4IAA4I,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,EAAY,GAAgBnC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKlC,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcgF,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK1C,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4FAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,oFAAoF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,gBAAgB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqrB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0rB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA05C,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,2BAA2B,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkyC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2BAA2B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA42D,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,mBAAmB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,iBAAiB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+hC,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,iBAAiB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09B,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi5C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy+C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4tD,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,cAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,oBAAoB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6c,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkd,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA6a,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsc,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,UAAU,uFAAuF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4b,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAohB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAoW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0td,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAcF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iCAAiC,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA0qB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2BAAsB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0DAA0D,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oCAAoC,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8nBAA8nB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,oBAAoB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,yBAAyB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,qCAAqC,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAmlI,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,eAAe,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAcF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,QAAQ,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,QAAQ,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,+DAA+D,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yCAAyC,MAAM,CAAC,mBAAmB,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,qBAAqB,uCAAuC,6BAA6B,QAAQ,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+zE,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2EAA2E,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKiD,EAAI,CAAC,UAAU,eAAe,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAo7B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAc4C,EAAM3F,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,CAAc6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,gCAAgC,CAAC,EAAe6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,gDAAgD,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2EAA2E,MAAM,CAAC,mBAAmB,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAoO,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAwV,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAkX,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAwY,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA4R,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAkS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAc4C,EAAM3F,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,CAAc6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,eAAe,CAAC,EAAe6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,gDAAgD,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sDAAsD,MAAM,CAAC,mBAAmB,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAwO,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAkR,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAgP,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2O,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA4L,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA0L,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA0L,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAc4C,EAAM3F,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,CAAc6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAS,gCAAgC,CAAC,EAAe6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,gDAAgD,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,OAAO,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6EAA6E,MAAM,CAAC,mBAAmB,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAY,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,QAAqB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,SAAsB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,OAAoB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,QAAqB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,SAAsB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,QAAqB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,uBAAuB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB2F,EAAM3F,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,SAAS,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,CAAC,UAAuB6C,EAAK7C,EAAO,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yBAAyB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,sBAAsB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,OAAO,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,eAAe,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,gBAAgB,oBAAoB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qCAAqC,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,QAAQ,uBAAuB,OAAO,0BAA0B,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,QAAQ,sBAAsB,+CAA+C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,iHAAiH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,4BAA4B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,eAAe,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAghB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,QAAQ,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,QAAQ,sBAAsB,gDAAgD,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,KAAK,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,yBAAyB,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,kDAAkD,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,6BAA6B,QAAQ,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,kBAAkB,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,kBAAkB,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,+CAA+C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,QAAQ,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,eAAe,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,gBAAgB,oBAAoB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qCAAqC,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,QAAQ,uBAAuB,OAAO,0BAA0B,QAAQ,EAAE,SAAsB6C,EAAK7C,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,cAAc,qBAAqB,QAAQ,sBAAsB,+CAA+C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,UAAU,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uJAAuJ,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBpC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKlC,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcgF,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK1C,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4FAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oFAAoF,EAAE,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oCAAoC,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAWX,EAAmB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcrB,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0zB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAuzB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAojC,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkzB,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,UAAU,sFAAsF,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAykI,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,IAAI,EAAE,SAAsBhC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,sBAAsB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,sBAAsB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,MAAM,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,MAAM,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wBAAwB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6wB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8wB,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA+Q,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,8FAA8F,0BAA0B,WAAW,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wYAAwY,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,8FAA8F,0BAA0B,WAAW,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,sYAAsY,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,8FAA8F,0BAA0B,WAAW,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4YAA4Y,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,8FAA8F,0BAA0B,WAAW,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,sYAAsY,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAyc,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA85B,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,iBAAiB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6Z,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,UAAU,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uJAAuJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,oFAAoF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,gBAAgB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqrB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0rB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA05C,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,2BAA2B,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkyC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2BAA2B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA42D,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,mBAAmB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,iBAAiB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+hC,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,iBAAiB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09B,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi5C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy+C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4tD,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,cAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,oBAAoB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6c,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkd,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA6a,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsc,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,UAAU,uFAAuF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4b,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAohB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAoW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0td,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAcF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iCAAiC,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA0qB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2BAAsB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0DAA0D,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oCAAoC,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8nBAA8nB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,oBAAoB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEK,EAAa,GAAgBrC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKlC,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,GAAG,mBAAmB,GAAG,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,QAAQ,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,GAAG,mBAAmB,IAAI,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcgF,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK1C,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,oBAAoB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,gBAAgB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqrB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0rB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA05C,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,2BAA2B,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkyC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA42D,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,mBAAmB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,iBAAiB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+hC,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,iBAAiB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09B,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi5C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy+C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4tD,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,cAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,oBAAoB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6c,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkd,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA6a,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsc,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,UAAU,uFAAuF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4b,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAohB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAoW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,eAAe,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0td,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,kBAAkB5C,GAAmB,SAAS,CAAc0D,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAcF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iCAAiC,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA0qB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAAsB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0DAA0D,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,UAAU,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKhC,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uJAAuJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEM,EAAa,GAAgBtC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKlC,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,GAAG,mBAAmB,GAAG,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,GAAG,mBAAmB,IAAI,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcgF,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,oBAAoB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,gBAAgB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqrB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0rB,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA05C,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,2BAA2B,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkyC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA42D,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,mBAAmB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,iBAAiB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+hC,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,iBAAiB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09B,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jC,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi5C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy+C,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4tD,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,cAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,UAAU,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,oBAAoB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6c,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkd,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,kBAAkB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA6a,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyxB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsc,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,UAAU,uFAAuF,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4b,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oCAAoC,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,qBAAqB,sBAAsB,wBAAwB,uBAAuB,wBAAwB,iBAAiB,QAAQ,qBAAqB,wBAAwB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,wBAAwB,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAohB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAoW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,aAAa,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sBAAsB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0td,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,kBAAkBzC,GAAmB,SAAS,CAAcuD,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpC,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBD,EAAY5C,EAAS,CAAC,SAAS,CAAcF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,EAAe6C,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iCAAiC,MAAM,CAAC,kBAAkB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA0qB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAAsB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0DAA0D,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAuqB,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,mDAAmD,qBAAqB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKiD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8nBAA8nB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,UAAU,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKhC,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uJAAuJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxC,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6E,EAAiB,SAAS,YAAY,SAAsBhC,EAAKgD,EAA0B,CAAC,OAAO,IAAI,SAAsBhD,EAAK7C,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6E,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK1C,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMrF,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB6C,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAchC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAK7C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4FAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,kFAAkF,sQAAsQ,wSAAwS,4JAA4J,iMAAiM,kMAAkM,kRAAkR,gRAAgR,qLAAqL,owBAAowB,2GAA2G,gRAAgR,gqBAAgqB,qXAAqX,4UAA4U,qTAAqT,oHAAoH,oYAAoY,8ZAA8Z,6VAA6V,0ZAA0Z,6UAA6U,8aAA8a,0XAA0X,qPAAqP,+rIAA+rI,uVAAuV,sOAAsO,qOAAqO,gVAAgV,2JAA2J,gVAAgV,oZAAoZ,mVAAmV,obAAob,25BAA25B,uxBAAuxB,uqBAAuqB,mbAAmb,ksCAAksC,qZAAqZ,ybAAyb,4KAA4K,yOAAyO,0OAA0O,8xBAA8xB,yZAAyZ,gUAAgU,mkBAAmkB,gbAAgb,4UAA4U,oNAAoN,oVAAoV,qZAAqZ,qVAAqV,+rBAA+rB,yJAAyJ,maAAma,6VAA6V,8ZAA8Z,6ZAA6Z,2JAA2J,wZAAwZ,8XAA8X,wmBAAwmB,wfAAwf,ihBAAihB,u8CAAu8C,ygBAAygB,qPAAqP,wPAAwP,wPAAwP,uPAAuP,yVAAyV,uVAAuV,6aAA6a,s3BAAs3B,m3BAAm3B,iVAAiV,omBAAomB,mVAAmV,yJAAyJ,8VAA8V,6JAA6J,6UAA6U,iVAAiV,2LAA2L,iOAAiO,yVAAyV,kgBAAkgB,kVAAkV,0ZAA0Z,yHAAyH,2UAA2U,+FAA+F,gSAAgS,6RAA6R,uUAAuU,0QAA0Q,8SAA8S,6UAA6U,8FAA8F,mSAAmS,2RAA2R,mKAAmK,qKAAqK,oUAAoU,qVAAqV,gHAAgH,8NAA8N,kHAAkH,6FAA6F,4LAA4L,mHAAmH,kHAAkH,iHAAiH,iHAAiH,iHAAiH,8FAA8F,+GAA+G,8MAA8M,iHAAiH,kHAAkH,kHAAkH,iHAAiH,kHAAkH,kHAAkH,qKAAqK,6RAA6R,iRAAiR,gdAAgd,8SAA8S,oRAAoR,+ZAA+Z,4TAA4T,6RAA6R,mMAAmM,qRAAqR,iSAAiS,wRAAwR,oKAAoK,qKAAqK,oUAAoU,wVAAwV,iRAAiR,mUAAmU,2KAA2K,4MAA4M,mHAAmH,uRAAuR,uTAAuT,6RAA6R,qKAAqK,wRAAwR,gHAAgH,4KAA4K,uLAAuL,sLAAsL,mKAAmK,qRAAqR,yGAAyG,gVAAgV,yHAAyH,yHAAyH,uHAAuH,uHAAuH,0HAA0H,2HAA2H,0HAA0H,yHAAyH,0IAA0I,mNAAmN,iTAAiT,yTAAyT,8FAA8F,mRAAmR,iVAAiV,6KAA6K,kTAAkT,kSAAkS,8aAA8a,6FAA6F,8FAA8F,6FAA6F,qPAAqP,8FAA8F,2LAA2L,4LAA4L,0IAA0I,0TAA0T,0LAA0L,4LAA4L,4TAA4T,8SAA8S,kMAAkM,wHAAwH,wHAAwH,oMAAoM,iHAAiH,2IAA2I,yLAAyL,4LAA4L,qHAAqH,yIAAyI,oRAAoR,qZAAqZ,yIAAyI,oRAAoR,qZAAqZ,4IAA4I,0LAA0L,2LAA2L,qHAAqH,wIAAwI,yIAAyI,4IAA4I,0LAA0L,4LAA4L,sHAAsH,yIAAyI,2IAA2I,4IAA4I,yLAAyL,2LAA2L,sHAAsH,yIAAyI,2IAA2I,gTAAgT,uLAAuL,+SAA+S,0TAA0T,sbAAsb,0bAA0b,qPAAqP,uPAAuP,wPAAwP,0HAA0H,0LAA0L,sPAAsP,0LAA0L,yLAAyL,oTAAoT,4HAA4H,4HAA4H,4HAA4H,oTAAoT,6HAA6H,qPAAqP,6HAA6H,6HAA6H,2HAA2H,mMAAmM,kHAAkH,uHAAuH,gLAAgL,qHAAqH,2TAA2T,0GAA0G,8UAA8U,oWAAoW,waAAwa,iRAAiR,mHAAmH,qWAAqW,yUAAyU,wQAAwQ,yGAAyG,2UAA2U,mHAAmH,2UAA2U,0HAA0H,w83DAAw83D,mEAAmE,+EAA+E,gEAAgE,4FAA4F,kHAAkH,oIAAoI,+GAA+G,8DAA8D,ibAAib,6FAA6F,uJAAuJ,wEAAwE,qbAAqb,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EAQ7tqwBC,GAAgBC,EAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,QAAQ,YAAY,EAAE,MAAM,UAAU,KAAKI,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,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,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,WAAW,OAAO,SAAS,MAAM,SAAS,IAAI,+FAA+F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhG,GAAuB,GAAGG,GAAW,GAAGI,GAAY,GAAGE,GAAe,GAAGE,GAAY,GAAG2F,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR3kE,IAAMC,GAAWC,EAASC,CAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAoBP,EAASQ,EAAc,EAAQC,GAAoCJ,EAAOK,CAA6B,EAAQC,GAA2BX,EAASY,EAAqB,EAAQC,GAAuBb,EAASc,EAAiB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAAS1C,EAAO,OAAa2C,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMnC,IAAemC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAEmC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAUqC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlD,EAAQ,mBAAAmD,EAAmB,GAAGC,CAAS,EAAEvB,GAASI,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9D,CAAQ,EAAE+D,GAAgB,CAAC,WAAApE,GAAW,eAAe,YAAY,IAAI+C,EAAW,QAAAxC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmE,EAAiB5B,GAAuBD,EAAMnC,CAAQ,EAAmFiE,EAAkBC,EAAGtE,GAAkB,GAA5F,CAAauD,GAAuBA,EAAS,CAAuE,EAAQgB,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,GAAa,IAAQb,IAAc,YAA6Cc,GAAa,IAAQd,IAAc,YAAuC,OAAoB5B,EAAK2C,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQ5B,EAAS,QAAQ,GAAM,SAAsB2B,EAAKR,GAAW,CAAC,MAAMhB,GAAY,SAAsBwB,EAAKzC,EAAO,IAAI,CAAC,GAAGoE,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBd,EAAUK,EAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGpD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,KAAK,CAAC,EAAEyD,EAAYI,CAAc,EAAE,SAAsBY,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8E,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8E,EAAiB,SAAS,YAAY,SAAsBO,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB8E,EAAiB,SAAS,YAAY,SAAS,CAAcO,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8E,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBxC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKrC,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB0E,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK9C,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,6CAA6C,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuF,GAAa,GAAgBzC,EAAKzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB8E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oFAAoF,EAAE,SAAsBrC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsB0C,EAAMrF,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,CAAC,yBAAsCyC,EAAKzC,EAAO,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiB8E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2CAA2CX,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAKzC,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlE,GAAqB,CAAC,UAAU,CAAC,SAAsB6B,EAAWE,EAAS,CAAC,SAAsBF,EAAKzC,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsByC,EAAWE,EAAS,CAAC,SAAsBF,EAAKzC,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oDAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqE,EAAYI,CAAc,CAAC,CAAC,EAAEU,GAAa,GAAgB1C,EAAKzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB8E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oFAAoF,EAAE,SAAsBrC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsBF,EAAY1C,EAAS,CAAC,SAAS,CAAcF,EAAKzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,wBAAwB,CAAC,EAAeyC,EAAKzC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiB8E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,qBAAqB,gDAAgD,2CAA2CX,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1B,EAAKzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gLAAgL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uLAAuL,MAAM,CAAC,OAAO,EAAE,iBAAiB8E,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,GAAG1E,GAAqB,CAAC,UAAU,CAAC,MAAM,QAAQkD,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAKrC,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB0E,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK5C,GAAO,CAAC,UAAU,wEAAwE,UAAU,GAAG,UAAU,mGAAmG,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,uEAAuE,UAAU,uEAAuE,SAAS,YAAY,UAAU,GAAM,UAAU,eAAe,UAAU,uBAAuB,UAAU,GAAK,UAAU,GAAK,QAAQ,YAAY,UAAU,sEAAsE,MAAM,OAAO,UAAU,GAAM,UAAU,qBAAqB,GAAGe,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAMrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8E,EAAiB,SAAS,YAAY,SAAS,CAAcO,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB0D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,IAAI,qBAAqB,IAAI,EAAE,SAAS,CAAcrC,EAAK3C,GAAgB,CAAC,eAAewB,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,cAAc,aAAa,aAAa,CAAC,CAAC,EAAerC,EAAK3C,GAAgB,CAAC,eAAe0B,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBuD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,OAAO,cAAc,aAAa,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAMrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8E,EAAiB,SAAS,YAAY,SAAS,CAACG,EAAY,GAAgBxC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB7C,EAAKtC,GAAoC,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBmD,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBrC,EAAKvC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+E,EAAY,GAAgBxC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,SAAsB7C,EAAKtC,GAAoC,CAAC,kBAAkB,CAAC,WAAWyB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBH,GAAW,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBiD,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBrC,EAAKnC,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG1E,GAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGkD,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,CAAC,OAAO,IAAI,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAKrC,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB0E,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,GAAGlE,GAAqB,CAAC,UAAU,CAAC,kBAAkBkB,EAAkB,EAAE,UAAU,CAAC,kBAAkBA,EAAkB,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsBhC,EAAKjC,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,oRAAoR,4QAA4Q,gRAAgR,2RAA2R,sTAAsT,kJAAkJ,kTAAkT,gKAAgK,qKAAqK,mSAAmS,mKAAmK,6QAA6Q,yJAAyJ,kMAAkM,mMAAmM,oHAAoH,qIAAqI,qIAAqI,8HAA8H,iEAAiE,mGAAmG,gEAAgE,2FAA2F,gIAAgI,gIAAgI,+GAA+G,2JAA2J,uKAAuK,0KAA0K,4IAA4I,qPAAqP,mEAAmE,8JAA8J,gIAAgI,gIAAgI,8DAA8D,yEAAyE,qHAAqH,6DAA6D,mEAAmE,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAUj1xBC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,QAAQ,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhG,GAAW,GAAGG,GAAY,GAAGK,GAAoB,GAAGI,GAA2B,GAAGE,GAAuB,GAAGwF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV/qC,IAAMC,GAAWC,EAASC,CAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAUJ,EAASK,EAAI,EAAQC,GAAaN,EAASO,EAAO,EAAQC,GAAYC,EAAOC,CAAK,EAAQC,GAAqBX,EAASY,EAAe,EAAQC,GAAgBJ,EAAOK,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQI,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWL,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQM,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQI,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWL,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQM,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWP,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQQ,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWhB,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQiB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWlB,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQmB,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWvB,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQwB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWzB,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQ0B,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWpB,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQqB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWtB,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQuB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWxB,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQyB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAW1B,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQ2B,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQI,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWL,GAAY,EAAE,KAAK,EAAE,CAAC,EAAQM,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWP,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQQ,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQI,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWL,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQM,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWP,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQQ,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAAS3E,EAAO,OAAa4E,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,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,GAAuB,CAACD,EAAM5E,IAAe4E,EAAM,iBAAwB5E,EAAS,KAAK,GAAG,EAAE4E,EAAM,iBAAwB5E,EAAS,KAAK,GAAG,EAAU8E,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApF,EAAQ,mBAAAqF,EAAmB,GAAGC,CAAS,EAAEhB,GAASI,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAhG,CAAQ,EAAEiG,GAAgB,CAAC,WAAAtG,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqG,EAAiBrB,GAAuBD,EAAM5E,CAAQ,EAAQmG,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAA6Cc,EAAsBC,EAAM,EAAQC,EAAsB,CAAapB,GAAuBA,EAAS,EAAQqB,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGtB,GAAUiB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQrE,EAAS,QAAQ,GAAM,SAAsBoE,EAAKR,GAAW,CAAC,MAAMzD,GAAY,SAAsB0G,EAAMnH,EAAO,IAAI,CAAC,GAAG8F,EAAU,GAAGI,EAAgB,UAAUkB,EAAGlH,GAAkB,GAAG6G,EAAsB,iBAAiBpB,EAAUK,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAAKmB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,eAAe,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGf,CAAK,EAAE,GAAGtF,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE2F,EAAYI,CAAc,EAAE,SAAS,CAAcgB,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,EAAEQ,EAAY,GAAgBjC,EAAK1E,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oFAAoF,EAAE,SAAsB9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsBF,EAAYvC,EAAS,CAAC,SAAS,CAAcF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,+BAA+B,CAAC,EAAe0E,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,qBAAqB,gDAAgD,2CAA2CX,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEe,EAAa,GAAgBlC,EAAK4C,EAA0B,CAAC,OAAO,GAAG,GAAGN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG5G,EAAqB,CAAC,UAAU,CAAC,GAAG4G,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBzB,EAAK1E,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwG,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKvF,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,UAAU,eAAe,UAAU,wDAAwD,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,wEAAwE,GAAGiB,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAcW,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK1E,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwG,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wQAAwQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,wQAAwQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,wQAAwQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK4C,EAA0B,CAAC,OAAO,GAAG,GAAGN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,GAAG5G,EAAqB,CAAC,UAAU,CAAC,GAAG4G,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBzB,EAAK1E,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwG,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKrF,GAAO,CAAC,UAAU,wEAAwE,UAAU,GAAG,UAAU,mGAAmG,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,UAAU,uEAAuE,SAAS,YAAY,UAAU,GAAM,UAAU,eAAe,UAAU,sBAAsB,UAAU,GAAK,UAAU,GAAM,QAAQ,YAAY,UAAU,sEAAsE,MAAM,OAAO,UAAU,GAAM,UAAU,qBAAqB,GAAGe,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK1E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBwG,EAAiB,SAAS,YAAY,SAAsB9B,EAAK1E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBwG,EAAiB,SAAS,YAAY,SAAsBW,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qFAAqF,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAS,CAAcW,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAcW,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK4C,EAA0B,CAAC,OAAO,GAAG,GAAGN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG5G,EAAqB,CAAC,UAAU,CAAC,GAAG4G,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBzB,EAAK1E,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwG,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKnF,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4H,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK1E,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAe9B,EAAK1E,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK1E,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwG,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKjF,GAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0H,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAcW,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,20CAA20C,aAAa,YAAY,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,IAAI,gvCAAgvC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,gyCAAgyC,aAAa,WAAW,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gxCAAgxC,aAAa,WAAW,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,IAAI,qrCAAqrC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,iuCAAiuC,aAAa,WAAW,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBwG,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gxCAAgxC,aAAa,WAAW,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,IAAI,qrCAAqrC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,iuCAAiuC,aAAa,WAAW,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBwG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,SAAsBsE,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB0E,EAAWE,EAAS,CAAC,SAAsBF,EAAK1E,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yBAAyB,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4G,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgBW,GAAW,eAAeC,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQwG,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgBnG,GAAW,eAAeC,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0G,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWwB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQqG,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgBoB,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ+F,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgB5F,GAAW,eAAeC,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmG,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgB1F,GAAY,eAAeC,EAAW,CAAC,EAAEwE,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBe,GAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ6F,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgB+B,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoF,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,kBAAkBlF,EAAkB,EAAE,UAAU,CAAC,gBAAgBF,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2F,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,kBAAkBlF,EAAkB,EAAE,UAAU,CAAC,gBAAgBG,GAAY,eAAeC,EAAW,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWwB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBmB,GAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQkF,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgBuC,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4E,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,gBAAgBzE,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQgF,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,gBAAgBvE,GAAY,eAAeC,EAAW,CAAC,EAAEqD,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWoD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyE,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgBgD,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmE,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgBhE,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQuE,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgB9D,GAAY,eAAeC,EAAW,CAAC,EAAE4C,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAW6D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQgE,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,iBAAiBR,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,gBAAgByD,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0D,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,gBAAgBvD,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2BR,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,gBAAgBrD,GAAY,eAAeC,EAAW,CAAC,EAAEmC,EAAYI,CAAc,CAAC,CAAC,EAAegB,EAAMpH,GAAgB,CAAC,kBAAkB,CAAC,WAAWiE,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGN,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,IAAI,MAAM,GAAG5G,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG4G,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,GAAG,iBAAiB,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,IAAI,KAAK,EAAE,UAAU,CAAC,OAAO,IAAI,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBzB,EAAK1E,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwG,EAAiB,SAAS,sBAAsB,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsB9B,EAAK5E,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4E,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,y9CAAy9C,aAAa,YAAY,mBAAmB,GAAK,GAAGpG,EAAqB,CAAC,UAAU,CAAC,IAAI,29CAA29C,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,09CAA09C,aAAa,UAAU,CAAC,EAAE2F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,gFAAgF,qQAAqQ,4RAA4R,sLAAsL,kTAAkT,iIAAiI,iJAAiJ,kSAAkS,oRAAoR,iRAAiR,uLAAuL,6QAA6Q,4QAA4Q,4UAA4U,yQAAyQ,mRAAmR,yGAAyG,wRAAwR,6KAA6K,6KAA6K,yGAAyG,gRAAgR,iVAAiV,4TAA4T,8JAA8J,oKAAoK,uIAAuI,kMAAkM,wIAAwI,uIAAuI,mKAAmK,+IAA+I,mIAAmI,uJAAuJ,gvGAAgvG,kEAAkE,+GAA+G,8SAA8S,2IAA2I,mEAAmE,qOAAqO,+HAA+H,gFAAgF,gIAAgI,sKAAsK,oLAAoL,6JAA6J,oLAAoL,uKAAuK,qKAAqK,kjCAAkjC,iEAAiE,iFAAiF,sEAAsE,6FAA6F,kEAAkE,gEAAgE,+FAA+F,kEAAkE,mEAAmE,kHAAkH,+DAA+D,8DAA8D,yFAAyF,8DAA8D,+HAA+H,kFAAkF,mLAAmL,qKAAqK,6JAA6J,sKAAsK,mLAAmL,kLAAkL,8GAA8G,kIAAkI,iEAAiE,01CAA01C,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAQj3+EC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,SAAS,YAAY,EAAE,MAAM,UAAU,KAAKI,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,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,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,WAAW,OAAO,SAAS,MAAM,SAAS,IAAI,+FAA+F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzI,GAAW,GAAGG,GAAY,GAAGE,GAAU,GAAGE,GAAa,GAAGK,GAAqB,GAAGmI,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRr7D,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAmCE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,GAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAajB,EAAS,EAAQkB,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQb,EAAS,QAAQ,GAAM,SAAsBY,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMvC,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUgB,EAAG1D,GAAkB,GAAGqD,EAAsB,gBAAgBjB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,UAAU,CAAC,SAAsBc,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oFAAoF,EAAE,SAAsBhC,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKlB,GAAM,CAAC,OAAO,OAAO,KAAK,oWAAoW,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+D,GAAI,CAAC,kFAAkF,gFAAgF,kRAAkR,+KAA+K,6VAA6V,2MAA2M,8nBAA8nB,iEAAiE,gHAAgH,8GAA8G,kHAAkH,gIAAgI,+GAA+G,+HAA+H,GAAeA,GAAI,+bAA+b,EAQ1uRC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,QAAQ,WAAW,EAAE,MAAM,UAAU,KAAKI,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlE,GAAW,GAAGwE,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRp+C,IAAMC,GAAWC,EAASC,CAAK,EAAQC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,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,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAmCE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAAStB,EAAauB,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,GAAGkC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA5C,CAAQ,EAAE6C,GAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBpB,GAAuBH,EAAMvB,CAAQ,EAAQ+C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAajB,EAAS,EAAQkB,EAAkBC,EAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKR,GAAW,CAAC,MAAMJ,GAAY,SAAsBY,EAAKrB,EAAO,IAAI,CAAC,GAAG0C,EAAU,GAAGI,EAAgB,UAAUe,EAAG3D,GAAkB,GAAGuD,EAAsB,gBAAgBjB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,WAAW,oJAAoJ,GAAGd,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsBe,EAAMhE,GAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBwC,EAAiB,SAAS,qBAAqB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,MAAS,CAAC,EAAE,GAAGhD,GAAqB,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAS,CAAce,EAAM9D,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKrB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoD,EAAiB,SAAS,+BAA+B,SAAsB/B,EAAKxB,EAAM,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,qBAAqB,SAAS,qBAAqB,UAAU,qEAAqE,UAAU,eAAe,UAAU,SAAS,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAM,UAAU,gBAAgB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWE,EAAS,CAAC,SAAsBF,EAAKrB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2DAA2D,MAAM,CAAC,OAAO,EAAE,iBAAiBoD,EAAiB,SAAS,qBAAqB,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWE,EAAS,CAAC,SAAsBF,EAAKrB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAM9D,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc/B,EAAK4C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAg64C,mBAAmB,EAAI,CAAC,EAAe/B,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBd,EAAiB,SAAS,WAAW,CAAC,EAAe/B,EAAK4C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8rvC,mBAAmB,EAAI,CAAC,EAAe/B,EAAK4C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAizH,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,gFAAgF,yQAAyQ,oRAAoR,+QAA+Q,yGAAyG,oKAAoK,qWAAqW,+HAA+H,4JAA4J,iGAAiG,mzBAAmzB,iEAAiE,+DAA+D,iFAAiF,+HAA+H,iFAAiF,2FAA2F,yFAAyF,+DAA+D,yGAAyG,+HAA+H,iFAAiF,wpBAAwpB,GAAeA,EAAG,EAQngnGC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,OAAO,EAAE,MAAM,UAAU,KAAKI,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzE,GAAW,GAAG+E,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR92B,IAAMC,GAAYC,EAASC,CAAM,EAAQC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAeL,EAASM,EAAS,EAAQC,GAAcP,EAASQ,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAmCE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAAS7B,EAAO,OAAa8B,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,KAAK,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,GAAGqC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBpB,GAAuBH,EAAM1B,CAAQ,EAAQkD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASd,CAAW,EAAmCe,EAAa,IAAQf,IAAc,YAA6CgB,EAAsBC,EAAM,EAAQC,EAAsB,CAAarB,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAQsB,EAAkBC,EAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGvB,GAA4CkB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsB2D,EAAMxE,EAAO,IAAI,CAAC,GAAGiD,EAAU,GAAGI,EAAgB,UAAUoB,EAAGnE,GAAkB,GAAG8D,EAAsB,iBAAiBrB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,WAAW,+NAA+N,GAAGd,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,KAAK,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAAckB,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkD,EAAYI,CAAc,CAAC,CAAC,EAAEQ,EAAY,GAAgBlC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,SAAsB/B,EAAK1B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,KAAK,gBAAgB,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,IAAI,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcsE,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,8BAA8B,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,85JAA85J,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4HAA4H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,eAAe,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAsiG,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gLAAgL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,y3FAAy3F,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,y3FAAy3F,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gCAAgC,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy9B,mBAAmB,EAAI,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAmyB,mBAAmB,EAAI,CAAC,EAAe/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA0oB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,wBAAwB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAwvX,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK9B,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,QAAQ,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,sCAAsC,qBAAqB,SAAS,uBAAuB,KAAK,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,cAAc,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsB/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,cAAc,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK9B,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK9B,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBnC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,SAAsB/B,EAAK1B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,KAAK,mBAAmB,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcsE,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qCAAqC,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,eAAe,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+pJAA+pJ,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4HAA4H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA2pG,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gLAAgL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqjG,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA8tX,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkqE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,SAAS,uBAAuB,MAAM,uBAAuB,QAAQ,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,cAAc,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsB/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEK,EAAa,GAAgBpC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK1B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,SAAS,uEAAuE,QAAQ,GAAG,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcsE,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,8BAA8B,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAM1E,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4HAA4H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,85JAA85J,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAM1E,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gLAAgL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAsiG,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,y3FAAy3F,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gCAAgC,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAM1E,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,iDAAiD,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,GAAG,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy9B,mBAAmB,EAAI,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAmyB,mBAAmB,EAAI,CAAC,EAAe/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA0oB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAwvX,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,iBAAiB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsB/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAM1E,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsB/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,SAAS,0BAA0B,QAAQ,EAAE,SAAsB4B,EAAK5B,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,aAAa,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,+CAA+C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sBAAsB,6BAA6B,qBAAqB,EAAE,kBAAkB1C,GAAmB,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeW,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKxB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,kBAAkB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKxB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,kBAAkB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKxB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,kBAAkB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6D,EAAa,GAAgBrC,EAAK+C,EAA0B,CAAC,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,+BAA+B,KAAK,mBAAmB,SAAsB/B,EAAK1B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,qBAAqB,gBAAgB,EAAE,WAAW,EAAE,SAAS,qBAAqB,KAAK,mBAAmB,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcsE,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qCAAqC,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBjB,EAAiB,SAAS,kBAAkB,QAAQ,EAAE,IAAI,8vJAA8vJ,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4HAA4H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAA2pG,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gLAAgL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqjG,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkqE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+JAA+J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA8tX,mBAAmB,EAAI,CAAC,EAAe/B,EAAK+C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB/C,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAsB/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,SAAS,uBAAuB,MAAM,uBAAuB,QAAQ,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,cAAc,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAea,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,EAAE,SAAS,CAAc/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAsB/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,mDAAmD,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,kBAAkB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,qBAAqB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,EAAe/B,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,iBAAiBlB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,SAAsBa,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK5B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,UAAU,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,kFAAkF,kRAAkR,+QAA+Q,qLAAqL,yGAAyG,0aAA0a,4aAA4a,oHAAoH,uJAAuJ,wMAAwM,wMAAwM,2XAA2X,0mBAA0mB,8iBAA8iB,uQAAuQ,4RAA4R,uNAAuN,kJAAkJ,oLAAoL,2KAA2K,6TAA6T,6SAA6S,sNAAsN,oHAAoH,sNAAsN,sOAAsO,qTAAqT,oPAAoP,+VAA+V,wLAAwL,kJAAkJ,kJAAkJ,iVAAiV,8HAA8H,8HAA8H,2XAA2X,8QAA8Q,yLAAyL,mHAAmH,oJAAoJ,wMAAwM,wKAAwK,wKAAwK,sRAAsR,4TAA4T,+ZAA+Z,wSAAwS,+UAA+U,mZAAmZ,qSAAqS,kcAAkc,2fAA2f,uRAAuR,2tBAA2tB,2HAA2H,kRAAkR,mHAAmH,oLAAoL,yMAAyM,uMAAuM,0mBAA0mB,+rBAA+rB,iTAAiT,oHAAoH,2KAA2K,wJAAwJ,+UAA+U,oHAAoH,6LAA6L,wLAAwL,oHAAoH,qLAAqL,+JAA+J,mHAAmH,4KAA4K,sLAAsL,6RAA6R,+SAA+S,wGAAwG,iYAAiY,wdAAwd,oHAAoH,oHAAoH,kQAAkQ,qWAAqW,mHAAmH,8RAA8R,kWAAkW,iRAAiR,2OAA2O,sOAAsO,yYAAyY,0IAA0I,mNAAmN,+IAA+I,iRAAiR,6OAA6O,uLAAuL,iTAAiT,uLAAuL,6UAA6U,8LAA8L,uLAAuL,qLAAqL,8JAA8J,utnBAAutnB,yJAAyJ,4GAA4G,8GAA8G,wEAAwE,mbAAmb,yGAAyG,8DAA8D,+DAA+D,mtBAAmtB,0HAA0H,uEAAuE,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EAQn+8PC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,MAAM,MAAM,EAAE,MAAM,UAAU,KAAKI,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,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,WAAW,OAAO,SAAS,MAAM,SAAS,IAAI,+FAA+F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,WAAW,OAAO,SAAS,MAAM,SAAS,IAAI,+FAA+F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpF,GAAY,GAAGM,GAAe,GAAGE,GAAc,GAAGkF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRruF,IAAMC,GAAmBC,EAASC,EAAa,EAAQC,GAAUF,EAASG,EAAI,EAAQC,GAASJ,EAASK,EAAG,EAAQC,GAAgBC,EAAOC,EAAS,EAAQC,GAAeT,EAASU,EAAS,EAAQC,GAAuBX,EAASY,EAAiB,EAAQC,GAAcb,EAASc,EAAQ,EAAQC,GAAWf,EAASgB,EAAK,EAAQC,GAAqBjB,EAASkB,EAAe,EAAQC,GAAkBnB,EAASoB,EAAY,EAAQC,GAAYrB,EAASsB,EAAM,EAAQC,GAAYvB,EAASwB,EAAM,EAAQC,GAAezB,EAAS0B,EAAS,EAAQC,GAAY3B,EAAS4B,EAAM,EAAQC,GAAc7B,EAAS8B,EAAQ,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,6CAA6C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,cAAc,YAAY,QAAQ,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,GAAe,OAA+CC,EAAkBC,EAAG3C,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4C,EAAUC,GAAkB,WAAW,EAAQC,EAAW3B,EAAO,IAAI,EAAQ4B,EAAWF,GAAkB,WAAW,EAAQG,EAAW7B,EAAO,IAAI,EAAQ8B,EAAWJ,GAAkB,WAAW,EAAQK,EAAW/B,EAAO,IAAI,EAAQgC,EAAWN,GAAkB,WAAW,EAAQO,EAAWjC,EAAO,IAAI,EAAE,OAAAkC,GAAiB,CAAC,CAAC,EAAsB7C,EAAK8C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArD,EAAiB,EAAE,SAAsBsD,EAAMC,EAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAekD,EAAME,EAAO,IAAI,CAAC,GAAGzB,EAAU,UAAUW,EAAGD,EAAkB,iBAAiBb,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,KAAK,aAAa,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKqD,GAAc,CAAC,UAAU,qEAAqE,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,UAAU,qEAAqE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKsD,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBlB,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKuD,GAAgB,CAAC,kBAAkB,CAAC,WAAW5D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,mBAAmB,QAAQ,GAAGwC,EAAU,KAAK,QAAQ,OAAO,YAAY,IAAIE,EAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBtC,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKwD,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,QAAQ,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexD,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,mBAAmB,WAAW,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKyD,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAMX,GAAmB,OAAO,OAAO,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,KAAK,MAAM,QAAQhC,GAAmB,OAAO,OAAO,UAAU,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,GAAGZ,EAAW,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsBxC,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK0D,GAAkB,CAAC,OAAO,OAAO,UAAU,eAAe,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,GAAGV,EAAW,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsB1C,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK2D,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK4D,GAAM,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,EAAe5D,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK6D,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7D,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK8D,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAK+D,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKgE,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKiE,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oDAAoD,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,GAAGR,EAAW,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsB5C,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKkE,GAAO,CAAC,UAAU,6EAA6E,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelE,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGhC,GAAmB,GAAG,GAAG,KAAK,SAAsBlB,EAAKmD,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBnD,EAAKoD,GAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKmE,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenE,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoE,GAAI,CAAC,kFAAkF,kFAAkF,sVAAsV,oHAAoH,sIAAsI,4aAA4a,mHAAmH,wGAAwG,gKAAgK,mWAAmW,y2BAAy2B,03BAA03B,k2BAAk2B,EAa1nlBC,GAAgBC,EAAQ/D,GAAU6D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,GAAmB,GAAGC,GAAU,GAAGC,GAAS,GAAGC,GAAe,GAAGC,GAAuB,GAAGC,GAAc,GAAGC,GAAW,GAAGC,GAAqB,GAAGC,GAAkB,GAAGC,GAAY,GAAGC,GAAY,GAAGC,GAAe,GAAGC,GAAY,GAAGC,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACrgB,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,4BAA8B,OAAO,uBAAyB,GAAG,yBAA2B,OAAO,sBAAwB,SAAS,sBAAwB,IAAI,qBAAuB,OAAO,6BAA+B,OAAO,yBAA2B,QAAQ,qBAAuB,gPAAwR,kBAAoB,OAAO,oCAAsC,oMAA0O,qBAAuB,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFXWithOptimizedAppearEffect", "ComponentViewportProvider", "Ticker", "SVG", "Image2", "css", "FramerG_MbfHfai", "withCSS", "G_MbfHfai_default", "addFonts", "TickerFonts", "BadgeFonts", "getFonts", "z_6X07ADe_default", "Badge2Fonts", "EZIESPnI2_default", "EmbedFonts", "Embed", "CarouselFonts", "Carousel", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "EwHuEwhza", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1o2mqzm", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerirIGTzDeI", "withCSS", "irIGTzDeI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "PersonalityScreenFonts", "getFonts", "Jy95YS182_default", "BadgeFonts", "z_6X07ADe_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "PeopleFonts", "FjLeSfywE_default", "SlideshowFonts", "Slideshow", "WebAppFonts", "c8m9EufDU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "animation5", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZnRs9GjptIjQ1rlf0a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "SVG", "Image2", "css", "FramerIzWFQ31jN", "withCSS", "IzWFQ31jN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeFonts", "getFonts", "z_6X07ADe_default", "ButtonFonts", "DmC0ZSyBZ_default", "MotionDivWithFX", "withFX", "motion", "DecisionMakingFonts", "L4Aibc34K_default", "SmartComponentScopedContainerWithFX", "SmartComponentScopedContainer", "ConflictManagerMovingFonts", "ObrtXyZUb_default", "PersonalityScreenFonts", "Jy95YS182_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "animation4", "transition5", "animation5", "transition6", "animation6", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "LcJ1W7bEeKGXdd2ZOe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "FramerJ3YjjM8g9", "withCSS", "J3YjjM8g9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeFonts", "getFonts", "z_6X07ADe_default", "ButtonFonts", "DmC0ZSyBZ_default", "LogoFonts", "k5fJ6bKzX_default", "FeatherFonts", "Icon", "ImageWithFX", "withFX", "Image2", "SurleyBodyColorFonts", "KRPN8jwRM_default", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "animation4", "animation5", "animation6", "transition3", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "transformTemplate1", "_", "t", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "animation27", "animation28", "animation29", "animation30", "transition4", "animation31", "animation32", "animation33", "animation34", "animation35", "animation36", "animation37", "animation38", "transition5", "animation39", "animation40", "animation41", "animation42", "animation43", "animation44", "animation45", "animation46", "transition6", "animation47", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LcJ1W7bEeKGXdd2ZOe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "getLoadingLazyAtYPosition", "css", "FramerLvDci0Trq", "withCSS", "LvDci0Trq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerPvqjJQSJ_", "withCSS", "PvqjJQSJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeFonts", "getFonts", "z_6X07ADe_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "SVG", "Image2", "css", "FramerqoSvWsRDa", "withCSS", "qoSvWsRDa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PeopleFonts", "getFonts", "FjLeSfywE_default", "MotionDivWithFX", "withFX", "motion", "SlideshowFonts", "Slideshow", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "Image2", "css", "FramerrbdA1k6EM", "withCSS", "rbdA1k6EM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SurePeopleNavFonts", "getFonts", "gB9jHO3Tz_default", "HeroFonts", "J3YjjM8g9_default", "CTAFonts", "LvDci0Trq_default", "ContainerWithFX", "withFX", "Container", "SlideshowFonts", "rbdA1k6EM_default", "CarouselSlideshowFonts", "IjQ1rlf0a_default", "ChannelsFonts", "IzWFQ31jN_default", "VIDEOFonts", "PvqjJQSJ_default", "CustomComponentFonts", "CustomComponent", "TestimonialsFonts", "irIGTzDeI_default", "TickerFonts", "G_MbfHfai_default", "AwardsFonts", "qoSvWsRDa_default", "SingleCTAFonts", "v2YF5ahaU_default", "FooterFonts", "NlziKpihc_default", "GradientFonts", "NlDMETkaE_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "gB9jHO3Tz_default", "J3YjjM8g9_default", "ContainerWithFX", "LvDci0Trq_default", "rbdA1k6EM_default", "IjQ1rlf0a_default", "IzWFQ31jN_default", "PvqjJQSJ_default", "CustomComponent", "irIGTzDeI_default", "G_MbfHfai_default", "qoSvWsRDa_default", "v2YF5ahaU_default", "NlziKpihc_default", "NlDMETkaE_default", "css", "FramerXl7gU4Y85", "withCSS", "Xl7gU4Y85_default", "addFonts", "SurePeopleNavFonts", "HeroFonts", "CTAFonts", "SlideshowFonts", "CarouselSlideshowFonts", "ChannelsFonts", "VIDEOFonts", "CustomComponentFonts", "TestimonialsFonts", "TickerFonts", "AwardsFonts", "SingleCTAFonts", "FooterFonts", "GradientFonts", "__FramerMetadata__"]
}
