{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/n02aWbHQnmyyH33vVuLl/V3q8eCEAb1tnl4QtS9O7/BulzFvRvm-3.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as n,Link as r}from\"framer\";import{motion as i}from\"framer-motion\";import*as a from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";export const richText=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/t(\"p\",{children:[\"CoinTracker, fresh on the scene in 2021, \",/*#__PURE__*/e(\"strong\",{children:\"aimed to dominate the murky waters of cryptocurrency taxation\"}),\" \u2014 a new challenge for many investors needing to file crypto-related tax returns.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Despite their \",/*#__PURE__*/e(\"strong\",{children:\"innovative platform designed to simplify tax obligations\"}),\" for cryptocurrencies like Bitcoin, \",/*#__PURE__*/e(\"strong\",{children:\"CoinTracker was grappling with two major challenges\"}),\". Firstly, \",/*#__PURE__*/e(\"strong\",{children:\"they hadn\u2019t launched any paid social campaigns\"}),\", leaving a significant reach untapped. They turned to GR0 to ignite their market entry with a robust paid social strategy aimed at \",/*#__PURE__*/e(\"strong\",{children:\"securing a profitable return on ad spend at scale\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Additionally, while they had experimented with creating their own Google Ads, \",/*#__PURE__*/e(\"strong\",{children:\"their efforts were confined to modest budgets\"}),\" that barely scratched the surface of their potential. Their clear goal was to power through these limitations, \",/*#__PURE__*/e(\"strong\",{children:\"aiming to scale their advertising to achieve a sub-$100 cost per conversion\"}),\", specifically targeting high-intent nonbrand searches around crypto taxes. This dual strategy was not just about gaining visibility but ensuring \",/*#__PURE__*/e(\"strong\",{children:\"every ad dollar spent translated into real, paying subscribers\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Services\"})}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Paid Social\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Google Ads\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"At GR0, \",/*#__PURE__*/e(\"strong\",{children:\"our approach to launching CoinTracker\"}),\" into the competitive landscape of crypto taxation was \",/*#__PURE__*/e(\"strong\",{children:\"methodical and data-driven\"}),\". We started by \",/*#__PURE__*/e(\"strong\",{children:\"overhauling their Google Ads\"}),\", meticulously \",/*#__PURE__*/e(\"strong\",{children:\"targeting an extensive array of keywords\"}),\" specific to cryptocurrencies and trading platforms. This strategy wasn\u2019t just about reaching a wide audience; \",/*#__PURE__*/e(\"strong\",{children:\"it was about precision \"}),\"\u2014 connecting with users precisely when they were searching for crypto tax solutions.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"The backbone of our strategy was the aggressive use of CPA bidding\"}),\", which allowed us to tightly control costs while maximizing reach. As the tax season approached, \",/*#__PURE__*/e(\"strong\",{children:\"we strategically increased ad spend to match the spike in crypto trading activities\"}),\", leveraging the heightened market interest to drive conversions \",/*#__PURE__*/e(\"strong\",{children:\"at costs significantly below our initial CPA targets\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"On Meta, by utilizing both UGC and Static Ads targeting and targeting a mix of broad and highly targeted audiences, we were able to \",/*#__PURE__*/e(\"strong\",{children:\"significantly increase the awareness\"}),\" of CoinTracker\u2019s offerings which led not only to \",/*#__PURE__*/e(\"strong\",{children:\"additional conversions\"}),\", but also a \",/*#__PURE__*/e(\"strong\",{children:\"significant search lift on branded terms\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"We drove millions of impressions and \",/*#__PURE__*/e(\"strong\",{children:\"grew their user base by thousands of new customers per month profitably in just three short months\"}),\" and turned CoinTracker into a household name in the crypto tax space.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our \",/*#__PURE__*/e(\"strong\",{children:\"weekly sync-ups with CoinTracker\"}),\" were crucial for maintaining this momentum. By continuously analyzing performance data and adjusting our tactics in real-time, we made sure that \",/*#__PURE__*/e(\"strong\",{children:\"every campaign not only met but exceeded expectations\"}),\", demonstrating the power of adaptive strategy in digital marketing.\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 We mapped out CoinTracker's \",/*#__PURE__*/e(\"strong\",{children:\"rapid increase in user engagement\"}),\", capturing how strategic tweaks amplified conversions over time.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 Our crafted search ads targeted precise crypto-related queries, \",/*#__PURE__*/e(\"strong\",{children:\"efficiently drawing in a highly relevant audience\"}),\" keen on tax solutions.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"Analyzed how shifts in cryptocurrency prices influenced sign-up rates\"}),\", adjusting our strategies in real-time to capitalize on these trends.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 Demonstrated how CoinTracker became \",/*#__PURE__*/e(\"strong\",{children:\"a prominent name in the crypto tax space\"}),\", achieving \",/*#__PURE__*/e(\"strong\",{children:\"search term popularity\"}),\" on par with generic industry keywords like 'crypto taxes'.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1301\",src:\"https://framerusercontent.com/images/WwGYZRGDiDEQjpMuz86jLLpdpxQ.webp\",srcSet:\"https://framerusercontent.com/images/WwGYZRGDiDEQjpMuz86jLLpdpxQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/WwGYZRGDiDEQjpMuz86jLLpdpxQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/WwGYZRGDiDEQjpMuz86jLLpdpxQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/WwGYZRGDiDEQjpMuz86jLLpdpxQ.webp 3200w\",style:{aspectRatio:\"3200 / 2602\"},width:\"1600\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Results\"})}),/*#__PURE__*/e(\"p\",{children:\"\u2022 3.5x Return on Ad Spend (ROAS)\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 $100M Raised in Funding\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 7 Figure Ad Spend Increase\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/t(\"p\",{children:[\"Navigating the intricate space of crypto taxation, we managed to scale CoinTracker's monthly ad spend \",/*#__PURE__*/e(\"strong\",{children:\"from four figures to seven figures within a year\"}),\", reflecting a deep understanding of the market's dynamics.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our focused efforts in paid search and social campaigns directly influenced their monumental funding achievements, including \",/*#__PURE__*/e(\"strong\",{children:\"a remarkable $100 million raise that catapulted their valuation to $1.3 billion\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"The real victory here extends beyond numbers; \",/*#__PURE__*/e(\"strong\",{children:\"it's in establishing CoinTracker as a pioneering force in a niche market\"}),\", turning them into a fintech unicorn in record time. This was a significant step in legitimizing crypto tax services, making a complex process accessible and \",/*#__PURE__*/e(\"strong\",{children:\"driving unprecedented growth through strategic digital marketing\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"MoM ROAS\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"965\",src:\"https://framerusercontent.com/images/ZWwxA9H5pHA7U8l0koqDKPbuXE.webp\",srcSet:\"https://framerusercontent.com/images/ZWwxA9H5pHA7U8l0koqDKPbuXE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ZWwxA9H5pHA7U8l0koqDKPbuXE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZWwxA9H5pHA7U8l0koqDKPbuXE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZWwxA9H5pHA7U8l0koqDKPbuXE.webp 3252w\",style:{aspectRatio:\"3252 / 1930\"},width:\"1626\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1980\",src:\"https://framerusercontent.com/images/Bb7o5g6kVuxGOn9C4848PCaUE.webp\",srcSet:\"https://framerusercontent.com/images/Bb7o5g6kVuxGOn9C4848PCaUE.webp?scale-down-to=1024 827w,https://framerusercontent.com/images/Bb7o5g6kVuxGOn9C4848PCaUE.webp?scale-down-to=2048 1654w,https://framerusercontent.com/images/Bb7o5g6kVuxGOn9C4848PCaUE.webp 3200w\",style:{aspectRatio:\"3200 / 3960\"},width:\"1600\"})]});export const richText1=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/t(\"p\",{children:[\"Pluto, \",/*#__PURE__*/e(\"strong\",{children:\"a pioneering player in the digital wealth management arena\"}),\", launched an advanced beta web app aimed at \",/*#__PURE__*/e(\"strong\",{children:\"equipping subscribers with AI-enhanced tools\"}),\" for navigating the stock, equity, and cryptocurrency markets. Despite \",/*#__PURE__*/e(\"strong\",{children:\"its cutting-edge functionalities\"}),\" designed to empower users with insightful investment strategies, Pluto faced a critical challenge: \",/*#__PURE__*/e(\"strong\",{children:\"their user acquisition efforts were stalling\"}),\". The steep cost per acquisition (CPA) made scaling their user base \",/*#__PURE__*/e(\"strong\",{children:\"costly and inefficient\"}),\". The mission was clear yet daunting \u2014 \",/*#__PURE__*/e(\"strong\",{children:\"boost their platform's user base significantly\"}),\" while managing to keep the CPA within \",/*#__PURE__*/e(\"strong\",{children:\"profitable margins\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Services\"})}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Google Ads\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Campaign Strategy Overhaul\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Bid Management\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Keyword Optimization\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Retargeting Campaigns\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"At GR0, we took on Pluto\u2019s Google Ads challenges with \",/*#__PURE__*/e(\"strong\",{children:\"a streamlined, four-step game plan\"}),\". First, \",/*#__PURE__*/e(\"strong\",{children:\"we cut through the clutter\"}),\" by consolidating over-segmented campaigns, \",/*#__PURE__*/e(\"strong\",{children:\"boosting weekly conversions\"}),\" and paving the way for richer data insights. Next, \",/*#__PURE__*/e(\"strong\",{children:\"we switched from automated bidding to Manual CPC\"}),\" to fine-tune our bids based on real performance data, then \",/*#__PURE__*/e(\"strong\",{children:\"smoothly shifted back to a targeted CPA strategy\"}),\" once we had solid conversion metrics. We also \",/*#__PURE__*/e(\"strong\",{children:\"broadened our keyword strategy\"}),\", targeting a diverse range of terms to ramp up click-through rates. Lastly, \",/*#__PURE__*/e(\"strong\",{children:\"we dialed in our focus with sharp retargeting campaigns\"}),\" on Google's display network and YouTube, catching users who were \",/*#__PURE__*/e(\"strong\",{children:\"already warmed up and ready to engage\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 After merging fragmented campaigns, \",/*#__PURE__*/e(\"strong\",{children:\"we observed a more streamlined flow of user interactions\"}),\" that enhanced our analytical capabilities. This allowed us to \",/*#__PURE__*/e(\"strong\",{children:\"identify and double down on high-performing keywords\"}),\" and demographic segments, effectively reducing waste.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 By handling bids manually at first, \",/*#__PURE__*/e(\"strong\",{children:\"we could quickly adapt to market changes\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"optimize ad spend for the best performing ads\"}),\". This hands-on adjustment period was critical for setting up a successful return to automated strategies, \",/*#__PURE__*/e(\"strong\",{children:\"armed with better data\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"We introduced new keywords\"}),\" that tapped into less competitive but highly relevant areas of financial advice and crypto investment, which \",/*#__PURE__*/e(\"strong\",{children:\"broadened our reach\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"attracted a more engaged audience\"}),\" to Pluto's platform.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 We developed \",/*#__PURE__*/e(\"strong\",{children:\"custom retargeting ads\"}),\" that addressed previous visitor behaviors and preferences, \",/*#__PURE__*/e(\"strong\",{children:\"significantly increasing conversion rates\"}),\". These ads reminded users of Pluto\u2019s unique features just when they were \",/*#__PURE__*/e(\"strong\",{children:\"most likely to reconsider the value offered\"}),\", thereby\",/*#__PURE__*/e(\"strong\",{children:\" maximizing return visits and conversions\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Results\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"95% Decrease in CPA\"})]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"+300 Monthly Conversions\"})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/t(\"p\",{children:[\"Seeing Pluto's transformation was a real highlight for our team. We didn\u2019t just tweak a few settings; \",/*#__PURE__*/e(\"strong\",{children:\"we revamped their entire Google Ads strategy from the ground up\"}),\", which led to some pretty impressive results. \",/*#__PURE__*/e(\"strong\",{children:\"Simplifying their campaigns allowed us to gather clean, actionable data\"}),\" that informed every decision we made thereafter. \",/*#__PURE__*/e(\"strong\",{children:\"We managed bids by hand\"}),\" until we had enough data to let automation do the heavy lifting intelligently.\"]}),/*#__PURE__*/t(\"p\",{children:[\"The changes were clear and fast: \",/*#__PURE__*/e(\"strong\",{children:\"a dramatic drop in CPA and a surge in conversions\"}),\". This wasn\u2019t just a win on paper \u2014 \",/*#__PURE__*/e(\"strong\",{children:\"it was a strategic shift that positioned Pluto for new opportunities\"}),\", paving the way for their exciting \",/*#__PURE__*/e(r,{href:\"https://techcrunch.com/2024/07/01/robinhood-snaps-up-pluto-to-add-ai-tools-to-its-investing-app/\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:\"acquisition by Robinhood\"})}),\". This move marks a new chapter where Pluto's AI-driven capabilities will further enhance Robinhood's platform, offering users sophisticated tools to make smarter investment decisions quickly and efficiently. This success isn\u2019t just about scaling a business but about \",/*#__PURE__*/e(\"strong\",{children:\"setting a foundation for significant industry impact\"}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2118\",src:\"https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp\",srcSet:\"https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Qc9CjtZXqXuwObLGYKii1taVFVU.webp 4389w\",style:{aspectRatio:\"4389 / 4237\"},width:\"2194\"}),/*#__PURE__*/t(\"p\",{children:[\"The changes were clear and fast: \",/*#__PURE__*/e(\"strong\",{children:\"a dramatic drop in CPA and a surge in conversions\"}),\". This wasn\u2019t just a win on paper \u2014 \",/*#__PURE__*/e(\"strong\",{children:\"it was a strategic shift that positioned Pluto for new opportunities\"}),\", paving the way for their exciting \",/*#__PURE__*/e(r,{href:\"https://techcrunch.com/2024/07/01/robinhood-snaps-up-pluto-to-add-ai-tools-to-its-investing-app/\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:\"acquisition by Robinhood\"})}),\". This move marks a new chapter where Pluto's AI-driven capabilities will further enhance Robinhood's platform, offering users sophisticated tools to make smarter investment decisions quickly and efficiently. This success isn\u2019t just about scaling a business but about \",/*#__PURE__*/e(\"strong\",{children:\"setting a foundation for significant industry impact\"}),\".\"]})]});export const richText2=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"THE CHALLENGE\"})}),/*#__PURE__*/e(\"p\",{children:\"Alaskan King Crab Co. did not have access to their Facebook page and could not run paid ads through Meta, which was causing them to lose out on conversions. \"}),/*#__PURE__*/e(\"p\",{children:\"GR0\u2019s mission was to find a way to work around a disabled meta account to reinstate ads, capitalize on their following, and bring them new customers.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/embed/c4pJsM3n4_w?autoplay=1\"})})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"THE STRATEGY\"})}),/*#__PURE__*/t(\"p\",{children:[\"GR0\u2019s strategy focused on leveraging our impressive influencer connections to \",/*#__PURE__*/e(\"strong\",{children:\"whitelist creator accounts\"}),\" with the goal of increasing conversions.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"In Alaskan King Crab Co\u2019s case, we were able to successfully \",/*#__PURE__*/e(\"strong\",{children:\"scale and grow their ad account \"}),\"during Q4 using whitelisted creative.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Strategy wise, we relied heavily on \",/*#__PURE__*/e(\"strong\",{children:\"Advantage+Shopping campaigns \"}),\"and \",/*#__PURE__*/e(\"strong\",{children:\"broad targeting\"}),\", which improved top-of-funnel traffic and conversions all while the brand\u2019s meta account was disabled.\\xa0\"]}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/embed/aZXAtzLA3Yo?autoplay=1\"})})})]});export const richText3=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/e(\"p\",{children:\"Coco\u2019s goal was straightforward: to drive new users to their app. They wanted to target certain areas of Los Angeles to bring in new users and grow their presence in these neighborhoods. They were posting on their organic social accounts, but needed help transitioning into paid advertising. \"}),/*#__PURE__*/e(\"p\",{children:\"This is where GR0 stepped in with expertise and experience. We had a very specific goal - to create content to pique the interest of their intended audience and drive them to the app store to download their new favorite food delivery app.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/e(\"p\",{children:\"The strategy used in Coco's campaign differed slightly from the norm. Rather than linking to different web pages, we wanted all traffic to go directly to the app store to download Coco\u2019s app for use. Our creative team worked efficiently to identify the best creative angles and produce engaging content. \"}),/*#__PURE__*/e(\"p\",{children:\"The client specifically loved that our creative department was able to produce a range of creatives with a quick turnaround time. We created a mix of UGC, highly-produced content, and statics so they had a range of creative to run. In doing so, we were able to test a large batch of creative in a short period of time. This allowed us to quickly identify winners and optimize those ads.\"}),/*#__PURE__*/e(\"h3\",{children:\"Examples\"}),/*#__PURE__*/e(\"p\",{children:\"For one of our leading concepts, we filmed with a real life Coco user and her family. We used storytelling to create an authentic piece of content that resonated with Coco\u2019s audience.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"267\",src:\"https://framerusercontent.com/images/R7GRRpUvopKzjSHthcLeCgcxuCA.gif\",srcSet:\"https://framerusercontent.com/images/R7GRRpUvopKzjSHthcLeCgcxuCA.gif 300w\",style:{aspectRatio:\"300 / 534\"},width:\"150\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://www.youtube.com/embed/dFvYyds-WPY?autoplay=1\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:\"Video with Audio\"})}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Showcasing real customers\u2019 experiences and testimonials made Coco relatable and obtainable. We found creative ways to implement reviews into our ads to gain trust from the audience in a more authentic way:\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"540\",src:\"https://framerusercontent.com/images/3oeNSYPRPPAlH2y4VGCj3FaHJPY.png\",srcSet:\"https://framerusercontent.com/images/3oeNSYPRPPAlH2y4VGCj3FaHJPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/3oeNSYPRPPAlH2y4VGCj3FaHJPY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3oeNSYPRPPAlH2y4VGCj3FaHJPY.png 1080w\",style:{aspectRatio:\"1080 / 1080\"},width:\"540\"}),/*#__PURE__*/e(\"p\",{children:\"We used a combination of facts and humor to engage potential customers while making them feel good about using this unique food delivery service.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"191\",src:\"https://framerusercontent.com/images/QMfPyy0fTryo5O4Er9a8rwMEksk.webp\",srcSet:\"https://framerusercontent.com/images/QMfPyy0fTryo5O4Er9a8rwMEksk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QMfPyy0fTryo5O4Er9a8rwMEksk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QMfPyy0fTryo5O4Er9a8rwMEksk.webp 1374w\",style:{aspectRatio:\"1374 / 383\"},width:\"687\"}),/*#__PURE__*/e(\"h3\",{children:\"Proven Success\"}),/*#__PURE__*/e(\"p\",{children:\"Because of Coco\u2019s early success, they are expanding their reach and taking on ig opportunities in the tech space!\"}),/*#__PURE__*/e(\"p\",{children:\"Showcasing real users\u2019 experience of Coco for content made customers feel heard and brought a genuine feel to the ads We were ale to generate downloads based on a shared experience with the brand.\"}),/*#__PURE__*/e(\"p\",{children:\"An increase in app downloads shows the effectiveness of our campaign and the active engagement fostered through our work.\"})]});export const richText4=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/t(\"p\",{children:[\"The client faced a significant challenge as their Paid Social ROAS plummeted by approximately 33% in January following a period of intense promotional activity during November and December. With a goal set to achieve a minimum \",/*#__PURE__*/e(\"strong\",{children:\"1.5x return on ad spend\"}),\" in February, Lancer wanted to \",/*#__PURE__*/e(\"strong\",{children:\"reverse the downward trend\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"regain profitability\"}),\" in their paid social advertising efforts.\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Services\"})}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Paid Social\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Paid Search\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"To turn things around, it was crucial that we take a deep dive into the account. After a thorough review, we identified opportunities to pause underperforming campaigns and leverage those yielding positive results. This involved \",/*#__PURE__*/e(\"strong\",{children:\"expanding our audience targeting\"}),\" using first-party data and adjusting our Advantage Plus Shopping Campaign\u2019s percentages to \",/*#__PURE__*/e(\"strong\",{children:\"maximize budgets and enhance efficiency\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"During this month, we noticed a trend where certain ads with high ROAS received minimal spend due to other ads consuming the majority of the budget. This hindered our ability to scale performance. To address this, we moved these 'high ROAS, low spend' ads into a separate, identical campaign using post IDs, allowing us to \",/*#__PURE__*/e(\"strong\",{children:\"retain social proof\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"capitalize on their performance with increased spend\"}),\".\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 In our ASC, we adjusted our strategy by \",/*#__PURE__*/e(\"strong\",{children:\"allocating a higher budget percentage\"}),\" to 'existing customer' audiences while broadening our targeting to include additional email and customer files.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 We requested an email subscriber (non-purchaser) list and the last three years' customer file from the client to help \",/*#__PURE__*/e(\"strong\",{children:\"expand our first-party targeting capabilities\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"\u2022 We increased the 'existing audience' percentage in our Evergreen ASC campaign from 15% to 40%.\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 In our Sale ASC campaign, we boosted the 'existing audiences' percentage from 15% to 60%, aiming to drive more revenue during promotional periods.\"}),/*#__PURE__*/e(\"p\",{children:\"\u2022 To re-engage with past purchasers, we created a new custom audience ad set within our DPA Retargeting campaign.\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Wins\"})}),/*#__PURE__*/t(\"p\",{children:[\"What we are most proud of is our ability to\",/*#__PURE__*/e(\"strong\",{children:\" implement targeted adjustments\"}),\" across various campaigns, optimizing our advertising strategies for maximum effectiveness. In our ASC, we focused on engaging warm/hot audiences and \",/*#__PURE__*/e(\"strong\",{children:\"broadening our targeting\"}),\" to include additional email and customer files,\",/*#__PURE__*/e(\"strong\",{children:\" resulting in improved performance\"}),\". We successfully enhanced audience targeting in our Evergreen ASC and Sale ASC campaigns, to help re-engage more heavily with our MOF-BOF audiences. Our efforts extended to \",/*#__PURE__*/e(\"strong\",{children:\"re-engaging past purchasers\"}),\" through a new custom audience ad set within the DPA Retargeting campaign to further expand our outreach. We identified and \",/*#__PURE__*/e(\"strong\",{children:\"capitalized on high-ROAS ads with minimal spend \"}),\"establishing a dedicated campaign, optimizing overall performance.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"909\",src:\"https://framerusercontent.com/images/TjD1mb9BURy0ZIIR8shCfZGwtQw.webp\",srcSet:\"https://framerusercontent.com/images/TjD1mb9BURy0ZIIR8shCfZGwtQw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TjD1mb9BURy0ZIIR8shCfZGwtQw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TjD1mb9BURy0ZIIR8shCfZGwtQw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/TjD1mb9BURy0ZIIR8shCfZGwtQw.webp 3162w\",style:{aspectRatio:\"3162 / 1818\"},width:\"1581\"}),/*#__PURE__*/e(\"p\",{children:\"Above you can see the dip that occurred in January following their efforts in November and December, then the increase in February once they began working with GR0. With a goal of 1.5 ROAS, we achieved 1.9.\"})]});export const richText5=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/t(\"p\",{children:[\"Bragg approached us with frustrations, sharing that \",/*#__PURE__*/e(\"strong\",{children:\"their\"}),\" \",/*#__PURE__*/e(\"strong\",{children:\"previous partnership hadn't brought the results they had hoped for\"}),\". Bragg felt that their old partner\u2019s approach lacked the attention to detail necessary for their complex marketing needs, leading to inefficient budget spending and subpar email campaign performance. Before working with GR0, Bragg primarily relied on simplistic and generic email automations, mostly consisting of promotions like discounts and flash sales. These campaigns were generating a monthly revenue of around $8,500, which they wanted to increase.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Within months of implementation, \",/*#__PURE__*/e(\"strong\",{children:\"Bragg experienced a substantial increase in email campaign performance.\"}),\" The monthly average \",/*#__PURE__*/e(\"strong\",{children:\"revenue per campaign increased by over 100%\"}),\", skyrocketing from $8,500 \",/*#__PURE__*/e(\"strong\",{children:\"to approximately $18,500\"}),\". Open rates saw a significant uptick, \",/*#__PURE__*/e(\"strong\",{children:\"climbing from 41% to 50% on average. \"}),\"These improvements not only validate GR0's specific approach but also highlight the huge impact of strategic email marketing.\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Services\"})}),/*#__PURE__*/e(\"p\",{children:\"\u2022 Paid Social\"}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"Email and SMS marketing\"})]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"We accepted the challenge and made a game plan to increase email revenue for the client. Recognizing the limitations of Bragg's previous email strategy, we implemented an approach to \",/*#__PURE__*/e(\"strong\",{children:\"revamp their email marketing efforts. \"}),\"First, GR0 \",/*#__PURE__*/e(\"strong\",{children:\"completed a redesign and rebranding of their email templates\"}),\", infusing them with the brand's signature elements such as a distinct red bar and gold background, ensuring consistency, visual appeal, and brand recognition across all communications.\"]}),/*#__PURE__*/t(\"p\",{children:[\"We switched up and \",/*#__PURE__*/e(\"strong\",{children:\"diversified Bragg's email content beyond promotions\"}),\", incorporating a wide array of engaging materials sourced from Bragg's website. We threw in\",/*#__PURE__*/e(\"strong\",{children:\" blog posts, lifestyle tips, seasonal information, and most importantly, healthy recipes tailored to Bragg's product offerings\"}),\". This strategic shift not only enhanced the relevance of Bragg's emails but also catered to the diverse interests of their audience.\"]}),/*#__PURE__*/t(\"p\",{children:[\"We then implemented \",/*#__PURE__*/e(\"strong\",{children:\"advanced audience segmentation strategies\"}),\", ensuring that each email campaign reached the most relevant recipients. By segmenting Bragg's email list based on engagement levels and preferences, \",/*#__PURE__*/e(\"strong\",{children:\"GR0 significantly increased the effectiveness and personalization of Bragg's email outreach efforts.\"})]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 We experimented with different \",/*#__PURE__*/e(\"strong\",{children:\"lead capture strategies and pop-ups on platforms like Justuno\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 Email campaigns were themed around\",/*#__PURE__*/e(\"strong\",{children:\" special blog content like recipes and life hacks, highlighting relevant products that the client sold.\"}),\" Blog and newsletter content allowed us to educate the customer on the products while \",/*#__PURE__*/e(\"strong\",{children:\"keeping them engaged with the brand\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"\u2022 \\xa0Recipe content delivered an opportunity to teach the customer how to use the products while highlighting key ingredients that the client sells.\"}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 Deliverables included\",/*#__PURE__*/e(\"strong\",{children:\" email designs and SMS messages\"}),\" built out in their respective platforms.\"]}),/*#__PURE__*/e(\"p\",{children:\"\u2022 We created a Wellness Challenge email campaign to give users another opportunity to engage with the brand.\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Results\"})}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"215%\"}),\" - Increase Email Revenue\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"70%\"}),\" - Increased Engaged Audience\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 \",/*#__PURE__*/e(\"strong\",{children:\"21.95%\"}),\" - Increase Average Monthly Open Rates\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/t(\"p\",{children:[\"We are so proud of the significant transformation we achieved in their email marketing approach. Despite having prior experience with email campaigns, our strategic segmentation and revamped email strategies enabled them to \",/*#__PURE__*/e(\"strong\",{children:\"generate substantially more revenue through email than ever before\"}),\". Witnessing such tangible and impactful results is incredibly fulfilling, as it \",/*#__PURE__*/e(\"strong\",{children:\"shows the effectiveness of our tailored approach and the value we bring to our clients' businesses\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"There is huge potential that lies within refining email strategy.\"}),\" By implementing \",/*#__PURE__*/e(\"strong\",{children:\"new content, segmentation techniques, and enhancing automations\"}),\", the possibilities for turning\",/*#__PURE__*/e(\"strong\",{children:\" email into a highly lucrative channel \"}),\"are endless. Our approach \",/*#__PURE__*/e(\"strong\",{children:\"maximizes revenue and fosters deeper engagement\"}),\" with the audience, ultimately driving \",/*#__PURE__*/e(\"strong\",{children:\"long-term success and business growth.\"})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:'\"YoY Growth\" or \"MoM ROAS\"'})}),/*#__PURE__*/e(\"p\",{children:\"Below you can see the huge increase from August to April of this year:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"418\",src:\"https://framerusercontent.com/images/SqWUJI1uHvwRDurT934zFbA54.png\",srcSet:\"https://framerusercontent.com/images/SqWUJI1uHvwRDurT934zFbA54.png?scale-down-to=512 512w,https://framerusercontent.com/images/SqWUJI1uHvwRDurT934zFbA54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SqWUJI1uHvwRDurT934zFbA54.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SqWUJI1uHvwRDurT934zFbA54.png 2320w\",style:{aspectRatio:\"2320 / 836\"},width:\"1160\"}),/*#__PURE__*/e(\"p\",{children:\"Here you can see the 39% increase in attributed revenue compared to the previous period:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"510\",src:\"https://framerusercontent.com/images/nZSRBNmp4XGX4ARbSI0QNniCAw.png\",srcSet:\"https://framerusercontent.com/images/nZSRBNmp4XGX4ARbSI0QNniCAw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nZSRBNmp4XGX4ARbSI0QNniCAw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nZSRBNmp4XGX4ARbSI0QNniCAw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nZSRBNmp4XGX4ARbSI0QNniCAw.png 2322w\",style:{aspectRatio:\"2322 / 1020\"},width:\"1161\"})]});export const richText6=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/t(\"p\",{children:[\"Ritual is an extremely marketing-savvy brand, but \",/*#__PURE__*/e(\"strong\",{children:\"their reach had hit a wall.\"}),\" They successfully promoted themselves through Facebook and paid Google ads, but \",/*#__PURE__*/e(\"strong\",{children:\"their site traffic started to plateau\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"New customers decreased\"}),\", and the cost of Google marketing was becoming a\",/*#__PURE__*/e(\"strong\",{children:\" financial strain on the company.\"})]}),/*#__PURE__*/t(\"p\",{children:[\"\u200DGR0\u2019s mission was to help Ritual reach new customers using cost-effective and organic marketing, so we committed to a strategy focused on \",/*#__PURE__*/e(\"strong\",{children:\"creating helpful blog posts \"}),\"and enhancing how easily people could\",/*#__PURE__*/e(\"strong\",{children:\" find Ritual\u2019s main product pages\"}),\" when searching online.\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"We dove head-first into a \",/*#__PURE__*/e(\"strong\",{children:\"content-focused campaign\"}),\", producing blog posts content that answered key questions from Ritual\u2019s audience. We also improved Ritual's visibility in organic search by \",/*#__PURE__*/e(\"strong\",{children:\"optimizing their key product landing pages\"}),\", which helped them rank for the most relevant keywords.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"When GR0 started working with Ritual, they had an estimated 12,000 unique monthly visitors. Within one year, Ritual saw that number \",/*#__PURE__*/e(\"strong\",{children:\"increase to 65,000 monthly visitors\"}),\", which would have cost them an estimated $164,000 \",/*#__PURE__*/e(\"strong\",{children:\"using paid media\"}),\" like PPC, branded content, and ads.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"They now see a \",/*#__PURE__*/e(\"strong\",{children:\"steady flow of unique customers\"}),\", up to 200,000 per month, thanks to the long-lasting results of our campaign.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our approach even helped Ritual \",/*#__PURE__*/e(\"strong\",{children:\"rank No. 3 in the Google results \"}),\"for the high-competition term \u201CPrenatal Vegan Vitamins.\u201D\"]})]});export const richText7=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"In the music industry, an artist's album release is a golden opportunity for merchandise sales. However, with the highly anticipated release of Billie Eilish's \\\"Happier Than Ever,\\\" \",/*#__PURE__*/e(\"strong\",{children:\"the market was flooded with knockoff stores\"}),\" eager to capitalize on the buzz.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Eilish's team faced the challenge of \",/*#__PURE__*/e(\"strong\",{children:\"regaining their market share\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"maximizing sales\"}),\" from the surge in search volume around the album's release.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"First, we targeted \",/*#__PURE__*/e(\"strong\",{children:\"Google Shopping Campaigns\"}),\". Recognizing the \",/*#__PURE__*/e(\"strong\",{children:\"high intent behind specific searches\"}),\", we launched campaigns targeting terms such as \u201CBillie Eilish hoodies\u201D and \u201CBillie Eilish merch\u201D to capture those eager to purchase genuine merchandise.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Next, we focused on \",/*#__PURE__*/e(\"strong\",{children:\"Meta Ad Integration\"}),\". To expand reach and impact, ads were also rolled out on Meta platforms, ensuring a \",/*#__PURE__*/e(\"strong\",{children:\"comprehensive online presence\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Using this approach, we were able to help the Billie Eilish team \",/*#__PURE__*/e(\"strong\",{children:\"reclaim market share\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"exceed sales goals\"}),\", and achieve \",/*#__PURE__*/e(\"strong\",{children:\"broad product promotion\"}),\" for their 756 SKUs including hats, t-shirts, hoodies, vinyls, CDs, and digital downloads.\"]})]});export const richText8=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"The challenge with Sunmed came from a strictly digital standpoint. Sunmed has always been well-known for their brick and mortar presence, being one of the largest retailers in the CBD industry, but had little to no online presence until working with GR0. Our aim was to bridge the gap and leverage a full funnel affiliate program to translate this reputation into a successful web presence.\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 launched an affiliate program on ShareASale and began recruiting the \",/*#__PURE__*/e(\"strong\",{children:\"highest quality partners\"}),\" to promote the brand and drive traffic to the site. We carefully vetted each opportunity and provided extensive detail and recommendations to Sunmed so they could make a \",/*#__PURE__*/e(\"strong\",{children:\"simple, informed decision\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"While working to establish the conversion side of the channel turning visitors into customers, we had to ensure affiliate partners were driving new customers to the site. After many months of hard work, we were able to get Sunmed \",/*#__PURE__*/e(\"strong\",{children:\"approved by Healthline (our top content target)\"}),\" and engaged in a paid placement package to \",/*#__PURE__*/e(\"strong\",{children:\"drive awareness for the brand\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"After getting Sunmed into Healthline, it became the top source of visitors, bringing in more than 5,000 clicks in just 6 weeks. When we compare those 6 weeks to the time before, Sunmed had \",/*#__PURE__*/e(\"strong\",{children:\"132% more\"}),\" customers coming from affiliate links. This is even more impressive because the 6 weeks prior, Sunmed had its best month ever in the program's history. This just drives home the point that Healthline was a worthwhile investment and we made the right choice.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Examples\"}),/*#__PURE__*/t(\"p\",{children:[\"Initially, we aimed to partner with \",/*#__PURE__*/e(\"strong\",{children:\"reputable affiliates \"}),\"who specialize in converting customers, creating a steady income and \",/*#__PURE__*/e(\"strong\",{children:\"dominating search traffic\"}),\" related to our brand. By securing our position in searches for discounts and offers, we prevented competitors from grabbing potential customers and made it easier for new customers to smoothly check out while enjoying a discount on our brand. To make sure our budget wasn't heavily affected by these partners, we set up a commission structure that maximized their impact \",/*#__PURE__*/e(\"strong\",{children:\"without adding extra costs\"}),\" for us.\"]}),/*#__PURE__*/t(\"p\",{children:[\"In addition to owning discount search traffic, we partnered with \",/*#__PURE__*/e(\"strong\",{children:\"UpSellIt\"}),\", a conversion specialist, and integrated their unique technology with our lifecycle team\u2019s work in\",/*#__PURE__*/e(\"strong\",{children:\" Klaviyo\"}),\". UpSellIt\u2019s cart-abandonment pop-up would show shoppers items from their cart, offer a \",/*#__PURE__*/e(\"strong\",{children:\"time-limited discount\"}),\", and display the final checkout total to urge customers to follow through with a purchase. This made the discount more real for customers and boosted our average affiliate conversion rate significantly. We went from \",/*#__PURE__*/e(\"strong\",{children:\"11.2%\"}),\" (Jan - July 2023) to an impressive \",/*#__PURE__*/e(\"strong\",{children:\"20.1%\"}),\" (August 23 - Jan 24) - marking a \",/*#__PURE__*/e(\"strong\",{children:\"79.39% increase\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"In addition to newsletter sponsorships, Sunmed was placed as the \",/*#__PURE__*/e(\"strong\",{children:\"Featured Partner Offer\"}),\" at the top of the following high-traffic articles:\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1770\",src:\"https://framerusercontent.com/images/RcuDvFA17Ro2JQMzLjEdX3wcG4.webp\",srcSet:\"https://framerusercontent.com/images/RcuDvFA17Ro2JQMzLjEdX3wcG4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/RcuDvFA17Ro2JQMzLjEdX3wcG4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/RcuDvFA17Ro2JQMzLjEdX3wcG4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/RcuDvFA17Ro2JQMzLjEdX3wcG4.webp 4016w\",style:{aspectRatio:\"4016 / 3540\"},width:\"2008\"}),/*#__PURE__*/e(\"h3\",{children:\"Our Wins\"}),/*#__PURE__*/e(\"p\",{children:\"Getting approved by Healthline is no easy feat, but we were dedicated to explaining the benefits of this placementI We clearly communicated with Sunmed the value of getting in with this publisher and they were willing to commit the financial resources to make it happenI Our goal is to establish the Sunmed brand as a web presence that meets their brick and mortar reputation, and this Healthline partnership is a huge step in doing so.\"}),/*#__PURE__*/e(\"p\",{children:\"\u200DIn the six weeks prior to GR0 taking over SunMed\u2019s affiliate work, the company had their biggest month in company history thanks to a boost from our Black Friday/Cyber Monday campaign. Even without the advantage of major seasonal shopping days, GR0 was still able to increase their traffic by another 132% in the six weeks since launching the Healthline partnership. This further illustrates the massive impact of GR0\u2019s expertise and partnership in a highly-competitive space.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"262\",src:\"https://framerusercontent.com/images/SsbsYKOcV3C3Wfub4C95OqTjcU.png\",srcSet:\"https://framerusercontent.com/images/SsbsYKOcV3C3Wfub4C95OqTjcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SsbsYKOcV3C3Wfub4C95OqTjcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SsbsYKOcV3C3Wfub4C95OqTjcU.png 1600w\",style:{aspectRatio:\"1600 / 525\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:\"The growth in clicks and revenue is pretty steadily increasing, reaching over $84k in revenue in less than one year\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"978\",src:\"https://framerusercontent.com/images/xirLZYJjL5QYtaru5gZEz0jI.webp\",srcSet:\"https://framerusercontent.com/images/xirLZYJjL5QYtaru5gZEz0jI.webp?scale-down-to=1024 848w,https://framerusercontent.com/images/xirLZYJjL5QYtaru5gZEz0jI.webp 1620w\",style:{aspectRatio:\"1620 / 1956\"},width:\"810\"}),/*#__PURE__*/e(\"p\",{children:\"GR0 earned Sunmed a spot as a featured partner in Healthline, which is a difficult thing to accomplish\"})]});export const richText9=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Previously, Agent Nateur relied on a freelancer to handle their digital marketing campaigns but found limitations in achieving their \",/*#__PURE__*/e(\"strong\",{children:\"desired growth \"}),\"and\",/*#__PURE__*/e(\"strong\",{children:\" market visibility\"}),\". The primary challenges included inconsistent brand messaging, under-optimized campaigns, and missed opportunities to retarget potential customers. Their goals in working with us were to\",/*#__PURE__*/e(\"strong\",{children:\" scale their digital marketing efforts\"}),\" with a comprehensive strategy, increase revenue, improve brand positioning through optimized ad campaigns, and better capture customers across various channels. They sought\",/*#__PURE__*/e(\"strong\",{children:\" consistent performance \"}),\"growth while \",/*#__PURE__*/e(\"strong\",{children:\"maximizing their ROAS\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"To increase brand visibility, the client utilized several tactics to enhance paid search efforts. They launched their product feed on Datafeedwatch, which allowed for the rapid and efficient \",/*#__PURE__*/e(\"strong\",{children:\"creation of tailored product titles and descriptions\"}),\", as well as facilitated the testing of lifestyle images. Custom labels set up via Datafeedwatch also enabled the segmentation of Performance Max campaigns by product type.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Performance Max asset groups were further segmented by product type, allowing for the creation of customized ad copy, creative assets, custom labels, and audience targeting tailored specifically for high-intent buyers. For example, a beauty supplements asset group was created with copy, visuals, and audiences specifically targeted towards potential beauty supplement purchasers. This strategy ensured that 85% of the budget was\",/*#__PURE__*/e(\"strong\",{children:\" effectively allocated \"}),\"to \",/*#__PURE__*/e(\"strong\",{children:\"Performance Max campaigns\"}),\".\u200D \"]}),/*#__PURE__*/t(\"p\",{children:[\"In November 2023, a display\",/*#__PURE__*/e(\"strong\",{children:\" remarketing campaign\"}),\" was launched to capture previous visitors who hadn't yet made a purchase. The campaign generated 70 conversions, $23,000 in revenue, and a 4x ROAS, with only 5% of the budget allocated to remarketing.\u200D\"]}),/*#__PURE__*/e(\"p\",{children:\"Since the Agent Nateur brand is also sold through major retailers, a 15% introductory offer was implemented in their shopping feed to encourage direct purchases through the brand's website rather than through third-party sellers like Revolve or Dermstore. This incentive made the brand competitive with other retailers and helped increase CTR within Performance Max listing groups.\"}),/*#__PURE__*/e(\"h3\",{children:\"Examples\"}),/*#__PURE__*/e(\"p\",{children:\"During a sitewide % discount promotion, our approach gained remarkable results despite initial constraints on additional spend. We strategically launched catalog ads, static images, and video assets to maximize impact.\u200D\"}),/*#__PURE__*/t(\"p\",{children:[\"Within the first day of launch, these ads achieved an impressive \",/*#__PURE__*/e(\"strong\",{children:\"19x ROAS \"}),\"and a\",/*#__PURE__*/e(\"strong\",{children:\" 22% conversion rate\"}),\". This success extended beyond the specific ads, with the entire account experiencing a substantial lift to a \",/*#__PURE__*/e(\"strong\",{children:\"47x ROAS\"}),\" and a \",/*#__PURE__*/e(\"strong\",{children:\"107% CVR\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"With allocation of additional budget, our ads maintained strong performance, achieving a \",/*#__PURE__*/e(\"strong\",{children:\"20x ROAS\"}),\" and a \",/*#__PURE__*/e(\"strong\",{children:\"29% CVR\"}),\". Overall, during this promotional period, the account achieved a remarkable \",/*#__PURE__*/e(\"strong\",{children:\"38x ROAS\"}),\" and a \",/*#__PURE__*/e(\"strong\",{children:\"90% CVR\"}),\", showcasing the effectiveness of our tailored strategies in maximizing ROI and engagement.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"A strategic focus on TOF campaigns drove significant growth in net new customers for Agent Nateur. Analysis of three specific ASC campaigns revealed that 70% of the budget allocated to these campaigns contributed to acquiring new customers, resulting in \",/*#__PURE__*/e(\"strong\",{children:\"115% increase in revenue\"}),\". Despite averaging approximately $100 per day in spending, these campaigns delivered close to a 10x ROAS, surpassing the monthly average. This performance shows the\",/*#__PURE__*/e(\"strong\",{children:\" scalability\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"effectiveness\"}),\" of our TOF campaigns in expanding Agent Nateur's customer base while ensuring a high return on investment.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Proven Success\"}),/*#__PURE__*/t(\"p\",{children:[\"Our strategic approach proved highly effective as we scaled Agent Nateur's overall revenue while \",/*#__PURE__*/e(\"strong\",{children:\"maintaining a ROAS of 7x\"}),\" through the Performance Max campaign. By optimizing the shopping feed titles, segmenting products within asset groups, and creating tailored ad copy and creative, we ensured that the campaign reached high-intent audiences. This combination of techniques maximized the impact of Performance Max, leading to \",/*#__PURE__*/e(\"strong\",{children:\"consistent growth\"}),\" while\",/*#__PURE__*/e(\"strong\",{children:\" retaining profitability\"}),\". The strategy also allowed us to capture both branded and non-branded search traffic, further expanding their customer base and reinforcing brand loyalty.\"]})]});export const richText10=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Swimwear brand Solid & Striped wanted to \",/*#__PURE__*/e(\"strong\",{children:\"target niche terms more aggressively\"}),\" to outperform their competitors on SERPs.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u200DThey aimed to do better than their competition on \",/*#__PURE__*/e(\"strong\",{children:\"search engine for specific, specialized words\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"\u200DWhen it came to high-value search terms like \u201Cbikini\u201D and \u201Cbikini bottoms,\u201D the brand was stuck on pages 6 and 8 of the SERPs, respectively.\\xa0\"}),/*#__PURE__*/t(\"p\",{children:[\"\u200DOur mission was to \",/*#__PURE__*/e(\"strong\",{children:\"get them to the first page \"}),\"to drive more organic straffic to their site.\"]}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"Strategy\"]}),/*#__PURE__*/t(\"p\",{children:[\"First, GR0 identified competitive \",/*#__PURE__*/e(\"strong\",{children:\"high volume keywords\"}),\" that were great opportunities to rank better.\\xa0 We were certain our link acquisition process could get \",/*#__PURE__*/e(\"strong\",{children:\"S&S to rank on page 1 of SERPs\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u200DWith non-branded links, we built authority for Solid and Striped\u2019s\\xa0 target pages. \",/*#__PURE__*/e(\"strong\",{children:\"Total keywords\"}),\" for our target page have increased by nearly 60% and \",/*#__PURE__*/e(\"strong\",{children:\"keywords ranking on page one \"}),\"of SERPs is up 720% +.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u200DOur \",/*#__PURE__*/e(\"strong\",{children:\"most impressive wins\"}),\" were for the term \u201CBikini,\u201D which went from position 55 to 1, and \u201CBikini Bottoms\u201D which we moved from page 8 to page 1.\"]})]});export const richText11=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Dental insurance, as an industry, is teeming with fierce competition. Flossy, while aiming to disrupt the market, grappled with the challenge of \",/*#__PURE__*/e(\"strong\",{children:\"scaling their lead generation campaigns \"}),\"without elevating the associated costs.Our mission was to help increase their valuable leads via a robust\",/*#__PURE__*/e(\"strong\",{children:\" search ads strategy\"}),\" that included \",/*#__PURE__*/e(\"strong\",{children:\"account restructuring\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"synchronized keyword and ad copy\"}),\", and strategic\",/*#__PURE__*/e(\"strong\",{children:\" bid optimization\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"GR0 took a 3-prong approach to improving Flossy\u2019s lead gen through Google Ads:\"}),\"\u200D\"]}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Account Restructure:\\xa0\"}),\"Recognizing the power of segmentation, GR0 remodeled Flossy's account, \",/*#__PURE__*/e(\"strong\",{children:\"segmenting search campaigns based on match type\"}),\". This strategic shift allowed for \",/*#__PURE__*/e(\"strong\",{children:\"tailored ad copy\"}),\" and bids, ensuring relevance to targeted audience segments.\u200D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Synchronized Keyword and Ad Copy:\\xa0\"}),\"With a keen eye on keyword relevance, GR0 meticulously \",/*#__PURE__*/e(\"strong\",{children:\"aligned Flossy's keywords with their ad copies\"}),\". This guaranteed that the ads echoed the search intent of potential leads.\u200D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bid Optimization:\\xa0\"}),\"Efficiency was paramount. GR0 revamped Flossy's bid strategy, ensuring the brand achieved \",/*#__PURE__*/e(\"strong\",{children:\"maximum returns on their advertising expenditure.\"})]})})]})]});export const richText12=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/e(\"p\",{children:\"The client approached GR0 with minimal digital and ecommerce marketing efforts, having primarily focused on success through physical retail channels. Seeking to build a go-to-market strategy for ecommerce, they turned to us. The client's primary digital marketing expense was around $200 per month, used to boost Instagram posts in an attempt to drive traffic to their website and hoping to convert visitors into customers. Their overarching goal was to expand their online presence, transitioning away from dependence on physical retail, and to increase their marketing budget to generate sufficient revenue for their ecommerce store to thrive independently.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/e(\"p\",{children:\"To address the client's challenges, we took a personalized approach. We completed a thorough competitive analysis within the industry, examining existing ads to gain insights. With this data, we crafted creative briefs for influencers, ensuring successful angles and content seen in the market. Then we designed a proprietary account structure and full funnel, aligning creatives with each stage. The client gave us full autonomy over ad accounts and strategies, with a simple approval process preceding the launch of new ads. Our strategies covered everything from funnel structuring to creative ideation, all geared towards driving ecommerce traffic and conversions. \"}),/*#__PURE__*/e(\"p\",{children:\"A very meaningful aspect of our collaboration was the end-to-end management of creative production from conception to execution, which supported our overarching go-to-market strategy. Given the ground-up nature of the project, we built the account and funnel from scratch, generating all ecommerce traffic and conversions. \"}),/*#__PURE__*/e(\"p\",{children:\"As for services utilized, the campaign primarily revolved around Paid Social, initially budgeted at $500-$1000 per month and scaling up to $15k as the campaign progressed and the client transitioned to managing things in-house.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/e(\"p\",{children:\"What stands out as particularly impressive about our work for this client is the demonstrated profitability of digital marketing in transforming their business. We were able to build success through digital channels, effectively reducing their dependency on traditional physical retail outlets. This shift expanded their revenue streams and helped with challenges associated with scaling physical retail, such as substantial overhead costs and narrow profit margins. Our efforts have introduced new profitability for WILT, with increased profits driven by improved margins stemming from reduced overhead expenses.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=we0n8ehmxwQ\"})})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=9TE-M3xY7Wc\"})})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=wHdhcf74NBs\"})})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=h8MdKauSndI\"})})})]});export const richText13=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Venus et Fleur has worked with mediocre SEO agencies in the past, so beyond showcasing quick SEO results, GR0 also had to gain the client\u2019s trust.\u200D\"}),/*#__PURE__*/e(\"p\",{children:\"Venus et Fleur started with a low number of referring domains, so we needed to align their website with SEO best practices.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We wrote more than \",/*#__PURE__*/e(\"strong\",{children:\"180 pieces of top-quality, highly relevant content \"}),\"to help the website rank for new keywords to drive awareness traffic to the website.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We \",/*#__PURE__*/e(\"strong\",{children:\"optimized priority pages\"}),\" to focus on a niche keyword and \",/*#__PURE__*/e(\"strong\",{children:\"strategically internal linked\"}),\" the pages within our content.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"By going after \",/*#__PURE__*/e(\"strong\",{children:\"100 non-branded backlinks,\"}),\" we helped increase the number of referring domains to Venus et Fleur while working on improving keyword ranking on specific pages.\"]})]});export const richText14=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"As part of the highly competitive beauty ecommerce sector, our magnetic lash client faced challenges in \",/*#__PURE__*/e(\"strong\",{children:\"increasing the efficiency and Return On Ad Spend (ROAS)\"}),\" for their Google Ads campaigns.\\xa0\u200DThe company wanted to ensure that every dollar spent was channeled effectively to \",/*#__PURE__*/e(\"strong\",{children:\"achieve the maximum ROI.\"}),\"\u200DGR0\u2019s mission was to help them do just that through a robust Google Ads strategy including \",/*#__PURE__*/e(\"strong\",{children:\"optimized keyword targeting\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"effective ad copy\"}),\", and a \",/*#__PURE__*/e(\"strong\",{children:\"streamlined product feed\"}),\".\"]}),/*#__PURE__*/t(\"h2\",{children:[/*#__PURE__*/e(\"br\",{}),\"The Strategy\"]}),/*#__PURE__*/e(\"p\",{children:\"GR0 used a 3-prong approach for our client:\"}),/*#__PURE__*/e(\"h4\",{children:\"Optimize Keyword Targeting\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 collaborated closely with the client to pinpoint \",/*#__PURE__*/e(\"strong\",{children:\"the most impactful keywords for their specific audience\"}),\", leading to improved campaign efficiency and a lower CPA.\"]}),/*#__PURE__*/e(\"h4\",{children:\"Craft Effective Ad Copy\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 developed \",/*#__PURE__*/e(\"strong\",{children:\"ad copy that resonated with the client\u2019s core audience, boosting click-through rates and, consequently, conversions.\"})]}),/*#__PURE__*/e(\"h4\",{children:\"Streamline Product Feed\"}),/*#__PURE__*/t(\"p\",{children:[\"Leveraging cutting-edge feed-management software, GR0 \",/*#__PURE__*/e(\"strong\",{children:\"optimized and tested various product listing ad components\"}),\", unveiling significant potential in the performance max campaign domain.\"]})]});export const richText15=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"ASYSTEM was interested in \",/*#__PURE__*/e(\"strong\",{children:\"boosting their organic performance\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"building authority\"}),\" in the largely competitive supplements industry. Because of the \",/*#__PURE__*/e(\"strong\",{children:\"extra red-tape of their field\"}),\", we focused on improving their expertise, authoritativeness, and trustworthiness (E-E-A-T) to increase their domain authority and rankings.\u200D\"]}),/*#__PURE__*/e(\"p\",{children:\"In an immensely competitive modern market, ASYSTEM needed a dedicated and innovative approach.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"ASYSTEM found success through a content strategy adding information relevant to their products. Using GR0\u2019s \",/*#__PURE__*/e(\"strong\",{children:\"guest blogging services\"}),\", the content strategy was supported through the use of the same topics and keywords.\u200D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"GR0 improved their E-E-A-T score through \",/*#__PURE__*/e(\"strong\",{children:\"medically-reviewed content\"}),\". GR0 created pages for medical reviewers to highlight their credentials, background, and achievements to give ASYSTEM\u2019s content more credibility and authority.\u200D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"GR0 revamped the ASYSTEM \",/*#__PURE__*/e(\"strong\",{children:\"Google My Business profile\"}),\" to demonstrate trustworthiness to potential customers.\"]})})]})]});export const richText16=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/e(\"p\",{children:\"Black Ember had reached a plateau in their email revenue, with earnings remaining relatively stagnant. They were handing email in-house, but were struggling to unlock the untapped revenue potential within their audience and expand their email list.\"}),/*#__PURE__*/t(\"p\",{children:[\"When they approached us, Black Ember sought out help in \",/*#__PURE__*/e(\"strong\",{children:\"leveraging their audience's potential for increased revenue and in growing their email subscriber base\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"We recognized that their strategy lacked optimization in automation, lead capture, and regular communication with their audience. They were also neglecting huge SMS marketing opportunities.\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Services\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u2022 Email/SMS\\xa0\"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 \"}),\"Google AdWords\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"To address Black Ember's challenges, we initiated an approach \",/*#__PURE__*/e(\"strong\",{children:\"aimed at optimizing their email marketing and introducing a successful SMS program\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"First, we conducted a \",/*#__PURE__*/e(\"strong\",{children:\"thorough evaluation to pinpoint areas of opportunity\"}),\". Identifying their current ESP (email service provider) as a limiting factor in revenue scaling, we\",/*#__PURE__*/e(\"strong\",{children:\" facilitated a transition to Klaviyo\"}),\", a platform better suited for growth. We focused on establishing \",/*#__PURE__*/e(\"strong\",{children:\"core automations and launching their SMS program\"}),\" to broaden their communication channels.\"]}),/*#__PURE__*/e(\"p\",{children:\"Our collaboration involved direct engagement with the company's President. They appreciated our dedication to their brand's success and were satisfied with the expertise provided by our email and SMS teams.\"}),/*#__PURE__*/e(\"p\",{children:\"Prior to our involvement, Black Ember's email campaigns lacked personalization and dynamic product recommendations. By integrating this into their evergreen campaigns, we saw a notable increase in engagement. We successfully encouraged 7% of their engaged email audience to opt-in for SMS within a year, enhancing their overall marketing reach.\"}),/*#__PURE__*/t(\"p\",{children:[\"In terms of specific strategies, we created a monthly email campaign calendar, suggesting topics that not only engaged readers but also educated them about the product line. Black Ember is not one to offer a discount code, so we worked with the brand to \",/*#__PURE__*/e(\"strong\",{children:\"deliver a unique lead capture strategy involving a monthly giveaway\"}),\", enticing users to opt-in for email and SMS marketing without compromising the brand's integrity. This approach brought exceptional results, surpassing even industry standards for opt-in rates.\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 \"}),\"By implementing an SMS marketing program, we were able to enhance audience engagement, boost overall retention revenue, and generate excitement around new Kickstarter campaigns and product launches. Our collaboration led to a remarkable achievement, surpassing one of their Kickstarter goals by 19x. Our first \",/*#__PURE__*/e(\"strong\",{children:\"Kickstarter campaign\"}),\" with Black Ember raised \",/*#__PURE__*/e(\"strong\",{children:\"$98,465\"}),\", exceeding their initial \",/*#__PURE__*/e(\"strong\",{children:\"$5,000 goal\"}),\". This campaign marked our introduction of SMS marketing for their product launches, proving highly effective in driving engagement and revenue.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 \"}),\"Black Ember had some great \",/*#__PURE__*/e(\"strong\",{children:\"video content\"}),\" that was not being utilized in their email program. We added clips of these as GIFs to their site, making the emails more \",/*#__PURE__*/e(\"strong\",{children:\"engaging \"}),\"and \",/*#__PURE__*/e(\"strong\",{children:\"visually appealing\"}),\". This educated their audience and reinforced their image, further establishing their brand.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 \"}),\"We wanted to find a way to add \",/*#__PURE__*/e(\"strong\",{children:\"dynamic recommendations \"}),\"to customers via email marketing, so we showed them products that they had \",/*#__PURE__*/e(\"strong\",{children:\"previously browsed\"}),\" or \",/*#__PURE__*/e(\"strong\",{children:\"added to their cart\"}),\". This served as an incentive to purchase these items, increasing both \",/*#__PURE__*/e(\"strong\",{children:\"order\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"click-through rates\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 Social clout\"}),\" had a large impact on increasing the placed order rate of emails. The reviews and press features were not being strategically utilized, so once we implemented these into their emails, it built \",/*#__PURE__*/e(\"strong\",{children:\"trustworthiness \"}),\"and had an impact on convincing non-customers to place their first order.\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Results\"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 3x \"}),\"- Combined Monthly \",/*#__PURE__*/e(\"strong\",{children:\"Email and SMS Revenue\"})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 7%\"}),\" - Increase in \",/*#__PURE__*/e(\"strong\",{children:\"Engaged Email List Size\"}),\" in Less Than a Year\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u2022 80% \"}),\"- Flow \",/*#__PURE__*/e(\"strong\",{children:\"Revenue Increase\"})]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/t(\"p\",{children:[\"One of the most rewarding aspects of our work with this client was the \",/*#__PURE__*/e(\"strong\",{children:\"substantial impact we made on their revenue growth\"}),\". By addressing missed opportunities and optimizing their email and SMS strategies, we were able to \",/*#__PURE__*/e(\"strong\",{children:\"significantly increase their monthly revenue\"}),\". Their email and SMS revenue tripled year-over-year, demonstrating the effectiveness of our approach.\"]}),/*#__PURE__*/t(\"p\",{children:[\"What's particularly exciting about this success story is that a significant portion of the revenue growth stemmed from their existing audience. This highlights the untapped potential within established customer bases and highlights the importance of \",/*#__PURE__*/e(\"strong\",{children:\"maximizing engagement and conversion opportunities\"}),\". It's a testament to the power of strategic marketing efforts in unlocking additional revenue streams and driving sustainable business growth.\"]}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Visual Representation of Results: Engaging Email Content\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Below are a few examples of the engaging, visual appealing emails we curated for their email list:\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2048\",src:\"https://framerusercontent.com/images/bldAHijrpuctpiamLowLSOWcS9U.webp\",srcSet:\"https://framerusercontent.com/images/bldAHijrpuctpiamLowLSOWcS9U.webp?scale-down-to=2048 785w,https://framerusercontent.com/images/bldAHijrpuctpiamLowLSOWcS9U.webp 1571w\",style:{aspectRatio:\"1571 / 4096\"},width:\"785\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1007\",src:\"https://framerusercontent.com/images/aXcelSSS8c275WYcU5ioHsE5xo.gif\",srcSet:\"https://framerusercontent.com/images/aXcelSSS8c275WYcU5ioHsE5xo.gif?scale-down-to=1024 660w,https://framerusercontent.com/images/aXcelSSS8c275WYcU5ioHsE5xo.gif 1299w\",style:{aspectRatio:\"1299 / 2014\"},width:\"649\"})]});export const richText17=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Litter-Robot came to GR0 \",/*#__PURE__*/e(\"strong\",{children:\"looking for guidance concerning their CMS migration\"}),\" from Magento to Magento 2 across their entire domain. For the first 3 months of the engagement between GR0 and Litter-Robot, \",/*#__PURE__*/e(\"strong\",{children:\"we actually saw Organic Metrics decrease\"}),\" slightly, as \",/*#__PURE__*/e(\"strong\",{children:\"no implementation work was done prior\"}),\" to the CMS migration.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"With GR0\u2019s recommendations and expertise, the migration from Magento to Magento 2 was a resounding success, \",/*#__PURE__*/e(\"strong\",{children:\"no traffic was lost\"}),\", and Google was able to find and accurately index all of the resulting 301 redirects and URL changes. With the production of new content, continued keyword optimization of priority landing pages, and ongoing thought leadership efforts from GR0, Litter-Robot.com has seen \",/*#__PURE__*/e(\"strong\",{children:\"all-time highs in Organic Revenue, Impressions, Unique Monthly Visitors, and Ranking Keywords\"}),\".\"]})]});export const richText18=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"The e-commerce sector is no stranger to the need for adaptation. In 2022, Google's transition from smart shopping to the \",/*#__PURE__*/e(\"strong\",{children:\"Performance Max\"}),\" campaign format required brands to adapt to stay ahead.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"This leading pool inflatables brand sought not just to transition but to \",/*#__PURE__*/e(\"strong\",{children:\"leverage this new format to significantly amplify their sales\"}),\" and Return On Ad Spend (ROAS). GR0 helped them achieve that goal.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"By harnessing the machine learning capabilities of the new Performance Max campaign format, the brand could cast a wider net, \",/*#__PURE__*/e(\"strong\",{children:\"reaching a broader audience and securing more conversions\"}),\" at a cost-effective rate.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Recognizing the power of relatability, GR0 collaborated with the brand to \",/*#__PURE__*/e(\"strong\",{children:\"replace static product images with dynamic lifestyle photos \"}),\"showcasing real-world use. This subtle but strategic shift dramatically \",/*#__PURE__*/e(\"strong\",{children:\"elevated click-through rates\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"GR0 also implemented advanced e-commerce tracking and reporting. This enabled Performance Max campaigns to \",/*#__PURE__*/e(\"strong\",{children:\"harness full-funnel conversion queues\"}),\", shedding light on behaviors that catalyzed cart additions, purchases, and repeat sales.\"]})]});export const richText19=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Eterneva was interested in \",/*#__PURE__*/e(\"strong\",{children:\"increasing their website\u2019s organic traffic\"}),\" to boost jewelry sales. With 3,825 organic keywords and 1,030 unique monthly visitors, their goal was to expand their footprint in the industry.\"]}),/*#__PURE__*/e(\"p\",{children:\"They also wanted to build authority, rank for more keywords, and gain quality backlinks to improve their domain ranking on Google\u2019s search results page.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"With thorough keyword strategy and brand direction, we generated blog posts for their site that \",/*#__PURE__*/e(\"strong\",{children:\"increased traffic value by 42%\"}),\". We also \",/*#__PURE__*/e(\"strong\",{children:\"targeted long tail keywords\"}),\" relevant to the memorial/cremation diamond industry to \",/*#__PURE__*/e(\"strong\",{children:\"increase Eterneva\u2019s keyword ranking by 24.51%\"}),\", bringing more targeted shoppers to their site.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our strategy \",/*#__PURE__*/e(\"strong\",{children:\"added 100+ keywords to their site \"}),\"that rank as featured snippets on Google\u2019s results. Through these efforts and our strategic partnerships, we\u2019ve increased their domain rating dramatically with the help of 290 additional referring domains \u2014 making it a huge win for Eterneva.\"]})]});export const richText20=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Tasc Performance was \",/*#__PURE__*/e(\"strong\",{children:\"interested in reaching 15K organic traffic monthly\"}),\" and ranking higher for the keyword phrase \u201C\",/*#__PURE__*/e(\"em\",{children:\"french terry fabric.\u201D\"}),\" They also wanted to raise their overall domain rating to help them dominate in their highly competitive market.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We built an SEO strategy that \",/*#__PURE__*/e(\"strong\",{children:\"focused on keyword-rich content for their blog\"}),\" and on-page optimization to improve their overall search rankings and user experience. With our continuous efforts, Tasc Performance reached its monthly goal of 15k organic traffic.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"In addition, our link building strategy \",/*#__PURE__*/e(\"strong\",{children:\"improved their domain rating\"}),\" with only two more points to go to reach their goal. Their ranking for the keyword phrase \u201C\",/*#__PURE__*/e(\"em\",{children:\"french terry fabric,\u201D\"}),\" \",/*#__PURE__*/e(\"strong\",{children:\"went from position 12 to ranking #1 on Google\"}),\".\"]})]});export const richText21=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Link Building often faces the challenge of trying to \",/*#__PURE__*/e(\"strong\",{children:\"swiftly elevate a site's profitability\"}),\" without trespassing Google's rules. While link acquisition can be fast-paced, it must originate from \",/*#__PURE__*/e(\"strong\",{children:\"trustworthy sources\"}),\" that establish enduring connections. GR0 is a pioneer in rapidly \",/*#__PURE__*/e(\"strong\",{children:\"boosting domain ranking\"}),\" and domain authority for the long haul, all while complying with Google\u2019s guidelines. This was our mission with AdQuick.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Our strategy focused on \",/*#__PURE__*/e(\"strong\",{children:\"Link Building solutions\"}),\" to boost AdQuick\u2019s domain rating. These efforts \",/*#__PURE__*/e(\"strong\",{children:\"increased their organic traffic 10X, tripled their traffic value, \"}),\"and massively\",/*#__PURE__*/e(\"strong\",{children:\" increased their referring domains\"}),\" from high quality sites.\u200D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Utilizing trustworthy sources \",/*#__PURE__*/e(\"strong\",{children:\"solidified the brand\u2019s authority\"}),\" and allowed them to \",/*#__PURE__*/e(\"strong\",{children:\"dominate their competitive space\"}),\".\"]})})]})]});export const richText22=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Our goal was to help Nailboo amplify their organic traffic and enhance their brand recognition. As a new player in the industry, they initially ranked for more than 1,000 keywords and secured 120+ referring domains. Our objective was to \",/*#__PURE__*/e(\"strong\",{children:\"expand their reach, boost brand awareness, and continue to solidify their market presence.\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our SEO strategy was meticulously crafted, centering around \",/*#__PURE__*/e(\"strong\",{children:\"long tail keywords\"}),\" in the beauty realm. Nailboo snagged multiple \",/*#__PURE__*/e(\"strong\",{children:\"featured snippets on Google\"}),\", catapulting their website's visibility and attracting floods of targeted traffic.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"GR0 fortified Nailboo\u2019s online domain with an impressive \",/*#__PURE__*/e(\"strong\",{children:\"3X increase in domain rating\"}),\" and optimized their landing pages for maximum impact. Nailboo now reigns supreme in the coveted \",/*#__PURE__*/e(\"strong\",{children:\"#1 spot for various core keywords.\u200D\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"We Helped Nailboo rank #1 for a variety of highly-competitive non-branded keywords in their niche:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Long Nail Beds vs Short\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"How To Type With Nails (With Featured Snippet!)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nail Dip Kit\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"How Long do Tips Last on Nails (With Featured Snippet!)\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"Long Nail Beds vs Short' Keyword\",className:\"framer-image\",height:\"591\",src:\"https://framerusercontent.com/images/vfXErw1Z88TqEbbA8StTuqL9sY.webp\",srcSet:\"https://framerusercontent.com/images/vfXErw1Z88TqEbbA8StTuqL9sY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vfXErw1Z88TqEbbA8StTuqL9sY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vfXErw1Z88TqEbbA8StTuqL9sY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vfXErw1Z88TqEbbA8StTuqL9sY.webp 2099w\",style:{aspectRatio:\"2099 / 1182\"},width:\"1049\"}),/*#__PURE__*/e(\"p\",{children:\"'Long Nail Beds vs Short' Keyword\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1235\",src:\"https://framerusercontent.com/images/2H8YmOkRMn2Y50BWXfhmzo5tr0.webp\",srcSet:\"https://framerusercontent.com/images/2H8YmOkRMn2Y50BWXfhmzo5tr0.webp?scale-down-to=1024 870w,https://framerusercontent.com/images/2H8YmOkRMn2Y50BWXfhmzo5tr0.webp?scale-down-to=2048 1740w,https://framerusercontent.com/images/2H8YmOkRMn2Y50BWXfhmzo5tr0.webp 2099w\",style:{aspectRatio:\"2099 / 2470\"},width:\"1049\"}),/*#__PURE__*/e(\"p\",{children:\"'Dip Powder Kit' Keyword\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"830\",src:\"https://framerusercontent.com/images/LFQM0OdzQihakImmHdjI6HUBeU.webp\",srcSet:\"https://framerusercontent.com/images/LFQM0OdzQihakImmHdjI6HUBeU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LFQM0OdzQihakImmHdjI6HUBeU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LFQM0OdzQihakImmHdjI6HUBeU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/LFQM0OdzQihakImmHdjI6HUBeU.webp 2135w\",style:{aspectRatio:\"2135 / 1661\"},width:\"1067\"}),/*#__PURE__*/e(\"p\",{children:\"'How To Type with Nails' Keyword & Featured Snippet\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"657\",src:\"https://framerusercontent.com/images/NnfjqEK1YL9xZQSLLmYdZlLRQfc.webp\",srcSet:\"https://framerusercontent.com/images/NnfjqEK1YL9xZQSLLmYdZlLRQfc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NnfjqEK1YL9xZQSLLmYdZlLRQfc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/NnfjqEK1YL9xZQSLLmYdZlLRQfc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/NnfjqEK1YL9xZQSLLmYdZlLRQfc.webp 2099w\",style:{aspectRatio:\"2099 / 1315\"},width:\"1049\"}),/*#__PURE__*/e(\"p\",{children:\"'How Long Do Tips Last On Nails' Keyword & Featured Snippet\"})]});export const richText23=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Greater Than was interested in \",/*#__PURE__*/e(\"strong\",{children:\"shifting their target audience\"}),\" from athletes to pregnant women and breastfeeding moms.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Since the content on their site was mostly focused on sports and exercise, we had to start from scratch to \",/*#__PURE__*/e(\"strong\",{children:\"rank for new target customers\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"increase organic traffic\"}),\", and \",/*#__PURE__*/e(\"strong\",{children:\"raise brand awareness.\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We started by \",/*#__PURE__*/e(\"strong\",{children:\"revamping their website\u2019s content\"}),\" to reach their new target audience. This included \",/*#__PURE__*/e(\"strong\",{children:\"creating more than 50 informational blog posts\"}),\" to drive top of funnel traffic to create brand awareness. This also allowed the website to \",/*#__PURE__*/e(\"strong\",{children:\"rank for new keywords \"}),\"to \",/*#__PURE__*/e(\"strong\",{children:\"increase non-branded traffic\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Updating\\xa0 meta on core pages\"}),\" helped the site gain \",/*#__PURE__*/e(\"strong\",{children:\"better keyword traction \"}),\"for the target and related keywords.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also focused on \",/*#__PURE__*/e(\"strong\",{children:\"non-branded and branded backlinks\"}),\" to increase the amount of websites backlinking to the client with the goal of \",/*#__PURE__*/e(\"strong\",{children:\"building site trust and authority\"}),\". Non-branded backlinks help improve priority keywords to reach the new audience looking for breastfeeding drinks.\"]})]});export const richText24=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Natural Patch faced challenges due to its\",/*#__PURE__*/e(\"strong\",{children:\" limited online presence and authority\"}),\" in the insect repellant space. GR0 was enlisted to develop and implement a comprehensive SEO and backlink campaign that increased organic revenue, traffic, keyword rankings and more!\u200D Starting with only \",/*#__PURE__*/e(\"strong\",{children:\"55 organic keywords and 20 referring domains\"}),\", we built an intense strategy to reach their goals.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our campaign was so successful that it \",/*#__PURE__*/e(\"strong\",{children:\"won the award for Transformative Digital Marketing Campaign at the \"}),/*#__PURE__*/e(r,{href:\"https://enter.amcpros.com/dotcomm/entry/gr0-x-natural-patch-building-authority-in-the-insect-repellant-space/\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:/*#__PURE__*/e(\"strong\",{children:\"2023 Platinum dotCOMM Awards\"})})}),/*#__PURE__*/e(\"strong\",{children:\".\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We began our SEO strategy by \",/*#__PURE__*/e(\"strong\",{children:\"building high-quality blog content\"}),\" around various mosquito topics to establish Natural Patch\u2019s authority in the space. From there, we \",/*#__PURE__*/e(\"strong\",{children:\"targeted keywords related to their products\"}),\" including patches for itching, sleep, and cravings. We also published content that demonstrated authority around essential oils and allergy topics because those topic clusters presented high traffic potential.\u200D Our Link Building strategy increased backlinks to their site to \",/*#__PURE__*/e(\"strong\",{children:\"boost their Domain Rating and overall authority on Google\"}),\".\\xa0\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"792\",src:\"https://framerusercontent.com/images/inmZr3kDWewqQRAHxwI1Y4iPtU.webp\",srcSet:\"https://framerusercontent.com/images/inmZr3kDWewqQRAHxwI1Y4iPtU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/inmZr3kDWewqQRAHxwI1Y4iPtU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/inmZr3kDWewqQRAHxwI1Y4iPtU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/inmZr3kDWewqQRAHxwI1Y4iPtU.webp 2694w\",style:{aspectRatio:\"2694 / 1584\"},width:\"1347\"}),/*#__PURE__*/e(\"p\",{children:\"(Increase in Referring Domains for the 18 month campaign)\"}),/*#__PURE__*/t(\"p\",{children:[\"In addition to publishing new content and acquiring high-authority backlinks, we \",/*#__PURE__*/e(\"strong\",{children:\"optimized existing pages\"}),\" on the site, ensuring they were targeting and \",/*#__PURE__*/e(\"strong\",{children:\"ranking for the best revenue-driving keywords.\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"857\",src:\"https://framerusercontent.com/images/pItbEI9dJNQdGp9XRfwTdFQZzs.webp\",srcSet:\"https://framerusercontent.com/images/pItbEI9dJNQdGp9XRfwTdFQZzs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pItbEI9dJNQdGp9XRfwTdFQZzs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/pItbEI9dJNQdGp9XRfwTdFQZzs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/pItbEI9dJNQdGp9XRfwTdFQZzs.webp 2694w\",style:{aspectRatio:\"2694 / 1715\"},width:\"1347\"}),/*#__PURE__*/e(\"p\",{children:\"(Organic Keyword Ranking Increases for the 18 month campaign)\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 took Natural Patch from 55 ranking keywords to 2,694, from 20 referring domains to 572, \",/*#__PURE__*/e(\"strong\",{children:\"increased their traffic value over 202.38%, and grew their organic revenue more than 18.84%,\"}),\" all in \",/*#__PURE__*/e(\"strong\",{children:\"less than a year!\"})]})]});export const richText25=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Kroma was a \",/*#__PURE__*/e(\"strong\",{children:\"brand new company \"}),\"entering the ultra-competitive weight loss and wellness space\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"online.\\xa0\u200DThey wanted to \",/*#__PURE__*/e(\"strong\",{children:\"establish traffic to the site \"}),\"and start ranking for the term \u201Creset\u201D, which didn\u2019t have any search volume yet.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 \",/*#__PURE__*/e(\"strong\",{children:\"created blog articles \"}),\"on health, wellness, and nutrition topics, incorporating the Kroma team\u2019s expertise on nutrition gained from their years of experience in the industry.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our goal was to translate their real-life experience and establish their online authority on those subjects. We created \",/*#__PURE__*/e(\"strong\",{children:\"articles that related to their \u201Creset\u201D focus keyword\"}),\", to introduce consumers to the term and gain traffic from similar searches. We also \",/*#__PURE__*/e(\"strong\",{children:\"optimized their product pages\"}),\" for target keywords, and \",/*#__PURE__*/e(\"strong\",{children:\"utilized backlinks\"}),\" to build their brand-new website\u2019s \",/*#__PURE__*/e(\"strong\",{children:\"domain authority\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Throughout the campaign, Kroma\u2019s branded website traffic fluctuated often due to adjustments in paid ad spend and online mentions by celebrity investors. However,\",/*#__PURE__*/e(\"strong\",{children:\"Kroma\u2019s non-branded organic traffic steadily increased \"}),\"over the course of the SEO campaign.\"]})]});export const richText26=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"TextSanity\u2019s industry (SMS Marketing) is extremely niched, with the vast majority of target keywords having very low search volumes.\",/*#__PURE__*/e(\"strong\",{children:\"\u200D\"})]}),/*#__PURE__*/e(\"p\",{children:\"Many SEO titles were too long and numerous images were missing alt texts on their existing content. Their core web vitals metrics were much lower than competitors, which proved another challenge for GR0 to help them overcome.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our content strategy focused on \",/*#__PURE__*/e(\"strong\",{children:\"high-quality traffic \"}),\"rather than sheer volume. We \",/*#__PURE__*/e(\"strong\",{children:\"optimized all of the SEO titles\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"image alt texts\"}),\" in addition to other \",/*#__PURE__*/e(\"strong\",{children:\"on-page optimizations.\"}),\"\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We mapped out their redirects, identified errors across the site, updated imagery, added more content into strategic places, structured mark-up data for their video pages, and offered other \",/*#__PURE__*/e(\"strong\",{children:\"technical & on-page work\"}),\" to ensure the migration was pushed with as few problems as possible.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also helped \",/*#__PURE__*/e(\"strong\",{children:\"improve their core web vitals\"}),\", finally getting them in the green for all metrics. The plugin for WordPress called \u201CNitroPak\u201D was the final step, and made a \",/*#__PURE__*/e(\"strong\",{children:\"huge quantifiable difference in their organic performance\"}),\".\"]})]});export const richText27=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Our mission was to create a bespoke SEO strategy that would boost as much traffic to their website as possible so they could build authority and credibility in the law space.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our strategy was to produce an enormous amount of \",/*#__PURE__*/e(\"strong\",{children:\"SEO-optimized content \"}),\"about various topics relating to laws in New York to \",/*#__PURE__*/e(\"strong\",{children:\"build the site\u2019s credibility.\"})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"In our link building strategy, we produced several \",/*#__PURE__*/e(\"strong\",{children:\"local citations \"}),\"to Schwartzapfel Lawyers P.C. and we produced \",/*#__PURE__*/e(\"strong\",{children:\"backlinks to increase the domain rating\"}),\" and overall authoritativeness of the website\u200D.\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also \",/*#__PURE__*/e(\"strong\",{children:\"ensured there were no technical problems\"}),\" in the website and that the website was fully optimized for SEO.\"]})]});export const richText28=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Vaster Capital is a private lender that came to GR0 wanting to \",/*#__PURE__*/e(\"strong\",{children:\"own a larger portion of their extremely competitive market\"}),\". Their site wasn\u2019t ranking for any of their targeted keywords and had few domains providing high-authority backlinks. We knew we had our work cut out for us.\u200D\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We started the campaign by targeting both retail investors and accredited B2B and B2C real estate investors. We knew that providing \",/*#__PURE__*/e(\"strong\",{children:\"high quality content\"}),\"\\xa0 in a profitable vertical would drive massive engagement with potential investors.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"We created \",/*#__PURE__*/e(\"strong\",{children:\"market reports\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"informative content\"}),\" for their site, which has been the core of their growth and sales improvements. In addition, we \",/*#__PURE__*/e(\"strong\",{children:\"optimized existing service pages\"}),\" to increase conversions and leads.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"E-E-A-T\"}),\" was an important part of Vaster\u2019s strategy. We focused heavily on the \",/*#__PURE__*/e(\"strong\",{children:\"authorship pages\"}),\", ensuring each page accurately listed the individuals\u2019 expertise, experience, education, specializations, and more, to prove their importance to Google.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also acquired \",/*#__PURE__*/e(\"strong\",{children:\"high-authorityexternal links, \"}),\"which, combined with our content efforts and on-page optimizations, \",/*#__PURE__*/e(\"strong\",{children:\"led to a direct increase in organic traffic and conversions.\"})]})]});export const richText29=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Winona, a leader in menopause care, approached GR0 with a unique challenge. They sought to\",/*#__PURE__*/e(\"strong\",{children:\" increase website traffic\"}),\" and transform that visibility into \",/*#__PURE__*/e(\"strong\",{children:\"solid leads\"}),\", primarily by improving keyword rankings.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"In the \",/*#__PURE__*/e(\"strong\",{children:\"competitive digital landscape of health and wellness, \"}),\"particularly within the niche of menopause care, achieving this goal was no small task. But with a personalized strategy, GR0 was able to help them achieve it.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our solution was to craft and execute a robust \",/*#__PURE__*/e(\"strong\",{children:\"Link Building strategy \"}),\"tailored specifically to Winona's unique needs and challenges.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our primary focus was on \",/*#__PURE__*/e(\"strong\",{children:\"enhancing the domain authority \"}),\"of Winona's website by \",/*#__PURE__*/e(\"strong\",{children:\"securing branded backlinks \"}),\"from reputable publications. This strategy aimed to position Winona as a \",/*#__PURE__*/e(\"strong\",{children:\"trustworthy and authoritative voice\"}),\" in the menopause care and wellness sector.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Winona's low domain rating (DR) of 28 initially presented a significant hurdle, preventing them from achieving top positions in Google search results. However, \",/*#__PURE__*/e(\"strong\",{children:\"we were confident in the potential of our strategy\"}),\" and its transformative power, and the outcome was explosive.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Over the course of a year, our persistent and targeted link-building efforts proved fruitful. \",/*#__PURE__*/e(\"strong\",{children:\"Winona's domain rating surged from 28 to an impressive 45\"}),\", paving the way for Winona to rank for nearly \",/*#__PURE__*/e(\"strong\",{children:\"15k non-branded keywords\"}),\", 723 of which secured a coveted spot on \",/*#__PURE__*/e(\"strong\",{children:\"Google's first page\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our collaboration with Winona is a testament to our \",/*#__PURE__*/e(\"strong\",{children:\"innovation, expertise, and tenacity\"}),\". In the highly competitive health and wellness sector, digital marketing presents numerous challenges. However, \",/*#__PURE__*/e(\"strong\",{children:\"with the right strategies and unwavering dedication from our team\"}),\", the sky's the limit.\"]})]});export const richText30=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Problem\"})}),/*#__PURE__*/t(\"p\",{children:[\"As a young brand, \",/*#__PURE__*/e(\"strong\",{children:\"Snif had big goals but a long road ahead in terms of SEO\"}),\". Their domain rating needed \",/*#__PURE__*/e(\"strong\",{children:\"a serious boost\"}),\" to stand out in the \",/*#__PURE__*/e(\"strong\",{children:\"competitive scent industry\"}),\". Plus, they were barely \",/*#__PURE__*/e(\"strong\",{children:\"ranking for non-branded search terms\"}),\", which made it \",/*#__PURE__*/e(\"strong\",{children:\"tough for new customers\"}),\" to discover them.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"They knew they needed to \",/*#__PURE__*/e(\"strong\",{children:\"rank for key terms\"}),\" like \u201Cscented candles,\u201D \u201Cvanilla perfume,\u201D and \u201Ccherry perfume\u201D to \",/*#__PURE__*/e(\"strong\",{children:\"get on the map\"}),\". So, we rolled up our sleeves and started \",/*#__PURE__*/e(\"strong\",{children:\"building their SEO strategy from scratch\"}),\", with a focus on getting them \",/*#__PURE__*/e(\"strong\",{children:\"seen by a wider audience\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Strategy\"})}),/*#__PURE__*/t(\"p\",{children:[\"To get Snif on customers\u2019 radar, \",/*#__PURE__*/e(\"strong\",{children:\"we implemented a three-pronged strategy\"}),\" including backlinks, on-page optimization, and content creation. Within six months, we were able to build over \",/*#__PURE__*/e(\"strong\",{children:\"200 external backlinks\"}),\" to strengthen their authority and \",/*#__PURE__*/e(\"strong\",{children:\"drive keyword rankings\"}),\" for priority product terms.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our content strategy involved \",/*#__PURE__*/e(\"strong\",{children:\"crafting over 130 pieces\"}),\", targeting key product launches and evergreen topics to \",/*#__PURE__*/e(\"strong\",{children:\"generate consistent traffi\"}),\"c. We also \",/*#__PURE__*/e(\"strong\",{children:\"optimized URLs around specific scents\"}),\", helping Snif\u2019s product and collection pages \",/*#__PURE__*/e(\"strong\",{children:\"gain traction for non-branded keywords\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"This holistic approach was designed to \",/*#__PURE__*/e(\"strong\",{children:\"drive more organic traffic\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"establish Snif as a key player\"}),\" in the \",/*#__PURE__*/e(\"strong\",{children:\"luxury scent market.\"})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/t(\"p\",{children:['\u2022 Our link building for \"scented candle\" ',/*#__PURE__*/e(\"strong\",{children:\"helped Snif rank #3\"}),\", beating Amazon and Yankee Candle for the high-competition keyword.\"]}),/*#__PURE__*/t(\"p\",{children:['\u2022 Adding \"candle\" to product names ',/*#__PURE__*/e(\"strong\",{children:\"improved keyword ranking significantly\"}),\" for high-volume search terms.\"]}),/*#__PURE__*/t(\"p\",{children:[\"\u2022 One of our content pieces ranks #4 for \u201Cpopular scents\u201D (SV 700) and #3 for \u201Cfavorite scents\u201D (SV 1k), driving \",/*#__PURE__*/e(\"strong\",{children:\"nearly 7,000 new visitors per month\"}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1510\",src:\"https://framerusercontent.com/images/rjfDPo7UJTDp8YrIZ53T97Xb9Lc.webp\",srcSet:\"https://framerusercontent.com/images/rjfDPo7UJTDp8YrIZ53T97Xb9Lc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/rjfDPo7UJTDp8YrIZ53T97Xb9Lc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjfDPo7UJTDp8YrIZ53T97Xb9Lc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/rjfDPo7UJTDp8YrIZ53T97Xb9Lc.webp 3200w\",style:{aspectRatio:\"3200 / 3020\"},width:\"1600\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Proven Success\"})}),/*#__PURE__*/t(\"p\",{children:[\"Our strategy of \",/*#__PURE__*/e(\"strong\",{children:\"combining link building with on-page optimization\"}),\" has been \",/*#__PURE__*/e(\"strong\",{children:\"key to Snif\u2019s success\"}),\". By targeting high-volume, transactional keywords, we\u2019ve helped them rank for valuable terms that \",/*#__PURE__*/e(\"strong\",{children:\"drive real results\"}),\". The content we\u2019ve created \",/*#__PURE__*/e(\"strong\",{children:\"consistently lands on page #1\"}),\", generating \",/*#__PURE__*/e(\"strong\",{children:\"significant non-branded traffic\"}),\" and helping \",/*#__PURE__*/e(\"strong\",{children:\"Snif reach a broader audience\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Together, these efforts have not only \",/*#__PURE__*/e(\"strong\",{children:\"increased visibility\"}),\" but also \",/*#__PURE__*/e(\"strong\",{children:\"translated directly into measurable gains\"}),\" in \",/*#__PURE__*/e(\"strong\",{children:\"organic traffic and revenue\"}),\". The results speak for themselves, with Snif \",/*#__PURE__*/e(\"strong\",{children:\"climbing the ranks for competitive keywords\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"solidifying their position\"}),\" in the \",/*#__PURE__*/e(\"strong\",{children:\"luxury scent space.\"})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Visual Representation of Results: YoY Growth\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/4k8wDvkWfYjosaa1yLklLtOVY.webp\",srcSet:\"https://framerusercontent.com/images/4k8wDvkWfYjosaa1yLklLtOVY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4k8wDvkWfYjosaa1yLklLtOVY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4k8wDvkWfYjosaa1yLklLtOVY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4k8wDvkWfYjosaa1yLklLtOVY.webp 3202w\",style:{aspectRatio:\"3202 / 2000\"},width:\"1601\"}),/*#__PURE__*/t(\"p\",{children:[\"In the graph above, Snif is showing up in \",/*#__PURE__*/e(\"strong\",{children:\"65x more non-branded searches\"}),\" with 1096x more non-branded traffic.\\xa0\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"995\",src:\"https://framerusercontent.com/images/CiBRCPI0Y84s5RpIlqbCregatR0.webp\",srcSet:\"https://framerusercontent.com/images/CiBRCPI0Y84s5RpIlqbCregatR0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CiBRCPI0Y84s5RpIlqbCregatR0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CiBRCPI0Y84s5RpIlqbCregatR0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/CiBRCPI0Y84s5RpIlqbCregatR0.webp 3186w\",style:{aspectRatio:\"3186 / 1990\"},width:\"1593\"}),/*#__PURE__*/t(\"p\",{children:[\"The above chart shows a \",/*#__PURE__*/e(\"strong\",{children:\"58x total keyword growt\"}),\"h with 75x more keywords in the top 10.\"]})]});export const richText31=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"M13 struggled with \",/*#__PURE__*/e(\"strong\",{children:\"low branded traffic\"}),\", which directly impacted the company's traffic value, as the quality and engagement of incoming traffic were not meeting expectations.\\xa0\u200DAdditionally, M13 \",/*#__PURE__*/e(\"strong\",{children:\"needed a significant increase in referring domains\"}),\", which are vital for building domain authority and improving search engine rankings.\\xa0\u200DThese challenges highlighted the need for a robust SEO strategy to \",/*#__PURE__*/e(\"strong\",{children:\"enhance M13's online presence and drive more valuable traffic to their site.\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We took a 3-prong approach to solving M13\u2019s problem:\u200D \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"strong\",{children:\"Content Creation: \"}),\"We developed high-quality, relevant content tailored to M13's audience to increase brand visibility and traffic quality.\u200D\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"strong\",{children:\"Technical SEO Improvements: \"}),\"We focused in enhancing website structure and performance to improve search engine rankings and user experience.\u200D\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"strong\",{children:\"Link Building: \"}),\"Utilizing public relations tactics was vital for boosting M13's online presence and authority, increasing the number of high-quality referring domains.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"This multifaceted strategy was designed to \",/*#__PURE__*/e(\"strong\",{children:\"holistically improve M13's online presence\"}),\", focusing on both immediate traffic increases and long-term brand establishment.\"]})]});export const richText32=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Buttercloth launched with the ambition of creating the world's softest, most comfortable shirt for men. As a startup, our main challenge was \",/*#__PURE__*/e(\"strong\",{children:\"driving awareness and making creative \"}),\"that resonated with an audience willing to buy $100+ dress shirts. Once the announcement was made Buttercloth would be on the award winning Shark Tank TV Show, we spent time \",/*#__PURE__*/e(\"strong\",{children:\"building assets to capture new visitors at scale\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"optimizing collection pages\"}),\" for best performance.\u200D\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Leveraging the influx of new visitors and word of mouth marketing from the live episode, we were able to experience \",/*#__PURE__*/e(\"strong\",{children:\"5X email list growth\"}),\" with custom Shark Tank creative throughout the website. The increase in email subscribers directly translated into a \",/*#__PURE__*/e(\"strong\",{children:\"600% revenue increase\"}),\". Email Marketing became Buttercloth's #1 Marketing channel for driving revenue for the brand.\"]})]});export const richText33=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:['Patrick Adair Designs built a passionate fan base by uploading \"How it\\'s made\" style videos to YouTube. The goal was to convert video subscribers into email subscribers while ',/*#__PURE__*/e(\"strong\",{children:\"building out a strong retention campaign\"}),\" to encourage repeat purchase behavior. Additionally, Patrick Adair wanted to build a closer relationship with subscribers by \",/*#__PURE__*/e(\"strong\",{children:\"creating engaging, personalized emails\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Leveraging an existing YouTube audience, we were able to experience a \",/*#__PURE__*/e(\"strong\",{children:\"200% email list growth increase\"}),\" with strategic popups and overlays. Additionally, we built personalized emails and announcements coming from the founder that \",/*#__PURE__*/e(\"strong\",{children:\"increased email engagement by as much as 500%\"}),\". Lastly, the increase of growth and engagement contributed to a 284% revenue increase year over year.\"]})]});export const richText34=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Our challenge with Kizik centered on \",/*#__PURE__*/e(\"strong\",{children:\"elevating their online presence in non-branded informational and transactional query spaces\"}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Through a comprehensive strategy, we boosted Kizik's visibility on essential terms and positioned them as industry leaders. Leveraging \",/*#__PURE__*/e(\"strong\",{children:\"advanced SEO and content optimization\"}),\", we transformed this challenge into a growth opportunity, \",/*#__PURE__*/e(\"strong\",{children:\"significantly enhancing their market influence\"}),\" and digital footprint.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/e(\"p\",{children:\"GR0 took on the challenge of establishing Kizik as a hands-free shoe authority. The strategy included:\u200D\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Over \",/*#__PURE__*/e(\"strong\",{children:\"120 pieces of SEO-optimized content\"}),\" aimed at strategically chosen topics around hands-free footwear, comfort, and technology.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Integrating strategic internal links\"}),\" within this content to bolster Kizik's core key terms like\",/*#__PURE__*/e(\"strong\",{children:\" \u201Cslip on shoes.\u201D\"})]})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u200D\"}),\"Aggressive \",/*#__PURE__*/e(\"strong\",{children:\"external link-building campaigns\"}),\" targeting \",/*#__PURE__*/e(\"strong\",{children:\"high-authority domains\"}),\", further cementing Kizik\u2019s market position and driving direct increases in organic keyword ranking.\u200D\"]}),/*#__PURE__*/e(\"p\",{children:\"Some notable keyword ranking improvements over the campaign:\u200D\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018slip on shoes\u2019 went from position 57 to \",/*#__PURE__*/e(\"strong\",{children:\"4\"}),\" (\",/*#__PURE__*/e(\"strong\",{children:\"+53\"}),\") | 44k Monthly Searches\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018slide on shoes\u2019 was not ranking, and now \",/*#__PURE__*/e(\"strong\",{children:\"currently ranks position 3\"}),\" | 9.8k Monthly Searches\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018slip in shoes\u2019 was not ranking, and now \",/*#__PURE__*/e(\"strong\",{children:\"currently ranks position 5 \"}),\"| 4.1k Monthly Searches\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018white slip on shoes\u2019 was not ranking, and now \",/*#__PURE__*/e(\"strong\",{children:\"currently ranks position 10\"}),\" | 3.7k Monthly Searches\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018hands free slip on shoes\u2019 was not ranking, and now \",/*#__PURE__*/e(\"strong\",{children:\"currently ranks position 3\"}),\" | 1.8k Monthly Searches\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"\u2018kids slip on shoes\u2019 was not ranking, and now \",/*#__PURE__*/e(\"strong\",{children:\"currently ranks position 8\"}),\" | 1.3k Monthly Searches\u200D\"]})})]}),/*#__PURE__*/t(\"p\",{children:[\"The continued focus on blog content is not only \",/*#__PURE__*/e(\"strong\",{children:\"increasing visibility\"}),\" but \",/*#__PURE__*/e(\"strong\",{children:\"steadily converting more visitors\"}),\", supporting long-term growth and sustainability for the site.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Over the campaign, the \",/*#__PURE__*/e(\"strong\",{children:\"blog is directly responsible for $193,110.67 in revenue\"}),\", and \",/*#__PURE__*/e(\"strong\",{children:\"$437,205.39 in assisted conversion value\"}),\".\u200D\"]}),/*#__PURE__*/e(\"h3\",{children:\"Early Warnings and Challenges\u200D\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Average Monthly Searches: 44,000\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Largest impressions and 3rd largest clicks\u200D\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/lax99vbGtUozGPubycwlzm00o.png\",srcSet:\"https://framerusercontent.com/images/lax99vbGtUozGPubycwlzm00o.png?scale-down-to=512 512w,https://framerusercontent.com/images/lax99vbGtUozGPubycwlzm00o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lax99vbGtUozGPubycwlzm00o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lax99vbGtUozGPubycwlzm00o.png 2176w\",style:{aspectRatio:\"2176 / 800\"},width:\"1088\"}),/*#__PURE__*/e(\"p\",{children:\"Early May 2023: Keyword 'slip on shoes' drops to Page 4\"}),/*#__PURE__*/e(\"h3\",{children:\"Strategic Actions\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"June: Team alerted and strategy pivot recommended\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"July 2nd: GR0 secures the first 'slip on shoes' link\"})})]})]});export const richText35=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Our client operates in an \",/*#__PURE__*/e(\"strong\",{children:\"extremely competitive niche\"}),\", selling toys specifically designed for children with autism. They came to GR0 wanting to own a larger portion of their market, but \",/*#__PURE__*/e(\"strong\",{children:\"their site wasn\u2019t ranking\"}),\" for any of their targeted keywords, they weren\u2019t getting in front of the \",/*#__PURE__*/e(\"strong\",{children:\"right audience\"}),\", and they had \",/*#__PURE__*/e(\"strong\",{children:\"few domains\"}),\" providing high-authority backlinks.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our mission was to fix these problems using our bespoke \",/*#__PURE__*/e(\"strong\",{children:\"SEO, Content, and Link Building strategies\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We created\",/*#__PURE__*/e(\"strong\",{children:\" engaging, informative content \"}),\"for their site, which has been the core of their growth. We also \",/*#__PURE__*/e(\"strong\",{children:\"added content to existing product pages and optimized them for SEO \"}),\"to increase keyword rankings and organic conversions.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"In addition, after conducting a \",/*#__PURE__*/e(\"strong\",{children:\"technical audit of the site\"}),\", we found that a year\u2019s worth of content was not able to be indexed due to a pagination issue on their blog. We fixed this issue and implemented additional \",/*#__PURE__*/e(\"strong\",{children:\"internal linking optimizations\"}),\", which allowed the content to be indexed and ranked by Google.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also acquired \",/*#__PURE__*/e(\"strong\",{children:\"high-authority external links,\"}),\" which, combined with our\",/*#__PURE__*/e(\"strong\",{children:\" content, on-page optimizations, and technical SEO efforts\"}),\", led to a \",/*#__PURE__*/e(\"strong\",{children:\"direct increase in organic traffic and keyword rankings.\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"143\",src:\"https://framerusercontent.com/images/Qub032W13oyqu5fnekINSfyY.png\",srcSet:\"https://framerusercontent.com/images/Qub032W13oyqu5fnekINSfyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qub032W13oyqu5fnekINSfyY.png 800w\",style:{aspectRatio:\"800 / 286\"},width:\"400\"}),/*#__PURE__*/e(\"p\",{children:\"Total clicks and impressions over the course of the campaign\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"247\",src:\"https://framerusercontent.com/images/i4L0YELGUPEEQr5NDYta3XdGlYs.png\",srcSet:\"https://framerusercontent.com/images/i4L0YELGUPEEQr5NDYta3XdGlYs.png?scale-down-to=512 512w,https://framerusercontent.com/images/i4L0YELGUPEEQr5NDYta3XdGlYs.png 800w\",style:{aspectRatio:\"800 / 494\"},width:\"400\"}),/*#__PURE__*/e(\"p\",{children:\"Organic users over time\"})]});export const richText36=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"When Incrediwear came to GR0, they had been \",/*#__PURE__*/e(\"strong\",{children:\"seeing a decrease in organic traffic and revenue\"}),\" caused by a \",/*#__PURE__*/e(\"strong\",{children:\"decrease in ranking \"}),\"on their most important keywords.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"GR0\u2019s mission\"}),\" was to increase Incrediwear\u2019s \",/*#__PURE__*/e(\"strong\",{children:\"organic traffic\"}),\" to \",/*#__PURE__*/e(\"strong\",{children:\"boost the company\u2019s organic sales revenue\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We created more than \",/*#__PURE__*/e(\"strong\",{children:\"50 unique pieces of high-quality content\"}),\", which continues to generate thousands of impressions every month, driving their target audience to the website.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Within this content, we tied in \",/*#__PURE__*/e(\"strong\",{children:\"strategic links to their priority product pages, \"}),\"helping them improve keyword terms for top products.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also built high-authority \",/*#__PURE__*/e(\"strong\",{children:\"external links targeting the priority product pages. \"}),\"This, combined with our content efforts and on-page optimizations, led to a direct increase in organic revenue which includes \",/*#__PURE__*/e(\"strong\",{children:\"3x increase in revenue\"}),\" tied to their priority product page as a landing page.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"158\",src:\"https://framerusercontent.com/images/MVXJ3JzqYSsDa9fnqZvBCnjZVvQ.png\",style:{aspectRatio:\"512 / 317\"},width:\"256\"}),/*#__PURE__*/e(\"p\",{children:\"5x non-branded traffic growth coming from improved product PDP rankings and targeted blog content\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"158\",src:\"https://framerusercontent.com/images/as50RQMrxAXO2oaMPZxBOA8Bs.png\",style:{aspectRatio:\"512 / 317\"},width:\"256\"}),/*#__PURE__*/e(\"p\",{children:\"Consistent YoY growth even when seasonality is factored in. Overall 2x organic search revenue growth\"})]});export const richText37=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"fatty15 came to us at the start of their business with almost \",/*#__PURE__*/e(\"strong\",{children:\"no organic presence whatsoever\"}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"They wanted to become the authority on C15 and provide \",/*#__PURE__*/e(\"strong\",{children:\"thought leadership \"}),\"in the space. This was a \",/*#__PURE__*/e(\"strong\",{children:\"new product \"}),\"in an emerging market, and they wanted to position themselves as industry leaders.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"E-E-A-T\"}),\" was key to fatty15\u2019s success. We focused on building their \",/*#__PURE__*/e(\"strong\",{children:\"authority and expertise \"}),\"as a scientific authority on C15, as well as creating content in relevant topic clusters (longevity, healthy aging, etc.)\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We created more than \",/*#__PURE__*/e(\"strong\",{children:\"100 unique pieces of content\"}),\", which generate hundreds of thousands of impressions every month. Each piece of this content was \",/*#__PURE__*/e(\"strong\",{children:\"medically reviewed by an industry expert \u2014 \"}),\"and we \",/*#__PURE__*/e(r,{href:\"https://fatty15.com/blogs/news/five-signs-your-liver-is-struggling\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:\"clearly showed this to Google\"})}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Within this content, we added \",/*#__PURE__*/e(\"strong\",{children:\"strategic links to their key product pages, \"}),\"helping them own their core term, \u201CC15\u201D.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also built high-authority \",/*#__PURE__*/e(\"strong\",{children:\"external links targeting these pages, \"}),\"which, combined with our content efforts and on-page optimizations, led to a direct increase in organic revenue.\"]})]});export const richText38=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"The Beard Club came to us with mostly \",/*#__PURE__*/e(\"strong\",{children:\"branded traffic and low organic visibility\"}),\".\\xa0\u200DThey wanted to drive more \",/*#__PURE__*/e(\"strong\",{children:\"non-branded traffic\"}),\" to the site with \",/*#__PURE__*/e(\"strong\",{children:\"top-notch content\"}),\" that would \",/*#__PURE__*/e(\"strong\",{children:\"support their bottom line\"}),\".\u200DWe used \",/*#__PURE__*/e(\"strong\",{children:\"SEO Content\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"Technical SEO\"}),\", and \",/*#__PURE__*/e(\"strong\",{children:\"Non-Branded Backlinks\"}),\" to ensure their campaign was a success.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our SEO content strategy consisted of\",/*#__PURE__*/e(\"strong\",{children:\" robust keyword research\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"competitor analysis\"}),\" to identify gaps and opportunities in their vertical.\u200DWe wrote informative, optimized content that we learned their target audience was searching for. In turn, we were able to prop up their their products and \",/*#__PURE__*/e(\"strong\",{children:\"drive organic conversions\"}),\".\\xa0\u200DOur strategy also included internal linking and optimization of PDPs, which \",/*#__PURE__*/e(\"strong\",{children:\"improved product keyword rankings and traffic to PDPs\"}),\".\u200DWe strategically choose non-branded keywords to target for our backlink strategy, \",/*#__PURE__*/e(\"strong\",{children:\"bringing multiple PDPs to the first page of Google\"}),\" for target keywords.\"]})]});export const richText39=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Mito Red Light came to us with an organic search presence that needed to be elevated. The site was not well-optimized for SEO, which resulted in wasted traffic potential.\u200D\"}),/*#__PURE__*/t(\"p\",{children:[\"They wanted to \",/*#__PURE__*/e(\"strong\",{children:\"dominate the SERPs\"}),\" for and become the \",/*#__PURE__*/e(\"strong\",{children:\"authority on red light therapy\"}),\". They had a wide selection of products, which differentiated them from their competitors, and they wanted to \",/*#__PURE__*/e(\"strong\",{children:\"capitalize on the value they provide\"}),\" to customers.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Acquiring \",/*#__PURE__*/e(\"strong\",{children:\"high-quality backlinks with trusted authority\"}),\" was key to Mito Red Light\u2019s success. We acquired and published backlinks that \",/*#__PURE__*/e(\"strong\",{children:\"boosted the site\u2019s overall authority\"}),\", as well as \",/*#__PURE__*/e(\"strong\",{children:\"keyword rankings.\"})]}),/*#__PURE__*/t(\"p\",{children:[\"\u200DThe primary target keyword for our Link Building campaign was ranking in position 15 before the start of the campaign. After only a few months, \",/*#__PURE__*/e(\"strong\",{children:\"Mito Red Light shot up to position 1\"}),\", beating out many notable publications and media houses. The number 1 ranking has resulted in a massive\",/*#__PURE__*/e(\"strong\",{children:\" increase in conversions and revenue.\"})]}),/*#__PURE__*/t(\"p\",{children:[\"Due to the high-authority backlinks we acquired, Mito Red Light also saw a large increase in overall keyword rankings and improvements in positioning. The site started ranking for over \",/*#__PURE__*/e(\"strong\",{children:\"5,100 new keywords\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"786 keywords have improved in ranking \"}),\"in the span of only 5 months!\"]})]});export const richText40=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Content is still a very fundamental and important part of SEO strategies, so we created \",/*#__PURE__*/e(\"strong\",{children:\"a robust, targeted content strategy\"}),\" to \",/*#__PURE__*/e(\"strong\",{children:\"rank for keywords\"}),\" that are important to our client\u2019s industry and, more importantly, their target audience.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"However, while content is still king, we supported our content strategy via \",/*#__PURE__*/e(\"strong\",{children:\"acquiring high-quality backlinks \"}),\"to target pages, and \",/*#__PURE__*/e(\"strong\",{children:\"optimized important pages \"}),\"to help them rank better for revenue-driving queries.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"New content creation\"}),\" has been pivotal in our SEO strategy. In addition to the content GR0 has written directly for this client, we also provided their internal writers with additional titles, often accompanied by \",/*#__PURE__*/e(\"strong\",{children:\"customized content briefs\"}),\" to share \",/*#__PURE__*/e(\"strong\",{children:\"SEO insights and recommendations\"}),\" as to how to construct the articles, what to include, along with \",/*#__PURE__*/e(\"strong\",{children:\"competitor analysis for the top ranking results in the SERPs\"}),\" for that article\u2019s focus keyword.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Additionally, with \",/*#__PURE__*/e(\"strong\",{children:\"a healthy monthly budget towards link acquisition\"}),\", we have successfully ranked on the 1st page for their first target keyword, and are now targeting a second, newer target keyword with our backlinks.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"To support these efforts, we\u2019ve \",/*#__PURE__*/e(\"strong\",{children:\"optimized important pages across the site\"}),\", focusing first on the more transactional/commercial pages.\u200D\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"What we\u2019ve accomplished:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"+87% Organic Revenue, YoY\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"+61% Organic Traffic, YoY\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"+214% Keywords Ranked on 1st Page of Google, YoY\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"+160% Total Number of Keywords Ranked, YoY\u200D\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"92\",src:\"https://framerusercontent.com/images/cgQfLbv1YW0araS8M8i3OPD7Vc.png\",style:{aspectRatio:\"456 / 184\"},width:\"228\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"141\",src:\"https://framerusercontent.com/images/PnRjCh7Aqu1S625v59ZNsf0w.png\",style:{aspectRatio:\"512 / 283\"},width:\"256\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"What we did to achieve these results:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Written & published 46 blog articles\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provided 19 content briefs for client\u2019s internal writers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Optimized 58 important pages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Added almost 400 individual image alt texts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Resolved 404: Page Not Found Errors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Acquired 51 high-quality, non-branded backlinks\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"141\",src:\"https://framerusercontent.com/images/l7M2q8NlscxngmF1U1en7dgZXFY.png\",style:{aspectRatio:\"512 / 282\"},width:\"256\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"125\",src:\"https://framerusercontent.com/images/txw3o7aRkOBZfnGTqvSz7NzQE.png\",style:{aspectRatio:\"512 / 250\"},width:\"256\"}),/*#__PURE__*/e(\"p\",{children:\"Our campaign began in November 2022\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"106\",src:\"https://framerusercontent.com/images/ZviQ3BaHDsTLNi2zOOcBFhy1UPc.png\",style:{aspectRatio:\"512 / 213\"},width:\"256\"}),/*#__PURE__*/e(\"p\",{children:\"Our keyword ranking performance growth was nothing short of impressive.\"})]});export const richText41=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Pepper Home came to us with \",/*#__PURE__*/e(\"strong\",{children:\"almost no non-branded exposure.\\xa0\"}),\"\u200DThe majority of the clicks and impressions they were getting were \",/*#__PURE__*/e(\"strong\",{children:\"branded variations\"}),\", so almost none of their leads were coming from organic search.\\xa0\u200DThey were ranking on Page 2 of the search results for their top term \u201CCustom Curtains,\u201D something we were \",/*#__PURE__*/e(\"strong\",{children:\"committed to fixing\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"First, we \",/*#__PURE__*/e(\"strong\",{children:\"identified what areas of the site were not aligned with the keywords\"}),\" their target audience was using to search for custom curtain products.\u200DWe \",/*#__PURE__*/e(\"strong\",{children:\"optimized the metadata on over 100 core pages\"}),\" to help us get \",/*#__PURE__*/e(\"strong\",{children:\"non-branded exposure\"}),\" and allow us to help Google understand more about their product offerings.\u200DOur focus has been on \",/*#__PURE__*/e(\"strong\",{children:\"on page optimization\"}),\" along with \",/*#__PURE__*/e(\"strong\",{children:\"external link creation for the term \u201CCustom Curtains\u201D\"}),\".\\xa0\u200DWith our custom link strategy, we were able \",/*#__PURE__*/e(\"strong\",{children:\"improve their ranking from position #14 to #2 \"}),\"in the SERPs!\"]})]});export const richText42=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"MOSH wanted to establish themselves as\",/*#__PURE__*/e(\"strong\",{children:\" experts in brain health\"}),\" within the industry to help build trust in the the brain-boosting ingredients that the MOSH bar offers.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We curated an SEO campaign to\",/*#__PURE__*/e(\"strong\",{children:\" increase their domain rating and trustworthiness online\"}),\", as well as \",/*#__PURE__*/e(\"strong\",{children:\"boost their non-branded organic traffic\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our SEO content strategy included\",/*#__PURE__*/e(\"strong\",{children:\" robust keyword research, on-page optimization, \"}),\"and\",/*#__PURE__*/e(\"strong\",{children:\" generating high-quality blog content\"}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Less than a year into the SEO campaign, we helped MOSH \",/*#__PURE__*/e(\"strong\",{children:\"grow its domain rating by 50% \"}),\"to a healthy 36.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"In March 2023,\\xa0 traffic directly from the blog posts we created for MOSH were responsible for \",/*#__PURE__*/e(\"strong\",{children:\"80% of all organic traffic\"}),\" and accounted for roughly\",/*#__PURE__*/e(\"strong\",{children:\" 12,700 new site visitors\"}),\". For reference, the month the campaign began, May 2022, only 3,961 organic users visited the site.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Keywords ranking on the site grew by 540% over 11 months.\"}),\" Keywords ranking between positions 1-10 \",/*#__PURE__*/e(\"strong\",{children:\"increased by nearly 97%.\"}),\"\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Over the campaign, GR0 generated \",/*#__PURE__*/e(\"strong\",{children:\"6,122 brain-related clicks \"}),\"and \",/*#__PURE__*/e(\"strong\",{children:\"332,000 impressions\"}),\" for MOSH.\"]})]});export const richText43=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Pluto launched a \",/*#__PURE__*/e(\"strong\",{children:\"cutting-edge beta web app\"}),\" to offer subscribers AI-powered investment research. This tool is tailored to guide users in making informed decisions in the volatile realms of stocks, equities, and crypto markets.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Yet, despite its innovative features, they faced an uphill task: their \",/*#__PURE__*/e(\"strong\",{children:\"user acquisition campaigns weren't scaling\"}),\" due to the burden of \",/*#__PURE__*/e(\"strong\",{children:\"unprofitable CPAs\"}),\". Their objective was clear: \",/*#__PURE__*/e(\"strong\",{children:\"drive a robust user base to their platform but at a profitable CPA\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/e(\"p\",{children:\"GR0 took a 4-prong approach to solving Pluto\u2019s problem with Google Ads.\\xa0\u200D\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"1. Campaign Structure Refinement: \"}),\"We noticed a significant issue: an \",/*#__PURE__*/e(\"strong\",{children:\"over-segmentation of campaigns.\"}),\" This segmentation bottleneck prevented the platform from exiting Google\u2019s \u201Clearning phase.\u201D\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"By \",/*#__PURE__*/e(\"strong\",{children:\"consolidating campaigns\"}),\", we ramped up the \",/*#__PURE__*/e(\"strong\",{children:\"weekly conversions to over 100\"}),\". This tactical move allowed for comprehensive data collection at multiple levels - be it keywords, ad copy, user demographics, or location. The wealth of data meant we could \",/*#__PURE__*/e(\"strong\",{children:\"judiciously re-segment campaigns\"}),\", informed by real-time user behavior rather than mere assumptions.\"]})]});export const richText44=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"GR0\u2019s been working with Mad Rabbit to increase their site\u2019s non-branded traffic.\u200D\"}),/*#__PURE__*/t(\"p\",{children:[\"Our primary challenge was getting Mad Rabbit to \",/*#__PURE__*/e(\"strong\",{children:\"rank high in the Search Results for \"}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"tattoo aftercare\"})}),/*#__PURE__*/e(\"strong\",{children:\" \"}),\"along with their product pages and net-new blogs we drafted.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Once we made initial optimizations and built a considerable blog catalog, the challenge was to \",/*#__PURE__*/e(\"strong\",{children:\"increase organic users and revenue\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"Our SEO content strategy consisted of\",/*#__PURE__*/e(\"strong\",{children:\" robust keyword research\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"competitor analysis\"}),\" to identify gaps and opportunities in their vertical.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We wrote informative, optimized content around topic clusters that their target audience is searching for. In turn, we were able to prop up their priority keyword rankings, including moving \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"tattoo aftercare\"})}),/*#__PURE__*/e(\"strong\",{children:\" into the top 3\"}),\"\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our strategy also included internal linking and optimization of PDPs, which \",/*#__PURE__*/e(\"strong\",{children:\"improved product keyword rankings and traffic to PDPs\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We acquired backlinks to our tattoo aftercare blog, supporting our efforts to rank in\",/*#__PURE__*/e(\"strong\",{children:\" the top 3 for its primary keyword and stabilizing its ranking volatility\"}),\".\"]})]});export const richText45=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"BUBS wanted to \",/*#__PURE__*/e(\"strong\",{children:\"target niche terms more aggressively\"}),\" to stand out from their competition on Google.\u200D\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Key terms like \",/*#__PURE__*/e(\"strong\",{children:\"MCT Powder and ACV Gummies were hidden on page two\"}),\", lacking valuable visibility. Additionally, \",/*#__PURE__*/e(\"strong\",{children:\"the term \u201CCollagen Peptides Powder\u201D started at position 66\"}),\", invisible to their target audience.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"These obstacles demanded a \",/*#__PURE__*/e(\"strong\",{children:\"comprehensive strategy \"}),\"to enhance online visibility and rankings.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We identified\",/*#__PURE__*/e(\"strong\",{children:\" low-difficulty, high-volume keywords\"}),\", strategically chosen to rank on the first page of Google. This meticulous keyword selection led to an astounding \",/*#__PURE__*/e(\"strong\",{children:\"near-400% increase in organic visibility\"}),\".\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"We also leveraged \",/*#__PURE__*/e(\"strong\",{children:\"non-branded links \"}),'to increase their authority and presence online. This resulted in increased keyword visibility for various keywords, including \"MCT Powder\" and \"ACV Gummies\", which now occupy ',/*#__PURE__*/e(\"strong\",{children:\"a top 3 spot on Google\"}),\". Our efforts also yielded an impressive \",/*#__PURE__*/e(\"strong\",{children:\"220% enhancement in total keywords\"}),\" for our target page in search engine rankings.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Perhaps even more strikingly, the total keywords residing on the first page of Google surged exponentially, registering an \",/*#__PURE__*/e(\"strong\",{children:\"increase of over 1300% \"}),\"since the start of the campaign.\"]})]});export const richText46=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"SwagMagic was a \",/*#__PURE__*/e(\"strong\",{children:\"newer site that lacked authority online\"}),\". They needed GR0\u2019s help to improve their domain authority within their vertical.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"By strategically incorporating a \",/*#__PURE__*/e(\"strong\",{children:\"non-branded backlink strategy\"}),\" alongside our branded approach, we significantly enhanced their chances of \",/*#__PURE__*/e(\"strong\",{children:\"achieving higher rankings in search results \"}),\"and attracting\",/*#__PURE__*/e(\"strong\",{children:\" valuable organic traffic.\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We first worked to acquire branded backlinks to strengthen SwagMagic\u2019s \",/*#__PURE__*/e(\"strong\",{children:\"backlink profile and overall domain rating.\"}),\" Using Ahrefs' Domain Rating (DR) metric tool, we monitored our progress. After starting with a DR of 24, we achieved an impressive DR of 48 \u2014 \",/*#__PURE__*/e(\"strong\",{children:\"a noteworthy 100% increase in authority in just under a year\"}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"SwagMagic started the year with 67 keywords on Google, and by December achieved 857 keywords, an astounding \",/*#__PURE__*/e(\"strong\",{children:\"525% surge in total keywords \"}),\"and a \",/*#__PURE__*/e(\"strong\",{children:\"1,200% increase in keywords occupying Google\u2019s top spots\"}),\".\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"The increase in rankings also boosted clicks and impressions, increasing \",/*#__PURE__*/e(\"strong\",{children:\"clicks by 1,100%\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"impressions by 650%\"}),\" from the start of the year.\"]})]});export const richText47=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Despite Arbor\u2019s expertise and quality services, they were \",/*#__PURE__*/e(\"strong\",{children:\"not perceived as an established authority\"}),\" within their vertical online. Their online presence was hindered by several key issues that impacted their visibility and credibility.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Arbor\u2019s backlink profile was\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"notably weak, \",/*#__PURE__*/e(\"strong\",{children:\"lacking the authoritative links needed to boost their online reputation\"}),\". This deficiency in high-quality backlinks hindered their ability to rank well on Google.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"GR0\u2019s mission was to harness a \",/*#__PURE__*/e(\"strong\",{children:\"robust Link Building strategy, focusing on branded backlinks\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0 got to work acquiring branded backlinks to \",/*#__PURE__*/e(\"strong\",{children:\"strengthen Arbor\u2019s backlink profile \"}),\"and their overall domain authority. Using the Domain Rating (DR) metric tool in Ahrefs, we measured an increase from \",/*#__PURE__*/e(\"strong\",{children:\"25 (start of year) to 38 (end of year)\"}),\", a 52% increase in authority in 12 months.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"This work has left a notable impact on total ranked keywords, but specifically keywords ranking on page one of the search engine results page (SERPs). With only 246 keywords in January 2023 to \",/*#__PURE__*/e(\"strong\",{children:\"1,294 keywords in December 2023.\"}),\"\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Clicks are up nearly \",/*#__PURE__*/e(\"strong\",{children:\"200%\"}),\" from start of year and impressions are up more than \",/*#__PURE__*/e(\"strong\",{children:\"215%\"}),\" from start of year.\"]})]});export const richText48=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Seismic's primary challenge was to \",/*#__PURE__*/e(\"strong\",{children:\"generate new leads\"}),\" by \",/*#__PURE__*/e(\"strong\",{children:\"establishing dominance\"}),\" in the sales enablement space.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Their online presence was limited, as evidenced by their site ranking for only 7,000 keywords. This \",/*#__PURE__*/e(\"strong\",{children:\"lack of visibility in search results \"}),\"hindered their ability to attract and engage a wider audience effectively.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"To meet these challenges, a \",/*#__PURE__*/e(\"strong\",{children:\"focused and strategic SEO effort \"}),\"was necessary to expand their digital footprint and improve their positioning in relevant search results.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"GR0\u2019s strategy for Seismic involved creating 50 \",/*#__PURE__*/e(\"strong\",{children:\"optimized landing pages\"}),\" targeting various high-volume keywords in their industry.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"This approach aimed to improve Seismic's \",/*#__PURE__*/e(\"strong\",{children:\"visibility in search engine results \"}),\"and\",/*#__PURE__*/e(\"strong\",{children:\" drive organic traffic\"}),\" by expanding the range of keywords for which the site ranked.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"This targeted effort \",/*#__PURE__*/e(\"strong\",{children:\"enhanced Seismic's online presence \"}),\"and \",/*#__PURE__*/e(\"strong\",{children:\"attracted a broader, more engaged audience\"}),\".\"]})]});export const richText49=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Sober Sidekick had a \",/*#__PURE__*/e(\"strong\",{children:\"limited online presence\"}),\" and authority in the sobriety space.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"GR0 was enlisted to develop and implement a \",/*#__PURE__*/e(\"strong\",{children:\"comprehensive SEO and backlink campaign\"}),\" that increased app downloads, organic traffic, keyword rankings and overall visibility on Google.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Starting with only 70 organic keywords and 20 referring domains, we devised and implemented an intense strategy to\",/*#__PURE__*/e(\"strong\",{children:\" reach their goals and skyrocket their growth.\"})]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/t(\"p\",{children:[\"We began our SEO strategy for Sober Sidekick by \",/*#__PURE__*/e(\"strong\",{children:\"building high quality blog content\"}),\" around various sobriety topic clusters to establish their authority. From there, we \",/*#__PURE__*/e(\"strong\",{children:\"targeted keywords relating to their primary demographics \"}),\"including consumers, health care providers, and behavioral health experts.\\xa0\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Our Link Building strategy increased the number of referring domains to their site, \",/*#__PURE__*/e(\"strong\",{children:\"boosting their Domain Rating and overall authority on Google\"}),\".\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"In addition to publishing new content and acquiring high-authority backlinks, we \",/*#__PURE__*/e(\"strong\",{children:\"optimized existing pages\"}),\" by implementing \",/*#__PURE__*/e(\"strong\",{children:\"internal links\"}),\" throughout the site\u2019s content. This made it easier for Google to crawl and rank pages, as well and created a \",/*#__PURE__*/e(\"strong\",{children:\"better user experience\"}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[\"GR0 took Sober Sidekick from 150 ranking keywords to 3,500, from 20 referring domains to 145, \",/*#__PURE__*/e(\"strong\",{children:\"increased their total organic traffic by 134%, and grew their organic conversions (including app downloads) by more than 61%,\"}),\" all in less than a year!\"]})]});export const richText50=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"p\",{children:[\"Flossy set out to \",/*#__PURE__*/e(\"strong\",{children:\"revolutionize the dental industry\"}),\" by challenging the belief that dental insurance is necessary for dental procedures. They started as a no-insurance alternative for those who needed dental procedures, and have since grown their brand beyond that to provide cost-effective options for those with or without insurance. They aimed to show the world that quality dental care can be affordable, even without insurance, through their\",/*#__PURE__*/e(\"strong\",{children:\" network of top-tier dentists\"}),\". However, they faced the challenge of \",/*#__PURE__*/e(\"strong\",{children:\"building brand awareness\"}),\" and educating a new audience about their services. Partnering with GR0, they worked to lower lead costs and improve their \",/*#__PURE__*/e(\"strong\",{children:\"organic ranking\"}),\" for \",/*#__PURE__*/e(\"strong\",{children:\"relevant keywords\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Strategy\"}),/*#__PURE__*/e(\"p\",{children:\"Through the creation of over 195 pieces of content, we significantly increased SEO Content their visibility for crucial keywords. Our strategy involved growing keywords directly related to Flossy's brand, outperforming well-known, authoritative sites like GoodRx, Forbes, and Health.com. We utilized our knowledge of on-page optimizations to position priority keywords effectively and maintain strong technical health for the site.\"}),/*#__PURE__*/e(\"h3\",{children:\"Examples\"}),/*#__PURE__*/e(\"p\",{children:\"When we kicked off the campaign, our primary focus was on 'Location-Based Dentist Near Me' pages. However, it soon became evident that our local search authority was insufficient to rank effectively for these types of keywords. Recognizing this challenge, we strategically pivoted our approach. We shifted our focus towards targeting dental procedure-related keywords - particularly those revolving around insurance. This adjustment allowed us to leverage our strengths and tap into a more achievable, yet equally valuable, keyword niche. When we began working with Flossy, they had no organic traffic to their name. To date, they receive up to 900+ clicks per day, achieving over 37k clicks in one month alone.\u200D\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"We\u2019ve achieved many notable keyword ranking improvements such as:\"}),\"\u200D\"]}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"how much does a dental bridge cost without insurance\"}),'\" \u2013 Initially unranked, now #3 on Google, attracting approximately 5,800 users monthly.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"how much does braces cost with insurance\"}),'\" \u2013 Previously unranked, now #7 on Google, drawing around 1,267 users monthly.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"wisdom tooth removal no insurance\"}),'\" \u2013 Ranking #1 on Google, responsible for about 1,200 monthly visitors.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"cost of braces for kids\"}),'\" \u2013 Improved from unranked to #1 on Google, driving roughly 634 visitors monthly.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"how much do veneers cost without insurance\"}),'\" \u2013 Now ranks #1 on Google, bringing in approximately 551 organic users monthly.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"does insurance cover retainers\"}),'\" \u2013 Improved to #1 on Google, attracting around 350 users monthly.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"does insurance cover tonsil removal\"}),'\" \u2013 Rose from unranked to #1 overall on Google, driving about 400 monthly visitors.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:['\"',/*#__PURE__*/e(\"strong\",{children:\"how much is a crown without insurance\"}),'\" \u2013 Improved from unranked to #5 on Google, generating around 610 monthly users.']})})]}),/*#__PURE__*/e(\"h3\",{children:\"Proven Success\"}),/*#__PURE__*/e(\"p\",{children:\"Our most satisfying accomplishment in this campaign was our ability to outperform competitors who were already well-established in the industry. We worked hard to achieve this through the strategic use of branded backlinks, comprehensive on-page optimizations, and high-quality SEO-optimized content. This approach not only enhanced our visibility but also established a strong online presence, distinguishing us from even the most prominent players in the field.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"147\",src:\"https://framerusercontent.com/images/NTT2EIsZpoKP2oKrI6cuGiNo8k.png\",srcSet:\"https://framerusercontent.com/images/NTT2EIsZpoKP2oKrI6cuGiNo8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTT2EIsZpoKP2oKrI6cuGiNo8k.png 800w\",style:{aspectRatio:\"800 / 294\"},width:\"400\"}),/*#__PURE__*/e(\"p\",{children:\"We harnessed the power of UGC, specifically whitelisted UGC. This strategic move resulted in a 40% surge in volume and a 50% reduction in CPA within the first month of implementation, facilitating a significant scaling of the account.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"148\",src:\"https://framerusercontent.com/images/GZTb4if7W275PEeZjqjNUFNQaL4.png\",srcSet:\"https://framerusercontent.com/images/GZTb4if7W275PEeZjqjNUFNQaL4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GZTb4if7W275PEeZjqjNUFNQaL4.png 800w\",style:{aspectRatio:\"800 / 297\"},width:\"400\"}),/*#__PURE__*/e(\"p\",{children:\"In that same timeframe, keyword ranking has increased from 37 to over 45k, with 9% of keywords ranking on page 1.\"})]});export const richText51=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/t(\"p\",{children:[\"The client approached us hoping to enhance their SEO strategy and \",/*#__PURE__*/e(\"strong\",{children:\"boost organic traffic\"}),\" while targeting a broader range of non-branded keywords in \",/*#__PURE__*/e(\"strong\",{children:\"skincare, red light therapy and microcurrent sectors\"}),\", ultimately seeking to boost revenue. Before working with us, they had a pre-existing SEO setup but only ranked for around 3,000 keywords. Their website pages lacked optimization. We aimed to address these areas and use our expertise to elevate their online presence and achieve their desired outcomes.\u200D\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Strategy \"})}),/*#__PURE__*/t(\"p\",{children:[\"Our approach was comprehensive and collaborative when addressing NuFACE\u2019s personal goals. Beginning with a website crawl, we pinpointed optimization opportunities, strategically \",/*#__PURE__*/e(\"strong\",{children:\"embedding keywords into page titles\"}),\" \",/*#__PURE__*/e(\"strong\",{children:\"and meta descriptions\"}),\" to boost their rankings for these targeted terms. Our efforts extended to \",/*#__PURE__*/e(\"strong\",{children:\"optimizing critical pages and creating informative blog content\"}),\" tailored to the brand's focus and audience, driving traffic and engagement.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"In executing the campaign, we used a mix of strategies, including \",/*#__PURE__*/e(\"strong\",{children:\"content creation via blogs, on-page optimization (OPO), and technical SEO enhancements\"}),\". We added on-page content for collections and essential pillar pages, aiming to maximize organic reach and user engagement.\u200D\"]}),/*#__PURE__*/t(\"p\",{children:[\"Beyond the conventional tactics, though, we pursued unique avenues to enhance the client's success. With our extensive network, we \",/*#__PURE__*/e(\"strong\",{children:\"facilitated a strategic introduction to shoppable video platform\"}),\" \",/*#__PURE__*/e(r,{href:\"https://benovel.com/\",motionChild:!0,nodeId:\"BulzFvRvm\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(i.a,{children:\"Novel \"})}),\"because we knew they could elevate that website's customer journey through the integration of video content. The collaboration resulted in more than \",/*#__PURE__*/e(\"strong\",{children:\"$1 million in revenue\"}),\" for NuFACE via Novel, highlighting the value of GR0's network.\u200D\"]}),/*#__PURE__*/e(\"p\",{children:\"In terms of resource allocation, this campaign predominantly focused on SEO and OPO, with a monthly budget of approximately $5,000.\u200D\"}),/*#__PURE__*/e(\"p\",{children:\"We have loved working with NuFACE, and they have raved about our work in NPS surveys and Google reviews. We take pride in partnering with our clients. When you come to GR0, you don\u2019t just get a simple service but a partner and expert guide to success.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Examples\"})}),/*#__PURE__*/e(\"p\",{children:\"NuFACE is currently ranking #1 for multiple search results:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1090\",src:\"https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp\",srcSet:\"https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/eXooZFvZBwblda2wKLVx0aFphI.webp 4460w\",style:{aspectRatio:\"4460 / 2180\"},width:\"2230\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"YoY Growth\"})}),/*#__PURE__*/e(\"p\",{children:\"These graphs show a clear increase in both organic traffic and keywords, with a huge increase in organic keyword ranking since working with GR0.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"936\",src:\"https://framerusercontent.com/images/NPYpGwiVLSNqgeTfI7vhnHAqgPY.webp\",srcSet:\"https://framerusercontent.com/images/NPYpGwiVLSNqgeTfI7vhnHAqgPY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NPYpGwiVLSNqgeTfI7vhnHAqgPY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/NPYpGwiVLSNqgeTfI7vhnHAqgPY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/NPYpGwiVLSNqgeTfI7vhnHAqgPY.webp 2098w\",style:{aspectRatio:\"2098 / 1872\"},width:\"1049\"}),/*#__PURE__*/e(\"p\",{children:\"In connecting NuFACE with our contact at Novel, they\u2019ve enhanced the customer experience on their site, including videos with different products and providing a unique experience for online traffic:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1422\",src:\"https://framerusercontent.com/images/RwtJwv3RuncDC88ucCgejWbmc.webp\",srcSet:\"https://framerusercontent.com/images/RwtJwv3RuncDC88ucCgejWbmc.webp?scale-down-to=1024 755w,https://framerusercontent.com/images/RwtJwv3RuncDC88ucCgejWbmc.webp?scale-down-to=2048 1510w,https://framerusercontent.com/images/RwtJwv3RuncDC88ucCgejWbmc.webp 2098w\",style:{aspectRatio:\"2098 / 2844\"},width:\"1049\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Wins\"})}),/*#__PURE__*/t(\"p\",{children:[\"What's truly impressive about our work with NuFace is how consistency pays off, which is evident in the significant growth we've achieved year over year. Seeing the outcomes of our dedication to the strategy, from the \",/*#__PURE__*/e(\"strong\",{children:\"substantial increase in organic keywords and traffic\"}),\" to the remarkable \",/*#__PURE__*/e(\"strong\",{children:\"$60K revenue generated \"}),\"in just six months, is incredibly rewarding. This success supports the effectiveness of our approach and reaffirms our commitment to delivering real results for our clients. GR0 takes immense pride in our partnership with NuFace, working hard to turn goals into achievements.\\xa0\"]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "wTAAgT,IAAIA,GAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,IAAcA,EAAY,CAAC,EAAE,EAAE,IAAIC,GAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,IAAmBA,EAAiB,CAAC,EAAE,EAAE,IAAIC,GAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,IAAkBA,EAAgB,CAAC,EAAE,EAQt0B,SAASC,EAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,EAAc,EAAQC,EAAWZ,IAAOL,EAAY,OAAakB,EAAcH,GAAUR,IAAYN,EAAiB,KAAK,CAACgB,EAAgB,CAACE,EAAaC,CAAY,EAAEC,EAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,EAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,EAAUC,CAAU,EAAEC,EAAS,EAAK,EAAQC,EAAaC,EAAUd,CAAK,EAAQe,EAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGvB,IAAM,GAAI,OAAqB0B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc7B,CAAG,EAAE,GAAG4B,IAAY,OAAW,OAAqBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EACrwBK,EAAaC,GAAgBH,EAAQ5B,EAAUgC,GAAiB,EAAErC,EAAgB,KAAKA,EAAgB,GAAG,EAC1GsC,EAAaJ,EAAS,aAAa,OAAAI,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,GAAKvB,GAAYC,IAAesB,EAAa,IAAI,WAAW,GAAG,EAAMvB,GAAYX,GAAYkC,EAAa,IAAI,OAAO,GAAG,EAAMnC,IAAOL,EAAY,OAAMwC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWL,CAAO,GAAO3B,GAAOgC,EAAa,IAAI,QAAQ,OAAO,EAAwBC,EAAM,UAAU,CAAC,eAAe,IAAIhB,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,QAAQG,EAAW,MAAM,CAAC,GAAGmB,GAAa,aAAAf,EAAa,UAG9nBE,IAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,SAAS,CAACI,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAgBA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,EAAW,WAAWzB,EAAc,sBAAsBmB,CAAY,cAAc,MAAS,CAAC,CAAC,EAAEf,EAAwBQ,EAAK,SAAS,CAAC,MAAMa,EAAW,IAAIP,EAAS,KAAK,YAAY,IAAI,MAAM,oGAAoG,QAAQ3B,EAAQ,aAAaC,EAAa,aAAaC,EAAa,YAAYC,EAAY,UAAUC,CAAS,CAAC,EAAgBiB,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMhB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,EAAQ,YAAY,UAAU0C,EAAoB1C,EAAQ,CAAC,IAAI,CAAC,KAAK2C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO9C,CAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAK8C,EAAY,KAAK,QAAQ,OAAO,OAAO7C,CAAgB,EAAE,OAAOa,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,EAAoB,GAAGC,CAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAKjD,EAAY,OAAO,WAAW,GAAK,UAAUC,EAAiB,OAAO,MAAM,EAAI,EAAEE,EAAQ,aAAa8C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI9C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI8C,CAAS,CAAE,MAAM,CAAC,IAAMd,EAASe,EAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGhC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMgD,EAAahD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACv9D,GAAGgD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQ/B,EAAI,aAAa,IAAI,GAAG,EAAQiD,EAAUF,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQkB,CAAS,CAAE,CACrI,GAAGD,EAAa,CAAC,IAAI,QAAwC,MAAM,CAAtBA,EAAa,CAAC,EAAkBhD,CAAG,CAAG,CACnF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMkD,EAASlD,EAAI,SAAS,MAAM,CAAC,EAAQmD,EAAUJ,EAAYG,CAAQ,EAAE,MAAM,CAACA,EAASC,CAAS,CAAE,CAAC,CAAC,SAASJ,EAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,CAAO,EAAE,CAAE,CAAC,SAASG,GAAgBH,EAAQqB,EAAIC,EAAOvD,EAAgB,IAAI,CAChS,IAAMwD,EAAIxD,EAAgB,KAAK,+BAA+B,0BAAgCyD,EAAIzD,EAAgB,KAAK,OAAO,MAAM,OAAOsD,EAAI,CAAC,KAAKvD,EAAiB,IAAI,MAAM,GAAGyD,CAAG,GAAGvB,CAAO,cAAcwB,CAAG,GAAG,KAAK1D,EAAiB,OAAO,MAAM,GAAGyD,CAAG,GAAGvB,CAAO,cAAcwB,CAAG,GAAG,KAAK1D,EAAiB,KAAK,MAAM,GAAGyD,CAAG,GAAGvB,CAAO,kBAAkBwB,CAAG,GAAG,QAAQ,MAAM,GAAGD,CAAG,GAAGvB,CAAO,MAAMwB,CAAG,EAAG,CAAC,CAAC,IAAIC,EACpZ,SAASrB,IAAkB,CAC3B,GAAG,CAACsB,EAAQ,MAAO,GAAM,GAAGD,IAAoB,OAAW,OAAOA,EAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAMA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC9KA,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,GAAG,EAC5D,EAAO,CACd,SAAS/B,IAAc,CAAC,OAAqBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGiC,EAAgB,SAAS,QAAQ,EAAE,SAAuBjC,EAAK,MAAM,CAAC,MAAMkC,EAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS9B,GAAa,CAAC,QAAA+B,CAAO,EAAE,CAAC,OAAqBnC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGoC,EAAgB,SAAS,QAAQ,EAAE,SAAuBzB,EAAM,MAAM,CAAC,MAAMuB,EAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,GAAW,CAAC,QAAAnC,EAAQ,UAAAe,EAAU,MAAAhB,CAAK,EAAE,CAAC,OAAqBsB,EAAK,SAAS,CAAC,QAAQrB,EAAQ,aAAa,OAAO,MAAM0D,GAAY,SAAuB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAeX,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUhB,EAAM,OAAO,OAAO,UAAU,YAAYgB,GAAUhB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAgBsB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMqC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,EAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,EAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECtBv4C,IAAMyB,GAAsBC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAyDE,EAAE,SAAS,CAAC,SAAS,+DAA+D,CAAC,EAAE,4FAAuF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iBAA8BE,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,EAAE,uCAAoDA,EAAE,SAAS,CAAC,SAAS,qDAAqD,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,qDAAgD,CAAC,EAAE,uIAAoJA,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iFAA8FE,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,mHAAgIA,EAAE,SAAS,CAAC,SAAS,6EAA6E,CAAC,EAAE,qJAAkKA,EAAE,SAAS,CAAC,SAAS,gEAAgE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mBAAc,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,WAAwBE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,0DAAuEA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,mBAAgCA,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,kBAA+BA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,uHAA+HA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,2FAAsF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,oEAAoE,CAAC,EAAE,qGAAkHA,EAAE,SAAS,CAAC,SAAS,qFAAqF,CAAC,EAAE,oEAAiFA,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uIAAoJE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,0DAAkEA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAqDE,EAAE,SAAS,CAAC,SAAS,oGAAoG,CAAC,EAAE,wEAAwE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,OAAoBE,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,qJAAkKA,EAAE,SAAS,CAAC,SAAS,uDAAuD,CAAC,EAAE,sEAAsE,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sCAA8CE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,mEAAmE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0EAAkFE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,yBAAyB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,uEAAuE,CAAC,EAAE,wEAAwE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8CAAsDE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,eAA4BA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,6DAA6D,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uCAAkC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gCAA2B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uCAAkC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yGAAsHE,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,iEAAiE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gIAA6IE,EAAE,SAAS,CAAC,SAAS,iFAAiF,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iDAA8DE,EAAE,SAAS,CAAC,SAAS,0EAA0E,CAAC,EAAE,kKAA+KA,EAAE,SAAS,CAAC,SAAS,kEAAkE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,sEAAsE,OAAO,qQAAqQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeC,GAAuBH,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAuBE,EAAE,SAAS,CAAC,SAAS,4DAA4D,CAAC,EAAE,gDAA6DA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,0EAAuFA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,uGAAoHA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,uEAAoFA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,+CAAuDA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,0CAAuDA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mBAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mCAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uBAAkB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6BAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAAyB,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8DAAsEE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,YAAyBA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,+CAA4DA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,uDAAoEA,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,+DAA4EA,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,kDAA+DA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,gFAA6FA,EAAE,SAAS,CAAC,SAAS,yDAAyD,CAAC,EAAE,qEAAkFA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8CAAsDE,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,EAAE,kEAA+EA,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,wDAAwD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8CAAsDE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,8GAA2HA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,iHAA8HA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,uBAAuB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uBAA+BE,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,+DAA4EA,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,kFAA0FA,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,YAAyBA,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8GAAsHE,EAAE,SAAS,CAAC,SAAS,iEAAiE,CAAC,EAAE,kDAA+DA,EAAE,SAAS,CAAC,SAAS,yEAAyE,CAAC,EAAE,qDAAkEA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,iFAAiF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,iDAAoDA,EAAE,SAAS,CAAC,SAAS,sEAAsE,CAAC,EAAE,uCAAoDA,EAAEE,EAAE,CAAC,KAAK,mGAAmG,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,oRAA4RH,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,wEAAwE,OAAO,wcAAwc,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,iDAAoDA,EAAE,SAAS,CAAC,SAAS,sEAAsE,CAAC,EAAE,uCAAoDA,EAAEE,EAAE,CAAC,KAAK,mGAAmG,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,oRAA4RH,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeI,GAAuBN,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+JAA+J,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4JAAuJ,CAAC,EAAeA,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sFAA8FE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,+CAA+C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qEAA6EE,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,2CAA2C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uCAAoDE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,kHAA6G,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,GAAuBV,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2SAAsS,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gPAAgP,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uTAAkT,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oYAAoY,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8LAAyL,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,4EAA4E,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAEE,EAAE,CAAC,KAAK,uDAAuD,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAeH,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAE,oNAA+M,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mJAAmJ,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,wEAAwE,OAAO,0QAA0Q,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wHAAmH,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2MAAsM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2HAA2H,CAAC,CAAC,CAAC,CAAC,EAAeS,GAAuBX,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sOAAmPE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,kCAA+CA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,4CAA4C,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAe,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wOAAqPE,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,oGAA4GA,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sUAAmVE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kDAA0DE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,kHAAkH,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gIAAwIE,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uGAAkG,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2JAAsJ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wHAAmH,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8CAA2DE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,yJAAsKA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,mDAAgEA,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,iLAA8LA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,+HAA4IA,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,oEAAoE,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gNAAgN,CAAC,CAAC,CAAC,CAAC,EAAeU,GAAuBZ,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uDAAoEE,EAAE,SAAS,CAAC,SAAS,OAAO,CAAC,EAAE,IAAiBA,EAAE,SAAS,CAAC,SAAS,oEAAoE,CAAC,EAAE,+cAA0c,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,yEAAyE,CAAC,EAAE,wBAAqCA,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,8BAA2CA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,0CAAuDA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,+HAA+H,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0LAAuME,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,2LAA2L,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,qDAAqD,CAAC,EAAE,+FAA4GA,EAAE,SAAS,CAAC,SAAS,gIAAgI,CAAC,EAAE,uIAAuI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uBAAoCE,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,0JAAuKA,EAAE,SAAS,CAAC,SAAS,sGAAsG,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yCAAiDE,EAAE,SAAS,CAAC,SAAS,+DAA+D,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAoDE,EAAE,SAAS,CAAC,SAAS,yGAAyG,CAAC,EAAE,yFAAsGA,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4JAAuJ,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+BAAuCE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,2CAA2C,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mHAA8G,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,MAAM,CAAC,EAAE,2BAA2B,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,+BAA+B,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAkBE,EAAE,SAAS,CAAC,SAAS,QAAQ,CAAC,EAAE,wCAAwC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mOAAgPE,EAAE,SAAS,CAAC,SAAS,oEAAoE,CAAC,EAAE,oFAAiGA,EAAE,SAAS,CAAC,SAAS,oGAAoG,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,mEAAmE,CAAC,EAAE,oBAAiCA,EAAE,SAAS,CAAC,SAAS,iEAAiE,CAAC,EAAE,kCAA+CA,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,6BAA0CA,EAAE,SAAS,CAAC,SAAS,iDAAiD,CAAC,EAAE,0CAAuDA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wEAAwE,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0FAA0F,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeW,GAAuBb,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qDAAkEE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,oFAAiGA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,oDAAiEA,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wJAA2JE,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,wCAAqDA,EAAE,SAAS,CAAC,SAAS,wCAAmC,CAAC,EAAE,yBAAyB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6BAA0CE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,qJAA6JA,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,gEAA2D,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uIAAoJE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,sDAAmEA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,0CAA0C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,sFAAiF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mCAAgDE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,oEAA0D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,GAAuBd,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wLAAuME,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,6CAAwC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAqDE,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,8DAA8D,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,qBAAkCA,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,qLAA4J,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uBAAoCE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,wFAAqGA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oEAAiFE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,iBAA8BA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,4FAA4F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,GAAuBf,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8YAAyY,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4EAAyFE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,8KAA2LA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yOAAsPE,EAAE,SAAS,CAAC,SAAS,iDAAiD,CAAC,EAAE,+CAA4DA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gMAA6ME,EAAE,SAAS,CAAC,SAAS,WAAW,CAAC,EAAE,oQAAoQ,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uCAAoDE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,wEAAqFA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,uXAAoYA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,UAAU,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oEAAiFE,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,2GAAmHA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,gGAAwGA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,4NAAyOA,EAAE,SAAS,CAAC,SAAS,OAAO,CAAC,EAAE,uCAAoDA,EAAE,SAAS,CAAC,SAAS,OAAO,CAAC,EAAE,qCAAkDA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oEAAiFE,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,qDAAqD,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sbAAsb,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8eAA+d,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qHAAqH,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,qEAAqE,OAAO,sKAAsK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wGAAwG,CAAC,CAAC,CAAC,CAAC,EAAec,GAAuBhB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wIAAqJE,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,MAAmBA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,8LAA2MA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,gLAA6LA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kMAA+ME,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,oLAA+K,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gbAA6bE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,MAAmBA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,UAAK,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8BAA2CE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,iNAA4M,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+XAA+X,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kOAA6N,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oEAAiFE,EAAE,SAAS,CAAC,SAAS,WAAW,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,iHAA8HA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,UAAuBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4FAAyGE,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,UAAuBA,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,gFAA6FA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,UAAuBA,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,mGAA8F,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iQAA8QE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,wKAAqLA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,EAAE,6GAA6G,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oGAAiHE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,sTAAmUA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,SAAsBA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,6JAA6J,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,GAAwBjB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAyDE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,4CAA4C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2DAAmEE,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4KAAmJ,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAoCE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,+CAA+C,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qCAAkDE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,6GAA0HA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mGAAsGE,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,yDAAsEA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,wBAAwB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,aAAqBE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,+IAA2H,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,GAAwBlB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oJAAiKE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,4GAAyHA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,kBAA+BA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,kBAA+BA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,qFAAgF,CAAC,EAAE,QAAG,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,0EAAuFA,EAAE,SAAS,CAAC,SAAS,iDAAiD,CAAC,EAAE,sCAAmDA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,oEAA+D,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,0DAAuEA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,mFAA8E,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,6FAA0GA,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,GAAwBnB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qpBAAqpB,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+pBAA+pB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qUAAqU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qOAAqO,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,umBAAumB,CAAC,EAAeA,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAE,MAAM,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,YAAY,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBA,EAAEK,EAAE,CAAC,oBAAoB,sEAAsE,SAASC,GAAgBN,EAAEO,EAAE,CAAC,GAAGD,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,eAAe,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,GAAwBpB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+JAAqJ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6HAA6H,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,qDAAqD,CAAC,EAAE,4FAAuF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,oCAAiDA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,sCAAiC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,qIAAqI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,GAAwBrB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2GAAwHE,EAAE,SAAS,CAAC,SAAS,yDAAyD,CAAC,EAAE,+HAAuIA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,yGAA4GA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,WAAwBA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6CAA6C,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,4BAA4B,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wDAAqEE,EAAE,SAAS,CAAC,SAAS,yDAAyD,CAAC,EAAE,4DAA4D,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iBAA8BE,EAAE,SAAS,CAAC,SAAS,2HAAsH,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yDAAsEE,EAAE,SAAS,CAAC,SAAS,4DAA4D,CAAC,EAAE,2EAA2E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,GAAwBtB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6BAA0CE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,oEAAiFA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,oJAA+I,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gGAAgG,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,oHAA4HE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,6FAAwF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAyDE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,6KAAmK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAyCE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,yDAAyD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,GAAwBvB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0PAA0P,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2DAAwEE,EAAE,SAAS,CAAC,SAAS,wGAAwG,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+LAA+L,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,sBAAiB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAI,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iEAA8EE,EAAE,SAAS,CAAC,SAAS,oFAAoF,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yBAAsCE,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,uGAAoHA,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,qEAAkFA,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,2CAA2C,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gNAAgN,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0VAA0V,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iQAA8QE,EAAE,SAAS,CAAC,SAAS,qEAAqE,CAAC,EAAE,oMAAoM,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAI,CAAC,EAAE,yTAAsUA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,4BAAyCA,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,6BAA0CA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,EAAE,kJAAkJ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAI,CAAC,EAAE,8BAA2CA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,EAAE,8HAA2IA,EAAE,SAAS,CAAC,SAAS,WAAW,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,kGAAkG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAI,CAAC,EAAE,kCAA+CA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,8EAA2FA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,0EAAuFA,EAAE,SAAS,CAAC,SAAS,OAAO,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,qBAAgB,CAAC,EAAE,qMAAkNA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,2EAA2E,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,YAAO,CAAC,EAAE,sBAAmCA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,WAAM,CAAC,EAAE,kBAA+BA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,sBAAsB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,aAAQ,CAAC,EAAE,UAAuBA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0EAAuFE,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,uGAAoHA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,wGAAwG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6PAA0QE,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,iJAAiJ,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,oGAAoG,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,wEAAwE,OAAO,4KAA4K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,EAAesB,GAAwBxB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAyCE,EAAE,SAAS,CAAC,SAAS,qDAAqD,CAAC,EAAE,iIAA8IA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,iBAA8BA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,wBAAwB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oHAA4HE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,mRAAgSA,EAAE,SAAS,CAAC,SAAS,+FAA+F,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,GAAwBzB,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4HAAyIE,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,8DAA8D,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4EAAyFE,EAAE,SAAS,CAAC,SAAS,+DAA+D,CAAC,EAAE,oEAAoE,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iIAA8IE,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,kCAA6B,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6EAA0FE,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,2EAAwFA,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8GAA2HE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,2FAA2F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,GAAwB1B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8BAA2CE,EAAE,SAAS,CAAC,SAAS,iDAA4C,CAAC,EAAE,mJAAmJ,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+JAA0J,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mGAAgHE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,aAA0BA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,2DAAwEA,EAAE,SAAS,CAAC,SAAS,oDAA+C,CAAC,EAAE,sDAAsD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gBAA6BE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,kQAAmP,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,GAAwB3B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,oDAA4DA,EAAE,KAAK,CAAC,SAAS,4BAAuB,CAAC,EAAE,kHAAkH,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CE,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,8LAAyL,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2CAAwDE,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,oGAA4GA,EAAE,KAAK,CAAC,SAAS,4BAAuB,CAAC,EAAE,IAAiBA,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,GAAwB5B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wDAAqEE,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,yGAAsHA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,qEAAkFA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,gIAA2H,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,2BAAwCE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,yDAAiEA,EAAE,SAAS,CAAC,SAAS,oEAAoE,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,iCAA4B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CE,EAAE,SAAS,CAAC,SAAS,uCAAkC,CAAC,EAAE,wBAAqCA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,GAAwB7B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gPAA6PE,EAAE,SAAS,CAAC,SAAS,4FAA4F,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+DAA4EE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,kDAA+DA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,2FAAsF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iEAAyEE,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,oGAAiHA,EAAE,SAAS,CAAC,SAAS,0CAAqC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,oGAAoG,CAAC,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,yDAAyD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,mCAAmC,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mCAAmC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qDAAqD,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6DAA6D,CAAC,CAAC,CAAC,CAAC,EAAe4B,GAAwB9B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kCAA+CE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,8DAA8D,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8GAA2HE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,SAAsBA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iBAA8BE,EAAE,SAAS,CAAC,SAAS,wCAAmC,CAAC,EAAE,sDAAmEA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,+FAA4GA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,MAAmBA,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,yBAAsCA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,4CAAuC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,kFAA+FA,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,oHAAoH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,GAAwB/B,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAyDE,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,oNAA4NA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,sDAAsD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0CAAuDE,EAAE,SAAS,CAAC,SAAS,qEAAqE,CAAC,EAAeA,EAAEE,EAAE,CAAC,KAAK,gHAAgH,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAsBH,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gCAA6CE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,4GAAoHA,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,4RAAoSA,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2DAA2D,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oFAAiGE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,kDAA+DA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+DAA+D,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+FAA4GE,EAAE,SAAS,CAAC,SAAS,8FAA8F,CAAC,EAAE,WAAwBA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,GAAwBhC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,eAA4BE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,gEAA6EA,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAE,mCAA2CA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,iGAAkF,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,OAAoBE,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,wKAA8J,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2HAAwIE,EAAE,SAAS,CAAC,SAAS,gEAAsD,CAAC,EAAE,wFAAqGA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,6BAA0CA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,4CAAoDA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0KAAkLE,EAAE,SAAS,CAAC,SAAS,8DAAyD,CAAC,EAAE,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,GAAwBjC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4IAAoJE,EAAE,SAAS,CAAC,SAAS,QAAG,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mOAAmO,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mCAAgDE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,gCAA6CA,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,yBAAsCA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,YAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iMAA8ME,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,6EAAwE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,4IAA+IA,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,GAAwBlC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gLAAgL,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qDAAkEE,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,wDAAqEA,EAAE,SAAS,CAAC,SAAS,oCAA+B,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,CAAC,EAAE,sDAAmEA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,iDAA8DA,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,sDAAiD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,WAAwBE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,mEAAmE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,GAAwBnC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kEAA+EE,EAAE,SAAS,CAAC,SAAS,4DAA4D,CAAC,EAAE,2KAAiK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uIAAoJE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,4FAA4F,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,cAA2BE,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,oGAAiHA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,2CAAsC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,+EAAuFA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,sKAA4J,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oBAAiCE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,uEAAoFA,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,GAAwBpC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6FAA0GE,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,uCAAoDA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,EAAE,sDAAiD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,UAAuBE,EAAE,SAAS,CAAC,SAAS,wDAAwD,CAAC,EAAE,iKAAiK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kDAA+DE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,oEAAoE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAyCE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,0BAAuCA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,4EAAyFA,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,mDAA8C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mKAAgLE,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,qEAAgE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iGAA8GE,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,kDAA+DA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,4CAAyDA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uDAAoEE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,oHAAiIA,EAAE,SAAS,CAAC,SAAS,mEAAmE,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,GAAwBrC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qBAAkCE,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,EAAE,gCAA6CA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,wBAAqCA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,4BAAyCA,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,mBAAgCA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,wBAAwB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAyCE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,qGAAoFA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,8CAA2DA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,kCAA+CA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yCAAiDE,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,mHAAgIA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,sCAAmDA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,kCAAkC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,4DAAyEA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,sDAA8DA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0CAAuDE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,WAAwBA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iDAAyDE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,sEAAsE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2CAAmDE,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,gCAAgC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6IAAiIE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAgCE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,aAA0BA,EAAE,SAAS,CAAC,SAAS,4BAAuB,CAAC,EAAE,2GAAmHA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,oCAA4CA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yCAAsDE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,aAA0BA,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,iDAA8DA,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,WAAwBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6CAA0DE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,2CAA2C,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2BAAwCE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,yCAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,GAAwBtC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,sKAA8KA,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,qKAA6KA,EAAE,SAAS,CAAC,SAAS,8EAA8E,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mEAAsEE,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,iIAAyIA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,yHAAiIA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,+JAA0J,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8CAA2DE,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,mFAAmF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,GAAwBvC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gJAA6JE,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,iLAA8LA,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,8BAAyB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uHAAoIE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,yHAAsIA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,gGAAgG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,GAAwBxC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kLAAgME,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,iIAA8IA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yEAAsFE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,kIAA+IA,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,wGAAwG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,GAAwBzC,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAqDE,EAAE,SAAS,CAAC,SAAS,6FAA6F,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0IAAuJE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,8DAA2EA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,yBAAyB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8GAAyG,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,QAAqBE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,4FAA4F,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,8DAA2EA,EAAE,SAAS,CAAC,SAAS,6BAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,QAAG,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,iHAAuG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oEAA+D,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,sDAAyDE,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,uDAA0DE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,sDAAyDE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,4DAA+DE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,iEAAoEE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,2DAA8DE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,gCAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mDAAgEE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,sEAAiE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0BAAuCE,EAAE,SAAS,CAAC,SAAS,yDAAyD,CAAC,EAAE,SAAsBA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,qCAAgC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,kDAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yDAAyD,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,mBAAmB,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,GAAwB1C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6BAA0CE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,wIAAqJA,EAAE,SAAS,CAAC,SAAS,gCAA2B,CAAC,EAAE,kFAA0FA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,kBAA+BA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,EAAE,gDAA2C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2DAAwEE,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,aAA0BE,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,oEAAiFA,EAAE,SAAS,CAAC,SAAS,qEAAqE,CAAC,EAAE,6DAAwD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mCAAgDE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,qKAA6KA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,2EAAsE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oBAAiCE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,4BAAyCA,EAAE,SAAS,CAAC,SAAS,4DAA4D,CAAC,EAAE,cAA2BA,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,oEAAoE,OAAO,kKAAkK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8DAA8D,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,wKAAwK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAeyC,GAAwB3C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+CAA4DE,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,yCAAoC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,oBAAe,CAAC,EAAE,uCAA+CA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,gDAA2C,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,6HAAwH,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mCAAgDE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,4DAAuD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gCAA6CE,EAAE,SAAS,CAAC,SAAS,uDAAuD,CAAC,EAAE,iIAA8IA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,yDAAyD,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mGAAmG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,qEAAqE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sGAAsG,CAAC,CAAC,CAAC,CAAC,EAAe0C,GAAwB5C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iEAA8EE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0DAAuEE,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,4BAAyCA,EAAE,SAAS,CAAC,SAAS,cAAc,CAAC,EAAE,oFAAoF,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,oEAA4EA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,iIAA4H,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,8BAA8B,CAAC,EAAE,qGAAkHA,EAAE,SAAS,CAAC,SAAS,kDAA6C,CAAC,EAAE,UAAuBA,EAAEE,EAAE,CAAC,KAAK,qEAAqE,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CE,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,0DAA2C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gCAA6CE,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,kHAAkH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2C,GAAwB7C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yCAAsDE,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,wCAAgDA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,qBAAkCA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,eAA4BA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,kBAA0BA,EAAE,SAAS,CAAC,SAAS,aAAa,CAAC,EAAE,KAAkBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,EAAE,SAAsBA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,0CAA0C,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAqDE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,0NAAkOA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,0FAAkGA,EAAE,SAAS,CAAC,SAAS,uDAAuD,CAAC,EAAE,4FAAoGA,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,GAAwB9C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kLAA6K,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,uBAAoCA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,iHAA8HA,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,aAA0BE,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,uFAA+FA,EAAE,SAAS,CAAC,SAAS,2CAAsC,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yJAAiKE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,2GAAwHA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4LAAyME,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,GAAwB/C,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,2FAAwGE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,uGAA6F,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+EAA4FE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,wBAAqCA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,uDAAuD,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,oMAAiNA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,aAA0BA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,qEAAkFA,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,+CAAqC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sBAAmCE,EAAE,SAAS,CAAC,SAAS,mDAAmD,CAAC,EAAE,8JAAyJ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAgDE,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,oEAA+D,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,+BAA0B,CAAC,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,kDAAkD,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,kDAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,KAAK,IAAI,sEAAsE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,oEAAoE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,+DAA0D,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBA,EAAE,IAAI,CAAC,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,qEAAqE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qCAAqC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yEAAyE,CAAC,CAAC,CAAC,CAAC,EAAe8C,GAAwBhD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+BAA4CE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,2EAAmFA,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,iMAA+LA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,aAA0BE,EAAE,SAAS,CAAC,SAAS,sEAAsE,CAAC,EAAE,mFAA2FA,EAAE,SAAS,CAAC,SAAS,+CAA+C,CAAC,EAAE,mBAAgCA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,0GAAkHA,EAAE,SAAS,CAAC,SAAS,sBAAsB,CAAC,EAAE,eAA4BA,EAAE,SAAS,CAAC,SAAS,iEAAuD,CAAC,EAAE,0DAAkEA,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,GAAwBjD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,yCAAsDE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,gHAA2G,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gCAA6CE,EAAE,SAAS,CAAC,SAAS,0DAA0D,CAAC,EAAE,gBAA6BA,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,kDAAkD,CAAC,EAAE,MAAmBA,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0DAAuEE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,wBAAmB,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oGAAiHE,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,EAAE,6BAA0CA,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,2GAAsG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,4CAAyDA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,QAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,6BAA6B,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,GAAwBlD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oBAAiCE,EAAE,SAAS,CAAC,SAAS,2BAA2B,CAAC,EAAE,mMAA8L,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0EAAuFE,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,yBAAsCA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,gCAA6CA,EAAE,SAAS,CAAC,SAAS,oEAAoE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wFAA8E,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,sCAAmDA,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,EAAE,uHAAmG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,sBAAmCA,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,kLAA+LA,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,qEAAqE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiD,GAAwBnD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kGAAmF,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mDAAgEE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAE,oEAA+D,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kGAA+GE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wCAAqDE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,8DAAyD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iMAA8ME,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,QAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+EAA4FE,EAAE,SAAS,CAAC,SAAS,uDAAuD,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wFAAqGE,EAAE,SAAS,CAAC,SAAS,2EAA2E,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,GAAwBpD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,2DAAsD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BE,EAAE,SAAS,CAAC,SAAS,oDAAoD,CAAC,EAAE,gDAA6DA,EAAE,SAAS,CAAC,SAAS,sEAA4D,CAAC,EAAE,iDAA4C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8BAA2CE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,4CAA4C,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,gBAA6BE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,sHAAmIA,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,SAAI,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qBAAkCE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,mLAAgMA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,4CAAyDA,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,uDAAkD,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,8HAA2IE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,GAAwBrD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAgCE,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,8FAAoF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAAiDE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,+EAA4FA,EAAE,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,iBAA8BA,EAAE,SAAS,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+EAAuFE,EAAE,SAAS,CAAC,SAAS,6CAA6C,CAAC,EAAE,uJAA+JA,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+GAA4HE,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,SAAsBA,EAAE,SAAS,CAAC,SAAS,+DAA0D,CAAC,EAAE,aAAQ,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4EAAyFE,EAAE,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,qBAAqB,CAAC,EAAE,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,GAAwBtD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kEAA0EE,EAAE,SAAS,CAAC,SAAS,2CAA2C,CAAC,EAAE,+IAA0I,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oCAA4CE,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAE,iBAA8BA,EAAE,SAAS,CAAC,SAAS,yEAAyE,CAAC,EAAE,kGAA6F,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uCAA+CE,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,kDAA+DE,EAAE,SAAS,CAAC,SAAS,2CAAsC,CAAC,EAAE,wHAAqIA,EAAE,SAAS,CAAC,SAAS,wCAAwC,CAAC,EAAE,mDAA8C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oMAAiNE,EAAE,SAAS,CAAC,SAAS,kCAAkC,CAAC,EAAE,QAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,MAAM,CAAC,EAAE,wDAAqEA,EAAE,SAAS,CAAC,SAAS,MAAM,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,GAAwBvD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sCAAmDE,EAAE,SAAS,CAAC,SAAS,oBAAoB,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,2CAAsC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uGAAoHE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,sFAAiF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+BAA4CE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,2GAA2G,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wDAAgEE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,sEAAiE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,4CAAyDE,EAAE,SAAS,CAAC,SAAS,sCAAsC,CAAC,EAAE,MAAmBA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,sEAAiE,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,OAAoBA,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,GAAwBxD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,iDAA4C,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,+CAA4DE,EAAE,SAAS,CAAC,SAAS,yCAAyC,CAAC,EAAE,0GAAqG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qHAAkIE,EAAE,SAAS,CAAC,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,mDAAgEE,EAAE,SAAS,CAAC,SAAS,oCAAoC,CAAC,EAAE,wFAAqGA,EAAE,SAAS,CAAC,SAAS,2DAA2D,CAAC,EAAE,sFAAiF,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,uFAAoGE,EAAE,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,OAAO,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,oFAAiGE,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,oBAAiCA,EAAE,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,sHAA8HA,EAAE,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,iGAA8GE,EAAE,SAAS,CAAC,SAAS,+HAA+H,CAAC,EAAE,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,GAAwBzD,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qBAAkCE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,6YAA0ZA,EAAE,SAAS,CAAC,SAAS,+BAA+B,CAAC,EAAE,0CAAuDA,EAAE,SAAS,CAAC,SAAS,0BAA0B,CAAC,EAAE,8HAA2IA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,QAAqBA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,ibAAib,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+sBAA0sB,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAcE,EAAE,SAAS,CAAC,SAAS,wEAAmE,CAAC,EAAE,QAAG,CAAC,CAAC,EAAeF,EAAE,KAAK,CAAC,SAAS,CAAcE,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,8FAAyF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,qFAAgF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,mCAAmC,CAAC,EAAE,8EAAyE,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,wFAAmF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,4CAA4C,CAAC,EAAE,uFAAkF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,gCAAgC,CAAC,EAAE,yEAAoE,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,0FAAqF,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAsBF,EAAE,IAAI,CAAC,SAAS,CAAC,IAAiBE,EAAE,SAAS,CAAC,SAAS,uCAAuC,CAAC,EAAE,uFAAkF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,idAAid,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,sEAAsE,OAAO,sKAAsK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4OAA4O,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,uEAAuE,OAAO,wKAAwK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mHAAmH,CAAC,CAAC,CAAC,CAAC,EAAewD,GAAwB1D,EAAIC,EAAS,CAAC,SAAS,CAAcC,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qEAAkFE,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,+DAA4EA,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,uTAAkT,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,0LAAkME,EAAE,SAAS,CAAC,SAAS,qCAAqC,CAAC,EAAE,IAAiBA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,8EAA2FA,EAAE,SAAS,CAAC,SAAS,iEAAiE,CAAC,EAAE,oFAA+E,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,qEAAkFE,EAAE,SAAS,CAAC,SAAS,wFAAwF,CAAC,EAAE,oIAA+H,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,sIAAmJE,EAAE,SAAS,CAAC,SAAS,kEAAkE,CAAC,EAAE,IAAiBA,EAAEE,EAAE,CAAC,KAAK,uBAAuB,YAAY,GAAG,OAAO,YAAY,aAAa,GAAG,QAAQ,oBAAoB,aAAa,GAAG,SAAsBF,EAAEG,EAAE,EAAE,CAAC,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,wJAAqKH,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,EAAE,uEAAkE,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2IAAsI,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kQAA6P,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6DAA6D,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,uEAAuE,OAAO,mcAAmc,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kJAAkJ,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,MAAM,IAAI,wEAAwE,OAAO,yWAAyW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6MAAwM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,OAAO,OAAO,IAAI,sEAAsE,OAAO,qQAAqQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EAAeF,EAAE,IAAI,CAAC,SAAS,CAAC,6NAA0OE,EAAE,SAAS,CAAC,SAAS,sDAAsD,CAAC,EAAE,sBAAmCA,EAAE,SAAS,CAAC,SAAS,yBAAyB,CAAC,EAAE,yRAAyR,CAAC,CAAC,CAAC,CAAC,CAAC,EAC/w5JyD,GAAqB,CAAC,QAAU,CAAC,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,SAAW,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "richText1", "Link", "motion", "richText2", "ComponentPresetsConsumer", "t", "Youtube", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "richText25", "richText26", "richText27", "richText28", "richText29", "richText30", "richText31", "richText32", "richText33", "richText34", "richText35", "richText36", "richText37", "richText38", "richText39", "richText40", "richText41", "richText42", "richText43", "richText44", "richText45", "richText46", "richText47", "richText48", "richText49", "richText50", "richText51", "__FramerMetadata__"]
}
