{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/wEL5QsWQEE21DXnFA3fC/zYTiPHh5xDktmCes54VD/LineClamp.js", "ssg:https://framerusercontent.com/modules/sZpohciJG5SWyuBPihsF/Z9hLK8XnyJIQ4L0xfP4w/TD31Ia6n3.js", "ssg:https://framerusercontent.com/modules/f2M4iDqdSk1gNlyCcVKI/OrmrJHQ4cMqcXbAl13lo/CndtwL2_i.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withLineClamp2(Component){return props=>{const{text,...otherProps}=props;const lineCount=2 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}export function withLineClamp3(Component){return props=>{const{text,...otherProps}=props;const lineCount=3 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}export function withLineClamp4(Component){return props=>{const{text,...otherProps}=props;const lineCount=4 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp4\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp4\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp2\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp3\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp3\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LineClamp.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/TD31Ia6n3:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/TD31Ia6n3:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/TD31Ia6n3:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\"},style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/TD31Ia6n3:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\"},style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}];export const css=['.framer-Gl6gi .framer-styles-preset-1kj0lbs:not(.rich-text-wrapper), .framer-Gl6gi .framer-styles-preset-1kj0lbs.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.2px; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-a3899813-d8f3-4f62-83d8-fbaf952258c9, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Gl6gi\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withLineClamp2}from\"https://framerusercontent.com/modules/wEL5QsWQEE21DXnFA3fC/zYTiPHh5xDktmCes54VD/LineClamp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sZpohciJG5SWyuBPihsF/Z9hLK8XnyJIQ4L0xfP4w/TD31Ia6n3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1UMG0JoCZ5dAVZAZhYYZ/QhKvDJWDOjhrSttV2S4T/wYBcj0NpZ.js\";const RichTextWithLineClamp2106gkg2=withCodeBoundaryForOverrides(RichText,{nodeId:\"I1127:24434;1042:5116\",override:withLineClamp2,scopeId:\"CndtwL2_i\"});const RichTextWithLineClamp21fjf7ef=withCodeBoundaryForOverrides(RichText,{nodeId:\"I1127:24434;1042:5117\",override:withLineClamp2,scopeId:\"CndtwL2_i\"});const cycleOrder=[\"MhYSEgt8l\",\"OfJY5uL76\",\"jHSngOYzl\",\"esBsA78AY\",\"u_PsbDpVJ\",\"y_znnzRRL\",\"tOAN0L1zL\"];const serializationHash=\"framer-p8QWG\";const variantClassNames={esBsA78AY:\"framer-v-1waff4x\",jHSngOYzl:\"framer-v-wods8i\",MhYSEgt8l:\"framer-v-1a5kfzu\",OfJY5uL76:\"framer-v-57erd6\",tOAN0L1zL:\"framer-v-1xvvh39\",u_PsbDpVJ:\"framer-v-1en0jns\",y_znnzRRL:\"framer-v-1cr9z3r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark Direction X\":\"u_PsbDpVJ\",\"Dark Image Min Height\":\"y_znnzRRL\",\"Direction X\":\"OfJY5uL76\",\"Imege Min Height\":\"jHSngOYzl\",\"without Description\":\"tOAN0L1zL\",Dark:\"esBsA78AY\",Default:\"MhYSEgt8l\"};const getProps=({category,click,date2,description,height,id,image,link,title,width,...props})=>{return{...props,De6_gCG3K:date2??props.De6_gCG3K??\"1970-01-01T00:00:00.000Z\",DTZXwsA7c:title??props.DTZXwsA7c??\"Lessons and insights from 8 years of Pixelgrade\",JAbAytKYi:link??props.JAbAytKYi,rPiNg2Ibn:category??props.rPiNg2Ibn??\"Cooking \",SJjoQb9OW:image??props.SJjoQb9OW??{pixelHeight:640,pixelWidth:1388,src:\"https://framerusercontent.com/images/fHa2TsLeaGdbfYdwahPzC0N5mM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fHa2TsLeaGdbfYdwahPzC0N5mM.png?scale-down-to=512 512w,https://framerusercontent.com/images/fHa2TsLeaGdbfYdwahPzC0N5mM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fHa2TsLeaGdbfYdwahPzC0N5mM.png 1388w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"MhYSEgt8l\",vsjyoV8lY:click??props.vsjyoV8lY,wxMdHLhuV:description??props.wxMdHLhuV??\"Thankfully, with advancements in artificial intelligence (AI), we now have access to...\"};};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,SJjoQb9OW,DTZXwsA7c,wxMdHLhuV,De6_gCG3K,rPiNg2Ibn,JAbAytKYi,vsjyoV8lY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MhYSEgt8l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hh2v05=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vsjyoV8lY){const res=await vsjyoV8lY(...args);if(res===false)return false;}});const onTap3bt5s8=activeVariantCallback(async(...args)=>{setVariant(\"tOAN0L1zL\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"tOAN0L1zL\")return false;return true;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(De6_gCG3K,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:JAbAytKYi,motionChild:true,nodeId:\"MhYSEgt8l\",openInNewTab:false,scopeId:\"CndtwL2_i\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1a5kfzu\",className,classNames)} framer-1vkrugq`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MhYSEgt8l\",onTap:onTap1hh2v05,ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{esBsA78AY:{backgroundColor:\"rgba(0, 0, 0, 0)\"},OfJY5uL76:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},tOAN0L1zL:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},u_PsbDpVJ:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},y_znnzRRL:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({esBsA78AY:{\"data-framer-name\":\"Dark\"},jHSngOYzl:{\"data-framer-name\":\"Imege Min Height\"},OfJY5uL76:{\"data-framer-name\":\"Direction X\"},tOAN0L1zL:{\"data-framer-name\":\"without Description\"},u_PsbDpVJ:{\"data-framer-name\":\"Dark Direction X\"},y_znnzRRL:{\"data-framer-name\":\"Dark Image Min Height\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(SJjoQb9OW)},className:\"framer-14l681x\",\"data-framer-name\":\"Card Image\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:5113\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({OfJY5uL76:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"118px\",...toResponsiveImage(SJjoQb9OW)}},tOAN0L1zL:{\"data-highlight\":true,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 28px) / 2, 1px)`,...toResponsiveImage(SJjoQb9OW)},onTap:onTap3bt5s8},u_PsbDpVJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"118px\",...toResponsiveImage(SJjoQb9OW)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tlah8\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1126:20292\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-54tk5j\",\"data-framer-name\":\"Card Body\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:5114\",children:[/*#__PURE__*/_jsx(RichTextWithLineClamp2106gkg2,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj0lbs\",\"data-styles-preset\":\"TD31Ia6n3\",children:\"Lessons and insights from 8 years of Pixelgrade\"})}),className:\"framer-106gkg2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:5116\",text:DTZXwsA7c,variants:{esBsA78AY:{\"--extracted-r6o4lv\":\"var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255))\"},u_PsbDpVJ:{\"--extracted-r6o4lv\":\"var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255))\"},y_znnzRRL:{\"--extracted-r6o4lv\":\"var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({esBsA78AY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj0lbs\",\"data-styles-preset\":\"TD31Ia6n3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255)))\"},children:\"Lessons and insights from 8 years of Pixelgrade\"})})},u_PsbDpVJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj0lbs\",\"data-styles-preset\":\"TD31Ia6n3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255)))\"},children:\"Lessons and insights from 8 years of Pixelgrade\"})})},y_znnzRRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj0lbs\",\"data-styles-preset\":\"TD31Ia6n3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255)))\"},children:\"Lessons and insights from 8 years of Pixelgrade\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithLineClamp21fjf7ef,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nvlt98\",\"data-styles-preset\":\"wYBcj0NpZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102)))\"},children:\"Thankfully, with advancements in artificial intelligence (AI), we now have access to...\"})}),className:\"framer-1fjf7ef\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:5117\",style:{\"--extracted-r6o4lv\":\"var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102))\"},text:wxMdHLhuV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nquzjy\",\"data-framer-name\":\"Card Footer\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:15209\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g29e7f\",\"data-border\":true,\"data-framer-name\":\"Category Badge\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:15210\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-38fe370c-8f5b-4610-b4f8-fbd45fdbb471, rgb(229, 229, 229))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{esBsA78AY:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"},u_PsbDpVJ:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"},y_znnzRRL:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b7d5a7ed-8d6b-446d-bb4e-ac0436c6391b, rgb(128, 128, 128)))\"},children:\"Cooking \"})}),className:\"framer-1autgum\",\"data-framer-name\":\"Category Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:15211\",style:{\"--extracted-r6o4lv\":\"var(--token-b7d5a7ed-8d6b-446d-bb4e-ac0436c6391b, rgb(128, 128, 128))\"},text:rPiNg2Ibn,variants:{esBsA78AY:{\"--extracted-r6o4lv\":\"var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102))\"},y_znnzRRL:{\"--extracted-r6o4lv\":\"var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({esBsA78AY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102)))\"},children:\"Cooking \"})})},y_znnzRRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102)))\"},children:\"Cooking \"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14xfa4w\",\"data-border\":true,\"data-framer-name\":\"Date Badge\",layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:15212\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-38fe370c-8f5b-4610-b4f8-fbd45fdbb471, rgb(229, 229, 229))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{esBsA78AY:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"},u_PsbDpVJ:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"},y_znnzRRL:{backgroundColor:\"var(--token-5ee71fea-d41f-43f7-a687-62d286af9897, rgb(26, 26, 26))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b7d5a7ed-8d6b-446d-bb4e-ac0436c6391b, rgb(128, 128, 128)))\"},children:\"12.10.23\"})}),className:\"framer-x0jg3h\",\"data-framer-name\":\"Date Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"I1127:24434;1042:15213\",style:{\"--extracted-r6o4lv\":\"var(--token-b7d5a7ed-8d6b-446d-bb4e-ac0436c6391b, rgb(128, 128, 128))\"},text:textContent,variants:{esBsA78AY:{\"--extracted-r6o4lv\":\"var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102))\"},y_znnzRRL:{\"--extracted-r6o4lv\":\"var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({esBsA78AY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102)))\"},children:\"12.10.23\"})})},y_znnzRRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2edb31f-ef43-4e44-8b88-b5be861709c5, rgb(102, 102, 102)))\"},children:\"12.10.23\"})})}},baseVariant,gestureVariant)})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p8QWG.framer-1vkrugq, .framer-p8QWG .framer-1vkrugq { display: block; }\",\".framer-p8QWG.framer-1a5kfzu { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; text-decoration: none; width: 450px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p8QWG .framer-14l681x { aspect-ratio: 1.68 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 268px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-p8QWG .framer-1tlah8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 0px; position: relative; width: 100%; }\",\".framer-p8QWG .framer-54tk5j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p8QWG .framer-106gkg2, .framer-p8QWG .framer-1fjf7ef { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p8QWG .framer-nquzjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p8QWG .framer-g29e7f, .framer-p8QWG .framer-14xfa4w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 10px 5px 10px; position: relative; width: min-content; }\",\".framer-p8QWG .framer-1autgum, .framer-p8QWG .framer-x0jg3h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p8QWG.framer-v-57erd6.framer-1a5kfzu, .framer-p8QWG.framer-v-1en0jns.framer-1a5kfzu { flex-direction: row; padding: 0px 0px 40px 0px; width: 480px; will-change: unset; }\",\".framer-p8QWG.framer-v-57erd6 .framer-14l681x, .framer-p8QWG.framer-v-1en0jns .framer-14l681x { aspect-ratio: 1.0535714285714286 / 1; height: var(--framer-aspect-ratio-supported, 112px); order: 1; width: 118px; }\",\".framer-p8QWG.framer-v-57erd6 .framer-1tlah8, .framer-p8QWG.framer-v-1en0jns .framer-1tlah8 { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-p8QWG.framer-v-wods8i .framer-14l681x, .framer-p8QWG.framer-v-1cr9z3r .framer-14l681x { height: var(--framer-aspect-ratio-supported, 285px); min-height: 285px; }\",\".framer-p8QWG.framer-v-1xvvh39.framer-1a5kfzu { flex-direction: row; gap: 28px; padding: 0px 0px 40px 0px; width: 480px; will-change: unset; }\",\".framer-p8QWG.framer-v-1xvvh39 .framer-14l681x { aspect-ratio: 1.5909090909090908 / 1; cursor: pointer; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 132px); order: 0; width: 1px; }\",\".framer-p8QWG.framer-v-1xvvh39 .framer-1tlah8 { flex: 1 0 0px; order: 1; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-p8QWG[data-border=\"true\"]::after, .framer-p8QWG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 416.5\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OfJY5uL76\":{\"layout\":[\"fixed\",\"auto\"]},\"jHSngOYzl\":{\"layout\":[\"fixed\",\"auto\"]},\"esBsA78AY\":{\"layout\":[\"fixed\",\"auto\"]},\"u_PsbDpVJ\":{\"layout\":[\"fixed\",\"auto\"]},\"y_znnzRRL\":{\"layout\":[\"fixed\",\"auto\"]},\"tOAN0L1zL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SJjoQb9OW\":\"image\",\"DTZXwsA7c\":\"title\",\"wxMdHLhuV\":\"description\",\"De6_gCG3K\":\"date2\",\"rPiNg2Ibn\":\"category\",\"JAbAytKYi\":\"link\",\"vsjyoV8lY\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCndtwL2_i=withCSS(Component,css,\"framer-p8QWG\");export default FramerCndtwL2_i;FramerCndtwL2_i.displayName=\"Blog Post Card\";FramerCndtwL2_i.defaultProps={height:416.5,width:450};addPropertyControls(FramerCndtwL2_i,{variant:{options:[\"MhYSEgt8l\",\"OfJY5uL76\",\"jHSngOYzl\",\"esBsA78AY\",\"u_PsbDpVJ\",\"y_znnzRRL\",\"tOAN0L1zL\"],optionTitles:[\"Default\",\"Direction X\",\"Imege Min Height\",\"Dark\",\"Dark Direction X\",\"Dark Image Min Height\",\"without Description\"],title:\"Variant\",type:ControlType.Enum},SJjoQb9OW:{__defaultAssetReference:\"data:framer/asset-reference,fHa2TsLeaGdbfYdwahPzC0N5mM.png?originalFilename=Frame+40625.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},DTZXwsA7c:{defaultValue:\"Lessons and insights from 8 years of Pixelgrade\",displayTextArea:false,title:\"Title\",type:ControlType.String},wxMdHLhuV:{defaultValue:\"Thankfully, with advancements in artificial intelligence (AI), we now have access to...\",displayTextArea:true,title:\"Description\",type:ControlType.String},De6_gCG3K:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date 2\",type:ControlType.Date},rPiNg2Ibn:{defaultValue:\"Cooking \",displayTextArea:false,title:\"Category\",type:ControlType.String},JAbAytKYi:{title:\"Link\",type:ControlType.Link},vsjyoV8lY:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerCndtwL2_i,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCndtwL2_i\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"416.5\",\"framerIntrinsicWidth\":\"450\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"SJjoQb9OW\\\":\\\"image\\\",\\\"DTZXwsA7c\\\":\\\"title\\\",\\\"wxMdHLhuV\\\":\\\"description\\\",\\\"De6_gCG3K\\\":\\\"date2\\\",\\\"rPiNg2Ibn\\\":\\\"category\\\",\\\"JAbAytKYi\\\":\\\"link\\\",\\\"vsjyoV8lY\\\":\\\"click\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OfJY5uL76\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jHSngOYzl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"esBsA78AY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u_PsbDpVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y_znnzRRL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tOAN0L1zL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CndtwL2_i.map"],
  "mappings": "6WAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,EAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,GAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,GAAyB,CAClC,GAAGC,GACH,SAAU,QACd,ECfA,IAAMC,GAASC,GAAY,CAAC,WAAW,SAAS,CAAC,EAAogB,SAASC,EAAeC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAAC,KAAAC,EAAK,GAAGC,CAAU,EAAEF,EAChoB,OAAqBG,EAAKJ,EAAU,CAAC,GAAGG,EAAW,KAAKD,EAAK,MAAM,CAAC,QAAQ,cAAc,gBAD4jB,EACliB,gBAAgB,WAAW,SAAS,SAAS,GAAGC,EAAW,KAAK,CAAC,CAAC,CAAE,CAAE,CCF7JE,GAAU,0BAA0B,CAAC,oBAAoB,kBAAkB,yBAAyB,0BAA0B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,UAAU,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,wKAAwK,EAAE,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,wKAAwK,EAAE,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,wKAAwK,EAAE,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,wKAAwK,EAAE,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,84BAA84B,EAAeC,GAAU,eCCnpE,IAAMC,GAA8BC,EAA6BC,EAAS,CAAC,OAAO,wBAAwB,SAASC,EAAe,QAAQ,WAAW,CAAC,EAAQC,GAA8BH,EAA6BC,EAAS,CAAC,OAAO,wBAAwB,SAASC,EAAe,QAAQ,WAAW,CAAC,EAAQE,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAoB,CAACD,EAAME,EAAcC,IAAS,CAAC,GAAG,OAAOH,GAAQ,SAAS,MAAM,GAAG,IAAMI,EAAK,IAAI,KAAKJ,CAAK,EAAE,GAAG,MAAMI,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAe,QAAQ,GAAG,CAAC,OAAOD,EAAK,eAAeD,GAAQE,EAAeH,CAAa,CAAE,MAAM,CAAC,OAAOE,EAAK,eAAeC,EAAeH,CAAa,CAAE,CAAC,EAAQI,GAAY,CAAC,UAAU,SAAS,SAAS,KAAK,EAAQC,GAAa,CAACP,EAAMQ,IAAuBP,GAAoBD,EAAMM,GAAYE,CAAY,EAAUC,GAAW,CAAC,CAAC,MAAAT,EAAM,SAAAU,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWd,GAAOW,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,wBAAwB,YAAY,cAAc,YAAY,mBAAmB,YAAY,sBAAsB,YAAY,KAAK,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,MAAAC,EAAM,MAAAC,EAAM,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUR,GAAOQ,EAAM,WAAW,2BAA2B,UAAUF,GAAOE,EAAM,WAAW,kDAAkD,UAAUH,GAAMG,EAAM,UAAU,UAAUV,GAAUU,EAAM,WAAW,WAAW,UAAUJ,GAAOI,EAAM,WAAW,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,wFAAwF,OAAO,mQAAmQ,EAAE,QAAQZ,GAAwBY,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUT,GAAOS,EAAM,UAAU,UAAUP,GAAaO,EAAM,WAAW,yFAAyF,GAAUC,GAAuB,CAACD,EAAMtC,IAAesC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAEsC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAUwC,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAjC,EAAa,UAAAkC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnD,GAAQ,UAAAoD,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,GAAGC,EAAS,EAAElC,GAASW,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAArE,CAAQ,EAAEsE,GAAgB,CAAC,WAAA3E,GAAW,eAAe,YAAY,IAAIiD,EAAW,QAAA1C,GAAQ,kBAAAL,EAAiB,CAAC,EAAQ0E,EAAiBhC,GAAuBD,EAAMtC,CAAQ,EAAO,CAAC,sBAAAwE,EAAsB,MAAAC,EAAK,EAAEC,EAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAYL,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAmFS,GAAkBC,EAAGnF,GAAkB,GAA5F,CAAawD,GAAuBA,EAAS,CAAuE,EAAQ4B,GAAY,IAAQlB,IAAc,YAA6CmB,GAAiBC,EAAc,EAAQC,GAAYvE,GAAa6C,GAAUwB,EAAgB,EAAE,OAAoB3D,EAAK8D,EAAY,CAAC,GAAG/B,GAAUR,EAAgB,SAAsBvB,EAAKC,GAAS,CAAC,QAAQvB,EAAS,QAAQ,GAAM,SAAsBsB,EAAKR,GAAW,CAAC,MAAMX,GAAY,SAAsBmB,EAAK+D,EAAK,CAAC,KAAK1B,GAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsB2B,EAAM9D,EAAO,EAAE,CAAC,GAAGqC,GAAU,GAAGI,GAAgB,UAAU,GAAGc,EAAGD,GAAkB,iBAAiB1B,EAAUW,EAAU,CAAC,kBAAkB,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAI/B,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGO,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGrD,EAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,CAAC,EAAEgE,EAAYI,CAAc,EAAE,SAAS,CAAc5C,EAAKiE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BvC,GAAmB,GAAG,GAAG,EAAE,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAG7C,EAAkBkD,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBiB,EAAiB,SAAS,wBAAwB,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGzE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0F,GAA2BvC,GAAmB,GAAG,GAAG,CAAC,EAAE,MAAM,QAAQ,GAAG7C,EAAkBkD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,iBAAiB,GAAK,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkC,GAA2BvC,GAAmB,GAAG,GAAG,CAAC,EAAE,MAAM,QAAQA,GAAmB,OAAO,OAAO,qBAAqB,GAAG7C,EAAkBkD,CAAS,CAAC,EAAE,MAAMuB,EAAW,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQW,GAA2BvC,GAAmB,GAAG,GAAG,CAAC,EAAE,MAAM,QAAQ,GAAG7C,EAAkBkD,CAAS,CAAC,CAAC,CAAC,EAAEQ,EAAYI,CAAc,CAAC,CAAC,EAAeoB,EAAM9D,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB+C,EAAiB,SAAS,yBAAyB,SAAS,CAAce,EAAM9D,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB+C,EAAiB,SAAS,wBAAwB,SAAS,CAAcjD,EAAKhC,GAA8B,CAAC,sBAAsB,GAAK,SAAsBgC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiB+C,EAAiB,SAAS,wBAAwB,KAAKhB,GAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,EAAqB,CAAC,UAAU,CAAC,SAAsBwB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,EAAEc,GAAY,GAAgB1D,EAAK5B,GAA8B,CAAC,sBAAsB,GAAK,SAAsB4B,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,yFAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB+C,EAAiB,SAAS,wBAAwB,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,KAAKf,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAM9D,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB+C,EAAiB,SAAS,yBAAyB,SAAS,CAAcjD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,iBAAiB+C,EAAiB,SAAS,yBAAyB,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,CAAC,EAAE,SAAsBjD,EAAK9B,EAAS,CAAC,sBAAsB,GAAK,SAAsB8B,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+C,EAAiB,SAAS,yBAAyB,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,KAAKb,GAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5D,EAAqB,CAAC,UAAU,CAAC,SAAsBwB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB+C,EAAiB,SAAS,yBAAyB,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,EAAE,UAAU,CAAC,gBAAgB,oEAAoE,CAAC,EAAE,SAAsBjD,EAAK9B,EAAS,CAAC,sBAAsB,GAAK,SAAsB8B,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+C,EAAiB,SAAS,yBAAyB,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,KAAKY,GAAY,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrF,EAAqB,CAAC,UAAU,CAAC,SAAsBwB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,kFAAkF,gYAAgY,sPAAsP,ySAAyS,2RAA2R,oMAAoM,gRAAgR,qUAAqU,+IAA+I,oLAAoL,uNAAuN,uIAAuI,4KAA4K,iJAAiJ,sMAAsM,yFAAyF,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAW35oBC,EAAgBC,EAAQnD,GAAUiD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,iBAAiBA,EAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,cAAc,mBAAmB,OAAO,mBAAmB,wBAAwB,qBAAqB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,iHAAiH,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,kDAAkD,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,0FAA0F,gBAAgB,GAAK,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,MAAM,SAAS,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withLineClamp2", "Component", "props", "text", "otherProps", "p", "fontStore", "fonts", "css", "className", "RichTextWithLineClamp2106gkg2", "withCodeBoundaryForOverrides", "RichText", "withLineClamp2", "RichTextWithLineClamp21fjf7ef", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "click", "date2", "description", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "SJjoQb9OW", "DTZXwsA7c", "wxMdHLhuV", "De6_gCG3K", "rPiNg2Ibn", "JAbAytKYi", "vsjyoV8lY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hh2v05", "args", "onTap3bt5s8", "scopingClassNames", "cx", "isDisplayed", "activeLocaleCode", "useLocaleCode", "textContent", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerCndtwL2_i", "withCSS", "CndtwL2_i_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
