{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/B3iLfnsNtRMfPOGqNK47/2ML7580SGgXM1QCverVa/b35N7d7Na.js", "ssg:https://framerusercontent.com/modules/gqKtEwCYo4zOM8EeUESD/2PDYaQ0Y4pB2ztBahyHA/fweDWpDlc.js", "ssg:https://framerusercontent.com/modules/JUJJ82q8dkBwS1oZtJ4X/4PkIR5L0FdS2sIqd0qhH/Pk0Wg3PIZ.js", "ssg:https://framerusercontent.com/modules/G1UFaKdRJlD3gfMoCGUk/PHZvOJzA9ctRfKTv19Uk/VHN0EkVxR.js", "ssg:https://framerusercontent.com/modules/NkiEEnaDliHGtbUfWuqM/PKE76u9IvOX8j3ewMFmY/wl2vCmpqj.js", "ssg:https://framerusercontent.com/modules/Mp5eK5yTLNkZUhI6jN0A/8kmu6rOt0aYz4VSBPRhn/YkE7wbtF4.js", "ssg:https://framerusercontent.com/modules/DAmmYVDaEPHxsCCII5Kl/AOtEOhC53mKrXucpWWfR/uIbaznLnR.js", "ssg:https://framerusercontent.com/modules/ActxRzUc3vyDsRTNxBd0/hJPFDVOr9I2RFvzD78FC/xsqea0z7O.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 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});}},[]);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(()=>{measure();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];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(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,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"yqqU1qzJk\",\"NFw7FzpI3\"];const serializationHash=\"framer-k1Ztk\";const variantClassNames={NFw7FzpI3:\"framer-v-1m4pxt3\",yqqU1qzJk:\"framer-v-rw3mhm\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"yqqU1qzJk\",\"Variant 2\":\"NFw7FzpI3\"};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:\"yqqU1qzJk\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"yqqU1qzJk\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rw3mhm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yqqU1qzJk\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NFw7FzpI3:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-causko\",\"data-framer-name\":\"Palantir\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"sxGirCHS_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 36\"><path d=\"M 35.584 3.769 L 44.624 3.769 C 47.987 3.769 50.17 3.917 52.066 6.028 C 53.378 7.531 54.106 9.342 54.106 11.448 C 54.133 13.491 53.341 15.454 51.917 16.873 C 50.462 18.376 48.566 19.281 43.753 19.281 L 39.376 19.281 L 39.376 31.782 L 35.584 31.782 Z M 39.376 16.121 L 43.753 16.121 C 46.234 16.121 50.021 15.968 50.021 11.3 C 50.021 6.928 46.52 6.928 44.481 6.928 L 39.376 6.928 Z M 66.211 31.782 C 65.919 30.877 65.919 29.824 65.919 28.918 C 64.172 32.083 61.691 32.385 60.087 32.385 C 55.71 32.385 53.378 29.824 53.378 26.658 C 53.378 25.156 53.962 22.594 56.735 20.937 C 58.775 19.731 61.697 19.731 63.295 19.731 C 64.172 19.731 64.756 19.731 65.776 19.884 C 65.776 17.476 65.776 16.417 65.048 15.518 C 64.315 14.607 62.86 14.311 61.84 14.311 C 58.339 14.311 58.047 16.873 58.047 17.624 L 54.547 17.624 C 54.69 16.571 54.839 15.216 55.859 14.009 C 57.314 12.353 59.938 11.903 61.983 11.903 C 64.756 11.903 67.672 12.803 68.692 14.761 C 69.276 15.968 69.276 16.867 69.276 17.778 L 69.133 27.114 C 69.133 27.416 69.133 29.977 69.42 31.935 L 66.211 31.935 Z M 63.731 22.144 C 62.275 22.144 56.879 22.144 56.879 26.061 C 56.879 27.262 57.606 29.374 60.814 29.374 C 62.567 29.374 64.023 28.617 64.899 27.268 C 65.632 25.907 65.776 24.854 65.776 22.144 C 65.191 22.292 64.607 22.144 63.736 22.144 Z M 72.347 3.769 L 75.847 3.769 L 75.847 31.782 L 72.347 31.782 Z M 91.012 31.782 C 90.72 30.877 90.72 29.824 90.72 28.918 C 88.973 32.083 86.492 32.385 84.888 32.385 C 80.511 32.385 78.179 29.824 78.179 26.658 C 78.179 25.156 78.763 22.594 81.531 20.937 C 83.57 19.731 86.492 19.731 88.096 19.731 C 88.973 19.731 89.557 19.731 90.577 19.884 C 90.577 17.476 90.577 16.417 89.849 15.518 C 89.116 14.607 87.661 14.311 86.641 14.311 C 83.14 14.311 82.848 16.873 82.848 17.624 L 79.348 17.624 C 79.491 16.571 79.64 15.216 80.66 14.009 C 82.115 12.353 84.739 11.903 86.784 11.903 C 89.557 11.903 92.473 12.803 93.493 14.761 C 94.077 15.968 94.077 16.867 94.077 17.778 L 93.928 27.114 C 93.928 27.416 93.928 29.977 94.221 31.935 L 91.012 31.935 Z M 88.68 22.144 C 87.22 22.144 81.823 22.144 81.823 26.061 C 81.823 27.262 82.556 29.374 85.764 29.374 C 87.512 29.374 88.973 28.617 89.844 27.268 C 90.577 25.907 90.726 24.854 90.726 22.144 C 89.992 22.292 89.557 22.144 88.68 22.144 Z M 97.286 14.613 L 97.286 12.353 L 100.786 12.353 L 100.786 15.518 C 101.227 14.761 102.534 12.051 106.767 12.051 C 108.515 12.051 113.619 12.655 113.619 18.677 L 113.619 31.93 L 109.975 31.93 L 109.975 19.577 C 109.975 18.381 109.827 17.175 108.956 16.269 C 108.046 15.391 106.844 14.906 105.599 14.915 C 102.975 14.915 100.637 16.873 100.637 20.789 L 100.637 31.924 L 97.142 31.924 L 97.142 14.619 Z M 114.788 12.353 L 118.145 12.353 L 118.145 8.129 L 121.646 6.922 L 121.646 12.194 L 125.874 12.194 L 125.874 14.909 L 121.646 14.909 L 121.646 26.505 C 121.646 27.41 121.646 29.066 124.126 29.066 C 124.854 29.066 125.581 28.913 125.874 28.913 L 125.874 31.776 C 124.914 31.992 123.934 32.094 122.952 32.078 C 119.6 32.078 118.145 31.025 118.145 27.86 L 118.145 14.915 L 114.788 14.915 Z M 128.349 3.769 L 132.582 3.769 L 132.582 7.833 L 128.354 7.833 Z M 128.646 12.353 L 132.147 12.353 L 132.147 31.782 L 128.646 31.782 Z M 135.499 16.269 C 135.499 14.915 135.355 13.56 135.355 12.353 L 138.856 12.353 L 138.999 16.116 C 139.727 13.406 141.921 12.501 143.519 12.353 C 144.545 12.199 145.416 12.199 146 12.199 L 146 15.814 C 145.857 15.814 145.559 15.666 145.272 15.666 L 144.247 15.666 C 140.013 15.666 139.142 18.228 139.142 21.541 L 139.142 31.924 L 135.642 31.924 L 135.642 16.269 Z M 13.853 0 C 6.56 0 0.579 6.176 0.579 13.708 C 0.579 21.239 6.56 27.416 13.853 27.416 C 21.146 27.416 27.127 21.239 27.127 13.708 C 27.127 6.176 21.146 0 13.853 0 Z M 13.853 23.197 C 8.748 23.197 4.664 18.979 4.664 13.708 C 4.664 8.436 8.743 4.218 13.853 4.218 C 18.963 4.218 23.042 8.436 23.042 13.708 C 22.894 18.979 18.809 23.197 13.853 23.197 Z M 25.666 26.209 L 13.853 31.48 L 2.04 26.209 L 0 29.977 L 13.853 36 L 27.706 29.977 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:788800119,withExternalLayout:true,...addPropertyOverrides({NFw7FzpI3:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 36\"><path d=\"M 35.584 3.769 L 44.624 3.769 C 47.987 3.769 50.17 3.917 52.066 6.028 C 53.378 7.531 54.106 9.342 54.106 11.448 C 54.133 13.491 53.341 15.454 51.917 16.873 C 50.462 18.376 48.566 19.281 43.753 19.281 L 39.376 19.281 L 39.376 31.782 L 35.584 31.782 Z M 39.376 16.121 L 43.753 16.121 C 46.234 16.121 50.021 15.968 50.021 11.3 C 50.021 6.928 46.52 6.928 44.481 6.928 L 39.376 6.928 Z M 66.211 31.782 C 65.919 30.877 65.919 29.824 65.919 28.918 C 64.172 32.083 61.691 32.385 60.087 32.385 C 55.71 32.385 53.378 29.824 53.378 26.658 C 53.378 25.156 53.962 22.594 56.735 20.937 C 58.775 19.731 61.697 19.731 63.295 19.731 C 64.172 19.731 64.756 19.731 65.776 19.884 C 65.776 17.476 65.776 16.417 65.048 15.518 C 64.315 14.607 62.86 14.311 61.84 14.311 C 58.339 14.311 58.047 16.873 58.047 17.624 L 54.547 17.624 C 54.69 16.571 54.839 15.216 55.859 14.009 C 57.314 12.353 59.938 11.903 61.983 11.903 C 64.756 11.903 67.672 12.803 68.692 14.761 C 69.276 15.968 69.276 16.867 69.276 17.778 L 69.133 27.114 C 69.133 27.416 69.133 29.977 69.42 31.935 L 66.211 31.935 Z M 63.731 22.144 C 62.275 22.144 56.879 22.144 56.879 26.061 C 56.879 27.262 57.606 29.374 60.814 29.374 C 62.567 29.374 64.023 28.617 64.899 27.268 C 65.632 25.907 65.776 24.854 65.776 22.144 C 65.191 22.292 64.607 22.144 63.736 22.144 Z M 72.347 3.769 L 75.847 3.769 L 75.847 31.782 L 72.347 31.782 Z M 91.012 31.782 C 90.72 30.877 90.72 29.824 90.72 28.918 C 88.973 32.083 86.492 32.385 84.888 32.385 C 80.511 32.385 78.179 29.824 78.179 26.658 C 78.179 25.156 78.763 22.594 81.531 20.937 C 83.57 19.731 86.492 19.731 88.096 19.731 C 88.973 19.731 89.557 19.731 90.577 19.884 C 90.577 17.476 90.577 16.417 89.849 15.518 C 89.116 14.607 87.661 14.311 86.641 14.311 C 83.14 14.311 82.848 16.873 82.848 17.624 L 79.348 17.624 C 79.491 16.571 79.64 15.216 80.66 14.009 C 82.115 12.353 84.739 11.903 86.784 11.903 C 89.557 11.903 92.473 12.803 93.493 14.761 C 94.077 15.968 94.077 16.867 94.077 17.778 L 93.928 27.114 C 93.928 27.416 93.928 29.977 94.221 31.935 L 91.012 31.935 Z M 88.68 22.144 C 87.22 22.144 81.823 22.144 81.823 26.061 C 81.823 27.262 82.556 29.374 85.764 29.374 C 87.512 29.374 88.973 28.617 89.844 27.268 C 90.577 25.907 90.726 24.854 90.726 22.144 C 89.992 22.292 89.557 22.144 88.68 22.144 Z M 97.286 14.613 L 97.286 12.353 L 100.786 12.353 L 100.786 15.518 C 101.227 14.761 102.534 12.051 106.767 12.051 C 108.515 12.051 113.619 12.655 113.619 18.677 L 113.619 31.93 L 109.975 31.93 L 109.975 19.577 C 109.975 18.381 109.827 17.175 108.956 16.269 C 108.046 15.391 106.844 14.906 105.599 14.915 C 102.975 14.915 100.637 16.873 100.637 20.789 L 100.637 31.924 L 97.142 31.924 L 97.142 14.619 Z M 114.788 12.353 L 118.145 12.353 L 118.145 8.129 L 121.646 6.922 L 121.646 12.194 L 125.874 12.194 L 125.874 14.909 L 121.646 14.909 L 121.646 26.505 C 121.646 27.41 121.646 29.066 124.126 29.066 C 124.854 29.066 125.581 28.913 125.874 28.913 L 125.874 31.776 C 124.914 31.992 123.934 32.094 122.952 32.078 C 119.6 32.078 118.145 31.025 118.145 27.86 L 118.145 14.915 L 114.788 14.915 Z M 128.349 3.769 L 132.582 3.769 L 132.582 7.833 L 128.354 7.833 Z M 128.646 12.353 L 132.147 12.353 L 132.147 31.782 L 128.646 31.782 Z M 135.499 16.269 C 135.499 14.915 135.355 13.56 135.355 12.353 L 138.856 12.353 L 138.999 16.116 C 139.727 13.406 141.921 12.501 143.519 12.353 C 144.545 12.199 145.416 12.199 146 12.199 L 146 15.814 C 145.857 15.814 145.559 15.666 145.272 15.666 L 144.247 15.666 C 140.013 15.666 139.142 18.228 139.142 21.541 L 139.142 31.924 L 135.642 31.924 L 135.642 16.269 Z M 13.853 0 C 6.56 0 0.579 6.176 0.579 13.708 C 0.579 21.239 6.56 27.416 13.853 27.416 C 21.146 27.416 27.127 21.239 27.127 13.708 C 27.127 6.176 21.146 0 13.853 0 Z M 13.853 23.197 C 8.748 23.197 4.664 18.979 4.664 13.708 C 4.664 8.436 8.743 4.218 13.853 4.218 C 18.963 4.218 23.042 8.436 23.042 13.708 C 22.894 18.979 18.809 23.197 13.853 23.197 Z M 25.666 26.209 L 13.853 31.48 L 2.04 26.209 L 0 29.977 L 13.853 36 L 27.706 29.977 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:59496984}},baseVariant,gestureVariant)})})})})});});const css=['.framer-k1Ztk[data-border=\"true\"]::after, .framer-k1Ztk [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k1Ztk.framer-kdc2xu, .framer-k1Ztk .framer-kdc2xu { display: block; }\",\".framer-k1Ztk.framer-rw3mhm { height: 36px; overflow: hidden; position: relative; width: 146px; }\",\".framer-k1Ztk .framer-causko { flex: none; height: 36px; left: calc(50.00000000000002% - 146px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 146px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 146\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NFw7FzpI3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerb35N7d7Na=withCSS(Component,css,\"framer-k1Ztk\");export default Framerb35N7d7Na;Framerb35N7d7Na.displayName=\"Palantir\";Framerb35N7d7Na.defaultProps={height:36,width:146};addPropertyControls(Framerb35N7d7Na,{variant:{options:[\"yqqU1qzJk\",\"NFw7FzpI3\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb35N7d7Na,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb35N7d7Na\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NFw7FzpI3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"146\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b35N7d7Na.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"IJqf1AIEs\",\"DPUT3Lisz\"];const serializationHash=\"framer-yX08H\";const variantClassNames={DPUT3Lisz:\"framer-v-glf9gg\",IJqf1AIEs:\"framer-v-db3rex\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"IJqf1AIEs\",\"Variant 2\":\"DPUT3Lisz\"};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:\"IJqf1AIEs\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"IJqf1AIEs\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-db3rex\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IJqf1AIEs\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DPUT3Lisz:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1owvcy1\",\"data-framer-name\":\"Coinbase\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"T9sbshdAh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 26\"><path d=\"M 29.265 7.259 C 23.997 7.259 19.881 11.273 19.881 16.646 C 19.881 22.019 23.893 25.999 29.265 25.999 C 34.636 25.999 38.718 21.951 38.718 16.612 C 38.718 11.307 34.706 7.259 29.265 7.259 Z M 29.3 22.126 C 26.301 22.126 24.103 19.788 24.103 16.647 C 24.103 13.471 26.265 11.134 29.265 11.134 C 32.3 11.134 34.497 13.507 34.497 16.647 C 34.497 19.788 32.3 22.126 29.3 22.126 Z M 39.868 11.343 L 42.485 11.343 L 42.485 25.651 L 46.671 25.651 L 46.671 7.608 L 39.868 7.608 Z M 9.348 11.132 C 11.546 11.132 13.29 12.493 13.952 14.517 L 18.382 14.517 C 17.579 10.19 14.022 7.259 9.383 7.259 C 4.116 7.259 0 11.273 0 16.647 C 0 22.022 4.012 26 9.383 26 C 13.918 26 17.545 23.068 18.348 18.706 L 13.952 18.706 C 13.324 20.73 11.58 22.126 9.382 22.126 C 6.347 22.126 4.22 19.788 4.22 16.647 C 4.221 13.471 6.314 11.132 9.348 11.132 Z M 119.397 14.902 L 116.327 14.449 C 114.863 14.24 113.816 13.751 113.816 12.599 C 113.816 11.343 115.177 10.715 117.025 10.715 C 119.048 10.715 120.339 11.587 120.618 13.018 L 124.664 13.018 C 124.21 9.388 121.42 7.26 117.13 7.26 C 112.7 7.26 109.77 9.529 109.77 12.739 C 109.77 15.81 111.689 17.591 115.56 18.148 L 118.63 18.601 C 120.13 18.81 120.967 19.405 120.967 20.521 C 120.967 21.952 119.502 22.545 117.479 22.545 C 115.002 22.545 113.607 21.533 113.398 19.998 L 109.282 19.998 C 109.666 23.523 112.421 26 117.444 26 C 122.014 26 125.047 23.906 125.047 20.311 C 125.047 17.1 122.851 15.425 119.397 14.902 Z M 44.578 0.174 C 43.043 0.174 41.891 1.291 41.891 2.826 C 41.891 4.361 43.042 5.478 44.578 5.478 C 46.112 5.478 47.264 4.361 47.264 2.826 C 47.264 1.291 46.112 0.174 44.578 0.174 Z M 106.003 13.785 C 106.003 9.877 103.631 7.26 98.609 7.26 C 93.865 7.26 91.214 9.669 90.69 13.368 L 94.842 13.368 C 95.051 11.937 96.167 10.751 98.539 10.751 C 100.667 10.751 101.713 11.693 101.713 12.845 C 101.713 14.346 99.794 14.729 97.423 14.973 C 94.214 15.322 90.237 16.438 90.237 20.627 C 90.237 23.873 92.645 25.966 96.482 25.966 C 99.481 25.966 101.365 24.709 102.307 22.719 C 102.447 24.499 103.772 25.651 105.621 25.651 L 108.063 25.651 L 108.063 21.917 L 106.004 21.917 L 106.004 13.785 Z M 101.887 18.322 C 101.887 20.731 99.794 22.511 97.248 22.511 C 95.677 22.511 94.352 21.847 94.352 20.452 C 94.352 18.673 96.48 18.184 98.433 17.975 C 100.317 17.801 101.363 17.382 101.887 16.578 Z M 79.668 7.259 C 77.331 7.259 75.377 8.236 73.982 9.876 L 73.982 0 L 69.796 0 L 69.796 25.651 L 73.912 25.651 L 73.912 23.278 C 75.307 24.988 77.296 26 79.668 26 C 84.691 26 88.493 22.022 88.493 16.647 C 88.493 11.273 84.621 7.259 79.668 7.259 Z M 79.04 22.126 C 76.041 22.126 73.843 19.788 73.843 16.647 C 73.843 13.507 76.075 11.134 79.075 11.134 C 82.11 11.134 84.237 13.472 84.237 16.647 C 84.237 19.788 82.04 22.126 79.04 22.126 Z M 59.785 7.259 C 57.065 7.259 55.285 8.375 54.239 9.946 L 54.239 7.608 L 50.087 7.608 L 50.087 25.65 L 54.273 25.65 L 54.273 15.844 C 54.273 13.087 56.017 11.132 58.598 11.132 C 61.005 11.132 62.505 12.842 62.505 15.321 L 62.505 25.651 L 66.69 25.651 L 66.69 15.008 C 66.692 10.469 64.355 7.259 59.785 7.259 Z M 145 16.054 C 145 10.889 141.233 7.26 136.175 7.26 C 130.803 7.26 126.861 11.308 126.861 16.647 C 126.861 22.266 131.082 26 136.245 26 C 140.605 26 144.023 23.417 144.895 19.753 L 140.534 19.753 C 139.906 21.359 138.372 22.266 136.313 22.266 C 133.627 22.266 131.604 20.591 131.151 17.659 L 144.999 17.659 L 144.999 16.054 Z M 131.396 14.657 C 132.059 12.145 133.942 10.924 136.105 10.924 C 138.477 10.924 140.291 12.285 140.709 14.657 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:2895497721,withExternalLayout:true,...addPropertyOverrides({DPUT3Lisz:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 26\"><path d=\"M 29.265 7.259 C 23.997 7.259 19.881 11.273 19.881 16.646 C 19.881 22.019 23.893 25.999 29.265 25.999 C 34.636 25.999 38.718 21.951 38.718 16.612 C 38.718 11.307 34.706 7.259 29.265 7.259 Z M 29.3 22.126 C 26.301 22.126 24.103 19.788 24.103 16.647 C 24.103 13.471 26.265 11.134 29.265 11.134 C 32.3 11.134 34.497 13.507 34.497 16.647 C 34.497 19.788 32.3 22.126 29.3 22.126 Z M 39.868 11.343 L 42.485 11.343 L 42.485 25.651 L 46.671 25.651 L 46.671 7.608 L 39.868 7.608 Z M 9.348 11.132 C 11.546 11.132 13.29 12.493 13.952 14.517 L 18.382 14.517 C 17.579 10.19 14.022 7.259 9.383 7.259 C 4.116 7.259 0 11.273 0 16.647 C 0 22.022 4.012 26 9.383 26 C 13.918 26 17.545 23.068 18.348 18.706 L 13.952 18.706 C 13.324 20.73 11.58 22.126 9.382 22.126 C 6.347 22.126 4.22 19.788 4.22 16.647 C 4.221 13.471 6.314 11.132 9.348 11.132 Z M 119.397 14.902 L 116.327 14.449 C 114.863 14.24 113.816 13.751 113.816 12.599 C 113.816 11.343 115.177 10.715 117.025 10.715 C 119.048 10.715 120.339 11.587 120.618 13.018 L 124.664 13.018 C 124.21 9.388 121.42 7.26 117.13 7.26 C 112.7 7.26 109.77 9.529 109.77 12.739 C 109.77 15.81 111.689 17.591 115.56 18.148 L 118.63 18.601 C 120.13 18.81 120.967 19.405 120.967 20.521 C 120.967 21.952 119.502 22.545 117.479 22.545 C 115.002 22.545 113.607 21.533 113.398 19.998 L 109.282 19.998 C 109.666 23.523 112.421 26 117.444 26 C 122.014 26 125.047 23.906 125.047 20.311 C 125.047 17.1 122.851 15.425 119.397 14.902 Z M 44.578 0.174 C 43.043 0.174 41.891 1.291 41.891 2.826 C 41.891 4.361 43.042 5.478 44.578 5.478 C 46.112 5.478 47.264 4.361 47.264 2.826 C 47.264 1.291 46.112 0.174 44.578 0.174 Z M 106.003 13.785 C 106.003 9.877 103.631 7.26 98.609 7.26 C 93.865 7.26 91.214 9.669 90.69 13.368 L 94.842 13.368 C 95.051 11.937 96.167 10.751 98.539 10.751 C 100.667 10.751 101.713 11.693 101.713 12.845 C 101.713 14.346 99.794 14.729 97.423 14.973 C 94.214 15.322 90.237 16.438 90.237 20.627 C 90.237 23.873 92.645 25.966 96.482 25.966 C 99.481 25.966 101.365 24.709 102.307 22.719 C 102.447 24.499 103.772 25.651 105.621 25.651 L 108.063 25.651 L 108.063 21.917 L 106.004 21.917 L 106.004 13.785 Z M 101.887 18.322 C 101.887 20.731 99.794 22.511 97.248 22.511 C 95.677 22.511 94.352 21.847 94.352 20.452 C 94.352 18.673 96.48 18.184 98.433 17.975 C 100.317 17.801 101.363 17.382 101.887 16.578 Z M 79.668 7.259 C 77.331 7.259 75.377 8.236 73.982 9.876 L 73.982 0 L 69.796 0 L 69.796 25.651 L 73.912 25.651 L 73.912 23.278 C 75.307 24.988 77.296 26 79.668 26 C 84.691 26 88.493 22.022 88.493 16.647 C 88.493 11.273 84.621 7.259 79.668 7.259 Z M 79.04 22.126 C 76.041 22.126 73.843 19.788 73.843 16.647 C 73.843 13.507 76.075 11.134 79.075 11.134 C 82.11 11.134 84.237 13.472 84.237 16.647 C 84.237 19.788 82.04 22.126 79.04 22.126 Z M 59.785 7.259 C 57.065 7.259 55.285 8.375 54.239 9.946 L 54.239 7.608 L 50.087 7.608 L 50.087 25.65 L 54.273 25.65 L 54.273 15.844 C 54.273 13.087 56.017 11.132 58.598 11.132 C 61.005 11.132 62.505 12.842 62.505 15.321 L 62.505 25.651 L 66.69 25.651 L 66.69 15.008 C 66.692 10.469 64.355 7.259 59.785 7.259 Z M 145 16.054 C 145 10.889 141.233 7.26 136.175 7.26 C 130.803 7.26 126.861 11.308 126.861 16.647 C 126.861 22.266 131.082 26 136.245 26 C 140.605 26 144.023 23.417 144.895 19.753 L 140.534 19.753 C 139.906 21.359 138.372 22.266 136.313 22.266 C 133.627 22.266 131.604 20.591 131.151 17.659 L 144.999 17.659 L 144.999 16.054 Z M 131.396 14.657 C 132.059 12.145 133.942 10.924 136.105 10.924 C 138.477 10.924 140.291 12.285 140.709 14.657 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:1678520646}},baseVariant,gestureVariant)})})})})});});const css=['.framer-yX08H[data-border=\"true\"]::after, .framer-yX08H [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yX08H.framer-y9bsmv, .framer-yX08H .framer-y9bsmv { display: block; }\",\".framer-yX08H.framer-db3rex { height: 26px; overflow: hidden; position: relative; width: 145px; }\",\".framer-yX08H .framer-1owvcy1 { flex: none; height: 26px; left: calc(49.655172413793125% - 145px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 145px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 145\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DPUT3Lisz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerfweDWpDlc=withCSS(Component,css,\"framer-yX08H\");export default FramerfweDWpDlc;FramerfweDWpDlc.displayName=\"Coinbase\";FramerfweDWpDlc.defaultProps={height:26,width:145};addPropertyControls(FramerfweDWpDlc,{variant:{options:[\"IJqf1AIEs\",\"DPUT3Lisz\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfweDWpDlc,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfweDWpDlc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"145\",\"framerIntrinsicHeight\":\"26\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DPUT3Lisz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fweDWpDlc.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"FUZMBQM4a\",\"vY5e1Vf0d\"];const serializationHash=\"framer-8qjGX\";const variantClassNames={FUZMBQM4a:\"framer-v-1qxp9dn\",vY5e1Vf0d:\"framer-v-1nq5e2i\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"FUZMBQM4a\",\"Variant 2\":\"vY5e1Vf0d\"};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:\"FUZMBQM4a\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"FUZMBQM4a\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qxp9dn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FUZMBQM4a\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({vY5e1Vf0d:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qh5o90\",\"data-framer-name\":\"Microsoft\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Sxqf30cdX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 31\"><path d=\"M 51.544 17.855 L 50.673 20.306 L 50.601 20.306 C 50.456 19.753 50.19 18.912 49.755 17.903 L 45.089 6.248 L 40.519 6.248 L 40.519 24.824 L 43.541 24.824 L 43.541 13.361 C 43.541 12.64 43.541 11.823 43.517 10.814 C 43.493 10.309 43.445 9.925 43.42 9.636 L 43.493 9.636 C 43.638 10.357 43.807 10.886 43.928 11.222 L 49.537 24.776 L 51.665 24.776 L 57.225 11.102 C 57.346 10.79 57.467 10.165 57.588 9.636 L 57.66 9.636 C 57.588 11.006 57.539 12.232 57.515 12.977 L 57.515 24.752 L 60.731 24.752 L 60.731 6.2 L 56.331 6.2 Z M 63.777 11.439 L 66.92 11.439 L 66.92 24.752 L 63.777 24.752 Z M 65.372 5.816 C 64.841 5.816 64.405 6.008 64.043 6.344 C 63.68 6.681 63.487 7.113 63.487 7.642 C 63.487 8.147 63.68 8.579 64.043 8.916 C 64.405 9.252 64.841 9.42 65.372 9.42 C 65.904 9.42 66.364 9.228 66.702 8.916 C 67.065 8.579 67.258 8.147 67.258 7.642 C 67.258 7.137 67.065 6.705 66.702 6.344 C 66.388 6.008 65.928 5.816 65.372 5.816 M 78.065 11.319 C 77.485 11.198 76.88 11.126 76.3 11.126 C 74.874 11.126 73.568 11.439 72.48 12.064 C 71.392 12.688 70.522 13.553 69.966 14.635 C 69.386 15.74 69.096 17.014 69.096 18.48 C 69.096 19.753 69.386 20.883 69.942 21.916 C 70.498 22.926 71.271 23.743 72.311 24.295 C 73.302 24.848 74.463 25.136 75.768 25.136 C 77.267 25.136 78.548 24.824 79.564 24.247 L 79.588 24.223 L 79.588 21.34 L 79.467 21.436 C 79.008 21.772 78.476 22.06 77.944 22.229 C 77.388 22.421 76.88 22.517 76.445 22.517 C 75.188 22.517 74.197 22.157 73.496 21.364 C 72.77 20.595 72.408 19.537 72.408 18.216 C 72.408 16.846 72.77 15.764 73.52 14.971 C 74.269 14.178 75.26 13.77 76.469 13.77 C 77.485 13.77 78.524 14.106 79.467 14.779 L 79.588 14.875 L 79.588 11.823 L 79.564 11.799 C 79.153 11.631 78.693 11.439 78.065 11.319 M 88.436 11.222 C 87.663 11.222 86.938 11.463 86.309 11.967 C 85.777 12.4 85.414 13.025 85.1 13.77 L 85.076 13.77 L 85.076 11.439 L 81.933 11.439 L 81.933 24.752 L 85.076 24.752 L 85.076 17.951 C 85.076 16.798 85.318 15.836 85.85 15.14 C 86.382 14.419 87.058 14.058 87.88 14.058 C 88.171 14.058 88.461 14.13 88.823 14.178 C 89.162 14.274 89.404 14.371 89.573 14.491 L 89.694 14.587 L 89.694 11.463 L 89.621 11.439 C 89.404 11.295 88.968 11.222 88.436 11.222 M 96.995 11.15 C 94.795 11.15 93.03 11.799 91.797 13.073 C 90.54 14.347 89.935 16.101 89.935 18.312 C 89.935 20.378 90.564 22.06 91.773 23.286 C 92.982 24.488 94.626 25.112 96.681 25.112 C 98.832 25.112 100.549 24.464 101.782 23.166 C 103.039 21.868 103.643 20.138 103.643 17.999 C 103.643 15.884 103.063 14.202 101.878 12.977 C 100.742 11.751 99.074 11.15 96.995 11.15 M 99.509 21.388 C 98.929 22.133 98.01 22.493 96.874 22.493 C 95.738 22.493 94.819 22.133 94.166 21.34 C 93.513 20.595 93.199 19.513 93.199 18.143 C 93.199 16.726 93.538 15.644 94.166 14.875 C 94.819 14.106 95.714 13.722 96.85 13.722 C 97.962 13.722 98.832 14.082 99.461 14.827 C 100.089 15.572 100.428 16.653 100.428 18.071 C 100.38 19.513 100.114 20.643 99.509 21.388 M 110.654 16.966 C 109.663 16.557 109.035 16.245 108.744 15.981 C 108.503 15.74 108.382 15.404 108.382 14.971 C 108.382 14.611 108.527 14.25 108.89 14.01 C 109.252 13.77 109.663 13.65 110.268 13.65 C 110.799 13.65 111.356 13.746 111.887 13.89 C 112.419 14.034 112.903 14.25 113.29 14.539 L 113.411 14.635 L 113.411 11.703 L 113.338 11.679 C 112.975 11.535 112.492 11.391 111.912 11.271 C 111.331 11.174 110.799 11.126 110.364 11.126 C 108.865 11.126 107.632 11.487 106.665 12.28 C 105.698 13.025 105.239 14.034 105.239 15.212 C 105.239 15.836 105.336 16.389 105.553 16.846 C 105.771 17.302 106.085 17.735 106.52 18.095 C 106.955 18.432 107.584 18.816 108.454 19.177 C 109.18 19.489 109.736 19.729 110.074 19.922 C 110.413 20.114 110.63 20.33 110.799 20.498 C 110.92 20.691 110.993 20.931 110.993 21.243 C 110.993 22.133 110.316 22.565 108.938 22.565 C 108.406 22.565 107.85 22.469 107.197 22.253 C 106.544 22.036 105.94 21.724 105.432 21.364 L 105.311 21.267 L 105.311 24.319 L 105.384 24.343 C 105.843 24.56 106.399 24.704 107.076 24.872 C 107.753 24.992 108.358 25.088 108.89 25.088 C 110.509 25.088 111.839 24.728 112.782 23.935 C 113.749 23.166 114.257 22.181 114.257 20.907 C 114.257 20.018 114.015 19.225 113.483 18.624 C 112.782 18.047 111.912 17.447 110.654 16.966 M 122.549 11.15 C 120.349 11.15 118.584 11.799 117.351 13.073 C 116.118 14.347 115.49 16.101 115.49 18.312 C 115.49 20.378 116.118 22.06 117.327 23.286 C 118.536 24.488 120.18 25.112 122.235 25.112 C 124.386 25.112 126.103 24.464 127.336 23.166 C 128.593 21.868 129.198 20.138 129.198 17.999 C 129.198 15.884 128.617 14.202 127.433 12.977 C 126.296 11.751 124.628 11.15 122.549 11.15 M 125.039 21.388 C 124.459 22.133 123.54 22.493 122.404 22.493 C 121.244 22.493 120.349 22.133 119.696 21.34 C 119.044 20.595 118.729 19.513 118.729 18.143 C 118.729 16.726 119.068 15.644 119.696 14.875 C 120.349 14.106 121.244 13.722 122.38 13.722 C 123.468 13.722 124.362 14.082 124.991 14.827 C 125.619 15.572 125.958 16.653 125.958 18.071 C 125.958 19.513 125.644 20.643 125.039 21.388 M 146 14.01 L 146 11.439 L 142.833 11.439 L 142.833 7.498 L 142.736 7.522 L 139.738 8.411 L 139.666 8.435 L 139.666 11.439 L 134.927 11.439 L 134.927 9.757 C 134.927 8.988 135.121 8.387 135.459 8.002 C 135.798 7.618 136.305 7.426 136.934 7.426 C 137.369 7.426 137.828 7.522 138.336 7.738 L 138.457 7.81 L 138.457 5.095 L 138.385 5.071 C 137.949 4.926 137.369 4.83 136.62 4.83 C 135.677 4.83 134.855 5.047 134.105 5.407 C 133.356 5.816 132.8 6.368 132.389 7.113 C 131.978 7.834 131.76 8.651 131.76 9.588 L 131.76 11.439 L 129.56 11.439 L 129.56 13.986 L 131.76 13.986 L 131.76 24.752 L 134.927 24.752 L 134.927 14.01 L 139.666 14.01 L 139.666 20.859 C 139.666 23.671 140.996 25.088 143.655 25.088 C 144.09 25.088 144.549 25.016 144.985 24.944 C 145.444 24.848 145.782 24.728 145.976 24.632 L 146 24.608 L 146 22.036 L 145.879 22.133 C 145.686 22.253 145.516 22.349 145.226 22.421 C 144.985 22.493 144.767 22.517 144.598 22.517 C 143.969 22.517 143.534 22.373 143.22 22.012 C 142.93 21.676 142.785 21.123 142.785 20.306 L 142.785 14.01 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 0 0 L 14.82 0 L 14.82 14.731 L 0 14.731 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 16.367 0 L 31.187 0 L 31.187 14.731 L 16.367 14.731 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 0 16.269 L 14.82 16.269 L 14.82 31 L 0 31 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 16.367 16.269 L 31.187 16.269 L 31.187 31 L 16.367 31 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:4024893120,withExternalLayout:true,...addPropertyOverrides({vY5e1Vf0d:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 31\"><path d=\"M 51.544 17.855 L 50.673 20.306 L 50.601 20.306 C 50.456 19.753 50.19 18.912 49.755 17.903 L 45.089 6.248 L 40.519 6.248 L 40.519 24.824 L 43.541 24.824 L 43.541 13.361 C 43.541 12.64 43.541 11.823 43.517 10.814 C 43.493 10.309 43.445 9.925 43.42 9.636 L 43.493 9.636 C 43.638 10.357 43.807 10.886 43.928 11.222 L 49.537 24.776 L 51.665 24.776 L 57.225 11.102 C 57.346 10.79 57.467 10.165 57.588 9.636 L 57.66 9.636 C 57.588 11.006 57.539 12.232 57.515 12.977 L 57.515 24.752 L 60.731 24.752 L 60.731 6.2 L 56.331 6.2 Z M 63.777 11.439 L 66.92 11.439 L 66.92 24.752 L 63.777 24.752 Z M 65.372 5.816 C 64.841 5.816 64.405 6.008 64.043 6.344 C 63.68 6.681 63.487 7.113 63.487 7.642 C 63.487 8.147 63.68 8.579 64.043 8.916 C 64.405 9.252 64.841 9.42 65.372 9.42 C 65.904 9.42 66.364 9.228 66.702 8.916 C 67.065 8.579 67.258 8.147 67.258 7.642 C 67.258 7.137 67.065 6.705 66.702 6.344 C 66.388 6.008 65.928 5.816 65.372 5.816 M 78.065 11.319 C 77.485 11.198 76.88 11.126 76.3 11.126 C 74.874 11.126 73.568 11.439 72.48 12.064 C 71.392 12.688 70.522 13.553 69.966 14.635 C 69.386 15.74 69.096 17.014 69.096 18.48 C 69.096 19.753 69.386 20.883 69.942 21.916 C 70.498 22.926 71.271 23.743 72.311 24.295 C 73.302 24.848 74.463 25.136 75.768 25.136 C 77.267 25.136 78.548 24.824 79.564 24.247 L 79.588 24.223 L 79.588 21.34 L 79.467 21.436 C 79.008 21.772 78.476 22.06 77.944 22.229 C 77.388 22.421 76.88 22.517 76.445 22.517 C 75.188 22.517 74.197 22.157 73.496 21.364 C 72.77 20.595 72.408 19.537 72.408 18.216 C 72.408 16.846 72.77 15.764 73.52 14.971 C 74.269 14.178 75.26 13.77 76.469 13.77 C 77.485 13.77 78.524 14.106 79.467 14.779 L 79.588 14.875 L 79.588 11.823 L 79.564 11.799 C 79.153 11.631 78.693 11.439 78.065 11.319 M 88.436 11.222 C 87.663 11.222 86.938 11.463 86.309 11.967 C 85.777 12.4 85.414 13.025 85.1 13.77 L 85.076 13.77 L 85.076 11.439 L 81.933 11.439 L 81.933 24.752 L 85.076 24.752 L 85.076 17.951 C 85.076 16.798 85.318 15.836 85.85 15.14 C 86.382 14.419 87.058 14.058 87.88 14.058 C 88.171 14.058 88.461 14.13 88.823 14.178 C 89.162 14.274 89.404 14.371 89.573 14.491 L 89.694 14.587 L 89.694 11.463 L 89.621 11.439 C 89.404 11.295 88.968 11.222 88.436 11.222 M 96.995 11.15 C 94.795 11.15 93.03 11.799 91.797 13.073 C 90.54 14.347 89.935 16.101 89.935 18.312 C 89.935 20.378 90.564 22.06 91.773 23.286 C 92.982 24.488 94.626 25.112 96.681 25.112 C 98.832 25.112 100.549 24.464 101.782 23.166 C 103.039 21.868 103.643 20.138 103.643 17.999 C 103.643 15.884 103.063 14.202 101.878 12.977 C 100.742 11.751 99.074 11.15 96.995 11.15 M 99.509 21.388 C 98.929 22.133 98.01 22.493 96.874 22.493 C 95.738 22.493 94.819 22.133 94.166 21.34 C 93.513 20.595 93.199 19.513 93.199 18.143 C 93.199 16.726 93.538 15.644 94.166 14.875 C 94.819 14.106 95.714 13.722 96.85 13.722 C 97.962 13.722 98.832 14.082 99.461 14.827 C 100.089 15.572 100.428 16.653 100.428 18.071 C 100.38 19.513 100.114 20.643 99.509 21.388 M 110.654 16.966 C 109.663 16.557 109.035 16.245 108.744 15.981 C 108.503 15.74 108.382 15.404 108.382 14.971 C 108.382 14.611 108.527 14.25 108.89 14.01 C 109.252 13.77 109.663 13.65 110.268 13.65 C 110.799 13.65 111.356 13.746 111.887 13.89 C 112.419 14.034 112.903 14.25 113.29 14.539 L 113.411 14.635 L 113.411 11.703 L 113.338 11.679 C 112.975 11.535 112.492 11.391 111.912 11.271 C 111.331 11.174 110.799 11.126 110.364 11.126 C 108.865 11.126 107.632 11.487 106.665 12.28 C 105.698 13.025 105.239 14.034 105.239 15.212 C 105.239 15.836 105.336 16.389 105.553 16.846 C 105.771 17.302 106.085 17.735 106.52 18.095 C 106.955 18.432 107.584 18.816 108.454 19.177 C 109.18 19.489 109.736 19.729 110.074 19.922 C 110.413 20.114 110.63 20.33 110.799 20.498 C 110.92 20.691 110.993 20.931 110.993 21.243 C 110.993 22.133 110.316 22.565 108.938 22.565 C 108.406 22.565 107.85 22.469 107.197 22.253 C 106.544 22.036 105.94 21.724 105.432 21.364 L 105.311 21.267 L 105.311 24.319 L 105.384 24.343 C 105.843 24.56 106.399 24.704 107.076 24.872 C 107.753 24.992 108.358 25.088 108.89 25.088 C 110.509 25.088 111.839 24.728 112.782 23.935 C 113.749 23.166 114.257 22.181 114.257 20.907 C 114.257 20.018 114.015 19.225 113.483 18.624 C 112.782 18.047 111.912 17.447 110.654 16.966 M 122.549 11.15 C 120.349 11.15 118.584 11.799 117.351 13.073 C 116.118 14.347 115.49 16.101 115.49 18.312 C 115.49 20.378 116.118 22.06 117.327 23.286 C 118.536 24.488 120.18 25.112 122.235 25.112 C 124.386 25.112 126.103 24.464 127.336 23.166 C 128.593 21.868 129.198 20.138 129.198 17.999 C 129.198 15.884 128.617 14.202 127.433 12.977 C 126.296 11.751 124.628 11.15 122.549 11.15 M 125.039 21.388 C 124.459 22.133 123.54 22.493 122.404 22.493 C 121.244 22.493 120.349 22.133 119.696 21.34 C 119.044 20.595 118.729 19.513 118.729 18.143 C 118.729 16.726 119.068 15.644 119.696 14.875 C 120.349 14.106 121.244 13.722 122.38 13.722 C 123.468 13.722 124.362 14.082 124.991 14.827 C 125.619 15.572 125.958 16.653 125.958 18.071 C 125.958 19.513 125.644 20.643 125.039 21.388 M 146 14.01 L 146 11.439 L 142.833 11.439 L 142.833 7.498 L 142.736 7.522 L 139.738 8.411 L 139.666 8.435 L 139.666 11.439 L 134.927 11.439 L 134.927 9.757 C 134.927 8.988 135.121 8.387 135.459 8.002 C 135.798 7.618 136.305 7.426 136.934 7.426 C 137.369 7.426 137.828 7.522 138.336 7.738 L 138.457 7.81 L 138.457 5.095 L 138.385 5.071 C 137.949 4.926 137.369 4.83 136.62 4.83 C 135.677 4.83 134.855 5.047 134.105 5.407 C 133.356 5.816 132.8 6.368 132.389 7.113 C 131.978 7.834 131.76 8.651 131.76 9.588 L 131.76 11.439 L 129.56 11.439 L 129.56 13.986 L 131.76 13.986 L 131.76 24.752 L 134.927 24.752 L 134.927 14.01 L 139.666 14.01 L 139.666 20.859 C 139.666 23.671 140.996 25.088 143.655 25.088 C 144.09 25.088 144.549 25.016 144.985 24.944 C 145.444 24.848 145.782 24.728 145.976 24.632 L 146 24.608 L 146 22.036 L 145.879 22.133 C 145.686 22.253 145.516 22.349 145.226 22.421 C 144.985 22.493 144.767 22.517 144.598 22.517 C 143.969 22.517 143.534 22.373 143.22 22.012 C 142.93 21.676 142.785 21.123 142.785 20.306 L 142.785 14.01 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 0 L 14.82 0 L 14.82 14.731 L 0 14.731 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.367 0 L 31.187 0 L 31.187 14.731 L 16.367 14.731 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 16.269 L 14.82 16.269 L 14.82 31 L 0 31 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.367 16.269 L 31.187 16.269 L 31.187 31 L 16.367 31 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:3943960592}},baseVariant,gestureVariant)})})})})});});const css=['.framer-8qjGX[data-border=\"true\"]::after, .framer-8qjGX [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8qjGX.framer-mh5yap, .framer-8qjGX .framer-mh5yap { display: block; }\",\".framer-8qjGX.framer-1qxp9dn { height: 31px; overflow: hidden; position: relative; width: 146px; }\",\".framer-8qjGX .framer-qh5o90 { flex: none; height: 31px; left: calc(50.00000000000002% - 146px / 2); position: absolute; top: calc(48.38709677419357% - 31px / 2); width: 146px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 146\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vY5e1Vf0d\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerPk0Wg3PIZ=withCSS(Component,css,\"framer-8qjGX\");export default FramerPk0Wg3PIZ;FramerPk0Wg3PIZ.displayName=\"Microsoft\";FramerPk0Wg3PIZ.defaultProps={height:31,width:146};addPropertyControls(FramerPk0Wg3PIZ,{variant:{options:[\"FUZMBQM4a\",\"vY5e1Vf0d\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPk0Wg3PIZ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPk0Wg3PIZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"146\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vY5e1Vf0d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"31\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pk0Wg3PIZ.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"HSXRVwv8C\",\"tGhDaGx2c\"];const serializationHash=\"framer-Ev2we\";const variantClassNames={HSXRVwv8C:\"framer-v-tkjwav\",tGhDaGx2c:\"framer-v-1akvm8n\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"HSXRVwv8C\",\"Variant 2\":\"tGhDaGx2c\"};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:\"HSXRVwv8C\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HSXRVwv8C\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tkjwav\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HSXRVwv8C\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({tGhDaGx2c:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3ykx0i\",\"data-framer-name\":\"Facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"er3rBCTSS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 135 28\"><path d=\"M 8.552 27.568 L 3.465 27.568 L 3.465 13.979 L 0 13.979 L 0 9.555 L 3.465 9.555 L 3.465 6.406 C 3.465 2.676 4.998 0 10.071 0 C 11.144 0 12.829 0.232 12.829 0.232 L 12.829 4.34 L 11.059 4.34 C 9.256 4.34 8.553 4.928 8.553 6.552 L 8.553 9.555 L 12.761 9.555 L 12.386 13.979 L 8.552 13.979 Z M 20.224 9.201 C 20.15 9.201 20.074 9.204 19.998 9.206 C 15.282 9.206 13.123 13.008 13.123 18.406 C 13.123 25.205 15.923 27.926 20.035 27.926 C 22.388 27.926 23.934 26.865 24.874 24.884 L 24.874 27.57 L 29.712 27.57 L 29.712 9.557 L 24.874 9.557 L 24.874 12.327 C 24.107 10.545 22.517 9.222 20.224 9.201 Z M 21.455 13.458 C 23.436 13.458 24.625 14.939 24.625 17.457 L 24.629 20.03 C 24.629 21.728 23.647 23.714 21.455 23.714 C 18.084 23.714 18.174 19.813 18.174 18.514 C 18.174 14.144 19.97 13.458 21.455 13.458 Z M 31.666 18.564 C 31.666 16.375 31.568 9.213 40.276 9.213 C 43.772 9.213 45.232 10.404 45.232 10.404 L 44.058 14.303 C 44.058 14.303 42.601 13.443 40.701 13.443 C 38.268 13.443 36.716 14.954 36.716 17.613 L 36.719 19.52 C 36.719 22.075 38.217 23.781 40.706 23.781 C 42.437 23.781 44.032 22.913 44.032 22.913 L 45.202 26.731 C 45.202 26.731 43.867 27.929 40.301 27.929 C 32.009 27.929 31.666 21.503 31.666 18.564 Z M 73.601 9.206 C 78.318 9.206 80.51 13.008 80.51 18.406 C 80.51 25.205 77.711 27.926 73.598 27.926 C 71.245 27.926 69.506 26.865 68.566 24.884 L 68.566 27.57 L 63.789 27.568 L 63.789 0.548 L 68.861 0.074 L 68.861 12.083 C 69.593 9.982 71.999 9.206 73.601 9.206 Z M 72.179 13.458 C 70.198 13.458 68.861 14.939 68.861 17.457 L 68.856 20.03 C 68.854 21.728 69.782 23.714 72.179 23.714 C 75.55 23.714 75.46 19.813 75.46 18.514 C 75.46 14.144 73.664 13.458 72.179 13.458 Z M 54.033 9.221 C 48.683 9.221 45.858 12.347 45.858 17.902 L 45.858 18.934 C 45.858 26.144 49.825 28 54.553 28 C 59.15 28 61.23 26.622 61.23 26.622 L 60.281 22.954 C 60.281 22.954 57.834 24.069 55.162 24.069 C 52.391 24.069 51.2 23.313 50.895 20.46 L 61.636 20.46 L 61.636 17.517 C 61.636 11.491 58.466 9.221 54.033 9.221 Z M 54.162 12.895 C 56.014 12.895 57.214 14.112 57.148 16.934 L 50.904 16.934 C 51.012 13.963 52.306 12.895 54.162 12.895 Z M 90.624 9.196 C 85.13 9.196 82.238 12.514 82.238 18.46 C 82.238 26.618 87.224 27.931 90.634 27.931 C 95.625 27.931 98.946 25.051 98.946 18.534 C 98.946 11.751 95.212 9.196 90.624 9.196 Z M 90.555 13.472 C 92.971 13.472 93.928 15.41 93.928 17.616 L 93.928 19.512 C 93.928 22.183 92.589 23.729 90.546 23.729 C 88.636 23.729 87.293 22.283 87.293 19.512 L 87.293 17.616 C 87.293 14.66 88.891 13.472 90.555 13.472 Z M 109.052 9.196 C 103.558 9.196 100.665 12.514 100.665 18.46 C 100.665 26.618 105.651 27.931 109.061 27.931 C 114.052 27.931 117.374 25.051 117.374 18.534 C 117.374 11.751 113.639 9.196 109.052 9.196 Z M 108.983 13.472 C 111.398 13.472 112.356 15.41 112.356 17.616 L 112.356 19.512 C 112.356 22.183 111.016 23.729 108.973 23.729 C 107.063 23.729 105.72 22.283 105.72 19.512 L 105.72 17.616 C 105.72 14.66 107.318 13.472 108.983 13.472 Z M 119.29 27.568 L 119.29 0.548 L 124.378 0.074 L 124.378 18.185 L 129.425 9.555 L 134.797 9.555 L 129.532 18.493 L 135 27.568 L 129.612 27.568 L 124.378 18.756 L 124.378 27.568 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:3753612136,withExternalLayout:true,...addPropertyOverrides({tGhDaGx2c:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 135 28\"><path d=\"M 8.552 27.568 L 3.465 27.568 L 3.465 13.979 L 0 13.979 L 0 9.555 L 3.465 9.555 L 3.465 6.406 C 3.465 2.676 4.998 0 10.071 0 C 11.144 0 12.829 0.232 12.829 0.232 L 12.829 4.34 L 11.059 4.34 C 9.256 4.34 8.553 4.928 8.553 6.552 L 8.553 9.555 L 12.761 9.555 L 12.386 13.979 L 8.552 13.979 Z M 20.224 9.201 C 20.15 9.201 20.074 9.204 19.998 9.206 C 15.282 9.206 13.123 13.008 13.123 18.406 C 13.123 25.205 15.923 27.926 20.035 27.926 C 22.388 27.926 23.934 26.865 24.874 24.884 L 24.874 27.57 L 29.712 27.57 L 29.712 9.557 L 24.874 9.557 L 24.874 12.327 C 24.107 10.545 22.517 9.222 20.224 9.201 Z M 21.455 13.458 C 23.436 13.458 24.625 14.939 24.625 17.457 L 24.629 20.03 C 24.629 21.728 23.647 23.714 21.455 23.714 C 18.084 23.714 18.174 19.813 18.174 18.514 C 18.174 14.144 19.97 13.458 21.455 13.458 Z M 31.666 18.564 C 31.666 16.375 31.568 9.213 40.276 9.213 C 43.772 9.213 45.232 10.404 45.232 10.404 L 44.058 14.303 C 44.058 14.303 42.601 13.443 40.701 13.443 C 38.268 13.443 36.716 14.954 36.716 17.613 L 36.719 19.52 C 36.719 22.075 38.217 23.781 40.706 23.781 C 42.437 23.781 44.032 22.913 44.032 22.913 L 45.202 26.731 C 45.202 26.731 43.867 27.929 40.301 27.929 C 32.009 27.929 31.666 21.503 31.666 18.564 Z M 73.601 9.206 C 78.318 9.206 80.51 13.008 80.51 18.406 C 80.51 25.205 77.711 27.926 73.598 27.926 C 71.245 27.926 69.506 26.865 68.566 24.884 L 68.566 27.57 L 63.789 27.568 L 63.789 0.548 L 68.861 0.074 L 68.861 12.083 C 69.593 9.982 71.999 9.206 73.601 9.206 Z M 72.179 13.458 C 70.198 13.458 68.861 14.939 68.861 17.457 L 68.856 20.03 C 68.854 21.728 69.782 23.714 72.179 23.714 C 75.55 23.714 75.46 19.813 75.46 18.514 C 75.46 14.144 73.664 13.458 72.179 13.458 Z M 54.033 9.221 C 48.683 9.221 45.858 12.347 45.858 17.902 L 45.858 18.934 C 45.858 26.144 49.825 28 54.553 28 C 59.15 28 61.23 26.622 61.23 26.622 L 60.281 22.954 C 60.281 22.954 57.834 24.069 55.162 24.069 C 52.391 24.069 51.2 23.313 50.895 20.46 L 61.636 20.46 L 61.636 17.517 C 61.636 11.491 58.466 9.221 54.033 9.221 Z M 54.162 12.895 C 56.014 12.895 57.214 14.112 57.148 16.934 L 50.904 16.934 C 51.012 13.963 52.306 12.895 54.162 12.895 Z M 90.624 9.196 C 85.13 9.196 82.238 12.514 82.238 18.46 C 82.238 26.618 87.224 27.931 90.634 27.931 C 95.625 27.931 98.946 25.051 98.946 18.534 C 98.946 11.751 95.212 9.196 90.624 9.196 Z M 90.555 13.472 C 92.971 13.472 93.928 15.41 93.928 17.616 L 93.928 19.512 C 93.928 22.183 92.589 23.729 90.546 23.729 C 88.636 23.729 87.293 22.283 87.293 19.512 L 87.293 17.616 C 87.293 14.66 88.891 13.472 90.555 13.472 Z M 109.052 9.196 C 103.558 9.196 100.665 12.514 100.665 18.46 C 100.665 26.618 105.651 27.931 109.061 27.931 C 114.052 27.931 117.374 25.051 117.374 18.534 C 117.374 11.751 113.639 9.196 109.052 9.196 Z M 108.983 13.472 C 111.398 13.472 112.356 15.41 112.356 17.616 L 112.356 19.512 C 112.356 22.183 111.016 23.729 108.973 23.729 C 107.063 23.729 105.72 22.283 105.72 19.512 L 105.72 17.616 C 105.72 14.66 107.318 13.472 108.983 13.472 Z M 119.29 27.568 L 119.29 0.548 L 124.378 0.074 L 124.378 18.185 L 129.425 9.555 L 134.797 9.555 L 129.532 18.493 L 135 27.568 L 129.612 27.568 L 124.378 18.756 L 124.378 27.568 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:145060918}},baseVariant,gestureVariant)})})})})});});const css=['.framer-Ev2we[data-border=\"true\"]::after, .framer-Ev2we [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ev2we.framer-mdq9fz, .framer-Ev2we .framer-mdq9fz { display: block; }\",\".framer-Ev2we.framer-tkjwav { height: 28px; overflow: hidden; position: relative; width: 135px; }\",\".framer-Ev2we .framer-3ykx0i { flex: none; height: 28px; left: calc(49.629629629629655% - 135px / 2); position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 135px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tGhDaGx2c\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerVHN0EkVxR=withCSS(Component,css,\"framer-Ev2we\");export default FramerVHN0EkVxR;FramerVHN0EkVxR.displayName=\"Facebook\";FramerVHN0EkVxR.defaultProps={height:28,width:135};addPropertyControls(FramerVHN0EkVxR,{variant:{options:[\"HSXRVwv8C\",\"tGhDaGx2c\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVHN0EkVxR,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVHN0EkVxR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"135\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"28\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tGhDaGx2c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VHN0EkVxR.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Pq3F45iCZ\",\"COMPCCG2B\"];const serializationHash=\"framer-1bq97\";const variantClassNames={COMPCCG2B:\"framer-v-1efgzy3\",Pq3F45iCZ:\"framer-v-zhpok6\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Pq3F45iCZ\",\"Variant 2\":\"COMPCCG2B\"};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:\"Pq3F45iCZ\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Pq3F45iCZ\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zhpok6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Pq3F45iCZ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({COMPCCG2B:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-omzij9\",\"data-framer-name\":\"Netflix\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ueEiSpF4x\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 38\"><path d=\"M 132.511 18.088 L 140 38 C 137.793 37.683 135.587 37.287 133.341 36.93 L 129.122 25.927 L 124.787 36.021 C 122.659 35.664 120.569 35.545 118.441 35.268 L 126.048 17.851 L 119.149 0 L 125.535 0 L 129.397 9.974 L 133.536 0 L 139.999 0 Z M 114.106 0 L 108.312 0 L 108.312 34.517 C 110.204 34.636 112.174 34.714 114.106 34.951 Z M 103.306 34.12 C 98.025 33.764 92.743 33.449 87.344 33.329 L 87.344 0 L 93.255 0 L 93.255 27.708 C 96.646 27.787 100.034 28.063 103.306 28.221 Z M 81.036 13.499 L 81.036 19.436 L 72.957 19.436 L 72.957 32.933 L 67.124 32.933 L 67.124 0 L 83.678 0 L 83.678 5.937 L 72.958 5.937 L 72.958 13.499 L 81.037 13.499 Z M 57.191 5.937 L 57.191 33.25 C 55.219 33.25 53.21 33.25 51.278 33.329 L 51.278 5.937 L 45.169 5.937 L 45.169 0 L 63.338 0 L 63.338 5.937 Z M 38.784 19.751 C 36.183 19.751 33.108 19.751 30.901 19.872 L 30.901 28.698 C 34.37 28.459 37.838 28.183 41.345 28.064 L 41.345 33.764 L 24.99 35.071 L 24.99 0 L 41.344 0 L 41.344 5.937 L 30.901 5.937 L 30.901 13.933 C 33.188 13.933 36.695 13.814 38.784 13.814 L 38.784 19.752 Z M 6.029 16.426 L 6.029 37.168 C 3.902 37.406 2.009 37.683 -0 38 L -0 0 L 5.637 0 L 13.322 21.574 L 13.322 0 L 19.234 0 L 19.234 35.545 C 17.146 35.902 15.017 36.021 12.77 36.337 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:201210481,withExternalLayout:true,...addPropertyOverrides({COMPCCG2B:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 38\"><path d=\"M 132.511 18.088 L 140 38 C 137.793 37.683 135.587 37.287 133.341 36.93 L 129.122 25.927 L 124.787 36.021 C 122.659 35.664 120.569 35.545 118.441 35.268 L 126.048 17.851 L 119.149 0 L 125.535 0 L 129.397 9.974 L 133.536 0 L 139.999 0 Z M 114.106 0 L 108.312 0 L 108.312 34.517 C 110.204 34.636 112.174 34.714 114.106 34.951 Z M 103.306 34.12 C 98.025 33.764 92.743 33.449 87.344 33.329 L 87.344 0 L 93.255 0 L 93.255 27.708 C 96.646 27.787 100.034 28.063 103.306 28.221 Z M 81.036 13.499 L 81.036 19.436 L 72.957 19.436 L 72.957 32.933 L 67.124 32.933 L 67.124 0 L 83.678 0 L 83.678 5.937 L 72.958 5.937 L 72.958 13.499 L 81.037 13.499 Z M 57.191 5.937 L 57.191 33.25 C 55.219 33.25 53.21 33.25 51.278 33.329 L 51.278 5.937 L 45.169 5.937 L 45.169 0 L 63.338 0 L 63.338 5.937 Z M 38.784 19.751 C 36.183 19.751 33.108 19.751 30.901 19.872 L 30.901 28.698 C 34.37 28.459 37.838 28.183 41.345 28.064 L 41.345 33.764 L 24.99 35.071 L 24.99 0 L 41.344 0 L 41.344 5.937 L 30.901 5.937 L 30.901 13.933 C 33.188 13.933 36.695 13.814 38.784 13.814 L 38.784 19.752 Z M 6.029 16.426 L 6.029 37.168 C 3.902 37.406 2.009 37.683 -0 38 L -0 0 L 5.637 0 L 13.322 21.574 L 13.322 0 L 19.234 0 L 19.234 35.545 C 17.146 35.902 15.017 36.021 12.77 36.337 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:1258905645}},baseVariant,gestureVariant)})})})})});});const css=['.framer-1bq97[data-border=\"true\"]::after, .framer-1bq97 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1bq97.framer-arfe07, .framer-1bq97 .framer-arfe07 { display: block; }\",\".framer-1bq97.framer-zhpok6 { height: 38px; overflow: hidden; position: relative; width: 140px; }\",\".framer-1bq97 .framer-omzij9 { flex: none; height: 38px; left: calc(50.00000000000002% - 140px / 2); position: absolute; top: calc(50.00000000000002% - 38px / 2); width: 140px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"COMPCCG2B\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerwl2vCmpqj=withCSS(Component,css,\"framer-1bq97\");export default Framerwl2vCmpqj;Framerwl2vCmpqj.displayName=\"Netflix\";Framerwl2vCmpqj.defaultProps={height:38,width:140};addPropertyControls(Framerwl2vCmpqj,{variant:{options:[\"Pq3F45iCZ\",\"COMPCCG2B\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerwl2vCmpqj,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwl2vCmpqj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"COMPCCG2B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wl2vCmpqj.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"uPkPzk6YC\",\"h_S3L09iF\"];const serializationHash=\"framer-yGJVn\";const variantClassNames={h_S3L09iF:\"framer-v-xsu0g3\",uPkPzk6YC:\"framer-v-1hamfyk\"};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 transitions={default:{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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"uPkPzk6YC\",\"Variant 2\":\"h_S3L09iF\"};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:\"uPkPzk6YC\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"uPkPzk6YC\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hamfyk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uPkPzk6YC\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({h_S3L09iF:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vfe5oa\",\"data-framer-name\":\"Stripe\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gRorimreh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 44\"><g transform=\"translate(0 0.156)\" id=\"ss3728920687_1\"><path d=\"M 11.069 19.765 C 8.787 18.921 7.536 18.264 7.536 17.232 C 7.536 16.356 8.255 15.856 9.537 15.856 C 11.882 15.856 14.29 16.763 15.947 17.576 L 16.885 11.79 C 15.572 11.165 12.883 10.133 9.162 10.133 C 6.535 10.133 4.346 10.821 2.783 12.103 C 1.157 13.448 0.313 15.387 0.313 17.732 C 0.313 21.985 2.908 23.799 7.129 25.332 C 9.85 26.301 10.756 26.989 10.756 28.053 C 10.756 29.085 9.881 29.679 8.286 29.679 C 6.316 29.679 3.064 28.709 0.938 27.458 L 0 33.307 C 1.813 34.339 5.19 35.402 8.693 35.402 C 11.475 35.402 13.789 34.745 15.353 33.494 C 17.104 32.118 18.011 30.085 18.011 27.458 C 18.011 23.111 15.353 21.297 11.069 19.765 Z M 33.281 16.356 L 34.219 10.602 L 29.267 10.602 L 29.267 3.616 L 22.609 4.712 L 21.647 10.602 L 19.306 10.982 L 18.429 16.356 L 21.638 16.356 L 21.638 27.646 C 21.638 30.586 22.388 32.619 23.92 33.869 C 25.202 34.902 27.047 35.402 29.642 35.402 C 31.644 35.402 32.863 35.058 33.707 34.839 L 33.707 28.741 C 33.238 28.866 32.175 29.085 31.456 29.085 C 29.924 29.085 29.267 28.303 29.267 26.52 L 29.267 16.356 Z M 48.153 10.266 C 45.965 10.266 44.213 11.415 43.526 13.479 L 43.057 10.602 L 36.271 10.602 L 36.271 34.933 L 44.026 34.933 L 44.026 19.14 C 44.995 17.951 46.371 17.521 48.247 17.521 C 48.654 17.521 49.091 17.521 49.623 17.615 L 49.623 10.453 C 49.091 10.328 48.622 10.266 48.153 10.266 Z M 55.408 8.194 C 57.659 8.194 59.473 6.349 59.473 4.097 C 59.473 1.814 57.659 0 55.408 0 C 53.125 0 51.312 1.814 51.312 4.097 C 51.312 6.349 53.125 8.194 55.408 8.194 Z M 51.499 10.602 L 59.285 10.602 L 59.285 34.933 L 51.499 34.933 Z M 81.349 12.791 C 79.973 11.008 78.065 10.133 75.627 10.133 C 73.375 10.133 71.405 11.071 69.56 13.041 L 69.154 10.602 L 62.337 10.602 L 62.337 43.94 L 70.092 42.657 L 70.092 34.839 C 71.28 35.214 72.5 35.402 73.594 35.402 C 75.533 35.402 78.347 34.902 80.536 32.525 C 82.631 30.242 83.694 26.708 83.694 22.048 C 83.694 17.92 82.912 14.793 81.349 12.791 Z M 74.907 27.802 C 74.282 28.991 73.313 29.616 72.187 29.616 C 71.405 29.616 70.717 29.46 70.092 29.147 L 70.092 17.576 C 71.405 16.2 72.593 16.043 73.031 16.043 C 75.001 16.043 75.97 18.17 75.97 22.329 C 75.97 24.706 75.627 26.551 74.907 27.802 Z M 105.926 22.548 C 105.926 18.67 105.081 15.606 103.424 13.448 C 101.736 11.259 99.203 10.133 95.982 10.133 C 89.384 10.133 85.288 15.011 85.288 22.83 C 85.288 27.208 86.383 30.492 88.54 32.587 C 90.479 34.464 93.262 35.402 96.858 35.402 C 100.172 35.402 103.236 34.62 105.175 33.338 L 104.331 28.021 C 102.423 29.053 100.204 29.616 97.702 29.616 C 96.201 29.616 95.169 29.303 94.419 28.647 C 93.606 27.959 93.137 26.833 92.981 25.238 L 105.832 25.238 C 105.863 24.863 105.926 23.111 105.926 22.548 Z M 92.918 20.484 C 93.137 17.013 94.075 15.387 95.857 15.387 C 97.608 15.387 98.515 17.044 98.64 20.484 Z\" fill=\"rgb(26,25,24)\"></path></g></svg>',svgContentId:3728920687,withExternalLayout:true,...addPropertyOverrides({h_S3L09iF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 44\"><g transform=\"translate(0 0.156)\" id=\"ss2541883004_1\"><path d=\"M 11.069 19.765 C 8.787 18.921 7.536 18.264 7.536 17.232 C 7.536 16.356 8.255 15.856 9.537 15.856 C 11.882 15.856 14.29 16.763 15.947 17.576 L 16.885 11.79 C 15.572 11.165 12.883 10.133 9.162 10.133 C 6.535 10.133 4.346 10.821 2.783 12.103 C 1.157 13.448 0.313 15.387 0.313 17.732 C 0.313 21.985 2.908 23.799 7.129 25.332 C 9.85 26.301 10.756 26.989 10.756 28.053 C 10.756 29.085 9.881 29.679 8.286 29.679 C 6.316 29.679 3.064 28.709 0.938 27.458 L 0 33.307 C 1.813 34.339 5.19 35.402 8.693 35.402 C 11.475 35.402 13.789 34.745 15.353 33.494 C 17.104 32.118 18.011 30.085 18.011 27.458 C 18.011 23.111 15.353 21.297 11.069 19.765 Z M 33.281 16.356 L 34.219 10.602 L 29.267 10.602 L 29.267 3.616 L 22.609 4.712 L 21.647 10.602 L 19.306 10.982 L 18.429 16.356 L 21.638 16.356 L 21.638 27.646 C 21.638 30.586 22.388 32.619 23.92 33.869 C 25.202 34.902 27.047 35.402 29.642 35.402 C 31.644 35.402 32.863 35.058 33.707 34.839 L 33.707 28.741 C 33.238 28.866 32.175 29.085 31.456 29.085 C 29.924 29.085 29.267 28.303 29.267 26.52 L 29.267 16.356 Z M 48.153 10.266 C 45.965 10.266 44.213 11.415 43.526 13.479 L 43.057 10.602 L 36.271 10.602 L 36.271 34.933 L 44.026 34.933 L 44.026 19.14 C 44.995 17.951 46.371 17.521 48.247 17.521 C 48.654 17.521 49.091 17.521 49.623 17.615 L 49.623 10.453 C 49.091 10.328 48.622 10.266 48.153 10.266 Z M 55.408 8.194 C 57.659 8.194 59.473 6.349 59.473 4.097 C 59.473 1.814 57.659 0 55.408 0 C 53.125 0 51.312 1.814 51.312 4.097 C 51.312 6.349 53.125 8.194 55.408 8.194 Z M 51.499 10.602 L 59.285 10.602 L 59.285 34.933 L 51.499 34.933 Z M 81.349 12.791 C 79.973 11.008 78.065 10.133 75.627 10.133 C 73.375 10.133 71.405 11.071 69.56 13.041 L 69.154 10.602 L 62.337 10.602 L 62.337 43.94 L 70.092 42.657 L 70.092 34.839 C 71.28 35.214 72.5 35.402 73.594 35.402 C 75.533 35.402 78.347 34.902 80.536 32.525 C 82.631 30.242 83.694 26.708 83.694 22.048 C 83.694 17.92 82.912 14.793 81.349 12.791 Z M 74.907 27.802 C 74.282 28.991 73.313 29.616 72.187 29.616 C 71.405 29.616 70.717 29.46 70.092 29.147 L 70.092 17.576 C 71.405 16.2 72.593 16.043 73.031 16.043 C 75.001 16.043 75.97 18.17 75.97 22.329 C 75.97 24.706 75.627 26.551 74.907 27.802 Z M 105.926 22.548 C 105.926 18.67 105.081 15.606 103.424 13.448 C 101.736 11.259 99.203 10.133 95.982 10.133 C 89.384 10.133 85.288 15.011 85.288 22.83 C 85.288 27.208 86.383 30.492 88.54 32.587 C 90.479 34.464 93.262 35.402 96.858 35.402 C 100.172 35.402 103.236 34.62 105.175 33.338 L 104.331 28.021 C 102.423 29.053 100.204 29.616 97.702 29.616 C 96.201 29.616 95.169 29.303 94.419 28.647 C 93.606 27.959 93.137 26.833 92.981 25.238 L 105.832 25.238 C 105.863 24.863 105.926 23.111 105.926 22.548 Z M 92.918 20.484 C 93.137 17.013 94.075 15.387 95.857 15.387 C 97.608 15.387 98.515 17.044 98.64 20.484 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:2541883004}},baseVariant,gestureVariant)})})})})});});const css=['.framer-yGJVn[data-border=\"true\"]::after, .framer-yGJVn [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yGJVn.framer-4eq2ni, .framer-yGJVn .framer-4eq2ni { display: block; }\",\".framer-yGJVn.framer-1hamfyk { height: 44px; overflow: hidden; position: relative; width: 106px; }\",\".framer-yGJVn .framer-vfe5oa { flex: none; height: 44px; left: calc(50.00000000000002% - 106px / 2); position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 106px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h_S3L09iF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerYkE7wbtF4=withCSS(Component,css,\"framer-yGJVn\");export default FramerYkE7wbtF4;FramerYkE7wbtF4.displayName=\"Stripe\";FramerYkE7wbtF4.defaultProps={height:44,width:106};addPropertyControls(FramerYkE7wbtF4,{variant:{options:[\"uPkPzk6YC\",\"h_S3L09iF\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYkE7wbtF4,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYkE7wbtF4\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"106\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h_S3L09iF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"44\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YkE7wbtF4.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Palantir from\"https://framerusercontent.com/modules/B3iLfnsNtRMfPOGqNK47/2ML7580SGgXM1QCverVa/b35N7d7Na.js\";import Coinbase from\"https://framerusercontent.com/modules/gqKtEwCYo4zOM8EeUESD/2PDYaQ0Y4pB2ztBahyHA/fweDWpDlc.js\";import Microsoft from\"https://framerusercontent.com/modules/JUJJ82q8dkBwS1oZtJ4X/4PkIR5L0FdS2sIqd0qhH/Pk0Wg3PIZ.js\";import Facebook from\"https://framerusercontent.com/modules/G1UFaKdRJlD3gfMoCGUk/PHZvOJzA9ctRfKTv19Uk/VHN0EkVxR.js\";import Netflix from\"https://framerusercontent.com/modules/NkiEEnaDliHGtbUfWuqM/PKE76u9IvOX8j3ewMFmY/wl2vCmpqj.js\";import Stripe from\"https://framerusercontent.com/modules/Mp5eK5yTLNkZUhI6jN0A/8kmu6rOt0aYz4VSBPRhn/YkE7wbtF4.js\";const FacebookFonts=getFonts(Facebook);const PalantirFonts=getFonts(Palantir);const CoinbaseFonts=getFonts(Coinbase);const MicrosoftFonts=getFonts(Microsoft);const NetflixFonts=getFonts(Netflix);const TickerFonts=getFonts(Ticker);const StripeFonts=getFonts(Stripe);const cycleOrder=[\"CnAdFGoog\",\"b28MyQMkO\",\"l2WtEFHVe\"];const serializationHash=\"framer-uIjWy\";const variantClassNames={b28MyQMkO:\"framer-v-1mudbjs\",CnAdFGoog:\"framer-v-5mnijk\",l2WtEFHVe:\"framer-v-k1ot4c\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"CnAdFGoog\",\"Variant 2\":\"b28MyQMkO\",\"Variant 3\":\"l2WtEFHVe\"};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:\"CnAdFGoog\"};};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:\"CnAdFGoog\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"l2WtEFHVe\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"l2WtEFHVe\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-5mnijk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CnAdFGoog\",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:\"var(--token-2d999229-effc-4b64-8405-e113bd3f5817, rgb(73, 22, 224))\",...style},variants:{b28MyQMkO:{backgroundColor:\"rgb(0, 0, 0)\"},l2WtEFHVe:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({b28MyQMkO:{\"data-framer-name\":\"Variant 2\"},l2WtEFHVe:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-150qfef-container\",\"data-framer-name\":\"logos\",layoutDependency:layoutDependency,layoutId:\"H2MOu4oUQ-container\",name:\"logos\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:18,overflow:false},gap:128,height:\"100%\",hoverFactor:.5,id:\"H2MOu4oUQ\",layoutId:\"H2MOu4oUQ\",name:\"logos\",padding:64,paddingBottom:64,paddingLeft:64,paddingPerSide:false,paddingRight:64,paddingTop:64,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rusru0-container\",layoutDependency:layoutDependency,layoutId:\"NbsvF2chU-container\",children:/*#__PURE__*/_jsx(Facebook,{height:\"100%\",id:\"NbsvF2chU\",layoutId:\"NbsvF2chU\",style:{height:\"100%\",width:\"100%\"},variant:\"tGhDaGx2c\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gu57k8\",\"data-framer-name\":\"Apple\",layoutDependency:layoutDependency,layoutId:\"xK7uCEleo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ipj2xq\",\"data-framer-name\":\"Apple\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nTaV9v7oM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 127 44\"><path d=\"M 29.534 23.38 C 29.481 17.812 34.024 15.137 34.228 15.01 C 31.671 11.226 27.7 10.705 26.285 10.647 C 22.906 10.297 19.689 12.664 17.971 12.664 C 16.252 12.664 13.606 10.695 10.803 10.753 C 7.115 10.806 3.715 12.924 1.813 16.268 C -2.012 22.987 0.838 32.966 4.574 38.427 C 6.402 41.097 8.571 44.106 11.432 43.995 C 14.188 43.883 15.225 42.19 18.547 42.19 C 21.869 42.19 22.807 43.995 25.714 43.942 C 28.675 43.883 30.55 41.214 32.363 38.533 C 34.448 35.428 35.313 32.429 35.365 32.27 C 35.297 32.244 29.597 30.03 29.534 23.38 M 24.069 7.027 C 25.589 5.164 26.61 2.579 26.333 0 C 24.148 0.09 21.502 1.476 19.935 3.338 C 18.531 4.984 17.3 7.616 17.635 10.143 C 20.061 10.334 22.555 8.885 24.069 7.027 M 48.694 28.852 L 46.179 36.575 L 42.946 36.575 L 51.177 12.032 L 54.95 12.032 L 63.212 36.575 L 59.869 36.575 L 57.281 28.852 Z M 56.637 26.373 L 54.268 19.309 C 53.729 17.706 53.372 16.252 53.011 14.829 L 52.943 14.829 C 52.581 16.284 52.188 17.775 51.722 19.272 L 49.354 26.368 Z M 65.664 24.702 C 65.664 22.446 65.596 20.62 65.517 18.948 L 68.357 18.948 L 68.504 21.973 L 68.572 21.973 C 69.866 19.824 71.914 18.55 74.754 18.55 C 78.961 18.55 82.12 22.154 82.12 27.509 C 82.12 33.847 78.311 36.973 74.214 36.973 C 71.914 36.973 69.902 35.954 68.86 34.207 L 68.792 34.207 L 68.792 43.782 L 65.664 43.782 Z M 68.786 29.399 C 68.786 29.876 68.855 30.306 68.933 30.71 C 69.509 32.928 71.411 34.462 73.68 34.462 C 77.023 34.462 78.966 31.697 78.966 27.653 C 78.966 24.118 77.133 21.103 73.79 21.103 C 71.637 21.103 69.625 22.669 69.006 25.073 C 68.896 25.471 68.792 25.949 68.792 26.384 Z M 85.39 24.702 C 85.39 22.446 85.322 20.62 85.243 18.948 L 88.083 18.948 L 88.229 21.973 L 88.297 21.973 C 89.592 19.824 91.64 18.55 94.48 18.55 C 98.687 18.55 101.846 22.154 101.846 27.509 C 101.846 33.847 98.037 36.973 93.94 36.973 C 91.64 36.973 89.628 35.954 88.586 34.207 L 88.518 34.207 L 88.518 43.782 L 85.39 43.782 Z M 88.518 29.399 C 88.518 29.876 88.586 30.306 88.664 30.71 C 89.241 32.928 91.142 34.462 93.411 34.462 C 96.754 34.462 98.697 31.697 98.697 27.653 C 98.697 24.118 96.864 21.103 93.521 21.103 C 91.368 21.103 89.356 22.669 88.738 25.073 C 88.628 25.471 88.523 25.949 88.523 26.384 Z M 105.121 10.721 L 108.285 10.721 L 108.285 36.569 L 105.121 36.569 Z M 114.646 28.343 C 114.714 32.674 117.449 34.462 120.608 34.462 C 122.871 34.462 124.239 34.064 125.423 33.555 L 125.963 35.848 C 124.852 36.357 122.945 36.941 120.178 36.941 C 114.824 36.941 111.623 33.374 111.623 28.056 C 111.623 22.738 114.714 18.55 119.78 18.55 C 125.46 18.55 126.969 23.608 126.969 26.851 C 126.969 27.509 126.9 28.014 126.859 28.343 Z M 123.919 26.05 C 123.956 24.012 123.091 20.843 119.534 20.843 C 116.333 20.843 114.934 23.831 114.682 26.05 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:285172828,withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3pzh7-container\",layoutDependency:layoutDependency,layoutId:\"Lm47TnR4k-container\",children:/*#__PURE__*/_jsx(Palantir,{height:\"100%\",id:\"Lm47TnR4k\",layoutId:\"Lm47TnR4k\",style:{height:\"100%\",width:\"100%\"},variant:\"NFw7FzpI3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bivpp3-container\",layoutDependency:layoutDependency,layoutId:\"CX0wGIpNx-container\",children:/*#__PURE__*/_jsx(Coinbase,{height:\"100%\",id:\"CX0wGIpNx\",layoutId:\"CX0wGIpNx\",style:{height:\"100%\",width:\"100%\"},variant:\"DPUT3Lisz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbsrv1-container\",layoutDependency:layoutDependency,layoutId:\"ja0uVJ5Ra-container\",children:/*#__PURE__*/_jsx(Microsoft,{height:\"100%\",id:\"ja0uVJ5Ra\",layoutId:\"ja0uVJ5Ra\",style:{height:\"100%\",width:\"100%\"},variant:\"vY5e1Vf0d\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t3142f\",\"data-framer-name\":\"google\",layoutDependency:layoutDependency,layoutId:\"dewu4DF6A\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dp52cg\",\"data-framer-name\":\"$1Google\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Fw3UflOFx\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 47\"><g id=\"ss2623291855_1\"><path d=\"M 0 0 L 145 0 L 145 47 L 0 47 Z\" fill=\"transparent\"></path><path d=\"M 21.289 36.456 C 11.228 36.456 2.773 28.28 2.773 18.228 C 2.773 8.178 11.228 0 21.289 0 C 26.851 0 30.808 2.175 33.797 5.017 L 30.269 8.542 C 28.139 6.542 25.245 4.986 21.273 4.986 C 13.93 4.986 8.192 10.892 8.192 18.228 C 8.192 25.564 13.93 31.47 21.273 31.47 C 26.04 31.47 28.742 29.566 30.491 27.819 C 31.92 26.39 32.843 24.358 33.209 21.547 L 21.289 21.547 L 21.289 16.672 L 38.056 16.672 C 38.231 17.561 38.326 18.514 38.326 19.673 C 38.326 23.405 37.308 28.025 34.003 31.328 C 30.808 34.678 26.708 36.456 21.289 36.456 Z M 64.041 24.722 C 64.041 31.487 58.764 36.456 52.28 36.456 C 45.796 36.456 40.519 31.47 40.519 24.722 C 40.519 17.927 45.796 12.989 52.28 12.989 C 58.764 12.989 64.041 17.911 64.041 24.722 Z M 58.892 24.722 C 58.892 20.498 55.824 17.609 52.28 17.609 C 48.736 17.609 45.669 20.498 45.669 24.722 C 45.669 28.898 48.736 31.836 52.28 31.836 C 55.824 31.836 58.892 28.898 58.892 24.722 Z M 89.471 24.722 C 89.471 31.487 84.194 36.456 77.71 36.456 C 71.224 36.456 65.949 31.47 65.949 24.722 C 65.949 17.927 71.224 12.989 77.71 12.989 C 84.194 12.989 89.471 17.911 89.471 24.722 Z M 84.321 24.722 C 84.321 20.498 81.254 17.609 77.71 17.609 C 74.165 17.609 71.098 20.498 71.098 24.722 C 71.098 28.898 74.165 31.836 77.71 31.836 C 81.254 31.836 84.321 28.898 84.321 24.722 Z M 113.468 13.687 L 113.468 34.774 C 113.468 43.444 108.351 47 102.296 47 C 96.606 47 93.173 43.173 91.886 40.061 L 96.384 38.187 C 97.178 40.092 99.149 42.364 102.296 42.364 C 106.174 42.364 108.575 39.966 108.575 35.472 L 108.575 33.789 L 108.399 33.789 C 107.239 35.219 105.014 36.456 102.217 36.456 C 96.337 36.456 91.218 31.344 91.218 24.77 C 91.218 18.148 96.337 12.989 102.217 12.989 C 105.014 12.989 107.239 14.227 108.399 15.608 L 108.575 15.608 L 108.575 13.703 L 113.468 13.703 Z M 108.923 24.77 C 108.923 20.642 106.158 17.609 102.646 17.609 C 99.086 17.609 96.368 20.627 96.368 24.77 C 96.368 28.867 99.086 31.836 102.646 31.836 C 106.174 31.836 108.923 28.852 108.923 24.77 Z M 121.416 1.239 L 121.416 35.742 L 116.251 35.742 L 116.251 1.239 Z M 140.742 28.581 L 144.748 31.248 C 143.459 33.155 140.344 36.456 134.957 36.456 C 128.283 36.456 123.291 31.297 123.291 24.722 C 123.291 17.736 128.314 12.989 134.37 12.989 C 140.472 12.989 143.443 17.831 144.428 20.451 L 144.97 21.784 L 129.267 28.28 C 130.475 30.63 132.334 31.836 134.957 31.836 C 137.578 31.836 139.407 30.55 140.742 28.581 Z M 128.409 24.358 L 138.914 20.006 C 138.341 18.545 136.593 17.514 134.559 17.514 C 131.921 17.514 128.283 19.833 128.409 24.358 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:2623291855,withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xnzeeo-container\",layoutDependency:layoutDependency,layoutId:\"CDtUXbT4G-container\",children:/*#__PURE__*/_jsx(Netflix,{height:\"100%\",id:\"CDtUXbT4G\",layoutId:\"CDtUXbT4G\",style:{height:\"100%\",width:\"100%\"},variant:\"COMPCCG2B\",width:\"100%\"})})})],speed:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pbdinh-container\",\"data-framer-name\":\"logos\",layoutDependency:layoutDependency,layoutId:\"BoFYatbke-container\",name:\"logos\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:128,height:\"100%\",hoverFactor:.5,id:\"BoFYatbke\",layoutId:\"BoFYatbke\",name:\"logos\",padding:64,paddingBottom:64,paddingLeft:64,paddingPerSide:false,paddingRight:64,paddingTop:64,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i4pz6m-container\",layoutDependency:layoutDependency,layoutId:\"xkMR2S2oF-container\",children:/*#__PURE__*/_jsx(Facebook,{height:\"100%\",id:\"xkMR2S2oF\",layoutId:\"xkMR2S2oF\",style:{height:\"100%\",width:\"100%\"},variant:\"HSXRVwv8C\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t26d3j\",\"data-framer-name\":\"Apple\",layoutDependency:layoutDependency,layoutId:\"re7UkVtQt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ewh3nn\",\"data-framer-name\":\"Apple\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WcLrNnQWE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 127 44\"><path d=\"M 29.534 23.38 C 29.481 17.812 34.024 15.137 34.228 15.01 C 31.671 11.226 27.7 10.705 26.285 10.647 C 22.906 10.297 19.689 12.664 17.971 12.664 C 16.252 12.664 13.606 10.695 10.803 10.753 C 7.115 10.806 3.715 12.924 1.813 16.268 C -2.012 22.987 0.838 32.966 4.574 38.427 C 6.402 41.097 8.571 44.106 11.432 43.995 C 14.188 43.883 15.225 42.19 18.547 42.19 C 21.869 42.19 22.807 43.995 25.714 43.942 C 28.675 43.883 30.55 41.214 32.363 38.533 C 34.448 35.428 35.313 32.429 35.365 32.27 C 35.297 32.244 29.597 30.03 29.534 23.38 M 24.069 7.027 C 25.589 5.164 26.61 2.579 26.333 0 C 24.148 0.09 21.502 1.476 19.935 3.338 C 18.531 4.984 17.3 7.616 17.635 10.143 C 20.061 10.334 22.555 8.885 24.069 7.027 M 48.694 28.852 L 46.179 36.575 L 42.946 36.575 L 51.177 12.032 L 54.95 12.032 L 63.212 36.575 L 59.869 36.575 L 57.281 28.852 Z M 56.637 26.373 L 54.268 19.309 C 53.729 17.706 53.372 16.252 53.011 14.829 L 52.943 14.829 C 52.581 16.284 52.188 17.775 51.722 19.272 L 49.354 26.368 Z M 65.664 24.702 C 65.664 22.446 65.596 20.62 65.517 18.948 L 68.357 18.948 L 68.504 21.973 L 68.572 21.973 C 69.866 19.824 71.914 18.55 74.754 18.55 C 78.961 18.55 82.12 22.154 82.12 27.509 C 82.12 33.847 78.311 36.973 74.214 36.973 C 71.914 36.973 69.902 35.954 68.86 34.207 L 68.792 34.207 L 68.792 43.782 L 65.664 43.782 Z M 68.786 29.399 C 68.786 29.876 68.855 30.306 68.933 30.71 C 69.509 32.928 71.411 34.462 73.68 34.462 C 77.023 34.462 78.966 31.697 78.966 27.653 C 78.966 24.118 77.133 21.103 73.79 21.103 C 71.637 21.103 69.625 22.669 69.006 25.073 C 68.896 25.471 68.792 25.949 68.792 26.384 Z M 85.39 24.702 C 85.39 22.446 85.322 20.62 85.243 18.948 L 88.083 18.948 L 88.229 21.973 L 88.297 21.973 C 89.592 19.824 91.64 18.55 94.48 18.55 C 98.687 18.55 101.846 22.154 101.846 27.509 C 101.846 33.847 98.037 36.973 93.94 36.973 C 91.64 36.973 89.628 35.954 88.586 34.207 L 88.518 34.207 L 88.518 43.782 L 85.39 43.782 Z M 88.518 29.399 C 88.518 29.876 88.586 30.306 88.664 30.71 C 89.241 32.928 91.142 34.462 93.411 34.462 C 96.754 34.462 98.697 31.697 98.697 27.653 C 98.697 24.118 96.864 21.103 93.521 21.103 C 91.368 21.103 89.356 22.669 88.738 25.073 C 88.628 25.471 88.523 25.949 88.523 26.384 Z M 105.121 10.721 L 108.285 10.721 L 108.285 36.569 L 105.121 36.569 Z M 114.646 28.343 C 114.714 32.674 117.449 34.462 120.608 34.462 C 122.871 34.462 124.239 34.064 125.423 33.555 L 125.963 35.848 C 124.852 36.357 122.945 36.941 120.178 36.941 C 114.824 36.941 111.623 33.374 111.623 28.056 C 111.623 22.738 114.714 18.55 119.78 18.55 C 125.46 18.55 126.969 23.608 126.969 26.851 C 126.969 27.509 126.9 28.014 126.859 28.343 Z M 123.919 26.05 C 123.956 24.012 123.091 20.843 119.534 20.843 C 116.333 20.843 114.934 23.831 114.682 26.05 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:625377366,withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ypo9jv-container\",layoutDependency:layoutDependency,layoutId:\"ndDfoM8nm-container\",children:/*#__PURE__*/_jsx(Stripe,{height:\"100%\",id:\"ndDfoM8nm\",layoutId:\"ndDfoM8nm\",style:{height:\"100%\",width:\"100%\"},variant:\"uPkPzk6YC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggbyld-container\",layoutDependency:layoutDependency,layoutId:\"JAyGx7si_-container\",children:/*#__PURE__*/_jsx(Palantir,{height:\"100%\",id:\"JAyGx7si_\",layoutId:\"JAyGx7si_\",style:{height:\"100%\",width:\"100%\"},variant:\"yqqU1qzJk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-125sp6b-container\",layoutDependency:layoutDependency,layoutId:\"Bj8k23DHV-container\",children:/*#__PURE__*/_jsx(Coinbase,{height:\"100%\",id:\"Bj8k23DHV\",layoutId:\"Bj8k23DHV\",style:{height:\"100%\",width:\"100%\"},variant:\"IJqf1AIEs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lk6p6c-container\",layoutDependency:layoutDependency,layoutId:\"ZBBQpOhjw-container\",children:/*#__PURE__*/_jsx(Microsoft,{height:\"100%\",id:\"ZBBQpOhjw\",layoutId:\"ZBBQpOhjw\",style:{height:\"100%\",width:\"100%\"},variant:\"FUZMBQM4a\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o1c1yb\",\"data-framer-name\":\"google\",layoutDependency:layoutDependency,layoutId:\"Eq2rVvgCn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fot6eq\",\"data-framer-name\":\"$1Google\",fill:\"black\",intrinsicHeight:377,intrinsicWidth:1162,layoutDependency:layoutDependency,layoutId:\"Nk64wjwBA\",svg:'<svg width=\"1162\" height=\"377\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M170.602 292.426c-80.626 0-148.381-65.587-148.381-146.213C22.22 65.598 89.976 0 170.602 0c44.58 0 76.29 17.447 100.24 40.245L242.567 68.52c-17.07-16.044-40.255-28.527-72.091-28.527-58.843 0-104.827 47.377-104.827 106.22 0 58.844 45.984 106.22 104.827 106.22 38.203 0 59.859-15.279 73.871-29.291 11.457-11.457 18.85-27.762 21.782-50.308h-95.527V133.73h134.369c1.403 7.132 2.168 14.777 2.168 24.076 0 29.93-8.158 66.991-34.642 93.485-25.605 26.872-58.467 41.135-101.895 41.135Zm342.609-94.124c0 54.267-42.287 94.124-94.25 94.124s-94.25-39.993-94.25-94.124c0-54.508 42.287-94.114 94.25-94.114s94.25 39.48 94.25 94.114Zm-41.26 0c0-33.878-24.589-57.053-52.99-57.053-28.401 0-52.979 23.175-52.979 57.053 0 33.5 24.578 57.063 52.979 57.063s52.99-23.563 52.99-57.063Zm245.05 0c0 54.267-42.287 94.124-94.25 94.124-51.974 0-94.25-39.993-94.25-94.124 0-54.508 42.276-94.114 94.25-94.114 51.963 0 94.25 39.48 94.25 94.114Zm-41.271 0c0-33.878-24.579-57.053-52.979-57.053-28.412 0-52.99 23.175-52.99 57.053 0 33.5 24.578 57.063 52.99 57.063 28.4 0 52.979-23.563 52.979-57.063Zm233.582-88.511v169.137c0 69.546-41.009 98.072-89.537 98.072-45.596 0-73.107-30.694-83.422-55.66l36.046-15.028c6.367 15.279 22.159 33.501 47.376 33.501 31.081 0 50.319-19.237 50.319-55.283v-13.499h-1.403c-9.3 11.468-27.134 21.395-49.544 21.395-47.125 0-88.145-41.009-88.145-93.737 0-53.115 41.02-94.501 88.145-94.501 22.41 0 40.244 9.928 49.544 21.007h1.403v-15.279h39.218v-.125Zm-36.422 88.898c0-33.113-22.159-57.44-50.309-57.44-28.526 0-50.308 24.202-50.308 57.44 0 32.862 21.782 56.676 50.308 56.676 28.275 0 50.309-23.939 50.309-56.676ZM973.005 9.938v276.76h-41.397V9.938h41.397Zm154.875 219.32 32.1 21.394c-10.33 15.29-35.29 41.774-78.46 41.774-53.49 0-93.488-41.386-93.488-94.124 0-56.037 40.248-94.114 88.778-94.114 48.9 0 72.71 38.841 80.61 59.859l4.34 10.692-125.84 52.1c9.68 18.85 24.58 28.526 45.6 28.526 21 0 35.66-10.315 46.36-26.107Zm-98.84-33.878 84.19-34.904c-4.59-11.718-18.6-19.991-34.9-19.991-21.14 0-50.3 18.598-49.29 54.895Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h1162v377H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pf86b-container\",layoutDependency:layoutDependency,layoutId:\"PljaFNQjP-container\",children:/*#__PURE__*/_jsx(Netflix,{height:\"100%\",id:\"PljaFNQjP\",layoutId:\"PljaFNQjP\",style:{height:\"100%\",width:\"100%\"},variant:\"Pq3F45iCZ\",width:\"100%\"})})})],speed:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uIjWy.framer-183doqn, .framer-uIjWy .framer-183doqn { display: block; }\",\".framer-uIjWy.framer-5mnijk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 128px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-uIjWy .framer-150qfef-container { bottom: 0px; flex: none; left: 0px; max-width: 2200px; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-uIjWy .framer-1rusru0-container, .framer-uIjWy .framer-i4pz6m-container { height: 28px; position: relative; width: 135px; }\",\".framer-uIjWy .framer-1gu57k8, .framer-uIjWy .framer-t26d3j { height: 44px; overflow: hidden; position: relative; width: 127px; }\",\".framer-uIjWy .framer-ipj2xq, .framer-uIjWy .framer-1ewh3nn { flex: none; height: 44px; left: calc(49.60629921259845% - 127px / 2); position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 127px; }\",\".framer-uIjWy .framer-l3pzh7-container, .framer-uIjWy .framer-1ggbyld-container { height: 36px; position: relative; width: 146px; }\",\".framer-uIjWy .framer-bivpp3-container, .framer-uIjWy .framer-125sp6b-container { height: 26px; position: relative; width: 145px; }\",\".framer-uIjWy .framer-dbsrv1-container, .framer-uIjWy .framer-lk6p6c-container { height: 31px; position: relative; width: 146px; }\",\".framer-uIjWy .framer-t3142f, .framer-uIjWy .framer-o1c1yb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 145px; }\",\".framer-uIjWy .framer-1dp52cg { flex: none; height: 47px; position: relative; width: 145px; }\",\".framer-uIjWy .framer-xnzeeo-container, .framer-uIjWy .framer-7pf86b-container { height: 38px; position: relative; width: 140px; }\",\".framer-uIjWy .framer-pbdinh-container { flex: 1 0 0px; height: 128px; max-width: 2200px; position: relative; width: 1px; }\",\".framer-uIjWy .framer-1ypo9jv-container { height: 44px; position: relative; width: 106px; }\",\".framer-uIjWy .framer-fot6eq { aspect-ratio: 3.0822281167108754 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 145px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uIjWy.framer-5mnijk, .framer-uIjWy .framer-t3142f, .framer-uIjWy .framer-o1c1yb { gap: 0px; } .framer-uIjWy.framer-5mnijk > *, .framer-uIjWy .framer-t3142f > *, .framer-uIjWy .framer-o1c1yb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uIjWy.framer-5mnijk > :first-child, .framer-uIjWy .framer-t3142f > :first-child, .framer-uIjWy .framer-o1c1yb > :first-child { margin-left: 0px; } .framer-uIjWy.framer-5mnijk > :last-child, .framer-uIjWy .framer-t3142f > :last-child, .framer-uIjWy .framer-o1c1yb > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 128\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"b28MyQMkO\":{\"layout\":[\"fixed\",\"fixed\"]},\"l2WtEFHVe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruIbaznLnR=withCSS(Component,css,\"framer-uIjWy\");export default FrameruIbaznLnR;FrameruIbaznLnR.displayName=\"logos\";FrameruIbaznLnR.defaultProps={height:128,width:1200};addPropertyControls(FrameruIbaznLnR,{variant:{options:[\"CnAdFGoog\",\"b28MyQMkO\",\"l2WtEFHVe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruIbaznLnR,[{explicitInter:true,fonts:[]},...FacebookFonts,...PalantirFonts,...CoinbaseFonts,...MicrosoftFonts,...NetflixFonts,...TickerFonts,...StripeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruIbaznLnR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"128\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b28MyQMkO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l2WtEFHVe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uIbaznLnR.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"MyGGqfwit\",\"gllabdy8t\"];const serializationHash=\"framer-ka9hk\";const variantClassNames={gllabdy8t:\"framer-v-gu2euo\",MyGGqfwit:\"framer-v-1yh46j7\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"MyGGqfwit\",\"Variant 2\":\"gllabdy8t\"};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:\"MyGGqfwit\"};};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:\"MyGGqfwit\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yh46j7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"MyGGqfwit\",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:\"var(--token-2d999229-effc-4b64-8405-e113bd3f5817, rgb(73, 22, 224))\",...style},variants:{gllabdy8t:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({gllabdy8t:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILT WITH INPUT FROM TECH LEADS AND STAFF SOFTWARE ENGINEERS FROM\"})}),className:\"framer-1lxkaxd\",fonts:[\"FS;General Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"DpSLcLxL2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{gllabdy8t:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.58)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gllabdy8t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.58))\"},children:\"BUILT WITH INPUT FROM TECH LEADS AND STAFF SOFTWARE ENGINEERS FROM\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ka9hk.framer-1i6nmm5, .framer-ka9hk .framer-1i6nmm5 { display: block; }\",\".framer-ka9hk.framer-1yh46j7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 32px 40px; position: relative; width: 1200px; }\",\".framer-ka9hk .framer-1lxkaxd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ka9hk.framer-1yh46j7 { gap: 0px; } .framer-ka9hk.framer-1yh46j7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ka9hk.framer-1yh46j7 > :first-child { margin-left: 0px; } .framer-ka9hk.framer-1yh46j7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 117\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gllabdy8t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerxsqea0z7O=withCSS(Component,css,\"framer-ka9hk\");export default Framerxsqea0z7O;Framerxsqea0z7O.displayName=\"section-headers\";Framerxsqea0z7O.defaultProps={height:117,width:1200};addPropertyControls(Framerxsqea0z7O,{variant:{options:[\"MyGGqfwit\",\"gllabdy8t\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerxsqea0z7O,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxsqea0z7O\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"117\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gllabdy8t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xsqea0z7O.map"],
  "mappings": "iYAA0X,IAAMA,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,WASzpB,SAARC,GAAwBC,EAAM,CAAa,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,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAS,EAAEN,EAAiB,CAAC,UAAAO,GAAU,WAAAC,EAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAwBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,GAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,GAAalB,IAAY,QAAQA,IAAY,QAAcd,GAAOiC,GAAe,CAAC,EAAQC,GAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,GAAOkC,EAAW,EAA6BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,IAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,IAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,GAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,GAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,EAAQL,IAAQ,IAAGK,EAAK1B,EAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,EAAK1B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,IAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,IAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,EAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,EAAKC,GAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,IAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,IAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,MAAMvC,IAAWwC,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOvC,IAAYwC,GAAKN,EAAM,SAAS,MAAMM,KAAO,OAAO,OAAOA,GAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAME,EAAe9B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,GAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,GAAQzC,EAAO,IAAI,EAAQ0C,GAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,EAAS,CAAC,IAAMsD,EAASC,GAAU7C,EAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,GAAgB,CAAC5D,GAAe,OAAAoE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,GAAY,CAAC,EAAEA,GAAYsC,CAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,EAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,GAAOxE,GAAa8D,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,GAAO,IAAI2E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAa,IAAMY,GAAcvD,GAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,EAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,EAAgBuE,GAAS,mBAAmBN,EAAa,mBAAmBhE,EAAS,KAAKmE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBlE,EAAS,KAAKqE,EAAY,KAAuB,OAAI7D,GAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIW,GAAU,SAAuB0D,GAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK1D,IAAY,SAASmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,GAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAWR,EAAS,OAAO,WAAW,EAAE,aAAa,IAAI,CAACiD,GAAQ,QAAQ,GAAQI,GAAa,SAASA,GAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArxCiD,GAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAehC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAgBlC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA0+B,CAA2BnG,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,EAA0BoG,EAAoBpG,GAAO,CAAC,MAAM,CAAC,KAAKqG,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,gBAAiB,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,aAAc,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,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,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,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECzB3sK,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8iIAA8iI,aAAa,UAAU,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,sjIAAsjI,aAAa,QAAQ,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,oGAAoG,oLAAoL,EAOvuYC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPhI,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wkHAAwkH,aAAa,WAAW,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,8kHAA8kH,aAAa,UAAU,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,oGAAoG,sLAAsL,EAO9xWC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPhI,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,w2MAAw2M,aAAa,WAAW,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,s4MAAs4M,aAAa,UAAU,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,qGAAqG,oLAAoL,EAOx3hBC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPjI,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4uGAA4uG,aAAa,WAAW,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,kvGAAkvG,aAAa,SAAS,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,oGAAoG,qLAAqL,EAOpmVC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPhI,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,22CAA22C,aAAa,UAAU,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,i3CAAi3C,aAAa,UAAU,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,oGAAoG,oLAAoL,EAOh2NC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECP/H,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBlC,EAAKmC,EAAY,CAAC,GAAGd,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUc,EAAGrD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKqC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,w6FAAw6F,aAAa,WAAW,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,IAAI,66FAA66F,aAAa,UAAU,CAAC,EAAEsC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,qGAAqG,oLAAoL,EAO39TC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPsuB,IAAMM,GAAcC,EAASC,EAAQ,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAcJ,EAASK,EAAQ,EAAQC,GAAeN,EAASO,EAAS,EAAQC,GAAaR,EAASS,EAAO,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAYZ,EAASa,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQT,IAAc,YAA6CU,EAAa,IAAQV,IAAc,YAA6CW,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGlB,GAA4Ca,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,GAAMtC,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUmB,EAAG1D,GAAkB,GAAGqD,GAAsB,gBAAgBhB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,gBAAgB,sEAAsE,GAAGX,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,cAAc,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAS,CAACO,EAAY,GAAgBhC,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,SAAsB7B,EAAKrB,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,IAAI,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,QAAQ,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcqB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK/B,GAAS,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,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsB7B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,y0FAAy0F,aAAa,UAAU,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK7B,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK3B,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKzB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsB7B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2tFAA2tF,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKvB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwD,EAAa,GAAgBjC,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,SAAsB7B,EAAKrB,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,IAAI,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,QAAQ,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcqB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK/B,GAAS,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,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsB7B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBd,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,i0FAAi0F,aAAa,UAAU,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK7B,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK3B,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKzB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsB7B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBd,EAAiB,SAAS,YAAY,IAAI,krEAAkrE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKvB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmE,GAAI,CAAC,kFAAkF,kFAAkF,2PAA2P,4JAA4J,sIAAsI,oIAAoI,oNAAoN,sIAAsI,sIAAsI,qIAAqI,wRAAwR,gGAAgG,qIAAqI,8HAA8H,8FAA8F,2KAA2K,4pBAA4pB,EAQzhxBC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG9E,GAAc,GAAGG,GAAc,GAAGE,GAAc,GAAGE,GAAe,GAAGE,GAAa,GAAGE,GAAY,GAAGE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRjT,IAAMuE,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,gBAAgB,sEAAsE,GAAGX,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,cAAc,CAAC,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKuC,GAAS,CAAC,sBAAsB,GAAK,SAAsBvC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,0BAA0B,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,2BAA2B,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oDAAoD,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,kRAAkR,uKAAuK,8WAA8W,EAQnpLC,GAAgBC,EAAQ7B,GAAU2B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "Framerb35N7d7Na", "withCSS", "b35N7d7Na_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "FramerfweDWpDlc", "withCSS", "fweDWpDlc_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "FramerPk0Wg3PIZ", "withCSS", "Pk0Wg3PIZ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "FramerVHN0EkVxR", "withCSS", "VHN0EkVxR_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "Framerwl2vCmpqj", "withCSS", "wl2vCmpqj_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "SVG", "css", "FramerYkE7wbtF4", "withCSS", "YkE7wbtF4_default", "addPropertyControls", "ControlType", "addFonts", "FacebookFonts", "getFonts", "VHN0EkVxR_default", "PalantirFonts", "b35N7d7Na_default", "CoinbaseFonts", "fweDWpDlc_default", "MicrosoftFonts", "Pk0Wg3PIZ_default", "NetflixFonts", "wl2vCmpqj_default", "TickerFonts", "Ticker", "StripeFonts", "YkE7wbtF4_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "css", "FrameruIbaznLnR", "withCSS", "uIbaznLnR_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framerxsqea0z7O", "withCSS", "xsqea0z7O_default", "addPropertyControls", "ControlType", "addFonts"]
}
