{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://framerusercontent.com/modules/m3bnG514BxaEW2pzAFcp/ul048FzhgUC8rzRVGX8j/BYfjwEyLq.js", "ssg:https://framerusercontent.com/modules/pvjckQPMscWr8UhjdbMj/vzJM57a9AJf5WBJlRttK/JA1uj1NUe.js", "ssg:https://framerusercontent.com/modules/aEf3mVOjGMobyHG2pGA6/MPtDCvNTwbv24XSa9yNX/jwe_la75H.js", "ssg:https://framerusercontent.com/modules/44Wv0y7sa5Goh5BjK3c4/ArzM5a0H5as1x5oVZWop/oXth8QW9p.js", "ssg:https://framerusercontent.com/modules/oiRu2rAQgExdqF5s6nvx/AbVtMAbn3iUxtB04XTkG/tUuAzSjlI.js", "ssg:https://framerusercontent.com/modules/pOskz6L5DBnEDnLYdEZd/uNgIrssT3eQArXdcYiqJ/ySy1J882M.js", "ssg:https://framerusercontent.com/modules/udmbL1u4QvwodgB7ugSZ/T5r5bxMfZDkpxG0tfeEO/ScrollToTopButton.js", "ssg:https://framerusercontent.com/modules/qcLhhgIwlCCuaGGLF2FN/N89IPoMWTxPfPqUjsre5/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"l_tIJr8HQ\"];const variantClassNames={l_tIJr8HQ:\"framer-v-ugokga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"l_tIJr8HQ\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"l_tIJr8HQ\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-wxGOV\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-ugokga\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l_tIJr8HQ\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-ajoe3h\",\"data-framer-name\":\"OpenAI\",fill:\"black\",intrinsicHeight:86,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"Cbaczx_YO\",svg:'<svg width=\"350\" height=\"86\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M249.432 33.472c-5.08 0-8.706 1.735-10.485 5.021l-.956 1.78v-5.944h-8.266v36.13h8.694V48.964c0-5.136 2.791-8.082 7.653-8.082 4.637 0 7.295 2.869 7.295 7.868v21.71h8.698V47.2c0-8.603-4.721-13.728-12.633-13.728Zm-42.165 0c-10.26 0-16.613 6.402-16.613 16.707v5.072c0 9.91 6.427 16.065 16.776 16.065 6.922 0 11.773-2.537 14.826-7.754l-5.39-3.101c-2.256 3.009-5.859 4.874-9.433 4.874-5.239 0-8.366-3.235-8.366-8.655v-1.436h24.267v-5.992c0-9.6-6.302-15.78-16.06-15.78h-.007Zm8.155 15.931h-16.384v-.867c0-5.948 2.92-9.23 8.222-9.23 5.106 0 8.155 3.234 8.155 8.654l.007 1.443Zm132.989-21.022v-6.912h-30.074v6.912h10.544v35.152h-10.544v6.911h30.074v-6.911h-10.548V28.38h10.548Zm-228.032-7.909c-13.431 0-21.782 8.37-21.782 21.85v7.288c0 13.476 8.347 21.85 21.782 21.85s21.782-8.374 21.782-21.85v-7.288c-.004-13.494-8.362-21.85-21.782-21.85Zm12.796 29.636c0 8.95-4.663 14.082-12.796 14.082s-12.792-5.132-12.792-14.081v-8.29c0-8.949 4.666-14.08 12.796-14.08 8.129 0 12.796 5.131 12.796 14.08l-.004 8.29Zm36.295-16.636c-4.563 0-8.514 1.89-10.574 5.055l-.934 1.44v-5.638h-8.27V82.89h8.698V65.301l.931 1.381c1.956 2.902 5.778 4.634 10.223 4.634 7.498 0 15.062-4.9 15.062-15.85v-6.144c0-7.89-4.662-15.85-15.136-15.85Zm6.438 21.57c0 5.821-3.396 9.44-8.86 9.44-5.095 0-8.65-3.825-8.65-9.297V49.75c0-5.538 3.585-9.437 8.724-9.437 5.423 0 8.794 3.615 8.794 9.437l-.008 5.291ZM286.1 21.472l-17.548 48.986h8.835l3.359-10.5h20.173l.033.103 3.323 10.397h8.831l-17.577-48.99-9.429.004Zm-3.198 31.578 7.916-24.766 7.834 24.766h-15.75ZM81.592 35.148a21.145 21.145 0 0 0-1.816-17.37 21.413 21.413 0 0 0-23.038-10.26A21.15 21.15 0 0 0 40.786.397a21.39 21.39 0 0 0-20.405 14.82 21.157 21.157 0 0 0-14.136 10.26 21.415 21.415 0 0 0 2.632 25.085 21.16 21.16 0 0 0 1.816 17.352A21.413 21.413 0 0 0 33.75 78.198a21.157 21.157 0 0 0 15.934 7.118 21.39 21.39 0 0 0 20.405-14.82 21.154 21.154 0 0 0 14.133-10.26 21.385 21.385 0 0 0-2.629-25.088Zm-31.909 44.63a15.849 15.849 0 0 1-10.182-3.692c.126-.07.37-.192.51-.284l16.908-9.762a2.744 2.744 0 0 0 1.389-2.404V39.793l7.143 4.124a.246.246 0 0 1 .14.2V63.85a15.928 15.928 0 0 1-15.908 15.928ZM15.5 65.179a15.877 15.877 0 0 1-1.9-10.662c.125.077.347.21.502.299l16.913 9.765a2.747 2.747 0 0 0 2.776 0L54.424 52.65v8.248a.247.247 0 0 1-.1.221L37.23 70.983a15.926 15.926 0 0 1-21.73-5.822v.018Zm-4.43-36.92a15.846 15.846 0 0 1 8.28-6.978v20.1a2.75 2.75 0 0 0 1.389 2.403l20.638 11.918-7.17 4.139a.25.25 0 0 1-.24.022l-17.09-9.869a15.924 15.924 0 0 1-5.822-21.735h.015Zm58.7 13.66L49.134 30.003l7.137-4.128a.254.254 0 0 1 .24-.022L73.6 35.72a15.913 15.913 0 0 1-2.46 28.709V44.334a2.746 2.746 0 0 0-1.38-2.414h.01Zm7.115-10.706c-.126-.078-.347-.21-.502-.3L59.47 21.149a2.747 2.747 0 0 0-2.776 0L36.057 33.062v-8.244a.268.268 0 0 1 .103-.222l17.09-9.865a15.912 15.912 0 0 1 23.628 16.485l.007-.003ZM32.162 45.922l-7.148-4.124a.27.27 0 0 1-.136-.2V21.864A15.91 15.91 0 0 1 50.968 9.63c-.126.07-.35.192-.51.284L33.55 19.675a2.752 2.752 0 0 0-1.388 2.403v23.844Zm3.88-8.37 9.193-5.31 9.189 5.31v10.61l-9.193 5.31-9.193-5.31.004-10.61Z\" fill=\"#ADBDCE\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .363)\" d=\"M0 0h350v84.984H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-wxGOV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wxGOV .framer-ekx7ll { display: block; }\",\".framer-wxGOV .framer-ugokga { height: 74px; overflow: hidden; position: relative; width: 301px; }\",\".framer-wxGOV .framer-ajoe3h { aspect-ratio: 4.069767441860465 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerBYfjwEyLq=withCSS(Component,css,\"framer-wxGOV\");export default FramerBYfjwEyLq;FramerBYfjwEyLq.displayName=\"OpenAI\";FramerBYfjwEyLq.defaultProps={height:74,width:301};addFonts(FramerBYfjwEyLq,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYfjwEyLq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"301\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"74\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYfjwEyLq.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"tpWFM5HMt\"];const variantClassNames={tpWFM5HMt:\"framer-v-ii1890\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"tpWFM5HMt\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"tpWFM5HMt\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-mgual\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-ii1890\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tpWFM5HMt\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-1uczso0\",\"data-framer-name\":\"amazon\",fill:\"black\",intrinsicHeight:106,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"bSK__czVS\",svg:'<svg width=\"350\" height=\"106\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#ADBDCE\"><path d=\"M217.118 82.87c-20.263 14.985-49.735 22.969-75.155 22.969-35.613 0-67.541-13.143-91.856-35.007-1.842-1.72-.245-4.053 2.088-2.702 26.157 15.231 58.453 24.32 91.856 24.32 22.472 0 47.278-4.667 70.119-14.37 3.439-1.352 6.263 2.333 2.948 4.79Z\"/><path d=\"M225.595 73.163c-2.579-3.316-17.192-1.596-23.701-.737-1.964.246-2.333-1.474-.491-2.702 11.666-8.23 30.701-5.773 32.911-3.07 2.21 2.702-.614 21.863-11.543 30.953-1.72 1.351-3.316.614-2.579-1.228 2.456-6.142 7.982-19.776 5.403-23.216Zm-23.333-61.168V4.011c0-1.228.86-1.965 1.965-1.965h35.613c1.105 0 2.087.86 2.087 1.965v6.756c0 1.106-.982 2.58-2.701 5.036L220.805 42.09c6.877-.123 14.123.86 20.263 4.3 1.35.736 1.719 1.964 1.842 3.07v8.475c0 1.229-1.228 2.58-2.579 1.843-10.929-5.773-25.543-6.387-37.577.123-1.228.614-2.579-.614-2.579-1.843V49.95c0-1.228 0-3.439 1.351-5.404l21.367-30.585H204.35c-1.105 0-2.088-.86-2.088-1.966ZM72.461 61.496H61.654c-.982-.122-1.842-.86-1.965-1.842V4.134c0-1.105.983-1.965 2.088-1.965h10.07c1.105 0 1.842.86 1.965 1.842v7.247h.245C76.637 4.257 81.671.941 88.302.941c6.754 0 11.052 3.316 14 10.317C104.881 4.257 110.898.941 117.284.941c4.543 0 9.455 1.842 12.525 6.141 3.439 4.668 2.702 11.424 2.702 17.442v35.13c0 1.105-.982 1.965-2.088 1.965H119.74c-1.106-.123-1.965-.982-1.965-1.965v-29.48c0-2.333.245-8.23-.246-10.44-.859-3.685-3.193-4.79-6.386-4.79-2.578 0-5.403 1.719-6.508 4.544-1.105 2.825-.983 7.493-.983 10.686v29.48c0 1.105-.982 1.965-2.087 1.965H90.758c-1.105-.123-1.965-.982-1.965-1.965v-29.48c0-6.141.983-15.354-6.63-15.354-7.737 0-7.492 8.844-7.492 15.354v29.48c-.123.983-.982 1.842-2.21 1.842ZM272.628.941c16.087 0 24.806 13.757 24.806 31.322 0 16.95-9.579 30.462-24.806 30.462-15.719 0-24.315-13.757-24.315-30.954-.123-17.319 8.596-30.83 24.315-30.83Zm0 11.423c-7.982 0-8.474 10.932-8.474 17.688 0 6.755-.122 21.25 8.351 21.25 8.35 0 8.842-11.67 8.842-18.794 0-4.667-.246-10.318-1.597-14.74-1.228-3.93-3.684-5.404-7.122-5.404Zm45.559 49.132h-10.806c-1.106-.122-1.965-.982-1.965-1.965V3.888c.123-.982.982-1.842 2.087-1.842h10.07c.983 0 1.719.737 1.965 1.597v8.475h.246C322.854 4.503 327.029.941 334.52.941c4.789 0 9.578 1.72 12.648 6.51 2.825 4.422 2.825 11.914 2.825 17.319v35.007c-.123.983-.983 1.72-2.088 1.72h-10.806c-.983-.123-1.842-.86-1.965-1.72V29.56c0-6.141.737-14.985-6.754-14.985-2.579 0-5.035 1.72-6.263 4.422-1.474 3.44-1.719 6.756-1.719 10.563v29.971c-.123 1.106-1.106 1.965-2.211 1.965ZM173.895 34.965c0 4.176.123 7.738-1.965 11.546-1.719 3.07-4.421 4.913-7.491 4.913-4.175 0-6.631-3.193-6.631-7.86 0-9.213 8.228-10.933 16.087-10.933v2.334Zm10.929 26.409c-.736.614-1.719.737-2.578.245-3.562-2.948-4.298-4.422-6.263-7.247-5.895 6.019-10.193 7.861-17.807 7.861-9.087 0-16.209-5.65-16.209-16.827 0-8.844 4.789-14.74 11.543-17.688 5.895-2.58 14.122-3.071 20.385-3.808v-1.351c0-2.58.246-5.65-1.351-7.861-1.351-1.966-3.807-2.825-6.017-2.825-4.175 0-7.859 2.088-8.719 6.51-.246.982-.86 1.965-1.842 1.965l-10.438-1.106c-.86-.245-1.842-.86-1.596-2.21C146.388 4.257 157.808.449 168.123.449c5.281 0 12.158 1.351 16.333 5.405 5.281 4.913 4.789 11.546 4.789 18.67v16.828c0 5.036 2.088 7.247 4.053 10.072.737.983.859 2.211 0 2.825-2.333 1.843-6.263 5.282-8.474 7.125ZM32.059 34.964c0 4.177.123 7.74-1.965 11.547-1.719 3.07-4.42 4.913-7.49 4.913-4.176 0-6.632-3.193-6.632-7.86 0-9.213 8.228-10.933 16.087-10.933v2.334Zm10.807 26.41c-.737.614-1.72.737-2.58.245-3.56-2.948-4.297-4.422-6.262-7.247-5.895 6.019-10.193 7.861-17.806 7.861-9.088 0-16.21-5.65-16.21-16.827 0-8.844 4.79-14.74 11.543-17.688 5.895-2.58 14.122-3.071 20.385-3.808v-1.351c0-2.58.246-5.65-1.35-7.861-1.351-1.966-3.807-2.825-6.018-2.825-4.175 0-7.86 2.088-8.719 6.51-.245.982-.86 1.965-1.842 1.965L3.57 19.242c-.86-.245-1.842-.86-1.596-2.21C4.429 4.257 15.849.449 26.165.449c5.28 0 12.157 1.351 16.332 5.405 5.28 4.913 4.79 11.546 4.79 18.67v16.828c0 5.036 2.087 7.247 4.052 10.072.737.983.86 2.211 0 2.825-2.333 1.843-6.263 5.282-8.473 7.125Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"matrix(1 0 0 -1 0 105.867)\" d=\"M0 0h350v105.418H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-mgual [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mgual .framer-1e7azaj { display: block; }\",\".framer-mgual .framer-ii1890 { height: 91px; overflow: hidden; position: relative; width: 300px; }\",\".framer-mgual .framer-1uczso0 { aspect-ratio: 3.30188679245283 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 91px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerJA1uj1NUe=withCSS(Component,css,\"framer-mgual\");export default FramerJA1uj1NUe;FramerJA1uj1NUe.displayName=\"amazon\";FramerJA1uj1NUe.defaultProps={height:91,width:300};addFonts(FramerJA1uj1NUe,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJA1uj1NUe\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"91\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"300\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JA1uj1NUe.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"D9o8oygjX\"];const variantClassNames={D9o8oygjX:\"framer-v-180xyfk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"D9o8oygjX\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"D9o8oygjX\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Yjqlv\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-180xyfk\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D9o8oygjX\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-11rkccn\",\"data-framer-name\":\"Tesla\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"cOcuquMgY\",svg:'<svg width=\"350\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#ADBDCE\"><path d=\"M299.014 18.182v27.502h8.791V27.35h32.149v18.335h8.791V18.182h-49.731Zm7.786-8.917h33.907c4.772-.879 8.163-5.149 9.168-9.167h-52.243c1.005 4.018 4.521 8.163 9.168 9.167Zm-34.535 36.42c4.395-1.884 6.781-5.15 7.786-8.917h-39.559V.223h-8.916v45.461h40.689ZM165.644 9.14h31.396c4.772-1.382 8.666-5.024 9.67-8.917h-49.731v26.875h40.689v9.419H165.77c-5.023 1.381-9.293 4.772-11.428 9.167h52.117V18.182H165.77l-.126-9.042Zm-77.359.125h33.908c4.772-.879 8.288-5.149 9.167-9.167H78.992c1.005 4.018 4.521 8.163 9.293 9.167Zm0 17.959h33.908c4.772-.88 8.288-5.15 9.167-9.168H78.992c1.005 4.019 4.521 8.163 9.293 9.168Zm0 18.46h33.908c4.772-.879 8.288-5.149 9.167-9.167H78.992c1.005 4.018 4.521 8.288 9.293 9.167ZM0 .223c1.005 4.019 4.521 8.038 9.168 9.042h14.316l.753.251V45.56h8.917V9.516l.753-.25h14.317c4.772-1.257 8.163-5.024 9.168-9.043V.098L0 .223Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .07)\" d=\"M0 0h350v45.64H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-Yjqlv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yjqlv .framer-1um04hp { display: block; }\",\".framer-Yjqlv .framer-180xyfk { height: 39px; overflow: hidden; position: relative; width: 297px; }\",\".framer-Yjqlv .framer-11rkccn { aspect-ratio: 7.608695652173913 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 297\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const Framerjwe_la75H=withCSS(Component,css,\"framer-Yjqlv\");export default Framerjwe_la75H;Framerjwe_la75H.displayName=\"Tesla\";Framerjwe_la75H.defaultProps={height:39,width:297};addFonts(Framerjwe_la75H,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjwe_la75H\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"39\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"297\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jwe_la75H.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UvmBGrUVd\"];const variantClassNames={UvmBGrUVd:\"framer-v-qbgs39\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"UvmBGrUVd\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"UvmBGrUVd\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-8mBSJ\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-qbgs39\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UvmBGrUVd\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-19a6gxw\",\"data-framer-name\":\"Pathlight\",fill:\"black\",intrinsicHeight:91,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"tosal5lzp\",svg:'<svg width=\"350\" height=\"91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#ADBDCE\"><path d=\"M40.364.607C17.902 1.364.492 20.701.492 43.45l.185 44.546c0 1.138.937 1.894 1.873 1.894h1.873c8.797 0 16.659-2.274 21.901-8.907 5.989 2.465 12.543 3.412 19.658 2.846 20.595-2.085 36.502-19.714 37.068-40.754C83.42 19.183 63.953-.15 40.364.607ZM6.295 84.014v-7.585c7.3-.947 13.104-7.394 13.104-15.164V42.308c-.185-12.51 9.924-22.749 22.277-22.749 12.353 0 22.462 10.044 22.462 22.559 0 12.509-9.92 22.749-22.277 22.94-3.37 0-6.55-.757-9.358-2.085v-8.907c2.619 2.084 5.803 3.221 9.358 3.221 8.237 0 14.977-6.823 14.977-15.164s-6.74-15.165-14.977-15.165c-8.236 0-14.976 6.824-14.976 15.165v20.855c.005 12.129-8.983 20.089-20.59 21.036Zm26.023-41.7c0-5.306 4.12-9.48 9.358-9.48 5.242 0 9.358 4.169 9.358 9.48 0 5.31-4.12 9.477-9.358 9.477-5.052 0-9.173-4.173-9.358-9.478Zm9.548 36.014c-4.306 0-8.612-.757-12.352-2.275 1.121-2.274 2.058-4.548 2.433-7.203 3.185 1.137 6.364 1.893 9.92 1.708 15.537 0 28.08-12.89 27.894-28.626 0-15.545-12.543-28.054-28.08-28.054-15.537 0-28.08 12.89-27.895 28.626V61.46c0 4.549-3.184 8.341-7.486 9.288l-.185-26.35v-1.895c0-19.903 15.913-36.205 35.566-36.205 19.658 0 35.566 15.926 35.756 35.83-.005 19.898-15.918 36.2-35.57 36.2Zm59.9-46.631c0-.947.751-1.708 1.682-1.708h4.306a1.69 1.69 0 0 1 1.688 1.708v3.222h.185c1.121-2.084 2.809-3.412 4.867-4.359 2.058-.947 4.121-1.327 6.554-1.327 2.434 0 4.682.38 6.74 1.327s3.745 2.084 5.052 3.602c1.497 1.518 2.434 3.412 3.185 5.496.751 2.084 1.121 4.358 1.121 6.823 0 2.465-.375 4.74-1.121 6.823-.751 2.084-1.873 3.983-3.185 5.496-1.312 1.518-2.994 2.845-5.052 3.602-1.873.947-4.116 1.327-6.364 1.327-1.497 0-2.995-.19-4.121-.57-1.122-.381-2.248-.757-3.185-1.328-.936-.572-1.682-1.138-2.248-1.709-.561-.57-1.122-1.137-1.497-1.708h-.185v18.2c0 .947-.751 1.709-1.688 1.709h-5.052c-.936 0-1.682-.757-1.682-1.709V31.697Zm27.143 14.784c0-1.328-.185-2.465-.56-3.792-.376-1.138-1.122-2.275-1.873-3.222-.751-.947-1.873-1.708-2.994-2.274a14.374 14.374 0 0 0-4.121-.571c-1.497 0-2.809.19-4.116.756-1.122.571-2.248 1.328-2.994 2.275-.751.947-1.498 1.893-1.873 3.221-.376 1.137-.561 2.465-.561 3.792 0 1.328.185 2.465.561 3.793.375 1.137 1.122 2.274 1.873 3.22.751.948 1.872 1.71 2.994 2.275 1.121.571 2.433.757 4.116.757 1.497 0 2.809-.19 4.121-.757 1.121-.57 2.248-1.327 2.994-2.274.751-.947 1.497-1.894 1.873-3.221.375-1.513.56-2.65.56-3.978Zm31.826 12.324c0-.19 0-.19-.185-.19-1.122 1.893-2.619 3.22-4.492 4.167-1.872.757-3.745 1.328-5.988 1.328-1.498 0-2.995-.19-4.492-.571-1.497-.38-2.619-.947-3.745-1.894-1.122-.756-2.058-1.893-2.619-3.03-.751-1.328-.936-2.656-.936-4.359 0-1.708.375-3.412.936-4.549.561-1.327 1.497-2.274 2.619-3.221 1.121-.756 2.248-1.518 3.745-2.084 1.497-.571 2.809-.947 4.492-1.137 1.497-.19 2.994-.381 4.681-.571 1.497 0 2.995-.19 4.306-.19h2.058v-.948c0-2.084-.751-3.602-2.058-4.739-1.497-.947-3.184-1.518-5.427-1.518-1.683 0-3.37.381-4.867.947-.751.38-1.873.947-2.619 1.518-.751.571-1.682.38-2.433-.19l-1.873-1.894c-.751-.756-.751-1.894.185-2.655 1.312-.947 3.37-2.465 4.867-2.846 2.434-.756 4.867-1.327 7.486-1.327 2.248 0 4.306.19 5.803.756 1.682.571 2.994 1.137 3.931 2.084 1.121.757 1.872 1.709 2.433 2.846a23.564 23.564 0 0 1 1.312 3.221c.185 1.137.376 2.084.376 3.221v20.285a1.69 1.69 0 0 1-1.683 1.708h-3.745a1.686 1.686 0 0 1-1.683-1.708V58.8h-.385v.005Zm-.376-10.616h-1.687c-1.122 0-2.434 0-3.745.19-1.498 0-2.809.381-3.931.572-1.312.38-2.248.756-3.185 1.518-.936.756-1.311 1.518-1.311 2.845 0 .757.185 1.518.56 1.894.376.57.751.947 1.312 1.327.561.381 1.122.572 1.873.757.751.19 1.312.19 2.058.19 2.809 0 4.867-.756 6.179-2.084 1.312-1.327 2.058-3.221 2.058-5.495v-1.709h-.181v-.005Zm10.295-11.186a1.69 1.69 0 0 1-1.687-1.709v-3.411c0-.947.751-1.709 1.687-1.709h5.052v-7.77c0-.947.751-1.708 1.683-1.708h4.681a1.69 1.69 0 0 1 1.688 1.708v7.77h7.3a1.69 1.69 0 0 1 1.688 1.709v3.411c0 .947-.751 1.709-1.688 1.709h-7.3V51.6c0 1.708.375 3.03.936 3.983.561.946 1.873 1.517 3.555 1.517.751 0 1.497 0 2.434-.19.936-.19 2.058.38 2.058 1.518v3.412c0 .756-.376 1.518-1.122 1.708-.561.19-1.312.38-2.058.38-1.312.191-2.433.191-3.37.191-2.248 0-3.93-.19-5.428-.756-1.311-.572-2.433-1.138-3.184-2.275-.751-.947-1.312-2.274-1.682-3.602-.376-1.518-.376-3.221-.376-5.12V37.203h-4.867v-.2Zm32.386-2.656c0 .19 0 .19 0 0 .751-1.327 1.873-2.464 3.555-3.602 1.688-1.137 3.746-1.708 6.179-1.708 2.248 0 4.121.38 5.618 1.137 1.497.757 2.809 1.709 3.746 2.846.936 1.137 1.682 2.655 2.058 4.168.375 1.518.56 3.221.56 4.93v19.147c0 .946-.751 1.708-1.682 1.708h-4.682a1.69 1.69 0 0 1-1.687-1.708V46.29c0-.947 0-1.894-.185-3.031 0-1.137-.376-2.275-.752-3.221-.375-.947-.936-1.894-1.872-2.465-.751-.757-1.873-.947-3.37-.947-1.312 0-2.433.19-3.37.756-.936.381-1.682 1.137-2.248 1.894-.561.756-1.122 1.708-1.312 2.655-.185.947-.375 2.084-.375 3.221v16.112c0 .946-.752 1.708-1.683 1.708h-4.682a1.686 1.686 0 0 1-1.682-1.708v-48.53c0-.946.751-1.708 1.682-1.708h4.682c.937 0 1.683.757 1.683 1.709v21.611h-.181Zm26.774-21.606c0-.947.751-1.709 1.682-1.709h4.682c.936 0 1.682.757 1.682 1.709V61.27c0 .946-.751 1.708-1.682 1.708h-4.682a1.686 1.686 0 0 1-1.682-1.708V12.74Zm13.474 18.956c0-.947.751-1.708 1.682-1.708h4.682c.936 0 1.682.756 1.682 1.708V61.27c0 .946-.751 1.708-1.682 1.708h-4.682a1.686 1.686 0 0 1-1.682-1.708V31.697Zm-1.122-13.08c0-1.328.561-2.465 1.497-3.412.937-.946 2.249-1.518 3.746-1.518 1.497 0 2.809.381 3.745 1.328.936.947 1.497 2.084 1.497 3.602 0 1.518-.561 2.655-1.497 3.602-.936.947-2.248 1.328-3.745 1.328-1.497 0-2.809-.572-3.746-1.518-1.121-.947-1.497-2.084-1.497-3.412Zm46.241 11.372c.937 0 1.683.756 1.683 1.708v28.435c0 3.031-.371 5.686-1.122 8.151-.746 2.465-1.873 4.549-3.37 6.067-1.497 1.708-3.37 3.03-5.803 3.983-2.248.946-5.052 1.327-8.237 1.327-2.994 0-5.988-.38-8.612-1.137-1.688-.571-4.492-2.084-6.179-3.221-.751-.571-.936-1.709-.375-2.465l2.809-3.792c.56-.757 1.682-.947 2.618-.381 1.122.756 2.619 1.894 3.746 2.465a14.933 14.933 0 0 0 6.178 1.327c1.873 0 3.556-.19 4.867-.756 1.312-.571 2.434-1.328 3.185-2.275.751-.947 1.312-2.084 1.687-3.411.376-1.328.561-2.846.561-4.55V59h-.185c-1.122 1.709-2.809 2.846-4.682 3.602-1.872.757-3.93 1.137-5.988 1.137-2.434 0-4.682-.38-6.74-1.327s-3.745-2.084-5.242-3.602c-1.498-1.518-2.619-3.221-3.37-5.31-.751-2.084-1.122-4.359-1.122-6.633 0-2.465.376-4.74 1.122-6.823.751-2.084 1.872-3.983 3.184-5.496 1.497-1.518 3.185-2.846 5.053-3.602 2.057-.947 4.306-1.328 6.739-1.328 2.248 0 4.492.381 6.549 1.328 2.058.947 3.556 2.465 4.867 4.358h.186v-3.22c0-.948.751-1.71 1.682-1.71h4.306v-.385h.005Zm-15.727 6.638c-1.497 0-2.809.19-3.931.756-1.121.571-2.248 1.137-2.994 2.084-.751.757-1.497 1.894-2.058 3.031-.561 1.137-.751 2.655-.751 3.983 0 1.328.185 2.655.751 3.792.561 1.137 1.122 2.084 2.058 3.031.936.947 1.873 1.518 2.994 2.084 1.122.571 2.434.757 3.746.757 1.497 0 2.809-.19 4.12-.757 1.122-.57 2.249-1.137 2.995-2.084.751-.756 1.497-1.894 1.872-3.03.376-1.138.751-2.465.751-3.793 0-2.846-.936-5.305-2.618-7.014-1.507-2.084-3.941-2.84-6.935-2.84Zm30.513-2.28c.191.19 0 .19 0 0 .751-1.327 1.873-2.464 3.56-3.602 1.683-1.137 3.741-1.708 6.174-1.708 2.248 0 4.121.38 5.618 1.137 1.497.757 2.809 1.709 3.746 2.846.936 1.137 1.682 2.655 2.058 4.168.375 1.518.56 3.221.56 4.93v19.147c0 .946-.751 1.708-1.682 1.708h-4.682a1.69 1.69 0 0 1-1.687-1.708V46.29c0-.947 0-1.894-.185-3.031 0-1.137-.376-2.275-.746-3.221-.376-.947-.937-1.894-1.873-2.465-.751-.757-1.873-.947-3.37-.947-1.312 0-2.433.19-3.37.756-.936.381-1.687 1.137-2.248 1.894-.561.756-1.122 1.708-1.307 2.655-.19.947-.375 2.084-.375 3.221v16.112c0 .946-.751 1.708-1.688 1.708h-4.676a1.69 1.69 0 0 1-1.688-1.708v-48.53c0-.946.751-1.708 1.688-1.708h4.676a1.69 1.69 0 0 1 1.688 1.709v21.611h-.191Zm24.711 2.656a1.686 1.686 0 0 1-1.683-1.709v-3.411a1.69 1.69 0 0 1 1.683-1.709h5.057v-7.77c0-.947.746-1.708 1.682-1.708h4.682c.936 0 1.682.756 1.682 1.708v7.77h7.301a1.69 1.69 0 0 1 1.687 1.709v3.411c0 .947-.751 1.709-1.687 1.709h-7.301V51.6c0 1.708.376 3.03.937 3.983.561.946 1.872 1.517 3.555 1.517.751 0 1.497 0 2.433-.19.937-.19 2.063.38 2.063 1.518v3.412c0 .756-.566 1.518-1.126 1.708-.561.19-1.307.38-2.058.38-1.312.191-2.434.191-3.37.191-2.248 0-3.931-.19-5.428-.756-1.312-.572-2.433-1.138-3.184-2.275-.746-.947-1.307-2.274-1.683-3.602-.375-1.518-.375-3.221-.375-5.12V37.203h-4.867v-.2Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .348)\" d=\"M0 0h350v89.674H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-8mBSJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8mBSJ .framer-uybtfq { display: block; }\",\".framer-8mBSJ .framer-qbgs39 { height: 78px; overflow: hidden; position: relative; width: 300px; }\",\".framer-8mBSJ .framer-19a6gxw { aspect-ratio: 3.8461538461538463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FrameroXth8QW9p=withCSS(Component,css,\"framer-8mBSJ\");export default FrameroXth8QW9p;FrameroXth8QW9p.displayName=\"Pathlight\";FrameroXth8QW9p.defaultProps={height:78,width:300};addFonts(FrameroXth8QW9p,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroXth8QW9p\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"78\",\"framerIntrinsicWidth\":\"300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oXth8QW9p.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"i1730Tr_X\"];const variantClassNames={i1730Tr_X:\"framer-v-1mp0d8i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"i1730Tr_X\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"i1730Tr_X\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-6Xf0G\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1mp0d8i\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"i1730Tr_X\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-4vl1d0\",\"data-framer-name\":\"Spotify\",fill:\"black\",intrinsicHeight:106,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"FyUqbhBjh\",svg:'<svg width=\"350\" height=\"106\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M344.261 51.515a5.685 5.685 0 0 1-5.702-5.669v-.04c0-3.132 2.527-5.742 5.739-5.742a5.685 5.685 0 0 1 5.702 5.67v.04a5.739 5.739 0 0 1-5.739 5.741Zm.037-10.882a5.102 5.102 0 0 0-5.141 5.06v.113c0 2.844 2.199 5.133 5.108 5.133a5.107 5.107 0 0 0 5.141-5.075v-.094a5.063 5.063 0 0 0-4.984-5.141c-.044.004-.084.004-.124.004Zm1.258 5.727 1.618 2.264h-1.359l-1.451-2.074h-1.255v2.074h-1.137V42.63h2.676c1.389 0 2.304.715 2.304 1.914-.004.978-.572 1.583-1.396 1.816Zm-.959-2.705h-1.488v1.896h1.488c.74 0 1.181-.361 1.181-.948 0-.613-.445-.948-1.181-.948Zm-71.389-19.626a5.817 5.817 0 0 0-5.819 5.812c0 3.212 2.6 5.815 5.812 5.819a5.818 5.818 0 0 0 5.818-5.82 5.816 5.816 0 0 0-5.818-5.818m4.017 16.115h-8.108a.597.597 0 0 0-.591.598v35.382a.59.59 0 0 0 .591.598h8.112a.598.598 0 0 0 .598-.598V40.735a.598.598 0 0 0-.598-.598m18.025.032v-1.115c0-3.3 1.265-4.773 4.105-4.773 1.688 0 3.044.336 4.572.846a.592.592 0 0 0 .784-.568v-6.83a.595.595 0 0 0-.423-.568 22.256 22.256 0 0 0-6.745-.97c-7.488 0-11.448 4.222-11.448 12.2v1.717h-3.897a.597.597 0 0 0-.598.59v7.008c0 .328.266.597.598.597h3.897v27.822c0 .324.263.59.591.59h8.112a.596.596 0 0 0 .59-.598v-27.82h7.573l11.601 27.82c-1.316 2.917-2.611 3.5-4.379 3.5-1.433 0-2.938-.43-4.477-1.272a.596.596 0 0 0-.467-.044.594.594 0 0 0-.35.325l-2.749 6.026a.594.594 0 0 0 .252.77c2.873 1.556 5.465 2.22 8.666 2.22 5.987 0 9.301-2.79 12.217-10.3l14.073-36.363a.588.588 0 0 0-.55-.813h-8.44a.601.601 0 0 0-.558.4l-8.652 24.705-9.479-24.722a.599.599 0 0 0-.55-.387h-13.869m-31.095-.025h-8.922V31.01a.59.59 0 0 0-.59-.59h-8.12a.597.597 0 0 0-.59.59v9.126h-3.905a.59.59 0 0 0-.591.59v6.978c0 .329.267.598.591.598h3.905v18.033c0 7.291 3.624 10.985 10.784 10.985 2.909 0 5.319-.598 7.594-1.885a.596.596 0 0 0 .303-.518v-6.635a.588.588 0 0 0-.86-.533c-1.561.788-3.074 1.149-4.762 1.149-2.603 0-3.762-1.178-3.762-3.825V48.307h8.921a.592.592 0 0 0 .598-.587v-6.982a.592.592 0 0 0-.587-.598c-.004-.003-.004-.003-.007-.003Zm-42.77-.74c-10.926 0-19.498 8.418-19.498 19.162 0 10.631 8.51 18.958 19.363 18.958 10.967 0 19.56-8.385 19.56-19.09 0-10.674-8.531-19.03-19.425-19.03Zm0 29.895c-5.815 0-10.204-4.674-10.204-10.871 0-6.217 4.236-10.727 10.069-10.727 5.856 0 10.26 4.674 10.26 10.872 0 6.217-4.251 10.726-10.125 10.726Zm-39.105-29.895c-4.572 0-8.32 1.8-11.408 5.487v-4.15a.596.596 0 0 0-.59-.597h-8.112a.597.597 0 0 0-.591.598v46.109c0 .324.266.59.591.59h8.112a.597.597 0 0 0 .59-.59V72.293c3.096 3.463 6.84 5.159 11.408 5.159 8.488 0 17.077-6.534 17.077-19.024 0-12.49-8.586-19.031-17.077-19.031Zm7.649 19.027c0 6.355-3.919 10.8-9.53 10.8-5.549 0-9.731-4.646-9.731-10.8 0-6.154 4.182-10.799 9.731-10.799 5.52 0 9.534 4.54 9.534 10.8m-47.039-10.092c-9.056-2.162-10.668-3.68-10.668-6.866 0-3.011 2.833-5.035 7.048-5.035 4.08 0 8.134 1.535 12.377 4.7a.598.598 0 0 0 .835-.124s0-.004.004-.004l4.426-6.238a.592.592 0 0 0-.113-.802c-5.053-4.057-10.744-6.026-17.394-6.026-9.786 0-16.614 5.866-16.614 14.266 0 9.005 5.891 12.195 16.078 14.652 8.666 1.995 10.132 3.668 10.132 6.665 0 3.31-2.957 5.37-7.722 5.37-5.287 0-9.596-1.782-14.423-5.953a.628.628 0 0 0-.434-.146.578.578 0 0 0-.408.211l-4.962 5.9a.583.583 0 0 0 .062.823 29.558 29.558 0 0 0 19.964 7.656c10.537 0 17.351-5.76 17.351-14.67 0-7.533-4.499-11.696-15.539-14.387M52.467.215C23.49.215 0 23.705 0 52.682s23.49 52.467 52.467 52.467 52.467-23.49 52.467-52.467S81.441.215 52.467.215ZM76.53 75.888a3.267 3.267 0 0 1-4.488 1.093c-.004-.003-.008-.003-.011-.007-12.323-7.528-27.822-9.227-46.087-5.057a3.272 3.272 0 0 1-3.916-2.457c-.4-1.76.7-3.51 2.457-3.915 19.983-4.572 37.13-2.604 50.955 5.847a3.276 3.276 0 0 1 1.09 4.496Zm6.413-14.285a4.094 4.094 0 0 1-5.622 1.35c-14.102-8.67-35.602-11.179-52.281-6.118a4.097 4.097 0 0 1-2.374-7.828c19.057-5.782 42.744-2.979 58.935 6.97a4.093 4.093 0 0 1 1.353 5.63s0 .004-.004.004m.554-14.883C66.588 36.688 38.69 35.762 22.546 40.67a4.906 4.906 0 0 1-2.982-9.348 1.1 1.1 0 0 1 .134-.04c18.529-5.633 49.34-4.54 68.805 7.015a4.908 4.908 0 0 1 1.717 6.723 4.908 4.908 0 0 1-6.723 1.717\" fill=\"#ADBDCE\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h350v105.365H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-6Xf0G [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6Xf0G .framer-1phqcbm { display: block; }\",\".framer-6Xf0G .framer-1mp0d8i { height: 91px; overflow: hidden; position: relative; width: 300px; }\",\".framer-6Xf0G .framer-4vl1d0 { aspect-ratio: 3.30188679245283 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 91px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramertUuAzSjlI=withCSS(Component,css,\"framer-6Xf0G\");export default FramertUuAzSjlI;FramertUuAzSjlI.displayName=\"Spotify\";FramertUuAzSjlI.defaultProps={height:91,width:300};addFonts(FramertUuAzSjlI,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUuAzSjlI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"91\",\"framerIntrinsicWidth\":\"300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tUuAzSjlI.map", "// Generated by Framer (1b127cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"qIHFZPawr\"];const variantClassNames={qIHFZPawr:\"framer-v-cyqfwy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"qIHFZPawr\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"qIHFZPawr\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-l9WQv\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-cyqfwy\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qIHFZPawr\",ref:ref,style:{...style},transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-5z3l3f\",\"data-framer-name\":\"Todoist\",fill:\"black\",intrinsicHeight:85,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"szjGqI7K7\",svg:'<svg width=\"350\" height=\"85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.239 55.02c0 2.135.357 4.153 1.07 6.051 1.43 3.917 4.287 7.121 8.096 8.782 1.905.831 4.167 1.306 6.548 1.306 2.38 0 4.643-.475 6.547-1.306 1.905-.83 3.572-2.136 5-3.56 1.31-1.543 2.381-3.204 3.096-5.222.714-1.898 1.071-4.035 1.071-6.052 0-2.017-.357-4.154-1.071-6.052a17.84 17.84 0 0 0-3.096-5.222 14.829 14.829 0 0 0-5-3.56c-2.023-.95-4.285-1.424-6.547-1.306-2.381 0-4.643.475-6.548 1.306-3.81 1.78-6.666 4.865-8.095 8.782-.714 1.898-1.072 4.035-1.072 6.052Zm-12.977.711c0-4.272.715-8.189 2.262-11.749 1.429-3.441 3.572-6.408 6.19-9.019 2.739-2.492 5.834-4.51 9.286-5.815 3.69-1.424 7.62-2.018 11.548-2.018 4.048 0 7.857.713 11.429 2.018 3.452 1.305 6.666 3.204 9.404 5.815 2.62 2.61 4.762 5.578 6.19 9.02 1.548 3.56 2.263 7.476 2.263 11.748a31.31 31.31 0 0 1-2.262 11.749c-1.429 3.441-3.572 6.408-6.19 9.02-2.739 2.491-5.834 4.509-9.405 5.814-3.69 1.424-7.5 2.018-11.429 2.018-3.929 0-7.857-.712-11.548-2.018-3.452-1.305-6.666-3.204-9.285-5.815a26.548 26.548 0 0 1-6.19-9.02c-1.548-3.56-2.263-7.476-2.263-11.748Zm78.334-.712c0 2.136.357 4.154 1.071 6.053 1.429 3.916 4.286 7.12 8.095 8.781 1.905.831 4.167 1.306 6.548 1.306 2.5 0 4.643-.475 6.548-1.306 1.904-.83 3.571-2.136 5-3.56 1.428-1.543 2.38-3.323 3.095-5.222.714-1.898 1.071-4.035 1.071-6.052 0-2.017-.357-4.154-1.071-6.052a17.866 17.866 0 0 0-3.095-5.222 14.84 14.84 0 0 0-5-3.56c-2.024-.95-4.286-1.424-6.548-1.306-2.381 0-4.643.475-6.548 1.306-3.809 1.78-6.666 4.865-8.095 8.782-.714 1.898-1.071 4.035-1.071 6.052Zm32.5 18.632c-2.024 3.323-4.643 5.696-7.977 7.12-3.452 1.543-7.023 2.255-10.833 2.255-4.286 0-7.976-.712-11.309-2.136a26.525 26.525 0 0 1-8.453-5.933 26.201 26.201 0 0 1-5.357-8.901 35.129 35.129 0 0 1-1.786-11.037c0-3.916.596-7.595 1.905-11.037a26.2 26.2 0 0 1 5.357-8.9c2.381-2.492 5.119-4.51 8.334-5.934a23.547 23.547 0 0 1 10.595-2.136c2.619 0 4.881.237 6.786.83 2.023.475 3.69 1.187 5.238 2.018 1.547.83 2.738 1.661 3.809 2.61 1.072.95 1.905 1.78 2.619 2.73h.357V5.65c0-1.305 1.072-2.967 2.977-2.967h7.738c1.785 0 2.976 1.425 2.976 2.967v73.46c0 1.899-1.667 2.967-2.976 2.967h-7.024a2.942 2.942 0 0 1-2.976-2.967v-5.459Zm35.357-18.632c0 2.136.357 4.154 1.071 6.053 1.429 3.916 4.286 7.12 8.095 8.781 1.905.831 4.167 1.306 6.548 1.306 2.5 0 4.643-.475 6.548-1.306 1.904-.83 3.571-2.136 5-3.56 1.309-1.543 2.381-3.204 3.095-5.222.714-1.898 1.071-4.035 1.071-6.052 0-2.017-.357-4.154-1.071-6.052a17.844 17.844 0 0 0-3.095-5.222 14.84 14.84 0 0 0-5-3.56c-2.024-.95-4.286-1.424-6.548-1.306-2.381 0-4.643.475-6.548 1.306-3.809 1.78-6.666 4.865-8.095 8.782-.714 1.898-1.071 4.035-1.071 6.052Zm-13.095.712c0-4.272.833-8.189 2.261-11.749 1.429-3.441 3.572-6.408 6.31-9.019a27.893 27.893 0 0 1 9.286-5.815c3.69-1.424 7.619-2.018 11.547-2.018 4.048 0 7.857.713 11.429 2.018 3.452 1.305 6.667 3.204 9.405 5.815 2.619 2.61 4.762 5.578 6.19 9.02 1.548 3.56 2.262 7.476 2.262 11.748 0 4.272-.833 8.189-2.262 11.749-1.428 3.441-3.571 6.408-6.19 9.02-2.738 2.491-5.834 4.509-9.405 5.814-3.691 1.424-7.5 2.018-11.429 2.018-3.928 0-7.857-.712-11.547-2.018-3.453-1.305-6.667-3.204-9.286-5.815-2.619-2.492-4.762-5.578-6.31-9.02a31.314 31.314 0 0 1-2.261-11.748Zm65.238-46.758c0-2.136.833-3.916 2.381-5.459 1.547-1.543 3.571-2.373 5.952-2.373s4.405.712 6.071 2.254c1.667 1.543 2.5 3.323 2.5 5.578 0 2.255-.833 4.035-2.5 5.578-1.666 1.424-3.69 2.255-6.071 2.255s-4.405-.712-5.952-2.374c-1.548-1.543-2.262-3.441-2.381-5.459Zm56.071 34.653c-1.309 0-2.381-1.068-2.5-1.542-1.071-2.967-4.643-4.036-7.5-4.036-4.524 0-8.095 2.137-8.095 5.816 0 3.56 3.452 4.272 5.595 4.865 2.381.712 6.786 1.662 9.286 2.255 2.381.593 4.762 1.424 7.024 2.611 7.142 3.798 8.095 9.613 8.095 13.173 0 13.173-12.857 17.445-21.786 17.445-6.905 0-19.762-1.068-22.619-14.36-.238-1.305.833-3.204 2.976-3.204h7.381c1.429 0 2.5 1.068 2.738 1.899.953 2.61 4.048 4.628 9.048 4.628 5.476 0 8.69-2.255 8.69-5.103 0-1.898-1.071-3.56-2.381-4.51-4.166-2.848-14.404-3.204-20-6.17-2.142-1.187-7.5-3.798-7.5-12.817 0-12.343 11.072-17.564 20.834-17.564 14.405 0 19.643 9.256 20.238 12.58.357 1.898-.714 3.797-2.738 3.797h-6.786v.237Zm13.095-7.476v-5.578c0-1.305 1.072-2.967 2.976-2.967h7.381V13.84c0-1.424 1.072-2.374 1.786-2.73l7.857-3.323c2.262-.949 4.167.95 4.167 2.73v17.09h12.143c1.905 0 2.976 1.66 2.976 2.966v5.578c0 1.661-1.429 2.967-2.976 2.967h-12.143v23.616c0 2.73-.119 4.866.952 6.408.953 1.424 2.381 1.9 5.238 1.9.834 0 1.548-.12 2.143-.357 1.31-.474 2.857 0 3.572 1.306.833 1.661 1.904 3.56 2.619 4.865.833 1.424.238 3.323-1.31 4.035-2.381 1.068-5.595 2.018-10 2.018-3.69 0-5.714-.356-8.095-1.187a14.343 14.343 0 0 1-5.833-4.035c-1.31-1.661-2.024-3.798-2.5-6.171-.477-2.374-.596-5.34-.596-8.426V39.117h-7.261c-1.905 0-3.096-1.662-3.096-2.967Zm-309.285 0v-5.578c0-1.305 1.071-2.967 2.857-2.967h8.095V13.84c0-1.424.952-2.374 1.786-2.73l7.619-3.323c2.262-.949 4.047.95 4.047 2.73v17.09h11.786c1.786 0 2.857 1.66 2.857 2.966v5.578c0 1.661-1.31 2.848-2.857 2.967H24.881v23.616c0 2.73-.119 4.866.953 6.408.952 1.424 2.262 1.9 5.119 1.9.833 0 1.428-.12 2.143-.357 1.31-.474 2.857.119 3.452 1.306.833 1.661 1.905 3.56 2.619 4.865.714 1.424.12 3.323-1.31 4.035-2.261 1.068-5.357 2.018-9.642 2.018-3.572 0-5.596-.356-7.857-1.187-2.262-.83-4.167-2.255-5.715-4.035-1.31-1.661-2.024-3.798-2.38-6.171-.477-2.374-.596-5.34-.596-8.426V39.117H3.572A3.037 3.037 0 0 1 .477 36.15Zm245.595 45.57h7.381c1.547 0 2.857-1.306 2.857-2.848v-47.47c0-1.543-1.31-2.848-2.857-2.848h-7.381c-1.548 0-2.857 1.305-2.857 2.848v47.47c0 1.542 1.309 2.848 2.857 2.848Z\" fill=\"#ADBDCE\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .191)\" d=\"M0 0h350v84.259H0z\"/></clipPath></defs></svg>',transition:transition,withExternalLayout:true})})})});});const css=['.framer-l9WQv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l9WQv .framer-1vdlfmy { display: block; }\",\".framer-l9WQv .framer-cyqfwy { height: 73px; overflow: hidden; position: relative; width: 301px; }\",\".framer-l9WQv .framer-5z3l3f { aspect-ratio: 4.117647058823529 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 73\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerySy1J882M=withCSS(Component,css,\"framer-l9WQv\");export default FramerySy1J882M;FramerySy1J882M.displayName=\"Todoist\";FramerySy1J882M.defaultProps={height:73,width:301};addFonts(FramerySy1J882M,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySy1J882M\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"73\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"301\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ySy1J882M.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{cloneElement}from\"react\";function scrollToTop(){if(window){window.scrollTo({top:0,behavior:\"smooth\"});}}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */ export default function ScrollToTopButton(props){let button;if(props.buttonType==\"default\"){button=/*#__PURE__*/ _jsx(\"div\",{style:{width:props.buttonWidth,height:props.buttonHeight,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:props.fill,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,...props.style},onClick:scrollToTop,children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",viewBox:\"0 0 24 24\",strokeWidth:props.icon.stroke,stroke:props.icon.color,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{width:props.icon.size,height:props.icon.size},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M12 5l0 14\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M18 11l-6 -6\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M6 11l6 -6\"})]})});}else{var ref,ref1,ref2;let layer=(ref=props.custom)===null||ref===void 0?void 0:ref[0];if(layer&&(((ref1=props.style)===null||ref1===void 0?void 0:ref1.width)||((ref2=props.style)===null||ref2===void 0?void 0:ref2.height))){layer=/*#__PURE__*/ cloneElement(layer,{style:{...layer.props.style,...props.style}});}button=/*#__PURE__*/ _jsx(\"div\",{onClick:scrollToTop,style:props.style,children:layer});}let layer1=button;if(props.effects){layer1=/*#__PURE__*/ _jsx(motion.div,{whileHover:{scale:props.effects.hoverScale},whileTap:{scale:props.effects.pressScale},initial:false,transition:props.effects.transition,style:props.style,children:button});}return layer1;};ScrollToTopButton.displayName=\"Scroll-to-Top Button\";const effectsDefault={hoverScale:1.1,pressScale:.9};addPropertyControls(ScrollToTopButton,{buttonType:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,title:\"Button\"},custom:{type:ControlType.ComponentInstance,title:\"Custom\",description:\"Use a custom button layer.\",hidden(props){return props.buttonType!==\"custom\";}},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true,hidden(props){return props.buttonType!==\"default\";}},icon:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"black\"},size:{type:ControlType.Number,defaultValue:24,min:1},stroke:{type:ControlType.Number,defaultValue:2,min:1,max:10,step:.1}},hidden(props){return props.buttonType!==\"default\";}},radius:{type:ControlType.FusedNumber,defaultValue:20,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden(props){return props.buttonType!==\"default\";}},effects:{type:ControlType.Object,defaultValue:effectsDefault,optional:true,buttonTitle:\"Hover & Press\",icon:\"effect\",controls:{hoverScale:{type:ControlType.Number,defaultValue:effectsDefault.hoverScale,min:0,step:.01,displayStepper:true},pressScale:{type:ControlType.Number,defaultValue:effectsDefault.pressScale,min:0,step:.01,displayStepper:true},transition:{type:ControlType.Transition}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollToTopButton\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollToTopButton.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import OpenAI from\"#framer/local/canvasComponent/BYfjwEyLq/BYfjwEyLq.js\";import FAQAccordion from\"#framer/local/canvasComponent/dV7SE9X5q/dV7SE9X5q.js\";import FeatureCard from\"#framer/local/canvasComponent/fbekXnNAc/fbekXnNAc.js\";import CTALaunch from\"#framer/local/canvasComponent/gCkrcTKxp/gCkrcTKxp.js\";import Amazon from\"#framer/local/canvasComponent/JA1uj1NUe/JA1uj1NUe.js\";import Tesla from\"#framer/local/canvasComponent/jwe_la75H/jwe_la75H.js\";import FeatureSection from\"#framer/local/canvasComponent/L8yk06JFc/L8yk06JFc.js\";import Pathlight from\"#framer/local/canvasComponent/oXth8QW9p/oXth8QW9p.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import Navigation from\"#framer/local/canvasComponent/RG7yJog90/RG7yJog90.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import Spotify from\"#framer/local/canvasComponent/tUuAzSjlI/tUuAzSjlI.js\";import Testimonial from\"#framer/local/canvasComponent/xzSFaubax/xzSFaubax.js\";import Buttons from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import Todoist from\"#framer/local/canvasComponent/ySy1J882M/ySy1J882M.js\";import ScrollToTopButton from\"#framer/local/codeFile/UmZQLNT/ScrollToTopButton.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle6 from\"#framer/local/css/KcUpCwhm3/KcUpCwhm3.js\";import*as sharedStyle5 from\"#framer/local/css/MOhTEatyY/MOhTEatyY.js\";import*as sharedStyle3 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle2 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle1 from\"#framer/local/css/waIKCrlqu/waIKCrlqu.js\";import*as sharedStyle4 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const AvatarFonts=getFonts(Avatar);const ButtonsFonts=getFonts(Buttons);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const PathlightFonts=getFonts(Pathlight);const OpenAIFonts=getFonts(OpenAI);const TeslaFonts=getFonts(Tesla);const SpotifyFonts=getFonts(Spotify);const AmazonFonts=getFonts(Amazon);const TodoistFonts=getFonts(Todoist);const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const FeatureSectionFonts=getFonts(FeatureSection);const FeatureCardFonts=getFonts(FeatureCard);const CTALaunchFonts=getFonts(CTALaunch);const TestimonialFonts=getFonts(Testimonial);const FAQAccordionFonts=getFonts(FAQAccordion);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"PqpaQgc5e\",\"J3uB7PlJN\",\"WpCIbgkLd\"];const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1279px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rlmwo\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const transition3={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:30,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition5={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition6={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition8={damping:50,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition9={damping:40,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition10={damping:30,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:40,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition13={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition15={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition16={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition17={damping:40,delay:0,mass:1,stiffness:160,type:\"spring\"};const transition18={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition19={damping:40,delay:.3,mass:1,stiffness:160,type:\"spring\"};const transition20={damping:40,delay:.4,mass:1,stiffness:160,type:\"spring\"};const transition21={damping:40,delay:.5,mass:1,stiffness:160,type:\"spring\"};const transition22={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition23={damping:40,delay:.6,mass:1,stiffness:160,type:\"spring\"};const transition24={damping:40,delay:.7,mass:1,stiffness:160,type:\"spring\"};const transition25={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition26={damping:40,delay:.8,mass:1,stiffness:160,type:\"spring\"};const transition27={damping:40,delay:.9,mass:1,stiffness:160,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-rlmwo`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-rlmwo`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"tws5NSJQ1\");const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return false;return true;};const id1=useRouteElementId(\"jv_QmIFgl\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"WpCIbgkLd\")return false;return true;};const id2=useRouteElementId(\"zgsSv6D90\");const id3=useRouteElementId(\"SqZiK_A17\");const ref5=React.useRef(null);const id4=useRouteElementId(\"SPLtAiMzX\");const ref6=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"PqpaQgc5e\",\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const id5=useRouteElementId(\"ZlTtx5UZP\");const ref7=React.useRef(null);const id6=useRouteElementId(\"VoZuv6REF\");const ref8=React.useRef(null);const id7=useRouteElementId(\"UBJbDSrRr\");const ref9=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{animate:undefined,initial:undefined,style:{},transformTemplate:transformTemplate1},PqpaQgc5e:{\"data-framer-appear-id\":\"1civuzz\",animate:optimizeAppear(\"animate\",\"1civuzz\",animation,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1civuzz\",animation1,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1civuzz\",transformTemplate1)},WpCIbgkLd:{\"data-framer-appear-id\":\"lxr2z0\",animate:optimizeAppear(\"animate\",\"lxr2z0\",animation,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"lxr2z0\",animation1,\"qqyzon\"),transformTemplate:optimizeAppearTransformTemplate(\"lxr2z0\",transformTemplate1)}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"wde3po\",animation,\"72rtr7\"),className:\"framer-wde3po-container\",\"data-framer-appear-id\":\"wde3po\",id:id,initial:optimizeAppear(\"initial\",\"wde3po\",animation1,\"72rtr7\"),layoutScroll:true,ref:ref3,style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"wde3po\",transformTemplate1),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"},WpCIbgkLd:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"TU_nbc0Zt\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"KrPPG9bp_\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vndmf-container hidden-ujtbii hidden-qqyzon\",layoutScroll:true,children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"default\",custom:[],effects:{hoverScale:1.1,pressScale:.9,transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}},fill:\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\",height:\"100%\",icon:{color:\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\",size:30,stroke:2},id:\"FejEQVibc\",layoutId:\"FejEQVibc\",radius:50,radiusBottomLeft:50,radiusIsMixed:false,radiusottomRight:50,radiusTopLeft:50,radiusTopRight:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"#hero\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p9zqaz hidden-ujtbii framer-lux5qc\",\"data-framer-name\":\"Back-to-Top\",name:\"Back-to-Top\",whileTap:animation2})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",id:id1,name:\"Hero\",ref:ref4,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"1japjq4\",animate:optimizeAppear(\"animate\",\"1japjq4\",animation3,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1japjq4\",animation4,\"1uu7l1z\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"aeug7n\",animation3,\"72rtr7\"),className:\"framer-aeug7n hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"aeug7n\",\"data-framer-name\":\"gradient-top-right\",initial:optimizeAppear(\"initial\",\"aeug7n\",animation4,\"72rtr7\"),name:\"gradient-top-right\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xze9nt\",\"data-framer-name\":\"blue\",name:\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0lqfi\",\"data-framer-name\":\"blue-2\",name:\"blue-2\"})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"hoeh11\",animate:optimizeAppear(\"animate\",\"hoeh11\",animation3,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"hoeh11\",animation4,\"1uu7l1z\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1d13stc\",animation3,\"72rtr7\"),className:\"framer-1d13stc hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"1d13stc\",\"data-framer-name\":\"gradient-top-left\",initial:optimizeAppear(\"initial\",\"1d13stc\",animation4,\"72rtr7\"),name:\"gradient-top-left\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k27plj\",\"data-framer-name\":\"yellow\",name:\"yellow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184ujgq\",\"data-framer-name\":\"green\",name:\"green\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lqxjv\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ng0tkn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://footprint.wwf.org.uk/\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-border\":true,\"data-framer-appear-id\":\"fcpbv0\",animate:optimizeAppear(\"animate\",\"fcpbv0\",animation5,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"fcpbv0\",animation6,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"uueoue\",animate:optimizeAppear(\"animate\",\"uueoue\",animation5,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"uueoue\",animation6,\"1uu7l1z\")},WpCIbgkLd:{\"data-border\":true,\"data-framer-appear-id\":\"1nlozj\",animate:optimizeAppear(\"animate\",\"1nlozj\",animation5,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"1nlozj\",animation6,\"qqyzon\")}},children:/*#__PURE__*/_jsxs(motion.a,{animate:optimizeAppear(\"animate\",\"psoogj\",animation5,\"72rtr7\"),className:\"framer-psoogj framer-lux5qc\",\"data-framer-appear-id\":\"psoogj\",\"data-framer-name\":\"Badge\",initial:optimizeAppear(\"initial\",\"psoogj\",animation6,\"72rtr7\"),name:\"Badge\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdfu8x\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(50, 194, 58)\"},children:\"New\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(50, 194, 58)\"},children:\"New\"})}),className:\"framer-902rk0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jdy0o\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 150, 41)\"},children:\"Create  a  Meter for your Organisation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 150, 41)\"},children:\"Create  a  Meter for your Organisation\"})}),className:\"framer-j9rgpq\",\"data-framer-name\":\"Message\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Message\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1048hid\",\"data-framer-name\":\"arrow-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"arrow-right\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.33333 8.00016H12.6667M12.6667 8.00016L8 3.3335M12.6667 8.00016L8 12.6668\" stroke=\"#1C44ED\" stroke-width=\"1.3333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"dsdzqq\",animate:optimizeAppear(\"animate\",\"dsdzqq\",animation7,\"ujtbii\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Revive, Replenish, Restore: Just Plant.\"})}),initial:optimizeAppear(\"initial\",\"dsdzqq\",animation8,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"1gciv65\",animate:optimizeAppear(\"animate\",\"1gciv65\",animation7,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1gciv65\",animation8,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"1eolrsa\",animate:optimizeAppear(\"animate\",\"1eolrsa\",animation7,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"1eolrsa\",animation8,\"qqyzon\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1uywckh\",animation7,\"72rtr7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Revive, Replenish, Restore: Just Plant.\"})}),className:\"framer-1uywckh\",\"data-framer-appear-id\":\"1uywckh\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1uywckh\",animation8,\"72rtr7\"),name:\"Main Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"94duza\",animate:optimizeAppear(\"animate\",\"94duza\",animation9,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"94duza\",animation8,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"cmxbkt\",animate:optimizeAppear(\"animate\",\"cmxbkt\",animation9,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"cmxbkt\",animation8,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"cw0e74\",animate:optimizeAppear(\"animate\",\"cw0e74\",animation9,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"cw0e74\",animation8,\"qqyzon\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"u9emc7\",animation9,\"72rtr7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, rgb(17, 22, 33))\"},children:\"Planting the seeds for a sustainable future. \"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"u9emc7\",animation8,\"72rtr7\"),name:\"Supporting text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"c1gzxx\",animate:optimizeAppear(\"animate\",\"c1gzxx\",animation10,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"c1gzxx\",animation8,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"s08go\",animate:optimizeAppear(\"animate\",\"s08go\",animation10,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"s08go\",animation8,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"9hsixn\",animate:optimizeAppear(\"animate\",\"9hsixn\",animation10,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"9hsixn\",animation8,\"qqyzon\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1yt86wi\",animation10,\"72rtr7\"),className:\"framer-1yt86wi\",\"data-framer-appear-id\":\"1yt86wi\",\"data-framer-name\":\"Social Trust\",initial:optimizeAppear(\"initial\",\"1yt86wi\",animation8,\"72rtr7\"),name:\"Social Trust\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1w5f8\",\"data-framer-name\":\"Stacked Avatars\",name:\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3ehre-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"aEiuqGpXR\",image:addImageAlt({src:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg\",srcSet:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg 3456w\"},\"\"),layoutId:\"aEiuqGpXR\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-38qvku-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"hCOJepZ1f\",image:addImageAlt({src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},\"\"),layoutId:\"hCOJepZ1f\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucnd8i-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"IfK7zrems\",image:addImageAlt({src:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg\",srcSet:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg 3648w\"},\"\"),layoutId:\"IfK7zrems\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a9af9-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"fox3PiEcJ\",image:addImageAlt({src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"},\"\"),layoutId:\"fox3PiEcJ\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Trusted already by 1.2k+\"})}),className:\"framer-18v5tzb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-225hdf\",\"data-framer-name\":\"Actions\",name:\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"17dyjvc\",animate:optimizeAppear(\"animate\",\"17dyjvc\",animation11,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"17dyjvc\",animation4,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"m7bl7m\",animate:optimizeAppear(\"animate\",\"m7bl7m\",animation11,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"m7bl7m\",animation4,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"17euj6a\",animate:optimizeAppear(\"animate\",\"17euj6a\",animation11,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"17euj6a\",animation4,\"qqyzon\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"15xh9ns\",animation11,\"72rtr7\"),className:\"framer-15xh9ns-container\",\"data-framer-appear-id\":\"15xh9ns\",\"data-framer-name\":\"Button Secondary\",initial:optimizeAppear(\"initial\",\"15xh9ns\",animation4,\"72rtr7\"),name:\"Button Secondary\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},vjZWklrqI:resolvedLinks[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"vUjU2CUgk\",layoutId:\"vUjU2CUgk\",name:\"Button Secondary\",variant:\"hcemchZsc\",vjZWklrqI:resolvedLinks[0],width:\"100%\",xEfGs_njT:\"Learn more\"})})})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-112xx8p hidden-ujtbii\",\"data-framer-name\":\"Main-visual\",name:\"Main-visual\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1050,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bvspiv\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:232,pixelHeight:402,pixelWidth:464,src:\"https://framerusercontent.com/images/3qm60Bn7e2tg1Nx9roO4oxhvwhY.jpg\"},className:\"framer-96y6ty\",\"data-framer-name\":\"widget_0_2x\",name:\"widget_0_2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"abzn1l\",animate:optimizeAppear(\"animate\",\"abzn1l\",animation12,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"abzn1l\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"abzn1l\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"jge1i2\",animate:optimizeAppear(\"animate\",\"jge1i2\",animation12,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"jge1i2\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"uxx9lr\",animation12,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,pixelHeight:378,pixelWidth:372,src:\"https://framerusercontent.com/images/4Lnr9lWMGD6BcMcymmC4nmgd8g.jpg\"},className:\"framer-uxx9lr\",\"data-framer-appear-id\":\"uxx9lr\",\"data-framer-name\":\"widget_1_2x\",initial:optimizeAppear(\"initial\",\"uxx9lr\",animation13,\"72rtr7\"),name:\"widget_1_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"uxx9lr\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"1razzah\",animate:optimizeAppear(\"animate\",\"1razzah\",animation5,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1razzah\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1razzah\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1mfjupb\",animate:optimizeAppear(\"animate\",\"1mfjupb\",animation5,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"1mfjupb\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1ur4w9m\",animation5,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:431,pixelWidth:422,src:\"https://framerusercontent.com/images/BoFWyBU41PRghyUDjWwAqI44MM.jpg\"},className:\"framer-1ur4w9m\",\"data-framer-appear-id\":\"1ur4w9m\",\"data-framer-name\":\"widget_2_2x\",initial:optimizeAppear(\"initial\",\"1ur4w9m\",animation13,\"72rtr7\"),name:\"widget_2_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1ur4w9m\",transformTemplate2)})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"9lkow8\",animate:optimizeAppear(\"animate\",\"9lkow8\",animation14,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9lkow8\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9lkow8\",transformTemplate2)}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1k1vbbk\",animation14,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,pixelHeight:511,pixelWidth:598,sizes:\"300px\",src:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg 598w\"},className:\"framer-1k1vbbk hidden-qqyzon\",\"data-framer-appear-id\":\"1k1vbbk\",\"data-framer-name\":\"widget_3_2x\",initial:optimizeAppear(\"initial\",\"1k1vbbk\",animation13,\"72rtr7\"),name:\"widget_3_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1k1vbbk\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"sxwfy7\",animate:optimizeAppear(\"animate\",\"sxwfy7\",animation12,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"sxwfy7\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"sxwfy7\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1k6oq5e\",animate:optimizeAppear(\"animate\",\"1k6oq5e\",animation12,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1350,pixelWidth:1080,sizes:\"142px\",src:\"https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png?scale-down-to=1024 819w,https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png 1080w\"},initial:optimizeAppear(\"initial\",\"1k6oq5e\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"yf7dwg\",animation12,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1350,pixelWidth:1080,sizes:\"174px\",src:\"https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png?scale-down-to=1024 819w,https://framerusercontent.com/images/8DuhGnKss5ZYfBocuAE2VqIlwwE.png 1080w\"},className:\"framer-yf7dwg\",\"data-framer-appear-id\":\"yf7dwg\",\"data-framer-name\":\"widget_4_2x\",initial:optimizeAppear(\"initial\",\"yf7dwg\",animation13,\"72rtr7\"),name:\"widget_4_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"yf7dwg\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"133cehr\",animate:optimizeAppear(\"animate\",\"133cehr\",animation15,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"133cehr\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"133cehr\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"ethy9h\",animate:optimizeAppear(\"animate\",\"ethy9h\",animation15,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"ethy9h\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"6nh1qo\",animation15,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:431,pixelWidth:422,src:\"https://framerusercontent.com/images/ssFFv25zMAg3KyM9yy6bOW0CxLw.jpg\"},className:\"framer-6nh1qo\",\"data-framer-appear-id\":\"6nh1qo\",\"data-framer-name\":\"widget_6_2x\",initial:optimizeAppear(\"initial\",\"6nh1qo\",animation13,\"72rtr7\"),name:\"widget_6_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"6nh1qo\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"1sxf16s\",animate:optimizeAppear(\"animate\",\"1sxf16s\",animation15,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1sxf16s\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1sxf16s\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1bs1x30\",animate:optimizeAppear(\"animate\",\"1bs1x30\",animation15,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:1350,pixelWidth:1080,sizes:\"168px\",src:\"https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png 1080w\"},initial:optimizeAppear(\"initial\",\"1bs1x30\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1w2lmz4\",animation15,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:1350,pixelWidth:1080,sizes:\"244px\",src:\"https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fShk8cdb6XamCZXBpdEejUMY5DU.png 1080w\"},className:\"framer-1w2lmz4\",\"data-framer-appear-id\":\"1w2lmz4\",\"data-framer-name\":\"widget_7_2x\",initial:optimizeAppear(\"initial\",\"1w2lmz4\",animation13,\"72rtr7\"),name:\"widget_7_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1w2lmz4\",transformTemplate2)})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"9t9942\",animate:optimizeAppear(\"animate\",\"9t9942\",animation,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9t9942\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9t9942\",transformTemplate2)}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1hdye1v\",animation,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,pixelHeight:287,pixelWidth:599,sizes:\"300px\",src:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg 599w\"},className:\"framer-1hdye1v hidden-qqyzon\",\"data-framer-appear-id\":\"1hdye1v\",\"data-framer-name\":\"widget_8_2x\",initial:optimizeAppear(\"initial\",\"1hdye1v\",animation13,\"72rtr7\"),name:\"widget_8_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1hdye1v\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"7u6cyj\",animate:optimizeAppear(\"animate\",\"7u6cyj\",animation12,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"7u6cyj\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"7u6cyj\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"y4fb27\",animate:optimizeAppear(\"animate\",\"y4fb27\",animation12,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"y4fb27\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:92,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"j4jga\",animation12,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,pixelHeight:412,pixelWidth:372,src:\"https://framerusercontent.com/images/0Y9PlCai4JXcHh9pY8clo5BY7hQ.jpg\"},className:\"framer-j4jga\",\"data-framer-appear-id\":\"j4jga\",\"data-framer-name\":\"widget_5_2x\",initial:optimizeAppear(\"initial\",\"j4jga\",animation13,\"72rtr7\"),name:\"widget_5_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"j4jga\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"9ytiaq\",animate:optimizeAppear(\"animate\",\"9ytiaq\",animation15,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9ytiaq\",animation13,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9ytiaq\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1cg4rep\",animate:optimizeAppear(\"animate\",\"1cg4rep\",animation15,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,pixelHeight:1350,pixelWidth:1080,sizes:\"131px\",src:\"https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png?scale-down-to=1024 819w,https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png 1080w\"},initial:optimizeAppear(\"initial\",\"1cg4rep\",animation13,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:97,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1121up6\",animation15,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,pixelHeight:1350,pixelWidth:1080,sizes:\"147px\",src:\"https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png?scale-down-to=1024 819w,https://framerusercontent.com/images/29aJZQT44FNytkfE8UBzCJ5l7g.png 1080w\"},className:\"framer-1121up6\",\"data-framer-appear-id\":\"1121up6\",\"data-framer-name\":\"widget_9_2x\",initial:optimizeAppear(\"initial\",\"1121up6\",animation13,\"72rtr7\"),name:\"widget_9_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1121up6\",transformTemplate2)})})]})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j4nrae\",\"data-framer-name\":\"Brands\",id:id2,name:\"Brands\",ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo0xl9\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Already chosen by the world leaders\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Already chosen by the world leaders\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Already chosen by the world leaders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Already chosen by the world leaders\"})}),className:\"framer-2a8b7p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuhlz0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:30},PqpaQgc5e:{gap:60},WpCIbgkLd:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"XNtA_NGyt\",layoutId:\"XNtA_NGyt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnp448-container\",children:/*#__PURE__*/_jsx(Pathlight,{height:\"100%\",id:\"AlzSJghrD\",layoutId:\"AlzSJghrD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcwbrm-container\",children:/*#__PURE__*/_jsx(OpenAI,{height:\"100%\",id:\"azpH2nALU\",layoutId:\"azpH2nALU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uzfvqj-container\",children:/*#__PURE__*/_jsx(Tesla,{height:\"100%\",id:\"Nlu6evgKg\",layoutId:\"Nlu6evgKg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlvwqj-container\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"LCddUYaWb\",layoutId:\"LCddUYaWb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1plc4e2-container\",children:/*#__PURE__*/_jsx(Amazon,{height:\"100%\",id:\"qN0f7JEN4\",layoutId:\"qN0f7JEN4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1limjit-container\",children:/*#__PURE__*/_jsx(Todoist,{height:\"100%\",id:\"t_4kzfHaA\",layoutId:\"t_4kzfHaA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t5bw2x\",\"data-framer-name\":\"How It Works\",id:id3,name:\"How It Works\",ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-crvn2r\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tml69f\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjmeho\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fl3pqc-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"HOW IT WORKS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"c_N8gQCAM\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"c_N8gQCAM\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"LET'S RESTORE THE PLANET TOGETHER! \"})}),className:\"framer-1fvuriy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"We are on a mission to restore nature and reduce the temperature of our planet.\"})}),className:\"framer-zw4c9c\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q2olwh-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"pRL4OWPK5\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"wcIcKWlxW\",layoutId:\"wcIcKWlxW\",MyzOwQ53a:\"In a world grappling with the dire consequences of climate change, Just Plant believes that together with your help we can reverse the ravages of illegal mining, human intervention, and the relentless march of climate change. Our mission is clear: to restore Africa's once-fertile landscapes and secure a sustainable future for generations to come.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg\",srcSet:\"https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ArV5H2oHhnjsITVgtSNGa0O0cg.jpg 5760w\"},\"\"),Pn08AubqI:\"Let's March for Climate Change!\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c45g1f-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},WpCIbgkLd:{variant:\"IX9Nedfcw\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"b3QdyhuiE\",layoutId:\"b3QdyhuiE\",MyzOwQ53a:\"At Just Plant, we're not just farmers \u2013 we're stewards of the Earth, driven by an unwavering commitment to nature. When it comes to combating climate change, our solution is simple: Just Plant.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/FqzUVImEXwgcSLPpJ8365ZEOhno.jpg\",srcSet:\"https://framerusercontent.com/images/FqzUVImEXwgcSLPpJ8365ZEOhno.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FqzUVImEXwgcSLPpJ8365ZEOhno.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FqzUVImEXwgcSLPpJ8365ZEOhno.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FqzUVImEXwgcSLPpJ8365ZEOhno.jpg 3509w\"},\"\"),Pn08AubqI:\"Not Just Farmers but Stewards!\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cumeb4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"ffrKZPDFo\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"DDFT3dPjG\",layoutId:\"DDFT3dPjG\",MyzOwQ53a:\"By applying our nature-based methodology we are able to reverse the effects of illegal mining and human exploitation by 97% and mitigate global warming by 43% bringing invaluable benefits to nature, wildlife and millions of humans.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/7sDxkALV8jzTdi5xWIIFTyRU.jpeg\",srcSet:\"https://framerusercontent.com/images/7sDxkALV8jzTdi5xWIIFTyRU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7sDxkALV8jzTdi5xWIIFTyRU.jpeg 1024w\"},\"\"),Pn08AubqI:\"Our Nature Based Methodology \",style:{width:\"100%\"},variant:\"lKnwV_fHB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-155kb7t\",\"data-framer-name\":\"Features\",id:id4,name:\"Features\",ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ki0ny4\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114jssf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fldpmy\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d07cm8-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"INCLUDED\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"wmuYHiUOn\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"wmuYHiUOn\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Future features tailored to your needs\"})}),className:\"framer-11kit8 hidden-qqyzon\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"Inter\"],name:\"Live messaging. limi\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Live in 2025, gain valuable data-driven insights into talent markets worldwide.\"})}),className:\"framer-1j4t30y\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8vdwa\",\"data-framer-name\":\"Features Card Block\",name:\"Features Card Block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xard2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y067l6-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"ApplePodcastsLogo\",featureDescription:\"Explore a range of certified projects, from reforestation initiatives to renewable energy installations, and choose the ones that resonate with your values. \",featureTitle:\"Offset Marketplace\",height:\"100%\",iconVisibility:true,id:\"nuWZBbngU\",layoutId:\"nuWZBbngU\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ibwxyw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"Aperture\",featureDescription:\"Track emissions by assessing your company's impact, our tool provides accurate insights into your carbon footprint.\",featureTitle:\"Carbon Footprint Calculator\",height:\"100%\",iconVisibility:true,id:\"S7803eIlW\",layoutId:\"S7803eIlW\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hsr3vk-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"Anchor\",featureDescription:\"Take charge of your sustainability journey with Just Plant's interactive carbon reduction plans. Tailored to your lifestyle or organization's operations,\",featureTitle:\"Co2 Reduction Plans\",height:\"100%\",iconVisibility:true,id:\"fsy4R3dmh\",layoutId:\"fsy4R3dmh\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-63knen-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"HandTap\",featureDescription:\"Dive deeper into the world of sustainability with Just Plant's comprehensive education hub. Access valuable resources, articles, and guides on climate change\",featureTitle:\"Education Hub\",height:\"100%\",iconVisibility:true,id:\"TX7UUNLf2\",layoutId:\"TX7UUNLf2\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14oeeyv-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"Bandaids\",featureDescription:\"Track, analyze, and report your environmental performance, including carbon emissions, offset contributions, and sustainability initiatives. \",featureTitle:\"Corporate Sustainability Reporting\",height:\"100%\",iconVisibility:true,id:\"QTDxPi2_Q\",layoutId:\"QTDxPi2_Q\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bydu2r-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{background:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",chooseIcon:\"Palette\",featureDescription:\"Perfect for any occasion, our gift cards allow you to share the joy of reducing carbon emissions with friends, family, and colleagues\",featureTitle:\"Carbon Offset Giftcards\",height:\"100%\",iconVisibility:true,id:\"A7BHbiFIx\",layoutId:\"A7BHbiFIx\",style:{width:\"100%\"},width:\"100%\"})})})]})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iusd5a-container hidden-1uu7l1z hidden-ujtbii hidden-qqyzon\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CTALaunch,{height:\"100%\",id:\"HCOSbFjIT\",layoutId:\"HCOSbFjIT\",style:{width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4mqpuq\",\"data-framer-name\":\"Metrics\",id:id5,name:\"Metrics\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcobr8\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7r3jr\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10omhun-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"METRICS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"uwzf91ZBV\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"uwzf91ZBV\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Goals for 2030.\"})}),className:\"framer-1rp0pmn\",\"data-framer-name\":\"Numbers speaking for themselves\",fonts:[\"Inter\"],name:\"Numbers speaking for themselves\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vpwr7o\",\"data-framer-name\":\"Numbers\",name:\"Numbers\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7zxqpe\",\"data-border\":true,\"data-framer-name\":\"Item\",name:\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"50,000\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"50,000\"})}),className:\"framer-2wrv3i\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Number\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hectares Restored\"})}),className:\"framer-swfy82\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nh2hnf\",\"data-border\":true,\"data-framer-name\":\"Item\",name:\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"1.2M+\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"1.2M+\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"1.2M+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"1.2M+\"})}),className:\"framer-1fhe1sx\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Number\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trees planted \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trees planted and counting\"})}),className:\"framer-1rcoess\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18rnzgc\",\"data-framer-name\":\"Item\",name:\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},children:\"60,000\"})}),className:\"framer-1lyz8h0\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Number\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tons of Co2 Sequested\"})}),className:\"framer-1tpy5fl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18fn4o8\",\"data-framer-name\":\"Testmonials\",id:id6,name:\"Testmonials\",ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lilnrz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w1gje9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"TESTIMONIALS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"syBm8yUkv\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"syBm8yUkv\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"Don\u2019t take our word for it\"})}),className:\"framer-ee8yod\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],name:\"Don\u2019t take our word for it\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7cmiz\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112tijh\",\"data-framer-name\":\"Row\",name:\"Row\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleTransformEffectEnabled:undefined,style:{}},WpCIbgkLd:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-997,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k30bep-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"},WpCIbgkLd:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"}},children:/*#__PURE__*/_jsx(Testimonial,{background:\"var(--token-369bc1bd-97b2-4771-a553-64253b756551, rgb(217, 255, 216))\",height:\"100%\",id:\"wfHYW6JcL\",layoutId:\"wfHYW6JcL\",nameRole:\"Michael Chen, HR Director at Acme Enterprises.\",style:{height:\"100%\",width:\"100%\"},text:'\"Just Plant\\'s emphasis on sustainability  and regeneration efforts impressed me, helping us create a more holisitc appraoch to business.\".\"',variant:\"jmu0jInww\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jirvc7\",\"data-framer-name\":\"FAQ\",id:id7,name:\"FAQ\",ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ptg2o\",\"data-framer-name\":\"Containter\",name:\"Containter\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttihow\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cr5ewj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"FAQ\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"qkr7BPjOj\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"qkr7BPjOj\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"We\u2019ve got you covered\"})}),className:\"framer-vts9ei\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"Inter\"],name:\"We\u2019ve got you covered\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"min(100vw - 40px, 1180px)\"},PqpaQgc5e:{width:\"calc(min(100vw - 80px, 1180px) * 0.66)\"},WpCIbgkLd:{width:\"min(100vw - 40px, 1180px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(100vw - 120px, 1180px) * 0.66)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-108hyr5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{height:\"100%\",id:\"z8dgI7mnb\",layoutId:\"z8dgI7mnb\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16qlq98-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"dDfMYNgad\"},WpCIbgkLd:{variant:\"orCSEo06g\"}},children:/*#__PURE__*/_jsx(CTALaunch,{height:\"100%\",id:\"wxTKsF2d5\",layoutId:\"wxTKsF2d5\",style:{width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t267rc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UdEOtZZh7\",layoutId:\"UdEOtZZh7\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-rlmwo { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; }`,\".framer-rlmwo.framer-lux5qc, .framer-rlmwo .framer-lux5qc { display: block; }\",\".framer-rlmwo.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-rlmwo .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-rlmwo .framer-19vndmf-container { bottom: 30px; flex: none; height: 50px; position: fixed; right: 60px; width: 50px; z-index: 1; }\",\".framer-rlmwo .framer-p9zqaz { align-content: center; align-items: center; background-color: rgba(244, 247, 250, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 51px; min-width: 48px; overflow: hidden; padding: 0px; position: fixed; right: 40px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-rlmwo .framer-1yp8xwc { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-369bc1bd-97b2-4771-a553-64253b756551, #d9ffd8) 0%, var(--token-369bc1bd-97b2-4771-a553-64253b756551, rgb(217, 255, 216)) 100%); background-color: var(--token-369bc1bd-97b2-4771-a553-64253b756551, #d9ffd8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 180px 0px 80px 0px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-rlmwo .framer-aeug7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-rlmwo .framer-1xze9nt { -webkit-filter: blur(90px); background-color: var(--token-369bc1bd-97b2-4771-a553-64253b756551, #d9ffd8); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(90px); flex: none; height: 618px; position: absolute; right: -283px; top: 0px; width: 838px; z-index: 1; }\",\".framer-rlmwo .framer-1j0lqfi { -webkit-filter: blur(82px); background-color: var(--token-369bc1bd-97b2-4771-a553-64253b756551, #d9ffd8); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(82px); flex: none; height: 514px; left: -310px; position: absolute; top: 31px; width: 791px; z-index: 1; }\",\".framer-rlmwo .framer-1d13stc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(18.046875000000025% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-rlmwo .framer-1k27plj { -webkit-filter: blur(76px); background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(76px); flex: none; height: 523px; position: absolute; right: 268px; top: 119px; width: 536px; z-index: 1; }\",\".framer-rlmwo .framer-184ujgq { -webkit-filter: blur(95px); background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(95px); flex: none; height: 345px; overflow: hidden; position: absolute; right: 62px; top: 123px; width: 345px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-rlmwo .framer-17lqxjv, .framer-rlmwo .framer-crvn2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-9o2owm, .framer-rlmwo .framer-tml69f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1ng0tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-psoogj { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rlmwo .framer-gdfu8x { align-content: center; align-items: center; background-color: #eaf2ff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 4px 12px 4px 12px; position: relative; width: min-content; }\",\".framer-rlmwo .framer-902rk0, .framer-rlmwo .framer-j9rgpq, .framer-rlmwo .framer-2a8b7p { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rlmwo .framer-4jdy0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rlmwo .framer-1048hid { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-rlmwo .framer-1uywckh, .framer-rlmwo .framer-1fvuriy, .framer-rlmwo .framer-ee8yod, .framer-rlmwo .framer-vts9ei { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-1yt86wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rlmwo .framer-u1w5f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rlmwo .framer-e3ehre-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-rlmwo .framer-38qvku-container, .framer-rlmwo .framer-ucnd8i-container, .framer-rlmwo .framer-9a9af9-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-rlmwo .framer-18v5tzb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rlmwo .framer-225hdf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rlmwo .framer-15xh9ns-container, .framer-rlmwo .framer-1fl3pqc-container, .framer-rlmwo .framer-1d07cm8-container, .framer-rlmwo .framer-10omhun-container, .framer-rlmwo .framer-1w1gje9-container, .framer-rlmwo .framer-cr5ewj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rlmwo .framer-112xx8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1bvspiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 325px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-96y6ty { aspect-ratio: 1.154228855721393 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: -357px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 232px; z-index: 1; }\",\".framer-rlmwo .framer-uxx9lr { aspect-ratio: 0.9841269841269841 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 189px); left: -125px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 186px; z-index: 1; }\",\".framer-rlmwo .framer-1ur4w9m { aspect-ratio: 0.9768518518518519 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 65px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 211px; z-index: 1; }\",\".framer-rlmwo .framer-1k1vbbk { aspect-ratio: 1.171875 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 256px); left: 1344px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 300px; z-index: 1; }\",\".framer-rlmwo .framer-yf7dwg { aspect-ratio: 0.87 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 300px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 174px; z-index: 1; }\",\".framer-rlmwo .framer-6nh1qo { aspect-ratio: 0.9813953488372092 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 215px); left: 1080px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 211px; z-index: 1; }\",\".framer-rlmwo .framer-1w2lmz4 { aspect-ratio: 0.8840579710144928 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 276px); left: 492px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 244px; z-index: 1; }\",\".framer-rlmwo .framer-1hdye1v { aspect-ratio: 2.0833333333333335 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 144px); left: 1574px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 300px; z-index: 1; }\",\".framer-rlmwo .framer-j4jga { aspect-ratio: 0.9029126213592233 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 206px); left: 732px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 186px; z-index: 1; }\",\".framer-rlmwo .framer-1121up6 { aspect-ratio: 0.8054794520547945 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 183px); left: 938px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 147px; z-index: 1; }\",\".framer-rlmwo .framer-1j4nrae { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-xo0xl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-yuhlz0-container { flex: none; height: 107px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-xnp448-container { aspect-ratio: 3.8461538461538463 / 1; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 120px; }\",\".framer-rlmwo .framer-bcwbrm-container { aspect-ratio: 4.0675675675675675 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 120px; }\",\".framer-rlmwo .framer-1uzfvqj-container { aspect-ratio: 7.615384615384615 / 1; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 120px; }\",\".framer-rlmwo .framer-dlvwqj-container, .framer-rlmwo .framer-1plc4e2-container { aspect-ratio: 3.2967032967032965 / 1; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 120px; }\",\".framer-rlmwo .framer-1limjit-container { aspect-ratio: 4.123287671232877 / 1; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 120px; }\",\".framer-rlmwo .framer-1t5bw2x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-rlmwo .framer-xjmeho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-zw4c9c { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-q2olwh-container, .framer-rlmwo .framer-1c45g1f-container, .framer-rlmwo .framer-cumeb4-container, .framer-rlmwo .framer-iusd5a-container, .framer-rlmwo .framer-16qlq98-container, .framer-rlmwo .framer-1t267rc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rlmwo .framer-155kb7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-ki0ny4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-114jssf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-fldpmy, .framer-rlmwo .framer-1ttihow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-11kit8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-1j4t30y { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-w8vdwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-18xard2 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(210px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-y067l6-container, .framer-rlmwo .framer-1ibwxyw-container, .framer-rlmwo .framer-1hsr3vk-container, .framer-rlmwo .framer-63knen-container, .framer-rlmwo .framer-14oeeyv-container, .framer-rlmwo .framer-1bydu2r-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-rlmwo .framer-4mqpuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1qcobr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1f7r3jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1rp0pmn, .framer-rlmwo .framer-2wrv3i, .framer-rlmwo .framer-1fhe1sx, .framer-rlmwo .framer-1lyz8h0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-vpwr7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-7zxqpe, .framer-rlmwo .framer-nh2hnf { --border-bottom-width: 0px; --border-color: #b9bed1; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rlmwo .framer-swfy82, .framer-rlmwo .framer-1rcoess, .framer-rlmwo .framer-1tpy5fl { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rlmwo .framer-18rnzgc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",'.framer-rlmwo .framer-18fn4o8 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7) /* {\"name\":\"UI/Gray-200\"} */ 0%, rgba(243, 247, 251, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 80px 60px; position: relative; width: 100%; z-index: 1; }',\".framer-rlmwo .framer-1lilnrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-1j7cmiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 71%; }\",\".framer-rlmwo .framer-112tijh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-k30bep-container { flex: none; height: 442px; position: relative; width: 668px; }\",\".framer-rlmwo .framer-jirvc7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-ptg2o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rlmwo .framer-108hyr5-container { flex: none; height: auto; position: relative; width: 66%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rlmwo.framer-72rtr7, .framer-rlmwo .framer-p9zqaz, .framer-rlmwo .framer-1yp8xwc, .framer-rlmwo .framer-aeug7n, .framer-rlmwo .framer-1d13stc, .framer-rlmwo .framer-17lqxjv, .framer-rlmwo .framer-9o2owm, .framer-rlmwo .framer-1ng0tkn, .framer-rlmwo .framer-psoogj, .framer-rlmwo .framer-gdfu8x, .framer-rlmwo .framer-4jdy0o, .framer-rlmwo .framer-1yt86wi, .framer-rlmwo .framer-u1w5f8, .framer-rlmwo .framer-225hdf, .framer-rlmwo .framer-112xx8p, .framer-rlmwo .framer-1bvspiv, .framer-rlmwo .framer-1j4nrae, .framer-rlmwo .framer-xo0xl9, .framer-rlmwo .framer-1t5bw2x, .framer-rlmwo .framer-crvn2r, .framer-rlmwo .framer-tml69f, .framer-rlmwo .framer-xjmeho, .framer-rlmwo .framer-155kb7t, .framer-rlmwo .framer-ki0ny4, .framer-rlmwo .framer-114jssf, .framer-rlmwo .framer-fldpmy, .framer-rlmwo .framer-w8vdwa, .framer-rlmwo .framer-4mqpuq, .framer-rlmwo .framer-1qcobr8, .framer-rlmwo .framer-1f7r3jr, .framer-rlmwo .framer-vpwr7o, .framer-rlmwo .framer-7zxqpe, .framer-rlmwo .framer-nh2hnf, .framer-rlmwo .framer-18rnzgc, .framer-rlmwo .framer-18fn4o8, .framer-rlmwo .framer-1lilnrz, .framer-rlmwo .framer-1j7cmiz, .framer-rlmwo .framer-112tijh, .framer-rlmwo .framer-jirvc7, .framer-rlmwo .framer-ptg2o, .framer-rlmwo .framer-1ttihow { gap: 0px; } .framer-rlmwo.framer-72rtr7 > *, .framer-rlmwo .framer-1j4nrae > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rlmwo.framer-72rtr7 > :first-child, .framer-rlmwo .framer-1yp8xwc > :first-child, .framer-rlmwo .framer-17lqxjv > :first-child, .framer-rlmwo .framer-9o2owm > :first-child, .framer-rlmwo .framer-1ng0tkn > :first-child, .framer-rlmwo .framer-1j4nrae > :first-child, .framer-rlmwo .framer-xo0xl9 > :first-child, .framer-rlmwo .framer-1t5bw2x > :first-child, .framer-rlmwo .framer-crvn2r > :first-child, .framer-rlmwo .framer-tml69f > :first-child, .framer-rlmwo .framer-xjmeho > :first-child, .framer-rlmwo .framer-155kb7t > :first-child, .framer-rlmwo .framer-ki0ny4 > :first-child, .framer-rlmwo .framer-114jssf > :first-child, .framer-rlmwo .framer-fldpmy > :first-child, .framer-rlmwo .framer-w8vdwa > :first-child, .framer-rlmwo .framer-4mqpuq > :first-child, .framer-rlmwo .framer-1qcobr8 > :first-child, .framer-rlmwo .framer-1f7r3jr > :first-child, .framer-rlmwo .framer-7zxqpe > :first-child, .framer-rlmwo .framer-nh2hnf > :first-child, .framer-rlmwo .framer-18rnzgc > :first-child, .framer-rlmwo .framer-18fn4o8 > :first-child, .framer-rlmwo .framer-1lilnrz > :first-child, .framer-rlmwo .framer-1j7cmiz > :first-child, .framer-rlmwo .framer-jirvc7 > :first-child, .framer-rlmwo .framer-ptg2o > :first-child, .framer-rlmwo .framer-1ttihow > :first-child { margin-top: 0px; } .framer-rlmwo.framer-72rtr7 > :last-child, .framer-rlmwo .framer-1yp8xwc > :last-child, .framer-rlmwo .framer-17lqxjv > :last-child, .framer-rlmwo .framer-9o2owm > :last-child, .framer-rlmwo .framer-1ng0tkn > :last-child, .framer-rlmwo .framer-1j4nrae > :last-child, .framer-rlmwo .framer-xo0xl9 > :last-child, .framer-rlmwo .framer-1t5bw2x > :last-child, .framer-rlmwo .framer-crvn2r > :last-child, .framer-rlmwo .framer-tml69f > :last-child, .framer-rlmwo .framer-xjmeho > :last-child, .framer-rlmwo .framer-155kb7t > :last-child, .framer-rlmwo .framer-ki0ny4 > :last-child, .framer-rlmwo .framer-114jssf > :last-child, .framer-rlmwo .framer-fldpmy > :last-child, .framer-rlmwo .framer-w8vdwa > :last-child, .framer-rlmwo .framer-4mqpuq > :last-child, .framer-rlmwo .framer-1qcobr8 > :last-child, .framer-rlmwo .framer-1f7r3jr > :last-child, .framer-rlmwo .framer-7zxqpe > :last-child, .framer-rlmwo .framer-nh2hnf > :last-child, .framer-rlmwo .framer-18rnzgc > :last-child, .framer-rlmwo .framer-18fn4o8 > :last-child, .framer-rlmwo .framer-1lilnrz > :last-child, .framer-rlmwo .framer-1j7cmiz > :last-child, .framer-rlmwo .framer-jirvc7 > :last-child, .framer-rlmwo .framer-ptg2o > :last-child, .framer-rlmwo .framer-1ttihow > :last-child { margin-bottom: 0px; } .framer-rlmwo .framer-p9zqaz > *, .framer-rlmwo .framer-aeug7n > *, .framer-rlmwo .framer-1d13stc > *, .framer-rlmwo .framer-112xx8p > *, .framer-rlmwo .framer-1bvspiv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rlmwo .framer-p9zqaz > :first-child, .framer-rlmwo .framer-aeug7n > :first-child, .framer-rlmwo .framer-1d13stc > :first-child, .framer-rlmwo .framer-psoogj > :first-child, .framer-rlmwo .framer-gdfu8x > :first-child, .framer-rlmwo .framer-4jdy0o > :first-child, .framer-rlmwo .framer-1yt86wi > :first-child, .framer-rlmwo .framer-u1w5f8 > :first-child, .framer-rlmwo .framer-225hdf > :first-child, .framer-rlmwo .framer-112xx8p > :first-child, .framer-rlmwo .framer-1bvspiv > :first-child, .framer-rlmwo .framer-vpwr7o > :first-child, .framer-rlmwo .framer-112tijh > :first-child { margin-left: 0px; } .framer-rlmwo .framer-p9zqaz > :last-child, .framer-rlmwo .framer-aeug7n > :last-child, .framer-rlmwo .framer-1d13stc > :last-child, .framer-rlmwo .framer-psoogj > :last-child, .framer-rlmwo .framer-gdfu8x > :last-child, .framer-rlmwo .framer-4jdy0o > :last-child, .framer-rlmwo .framer-1yt86wi > :last-child, .framer-rlmwo .framer-u1w5f8 > :last-child, .framer-rlmwo .framer-225hdf > :last-child, .framer-rlmwo .framer-112xx8p > :last-child, .framer-rlmwo .framer-1bvspiv > :last-child, .framer-rlmwo .framer-vpwr7o > :last-child, .framer-rlmwo .framer-112tijh > :last-child { margin-right: 0px; } .framer-rlmwo .framer-1yp8xwc > *, .framer-rlmwo .framer-4mqpuq > *, .framer-rlmwo .framer-18fn4o8 > *, .framer-rlmwo .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-rlmwo .framer-17lqxjv > *, .framer-rlmwo .framer-crvn2r > *, .framer-rlmwo .framer-1j7cmiz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-rlmwo .framer-9o2owm > *, .framer-rlmwo .framer-tml69f > *, .framer-rlmwo .framer-114jssf > *, .framer-rlmwo .framer-w8vdwa > *, .framer-rlmwo .framer-1qcobr8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rlmwo .framer-1ng0tkn > *, .framer-rlmwo .framer-xjmeho > *, .framer-rlmwo .framer-fldpmy > *, .framer-rlmwo .framer-1f7r3jr > *, .framer-rlmwo .framer-1lilnrz > *, .framer-rlmwo .framer-1ttihow > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rlmwo .framer-psoogj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-rlmwo .framer-gdfu8x > *, .framer-rlmwo .framer-u1w5f8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rlmwo .framer-4jdy0o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-rlmwo .framer-1yt86wi > *, .framer-rlmwo .framer-225hdf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-rlmwo .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rlmwo .framer-1t5bw2x > *, .framer-rlmwo .framer-155kb7t > *, .framer-rlmwo .framer-ki0ny4 > *, .framer-rlmwo .framer-ptg2o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rlmwo .framer-vpwr7o > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-rlmwo .framer-7zxqpe > *, .framer-rlmwo .framer-nh2hnf > *, .framer-rlmwo .framer-18rnzgc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-rlmwo .framer-112tijh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\"@media (min-width: 1280px) { .framer-rlmwo .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 992px) and (max-width: 1279px) { .framer-rlmwo .hidden-1uu7l1z { display: none !important; } .${metadata.bodyClassName}-framer-rlmwo { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-rlmwo.framer-72rtr7 { width: 992px; } .framer-rlmwo .framer-1yp8xwc { gap: 50px; padding: 180px 40px 80px 40px; } .framer-rlmwo .framer-17lqxjv, .framer-rlmwo .framer-112xx8p { padding: 0px; } .framer-rlmwo .framer-9o2owm { gap: 32px; } .framer-rlmwo .framer-1uywckh, .framer-rlmwo .framer-u9emc7, .framer-rlmwo .framer-1fvuriy, .framer-rlmwo .framer-1j4t30y, .framer-rlmwo .framer-vts9ei { width: 80%; } .framer-rlmwo .framer-1bvspiv { height: 368px; } .framer-rlmwo .framer-1j4nrae { padding: 60px 40px 0px 40px; } .framer-rlmwo .framer-yuhlz0-container { height: 100px; } .framer-rlmwo .framer-crvn2r { padding: 0px 40px 0px 40px; } .framer-rlmwo .framer-zw4c9c, .framer-rlmwo .framer-11kit8, .framer-rlmwo .framer-1j7cmiz { width: 70%; } .framer-rlmwo .framer-155kb7t { padding: 60px; } .framer-rlmwo .framer-4mqpuq { padding: 60px 40px 80px 40px; } .framer-rlmwo .framer-18fn4o8 { padding: 60px 40px 60px 40px; } .framer-rlmwo .framer-ee8yod { width: 100%; } .framer-rlmwo .framer-jirvc7 { gap: 60px; padding: 60px 40px 60px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rlmwo .framer-1yp8xwc, .framer-rlmwo .framer-9o2owm, .framer-rlmwo .framer-jirvc7 { gap: 0px; } .framer-rlmwo .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-rlmwo .framer-1yp8xwc > :first-child, .framer-rlmwo .framer-9o2owm > :first-child, .framer-rlmwo .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-rlmwo .framer-1yp8xwc > :last-child, .framer-rlmwo .framer-9o2owm > :last-child, .framer-rlmwo .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-rlmwo .framer-9o2owm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rlmwo .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 575px) { .framer-rlmwo .hidden-ujtbii { display: none !important; } .${metadata.bodyClassName}-framer-rlmwo { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-rlmwo.framer-72rtr7 { width: 390px; } .framer-rlmwo .framer-wde3po-container, .framer-rlmwo .framer-j9rgpq { order: 0; } .framer-rlmwo .framer-1yp8xwc { background: linear-gradient(180deg, var(--token-369bc1bd-97b2-4771-a553-64253b756551, #d9ffd8) /* {\"name\":\"Secondary/Lemongrass\"} */ 0%, rgb(243, 247, 242) 100%); background-color: unset; gap: 40px; order: 1; padding: 160px 20px 40px 20px; } .framer-rlmwo .framer-17lqxjv { gap: 32px; padding: 0px; } .framer-rlmwo .framer-9o2owm { gap: 40px; } .framer-rlmwo .framer-1ng0tkn { gap: 24px; } .framer-rlmwo .framer-psoogj { --border-bottom-width: 1px; --border-color: rgba(185, 190, 209, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; gap: 2px; padding: 6px 0px 6px 8px; } .framer-rlmwo .framer-1048hid, .framer-rlmwo .framer-1d07cm8-container { order: 1; } .framer-rlmwo .framer-1uywckh, .framer-rlmwo .framer-u9emc7, .framer-rlmwo .framer-15xh9ns-container, .framer-rlmwo .framer-1fvuriy, .framer-rlmwo .framer-zw4c9c, .framer-rlmwo .framer-1j4t30y, .framer-rlmwo .framer-1j7cmiz, .framer-rlmwo .framer-vts9ei, .framer-rlmwo .framer-108hyr5-container { width: 100%; } .framer-rlmwo .framer-225hdf { flex-direction: column; width: 100%; } .framer-rlmwo .framer-1j4nrae { order: 5; padding: 60px 20px 0px 20px; } .framer-rlmwo .framer-xo0xl9 { gap: 16px; order: 0; } .framer-rlmwo .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-rlmwo .framer-yuhlz0-container { height: 80px; } .framer-rlmwo .framer-1t5bw2x { gap: 20px; order: 4; } .framer-rlmwo .framer-crvn2r { padding: 0px 20px 40px 20px; } .framer-rlmwo .framer-155kb7t { order: 6; padding: 40px 20px 40px 20px; } .framer-rlmwo .framer-11kit8 { order: 0; width: 100%; } .framer-rlmwo .framer-w8vdwa { gap: 32px; } .framer-rlmwo .framer-18xard2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; } .framer-rlmwo .framer-y067l6-container, .framer-rlmwo .framer-1ibwxyw-container, .framer-rlmwo .framer-1hsr3vk-container, .framer-rlmwo .framer-63knen-container, .framer-rlmwo .framer-14oeeyv-container, .framer-rlmwo .framer-1bydu2r-container { align-self: unset; } .framer-rlmwo .framer-4mqpuq { gap: 40px; order: 8; padding: 40px 20px 60px 20px; } .framer-rlmwo .framer-vpwr7o { flex-direction: column; gap: 40px; } .framer-rlmwo .framer-7zxqpe, .framer-rlmwo .framer-nh2hnf { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-rlmwo .framer-18rnzgc { flex: none; width: 100%; } .framer-rlmwo .framer-18fn4o8 { gap: 60px; order: 9; padding: 40px 20px 40px 20px; } .framer-rlmwo .framer-ee8yod { width: 90%; } .framer-rlmwo .framer-112tijh { flex-direction: column; gap: 24px; } .framer-rlmwo .framer-k30bep-container { height: auto; width: 100%; } .framer-rlmwo .framer-jirvc7 { gap: 40px; order: 10; padding: 40px 20px 40px 20px; } .framer-rlmwo .framer-16qlq98-container { order: 11; } .framer-rlmwo .framer-1t267rc-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rlmwo .framer-1yp8xwc, .framer-rlmwo .framer-17lqxjv, .framer-rlmwo .framer-9o2owm, .framer-rlmwo .framer-1ng0tkn, .framer-rlmwo .framer-psoogj, .framer-rlmwo .framer-225hdf, .framer-rlmwo .framer-xo0xl9, .framer-rlmwo .framer-1t5bw2x, .framer-rlmwo .framer-w8vdwa, .framer-rlmwo .framer-18xard2, .framer-rlmwo .framer-4mqpuq, .framer-rlmwo .framer-vpwr7o, .framer-rlmwo .framer-18fn4o8, .framer-rlmwo .framer-112tijh, .framer-rlmwo .framer-jirvc7 { gap: 0px; } .framer-rlmwo .framer-1yp8xwc > *, .framer-rlmwo .framer-9o2owm > *, .framer-rlmwo .framer-4mqpuq > *, .framer-rlmwo .framer-vpwr7o > *, .framer-rlmwo .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rlmwo .framer-1yp8xwc > :first-child, .framer-rlmwo .framer-17lqxjv > :first-child, .framer-rlmwo .framer-9o2owm > :first-child, .framer-rlmwo .framer-1ng0tkn > :first-child, .framer-rlmwo .framer-225hdf > :first-child, .framer-rlmwo .framer-xo0xl9 > :first-child, .framer-rlmwo .framer-1t5bw2x > :first-child, .framer-rlmwo .framer-w8vdwa > :first-child, .framer-rlmwo .framer-18xard2 > :first-child, .framer-rlmwo .framer-4mqpuq > :first-child, .framer-rlmwo .framer-vpwr7o > :first-child, .framer-rlmwo .framer-18fn4o8 > :first-child, .framer-rlmwo .framer-112tijh > :first-child, .framer-rlmwo .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-rlmwo .framer-1yp8xwc > :last-child, .framer-rlmwo .framer-17lqxjv > :last-child, .framer-rlmwo .framer-9o2owm > :last-child, .framer-rlmwo .framer-1ng0tkn > :last-child, .framer-rlmwo .framer-225hdf > :last-child, .framer-rlmwo .framer-xo0xl9 > :last-child, .framer-rlmwo .framer-1t5bw2x > :last-child, .framer-rlmwo .framer-w8vdwa > :last-child, .framer-rlmwo .framer-18xard2 > :last-child, .framer-rlmwo .framer-4mqpuq > :last-child, .framer-rlmwo .framer-vpwr7o > :last-child, .framer-rlmwo .framer-18fn4o8 > :last-child, .framer-rlmwo .framer-112tijh > :last-child, .framer-rlmwo .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-rlmwo .framer-17lqxjv > *, .framer-rlmwo .framer-w8vdwa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rlmwo .framer-1ng0tkn > *, .framer-rlmwo .framer-112tijh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rlmwo .framer-psoogj > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-rlmwo .framer-psoogj > :first-child { margin-left: 0px; } .framer-rlmwo .framer-psoogj > :last-child { margin-right: 0px; } .framer-rlmwo .framer-225hdf > *, .framer-rlmwo .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rlmwo .framer-1t5bw2x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rlmwo .framer-18xard2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rlmwo .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (min-width: 576px) and (max-width: 991px) { .framer-rlmwo .hidden-qqyzon { display: none !important; } .${metadata.bodyClassName}-framer-rlmwo { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-rlmwo.framer-72rtr7 { width: 576px; } .framer-rlmwo .framer-p9zqaz { left: 0px; right: unset; } .framer-rlmwo .framer-1yp8xwc { gap: 40px; padding: 160px 20px 60px 20px; } .framer-rlmwo .framer-17lqxjv { gap: 40px; padding: 0px; } .framer-rlmwo .framer-psoogj { --border-bottom-width: 1px; --border-color: rgba(185, 190, 209, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; } .framer-rlmwo .framer-1uywckh, .framer-rlmwo .framer-u9emc7, .framer-rlmwo .framer-ee8yod, .framer-rlmwo .framer-vts9ei { width: 80%; } .framer-rlmwo .framer-112xx8p { padding: 0px; } .framer-rlmwo .framer-1bvspiv { gap: 20px; height: 247px; } .framer-rlmwo .framer-96y6ty { aspect-ratio: unset; height: 163px; left: -209px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 187px; } .framer-rlmwo .framer-uxx9lr { aspect-ratio: unset; height: 163px; left: -93px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 160px; } .framer-rlmwo .framer-1ur4w9m { aspect-ratio: unset; height: 163px; left: 87px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 158px; } .framer-rlmwo .framer-yf7dwg { aspect-ratio: unset; height: 163px; left: 265px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 142px; } .framer-rlmwo .framer-6nh1qo { aspect-ratio: unset; height: 163px; left: 932px; top: calc(50.20242914979759% - 163px / 2); transform: unset; width: 160px; } .framer-rlmwo .framer-1w2lmz4 { aspect-ratio: unset; height: 190px; left: 427px; top: calc(49.79757085020245% - 190px / 2); transform: unset; width: 168px; } .framer-rlmwo .framer-j4jga { aspect-ratio: unset; height: 163px; left: 615px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 146px; } .framer-rlmwo .framer-1121up6 { aspect-ratio: unset; height: 163px; left: 781px; top: calc(50.20242914979759% - 163px / 2); transform: unset; width: 131px; } .framer-rlmwo .framer-1j4nrae { padding: 60px 20px 0px 20px; } .framer-rlmwo .framer-xo0xl9 { gap: 16px; } .framer-rlmwo .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-rlmwo .framer-yuhlz0-container { height: 100px; } .framer-rlmwo .framer-crvn2r { padding: 0px 20px 0px 20px; } .framer-rlmwo .framer-1fvuriy, .framer-rlmwo .framer-zw4c9c, .framer-rlmwo .framer-1j4t30y, .framer-rlmwo .framer-1j7cmiz, .framer-rlmwo .framer-108hyr5-container { width: 100%; } .framer-rlmwo .framer-155kb7t { padding: 60px 20px 60px 20px; } .framer-rlmwo .framer-w8vdwa { gap: 32px; } .framer-rlmwo .framer-18xard2 { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); } .framer-rlmwo .framer-4mqpuq, .framer-rlmwo .framer-18fn4o8 { gap: 60px; padding: 60px 20px 60px 20px; } .framer-rlmwo .framer-vpwr7o { flex-direction: column; gap: 40px; } .framer-rlmwo .framer-7zxqpe, .framer-rlmwo .framer-nh2hnf { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-rlmwo .framer-18rnzgc { flex: none; width: 100%; } .framer-rlmwo .framer-112tijh { flex-direction: column; gap: 24px; } .framer-rlmwo .framer-k30bep-container { height: auto; width: 100%; } .framer-rlmwo .framer-jirvc7 { gap: 40px; padding: 40px 20px 40px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rlmwo .framer-1yp8xwc, .framer-rlmwo .framer-17lqxjv, .framer-rlmwo .framer-1bvspiv, .framer-rlmwo .framer-xo0xl9, .framer-rlmwo .framer-w8vdwa, .framer-rlmwo .framer-4mqpuq, .framer-rlmwo .framer-vpwr7o, .framer-rlmwo .framer-18fn4o8, .framer-rlmwo .framer-112tijh, .framer-rlmwo .framer-jirvc7 { gap: 0px; } .framer-rlmwo .framer-1yp8xwc > *, .framer-rlmwo .framer-17lqxjv > *, .framer-rlmwo .framer-vpwr7o > *, .framer-rlmwo .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rlmwo .framer-1yp8xwc > :first-child, .framer-rlmwo .framer-17lqxjv > :first-child, .framer-rlmwo .framer-xo0xl9 > :first-child, .framer-rlmwo .framer-w8vdwa > :first-child, .framer-rlmwo .framer-4mqpuq > :first-child, .framer-rlmwo .framer-vpwr7o > :first-child, .framer-rlmwo .framer-18fn4o8 > :first-child, .framer-rlmwo .framer-112tijh > :first-child, .framer-rlmwo .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-rlmwo .framer-1yp8xwc > :last-child, .framer-rlmwo .framer-17lqxjv > :last-child, .framer-rlmwo .framer-xo0xl9 > :last-child, .framer-rlmwo .framer-w8vdwa > :last-child, .framer-rlmwo .framer-4mqpuq > :last-child, .framer-rlmwo .framer-vpwr7o > :last-child, .framer-rlmwo .framer-18fn4o8 > :last-child, .framer-rlmwo .framer-112tijh > :last-child, .framer-rlmwo .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-rlmwo .framer-1bvspiv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-rlmwo .framer-1bvspiv > :first-child { margin-left: 0px; } .framer-rlmwo .framer-1bvspiv > :last-child { margin-right: 0px; } .framer-rlmwo .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rlmwo .framer-w8vdwa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rlmwo .framer-4mqpuq > *, .framer-rlmwo .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-rlmwo .framer-112tijh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-rlmwo[data-border=\"true\"]::after, .framer-rlmwo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7411.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-rlmwo\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7411.5,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationFonts,...ScrollToTopButtonFonts,...AvatarFonts,...ButtonsFonts,...PathlightFonts,...OpenAIFonts,...TeslaFonts,...SpotifyFonts,...AmazonFonts,...TodoistFonts,...TickerFonts,...BadgeFonts,...FeatureSectionFonts,...FeatureCardFonts,...CTALaunchFonts,...TestimonialFonts,...FAQAccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7411.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "6rCAAigB,IAAMA,GAAWC,GAAGA,EAA6nB,IAAMC,GAAWC,GAAgB,OAAOA,GAApB,WAA4D,IAAMC,GAAE,CAAC,GAAGC,GAAG,IAAIA,EAAE,EAAEA,GAAGA,EAAE,GAAG,EAM/vC,SAASC,GAAkBD,EAAED,EAAE,CAAC,OAAOA,EAAEC,GAAG,IAAID,GAAG,CAAC,CCNG,IAAMG,GAAW,CAACC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAGD,GAAG,EAAEE,EAAE,EAAED,IAAID,EAAE,EAAEC,GAAGD,EAAQE,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgBJ,EAAEC,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAET,GAAWU,EAAEH,EAAEC,CAAC,EAAEP,EAAEQ,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAEC,EAAEE,EAAE,CAAC,GAAGJ,IAAIC,GAAGC,IAAIE,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAEE,CAAC,EAAE,OAAOH,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAED,GAAWc,EAASb,CAAC,EAAEE,EAAEG,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAOC,EAAE,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQC,KAAKF,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEE,CAAC,GAAG,EAAE,QAAQA,CAAC,EAAE,IAAID,EAAEC,CAAC,EAAEF,EAAEE,CAAC,GAAG,GAASF,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAI,EAAE,EAAE,IAAIE,EAAE,OAAO,sBAAsBF,CAAC,EAAE,EAAEE,EAAE,OAAO,IAAI,EAAE,QAAQA,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKF,EAAEE,EAAE,CAAC,CAAC,IAAID,EAAEC,EAAE,CAAC,CAAC,EAAEF,EAAEE,EAAE,CAAC,CAAC,GAAG,OAAOD,CAAC,CCArkC,IAAIE,GAAE,CAAC,EAAE,OAAO,eAAeA,GAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,GAAE,QAAQ,UAAU,CAAC,EAAEA,GAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,GAAE,WAAWE,GAAEF,GAAE,QAAQG,GAAEH,GAAE,UCAlF,IAAMI,GAAE,EAAE,SAASC,GAAsBC,EAAEC,EAAEC,EAAE,CAAC,IAAMC,EAAE,KAAK,IAAIF,EAAEH,GAAE,CAAC,EAAE,OAAOM,GAAEF,EAAEF,EAAEG,CAAC,EAAEF,EAAEE,CAAC,CAAC,CAAC,IAAMF,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQI,GAAiB,CAACC,EAAEL,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAKK,EAAER,CAAC,GAAG,SAASS,GAAiBD,EAAE,EAAER,EAAE,CAAC,OAAOQ,EAAE,GAAGR,GAAG,GAAGQ,EAAE,GAAGR,GAAG,CAAC,CAAC,IAAMU,GAAO,CAAC,CAAC,UAAUF,EAAEL,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAKC,EAAED,GAAE,KAAK,KAAKE,EAAE,EAAE,GAAG,EAAE,EAAE,SAASM,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEH,GAAE,EAAEG,CAAC,EAAE,EAAE,IAAMG,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQT,EAAE,OAAO,CAAC,EAAQU,EAAE,EAAEV,EAAQW,EAAE,KAAK,KAAKR,EAAEJ,CAAC,EAAE,IAAUa,EAAEV,GAAiBC,EAAER,EAAEI,CAAC,EAAMc,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMT,EAAEQ,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEhB,GAAG,EAAE,KAAK,IAAI,CAACe,EAAED,EAAEd,CAAC,IAAIe,EAAED,EAAED,EAAEJ,GAAGH,EAAE,KAAK,IAAIA,EAAEN,CAAC,EAAEa,EAAE,KAAK,IAAIP,EAAEN,CAAC,QAAQgB,EAAEV,GAAG,EAAE,KAAK,IAAI,CAACQ,EAAER,CAAC,GAAGO,GAAGC,EAAED,EAAEJ,GAAGH,GAAG,OAAOA,GAAG,CAACM,EAAE,QAAQI,EAAEV,CAAC,EAAE,IAAMN,EAAMM,IAAJ,EAAMG,EAAEV,GAAsBiB,EAAEV,EAAEM,EAAE,OAAO,EAAQd,EAAE,KAAK,IAAIE,CAAC,GAAGU,EAAQT,EAAE,KAAK,IAAI,EAAEW,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKd,GAAGG,EAAEW,EAAE,iBAAiBL,GAAiBJ,EAAE,EAAES,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKX,EAAE,EAAE,SAASR,EAAE,EAAE,MAAM,EAAE,GAAG,MAAMI,EAAE,KAAK,cAAcC,EAAE,gBAAgBe,EAAE,aAAaT,EAAE,IAAIC,EAAE,IAAI,EAAE,aAAaE,EAAE,GAAG,UAAUC,CAAC,IAAI,CAACX,EAAEI,GAAE,GAAGJ,CAAC,EAAE,IAAMY,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQR,EAAE,OAAOA,CAAC,EAAQa,EAAcb,GAAYI,IAAT,QAAYJ,EAAEI,GAAY,IAAT,QAAYJ,EAAE,EAAQc,EAAgBd,GAAYI,IAAT,OAAW,EAAW,IAAT,QAAY,KAAK,IAAIA,EAAEJ,CAAC,EAAE,KAAK,IAAI,EAAEA,CAAC,EAAEI,EAAE,EAAMK,EAAE,EAAEjB,EAAQkB,EAAEV,EAAES,EAAQM,EAAWZ,IAAT,OAAWO,EAAEP,EAAEO,CAAC,EAAEF,EAAE,OAAOO,EAAEA,IAAIL,IAAID,EAAEM,EAAEf,GAAG,IAAMgB,EAAUhB,GAAG,CAACS,EAAE,KAAK,IAAI,CAACT,EAAEJ,CAAC,EAAQqB,EAAWjB,GAAGe,EAAEC,EAAUhB,CAAC,EAAQkB,EAAclB,GAAG,CAAC,IAAMN,EAAEsB,EAAUhB,CAAC,EAAQR,GAAEyB,EAAWjB,CAAC,EAAEQ,EAAE,KAAK,KAAK,IAAId,CAAC,GAAGY,EAAEE,EAAE,QAAQA,EAAE,KAAKO,EAAEvB,EAAC,EAAM2B,EAAMC,EAAQC,GAAmBrB,GAAG,CAAIa,EAAcL,EAAE,OAAO,IAAGW,EAAEnB,EAAEoB,EAAElB,GAAO,CAAC,KAAKM,EAAE,QAAQ,GAAGM,EAAgBN,EAAE,OAAO,EAAE,SAASf,GAAsBwB,EAAWjB,EAAEQ,EAAE,OAAO,EAAE,QAAQX,EAAE,UAAUe,EAAE,aAAaN,EAAE,UAAUC,CAAC,CAAC,EAAE,EAAE,OAAAc,GAAmB,CAAC,EAASrB,GAAG,CAAC,IAAIN,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAclB,CAAC,EAAEqB,GAAmBrB,CAAC,GAAcmB,IAAT,QAAYnB,EAAEmB,GAAGX,EAAE,iBAAiB,GAAYY,EAAEpB,EAAEmB,CAAC,IAAEX,EAAE,iBAAiB,GAAM,CAACd,GAAGwB,EAAclB,CAAC,EAASQ,EAAC,CAAC,EAAQZ,GAAE,GAASC,GAAE,IAAI,SAASyB,GAAqBtB,EAAE,CAAC,IAAI,EAAMR,EAAEI,GAAMD,EAAEK,EAAE,CAAC,EAAQ,EAAE,CAACL,EAAE,OAAO,EAAE,KAAM,CAACA,EAAE,MAAMH,EAAEK,IAAGF,EAAEK,EAAER,CAAC,EAAE,EAAE,KAAKG,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,EAAW,IAAT,QAAYA,EAAE,mBAAmB,EAAEH,GAAGA,GAAGI,GAAE,IAAMO,EAAEX,EAAEI,GAAE,OAAI,EAAE,SAAN,GAAc,EAAE,KAAKD,EAAE,OAAO,EAAQ,CAAC,UAAU,EAAE,SAASQ,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCA1iD,IAAMoB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,IAAUK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAAS,GAAG,CAACF,GAAE,KAAKL,EAAE,CAAC,EAAEG,GAAE,IAAIC,GAAkBJ,EAAE,CAAC,EAAEC,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMQ,GAAE,IAAI,IAAIC,EAAC,EAAwlB,IAAMC,GAAc,CAACC,EAAE,IAAI,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,SAAS,IAAI,CAAC,EAAE,SAAU,aAAa,IAAI,CAAC,GAAG,CAACA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,OAAO,cAAc,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,CAAC,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAAsgG,SAASI,GAAgBC,EAAE,EAAE,CAAC,IAAI,EAAE,OAAc,OAAOA,GAAlB,SAAuB,IAAW,EAAE,EAAEA,CAAC,KAAb,MAA0B,IAAT,SAAa,EAAEA,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAE,EAAEA,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo6H,SAASC,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,KAAKC,KAAKC,KAAKC,IAAI,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAEP,EAAE,OAAO,OAAO,CAAC,KAAKG,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAASL,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaR,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAES,GAAET,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEG,EAAEO,EAAET,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQI,EAAEX,EAAE,OAA8C,GAAjCU,GAAGC,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMF,EAAEV,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BZ,GAAE,UAAU,GAAGY,EAAE,CAAC,GAAK,CAAC,UAAUb,EAAE,mBAAmBO,CAAC,EAAEN,EAAQH,GAA+BE,GAAE,WAAYO,GAAG,EAAQJ,GAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,GAAQM,GAAES,EAAEV,EAAC,EAAE,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAEE,IAAOI,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,IAAGgB,EAAEhB,EAAC,EAAE,QAASM,GAAEC,EAAC,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMe,EAAEhB,EAAaa,EAAEL,EAAEI,EAA8Bb,GAAE,SAAS,OAAO,CAAC,EAAQkB,GAAEX,EAAaU,CAAC,EAAEX,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEY,EAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKf,IAAGA,EAAE,UAAUc,EAAEd,EAAE,mBAAmB,YAAY,IAAI,QAAkDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMK,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAE,EAAE,CAAC,KAAK,EAAE,OAAOC,EAAE,OAAOI,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMC,EAAEoB,GAAgB1B,CAAC,EAAQO,EAAE,IAAI,QAAcoB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEH,EAAE,IAAIP,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQU,EAAG,GAAGV,EAAE,eAAe,CAAC,IAAMU,EAAE,EAAEV,CAAC,EAAE4B,GAAElB,CAAC,EAAEH,EAAE,IAAIP,EAAE,OAAOU,CAAC,EAAEC,EAAE,UAAUX,EAAE,MAAM,OAAUU,IAAGA,EAAEV,CAAC,EAAEO,EAAE,OAAOP,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQW,EAAE,IAAI,qBAAqBgB,EAAqB,CAAC,KAAK,EAAE,WAAW1B,EAAE,UAAqB,OAAOI,GAAlB,SAAoBA,EAAEmB,GAAEnB,CAAC,CAAC,CAAC,EAAE,OAAAC,EAAE,QAASN,GAAGW,EAAE,QAAQX,CAAC,CAAE,EAAQ,IAAIW,EAAE,WAAW,CAAC,CAAC,IAAMkB,GAAE,IAAI,QAAYC,GAAE,SAASC,GAAe/B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAUU,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMV,EAAE,OAAOU,CAAC,EAAE,OAAOV,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAASgC,GAAa,CAAC,OAAOhC,EAAE,YAAY,EAAE,cAAc,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE4B,GAAE,IAAI7B,CAAC,KAAjB,MAA8BC,IAAT,QAAkBA,EAAE,QAAS,GAAG,CAAC,EAAE,CAAC,OAAOD,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO+B,GAAe/B,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASiC,GAAUjC,EAAE,CAACA,EAAE,QAAQgC,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,GAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAcnC,EAAE,EAAE,CAAC8B,IAAGI,GAAqB,EAAE,IAAM,EAAER,GAAgB1B,CAAC,EAAE,SAAE,QAASA,GAAG,CAAC,IAAIU,EAAEmB,GAAE,IAAI7B,CAAC,EAAMU,IAAGA,EAAE,IAAI,IAAImB,GAAE,IAAI7B,EAAEU,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8BoB,IAAE,QAAQ9B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAAC,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEmB,GAAE,IAAI7B,CAAC,EAA8BU,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoCoB,IAAE,UAAU9B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMoC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMrC,EAAE,CAAC,MAAMuC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAKvC,EAAE,YAAYA,CAAC,EAAEoC,GAAE,QAASpC,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAEuC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAaxC,EAAE,CAAC,OAAAoC,GAAE,IAAIpC,CAAC,EAAEqC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOpC,CAAC,EAAE,CAACoC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOzC,EAAE,EAAE,CAAC,OAAO4B,GAAE5B,CAAC,EAAEwC,GAAaxC,CAAC,EAAEmC,GAAcnC,EAAE,CAAC,CAAC,CAAohK,SAAS0C,GAAqBC,EAAE,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBD,EAAE,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASF,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAASP,EAAGG,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBD,EAAE,YAAYG,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAAC,EAAE,EAAEP,GAAkBD,EAAE,YAAYQ,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAACT,EAAE,EAAE,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,EAAE,EAAEJ,GAAqBC,EAAE,EAAEG,CAAC,EAAE,EAAQO,GAAG,CAAC,SAASV,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAWT,EAAE,aAAa,CAAC,EAAQI,EAAEK,GAAWT,EAAE,WAAW,CAAC,EAAE,OAAAA,EAAE,iBAAiB,eAAeG,CAAC,EAAEH,EAAE,iBAAiB,eAAeI,CAAC,EAAQ,IAAI,CAACJ,EAAE,oBAAoB,eAAeG,CAAC,EAAEH,EAAE,oBAAoB,eAAeI,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAASX,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAAC,EAAE,EAAET,GAAqBC,EAAE,WAAWQ,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcC,GAAG,CAAC,EAAE,EAAEhB,GAAqBC,EAAE,aAAae,CAAC,EAAEF,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAZ,EAAE,iBAAiB,cAAcc,CAAa,EAAQ,IAAI,CAACd,EAAE,oBAAoB,cAAcc,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQI,GAAG,CAAC,OAAOd,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQM,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECAh9lB,IAAME,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,GAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,EAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA+BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,GAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,GAAalB,IAAY,QAAQA,IAAY,QAAcd,GAAOiC,GAAe,CAAC,EAAQC,EAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,GAAOkC,CAAW,EAA6BG,GAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,EAAc,CAAC,EAA4BC,EAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,EAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,IAAaW,GAAK,SAAQK,EAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,IAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,IAAtLd,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,YAAYA,GAAY,CAAC,EAAE,QAAQ,UAAUA,GAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,GAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,GAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,GAAIC,GAAKC,GAAKC,GAAK,IAAIC,GAAQL,IAAQ,IAAGK,GAAK1B,GAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,GAAK1B,GAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,GAAWqC,GAAIF,EAAM,SAAS,MAAME,KAAM,OAAO,OAAOA,GAAI,MAAM,OAAO,OAAOpC,IAAYqC,GAAKH,EAAM,SAAS,MAAMG,KAAO,OAAO,OAAOA,GAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,GAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAKJ,EAAM,SAAS,MAAMI,KAAO,OAAO,OAAOA,GAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,EAAYsB,IAAKvB,EAAc,CAAC,GAAGA,EAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,KAAa,CAAC,IAAIT,GAAIC,GAAKC,GAAKC,GAAKC,GAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,GAAWqC,GAAIF,EAAM,SAAS,MAAME,KAAM,OAAO,OAAOA,GAAI,MAAM,OAAO,OAAOpC,IAAYqC,GAAKH,EAAM,SAAS,MAAMG,KAAO,OAAO,OAAOA,GAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAKJ,EAAM,SAAS,MAAMI,KAAO,OAAO,OAAOA,GAAK,MAAM,MAAMvC,GAAWwC,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,MAAM,OAAO,OAAOvC,IAAYwC,GAAKN,EAAM,SAAS,MAAMM,KAAO,OAAO,OAAOA,GAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAE,EAAI,IAAME,GAAe9B,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,GAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,GAAQzC,EAAO,IAAI,EAAQ0C,GAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,EAAS,CAAC,IAAMsD,EAASC,GAAU7C,EAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,IAAgB,CAAC5D,GAAe,OAAAoE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,EAAY,CAAC,EAAEA,EAAYsC,EAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,GAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,IAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,IAAOxE,GAAa8D,GAAK,SAASU,GAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,GAAO,IAAI2E,GAAK,OAAO,CAAE,CAAC,EAAgB,IAAMY,GAAcvD,GAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,EAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,EAAgBuE,GAAS,mBAAmBN,qBAAgChE,MAAcmE,yBAAqCF,yBAAqCC,sBAAgClE,MAAcqE,OAAmC,OAAI7D,GAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIW,GAAU,SAAuB,EAAM0D,EAAO,GAAG,CAAC,IAAIhB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUkF,GAAcxB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK1D,IAAY,SAASkF,GAAcxB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,GAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAW,WAAW,EAAE,aAAa,IAAI,CAACyC,GAAQ,QAAQ,GAAQI,GAAa,SAASA,GAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,GAAeC,CAAa,CAAC,CAAC,CAAC,CAAC,EAArwC,EAAM,UAAU,CAAC,MAAMmD,GAAkB,SAAS,CAAe/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAgBhC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA09B,CAA2BlG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BmG,GAAoBnG,GAAO,CAAC,MAAM,CAAC,KAAKoG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMR,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBG,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDT,GAAM,CAACY,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECzB7vK,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,gBAAgBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,ytGAAytG,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,mDAAmD,qGAAqG,4LAA4L,EAKxnMC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECLjC,IAAMI,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,gBAAgBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,onIAAonI,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,qGAAqG,4LAA4L,EAKthOC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECLjC,IAAMI,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,iBAAiBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,okCAAokC,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,sGAAsG,6LAA6L,EAKx+HC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECLhC,IAAMI,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,gBAAgBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,uxQAAuxQ,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,mDAAmD,qGAAqG,8LAA8L,EAK5rWC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECLpC,IAAMI,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,iBAAiBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,sqIAAsqI,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,sGAAsG,2LAA2L,EAK1kOC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECLlC,IAAMI,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAwB,CAAC,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5Cb,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAI,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAC,CAAQ,EAAEC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAArB,GAAY,QAAAY,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBJ,EAAS,KAAK,GAAG,EAAET,EAAU,iBAAuBc,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGnB,GAA4CgB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQhB,EAAQ,QAAQO,EAAS,aAAa,IAAIH,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUa,EAAG,eAAef,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBY,EAAKE,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUmB,EAAG,gBAAgBxB,CAAS,EAAE,mBAAmB,YAAY,iBAAiBkB,EAAiB,SAAS,YAAY,IAAIZ,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWc,EAAW,SAAuBQ,EAAKI,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,unLAAunL,WAAWL,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,qGAAqG,4LAA4L,EAKxhRC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,ECNpC,SAASI,IAAa,CAAIC,GAAQA,EAAO,SAAS,CAAC,IAAI,EAAE,SAAS,QAAQ,CAAC,CAAG,CAK1O,SAARC,GAAmCC,EAAM,CAAC,IAAIC,EAAO,GAAGD,EAAM,YAAY,UAAWC,EAAqBC,EAAK,MAAM,CAAC,MAAM,CAAC,MAAMF,EAAM,YAAY,OAAOA,EAAM,aAAa,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,gBAAgBA,EAAM,KAAK,aAAaA,EAAM,cAAc,GAAGA,EAAM,mBAAmBA,EAAM,oBAAoBA,EAAM,uBAAuBA,EAAM,qBAAqB,GAAGA,EAAM,WAAW,GAAGA,EAAM,KAAK,EAAE,QAAQH,GAAY,SAAuB,EAAM,MAAM,CAAC,MAAM,6BAA6B,KAAK,OAAO,QAAQ,YAAY,YAAYG,EAAM,KAAK,OAAO,OAAOA,EAAM,KAAK,MAAM,iBAAiB,QAAQ,kBAAkB,QAAQ,MAAM,CAAC,MAAMA,EAAM,KAAK,KAAK,OAAOA,EAAM,KAAK,IAAI,EAAE,SAAS,CAAeE,EAAK,OAAO,CAAC,EAAE,YAAY,CAAC,EAAgBA,EAAK,OAAO,CAAC,EAAE,cAAc,CAAC,EAAgBA,EAAK,OAAO,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAO,CAAC,IAAIC,EAAIC,EAAKC,EAAK,IAAIC,GAAOH,EAAIH,EAAM,UAAU,MAAMG,IAAM,OAAO,OAAOA,EAAI,CAAC,EAAKG,IAAU,GAAAF,EAAKJ,EAAM,SAAS,MAAMI,IAAO,SAAcA,EAAK,OAAU,GAAAC,EAAKL,EAAM,SAAS,MAAMK,IAAO,SAAcA,EAAK,UAAUC,EAAoBC,GAAaD,EAAM,CAAC,MAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,GAAGN,EAAM,KAAK,CAAC,CAAC,GAAGC,EAAqBC,EAAK,MAAM,CAAC,QAAQL,GAAY,MAAMG,EAAM,MAAM,SAASM,CAAK,CAAC,EAAG,IAAIE,EAAOP,EAAO,OAAGD,EAAM,UAASQ,EAAqBN,EAAKO,EAAO,IAAI,CAAC,WAAW,CAAC,MAAMT,EAAM,QAAQ,UAAU,EAAE,SAAS,CAAC,MAAMA,EAAM,QAAQ,UAAU,EAAE,QAAQ,GAAM,WAAWA,EAAM,QAAQ,WAAW,MAAMA,EAAM,MAAM,SAASC,CAAM,CAAC,GAAUO,CAAO,CAAET,GAAkB,YAAY,uBAAuB,IAAMW,GAAe,CAAC,WAAW,IAAI,WAAW,EAAE,EAAEC,GAAoBZ,GAAkB,CAAC,WAAW,CAAC,KAAKa,EAAY,KAAK,aAAa,UAAU,QAAQ,CAAC,UAAU,QAAQ,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,wBAAwB,GAAK,MAAM,QAAQ,EAAE,OAAO,CAAC,KAAKA,EAAY,kBAAkB,MAAM,SAAS,YAAY,6BAA6B,OAAOZ,EAAM,CAAC,OAAOA,EAAM,aAAa,QAAS,CAAC,EAAE,KAAK,CAAC,KAAKY,EAAY,MAAM,aAAa,UAAU,SAAS,GAAK,OAAOZ,EAAM,CAAC,OAAOA,EAAM,aAAa,SAAU,CAAC,EAAE,KAAK,CAAC,KAAKY,EAAY,OAAO,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,CAAC,EAAE,OAAOZ,EAAM,CAAC,OAAOA,EAAM,aAAa,SAAU,CAAC,EAAE,OAAO,CAAC,KAAKY,EAAY,YAAY,aAAa,GAAG,UAAU,gBAAgB,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,gBAAgB,iBAAiB,mBAAmB,kBAAmB,EAAE,YAAY,CAAC,KAAK,KAAK,KAAK,IAAI,EAAE,IAAI,EAAE,OAAOZ,EAAM,CAAC,OAAOA,EAAM,aAAa,SAAU,CAAC,EAAE,QAAQ,CAAC,KAAKY,EAAY,OAAO,aAAaF,GAAe,SAAS,GAAK,YAAY,gBAAgB,KAAK,SAAS,SAAS,CAAC,WAAW,CAAC,KAAKE,EAAY,OAAO,aAAaF,GAAe,WAAW,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,WAAW,CAAC,KAAKE,EAAY,OAAO,aAAaF,GAAe,WAAW,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,WAAW,CAAC,KAAKE,EAAY,UAAU,CAAC,CAAC,CAAC,CAAC,ECJ1mB,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,GAAkCC,GAAwBF,EAAU,EAAQG,GAAuBJ,EAASK,EAAiB,EAAQC,GAAYN,EAASO,EAAM,EAAQC,GAAaR,EAASS,EAAO,EAAQC,GAAYC,GAAOC,EAAK,EAAQC,GAAgBF,GAAOG,EAAO,GAAG,EAAQC,GAAef,EAASgB,EAAS,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAWnB,EAASoB,EAAK,EAAQC,GAAarB,EAASsB,EAAO,EAAQC,GAAYvB,EAASwB,EAAM,EAAQC,GAAazB,EAAS0B,EAAO,EAAQC,GAAY3B,EAAS4B,EAAM,EAAQC,GAAoBlB,GAAOG,EAAO,OAAO,EAAQgB,GAAW9B,EAAS+B,EAAK,EAAQC,EAAgBrB,GAAOsB,CAAS,EAAQC,GAAevB,GAAOwB,EAAQ,EAAQC,GAAoBpC,EAASqC,EAAc,EAAQC,GAAiBtC,EAASuC,EAAW,EAAQC,GAAexC,EAASyC,EAAS,EAAQC,GAAiB1C,EAAS2C,EAAW,EAAQC,GAAkB5C,EAAS6C,EAAY,EAAQC,GAAY9C,EAAS+C,EAAM,EAAqE,IAAMC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,4CAA4C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,IAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAmB,CAACxB,EAAE,IAAI,oBAAoB,IAAUyB,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQ5E,GAAY,EAAK,EAAQyF,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQ7B,EAAG8B,GAAkB,WAAW,EAAQC,EAAWF,EAAO,IAAI,EAAQG,EAAWH,EAAO,IAAI,EAAQI,EAAY,IAAS9F,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASqF,CAAW,EAAtD,GAAyFU,EAAa,IAAS/F,GAAU,EAAiBqF,IAAc,YAAtB,GAAmEW,EAAIL,GAAkB,WAAW,EAAQM,EAAWP,EAAO,IAAI,EAAQQ,EAAOC,GAAU,EAAQC,EAAa,IAASpG,GAAU,EAAiBqF,IAAc,YAAtB,GAAmEgB,GAAIV,GAAkB,WAAW,EAAQW,EAAIX,GAAkB,WAAW,EAAQY,EAAWb,EAAO,IAAI,EAAQc,GAAIb,GAAkB,WAAW,EAAQc,GAAWf,EAAO,IAAI,EAAQgB,GAAa,IAAS1G,GAAU,EAAiB,EAAC,YAAY,YAAY,WAAW,EAAE,SAASqF,CAAW,EAAlE,GAAqGsB,GAAIhB,GAAkB,WAAW,EAAQiB,EAAWlB,EAAO,IAAI,EAAQmB,GAAIlB,GAAkB,WAAW,EAAQmB,GAAWpB,EAAO,IAAI,EAAQqB,GAAIpB,GAAkB,WAAW,EAAQqB,GAAWtB,EAAO,IAAI,EAAQuB,GAAsBC,EAAM,EAAQC,GAAsB,CAAa1C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAA2C,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApH,EAAiB,EAAE,SAAsB,EAAMqH,EAAY,CAAC,GAAG7C,GAA4CuC,GAAgB,SAAS,CAAc,EAAMO,EAAO,IAAI,CAAC,GAAG5C,EAAU,UAAU6C,EAAGxH,GAAkB,GAAGkH,GAAsB,gBAAgB1C,CAAS,EAAE,IAAIL,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAc6C,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,MAAM,CAAC,EAAE,kBAAkBlF,EAAkB,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQyH,EAAe,UAAU,UAAUtH,GAAU,SAAS,EAAE,QAAQsH,EAAe,UAAU,UAAUrH,GAAW,SAAS,EAAE,kBAAkBsH,EAAgC,UAAU1H,EAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQyH,EAAe,UAAU,SAAStH,GAAU,QAAQ,EAAE,QAAQsH,EAAe,UAAU,SAASrH,GAAW,QAAQ,EAAE,kBAAkBsH,EAAgC,SAAS1H,EAAkB,CAAC,CAAC,EAAE,SAAsBkH,EAAKS,EAAU,CAAC,QAAQF,EAAe,UAAU,SAAStH,GAAU,QAAQ,EAAE,UAAU,0BAA0B,wBAAwB,SAAS,GAAGuD,EAAG,QAAQ+D,EAAe,UAAU,SAASrH,GAAW,QAAQ,EAAE,aAAa,GAAK,IAAIsF,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBgC,EAAgC,SAAS1H,EAAkB,EAAE,SAAsBkH,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,EAAE,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKU,GAAkC,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,IAAInC,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,EAAE,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAY,GAAgBuB,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,uDAAuD,aAAa,GAAK,SAAsBT,EAAKW,GAAkB,CAAC,WAAW,UAAU,OAAO,CAAC,EAAE,QAAQ,CAAC,WAAW,IAAI,WAAW,GAAG,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,KAAK,wEAAwE,OAAO,OAAO,KAAK,CAAC,MAAM,qEAAqE,KAAK,GAAG,OAAO,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,OAAO,GAAG,iBAAiB,GAAG,cAAc,GAAM,iBAAiB,GAAG,cAAc,GAAG,eAAe,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEjC,EAAa,GAAgBsB,EAAKY,GAAK,CAAC,KAAK,QAAQ,aAAa,GAAM,SAAsBZ,EAAKG,EAAO,EAAE,CAAC,UAAU,4CAA4C,mBAAmB,cAAc,KAAK,cAAc,SAAS/G,EAAU,CAAC,CAAC,CAAC,EAAe,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGuF,EAAI,KAAK,OAAO,IAAIC,EAAK,SAAS,CAACH,EAAY,GAAgBuB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQuC,EAAe,UAAU,UAAUjH,GAAW,SAAS,EAAE,QAAQiH,EAAe,UAAU,UAAUhH,GAAW,SAAS,CAAC,CAAC,EAAE,SAAsB,EAAM4G,EAAO,IAAI,CAAC,QAAQI,EAAe,UAAU,SAASjH,GAAW,QAAQ,EAAE,UAAU,4CAA4C,wBAAwB,SAAS,mBAAmB,qBAAqB,QAAQiH,EAAe,UAAU,SAAShH,GAAW,QAAQ,EAAE,KAAK,qBAAqB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcyG,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEvB,EAAY,GAAgBuB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAASjH,GAAW,SAAS,EAAE,QAAQiH,EAAe,UAAU,SAAShH,GAAW,SAAS,CAAC,CAAC,EAAE,SAAsB,EAAM4G,EAAO,IAAI,CAAC,QAAQI,EAAe,UAAU,UAAUjH,GAAW,QAAQ,EAAE,UAAU,6CAA6C,wBAAwB,UAAU,mBAAmB,oBAAoB,QAAQiH,EAAe,UAAU,UAAUhH,GAAW,QAAQ,EAAE,KAAK,oBAAoB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcyG,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAKY,GAAK,CAAC,KAAK,gCAAgC,SAAsBZ,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,GAAK,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS9G,GAAW,QAAQ,EAAE,QAAQ8G,EAAe,UAAU,SAAS7G,GAAW,QAAQ,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQ6G,EAAe,UAAU,SAAS9G,GAAW,SAAS,EAAE,QAAQ8G,EAAe,UAAU,SAAS7G,GAAW,SAAS,CAAC,EAAE,UAAU,CAAC,cAAc,GAAK,wBAAwB,SAAS,QAAQ6G,EAAe,UAAU,SAAS9G,GAAW,QAAQ,EAAE,QAAQ8G,EAAe,UAAU,SAAS7G,GAAW,QAAQ,CAAC,CAAC,EAAE,SAAsB,EAAMyG,EAAO,EAAE,CAAC,QAAQI,EAAe,UAAU,SAAS9G,GAAW,QAAQ,EAAE,UAAU,8BAA8B,wBAAwB,SAAS,mBAAmB,QAAQ,QAAQ8G,EAAe,UAAU,SAAS7G,GAAW,QAAQ,EAAE,KAAK,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcsG,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKc,GAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,uBAAuB,EAAE,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcA,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKc,GAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,uBAAuB,EAAE,KAAK,UAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKe,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,cAAc,IAAI;AAAA;AAAA;AAAA,EAA2R,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS3G,GAAW,QAAQ,EAAE,SAAsBoG,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,QAAQO,EAAe,UAAU,SAAS1G,GAAW,QAAQ,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQ0G,EAAe,UAAU,UAAU3G,GAAW,SAAS,EAAE,QAAQ2G,EAAe,UAAU,UAAU1G,GAAW,SAAS,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQ0G,EAAe,UAAU,UAAU3G,GAAW,QAAQ,EAAE,QAAQ2G,EAAe,UAAU,UAAU1G,GAAW,QAAQ,CAAC,CAAC,EAAE,SAAsBmG,EAAKc,GAAS,CAAC,sBAAsB,GAAK,QAAQP,EAAe,UAAU,UAAU3G,GAAW,QAAQ,EAAE,SAAsBoG,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,QAAQO,EAAe,UAAU,UAAU1G,GAAW,QAAQ,EAAE,KAAK,aAAa,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemG,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAASxG,GAAW,QAAQ,EAAE,QAAQwG,EAAe,UAAU,SAAS1G,GAAW,QAAQ,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQ0G,EAAe,UAAU,SAASxG,GAAW,SAAS,EAAE,QAAQwG,EAAe,UAAU,SAAS1G,GAAW,SAAS,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQ0G,EAAe,UAAU,SAASxG,GAAW,QAAQ,EAAE,QAAQwG,EAAe,UAAU,SAAS1G,GAAW,QAAQ,CAAC,CAAC,EAAE,SAAsBmG,EAAKc,GAAS,CAAC,sBAAsB,GAAK,QAAQP,EAAe,UAAU,SAASxG,GAAW,QAAQ,EAAE,SAAsBiG,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,QAAQO,EAAe,UAAU,SAAS1G,GAAW,QAAQ,EAAE,KAAK,kBAAkB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemG,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAStG,GAAY,QAAQ,EAAE,QAAQsG,EAAe,UAAU,SAAS1G,GAAW,QAAQ,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,QAAQ0G,EAAe,UAAU,QAAQtG,GAAY,SAAS,EAAE,QAAQsG,EAAe,UAAU,QAAQ1G,GAAW,SAAS,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQ0G,EAAe,UAAU,SAAStG,GAAY,QAAQ,EAAE,QAAQsG,EAAe,UAAU,SAAS1G,GAAW,QAAQ,CAAC,CAAC,EAAE,SAAsB,EAAMsG,EAAO,IAAI,CAAC,QAAQI,EAAe,UAAU,UAAUtG,GAAY,QAAQ,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,eAAe,QAAQsG,EAAe,UAAU,UAAU1G,GAAW,QAAQ,EAAE,KAAK,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAS,CAAcmG,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,MAAM9G,GAAY,CAAC,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,EAAE,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,MAAM9G,GAAY,CAAC,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,EAAE,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,MAAM9G,GAAY,CAAC,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,EAAE,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,MAAM9G,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKc,GAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKiB,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BlB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,oBAAoB,CAAC,EAAE,SAAsBgC,EAAKK,EAA0B,CAAC,SAAsBL,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQuC,EAAe,UAAU,UAAUjG,GAAY,QAAQ,EAAE,QAAQiG,EAAe,UAAU,UAAUhH,GAAW,QAAQ,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQgH,EAAe,UAAU,SAASjG,GAAY,SAAS,EAAE,QAAQiG,EAAe,UAAU,SAAShH,GAAW,SAAS,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQgH,EAAe,UAAU,UAAUjG,GAAY,QAAQ,EAAE,QAAQiG,EAAe,UAAU,UAAUhH,GAAW,QAAQ,CAAC,CAAC,EAAE,SAAsByG,EAAKS,EAAU,CAAC,QAAQF,EAAe,UAAU,UAAUjG,GAAY,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,mBAAmB,QAAQiG,EAAe,UAAU,UAAUhH,GAAW,QAAQ,EAAE,KAAK,mBAAmB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByG,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUkD,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBlB,EAAKmB,GAAQ,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,QAAQ,YAAY,UAAUD,EAAc,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExC,EAAa,GAAgBsB,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,cAAc,KAAK,cAAc,SAAsB,EAAMoB,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcpB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE,SAAsBgC,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,kBAAkB9G,CAAkB,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS9F,GAAY,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQgG,EAAe,UAAU,SAAS9F,GAAY,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,SAAS9F,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQuC,EAAe,UAAU,UAAU9G,GAAW,SAAS,EAAE,QAAQ8G,EAAe,UAAU,UAAU7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQgG,EAAe,UAAU,UAAU9G,GAAW,QAAQ,EAAE,QAAQ8G,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,UAAU9G,GAAW,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,cAAc,QAAQ8G,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgBiB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS3F,GAAY,SAAS,EAAE,QAAQ2F,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,CAAC,EAAE,SAAsByF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,UAAU3F,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,+BAA+B,wBAAwB,UAAU,mBAAmB,cAAc,QAAQ2F,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS9F,GAAY,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQgG,EAAe,UAAU,UAAU9F,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,QAAQ8F,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,SAAS9F,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQuC,EAAe,UAAU,UAAUzF,GAAY,SAAS,EAAE,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQgG,EAAe,UAAU,SAASzF,GAAY,QAAQ,EAAE,QAAQyF,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,SAASzF,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQyF,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQuC,EAAe,UAAU,UAAUzF,GAAY,SAAS,EAAE,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQgG,EAAe,UAAU,UAAUzF,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,UAAUzF,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,cAAc,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgBiB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAStH,GAAU,SAAS,EAAE,QAAQsH,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,CAAC,EAAE,SAAsByF,EAAKqB,GAAY,CAAC,yBAAyB,GAAK,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,UAAUtH,GAAU,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,+BAA+B,wBAAwB,UAAU,mBAAmB,cAAc,QAAQsH,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAAS9F,GAAY,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQgG,EAAe,UAAU,SAAS9F,GAAY,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,QAAQ9F,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,cAAc,QAAQ8F,EAAe,UAAU,QAAQ7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,QAAQjG,CAAkB,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQuC,EAAe,UAAU,SAASzF,GAAY,SAAS,EAAE,QAAQyF,EAAe,UAAU,SAAS7F,EAAY,SAAS,EAAE,kBAAkB8F,EAAgC,SAASjG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQgG,EAAe,UAAU,UAAUzF,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBsF,EAAKqB,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQd,EAAe,UAAU,UAAUzF,GAAY,QAAQ,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,cAAc,QAAQyF,EAAe,UAAU,UAAU7F,EAAY,QAAQ,EAAE,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB8F,EAAgC,UAAUjG,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKsB,GAAoB,CAAC,kBAAkB,CAAC,WAAWtG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeG,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,GAAG8D,GAAI,KAAK,SAAS,IAAIT,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcyB,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKc,GAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,IAAI,EAAE,EAAE,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,SAAsBgC,EAAKuB,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcvB,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKwB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKyB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAK0B,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAK2B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAK4B,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKK,EAA0B,CAAC,SAAsBL,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAK6B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAG5C,EAAI,KAAK,eAAe,IAAIC,EAAK,SAAS,CAAcc,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcA,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAImE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBc,EAAK+B,GAAM,CAAC,UAAU,sEAAsE,UAAU,eAAe,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,wEAAwE,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhI,EAAW,EAAE,sBAAsB,GAAK,gBAAgBoB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI8D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBc,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,KAAK,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI8D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBc,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,KAAK,kBAAkB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWvG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKiC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,+VAA+V,UAAU/H,GAAY,CAAC,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,EAAE,EAAE,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWvG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKiC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yMAAoM,UAAU/H,GAAY,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,UAAU,iCAAiC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWvG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKiC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0OAA0O,UAAU/H,GAAY,CAAC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,EAAE,EAAE,UAAU,gCAAgC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,GAAGb,GAAI,KAAK,WAAW,IAAIC,GAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcY,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIqE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBY,EAAK+B,GAAM,CAAC,UAAU,sEAAsE,UAAU,WAAW,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,wEAAwE,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEhD,EAAa,GAAgBiB,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhI,EAAW,EAAE,sBAAsB,GAAK,gBAAgBoB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIgE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBY,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,KAAK,uBAAuB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIgE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBY,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,KAAK,kBAAkB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,KAAK,sBAAsB,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWrG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,oBAAoB,mBAAmB,gKAAgK,aAAa,qBAAqB,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWpG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBF,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,WAAW,mBAAmB,sHAAsH,aAAa,8BAA8B,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWvG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,SAAS,mBAAmB,4JAA4J,aAAa,sBAAsB,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWnG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBH,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,UAAU,mBAAmB,gKAAgK,aAAa,gBAAgB,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,WAAW,mBAAmB,gJAAgJ,aAAa,qCAAqC,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWjG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBL,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKkC,GAAY,CAAC,WAAW,wEAAwE,WAAW,UAAU,mBAAmB,wIAAwI,aAAa,0BAA0B,OAAO,OAAO,eAAe,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE7C,GAAa,GAAgBW,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWpG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,qEAAqE,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKmC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,GAAGV,GAAI,KAAK,UAAU,IAAIC,EAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcS,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBS,EAAK+B,GAAM,CAAC,UAAU,sEAAsE,UAAU,UAAU,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,wEAAwE,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhI,EAAW,EAAE,sBAAsB,GAAK,gBAAgBoB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAImE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kCAAkC,MAAM,CAAC,OAAO,EAAE,KAAK,kCAAkC,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAc,EAAMoB,GAAgB,CAAC,kBAAkB,CAAC,WAAWjG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWpG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,KAAK,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWnG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBL,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMoB,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBf,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWjG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBP,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,KAAK,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBgC,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMoB,GAAgB,CAAC,kBAAkB,CAAC,WAAWnF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBlB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAW9F,EAAY,EAAE,sBAAsB,GAAK,gBAAgBV,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,KAAK,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAW7F,EAAY,EAAE,sBAAsB,GAAK,gBAAgBX,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,GAAGR,GAAI,KAAK,cAAc,IAAIC,GAAK,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcO,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI0E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBO,EAAK+B,GAAM,CAAC,UAAU,sEAAsE,UAAU,eAAe,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,wEAAwE,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhI,EAAW,EAAE,sBAAsB,GAAK,gBAAgBoB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIqE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBO,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iCAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kCAA6B,MAAM,CAAC,OAAO,EAAE,KAAK,kCAA6B,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAKoB,GAAgB,CAAC,kBAAkB,CAAC,WAAW7F,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAImE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBO,EAAKK,EAA0B,CAAC,SAAsBL,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBgC,EAAK8B,EAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIrC,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBO,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKoC,GAAY,CAAC,WAAW,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,iDAAiD,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,8IAA+I,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,GAAGN,GAAI,KAAK,MAAM,IAAIC,GAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcK,EAAKK,EAA0B,CAAC,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAW3G,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI4E,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBK,EAAK+B,GAAM,CAAC,UAAU,sEAAsE,UAAU,MAAM,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,wEAAwE,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKgC,GAAe,CAAC,kBAAkB,CAAC,WAAWhI,EAAW,EAAE,sBAAsB,GAAK,gBAAgBoB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIuE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBK,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6BAAwB,MAAM,CAAC,OAAO,EAAE,KAAK,6BAAwB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2BAA2B,EAAE,UAAU,CAAC,MAAM,wCAAwC,EAAE,UAAU,CAAC,MAAM,2BAA2B,CAAC,EAAE,SAAsBgC,EAAKK,EAA0B,CAAC,MAAM,0CAA0C,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWvG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKqC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAK8B,EAAgB,CAAC,kBAAkB,CAAC,WAAWpG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0E,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKmC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKK,EAA0B,CAAC,MAAM,QAAQ,SAAsBL,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKM,EAAkB,CAAC,WAAWtC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKsC,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,UAAUI,EAAGxH,GAAkB,GAAGkH,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyC,GAAI,CAAC,kFAAkF,IAAInG,GAAS,8IAA8I,gFAAgF,sVAAsV,oKAAoK,6IAA6I,6lBAA6lB,0jBAA0jB,6UAA6U,oYAAoY,gYAAgY,+UAA+U,qYAAqY,kdAAkd,iUAAiU,qUAAqU,oRAAoR,weAAwe,4bAA4b,8MAA8M,uRAAuR,+FAA+F,+PAA+P,qMAAqM,qRAAqR,uRAAuR,qKAAqK,oQAAoQ,8LAA8L,gSAAgS,qTAAqT,4RAA4R,wQAAwQ,+XAA+X,gYAAgY,+XAA+X,uXAAuX,iXAAiX,gYAAgY,gYAAgY,iYAAiY,8XAA8X,gYAAgY,0TAA0T,kSAAkS,yGAAyG,yKAAyK,yKAAyK,yKAAyK,kNAAkN,yKAAyK,2TAA2T,gSAAgS,qMAAqM,mTAAmT,iSAAiS,uSAAuS,gRAAgR,mTAAmT,mKAAmK,sMAAsM,oRAAoR,yTAAyT,4VAA4V,oSAAoS,mSAAmS,gSAAgS,iQAAiQ,iRAAiR,8cAA8c,oQAAoQ,uRAAuR,8cAA8c,wSAAwS,gRAAgR,0RAA0R,0GAA0G,+TAA+T,iSAAiS,wGAAwG,g9OAAg9O,4FAA4F,oHAAoHA,GAAS,o9DAAo9D,2FAA2FA,GAAS,swMAAswM,kHAAkHA,GAAS,8/KAA8/K,GAAemG,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASls/HC,GAAgBC,EAAQ5F,GAAU0F,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,iBAAiB,OAAO,SAAS,MAAM,SAAS,IAAI,8FAA8F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAgB,GAAGC,GAAuB,GAAGC,GAAY,GAAGC,GAAa,GAAGC,GAAe,GAAGC,GAAY,GAAGC,GAAW,GAAGC,GAAa,GAAGC,GAAY,GAAGC,GAAa,GAAGC,GAAY,GAAGC,GAAW,GAAGC,GAAoB,GAAGC,GAAiB,GAAGC,GAAe,GAAGC,GAAiB,GAAGC,GAAkB,GAAGC,GAAY,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACzlF,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,SAAS,yBAA2B,QAAQ,qBAAuB,OAAO,sBAAwB,IAAI,yBAA2B,OAAO,6BAA+B,OAAO,oCAAsC,oMAA0O,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "e", "C", "R", "H", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "n", "fe", "ue", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "FramerBYfjwEyLq", "withCSS", "BYfjwEyLq_default", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "FramerJA1uj1NUe", "withCSS", "JA1uj1NUe_default", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "Framerjwe_la75H", "withCSS", "jwe_la75H_default", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "FrameroXth8QW9p", "withCSS", "oXth8QW9p_default", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "FramertUuAzSjlI", "withCSS", "tUuAzSjlI_default", "addFonts", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "SVG", "css", "FramerySy1J882M", "withCSS", "ySy1J882M_default", "addFonts", "scrollToTop", "window", "ScrollToTopButton", "props", "button", "p", "ref", "ref1", "ref2", "layer", "q", "layer1", "motion", "effectsDefault", "addPropertyControls", "ControlType", "NavigationFonts", "getFonts", "RG7yJog90_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ScrollToTopButtonFonts", "ScrollToTopButton", "AvatarFonts", "aL1M4pcFt_default", "ButtonsFonts", "yORaTwldW_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "PathlightFonts", "oXth8QW9p_default", "OpenAIFonts", "BYfjwEyLq_default", "TeslaFonts", "jwe_la75H_default", "SpotifyFonts", "tUuAzSjlI_default", "AmazonFonts", "JA1uj1NUe_default", "TodoistFonts", "ySy1J882M_default", "TickerFonts", "Ticker", "MotionSectionWithFX", "BadgeFonts", "SXR9yB_tn_default", "ContainerWithFX", "Container", "RichTextWithFX", "RichText", "FeatureSectionFonts", "L8yk06JFc_default", "FeatureCardFonts", "fbekXnNAc_default", "CTALaunchFonts", "gCkrcTKxp_default", "TestimonialFonts", "xzSFaubax_default", "FAQAccordionFonts", "dV7SE9X5q_default", "FooterFonts", "qZ_XI3P7P_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "transition7", "animation10", "addImageAlt", "image", "alt", "transition8", "animation11", "transformTemplate2", "transition9", "animation12", "animation13", "transition10", "animation14", "transition11", "animation15", "animation16", "transition12", "transition13", "animation17", "transition14", "animation18", "transition15", "animation19", "transition16", "animation20", "transition17", "transition18", "transition19", "transition20", "transition21", "transition22", "transition23", "transition24", "transition25", "transition26", "transition27", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "ref3", "isDisplayed", "isDisplayed1", "id1", "ref4", "router", "useRouter", "isDisplayed2", "id2", "id3", "ref5", "id4", "ref6", "isDisplayed3", "id5", "ref7", "id6", "ref8", "id7", "ref9", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "NavigationWithVariantAppearEffect", "ScrollToTopButton", "Link", "x", "RichText", "SVG", "aL1M4pcFt_default", "ResolveLinks", "resolvedLinks", "yORaTwldW_default", "MotionDivWithFX", "ImageWithFX", "MotionSectionWithFX", "Ticker", "oXth8QW9p_default", "BYfjwEyLq_default", "jwe_la75H_default", "tUuAzSjlI_default", "JA1uj1NUe_default", "ySy1J882M_default", "ContainerWithFX", "SXR9yB_tn_default", "RichTextWithFX", "L8yk06JFc_default", "fbekXnNAc_default", "gCkrcTKxp_default", "xzSFaubax_default", "dV7SE9X5q_default", "qZ_XI3P7P_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "ScrollToTopButtonFonts", "AvatarFonts", "ButtonsFonts", "PathlightFonts", "OpenAIFonts", "TeslaFonts", "SpotifyFonts", "AmazonFonts", "TodoistFonts", "TickerFonts", "BadgeFonts", "FeatureSectionFonts", "FeatureCardFonts", "CTALaunchFonts", "TestimonialFonts", "FAQAccordionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
