{"version":3,"file":"TkVtt_hzI.yHhLmJZD.mjs","names":["useStore","Component","_Fragment","default1","TextFlip","className","Image","css"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/akUFHDy5XWDZdH79Kexp/jbiNTebJO6lvoqSjWTzt/Truncate_text.js","https:/framerusercontent.com/modules/4RJXAahb1OhdVMQ6b3AL/2528u1vmTqlG5QJYGBTv/TkVtt_hzI.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","import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});const LINES=4;export default function withLineTruncate(Component){return props=>{const styles={...props?.style,WebkitLineClamp:`${LINES}`,WebkitBoxOrient:\"vertical\",textOverflow:\"ellipsis\",display:\"-webkit-box\",overflow:\"hidden\"};return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Component,{...props,style:styles})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactHoc\",\"name\":\"withLineTruncate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Truncate_text.map","// Generated by Framer (b012016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import default1 from\"https://framerusercontent.com/modules/akUFHDy5XWDZdH79Kexp/jbiNTebJO6lvoqSjWTzt/Truncate_text.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/29zoGosG3quvGdQpSjzM/wEa54oP969lKIceOYaZO/rgd3b9S4n.js\";import TextFlip from\"https://framerusercontent.com/modules/6HfpCoH8qJ4t7KcgckrM/wMGh9bzZJxuLV0C9XpPZ/pqXOrgkc0.js\";const RichTextDefault114gu83q=withCodeBoundaryForOverrides(RichText,{nodeId:\"klbKL2FeV\",override:default1,scopeId:\"TkVtt_hzI\"});const RichTextDefault1t43p74=withCodeBoundaryForOverrides(RichText,{nodeId:\"pQPh9FdoQ\",override:default1,scopeId:\"TkVtt_hzI\"});const TextFlipFonts=getFonts(TextFlip);const enabledGestures={clXxJuE0C:{hover:true},wmXjLw7s3:{hover:true},wY96d83L7:{hover:true}};const cycleOrder=[\"wY96d83L7\",\"clXxJuE0C\",\"wmXjLw7s3\",\"cbiF_prSv\"];const serializationHash=\"framer-E1uFn\";const variantClassNames={cbiF_prSv:\"framer-v-1rz46ag\",clXxJuE0C:\"framer-v-11ksx1d\",wmXjLw7s3:\"framer-v-8c79vl\",wY96d83L7:\"framer-v-1w47166\"};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 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={\"Desktop (Stacked)\":\"wY96d83L7\",Horizontal:\"clXxJuE0C\",Mobile:\"cbiF_prSv\",Tablet:\"wmXjLw7s3\"};const getProps=({click,color,excerpt,height,id,link2,postImage,postTitle,width,...props})=>{return{...props,A1r0TOCtk:color??props.A1r0TOCtk??\"var(--token-119efbe0-a959-4430-894c-039aadbf958b, rgb(0, 151, 167))\",acOPss4Fw:postImage??props.acOPss4Fw,DncdLkwvc:postTitle??props.DncdLkwvc??\"The best 3 business analytics tools for your business\",gPrA_GDEt:excerpt??props.gPrA_GDEt??\"Introduction If you are running ads to your Shopify store, between 40-60% of purchases will no longer display in Facebook ads manager.\",koa934R29:link2??props.koa934R29,V_Iu2fW6j:click??props.V_Iu2fW6j,variant:humanReadableVariantMap[props.variant]??props.variant??\"wY96d83L7\"};};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,acOPss4Fw,DncdLkwvc,gPrA_GDEt,V_Iu2fW6j,koa934R29,A1r0TOCtk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wY96d83L7\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap18br65a=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(V_Iu2fW6j){const res=await V_Iu2fW6j(...args);if(res===false)return false;}});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(Link,{href:koa934R29,motionChild:true,nodeId:\"wY96d83L7\",openInNewTab:false,scopeId:\"TkVtt_hzI\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1w47166\",className,classNames)} framer-1jwfx00`,\"data-framer-name\":\"Desktop (Stacked)\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wY96d83L7\",onTap:onTap18br65a,ref:refBinding,style:{...style},...addPropertyOverrides({\"clXxJuE0C-hover\":{\"data-framer-name\":undefined},\"wmXjLw7s3-hover\":{\"data-framer-name\":undefined},\"wY96d83L7-hover\":{\"data-framer-name\":undefined},cbiF_prSv:{\"data-framer-name\":\"Mobile\"},clXxJuE0C:{\"data-framer-name\":\"Horizontal\"},wmXjLw7s3:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-na5l9u\",\"data-border\":true,\"data-framer-name\":\"Post Image\",layoutDependency:layoutDependency,layoutId:\"sWneNU2Nk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"wY96d83L7-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},cbiF_prSv:{backgroundColor:\"rgba(0, 0, 0, 0)\"},clXxJuE0C:{backgroundColor:\"var(--token-db43c2e7-a60a-45d5-be0b-fd77feddb5dc, rgba(255, 255, 255, 0.8))\"},wmXjLw7s3:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(acOPss4Fw)},className:\"framer-1rbk8rl\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"nWIAsOSLX\",...addPropertyOverrides({\"clXxJuE0C-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:801,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||280)-0-((componentViewport?.height||280)-0)*1)/2)+(0+(((componentViewport?.height||280)-0)*1-0-(((componentViewport?.height||280)-0)*1-0)*1.05)/2)),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px) * 1.05)`,...toResponsiveImage(acOPss4Fw),...{positionX:\"center\",positionY:\"center\"}}},\"wmXjLw7s3-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-10),sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,...toResponsiveImage(acOPss4Fw)}},\"wY96d83L7-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-10),sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,...toResponsiveImage(acOPss4Fw)}},clXxJuE0C:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:801,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||280)-0-((componentViewport?.height||280)-0)*1)/2)+(0+(((componentViewport?.height||280)-0)*1-0-(((componentViewport?.height||280)-0)*1-0)*1)/2)),sizes:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,...toResponsiveImage(acOPss4Fw),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkfths\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"qSdKr6Hrr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-22026c47-54a6-4e8e-b8b1-73c76440ab60, rgba(255, 255, 255, 0.6))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ecuzxg\",layoutDependency:layoutDependency,layoutId:\"hQZqj5WQd\",children:[/*#__PURE__*/_jsx(RichTextDefault114gu83q,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45)))\"},children:\"The best 3 business analytics tools for your business\"})}),className:\"framer-14gu83q\",fonts:[\"FS;Montserrat-medium\"],layoutDependency:layoutDependency,layoutId:\"klbKL2FeV\",style:{\"--extracted-1lwpl3i\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DncdLkwvc,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cbiF_prSv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45)))\"},children:\"The best 3 business analytics tools for your business\"})})},wmXjLw7s3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45)))\"},children:\"The best 3 business analytics tools for your business\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextDefault1t43p74,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e6a95ec-0db7-4c75-88e0-39cba066b308, rgba(24, 33, 45, 0.7)))\"},children:\"Introduction If you are running ads to your Shopify store, between 40-60% of purchases will no longer display in Facebook ads manager.\"})}),className:\"framer-t43p74\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pQPh9FdoQ\",style:{\"--extracted-r6o4lv\":\"var(--token-9e6a95ec-0db7-4c75-88e0-39cba066b308, rgba(24, 33, 45, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gPrA_GDEt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+0+416+20+243,...addPropertyOverrides({cbiF_prSv:{y:(componentViewport?.y||0)+0+416+20+149.6},clXxJuE0C:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||280)-0-((componentViewport?.height||280)-0)*1)/2)+20+(0+156.8+(((componentViewport?.height||280)-0)*1-40-173.8)/1*1)},wmXjLw7s3:{y:(componentViewport?.y||0)+0+416+20+196}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-frh1sl-container\",layoutDependency:layoutDependency,layoutId:\"eSRCBiuJa-container\",nodeId:\"eSRCBiuJa\",rendersWithMotion:true,scopeId:\"TkVtt_hzI\",children:/*#__PURE__*/_jsx(TextFlip,{dXdQDTO6H:A1r0TOCtk,height:\"100%\",id:\"eSRCBiuJa\",layoutId:\"eSRCBiuJa\",width:\"100%\",Zo4g84Vux:\"Learn more →\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E1uFn.framer-1jwfx00, .framer-E1uFn .framer-1jwfx00 { display: block; }\",\".framer-E1uFn.framer-1w47166 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 360px; }\",\".framer-E1uFn .framer-na5l9u { align-content: center; align-items: center; aspect-ratio: 0.9 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E1uFn .framer-1rbk8rl { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-E1uFn .framer-1jkfths { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 300px; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-E1uFn .framer-1ecuzxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-E1uFn .framer-14gu83q { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E1uFn .framer-t43p74 { flex: none; height: 88px; max-height: 88px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E1uFn .framer-frh1sl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-E1uFn.framer-v-11ksx1d.framer-1w47166 { aspect-ratio: 4 / 1; flex-direction: row; height: var(--framer-aspect-ratio-supported, 280px); overflow: hidden; width: 1120px; }\",\".framer-E1uFn.framer-v-11ksx1d .framer-na5l9u { aspect-ratio: unset; flex: 1 0 0px; height: 100%; width: 1px; }\",\".framer-E1uFn.framer-v-11ksx1d .framer-1rbk8rl { overflow: hidden; }\",\".framer-E1uFn.framer-v-11ksx1d .framer-1jkfths { flex: 1 0 0px; height: 100%; width: 1px; }\",\".framer-E1uFn.framer-v-11ksx1d .framer-1ecuzxg { align-content: flex-start; align-items: flex-start; }\",\".framer-E1uFn.framer-v-8c79vl .framer-1jkfths, .framer-E1uFn.framer-v-1rz46ag .framer-1jkfths { height: min-content; max-height: 400px; }\",\".framer-E1uFn.framer-v-8c79vl .framer-14gu83q { min-height: 68px; order: 0; }\",\".framer-E1uFn.framer-v-8c79vl .framer-t43p74, .framer-E1uFn.framer-v-1rz46ag .framer-t43p74 { order: 1; }\",\".framer-E1uFn.framer-v-1rz46ag .framer-14gu83q { max-height: 68px; order: 0; }\",\".framer-E1uFn.framer-v-1w47166.hover .framer-1rbk8rl, .framer-E1uFn.framer-v-8c79vl.hover .framer-1rbk8rl, .framer-E1uFn.framer-v-11ksx1d.hover .framer-1rbk8rl { flex: none; height: 105%; width: 105%; }\",\".framer-E1uFn.framer-v-11ksx1d.hover .framer-na5l9u { aspect-ratio: unset; }\",...sharedStyle.css,'.framer-E1uFn[data-border=\"true\"]::after, .framer-E1uFn [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 716\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"clXxJuE0C\":{\"layout\":[\"fixed\",\"fixed\"]},\"wmXjLw7s3\":{\"layout\":[\"fixed\",\"auto\"]},\"cbiF_prSv\":{\"layout\":[\"fixed\",\"auto\"]},\"XfetSvslI\":{\"layout\":[\"fixed\",\"auto\"]},\"XOWR0NwDy\":{\"layout\":[\"fixed\",\"auto\"]},\"DTDmHjzb6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"acOPss4Fw\":\"postImage\",\"DncdLkwvc\":\"postTitle\",\"gPrA_GDEt\":\"excerpt\",\"V_Iu2fW6j\":\"click\",\"koa934R29\":\"link2\",\"A1r0TOCtk\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTkVtt_hzI=withCSS(Component,css,\"framer-E1uFn\");export default FramerTkVtt_hzI;FramerTkVtt_hzI.displayName=\"Card/Post\";FramerTkVtt_hzI.defaultProps={height:716,width:360};addPropertyControls(FramerTkVtt_hzI,{variant:{options:[\"wY96d83L7\",\"clXxJuE0C\",\"wmXjLw7s3\",\"cbiF_prSv\"],optionTitles:[\"Desktop (Stacked)\",\"Horizontal\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},acOPss4Fw:{title:\"Post Image\",type:ControlType.ResponsiveImage},DncdLkwvc:{defaultValue:\"The best 3 business analytics tools for your business\",displayTextArea:false,title:\"Post Title\",type:ControlType.String},gPrA_GDEt:{defaultValue:\"Introduction If you are running ads to your Shopify store, between 40-60% of purchases will no longer display in Facebook ads manager.\",displayTextArea:false,title:\"Excerpt\",type:ControlType.String},V_Iu2fW6j:{title:\"Click\",type:ControlType.EventHandler},koa934R29:{title:\"Link 2\",type:ControlType.Link},A1r0TOCtk:{defaultValue:'var(--token-119efbe0-a959-4430-894c-039aadbf958b, rgb(0, 151, 167)) /* {\"name\":\"terentia\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FramerTkVtt_hzI,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.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\"}]},...TextFlipFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTkVtt_hzI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"716\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"clXxJuE0C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wmXjLw7s3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cbiF_prSv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XfetSvslI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOWR0NwDy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DTDmHjzb6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"360\",\"framerVariables\":\"{\\\"acOPss4Fw\\\":\\\"postImage\\\",\\\"DncdLkwvc\\\":\\\"postTitle\\\",\\\"gPrA_GDEt\\\":\\\"excerpt\\\",\\\"V_Iu2fW6j\\\":\\\"click\\\",\\\"koa934R29\\\":\\\"link2\\\",\\\"A1r0TOCtk\\\":\\\"color\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TkVtt_hzI.map"],"mappings":"+8BAA8E,SAAgB,GAAY,EAAO,CACjH,IAAM,EAAU,EAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAG,CAAO,EAAC,AAAC,EAAC,CAClD,EAAa,GAAU,CACwC,OAA3D,GAAW,aAAY,EAAS,EAAS,EAAU,MAAM,EAAE,EAAU,MAAM,OAAO,OAAO,CAAC,GAAG,EAAU,MAAM,GAAG,CAAS,EAAC,AAAE,EAClI,SAAkB,GAAS,SAAS,OAAO,OAAO,CAAC,GAAG,CAAO,EAAC,CAAC,EAC7D,EAAa,IAAI,IACjB,EAAc,GAAU,CAE9B,OADU,GAAW,aAAY,EAAS,EAAS,EAAW,EAAE,SAAkB,GAAW,SAAS,OAAO,OAAO,CAAC,GAAG,EAAW,GAAG,CAAS,EAAC,CAAC,EACjJ,EAAa,QAAQ,GAAQ,EAAO,EAAW,CAAC,AAAE,EAClD,SAASA,GAAU,CACnB,GAAK,CAAC,EAAM,EAAS,CAAC,EAAS,EAAW,CAK1C,MAHA,GAAU,KACV,EAAa,IAAI,EAAS,CAAO,IAAI,EAAa,OAAO,EAAS,EAAG,CAAE,EAAC,CACrE,GAAgB,IAAG,GAAM,GAAgB,CAAO,CAAC,EAAU,MAAM,CAAa,GAC3E,CAAC,EAAM,CAAc,CAAG,QAAOA,CAAU,cAf/C,GAAsC,IAAwC,GCCb,SAAwB,EAAiBC,EAAU,CAAC,MAAO,CAAA,GAAO,CAAC,IAAM,EAAO,CAAC,GAAG,GAAO,MAAM,mBAAmB,IAAQ,gBAAgB,WAAW,aAAa,WAAW,QAAQ,cAAc,SAAS,QAAS,EAAC,MAAoB,GAAKC,EAAU,CAAC,SAAsB,EAAKD,EAAU,CAAC,GAAG,EAAM,MAAM,CAAO,EAAC,AAAC,EAAC,AAAE,CAAE,kBAAvU,AADzD,GAAiE,IAAqE,CAChI,EAAS,GAAY,CAAC,WAAW,SAAU,EAAC,CAAO,EAAM,ICAu4C,SAAS,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,qDAWvjB,AAXtkC,GAAyD,IAAwT,IAAkE,IAA4B,CAA0B,GAAuH,IAAyH,KAAmH,CAAM,EAAwB,EAA6B,EAAS,CAAC,OAAO,YAAY,SAASE,EAAS,QAAQ,WAAY,EAAC,CAAO,EAAuB,EAA6B,EAAS,CAAC,OAAO,YAAY,SAASA,EAAS,QAAQ,WAAY,EAAC,CAAO,EAAc,EAASC,EAAS,CAAO,EAAgB,CAAC,UAAU,CAAC,OAAM,CAAK,EAAC,UAAU,CAAC,OAAM,CAAK,EAAC,UAAU,CAAC,OAAM,CAAK,CAAC,EAAO,EAAW,CAAC,YAAY,YAAY,YAAY,WAAY,EAAO,EAAkB,eAAqB,EAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAmB,EAA8L,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,EAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmB,EAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,GAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,EAAS,EAAO,OAAA,EAAsB,CAAO,EAAwB,CAAC,oBAAoB,YAAY,WAAW,YAAY,OAAO,YAAY,OAAO,WAAY,EAAO,EAAS,CAAC,CAAC,QAAM,QAAM,UAAQ,SAAO,KAAG,QAAM,YAAU,aAAU,SAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAO,EAAM,WAAW,sEAAsE,UAAU,GAAW,EAAM,UAAU,UAAU,IAAW,EAAM,WAAW,wDAAwD,UAAU,GAAS,EAAM,WAAW,yIAAyI,UAAU,GAAO,EAAM,UAAU,UAAU,GAAO,EAAM,UAAU,QAAQ,EAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAAS,EAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,GAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,gBAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,GAAG,EAAU,CAAC,EAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,aAAU,kBAAgB,cAAW,WAAS,CAAC,GAAgB,CAAC,aAAW,eAAe,YAAY,kBAAgB,IAAI,EAAW,UAAQ,mBAAkB,EAAC,CAAO,EAAiB,EAAuB,EAAM,EAAS,CAAM,CAAC,wBAAsB,QAAM,CAAC,GAAyB,EAAY,CAAO,EAAa,EAAsB,MAAM,GAAG,IAAO,CAAoC,GAAnC,EAAgB,CAAC,WAAU,CAAM,EAAC,CAAI,EAAU,CAAC,IAAM,EAAI,KAAM,GAAU,GAAG,EAAK,CAAC,GAAG,KAAM,EAAM,OAAO,CAAO,CAAC,EAAC,CAAO,EAAsB,CAAA,EAAuB,EAAO,EAAkB,EAAG,EAAkB,GAAG,EAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,EAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAK,EAAW,CAAC,MAAM,EAAY,SAAsB,EAAK,GAAK,CAAC,KAAK,EAAU,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,SAAsB,EAAM,EAAO,EAAE,CAAC,GAAG,EAAU,GAAG,EAAgB,aAAa,EAAG,EAAkB,iBAAiBC,EAAU,EAAW,CAAC,iBAAiB,mBAAmB,oBAAoB,kBAAiB,EAAsB,mBAAiB,SAAS,YAAY,MAAM,EAAa,IAAI,EAAW,MAAM,CAAC,GAAG,CAAM,EAAC,GAAG,EAAqB,CAAC,kBAAkB,CAAC,uBAAA,EAA6B,EAAC,kBAAkB,CAAC,uBAAA,EAA6B,EAAC,kBAAkB,CAAC,uBAAA,EAA6B,EAAC,UAAU,CAAC,mBAAmB,QAAS,EAAC,UAAU,CAAC,mBAAmB,YAAa,EAAC,UAAU,CAAC,mBAAmB,QAAS,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,aAA8B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4EAA4E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAmB,EAAC,UAAU,CAAC,gBAAgB,kBAAmB,EAAC,UAAU,CAAC,gBAAgB,6EAA8E,EAAC,UAAU,CAAC,gBAAgB,kBAAmB,CAAC,EAAC,SAAsB,EAAKC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,OAAO,MAAM,GAAmB,OAAO,QAAQ,QAAQ,GAAG,EAAkB,EAAU,AAAC,EAAC,UAAU,iBAAiB,mBAAmB,QAAyB,mBAAiB,SAAS,YAAY,GAAG,EAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,IAAI,GAAmB,QAAQ,KAAK,GAAG,GAAG,IAAI,KAAK,GAAmB,QAAQ,KAAK,GAAG,EAAE,KAAK,GAAmB,QAAQ,KAAK,GAAG,EAAE,GAAG,MAAM,GAAG,CAAC,OAAO,YAAY,GAAmB,OAAO,QAAQ,4BAA4B,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,QAAU,CAAC,EAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,CAAC,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,EAAkB,EAAU,AAAC,CAAC,EAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,CAAC,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,EAAkB,EAAU,AAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,IAAI,GAAmB,QAAQ,KAAK,GAAG,GAAG,IAAI,KAAK,GAAmB,QAAQ,KAAK,GAAG,EAAE,KAAK,GAAmB,QAAQ,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,OAAO,OAAO,GAAmB,OAAO,QAAQ,oBAAoB,GAAG,EAAkB,EAAU,CAAK,UAAU,SAAS,UAAU,QAAU,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4EAA4E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,8EAA8E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAwB,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,8FAA+F,EAAC,SAAS,uDAAwD,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,sBAAuB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,8FAA+F,EAAC,SAAS,uDAAwD,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,8FAA+F,EAAC,SAAS,uDAAwD,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAK,EAAuB,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,mGAAoG,EAAC,SAAS,wIAAyI,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2EAA2E,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,GAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,KAAM,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,IAAI,GAAmB,QAAQ,KAAK,GAAG,GAAG,GAAG,IAAI,SAAW,GAAmB,QAAQ,KAAK,GAAG,EAAE,GAAG,OAAO,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAI,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,GAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKF,EAAS,CAAC,UAAU,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,cAAe,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOG,GAAI,CAAC,kFAAkF,kFAAkF,iTAAiT,+XAA+X,oHAAoH,gRAAgR,kSAAkS,wLAAwL,wMAAwM,wGAAwG,oLAAoL,kHAAkH,uEAAuE,8FAA8F,yGAAyG,4IAA4I,gFAAgF,4GAA4G,iFAAiF,6MAA6M,+EAA+E,GAAA,EAAmB,+bAAgc,EAWtmf,EAAgB,EAAQ,GAAUA,GAAI,eAAe,GAAgB,EAAgB,EAAgB,YAAY,YAAY,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,oBAAoB,aAAa,SAAS,QAAS,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,MAAM,aAAa,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,wDAAwD,iBAAgB,EAAM,MAAM,aAAa,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,yIAAyI,iBAAgB,EAAM,MAAM,UAAU,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,MAAM,QAAQ,KAAK,EAAY,YAAa,EAAC,UAAU,CAAC,MAAM,SAAS,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,gGAAgG,MAAM,QAAQ,KAAK,EAAY,KAAM,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,EAAc,GAAG,EAAA,EAA0C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC"}