{"version":3,"file":"He8xOpPls.k_uKeT7r.mjs","names":["useState","useRef","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","sharedStyle.className","className","RichText","sharedStyle.css","sharedStyle.fonts"],"sources":["https:/framerusercontent.com/modules/5dj5vyasY7j2hr7xcQcf/xrlVn7y3ybR78V3qNSOU/CountUpNumber.js","https:/framerusercontent.com/modules/S7VBkb9tnPCBTszx4aVV/eQI89S4SmJrOXvYbje57/He8xOpPls.js"],"sourcesContent":["// CountUpNumber component that counts up from a start number to an end number when scrolled into view\n// Includes options for start/end numbers, font, color, prefix/suffix text, speed control, and easing\nimport{jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef,startTransition}from\"react\";import{addPropertyControls,ControlType,useInView,useIsStaticRenderer}from\"framer\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function CountUpNumber(props){const{startNumber,endNumber,endDecimal,prefix,suffix,duration,easing,font,textColor,animateLast10}=props;const[count,setCount]=useState(startNumber);const ref=useRef(null);const animationFrameRef=useRef(null);const isInView=useInView(ref);const isStatic=useIsStaticRenderer();// Easing functions\nconst easingFunctions={linear:t=>t,easeInQuad:t=>t*t,easeOutQuad:t=>t*(2-t),easeInOutQuad:t=>t<.5?2*t*t:-1+(4-2*t)*t,easeInCubic:t=>t*t*t,easeOutCubic:t=>--t*t*t+1,easeInOutCubic:t=>t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1,easeInQuart:t=>t*t*t*t,easeOutQuart:t=>1- --t*t*t*t,easeInOutQuart:t=>t<.5?8*t*t*t*t:1-8*--t*t*t*t};useEffect(()=>{// Cancel any ongoing animation\nif(animationFrameRef.current!==null){cancelAnimationFrame(animationFrameRef.current);}if(!isInView){startTransition(()=>setCount(startNumber));return;}const startTime=performance.now();// Combine endNumber with endDecimal to get the actual target\nconst actualEndNumber=endDecimal?parseFloat(`${endNumber}.${endDecimal}`):endNumber;// Determine the actual start number based on animateLast10 toggle\nconst actualStartNumber=animateLast10?Math.max(actualEndNumber-10,startNumber):startNumber;const range=actualEndNumber-actualStartNumber;const easeFn=easingFunctions[easing]||easingFunctions.linear;const animate=currentTime=>{const elapsed=currentTime-startTime;const progress=Math.min(elapsed/(duration*1e3),1);const easedProgress=easeFn(progress);const currentValue=actualStartNumber+range*easedProgress;startTransition(()=>setCount(currentValue));if(progress<1){animationFrameRef.current=requestAnimationFrame(animate);}else{// Ensure we end exactly at actualEndNumber\nstartTransition(()=>setCount(actualEndNumber));}};animationFrameRef.current=requestAnimationFrame(animate);return()=>{if(animationFrameRef.current!==null){cancelAnimationFrame(animationFrameRef.current);}};},[isInView,startNumber,endNumber,endDecimal,duration,easing,animateLast10]);// Format number to show exact decimal places based on endDecimal\nconst formatNumber=(num,decimalString)=>{if(!decimalString){return Math.floor(num).toString();}const decimalPlaces=decimalString.length;const multiplier=Math.pow(10,decimalPlaces);const truncated=Math.floor(num*multiplier)/multiplier;return truncated.toFixed(decimalPlaces);};// On canvas (static renderer), always show the end number with decimals\nconst actualEndNumber=endDecimal?parseFloat(`${endNumber}.${endDecimal}`):endNumber;const finalDisplayValue=isStatic?endDecimal?`${endNumber}.${endDecimal}`:endNumber.toString():formatNumber(count,endDecimal);return /*#__PURE__*/_jsxs(\"div\",{ref:ref,style:{...props.style,position:\"relative\",width:\"max-content\",minWidth:\"max-content\",color:textColor,...font},children:[prefix,finalDisplayValue,suffix]});}addPropertyControls(CountUpNumber,{startNumber:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,step:.01},endNumber:{type:ControlType.Number,title:\"End Number\",defaultValue:100,step:1,displayStepper:true},endDecimal:{type:ControlType.String,title:\"End Decimal\",defaultValue:\"\",placeholder:\"e.g. 00 or 50\"},animateLast10:{type:ControlType.Boolean,title:\"Animate Last 10\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\",placeholder:\"e.g. +\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\",placeholder:\"e.g. k\"},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2,min:.5,max:10,step:.5,unit:\"s\"},easing:{type:ControlType.Enum,title:\"Easing\",defaultValue:\"easeOutCubic\",options:[\"linear\",\"easeInQuad\",\"easeOutQuad\",\"easeInOutQuad\",\"easeInCubic\",\"easeOutCubic\",\"easeInOutCubic\",\"easeInQuart\",\"easeOutQuart\",\"easeInOutQuart\"],optionTitles:[\"Linear\",\"Ease In Quad\",\"Ease Out Quad\",\"Ease In Out Quad\",\"Ease In Cubic\",\"Ease Out Cubic\",\"Ease In Out Cubic\",\"Ease In Quart\",\"Ease Out Quart\",\"Ease In Out Quart\"]},font:{type:ControlType.Font,title:\"Font\",defaultValue:{fontSize:\"40px\",variant:\"Bold\",letterSpacing:\"-0.04em\",lineHeight:\"1em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountUpNumber\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CountUpNumber.map","// Generated by Framer (ea22747)\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 CountUpNumber from\"https://framerusercontent.com/modules/5dj5vyasY7j2hr7xcQcf/xrlVn7y3ybR78V3qNSOU/CountUpNumber.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oYYBrx4r0K2hrmj5sESj/n5wpsfbVtPHL7dEB9X4w/OYnt9KUAB.js\";const CountUpNumberFonts=getFonts(CountUpNumber);const serializationHash=\"framer-uMIRg\";const variantClassNames={c_b1gM4ir:\"framer-v-h0hi3v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const LLlLdClSS=undefined;const hw7jbAy6Q=undefined;const wwp7HjDgu=undefined;const ZUPYcm8YM=undefined;const EBWQm_YZK=undefined;const Z7tvPrbDb=undefined;const g9IyPktDU=undefined;const mQzxiWMjN=undefined;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=({animateLast10,duration,endDecimal,endNumber,height,id,prefix,startNumber,statDescription,suffix,width,...props})=>{return{...props,EBWQm_YZK:prefix??props.EBWQm_YZK??\"~\",g9IyPktDU:duration??props.g9IyPktDU??2,hw7jbAy6Q:endNumber??props.hw7jbAy6Q??40,LLlLdClSS:startNumber??props.LLlLdClSS,mQzxiWMjN:statDescription??props.mQzxiWMjN??\"Stat description\",wwp7HjDgu:endDecimal??props.wwp7HjDgu,Z7tvPrbDb:suffix??props.Z7tvPrbDb??\"k\",ZUPYcm8YM:animateLast10??props.ZUPYcm8YM};};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,LLlLdClSS,hw7jbAy6Q,wwp7HjDgu,EBWQm_YZK,Z7tvPrbDb,g9IyPktDU,mQzxiWMjN,ZUPYcm8YM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"c_b1gM4ir\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h0hi3v\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Stat default\",layoutDependency:layoutDependency,layoutId:\"c_b1gM4ir\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 229, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mnfr6c\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"B9gqLQdpE\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ct6phk-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Hcfbaxg4x-container\",nodeId:\"Hcfbaxg4x\",rendersWithMotion:true,scopeId:\"He8xOpPls\",children:/*#__PURE__*/_jsx(CountUpNumber,{animateLast10:ZUPYcm8YM,duration:g9IyPktDU,easing:\"easeOutCubic\",endDecimal:wwp7HjDgu,endNumber:hw7jbAy6Q,font:{fontFamily:'\"General Sans Variable Variable Bold\", \"General Sans Variable Variable Bold Placeholder\", sans-serif',fontSize:\"30px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"-0.04em\",lineHeight:\"1em\"},height:\"100%\",id:\"Hcfbaxg4x\",layoutId:\"Hcfbaxg4x\",prefix:EBWQm_YZK,startNumber:LLlLdClSS,suffix:Z7tvPrbDb,textColor:\"var(--token-9a8a3063-6d3f-4c84-bb7a-ce6785df7b69, rgb(254, 85, 27))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-178ep3v\",\"data-styles-preset\":\"OYnt9KUAB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Stat description\"})}),className:\"framer-i7hvlg\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YBwV2RtrP\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:mQzxiWMjN,verticalAlignment:\"center\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uMIRg.framer-1ghv9bm, .framer-uMIRg .framer-1ghv9bm { display: block; }\",\".framer-uMIRg.framer-h0hi3v { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 245px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 168px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uMIRg .framer-mnfr6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uMIRg .framer-1ct6phk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uMIRg .framer-i7hvlg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-uMIRg[data-border=\"true\"]::after, .framer-uMIRg [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; corner-shape: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 245\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LLlLdClSS\":\"startNumber\",\"hw7jbAy6Q\":\"endNumber\",\"wwp7HjDgu\":\"endDecimal\",\"EBWQm_YZK\":\"prefix\",\"Z7tvPrbDb\":\"suffix\",\"g9IyPktDU\":\"duration\",\"mQzxiWMjN\":\"statDescription\",\"ZUPYcm8YM\":\"animateLast10\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHe8xOpPls=withCSS(Component,css,\"framer-uMIRg\");export default FramerHe8xOpPls;FramerHe8xOpPls.displayName=\"Launch/Misc/Stat\";FramerHe8xOpPls.defaultProps={height:245,width:168};addPropertyControls(FramerHe8xOpPls,{LLlLdClSS:{defaultValue:0,step:1,title:\"Start Number\",type:ControlType.Number},onLLlLdClSSChange:{changes:\"LLlLdClSS\",type:ControlType.ChangeHandler},hw7jbAy6Q:{defaultValue:40,step:1,title:\"End Number\",type:ControlType.Number},onhw7jbAy6QChange:{changes:\"hw7jbAy6Q\",type:ControlType.ChangeHandler},wwp7HjDgu:{defaultValue:\"\",placeholder:\"e.g. 00 or 50\",title:\"End Decimal\",type:ControlType.String},onwwp7HjDguChange:{changes:\"wwp7HjDgu\",type:ControlType.ChangeHandler},EBWQm_YZK:{defaultValue:\"~\",placeholder:\"e.g. +\",title:\"Prefix\",type:ControlType.String},onEBWQm_YZKChange:{changes:\"EBWQm_YZK\",type:ControlType.ChangeHandler},Z7tvPrbDb:{defaultValue:\"k\",placeholder:\"e.g. k\",title:\"Suffix\",type:ControlType.String},onZ7tvPrbDbChange:{changes:\"Z7tvPrbDb\",type:ControlType.ChangeHandler},g9IyPktDU:{defaultValue:2,max:10,min:.5,step:.5,title:\"Duration\",type:ControlType.Number},ong9IyPktDUChange:{changes:\"g9IyPktDU\",type:ControlType.ChangeHandler},mQzxiWMjN:{defaultValue:\"Stat description\",displayTextArea:false,title:\"Stat description\",type:ControlType.String},onmQzxiWMjNChange:{changes:\"mQzxiWMjN\",type:ControlType.ChangeHandler},ZUPYcm8YM:{defaultValue:false,title:\"Animate Last 10\",type:ControlType.Boolean},onZUPYcm8YMChange:{changes:\"ZUPYcm8YM\",type:ControlType.ChangeHandler}});const variationAxes=[{defaultValue:700,maxValue:700,minValue:200,name:\"Weight\",tag:\"wght\"}];addFonts(FramerHe8xOpPls,[{explicitInter:true,fonts:[{cssFamilyName:\"General Sans Variable Variable Bold\",source:\"custom\",style:\"normal\",uiFamilyName:\"General Sans Variable\",url:\"https://framerusercontent.com/assets/e1k37xkXdS9Q44MSWSRA9disQ.woff2\",variationAxes,weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"}]},...CountUpNumberFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHe8xOpPls\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"LLlLdClSS\\\":\\\"startNumber\\\",\\\"hw7jbAy6Q\\\":\\\"endNumber\\\",\\\"wwp7HjDgu\\\":\\\"endDecimal\\\",\\\"EBWQm_YZK\\\":\\\"prefix\\\",\\\"Z7tvPrbDb\\\":\\\"suffix\\\",\\\"g9IyPktDU\\\":\\\"duration\\\",\\\"mQzxiWMjN\\\":\\\"statDescription\\\",\\\"ZUPYcm8YM\\\":\\\"animateLast10\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"168\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"245\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./He8xOpPls.map"],"mappings":"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"}