{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js", "ssg:https://framerusercontent.com/modules/CmagBUe3mmwkE1WyNnoH/BOWgeagwkQY3oPHRAbAn/UGkozodWM.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{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;const numChildren=Children.count(slots);const hasChildren=numChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* 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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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});}},[]);/* 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){useLayoutEffect(()=>{measure();},[]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{ref:ref4,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!transformRef.current||!animateToValue||isReducedMotion){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;/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}});/* 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(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,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:.5,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);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0961f6c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZVvix4tXx6hMdhe6Dv79/57Z6NAu0ZZI7g1pIDYKG/NWLcJmLpm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/VVzdxTp2OItYZEdtNCMm/hcIQIk5LwPTJjYyquRQx/nzOVvzJVP.js\";import Spacer from\"https://framerusercontent.com/modules/L0bAz157bclZ8tsGKIb9/Uzlb8Ka8znO6QXbnoKuO/otw1uWwIn.js\";const SpacerFonts=getFonts(Spacer);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"Fpvdx_3Vy\"];const serializationHash=\"framer-n6ecs\";const variantClassNames={Fpvdx_3Vy:\"framer-v-yqwxxo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`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(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Fpvdx_3Vy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yqwxxo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Fpvdx_3Vy\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(237, 237, 237)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xioc1l-container\",layoutDependency:layoutDependency,layoutId:\"kHgCDvhnY-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"kHgCDvhnY\",layoutId:\"kHgCDvhnY\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34)))\"},children:\"Empowering clients\"})}),className:\"framer-83daff\",\"data-framer-name\":\"Customer stories\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ARV4ddxuD\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zh3hg-container\",layoutDependency:layoutDependency,layoutId:\"IsiB869HQ-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"IsiB869HQ\",layoutId:\"IsiB869HQ\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-176s7mf\",\"data-styles-preset\":\"nzOVvzJVP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bde1ee4a-078c-45a9-9b4a-38d169f1c4f2, rgb(138, 142, 147)))\"},children:\"Samdesk users are proactively managing disruptions and crisis events across the world\"})}),className:\"framer-7u0rn4\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nc3XrZ8Dp\",style:{\"--extracted-a0htzi\":\"var(--token-bde1ee4a-078c-45a9-9b4a-38d169f1c4f2, rgb(138, 142, 147))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-97efir-container\",layoutDependency:layoutDependency,layoutId:\"hm7rI4tLt-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"hm7rI4tLt\",layoutId:\"hm7rI4tLt\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lzbbf4-container\",layoutDependency:layoutDependency,layoutId:\"OPWdR_q0z-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.65,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"OPWdR_q0z\",layoutId:\"OPWdR_q0z\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zn3kf7\",layoutDependency:layoutDependency,layoutId:\"doDfvdfcb\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430,intrinsicWidth:2560,pixelHeight:430,pixelWidth:2560,sizes:\"216px\",src:\"https://framerusercontent.com/images/U69aICha2hD0gBfvPkF4TRRsI.png\",srcSet:\"https://framerusercontent.com/images/U69aICha2hD0gBfvPkF4TRRsI.png?scale-down-to=512 512w,https://framerusercontent.com/images/U69aICha2hD0gBfvPkF4TRRsI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U69aICha2hD0gBfvPkF4TRRsI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/U69aICha2hD0gBfvPkF4TRRsI.png 2560w\"},className:\"framer-7ceijy\",\"data-framer-name\":\"$2560px_Booking_com_logo_svg\",layoutDependency:layoutDependency,layoutId:\"gk6ZsuRJ7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2160,intrinsicWidth:2090,pixelHeight:2160,pixelWidth:2090,positionX:\"center\",positionY:\"center\",sizes:\"69px\",src:\"https://framerusercontent.com/images/IbbyQKG8GMflTBa4KMaL47i2Gk.png\",srcSet:\"https://framerusercontent.com/images/IbbyQKG8GMflTBa4KMaL47i2Gk.png?scale-down-to=1024 990w,https://framerusercontent.com/images/IbbyQKG8GMflTBa4KMaL47i2Gk.png?scale-down-to=2048 1981w,https://framerusercontent.com/images/IbbyQKG8GMflTBa4KMaL47i2Gk.png 2090w\"},className:\"framer-nf32zt\",\"data-framer-name\":\"Canada_Goose_logo\",layoutDependency:layoutDependency,layoutId:\"gvBony4Xm\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:136.66666666666666,intrinsicWidth:853.3333333333334,pixelHeight:205,pixelWidth:1280,sizes:\"173px\",src:\"https://framerusercontent.com/images/o9EATVSnONi4jcFrw1s89xONEEQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/o9EATVSnONi4jcFrw1s89xONEEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9EATVSnONi4jcFrw1s89xONEEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9EATVSnONi4jcFrw1s89xONEEQ.png 1280w\"},className:\"framer-q0yp51\",\"data-framer-name\":\"Instacart_logo_and_wordmark_svg\",layoutDependency:layoutDependency,layoutId:\"dim8IK5D2\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:656,intrinsicWidth:1614,pixelHeight:656,pixelWidth:1614,sizes:\"173px\",src:\"https://framerusercontent.com/images/HSnwRqBcHHr71BZjz3JE3ope8.png\",srcSet:\"https://framerusercontent.com/images/HSnwRqBcHHr71BZjz3JE3ope8.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSnwRqBcHHr71BZjz3JE3ope8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HSnwRqBcHHr71BZjz3JE3ope8.png 1614w\"},className:\"framer-1jz9vb8\",\"data-framer-name\":\"Deloitte_Logo\",layoutDependency:layoutDependency,layoutId:\"BHkvY2cVe\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ew6chg\",layoutDependency:layoutDependency,layoutId:\"nDhBKYn_6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o91rzy\",\"data-framer-name\":\"Anthropic_logo\",fill:\"black\",intrinsicHeight:115,intrinsicWidth:1024,layoutDependency:layoutDependency,layoutId:\"IzuFxxeGQ\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1024.2\" height=\"115\"><path d=\"M250.649 23.35h37.328v89.744h23.825V23.349h37.328V1.906h-98.481Zm-42.092 56.388L158.522 1.906h-27.003v111.188h23.032V35.262l50.035 77.832h27.002V1.906h-23.031Zm235.877-33.516h-52.417V1.906h-23.826v111.188h23.826V67.666h52.417v45.428h23.826V1.906h-23.826ZM44.316 1.906 0 113.094h24.779l9.063-23.35h46.364l9.062 23.35h24.779L69.731 1.906Zm-2.459 67.19L57.025 30.02 72.19 69.095ZM665.698 0c-32.086 0-54.8 23.826-54.8 57.659 0 33.515 22.714 57.341 54.8 57.341 31.926 0 54.482-23.826 54.482-57.341C720.18 23.826 697.624 0 665.698 0Zm0 92.762c-18.744 0-30.18-13.342-30.18-35.103 0-22.079 11.436-35.421 30.18-35.421 18.584 0 29.861 13.342 29.861 35.42 0 21.762-11.277 35.104-29.861 35.104Zm333.087-16.995c-4.13 10.8-12.39 16.995-23.668 16.995-18.743 0-30.179-13.342-30.179-35.103 0-22.079 11.436-35.421 30.179-35.421 11.278 0 19.538 6.194 23.668 16.995h25.255C1017.85 15.408 999.261 0 975.117 0c-32.085 0-54.799 23.826-54.799 57.659 0 33.515 22.714 57.341 54.799 57.341 24.303 0 42.883-15.566 49.083-39.233ZM846.934 1.906l44.316 111.188h24.302L871.236 1.906Zm-50.194 0h-54.323v111.188h23.826V72.749h30.497c25.256 0 40.663-13.343 40.663-35.422s-15.407-35.42-40.663-35.42Zm-1.112 49.4h-29.385V23.348h29.385c11.755 0 17.949 4.766 17.949 13.978s-6.194 13.978-17.949 13.978ZM592.631 35.739c0-20.967-15.407-33.833-40.663-33.833h-54.323v111.188h23.826V69.572h26.525l23.827 43.522h26.368l-26.384-46.837c13.243-5.091 20.824-15.811 20.824-30.518Zm-71.16-12.39h29.385c11.754 0 17.949 4.289 17.949 12.39s-6.195 12.39-17.949 12.39h-29.385Z\" style=\"fill:#1f1f1e\"/></svg>',transformTemplate:transformTemplate1,withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:580.6666666666666,intrinsicWidth:1333.3333333333333,pixelHeight:871,pixelWidth:2e3,sizes:\"85px\",src:\"https://framerusercontent.com/images/0TsHtw28sNNvv35yOSltJI08I.png\",srcSet:\"https://framerusercontent.com/images/0TsHtw28sNNvv35yOSltJI08I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0TsHtw28sNNvv35yOSltJI08I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0TsHtw28sNNvv35yOSltJI08I.png 2000w\"},className:\"framer-pjmwdh\",\"data-framer-name\":\"P_G_logo\",layoutDependency:layoutDependency,layoutId:\"wK3ceyIIy\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:2300,pixelHeight:600,pixelWidth:2300,sizes:\"170px\",src:\"https://framerusercontent.com/images/34NEWkzbROcrNEqPc8gFf8lE.png\",srcSet:\"https://framerusercontent.com/images/34NEWkzbROcrNEqPc8gFf8lE.png?scale-down-to=512 512w,https://framerusercontent.com/images/34NEWkzbROcrNEqPc8gFf8lE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/34NEWkzbROcrNEqPc8gFf8lE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/34NEWkzbROcrNEqPc8gFf8lE.png 2300w\"},className:\"framer-yxzmqe\",\"data-framer-name\":\"fidelity_logo_PNG1\",layoutDependency:layoutDependency,layoutId:\"tX5h4tvuU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:570.6666666666666,intrinsicWidth:853.3333333333334,pixelHeight:856,pixelWidth:1280,sizes:\"89px\",src:\"https://framerusercontent.com/images/gHAUo2Xt9JWOMcpdlsgr5D5wIE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gHAUo2Xt9JWOMcpdlsgr5D5wIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gHAUo2Xt9JWOMcpdlsgr5D5wIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gHAUo2Xt9JWOMcpdlsgr5D5wIE.png 1280w\"},className:\"framer-8rb1pr\",\"data-framer-name\":\"$5842f193a6515b1e0ad75b1f\",layoutDependency:layoutDependency,layoutId:\"mGcfkfcsk\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647.3333333333334,intrinsicWidth:1333.3333333333333,pixelHeight:971,pixelWidth:2e3,sizes:\"120px\",src:\"https://framerusercontent.com/images/OEdOtyitvls92SPYQlMBaqcG4io.png\",srcSet:\"https://framerusercontent.com/images/OEdOtyitvls92SPYQlMBaqcG4io.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEdOtyitvls92SPYQlMBaqcG4io.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEdOtyitvls92SPYQlMBaqcG4io.png 2000w\"},className:\"framer-t64rmt\",\"data-framer-name\":\"$5e8ce484664eae0004085467\",layoutDependency:layoutDependency,layoutId:\"y6xAsCJES\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:2560,pixelHeight:2160,pixelWidth:3840,sizes:\"113px\",src:\"https://framerusercontent.com/images/GlBQx80ewSNxiXWhX8PH4NO4o20.png\",srcSet:\"https://framerusercontent.com/images/GlBQx80ewSNxiXWhX8PH4NO4o20.png?scale-down-to=512 512w,https://framerusercontent.com/images/GlBQx80ewSNxiXWhX8PH4NO4o20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GlBQx80ewSNxiXWhX8PH4NO4o20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GlBQx80ewSNxiXWhX8PH4NO4o20.png 3840w\"},className:\"framer-fbqb2q\",\"data-framer-name\":\"Telus_Symbol\",layoutDependency:layoutDependency,layoutId:\"UYL3UdzrP\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rai8mi\",layoutDependency:layoutDependency,layoutId:\"LFQVHTFrL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:300,pixelHeight:118,pixelWidth:300,src:\"https://framerusercontent.com/images/D4Ydo8JrV1A1sc270hF0DLKGg30.png\"},className:\"framer-1li4nog\",\"data-framer-name\":\"ford_logo_19BC08DD00_seeklogo_com\",layoutDependency:layoutDependency,layoutId:\"Ejpq31VTd\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ho4vr2\",layoutDependency:layoutDependency,layoutId:\"U2pyylhqC\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1610,intrinsicWidth:2560,pixelHeight:2415,pixelWidth:3840,sizes:\"153px\",src:\"https://framerusercontent.com/images/H1LoPBB3OHbtMn6BYU1aCIumpA.png\",srcSet:\"https://framerusercontent.com/images/H1LoPBB3OHbtMn6BYU1aCIumpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/H1LoPBB3OHbtMn6BYU1aCIumpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H1LoPBB3OHbtMn6BYU1aCIumpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/H1LoPBB3OHbtMn6BYU1aCIumpA.png 3840w\"},className:\"framer-ilss3\",\"data-framer-name\":\"Amnesty_International_Logo\",layoutDependency:layoutDependency,layoutId:\"XoS2bgv3T\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:228.66666666666666,intrinsicWidth:682.6666666666666,pixelHeight:343,pixelWidth:1024,sizes:\"163px\",src:\"https://framerusercontent.com/images/fcSXMXgPPH8JONczvwDcg7TCjg.png\",srcSet:\"https://framerusercontent.com/images/fcSXMXgPPH8JONczvwDcg7TCjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcSXMXgPPH8JONczvwDcg7TCjg.png 1024w\"},className:\"framer-l0got5\",\"data-framer-name\":\"$1024px_Oshkosh_Corporation_logo_svg\",layoutDependency:layoutDependency,layoutId:\"Xm5q1UcaJ\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:228.66666666666666,intrinsicWidth:682.6666666666666,pixelHeight:371,pixelWidth:886,positionX:\"center\",positionY:\"center\",sizes:\"164.1983px\",src:\"https://framerusercontent.com/images/kUxc76eYhJzFyrfLPkOmA0xmqc.png\",srcSet:\"https://framerusercontent.com/images/kUxc76eYhJzFyrfLPkOmA0xmqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kUxc76eYhJzFyrfLPkOmA0xmqc.png 886w\"},className:\"framer-5ign2k\",\"data-framer-name\":\"$1024px_Oshkosh_Corporation_logo_svg\",layoutDependency:layoutDependency,layoutId:\"DFgmGA4bG\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w30kj2\",layoutDependency:layoutDependency,layoutId:\"Q8cysyQSn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1380,intrinsicWidth:4215.333333333333,pixelHeight:2070,pixelWidth:6323,sizes:\"252px\",src:\"https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png\",srcSet:\"https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WBPjadluBbBEJJ6EdJjNFgX2Qk.png 6323w\"},className:\"framer-tktk6z\",\"data-framer-name\":\"Motional_Logo_Horizontal_Full_Color\",layoutDependency:layoutDependency,layoutId:\"SmhFB0xjF\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:973.3333333333334,intrinsicWidth:1706.6666666666667,pixelHeight:1460,pixelWidth:2560,sizes:\"88px\",src:\"https://framerusercontent.com/images/hc5LgHemZbt5xK1q9MzZ3cAFE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hc5LgHemZbt5xK1q9MzZ3cAFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hc5LgHemZbt5xK1q9MzZ3cAFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hc5LgHemZbt5xK1q9MzZ3cAFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hc5LgHemZbt5xK1q9MzZ3cAFE.png 2560w\"},className:\"framer-rt9b2i\",\"data-framer-name\":\"Bell_logo_svg\",layoutDependency:layoutDependency,layoutId:\"c2z3waKvZ\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-drrwcx-container\",layoutDependency:layoutDependency,layoutId:\"I_DuQuQo_-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"I_DuQuQo_\",layoutId:\"I_DuQuQo_\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n6ecs.framer-lai1p4, .framer-n6ecs .framer-lai1p4 { display: block; }\",\".framer-n6ecs.framer-yqwxxo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-n6ecs .framer-1xioc1l-container, .framer-n6ecs .framer-11zh3hg-container, .framer-n6ecs .framer-97efir-container, .framer-n6ecs .framer-drrwcx-container { flex: none; height: auto; position: relative; width: 1058px; }\",\".framer-n6ecs .framer-83daff { align-self: stretch; flex: none; height: 22px; overflow: hidden; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-n6ecs .framer-7u0rn4 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-n6ecs .framer-1lzbbf4-container { align-self: stretch; flex: none; height: 243px; position: relative; width: auto; }\",\".framer-n6ecs .framer-zn3kf7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 95px; position: relative; width: min-content; }\",\".framer-n6ecs .framer-7ceijy { align-content: center; align-items: center; aspect-ratio: 5.953488372093023 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 216px; }\",\".framer-n6ecs .framer-nf32zt { flex: none; height: 68px; overflow: visible; position: relative; width: 69px; }\",\".framer-n6ecs .framer-q0yp51 { aspect-ratio: 6.243902439024391 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 173px; }\",\".framer-n6ecs .framer-1jz9vb8 { aspect-ratio: 2.4603658536585367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 173px; }\",\".framer-n6ecs .framer-1ew6chg { flex: none; height: 126px; overflow: hidden; position: relative; width: 200px; }\",\".framer-n6ecs .framer-1o91rzy { aspect-ratio: 8.904347826086957 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 0px; position: absolute; right: 0px; top: 50%; }\",\".framer-n6ecs .framer-pjmwdh { aspect-ratio: 2.2962112514351323 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 85px; }\",\".framer-n6ecs .framer-yxzmqe { aspect-ratio: 3.8333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 170px; }\",\".framer-n6ecs .framer-8rb1pr { aspect-ratio: 1.4953271028037385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 89px; }\",\".framer-n6ecs .framer-t64rmt { aspect-ratio: 2.0597322348094744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 120px; }\",\".framer-n6ecs .framer-fbqb2q { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 113px; }\",\".framer-n6ecs .framer-rai8mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 92px; }\",\".framer-n6ecs .framer-1li4nog { aspect-ratio: 2.542372881355932 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 100%; }\",\".framer-n6ecs .framer-ho4vr2 { flex: none; height: 77px; overflow: hidden; position: relative; width: 139px; }\",\".framer-n6ecs .framer-ilss3 { aspect-ratio: 1.5900621118012421 / 1; bottom: -10px; flex: none; height: var(--framer-aspect-ratio-supported, 97px); left: -7px; overflow: visible; position: absolute; right: -7px; }\",\".framer-n6ecs .framer-l0got5 { aspect-ratio: 2.9854227405247813 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 163px; }\",\".framer-n6ecs .framer-5ign2k { aspect-ratio: 2.9854227405247813 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 164px; }\",\".framer-n6ecs .framer-w30kj2 { flex: none; height: 103px; overflow: hidden; position: relative; width: 252px; }\",\".framer-n6ecs .framer-tktk6z { aspect-ratio: 3.054589371980676 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-n6ecs .framer-rt9b2i { flex: none; height: 49px; overflow: visible; position: relative; width: 88px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n6ecs.framer-yqwxxo, .framer-n6ecs .framer-zn3kf7, .framer-n6ecs .framer-7ceijy, .framer-n6ecs .framer-rai8mi { gap: 0px; } .framer-n6ecs.framer-yqwxxo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n6ecs.framer-yqwxxo > :first-child, .framer-n6ecs .framer-rai8mi > :first-child { margin-top: 0px; } .framer-n6ecs.framer-yqwxxo > :last-child, .framer-n6ecs .framer-rai8mi > :last-child { margin-bottom: 0px; } .framer-n6ecs .framer-zn3kf7 > * { margin: 0px; margin-left: calc(95px / 2); margin-right: calc(95px / 2); } .framer-n6ecs .framer-zn3kf7 > :first-child, .framer-n6ecs .framer-7ceijy > :first-child { margin-left: 0px; } .framer-n6ecs .framer-zn3kf7 > :last-child, .framer-n6ecs .framer-7ceijy > :last-child { margin-right: 0px; } .framer-n6ecs .framer-7ceijy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n6ecs .framer-rai8mi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 479\n * @framerIntrinsicWidth 3894\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUGkozodWM=withCSS(Component,css,\"framer-n6ecs\");export default FramerUGkozodWM;FramerUGkozodWM.displayName=\"customer ticker\";FramerUGkozodWM.defaultProps={height:479,width:3894};addFonts(FramerUGkozodWM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...SpacerFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUGkozodWM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"479\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"3894\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UGkozodWM.map"],
  "mappings": "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",
  "names": ["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", "numChildren", "j", "hasChildren", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "SpacerFonts", "getFonts", "otw1uWwIn_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "otw1uWwIn_default", "RichText2", "Ticker", "Image2", "SVG", "css", "FramerUGkozodWM", "withCSS", "UGkozodWM_default", "addFonts", "SpacerFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts"]
}
