{"version":3,"file":"Hxv9G0aDb.C1_MkTss.mjs","names":["Phosphor","className","css"],"sources":["https:/framerusercontent.com/modules/pnIZY3WJAGYoySnDx97M/eFr548IdxVhpQpgAbIaV/Counter1.js","https:/framerusercontent.com/modules/6bIhsB0EWdNzLxaBt2uw/nfM4wzipdNg82RsfNhDC/Hxv9G0aDb.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};const applyGradient=(text,gradientEnabled,angle,color1,color2)=>{if(gradientEnabled){const gradient=`linear-gradient(${angle}deg, ${color1}, ${color2})`;return /*#__PURE__*/_jsx(\"span\",{style:{backgroundImage:gradient,WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",display:\"inline-block\"},children:text});}else{return text;}};export function Counter(props){const{start,end,speed,gapSize,prefixEnabled,prefixText,prefixFont,prefixColor,prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2,suffixEnabled,suffixText,suffixFont,suffixColor,suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2,textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2,loop,decimalSeparatorType,textSize,selectedFont,textColor,letterSpacing,lineHeight,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start);}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor,letterSpacing:`${letterSpacing}px`,lineHeight:lineHeight},children:[prefixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixGradientEnabled?\"transparent\":prefixColor},children:prefixText}),prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2),applyGradient(formatNumber(count),textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2),suffixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixGradientEnabled?\"transparent\":suffixColor},children:suffixText}),suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2)]});}Counter.defaultProps={start:0,end:100,speed:100,prefixEnabled:false,suffixEnabled:false,loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\",textGradientEnabled:false,textGradientAngle:90,textGradientColor1:\"#000\",textGradientColor2:\"#fff\",prefixText:\"\",prefixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},prefixColor:\"#000\",prefixGradientEnabled:false,prefixGradientAngle:90,prefixGradientColor1:\"#000\",prefixGradientColor2:\"#fff\",suffixText:\"\",suffixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},suffixColor:\"#000\",suffixGradientEnabled:false,suffixGradientAngle:90,suffixGradientColor1:\"#000\",suffixGradientColor2:\"#fff\",gapSize:4,letterSpacing:0,lineHeight:1.2};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:0,min:-5,max:20,step:.5},lineHeight:{type:ControlType.Number,title:\"Line Height\",defaultValue:1.2,min:.5,max:3,step:.1},textGradientEnabled:{type:ControlType.Boolean,title:\"Text Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},textGradientAngle:{type:ControlType.Number,title:\"Text Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.textGradientEnabled},textGradientColor1:{type:ControlType.Color,title:\"Text Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.textGradientEnabled},textGradientColor2:{type:ControlType.Color,title:\"Text Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.textGradientEnabled},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixEnabled:{type:ControlType.Boolean,title:\"Prefix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\",hidden:props=>!props.prefixEnabled},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.prefixEnabled},prefixColor:{type:ControlType.Color,title:\"Prefix Color\",hidden:props=>!props.prefixEnabled},prefixGradientEnabled:{type:ControlType.Boolean,title:\"Prefix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.prefixEnabled},prefixGradientAngle:{type:ControlType.Number,title:\"Prefix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor1:{type:ControlType.Color,title:\"Prefix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor2:{type:ControlType.Color,title:\"Prefix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},suffixEnabled:{type:ControlType.Boolean,title:\"Suffix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\",hidden:props=>!props.suffixEnabled},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.suffixEnabled},suffixColor:{type:ControlType.Color,title:\"Suffix Color\",hidden:props=>!props.suffixEnabled},suffixGradientEnabled:{type:ControlType.Boolean,title:\"Suffix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.suffixEnabled},suffixGradientAngle:{type:ControlType.Number,title:\"Suffix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor1:{type:ControlType.Color,title:\"Suffix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor2:{type:ControlType.Color,title:\"Suffix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map","// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{Counter}from\"https://framerusercontent.com/modules/pnIZY3WJAGYoySnDx97M/eFr548IdxVhpQpgAbIaV/Counter1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kqzKkWHSGKZBc8hzDEOd/XujvRGoWXiQvcehrGs19/wXLg1JumA.js\";const PhosphorFonts=getFonts(Phosphor);const CounterFonts=getFonts(Counter);const serializationHash=\"framer-0V88c\";const variantClassNames={l_EdBJckC:\"framer-v-1azakrz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({description,endingNumber,height,id,startingNumber,suffix,width,...props})=>{return{...props,dGyZ10pAz:suffix??props.dGyZ10pAz??\"+\",NTfSZtAI9:startingNumber??props.NTfSZtAI9??500,oASI9qJ72:description??props.oASI9qJ72??\"Families Supported\",rxQK5dFHf:endingNumber??props.rxQK5dFHf??600};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NTfSZtAI9,rxQK5dFHf,dGyZ10pAz,oASI9qJ72,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"l_EdBJckC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1azakrz\",className,classNames),\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"l_EdBJckC\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-offb46\",\"data-framer-name\":\"Icon wrapper\",layoutDependency:layoutDependency,layoutId:\"qHvFW_vX7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19itdgw-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EWfXc7Vqk-container\",name:\"Icon\",nodeId:\"EWfXc7Vqk\",rendersWithMotion:true,scopeId:\"Hxv9G0aDb\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b117cc23-f396-4ab8-a505-eab65f462446, rgb(94, 94, 94))\",height:\"100%\",iconSearch:\"Arrowright\",iconSelection:\"Graph\",id:\"EWfXc7Vqk\",layoutId:\"EWfXc7Vqk\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-157y8pj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"noYzmJMTv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g85nos-container\",\"data-framer-name\":\"Number counter\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"choGnxxVW-container\",name:\"Number counter\",nodeId:\"choGnxxVW\",rendersWithMotion:true,scopeId:\"Hxv9G0aDb\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:rxQK5dFHf,gapSize:1,height:\"100%\",id:\"choGnxxVW\",incrementType:\"integer\",layoutId:\"choGnxxVW\",letterSpacing:-1.5,lineHeight:1,loop:false,name:\"Number counter\",prefixColor:\"var(--token-6d32415f-d2df-42c5-8d22-2d797a5483e9, rgb(13, 13, 13))\",prefixEnabled:true,prefixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},prefixGradientAngle:187,prefixGradientColor1:\"rgb(10, 76, 245)\",prefixGradientColor2:\"rgb(61, 242, 124)\",prefixGradientEnabled:false,prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:10,start:NTfSZtAI9,startOnViewport:true,suffixColor:\"var(--token-6d32415f-d2df-42c5-8d22-2d797a5483e9, rgb(13, 13, 13))\",suffixEnabled:true,suffixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},suffixGradientAngle:137,suffixGradientColor1:\"rgb(240, 50, 202)\",suffixGradientColor2:\"rgb(42, 186, 247)\",suffixGradientEnabled:false,suffixText:dGyZ10pAz,textColor:\"var(--token-6d32415f-d2df-42c5-8d22-2d797a5483e9, rgb(13, 13, 13))\",textGradientAngle:71,textGradientColor1:\"rgb(58, 128, 232)\",textGradientColor2:\"rgb(250, 45, 246)\",textGradientEnabled:false,textSize:32,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1iq5n5f\",\"data-styles-preset\":\"wXLg1JumA\",children:\"Students enrolled\"})}),className:\"framer-1a0dgly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hHmleNzGZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oASI9qJ72,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0V88c.framer-12rxemk, .framer-0V88c .framer-12rxemk { display: block; }\",\".framer-0V88c.framer-1azakrz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 240px; }\",\".framer-0V88c .framer-offb46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px 0px 0px 0px; position: relative; width: 30px; }\",\".framer-0V88c .framer-19itdgw-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-0V88c .framer-157y8pj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0V88c .framer-g85nos-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0V88c .framer-1a0dgly { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 111\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NTfSZtAI9\":\"startingNumber\",\"rxQK5dFHf\":\"endingNumber\",\"dGyZ10pAz\":\"suffix\",\"oASI9qJ72\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHxv9G0aDb=withCSS(Component,css,\"framer-0V88c\");export default FramerHxv9G0aDb;FramerHxv9G0aDb.displayName=\"Stats\";FramerHxv9G0aDb.defaultProps={height:111,width:240};addPropertyControls(FramerHxv9G0aDb,{NTfSZtAI9:{defaultValue:500,displayStepper:true,title:\"Starting Number\",type:ControlType.Number},rxQK5dFHf:{defaultValue:600,displayStepper:true,title:\"Ending Number\",type:ControlType.Number},dGyZ10pAz:{defaultValue:\"+\",title:\"Suffix\",type:ControlType.String},oASI9qJ72:{defaultValue:\"Families Supported\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerHxv9G0aDb,[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHxv9G0aDb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"111\",\"framerIntrinsicWidth\":\"240\",\"framerVariables\":\"{\\\"NTfSZtAI9\\\":\\\"startingNumber\\\",\\\"rxQK5dFHf\\\":\\\"endingNumber\\\",\\\"dGyZ10pAz\\\":\\\"suffix\\\",\\\"oASI9qJ72\\\":\\\"description\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hxv9G0aDb.map"],"mappings":"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"}