{
  "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.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/1oSqv9DhSCzJv9EoGM6s/KF3zjx9gAhqVuQ1zMYRf/AcLZ3i07n.js", "ssg:https://framerusercontent.com/modules/txiTdIvJUOIyzI1x8cY9/atHR1NImuIUmZxsKLFPO/xm1_qXYgw.js", "ssg:https://framerusercontent.com/modules/9Ts9tYLczTUMHznRDieD/SfvMjykC4vmyjqmLCbrC/BQMrZwQ5F.js", "ssg:https://framerusercontent.com/modules/nZQcz1rdlN6LUEzhrG7r/hjWgL82VfvhyXVVVV5g2/j19V_4wvj.js", "ssg:https://framerusercontent.com/modules/gEepQ6365cUwe9aCWVF5/mMcGJtV25XHcE22wqaSA/xNHQGVjHL.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,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[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 P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});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]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};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){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.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 f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}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=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.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(l));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=a.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 a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}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\"function\"===typeof 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 r(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){f(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:u(i,s,o[r]),easing:d(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,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));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,A(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=O((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 N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;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=q.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&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=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 X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}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 Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(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}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;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=y(m(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 i=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:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}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 te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.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()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.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 ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,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 se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(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 re={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 ae={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 ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=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 le)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)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[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(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[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:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.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)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.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{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"QrjlotA3u\",\"eg4txb2JB\"];const serializationHash=\"framer-lIK1c\";const variantClassNames={eg4txb2JB:\"framer-v-wkg42m\",QrjlotA3u:\"framer-v-qiru2g\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"QrjlotA3u\",Mobile:\"eg4txb2JB\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,qgIwD7h0D:click!==null&&click!==void 0?click:props.qgIwD7h0D,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QrjlotA3u\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qgIwD7h0D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QrjlotA3u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapp6xxrf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(qgIwD7h0D){const res=await qgIwD7h0D(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qiru2g\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QrjlotA3u\",onTap:onTapp6xxrf,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200,...style},...addPropertyOverrides({eg4txb2JB:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wts6mc\",\"data-framer-name\":\"Color BG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Vj_sK2jQo\",opacity:1,radius:200,style:{backgroundColor:\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 140\"></svg>',svgContentId:11202647545,withExternalLayout:true,...addPropertyOverrides({eg4txb2JB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 100\"></svg>',svgContentId:9155964524}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ud2tw4\",\"data-framer-name\":\"Play Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cWBNDzjVI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 46\"><path d=\"M 9.766 1.425 C 5.766 -0.929 0.724 1.955 0.724 6.596 L 0.724 39.615 C 0.724 44.255 5.766 47.139 9.766 44.786 L 37.83 28.279 C 41.774 25.959 41.774 20.256 37.831 17.936 Z\" fill=\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"></path></svg>',svgContentId:11751984041,withExternalLayout:true,...addPropertyOverrides({eg4txb2JB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29 32\"><path d=\"M 6.908 0.991 C 4.079 -0.646 0.512 1.36 0.512 4.589 L 0.512 27.558 C 0.512 30.786 4.078 32.792 6.907 31.156 L 26.758 19.672 C 29.548 18.058 29.548 14.091 26.758 12.477 Z\" fill=\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"></path></svg>',svgContentId:11858306144}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lIK1c.framer-u3p70x, .framer-lIK1c .framer-u3p70x { display: block; }\",\".framer-lIK1c.framer-qiru2g { cursor: pointer; height: 140px; overflow: visible; position: relative; width: 140px; }\",\".framer-lIK1c .framer-1wts6mc { flex: none; height: 140px; left: calc(50.00000000000002% - 140px / 2); position: absolute; top: calc(50.00000000000002% - 140px / 2); width: 140px; }\",\".framer-lIK1c .framer-1ud2tw4 { flex: none; height: 46px; left: calc(53.57142857142859% - 41px / 2); position: absolute; top: calc(50.00000000000002% - 46px / 2); width: 41px; }\",\".framer-lIK1c.framer-v-wkg42m.framer-qiru2g { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); width: 100px; }\",\".framer-lIK1c.framer-v-wkg42m .framer-1wts6mc { height: 100px; left: calc(50.00000000000002% - 100px / 2); top: calc(50.00000000000002% - 100px / 2); width: 100px; }\",\".framer-lIK1c.framer-v-wkg42m .framer-1ud2tw4 { height: 32px; left: calc(53.00000000000003% - 29px / 2); top: calc(50.00000000000002% - 32px / 2); width: 29px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 140\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eg4txb2JB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qgIwD7h0D\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAcLZ3i07n=withCSS(Component,css,\"framer-lIK1c\");export default FramerAcLZ3i07n;FramerAcLZ3i07n.displayName=\"Components/Video Button\";FramerAcLZ3i07n.defaultProps={height:140,width:140};addPropertyControls(FramerAcLZ3i07n,{variant:{options:[\"QrjlotA3u\",\"eg4txb2JB\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},qgIwD7h0D:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerAcLZ3i07n,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAcLZ3i07n\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"140\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eg4txb2JB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"140\",\"framerVariables\":\"{\\\"qgIwD7h0D\\\":\\\"click\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AcLZ3i07n.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eog3pWXhzFb3CdKhVPQi/ug5QuwUrn6Soa3SllcGR/c7WFHwZRF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uAomxCok8WeV2zd41rYH/tweCN05UBMJTMhiaak3b/FGcmG_3N0.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aUMDvQJOBC43A2VdLa7q/FPwW1KMjBzlxTMCh1hZu/HZ7ISd1tL.js\";const cycleOrder=[\"tmo0z7EXe\",\"FFHSPrcOU\",\"J1A2Mjjrs\",\"HfHNjhx0E\"];const serializationHash=\"framer-8kyaT\";const variantClassNames={FFHSPrcOU:\"framer-v-992c44\",HfHNjhx0E:\"framer-v-w3ph34\",J1A2Mjjrs:\"framer-v-1xd31h4\",tmo0z7EXe:\"framer-v-hixgos\"};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 transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default/Left Image\":\"FFHSPrcOU\",\"Defautl/Right Image\":\"tmo0z7EXe\",Phone:\"HfHNjhx0E\",Tablet:\"J1A2Mjjrs\"};const getProps=({date,height,id,image,name1,paragraph,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3,_ref4,_ref5;return{...props,d3o_EuJIe:(_ref=title!==null&&title!==void 0?title:props.d3o_EuJIe)!==null&&_ref!==void 0?_ref:\"\u201CThe care and service is exceptional\u201D\",dqsNr6223:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.dqsNr6223)!==null&&_ref1!==void 0?_ref1:\"Lorem ipsum dolor sit amet consectetur venenatis nisi et in quis fermentum vel magna magna risus arcu et turpis ac lacus quam etiam integer eget dolor.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"tmo0z7EXe\",vgvMLTUvw:(_ref3=image!==null&&image!==void 0?image:props.vgvMLTUvw)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/w4zJmmzdp3ib2rx3wf2o6c2KM5o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w4zJmmzdp3ib2rx3wf2o6c2KM5o.png?scale-down-to=1024 734w,https://framerusercontent.com/images/w4zJmmzdp3ib2rx3wf2o6c2KM5o.png?scale-down-to=2048 1469w,https://framerusercontent.com/images/w4zJmmzdp3ib2rx3wf2o6c2KM5o.png 2938w\"},VqvbMUCc1:(_ref4=date!==null&&date!==void 0?date:props.VqvbMUCc1)!==null&&_ref4!==void 0?_ref4:\"Patient since 2025\",VtxK3j6d8:(_ref5=name1!==null&&name1!==void 0?name1:props.VtxK3j6d8)!==null&&_ref5!==void 0?_ref5:\"John Carter,\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,d3o_EuJIe,dqsNr6223,VtxK3j6d8,vgvMLTUvw,VqvbMUCc1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tmo0z7EXe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hixgos\",className,classNames),\"data-framer-name\":\"Defautl/Right Image\",layoutDependency:layoutDependency,layoutId:\"tmo0z7EXe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 2px 6px 0px rgba(31, 75, 160, 0.05999999865889549)\",...style},variants:{HfHNjhx0E:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({FFHSPrcOU:{\"data-framer-name\":\"Default/Left Image\"},HfHNjhx0E:{\"data-framer-name\":\"Phone\"},J1A2Mjjrs:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z9uezm\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bhtOANnoD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvcrts\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"H_Pama3Gz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mwz25f\",\"data-styles-preset\":\"FGcmG_3N0\",children:\"\u201CThe care and service is exceptional\u201D\"})}),className:\"framer-1mzuwlg\",\"data-framer-name\":\"Heading H3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yjNv0MLqT\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:d3o_EuJIe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",children:\"Lorem ipsum dolor sit amet consectetur venenatis nisi et in quis fermentum vel magna magna risus arcu et turpis ac lacus quam etiam integer eget dolor.\"})}),className:\"framer-dia1f7\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IPKoxYA3o\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:dqsNr6223,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ui30sk\",\"data-framer-name\":\"Details Wrapper\",layoutDependency:layoutDependency,layoutId:\"ckW3DEJUI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-7nl7je\",\"data-styles-preset\":\"HZ7ISd1tL\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47)))\"},children:\"John Carter,\"}),\" Patient since 2024\"]})}),className:\"framer-1tk9ztk\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SxSXRd8Bm\",style:{\"--extracted-1w3ko1f\":\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\",\"--framer-paragraph-spacing\":\"0px\"},text:VtxK3j6d8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7nl7je\",\"data-styles-preset\":\"HZ7ISd1tL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb73a6fa-eb9b-4910-9bb7-d39b025196db, rgb(102, 110, 130)))\"},children:\"Patient since 2024\"})}),className:\"framer-q899yu\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pUcSSeS1E\",style:{\"--extracted-r6o4lv\":\"var(--token-fb73a6fa-eb9b-4910-9bb7-d39b025196db, rgb(102, 110, 130))\",\"--framer-paragraph-spacing\":\"0px\"},text:VqvbMUCc1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kft5bh\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"Ode1523h8\",style:{borderBottomLeftRadius:800,borderBottomRightRadius:800},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-37jrl7\",\"data-framer-name\":\"Decoration Element\",layoutDependency:layoutDependency,layoutId:\"M9Y13NoE8\",style:{backgroundColor:\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},...addPropertyOverrides({FFHSPrcOU:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fpvnrm\",\"data-framer-name\":\"Element\",layoutDependency:layoutDependency,layoutId:\"lQWxZ_e1p\",style:{backgroundColor:\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-586uqq\",\"data-framer-name\":\"Element\",layoutDependency:layoutDependency,layoutId:\"x4kCP74ar\",style:{backgroundColor:\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(56+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||512)-112-400)/2)+6.6787109375),sizes:\"295.0906px\",...toResponsiveImage(vgvMLTUvw),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-o3x6zw\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"WlD8n3HBc\",transformTemplate:transformTemplate2,...addPropertyOverrides({FFHSPrcOU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(72+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-144-360)/2)+2.6769287109374886),sizes:\"270.5934px\",...toResponsiveImage(vgvMLTUvw),...{positionX:\"center\",positionY:\"top\"}}},HfHNjhx0E:{background:{alt:\"\",fit:\"fill\",sizes:\"295.0906px\",...toResponsiveImage(vgvMLTUvw),...{positionX:\"center\",positionY:\"top\"}}},J1A2Mjjrs:{background:{alt:\"\",fit:\"fill\",sizes:\"295.0906px\",...toResponsiveImage(vgvMLTUvw),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8kyaT.framer-1fi6i5o, .framer-8kyaT .framer-1fi6i5o { display: block; }\",\".framer-8kyaT.framer-hixgos { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: 512px; justify-content: center; overflow: visible; padding: 56px 72px 56px 72px; position: relative; width: 990px; }\",\".framer-8kyaT .framer-z9uezm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8kyaT .framer-1bvcrts { align-content: flex-start; align-items: flex-start; 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-8kyaT .framer-1mzuwlg, .framer-8kyaT .framer-dia1f7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8kyaT .framer-1ui30sk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8kyaT .framer-1tk9ztk, .framer-8kyaT .framer-q899yu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8kyaT .framer-kft5bh { aspect-ratio: 0.74 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); overflow: hidden; position: relative; width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8kyaT .framer-37jrl7 { flex: none; height: 296px; left: calc(49.72047548036318% - 296px / 2); overflow: hidden; position: absolute; top: calc(63% - 296px / 2); width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8kyaT .framer-1fpvnrm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 280px); left: 93%; position: absolute; top: 57%; width: 280px; }\",\".framer-8kyaT .framer-586uqq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); left: 14%; position: absolute; top: 98%; width: 380px; }\",\".framer-8kyaT .framer-o3x6zw { aspect-ratio: 0.7516483432770292 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 393px); left: 50%; position: absolute; top: 51%; width: 295px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8kyaT.framer-hixgos, .framer-8kyaT .framer-z9uezm, .framer-8kyaT .framer-1bvcrts, .framer-8kyaT .framer-1ui30sk { gap: 0px; } .framer-8kyaT.framer-hixgos > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-8kyaT.framer-hixgos > :first-child, .framer-8kyaT .framer-1ui30sk > :first-child { margin-left: 0px; } .framer-8kyaT.framer-hixgos > :last-child, .framer-8kyaT .framer-1ui30sk > :last-child { margin-right: 0px; } .framer-8kyaT .framer-z9uezm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8kyaT .framer-z9uezm > :first-child, .framer-8kyaT .framer-1bvcrts > :first-child { margin-top: 0px; } .framer-8kyaT .framer-z9uezm > :last-child, .framer-8kyaT .framer-1bvcrts > :last-child { margin-bottom: 0px; } .framer-8kyaT .framer-1bvcrts > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8kyaT .framer-1ui30sk > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-8kyaT.framer-v-992c44.framer-hixgos { gap: 40px; height: min-content; padding: 72px 64px 72px 64px; width: 900px; }\",\".framer-8kyaT.framer-v-992c44 .framer-z9uezm { order: 1; }\",\".framer-8kyaT.framer-v-992c44 .framer-kft5bh { height: var(--framer-aspect-ratio-supported, 360px); order: 0; width: 266px; }\",\".framer-8kyaT.framer-v-992c44 .framer-37jrl7 { aspect-ratio: 1 / 1; bottom: 0px; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: unset; width: 260px; }\",\".framer-8kyaT.framer-v-992c44 .framer-o3x6zw { height: var(--framer-aspect-ratio-supported, 360px); width: 271px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8kyaT.framer-v-992c44.framer-hixgos { gap: 0px; } .framer-8kyaT.framer-v-992c44.framer-hixgos > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-8kyaT.framer-v-992c44.framer-hixgos > :first-child { margin-left: 0px; } .framer-8kyaT.framer-v-992c44.framer-hixgos > :last-child { margin-right: 0px; } }\",\".framer-8kyaT.framer-v-1xd31h4.framer-hixgos { flex-direction: column; gap: 40px; height: min-content; justify-content: flex-start; padding: 48px 40px 48px 40px; width: 512px; }\",\".framer-8kyaT.framer-v-1xd31h4 .framer-z9uezm { flex: none; gap: 32px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8kyaT.framer-v-1xd31h4.framer-hixgos, .framer-8kyaT.framer-v-1xd31h4 .framer-z9uezm { gap: 0px; } .framer-8kyaT.framer-v-1xd31h4.framer-hixgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8kyaT.framer-v-1xd31h4.framer-hixgos > :first-child, .framer-8kyaT.framer-v-1xd31h4 .framer-z9uezm > :first-child { margin-top: 0px; } .framer-8kyaT.framer-v-1xd31h4.framer-hixgos > :last-child, .framer-8kyaT.framer-v-1xd31h4 .framer-z9uezm > :last-child { margin-bottom: 0px; } .framer-8kyaT.framer-v-1xd31h4 .framer-z9uezm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-8kyaT.framer-v-w3ph34.framer-hixgos { flex-direction: column; gap: 40px; height: min-content; justify-content: flex-start; padding: 32px 24px 32px 24px; width: 390px; }\",\".framer-8kyaT.framer-v-w3ph34 .framer-z9uezm { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8kyaT.framer-v-w3ph34.framer-hixgos { gap: 0px; } .framer-8kyaT.framer-v-w3ph34.framer-hixgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8kyaT.framer-v-w3ph34.framer-hixgos > :first-child { margin-top: 0px; } .framer-8kyaT.framer-v-w3ph34.framer-hixgos > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512\n * @framerIntrinsicWidth 990\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FFHSPrcOU\":{\"layout\":[\"fixed\",\"auto\"]},\"J1A2Mjjrs\":{\"layout\":[\"fixed\",\"auto\"]},\"HfHNjhx0E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"d3o_EuJIe\":\"title\",\"dqsNr6223\":\"paragraph\",\"VtxK3j6d8\":\"name1\",\"vgvMLTUvw\":\"image\",\"VqvbMUCc1\":\"date\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerxm1_qXYgw=withCSS(Component,css,\"framer-8kyaT\");export default Framerxm1_qXYgw;Framerxm1_qXYgw.displayName=\"Page Components/Testimonials Card\";Framerxm1_qXYgw.defaultProps={height:512,width:990};addPropertyControls(Framerxm1_qXYgw,{variant:{options:[\"tmo0z7EXe\",\"FFHSPrcOU\",\"J1A2Mjjrs\",\"HfHNjhx0E\"],optionTitles:[\"Defautl/Right Image\",\"Default/Left Image\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},d3o_EuJIe:{defaultValue:\"\u201CThe care and service is exceptional\u201D\",displayTextArea:false,title:\"Title\",type:ControlType.String},dqsNr6223:{defaultValue:\"Lorem ipsum dolor sit amet consectetur venenatis nisi et in quis fermentum vel magna magna risus arcu et turpis ac lacus quam etiam integer eget dolor.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},VtxK3j6d8:{defaultValue:\"John Carter,\",displayTextArea:false,title:\"Name\",type:ControlType.String},vgvMLTUvw:{__defaultAssetReference:\"data:framer/asset-reference,w4zJmmzdp3ib2rx3wf2o6c2KM5o.png?originalFilename=Photo.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},VqvbMUCc1:{defaultValue:\"Patient since 2025\",displayTextArea:false,title:\"Date\",type:ControlType.String}});addFonts(Framerxm1_qXYgw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxm1_qXYgw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FFHSPrcOU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J1A2Mjjrs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HfHNjhx0E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"512\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"d3o_EuJIe\\\":\\\"title\\\",\\\"dqsNr6223\\\":\\\"paragraph\\\",\\\"VtxK3j6d8\\\":\\\"name1\\\",\\\"vgvMLTUvw\\\":\\\"image\\\",\\\"VqvbMUCc1\\\":\\\"date\\\"}\",\"framerIntrinsicWidth\":\"990\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xm1_qXYgw.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ComponentsButtonArrow from\"https://framerusercontent.com/modules/pY39xEyTT6RR3RjMEeUP/h4UqJcgacopgRQztjpdS/ba1OkQgWK.js\";import PageComponentsTestimonialsCard from\"https://framerusercontent.com/modules/txiTdIvJUOIyzI1x8cY9/atHR1NImuIUmZxsKLFPO/xm1_qXYgw.js\";const ComponentsButtonArrowFonts=getFonts(ComponentsButtonArrow);const PageComponentsTestimonialsCardFonts=getFonts(PageComponentsTestimonialsCard);const cycleOrder=[\"yX3nS8vPP\",\"Nj5Sza5sF\",\"rxAAtsPW0\",\"XZTCBc2wW\",\"CZXb7D8cu\",\"FxTb2pQGZ\",\"K5r7qNbHZ\",\"lcsmvFCm_\",\"KlpNDL1HN\"];const serializationHash=\"framer-ErqxP\";const variantClassNames={CZXb7D8cu:\"framer-v-khi6cw\",FxTb2pQGZ:\"framer-v-1qu0qsk\",K5r7qNbHZ:\"framer-v-mfjlve\",KlpNDL1HN:\"framer-v-wpv0rf\",lcsmvFCm_:\"framer-v-1iai19z\",Nj5Sza5sF:\"framer-v-19niey1\",rxAAtsPW0:\"framer-v-1jb9wyy\",XZTCBc2wW:\"framer-v-nxc65f\",yX3nS8vPP:\"framer-v-xw5ba5\"};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 transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop/Slider 01\":\"yX3nS8vPP\",\"Desktop/Slider 02\":\"Nj5Sza5sF\",\"Desktop/Slider 03\":\"rxAAtsPW0\",\"Phone/Slider 01\":\"K5r7qNbHZ\",\"Phone/Slider 02\":\"lcsmvFCm_\",\"Phone/Slider 03\":\"KlpNDL1HN\",\"Tablet/Slider 01\":\"XZTCBc2wW\",\"Tablet/Slider 02\":\"CZXb7D8cu\",\"Tablet/Slider 03\":\"FxTb2pQGZ\"};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:\"yX3nS8vPP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yX3nS8vPP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Jh_gzM42keozgd8=activeVariantCallback(async(...args)=>{setVariant(\"rxAAtsPW0\");});const Jh_gzM42k1f07ch=activeVariantCallback(async(...args)=>{setVariant(\"yX3nS8vPP\");});const Jh_gzM42k1uw8y3n=activeVariantCallback(async(...args)=>{setVariant(\"Nj5Sza5sF\");});const Jh_gzM42k1tukxf=activeVariantCallback(async(...args)=>{setVariant(\"FxTb2pQGZ\");});const Jh_gzM42ki2dlgb=activeVariantCallback(async(...args)=>{setVariant(\"XZTCBc2wW\");});const Jh_gzM42k1qw5j55=activeVariantCallback(async(...args)=>{setVariant(\"CZXb7D8cu\");});const Jh_gzM42k122lnl=activeVariantCallback(async(...args)=>{setVariant(\"KlpNDL1HN\");});const Jh_gzM42k9azlic=activeVariantCallback(async(...args)=>{setVariant(\"K5r7qNbHZ\");});const Jh_gzM42k1mmx8wi=activeVariantCallback(async(...args)=>{setVariant(\"lcsmvFCm_\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"K5r7qNbHZ\",\"lcsmvFCm_\",\"KlpNDL1HN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"K5r7qNbHZ\",\"lcsmvFCm_\",\"KlpNDL1HN\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xw5ba5\",className,classNames),\"data-framer-name\":\"Desktop/Slider 01\",layoutDependency:layoutDependency,layoutId:\"yX3nS8vPP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CZXb7D8cu:{\"data-framer-name\":\"Tablet/Slider 02\"},FxTb2pQGZ:{\"data-framer-name\":\"Tablet/Slider 03\"},K5r7qNbHZ:{\"data-framer-name\":\"Phone/Slider 01\"},KlpNDL1HN:{\"data-framer-name\":\"Phone/Slider 03\"},lcsmvFCm_:{\"data-framer-name\":\"Phone/Slider 02\"},Nj5Sza5sF:{\"data-framer-name\":\"Desktop/Slider 02\"},rxAAtsPW0:{\"data-framer-name\":\"Desktop/Slider 03\"},XZTCBc2wW:{\"data-framer-name\":\"Tablet/Slider 01\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||512)-0-64)/2),...addPropertyOverrides({CZXb7D8cu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)},FxTb2pQGZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)},XZTCBc2wW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1372o24-container\",layoutDependency:layoutDependency,layoutId:\"WbS2kEco0-container\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"WbS2kEco0\",Jh_gzM42k:Jh_gzM42keozgd8,layoutId:\"WbS2kEco0\",style:{height:\"100%\",width:\"100%\"},variant:\"ueKGZk9Kg\",width:\"100%\",...addPropertyOverrides({CZXb7D8cu:{Jh_gzM42k:Jh_gzM42ki2dlgb},FxTb2pQGZ:{Jh_gzM42k:Jh_gzM42k1qw5j55},Nj5Sza5sF:{Jh_gzM42k:Jh_gzM42k1f07ch},rxAAtsPW0:{Jh_gzM42k:Jh_gzM42k1uw8y3n},XZTCBc2wW:{Jh_gzM42k:Jh_gzM42k1tukxf}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 224px, 1px), 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||512)-0-512)/2),...addPropertyOverrides({CZXb7D8cu:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 176px, 1px), 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-512)/2)},FxTb2pQGZ:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 176px, 1px), 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-512)/2)},K5r7qNbHZ:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+0+0)},KlpNDL1HN:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+0+0)},lcsmvFCm_:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+0+0)},XZTCBc2wW:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 176px, 1px), 990px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-512)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1avgujf-container\",layoutDependency:layoutDependency,layoutId:\"yhxmWDi9T-container\",children:/*#__PURE__*/_jsx(PageComponentsTestimonialsCard,{d3o_EuJIe:\"\u201CThe care and service is exceptional\u201D\",dqsNr6223:\"Lorem ipsum dolor sit amet consectetur venenatis nisi et in quis fermentum vel magna magna risus arcu et turpis ac lacus quam etiam integer eget dolor.\",height:\"100%\",id:\"yhxmWDi9T\",layoutId:\"yhxmWDi9T\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"tmo0z7EXe\",VqvbMUCc1:\"Patient since 2025\",VtxK3j6d8:\"John Carter,\",width:\"100%\",...addPropertyOverrides({CZXb7D8cu:{d3o_EuJIe:\"\u201CThe best app for medical appointments\u201D\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"J1A2Mjjrs\",vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png\",srcSet:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png?scale-down-to=1024 742w,https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png 1181w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Sandy Houston,\"},FxTb2pQGZ:{d3o_EuJIe:'\"The next-gen app for medical care\"',style:{maxWidth:\"100%\",width:\"100%\"},variant:\"J1A2Mjjrs\",vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png\",srcSet:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png?scale-down-to=1024 770w,https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png 1239w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Graham Hills,\"},K5r7qNbHZ:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HfHNjhx0E\"},KlpNDL1HN:{d3o_EuJIe:'\"The next-gen app for medical care\"',style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HfHNjhx0E\",vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png\",srcSet:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png?scale-down-to=1024 770w,https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png 1239w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Graham Hills,\"},lcsmvFCm_:{d3o_EuJIe:\"\u201CThe best app for medical appointments\u201D\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HfHNjhx0E\",vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png\",srcSet:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png?scale-down-to=1024 742w,https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png 1181w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Sandy Houston,\"},Nj5Sza5sF:{d3o_EuJIe:\"\u201CThe best app for medical appointments\u201D\",vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png\",srcSet:\"https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png?scale-down-to=1024 742w,https://framerusercontent.com/images/zOCpVGQhKJXZ9brHyhuhIT9CKg.png 1181w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Sandy Houston,\"},rxAAtsPW0:{d3o_EuJIe:'\"The next-gen app for medical care\"',vgvMLTUvw:addImageAlt({src:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png\",srcSet:\"https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png?scale-down-to=1024 770w,https://framerusercontent.com/images/TVcLVMG7SFm1egorE1fDb0pxWk.png 1239w\"},\"\"),VqvbMUCc1:\"Patient since 2024\",VtxK3j6d8:\"Graham Hills,\"},XZTCBc2wW:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"J1A2Mjjrs\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||512)-0-64)/2),...addPropertyOverrides({CZXb7D8cu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)},FxTb2pQGZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)},XZTCBc2wW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||779)-0-64)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1858qni-container\",layoutDependency:layoutDependency,layoutId:\"ZiE97sQDP-container\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"ZiE97sQDP\",Jh_gzM42k:Jh_gzM42k1uw8y3n,layoutId:\"ZiE97sQDP\",style:{height:\"100%\",width:\"100%\"},variant:\"abGoOhb7a\",width:\"100%\",...addPropertyOverrides({CZXb7D8cu:{Jh_gzM42k:Jh_gzM42k1tukxf},FxTb2pQGZ:{Jh_gzM42k:Jh_gzM42ki2dlgb},Nj5Sza5sF:{Jh_gzM42k:Jh_gzM42keozgd8},rxAAtsPW0:{Jh_gzM42k:Jh_gzM42k1f07ch},XZTCBc2wW:{Jh_gzM42k:Jh_gzM42k1qw5j55}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qms5jb\",\"data-framer-name\":\"Buttons Row Phone\",layoutDependency:layoutDependency,layoutId:\"LaaGjXYZT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",...addPropertyOverrides({K5r7qNbHZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0},KlpNDL1HN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0},lcsmvFCm_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uj0ixj-container\",layoutDependency:layoutDependency,layoutId:\"wgEkOmveT-container\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"wgEkOmveT\",Jh_gzM42k:Jh_gzM42k122lnl,layoutId:\"wgEkOmveT\",style:{height:\"100%\",width:\"100%\"},variant:\"ueKGZk9Kg\",width:\"100%\",...addPropertyOverrides({KlpNDL1HN:{Jh_gzM42k:Jh_gzM42k1mmx8wi},lcsmvFCm_:{Jh_gzM42k:Jh_gzM42k9azlic}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",...addPropertyOverrides({K5r7qNbHZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0},KlpNDL1HN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0},lcsmvFCm_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929)-0-600)/2+512+24)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzyp8v-container\",layoutDependency:layoutDependency,layoutId:\"x89VFLXNr-container\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"x89VFLXNr\",Jh_gzM42k:Jh_gzM42k1mmx8wi,layoutId:\"x89VFLXNr\",style:{height:\"100%\",width:\"100%\"},variant:\"abGoOhb7a\",width:\"100%\",...addPropertyOverrides({KlpNDL1HN:{Jh_gzM42k:Jh_gzM42k9azlic},lcsmvFCm_:{Jh_gzM42k:Jh_gzM42k122lnl}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ErqxP.framer-1fr6ncs, .framer-ErqxP .framer-1fr6ncs { display: block; }\",\".framer-ErqxP.framer-xw5ba5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1292px; }\",\".framer-ErqxP .framer-1372o24-container, .framer-ErqxP .framer-1858qni-container, .framer-ErqxP .framer-1uj0ixj-container, .framer-ErqxP .framer-1mzyp8v-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-ErqxP .framer-1avgujf-container { flex: 1 0 0px; height: 512px; max-width: 990px; position: relative; width: 1px; }\",\".framer-ErqxP .framer-qms5jb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-xw5ba5, .framer-ErqxP .framer-qms5jb { gap: 0px; } .framer-ErqxP.framer-xw5ba5 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-ErqxP.framer-xw5ba5 > :first-child, .framer-ErqxP .framer-qms5jb > :first-child { margin-left: 0px; } .framer-ErqxP.framer-xw5ba5 > :last-child, .framer-ErqxP .framer-qms5jb > :last-child { margin-right: 0px; } .framer-ErqxP .framer-qms5jb > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-ErqxP.framer-v-nxc65f.framer-xw5ba5, .framer-ErqxP.framer-v-khi6cw.framer-xw5ba5, .framer-ErqxP.framer-v-1qu0qsk.framer-xw5ba5 { gap: 24px; width: 810px; }\",\".framer-ErqxP.framer-v-nxc65f .framer-1avgujf-container, .framer-ErqxP.framer-v-khi6cw .framer-1avgujf-container, .framer-ErqxP.framer-v-1qu0qsk .framer-1avgujf-container { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-nxc65f.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-nxc65f.framer-xw5ba5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ErqxP.framer-v-nxc65f.framer-xw5ba5 > :first-child { margin-left: 0px; } .framer-ErqxP.framer-v-nxc65f.framer-xw5ba5 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-khi6cw.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-khi6cw.framer-xw5ba5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ErqxP.framer-v-khi6cw.framer-xw5ba5 > :first-child { margin-left: 0px; } .framer-ErqxP.framer-v-khi6cw.framer-xw5ba5 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-1qu0qsk.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-1qu0qsk.framer-xw5ba5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ErqxP.framer-v-1qu0qsk.framer-xw5ba5 > :first-child { margin-left: 0px; } .framer-ErqxP.framer-v-1qu0qsk.framer-xw5ba5 > :last-child { margin-right: 0px; } }\",\".framer-ErqxP.framer-v-mfjlve.framer-xw5ba5, .framer-ErqxP.framer-v-1iai19z.framer-xw5ba5, .framer-ErqxP.framer-v-wpv0rf.framer-xw5ba5 { flex-direction: column; gap: 24px; width: 390px; }\",\".framer-ErqxP.framer-v-mfjlve .framer-1avgujf-container { flex: none; height: auto; order: 1; width: 100%; }\",\".framer-ErqxP.framer-v-mfjlve .framer-qms5jb { flex: none; order: 3; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-mfjlve.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-mfjlve.framer-xw5ba5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ErqxP.framer-v-mfjlve.framer-xw5ba5 > :first-child { margin-top: 0px; } .framer-ErqxP.framer-v-mfjlve.framer-xw5ba5 > :last-child { margin-bottom: 0px; } }\",\".framer-ErqxP.framer-v-1iai19z .framer-1avgujf-container, .framer-ErqxP.framer-v-wpv0rf .framer-1avgujf-container { flex: none; height: auto; width: 100%; }\",\".framer-ErqxP.framer-v-1iai19z .framer-qms5jb, .framer-ErqxP.framer-v-wpv0rf .framer-qms5jb { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-1iai19z.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-1iai19z.framer-xw5ba5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ErqxP.framer-v-1iai19z.framer-xw5ba5 > :first-child { margin-top: 0px; } .framer-ErqxP.framer-v-1iai19z.framer-xw5ba5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErqxP.framer-v-wpv0rf.framer-xw5ba5 { gap: 0px; } .framer-ErqxP.framer-v-wpv0rf.framer-xw5ba5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ErqxP.framer-v-wpv0rf.framer-xw5ba5 > :first-child { margin-top: 0px; } .framer-ErqxP.framer-v-wpv0rf.framer-xw5ba5 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512\n * @framerIntrinsicWidth 1292\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Nj5Sza5sF\":{\"layout\":[\"fixed\",\"auto\"]},\"rxAAtsPW0\":{\"layout\":[\"fixed\",\"auto\"]},\"XZTCBc2wW\":{\"layout\":[\"fixed\",\"auto\"]},\"CZXb7D8cu\":{\"layout\":[\"fixed\",\"auto\"]},\"FxTb2pQGZ\":{\"layout\":[\"fixed\",\"auto\"]},\"K5r7qNbHZ\":{\"layout\":[\"fixed\",\"auto\"]},\"lcsmvFCm_\":{\"layout\":[\"fixed\",\"auto\"]},\"KlpNDL1HN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBQMrZwQ5F=withCSS(Component,css,\"framer-ErqxP\");export default FramerBQMrZwQ5F;FramerBQMrZwQ5F.displayName=\"Page Components/Slider Testimonials V1\";FramerBQMrZwQ5F.defaultProps={height:512,width:1292};addPropertyControls(FramerBQMrZwQ5F,{variant:{options:[\"yX3nS8vPP\",\"Nj5Sza5sF\",\"rxAAtsPW0\",\"XZTCBc2wW\",\"CZXb7D8cu\",\"FxTb2pQGZ\",\"K5r7qNbHZ\",\"lcsmvFCm_\",\"KlpNDL1HN\"],optionTitles:[\"Desktop/Slider 01\",\"Desktop/Slider 02\",\"Desktop/Slider 03\",\"Tablet/Slider 01\",\"Tablet/Slider 02\",\"Tablet/Slider 03\",\"Phone/Slider 01\",\"Phone/Slider 02\",\"Phone/Slider 03\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBQMrZwQ5F,[{explicitInter:true,fonts:[]},...ComponentsButtonArrowFonts,...PageComponentsTestimonialsCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBQMrZwQ5F\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"512\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1292\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nj5Sza5sF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rxAAtsPW0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XZTCBc2wW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CZXb7D8cu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FxTb2pQGZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K5r7qNbHZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lcsmvFCm_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KlpNDL1HN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eog3pWXhzFb3CdKhVPQi/ug5QuwUrn6Soa3SllcGR/c7WFHwZRF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1iyyLqxhNRZUTzC7vu69/jhfj7tOVRwqPJbTtmWNn/ciDK0ryLM.js\";import ComponentsDivider from\"https://framerusercontent.com/modules/vNVZrwy8GV5Yna5DSjJ6/8J7NpsXefB9I7IUBYiNe/hBw13MNMY.js\";const ComponentsDividerFonts=getFonts(ComponentsDivider);const cycleOrder=[\"pjnXJtYl5\",\"Sqc8fTke6\",\"UDPdRdqiG\",\"aHO4D3jUE\"];const serializationHash=\"framer-RsDQ5\";const variantClassNames={aHO4D3jUE:\"framer-v-ppt81o\",pjnXJtYl5:\"framer-v-u9272d\",Sqc8fTke6:\"framer-v-ovu6ox\",UDPdRdqiG:\"framer-v-eqlkz9\"};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 transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop/Default\":\"pjnXJtYl5\",\"Desktop/Top\":\"Sqc8fTke6\",\"Phone/Default\":\"UDPdRdqiG\",\"Phone/Top\":\"aHO4D3jUE\"};const getProps=({divider,height,id,imageIcon,paragraph,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,Db8dtKQFE:(_ref=divider!==null&&divider!==void 0?divider:props.Db8dtKQFE)!==null&&_ref!==void 0?_ref:true,Fl0iRE0bn:(_ref1=title!==null&&title!==void 0?title:props.Fl0iRE0bn)!==null&&_ref1!==void 0?_ref1:\"Title\",tkrtx9Vm8:(_ref2=paragraph!==null&&paragraph!==void 0?paragraph:props.tkrtx9Vm8)!==null&&_ref2!==void 0?_ref2:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\",v0llRbTzw:imageIcon!==null&&imageIcon!==void 0?imageIcon:props.v0llRbTzw,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"pjnXJtYl5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v0llRbTzw,Fl0iRE0bn,tkrtx9Vm8,Db8dtKQFE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pjnXJtYl5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u9272d\",className,classNames),\"data-framer-name\":\"Desktop/Default\",layoutDependency:layoutDependency,layoutId:\"pjnXJtYl5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aHO4D3jUE:{\"data-framer-name\":\"Phone/Top\"},Sqc8fTke6:{\"data-framer-name\":\"Desktop/Top\"},UDPdRdqiG:{\"data-framer-name\":\"Phone/Default\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-607vug\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"keEliNS9v\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||192)-40-242.23)/2+0+0)+0),sizes:\"80px\",...toResponsiveImage(v0llRbTzw),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cc5e3k\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"pTbhQjslN\",style:{borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},...addPropertyOverrides({aHO4D3jUE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-234.23)/2+0+0)+0),sizes:\"64px\",...toResponsiveImage(v0llRbTzw),...{positionX:\"center\",positionY:\"center\"}}},Sqc8fTke6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-242.23)/2+0+0)+0),sizes:\"80px\",...toResponsiveImage(v0llRbTzw),...{positionX:\"center\",positionY:\"center\"}}},UDPdRdqiG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32-234.23)/2+0+0)+0),sizes:\"64px\",...toResponsiveImage(v0llRbTzw),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kuhtia\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"CQ1D9lDbp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17w6e9b\",\"data-styles-preset\":\"ciDK0ryLM\",children:\"Resident care\"})}),className:\"framer-1fsmkew\",\"data-framer-name\":\"Display 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQE6bT97Y\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Fl0iRE0bn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",children:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\"})}),className:\"framer-nrbue6\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jf3raZx8L\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:tkrtx9Vm8,verticalAlignment:\"top\",withExternalLayout:true})]})]}),Db8dtKQFE&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:5,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||192)-40-242.23)/2+197.23+40),...addPropertyOverrides({aHO4D3jUE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-234.23)/2+197.23+32)},Sqc8fTke6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-242.23)/2+197.23+40)},UDPdRdqiG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32-234.23)/2+197.23+32)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlwo3i-container\",layoutDependency:layoutDependency,layoutId:\"JJb18hYDp-container\",children:/*#__PURE__*/_jsx(ComponentsDivider,{height:\"100%\",id:\"JJb18hYDp\",layoutId:\"JJb18hYDp\",LkZlVdyMQ:\"2px 0px 2px 0px\",style:{width:\"100%\"},UTesjxYvC:\"var(--token-51c5191e-d1ea-4f6d-a69c-52e8381085e7, rgb(213, 223, 240))\",variant:\"IPeum728k\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RsDQ5.framer-494krr, .framer-RsDQ5 .framer-494krr { display: block; }\",\".framer-RsDQ5.framer-u9272d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 606px; }\",\".framer-RsDQ5 .framer-607vug { align-content: flex-start; align-items: flex-start; 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-RsDQ5 .framer-cc5e3k { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RsDQ5 .framer-1kuhtia { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RsDQ5 .framer-1fsmkew { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RsDQ5 .framer-nrbue6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RsDQ5 .framer-nlwo3i-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RsDQ5.framer-u9272d, .framer-RsDQ5 .framer-607vug, .framer-RsDQ5 .framer-1kuhtia { gap: 0px; } .framer-RsDQ5.framer-u9272d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RsDQ5.framer-u9272d > :first-child, .framer-RsDQ5 .framer-1kuhtia > :first-child { margin-top: 0px; } .framer-RsDQ5.framer-u9272d > :last-child, .framer-RsDQ5 .framer-1kuhtia > :last-child { margin-bottom: 0px; } .framer-RsDQ5 .framer-607vug > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-RsDQ5 .framer-607vug > :first-child { margin-left: 0px; } .framer-RsDQ5 .framer-607vug > :last-child { margin-right: 0px; } .framer-RsDQ5 .framer-1kuhtia > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-RsDQ5.framer-v-ovu6ox.framer-u9272d { padding: 0px; }\",\".framer-RsDQ5.framer-v-eqlkz9.framer-u9272d { gap: 32px; padding: 32px 0px 0px 0px; width: 390px; }\",\".framer-RsDQ5.framer-v-eqlkz9 .framer-607vug, .framer-RsDQ5.framer-v-ppt81o .framer-607vug { gap: 24px; }\",\".framer-RsDQ5.framer-v-eqlkz9 .framer-cc5e3k, .framer-RsDQ5.framer-v-ppt81o .framer-cc5e3k { height: var(--framer-aspect-ratio-supported, 64px); width: 64px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RsDQ5.framer-v-eqlkz9.framer-u9272d, .framer-RsDQ5.framer-v-eqlkz9 .framer-607vug { gap: 0px; } .framer-RsDQ5.framer-v-eqlkz9.framer-u9272d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RsDQ5.framer-v-eqlkz9.framer-u9272d > :first-child { margin-top: 0px; } .framer-RsDQ5.framer-v-eqlkz9.framer-u9272d > :last-child { margin-bottom: 0px; } .framer-RsDQ5.framer-v-eqlkz9 .framer-607vug > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-RsDQ5.framer-v-eqlkz9 .framer-607vug > :first-child { margin-left: 0px; } .framer-RsDQ5.framer-v-eqlkz9 .framer-607vug > :last-child { margin-right: 0px; } }\",\".framer-RsDQ5.framer-v-ppt81o.framer-u9272d { gap: 32px; padding: 0px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RsDQ5.framer-v-ppt81o.framer-u9272d, .framer-RsDQ5.framer-v-ppt81o .framer-607vug { gap: 0px; } .framer-RsDQ5.framer-v-ppt81o.framer-u9272d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RsDQ5.framer-v-ppt81o.framer-u9272d > :first-child { margin-top: 0px; } .framer-RsDQ5.framer-v-ppt81o.framer-u9272d > :last-child { margin-bottom: 0px; } .framer-RsDQ5.framer-v-ppt81o .framer-607vug > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-RsDQ5.framer-v-ppt81o .framer-607vug > :first-child { margin-left: 0px; } .framer-RsDQ5.framer-v-ppt81o .framer-607vug > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 192\n * @framerIntrinsicWidth 606\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Sqc8fTke6\":{\"layout\":[\"fixed\",\"auto\"]},\"UDPdRdqiG\":{\"layout\":[\"fixed\",\"auto\"]},\"aHO4D3jUE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"v0llRbTzw\":\"imageIcon\",\"Fl0iRE0bn\":\"title\",\"tkrtx9Vm8\":\"paragraph\",\"Db8dtKQFE\":\"divider\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj19V_4wvj=withCSS(Component,css,\"framer-RsDQ5\");export default Framerj19V_4wvj;Framerj19V_4wvj.displayName=\"Page Components/Icon Left + Content\";Framerj19V_4wvj.defaultProps={height:192,width:606};addPropertyControls(Framerj19V_4wvj,{variant:{options:[\"pjnXJtYl5\",\"Sqc8fTke6\",\"UDPdRdqiG\",\"aHO4D3jUE\"],optionTitles:[\"Desktop/Default\",\"Desktop/Top\",\"Phone/Default\",\"Phone/Top\"],title:\"Variant\",type:ControlType.Enum},v0llRbTzw:{title:\"Image Icon\",type:ControlType.ResponsiveImage},Fl0iRE0bn:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},tkrtx9Vm8:{defaultValue:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},Db8dtKQFE:{defaultValue:true,title:\"Divider\",type:ControlType.Boolean}});addFonts(Framerj19V_4wvj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ComponentsDividerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj19V_4wvj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"606\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"v0llRbTzw\\\":\\\"imageIcon\\\",\\\"Fl0iRE0bn\\\":\\\"title\\\",\\\"tkrtx9Vm8\\\":\\\"paragraph\\\",\\\"Db8dtKQFE\\\":\\\"divider\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"192\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sqc8fTke6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UDPdRdqiG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aHO4D3jUE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (295c121)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import ComponentsVideoButton from\"#framer/local/canvasComponent/AcLZ3i07n/AcLZ3i07n.js\";import PageComponentsSliderTestimonialsV1 from\"#framer/local/canvasComponent/BQMrZwQ5F/BQMrZwQ5F.js\";import HeaderHeaderV1 from\"#framer/local/canvasComponent/dMbFQUZQy/dMbFQUZQy.js\";import PageComponentsIconLeftContent from\"#framer/local/canvasComponent/j19V_4wvj/j19V_4wvj.js\";import FooterFooterV1 from\"#framer/local/canvasComponent/jlbxLxemx/jlbxLxemx.js\";import CMSServiceCard from\"#framer/local/canvasComponent/JmceEDUMo/JmceEDUMo.js\";import ComponentsPrimaryButton from\"#framer/local/canvasComponent/pOGgPX4b1/pOGgPX4b1.js\";import PageComponentsBookingCard from\"#framer/local/canvasComponent/sXz4cRE43/sXz4cRE43.js\";import CMSBlogPostImageCard from\"#framer/local/canvasComponent/WUP9VE8g0/WUP9VE8g0.js\";import ComponentsSecondaryButton from\"#framer/local/canvasComponent/zHpR9H_jX/zHpR9H_jX.js\";import Reviews from\"#framer/local/collection/huDFV53ev/huDFV53ev.js\";import BlogPosts from\"#framer/local/collection/UVWYyksHW/UVWYyksHW.js\";import*as sharedStyle1 from\"#framer/local/css/C76u7CJhG/C76u7CJhG.js\";import*as sharedStyle2 from\"#framer/local/css/c7WFHwZRF/c7WFHwZRF.js\";import*as sharedStyle5 from\"#framer/local/css/dFqd7ZCRK/dFqd7ZCRK.js\";import*as sharedStyle6 from\"#framer/local/css/HZ7ISd1tL/HZ7ISd1tL.js\";import*as sharedStyle4 from\"#framer/local/css/I7rxQklnN/I7rxQklnN.js\";import*as sharedStyle7 from\"#framer/local/css/M1vzPXv6j/M1vzPXv6j.js\";import*as sharedStyle from\"#framer/local/css/MKRnc7thw/MKRnc7thw.js\";import*as sharedStyle3 from\"#framer/local/css/pPhACFuB3/pPhACFuB3.js\";import metadataProvider from\"#framer/local/webPageMetadata/xNHQGVjHL/xNHQGVjHL.js\";const HeaderHeaderV1Fonts=getFonts(HeaderHeaderV1);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ComponentsPrimaryButtonFonts=getFonts(ComponentsPrimaryButton);const ComponentsSecondaryButtonFonts=getFonts(ComponentsSecondaryButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const PageComponentsBookingCardFonts=getFonts(PageComponentsBookingCard);const MotionDivWithFX=withFX(motion.div);const CMSServiceCardFonts=getFonts(CMSServiceCard);const SlideshowFonts=getFonts(Slideshow);const ComponentsVideoButtonFonts=getFonts(ComponentsVideoButton);const YouTubeFonts=getFonts(YouTube);const PageComponentsIconLeftContentFonts=getFonts(PageComponentsIconLeftContent);const MotionSectionWithFX=withFX(motion.section);const PageComponentsSliderTestimonialsV1Fonts=getFonts(PageComponentsSliderTestimonialsV1);const CMSBlogPostImageCardFonts=getFonts(CMSBlogPostImageCard);const FooterFooterV1Fonts=getFonts(FooterFooterV1);const ContainerWithFX=withFX(Container);const breakpoints={nz92k7zlm:\"(max-width: 809px)\",r0UMiXet1:\"(min-width: 1440px)\",xtuOTfnP8:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WYr6H\";const variantClassNames={nz92k7zlm:\"framer-v-pbx7zo\",r0UMiXet1:\"framer-v-v1algy\",xtuOTfnP8:\"framer-v-1tdorkk\"};const transition1={delay:.1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.3,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:340,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-4};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:1};const transition4={delay:.5,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:7};const transition5={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.99,skewX:0,skewY:0,x:0,y:7};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.94,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition7={damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"r0UMiXet1\",Phone:\"nz92k7zlm\",Tablet:\"xtuOTfnP8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"r0UMiXet1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,s46JIT1FaGG9O_qS4q,xZbMkBO1TGG9O_qS4q,XhABW9Kt7GG9O_qS4q,idGG9O_qS4q,s46JIT1FaS_malQtaj,xZbMkBO1TS_malQtaj,XhABW9Kt7S_malQtaj,idS_malQtaj,s46JIT1FaSRtiDN9gA,xZbMkBO1TSRtiDN9gA,XhABW9Kt7SRtiDN9gA,idSRtiDN9gA,s46JIT1FaaVMOm2H2m,xZbMkBO1TaVMOm2H2m,XhABW9Kt7aVMOm2H2m,idaVMOm2H2m,s46JIT1Fas65BA81EE,xZbMkBO1Ts65BA81EE,XhABW9Kt7s65BA81EE,ids65BA81EE,s46JIT1FaULrtAI3qJ,xZbMkBO1TULrtAI3qJ,XhABW9Kt7ULrtAI3qJ,idULrtAI3qJ,qTWKvqd3gP80XO5h76,Wdo9s3YM7P80XO5h76,vPIRIrOMpP80XO5h76,rRGoDN84BP80XO5h76,ctXB6c_GUP80XO5h76,idP80XO5h76,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const qgIwD7h0D3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"r0UMiXet1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-v1algy\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{y:undefined},xtuOTfnP8:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1q9f946-container\",\"data-framer-appear-id\":\"1q9f946\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(HeaderHeaderV1,{dxA6yqwDc:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",height:\"100%\",id:\"bN_8l8zlr\",layoutId:\"bN_8l8zlr\",style:{width:\"100%\"},variant:\"hQlvydyiV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1oziaqg\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4q63m\",\"data-framer-name\":\"Decoration Element\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 341.691 427.944 L 52.719 587.732 C 3.996 614.674 -13.274 675.324 14.144 723.199 C 41.563 771.074 103.288 788.044 152.011 761.103 L 786.849 410.067 C 890.384 352.816 927.082 223.933 868.82 122.198 L 850.973 91.037 C 802.565 6.512 693.588 -23.449 607.566 24.118 C 562.846 48.845 531.101 91.268 520.412 140.583 L 505.605 208.903 C 485.502 301.652 425.797 381.437 341.691 427.944 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:11745733078},xtuOTfnP8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 341.691 427.944 L 52.719 587.732 C 3.996 614.674 -13.274 675.324 14.144 723.199 C 41.563 771.074 103.288 788.044 152.011 761.103 L 786.849 410.067 C 890.384 352.816 927.082 223.933 868.82 122.198 L 850.973 91.037 C 802.565 6.512 693.588 -23.449 607.566 24.118 C 562.846 48.845 531.101 91.268 520.412 140.583 L 505.605 208.903 C 485.502 301.652 425.797 381.437 341.691 427.944 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:11745733078}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mhqcb2\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 392.821 500.694 L 60.608 687.646 C 4.594 719.168 -15.261 790.129 16.261 846.143 C 47.783 902.157 118.744 922.012 174.758 890.49 L 904.592 479.778 C 1023.62 412.795 1065.81 262.002 998.829 142.972 L 978.312 106.513 C 922.66 7.62 797.376 -27.435 698.482 28.218 C 647.07 57.149 610.574 106.783 598.286 164.482 L 581.263 244.416 C 558.152 352.933 489.513 446.281 392.821 500.694 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:12515555378,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 341.84 427.96 L 52.869 587.748 C 4.146 614.69 -13.125 675.34 14.294 723.215 C 41.713 771.091 103.438 788.061 152.161 761.119 L 786.998 410.083 C 890.532 352.832 927.23 223.95 868.969 122.215 L 851.123 91.054 C 802.715 6.529 693.738 -23.432 607.716 24.134 C 562.996 48.862 531.25 91.284 520.562 140.599 L 505.755 208.919 C 485.652 301.668 425.947 381.453 341.84 427.96 Z\" fill=\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\"></path></svg>',svgContentId:8717450734},xtuOTfnP8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 341.84 427.96 L 52.869 587.748 C 4.146 614.69 -13.125 675.34 14.294 723.215 C 41.713 771.091 103.438 788.061 152.161 761.119 L 786.998 410.083 C 890.532 352.832 927.23 223.95 868.969 122.215 L 851.123 91.054 C 802.715 6.529 693.738 -23.432 607.716 24.134 C 562.996 48.862 531.25 91.284 520.562 140.599 L 505.755 208.919 C 485.652 301.668 425.947 381.453 341.84 427.96 Z\" fill=\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\"></path></svg>',svgContentId:8717450734}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-blx0f1\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1032 907\"><path d=\"M 392.993 500.713 L 60.78 687.665 C 4.766 719.187 -15.089 790.148 16.433 846.162 C 47.955 902.176 118.916 922.031 174.93 890.509 L 904.764 479.797 C 1023.79 412.814 1065.98 262.021 999.001 142.991 L 978.484 106.533 C 922.832 7.639 797.548 -27.416 698.654 28.237 C 647.242 57.168 610.746 106.802 598.458 164.501 L 581.435 244.435 C 558.324 352.952 489.685 446.3 392.993 500.713 Z\" fill=\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\"></path></svg>',svgContentId:12083000591,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-22t2cv\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1oag9c2\",\"data-framer-appear-id\":\"1oag9c2\",\"data-framer-name\":\"Left Content\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pq20k4\",\"data-framer-name\":\"Gap 32px\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mj0pk\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-153b647\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Welcome to doctr X\"})}),className:\"framer-vufec9\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-yrkrfh\",\"data-styles-preset\":\"C76u7CJhG\",children:\"Holistic wellness for optimal living\"})}),className:\"framer-17lbx94\",\"data-framer-name\":\"Heading Extra Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",children:\"Lorem ipsum dolor sit amet consectetur commodo aliquam augue duis aliquet ipsum donec tempus ac interdum enim.\"})}),className:\"framer-1uzs5np\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99fv7o\",\"data-framer-name\":\"Buttons Row\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`min(min(${componentViewport?.width||\"100vw\"} - 16px, 1340px) - 40px, 590px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5fw97z-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Book an appointment\",height:\"100%\",id:\"XzTkxCIrZ\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks[0],layoutId:\"XzTkxCIrZ\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"aKpShWvoF\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"kLIkWvcbN\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`min(min(${componentViewport?.width||\"100vw\"} - 16px, 1340px) - 40px, 590px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68.11767578125,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ctqq5b-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{DA6inex61:resolvedLinks1[2],style:{height:\"100%\",width:\"100%\"}},xtuOTfnP8:{DA6inex61:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ComponentsSecondaryButton,{DA6inex61:resolvedLinks1[0],fZWHa84Hr:\"sXQKpLvOG\",height:\"100%\",id:\"V4aiVKch5\",iy9Qy96a_:true,kyYnMc5QF:\"Our specialities\",layoutId:\"V4aiVKch5\",oNAuR9F1L:\"xGgxtLvW1\",style:{height:\"100%\"},variant:\"Dj0HdGr9W\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pcvds3\",\"data-framer-name\":\"Flex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXJpdHkgQ2l0eSBCb2xk\",\"--framer-font-family\":'\"Clarity City Bold\", \"Clarity City Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.111em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb73a6fa-eb9b-4910-9bb7-d39b025196db, rgb(102, 110, 130))\"},children:\"5 stars on\"})}),className:\"framer-nt1duh\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Clarity City Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10rpu5l\",\"data-framer-name\":\"Reviews Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3r4qe\",\"data-framer-name\":\"Review Wrapper\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tr6ix2\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 183 33\"><path d=\"M 10.24 2.75 C 10.24 1.509 11.247 0.502 12.488 0.502 L 29.676 0.502 C 30.917 0.502 31.923 1.509 31.923 2.75 L 31.923 20.142 C 31.923 21.384 30.917 22.39 29.676 22.39 L 22.16 22.39 L 22.16 12.379 C 22.16 11.137 21.154 10.131 19.913 10.131 L 10.24 10.131 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 10.24 10.131 L 2.725 10.131 C 1.483 10.131 0.477 11.137 0.477 12.379 L 0.477 29.771 C 0.477 31.012 1.483 32.019 2.725 32.019 L 19.913 32.019 C 21.154 32.019 22.16 31.012 22.16 29.771 L 22.16 22.39 L 12.488 22.39 C 11.247 22.39 10.24 21.384 10.24 20.142 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 56.556 22.96 C 59.137 22.96 61.46 21.182 62.091 18.744 L 66.594 19.346 C 65.905 23.849 61.661 27.09 56.441 27.09 C 50.132 27.09 45.543 22.501 45.543 16.163 C 45.543 9.825 50.132 5.236 56.441 5.236 C 61.603 5.236 65.848 8.563 66.594 13.18 L 62.062 13.697 C 61.489 11.173 59.194 9.366 56.556 9.366 C 52.914 9.366 50.361 12.177 50.361 16.163 C 50.361 20.149 52.943 22.96 56.556 22.96 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 84.606 19.031 C 84.606 14.327 81.279 11.115 76.433 11.115 C 71.615 11.115 68.288 14.327 68.288 19.031 C 68.288 23.705 71.615 26.946 76.433 26.946 C 81.279 26.946 84.606 23.705 84.606 19.031 Z M 80.276 19.031 C 80.276 21.44 78.698 23.16 76.433 23.16 C 74.196 23.16 72.618 21.44 72.618 19.031 C 72.618 16.621 74.196 14.901 76.433 14.901 C 78.698 14.901 80.276 16.621 80.276 19.031 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 91.098 26.372 L 86.796 26.372 L 86.796 11.689 L 90.926 11.689 L 90.926 13.438 C 91.844 11.947 93.45 11.115 95.228 11.115 C 97.35 11.115 99.128 12.119 99.96 13.725 C 100.906 12.119 102.856 11.115 104.892 11.115 C 108.219 11.115 110.542 13.61 110.542 17.138 L 110.542 26.372 L 106.24 26.372 L 106.24 17.998 C 106.24 16.249 105.15 14.958 103.516 14.901 C 101.852 14.901 100.734 16.191 100.734 17.998 L 100.734 26.372 L 96.432 26.372 L 96.432 17.998 C 96.432 16.134 95.4 14.901 93.794 14.901 C 92.159 14.901 91.098 16.134 91.098 17.998 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 122.279 26.946 C 126.38 26.946 129.247 23.677 129.247 19.031 C 129.247 14.385 126.351 11.115 122.279 11.115 C 120.242 11.115 118.55 12.004 117.375 13.467 L 117.375 11.689 L 113.13 11.689 L 113.13 32.968 L 117.432 32.968 L 117.432 24.594 C 118.608 26.085 120.271 26.946 122.279 26.946 Z M 124.946 19.031 C 124.946 21.354 123.34 23.074 121.103 23.074 C 118.866 23.074 117.26 21.354 117.26 19.031 C 117.26 16.708 118.866 14.987 121.103 14.987 C 123.311 14.987 124.946 16.679 124.946 19.031 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 142.811 13.725 L 142.811 11.689 L 147.113 11.689 L 147.113 26.372 L 142.811 26.372 L 142.811 24.336 C 141.664 25.971 139.914 26.946 137.821 26.946 C 133.691 26.946 130.795 23.677 130.795 19.031 C 130.795 14.385 133.691 11.115 137.821 11.115 C 139.914 11.115 141.664 12.09 142.811 13.725 Z M 138.939 23.16 C 141.176 23.16 142.782 21.411 142.782 19.031 C 142.782 16.65 141.176 14.901 138.939 14.901 C 136.702 14.901 135.096 16.65 135.096 19.031 C 135.096 21.411 136.702 23.16 138.939 23.16 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 154.161 11.689 L 149.974 11.689 L 149.974 26.372 L 154.276 26.372 L 154.276 18.113 C 154.276 16.249 155.653 14.901 157.345 14.901 C 159.037 14.901 160.069 16.163 160.069 17.941 L 160.069 26.372 L 164.371 26.372 L 164.371 17.195 C 164.371 13.668 162.134 11.115 158.836 11.115 C 156.915 11.115 155.194 12.09 154.161 13.668 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 167.585 29.298 L 167.585 32.481 C 168.388 32.797 169.506 32.997 170.424 32.997 C 173.407 32.997 174.984 30.674 176.361 26.889 L 182.039 11.689 L 177.565 11.689 L 174.296 21.153 L 170.309 11.689 L 165.606 11.689 L 172.546 26.516 C 171.887 28.294 171.17 29.584 169.334 29.584 C 168.818 29.584 168.101 29.47 167.585 29.298 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path></svg>',svgContentId:12493114026,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16my52z\",\"data-framer-name\":\"Stars Wrapper\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ak892e\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5fcgee\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ztk5x\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-109xn2i\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1srxvc4\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4eygp\",\"data-framer-name\":\"Review Wrapper\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mlfztp\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 31\"><path d=\"M 44.19 5.306 L 39.172 5.306 L 45.739 25.725 L 53.081 25.725 L 59.619 5.306 L 54.601 5.306 L 49.41 22.169 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 95.35 20.964 L 95.35 14.311 L 93.285 14.311 L 93.285 11.041 L 95.551 11.041 L 96.038 7.342 L 99.652 7.342 L 99.652 11.041 L 102.978 11.041 L 102.978 14.311 L 99.652 14.311 L 99.652 20.534 C 99.652 21.767 100.397 22.599 101.602 22.599 C 102.003 22.599 102.634 22.513 103.122 22.369 L 103.122 25.84 C 102.233 26.126 101.086 26.299 100.168 26.299 C 97.243 26.299 95.35 24.09 95.35 20.964 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 133.085 18.268 C 133.085 13.68 136.44 10.468 141.172 10.468 C 145.875 10.468 149.087 13.68 149.087 18.326 C 149.087 18.699 149.087 19.301 149.03 19.616 L 137.53 19.588 C 137.903 21.652 139.308 23 141.258 23 C 142.864 23 144.212 22.083 144.671 20.792 L 148.542 21.337 C 147.825 24.205 144.728 26.299 141.143 26.299 C 136.411 26.299 133.085 23 133.085 18.268 Z M 137.501 17.007 L 144.728 17.007 C 144.47 15.142 143.036 13.766 141.086 13.766 C 139.193 13.766 137.874 15.056 137.501 17.007 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 122.31 11.041 L 126.439 11.041 L 126.439 12.905 C 127.3 11.443 128.762 10.496 130.368 10.496 C 130.942 10.496 131.544 10.64 132.118 10.869 L 132.118 14.684 C 131.315 14.339 130.34 14.167 129.709 14.167 C 127.845 14.167 126.611 15.716 126.611 17.924 L 126.611 25.725 L 122.31 25.725 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 115.253 25.725 L 119.44 25.725 L 119.44 11.041 L 115.138 11.041 L 115.138 19.301 C 115.138 21.165 113.761 22.513 112.069 22.513 C 110.377 22.513 109.345 21.251 109.345 19.473 L 109.345 11.041 L 105.043 11.041 L 105.043 20.219 C 105.043 23.746 107.28 26.299 110.578 26.299 C 112.5 26.299 114.22 25.323 115.253 23.717 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 81.439 11.041 L 77.252 11.041 L 77.252 25.725 L 81.553 25.725 L 81.553 17.465 C 81.553 15.601 82.93 14.253 84.622 14.253 C 86.314 14.253 87.347 15.515 87.347 17.293 L 87.347 25.725 L 91.648 25.725 L 91.648 16.548 C 91.648 13.02 89.411 10.468 86.113 10.468 C 84.192 10.468 82.471 11.443 81.439 13.02 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 59.052 18.268 C 59.052 13.68 62.407 10.468 67.139 10.468 C 71.843 10.468 75.055 13.68 75.055 18.326 C 75.055 18.699 75.055 19.301 74.997 19.616 L 63.497 19.588 C 63.87 21.652 65.275 23 67.225 23 C 68.832 23 70.179 22.083 70.638 20.792 L 74.51 21.337 C 73.793 24.205 70.696 26.299 67.111 26.299 C 62.379 26.299 59.052 23 59.052 18.268 Z M 63.469 17.007 L 70.696 17.007 C 70.438 15.142 69.004 13.766 67.054 13.766 C 65.161 13.766 63.841 15.056 63.469 17.007 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 10.915 10.607 L 10.914 1.356 C 10.914 0.885 11.297 0.502 11.768 0.502 L 21.019 0.502 C 26.599 0.502 31.123 5.026 31.123 10.607 C 31.123 15.49 27.66 19.564 23.055 20.506 C 22.397 20.64 21.716 20.711 21.019 20.711 L 21.019 11.563 C 21.015 11.034 20.586 10.607 20.056 10.607 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path><path d=\"M 10.915 10.607 L 10.915 19.749 C 10.915 20.28 11.345 20.711 11.877 20.711 L 21.019 20.711 L 21.019 29.853 C 21.019 30.384 20.588 30.815 20.056 30.815 L 10.914 30.815 C 5.334 30.815 0.81 26.291 0.81 20.711 C 0.81 15.131 5.334 10.607 10.915 10.607 Z\" fill=\"var(--token-091448c4-4a7f-48fe-af35-4e97250b8cf9, rgb(191, 198, 214))\"></path></svg>',svgContentId:11398245727,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7vmx7\",\"data-framer-name\":\"Stars Wrapper\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-emg99d\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mv0pv6\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-opdrd5\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9bg57w\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hb9x92\",\"data-framer-name\":\"Star Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.091 16.495 C 9.435 16.275 9.875 16.275 10.22 16.495 L 13.956 18.883 C 14.747 19.389 15.752 18.681 15.549 17.76 L 14.52 13.09 C 14.438 12.719 14.56 12.333 14.839 12.077 L 18.31 8.892 C 18.988 8.271 18.607 7.136 17.694 7.054 L 13.227 6.653 C 12.833 6.617 12.492 6.362 12.344 5.993 L 10.632 1.716 C 10.278 0.83 9.033 0.83 8.678 1.716 L 6.967 5.993 C 6.819 6.362 6.478 6.617 6.083 6.653 L 1.616 7.054 C 0.703 7.136 0.323 8.271 1 8.892 L 4.472 12.077 C 4.751 12.333 4.872 12.719 4.79 13.09 L 3.762 17.76 C 3.559 18.681 4.563 19.389 5.354 18.883 Z\" fill=\"rgb(253,181,42)\"></path></svg>',svgContentId:11587165324,withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{background:{alt:\"Holistic wellness for optimal living - Doctr X Framer Template\",fit:\"fill\",intrinsicHeight:663.5,intrinsicWidth:686.5,pixelHeight:1327,pixelWidth:1373,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 16px, 1340px) - 40px)`,src:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png 1373w\"}},xtuOTfnP8:{background:{alt:\"Holistic wellness for optimal living - Doctr X Framer Template\",fit:\"fill\",intrinsicHeight:663.5,intrinsicWidth:686.5,pixelHeight:1327,pixelWidth:1373,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 16px, 1340px) - 48px)`,src:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png 1373w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"Holistic wellness for optimal living - Doctr X Framer Template\",fit:\"fill\",intrinsicHeight:663.5,intrinsicWidth:686.5,pixelHeight:1327,pixelWidth:1373,sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 16px, 1340px) - 90px) / 2, 1px), 632px), 540px)`,src:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xo8Wji5ugD13Rj2mp3kSsTLwKeI.png 1373w\"},className:\"framer-1p1x1gp\",\"data-framer-appear-id\":\"1p1x1gp\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-11g4gm8\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nmvno9\",\"data-framer-name\":\"Container Default\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:472,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1odzjb4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"zyjyx6LUM\"},xtuOTfnP8:{variant:\"qYqVmhB95\"}},children:/*#__PURE__*/_jsx(PageComponentsBookingCard,{height:\"100%\",id:\"wrY00X5b0\",layoutId:\"wrY00X5b0\",style:{width:\"100%\"},variant:\"jNnyEx2v3\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tjiovk\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yj65u0\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nvzzz\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{background:{alt:\"Our caring doctors are here for you | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1437,pixelWidth:1335,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1340px) - 40px, 640px)`,src:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png\",srcSet:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png?scale-down-to=1024 951w,https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png 1335w\"}},xtuOTfnP8:{background:{alt:\"Our caring doctors are here for you | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1437,pixelWidth:1335,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`,src:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png\",srcSet:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png?scale-down-to=1024 951w,https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png 1335w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Our caring doctors are here for you | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1437,pixelWidth:1335,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 172px) * 0.5455, 1px), 640px) * 0.86)`,src:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png\",srcSet:\"https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png?scale-down-to=1024 951w,https://framerusercontent.com/images/ndXoeaCiAmYM6Zvs5MGdHeGhJu4.png 1335w\"},className:\"framer-1bkzcfs\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wl60pz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1om6s4p\",\"data-framer-name\":\"Stat Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1f6x8n0\",\"data-styles-preset\":\"pPhACFuB3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"10\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"K\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1f6x8n0\",\"data-styles-preset\":\"pPhACFuB3\",children:[\"10\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"K\"})]})}),className:\"framer-d5070m\",\"data-framer-name\":\"Heading Medium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12h2nmz\",\"data-styles-preset\":\"I7rxQklnN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Happy clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12h2nmz\",\"data-styles-preset\":\"I7rxQklnN\",children:\"Happy clients\"})}),className:\"framer-13tome5\",\"data-framer-name\":\"Text Single 200 Regular\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oysdeu\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5qk48\",\"data-framer-name\":\"Stat Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1f6x8n0\",\"data-styles-preset\":\"pPhACFuB3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"500\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"+\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1f6x8n0\",\"data-styles-preset\":\"pPhACFuB3\",children:[\"500\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"+\"})]})}),className:\"framer-1n4migy\",\"data-framer-name\":\"Heading Medium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12h2nmz\",\"data-styles-preset\":\"I7rxQklnN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Positive reviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12h2nmz\",\"data-styles-preset\":\"I7rxQklnN\",children:\"Positive reviews\"})}),className:\"framer-hh4au6\",\"data-framer-name\":\"Text Single 200 Regular\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohed20\",\"data-framer-name\":\"Decoration Element\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xtuOTfnP8:{svgContentId:9832097903}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gmc2li\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 585 585\"><path d=\"M 584.781 292.514 C 584.781 453.781 454.048 584.514 292.781 584.514 C 131.514 584.514 0.781 453.781 0.781 292.514 C 0.781 131.247 131.514 0.514 292.781 0.514 C 454.048 0.514 584.781 131.247 584.781 292.514 Z\" fill=\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\"></path></svg>',svgContentId:8808717070,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 281 281\"><path d=\"M 280.384 140.46 C 280.384 217.851 217.647 280.588 140.257 280.588 C 62.867 280.588 0.13 217.851 0.13 140.46 C 0.13 63.07 62.867 0.333 140.257 0.333 C 217.647 0.333 280.384 63.07 280.384 140.46 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:12304387309}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fbw62d\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 377 377\"><path d=\"M 376.174 188.447 C 376.174 292.277 292.003 376.447 188.174 376.447 C 84.344 376.447 0.174 292.277 0.174 188.447 C 0.174 84.618 84.344 0.447 188.174 0.447 C 292.003 0.447 376.174 84.618 376.174 188.447 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:11185004880,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omgwqg\",\"data-framer-name\":\"Right Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w4myf1\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"About us\"})}),className:\"framer-1r1cibb\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9ph7x\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",children:\"Our caring doctors are here for you\"})}),className:\"framer-10pnyyu\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",children:\"Lorem ipsum dolor sit amet consectetur venenatis nisi et in quis fermentum vel magna magna risus arcu et turpis ac lacus quam etiam integer eget dolor.\"})}),className:\"framer-17h41fo\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btr85v\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hudfh3\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfjwwr\",\"data-framer-name\":\"Bottom Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7nl7je\",\"data-styles-preset\":\"HZ7ISd1tL\",style:{\"--framer-text-color\":\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\"},children:\"\u201COur goal is to provide you with the necessary resources and advice to turn my business idea\u201D\"})}),className:\"framer-166jyb\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5c29a\",\"data-framer-name\":\"Inner Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2d9q3h\",\"data-framer-name\":\"Profile Wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"John Carter - Doctr X Framer Template\",fit:\"fill\",pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/VaXsHT5oadOB0LnXexYmpJKxo3g.png\"},className:\"framer-1eznmlq\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dezlzq\",\"data-framer-name\":\"Profile Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7nl7je\",\"data-styles-preset\":\"HZ7ISd1tL\",style:{\"--framer-text-color\":\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\"},children:\"John Carter\"})}),className:\"framer-xxzkgw\",\"data-framer-name\":\"Text Single 200 Bold\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aklflo\",\"data-styles-preset\":\"M1vzPXv6j\",children:\"Cardiologist\"})}),className:\"framer-16nnvpa\",\"data-framer-name\":\"Text Single 200 Regular\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eat92b\",\"data-framer-name\":\"Signature\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 57\"><path d=\"M 5.59 21.895 C 11.965 18.27 25.64 9.321 29.34 2.521 C 22.798 20.854 8.49 56.87 3.59 54.27 C -2.535 51.02 14.59 27.77 25.34 21.27 C 36.09 14.771 24.715 27.645 23.34 29.27 C 21.965 30.895 34.84 20.895 35.715 23.645 C 36.59 26.395 40.84 20.645 42.965 21.27 C 45.09 21.895 43.59 25.27 49.34 22.77 C 55.09 20.27 57.215 22.52 60.84 21.895 C 64.465 21.27 70.84 19.77 74.59 21.27 C 77.59 22.471 79.923 20.354 80.715 19.145\" fill=\"transparent\" stroke-width=\"3\" stroke=\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9646295422,withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yujl29-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks2[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Book an appointment\",height:\"100%\",id:\"JLooqUykF\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks2[0],layoutId:\"JLooqUykF\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"aKpShWvoF\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"kLIkWvcbN\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1a550zk\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rbc606\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5pvm5y\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7p60dn\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Specialities\"})}),className:\"framer-jsi1bv\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipquvv\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-color\":\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\"},children:\"Our wide range of specialities\"})}),className:\"framer-12xze8l\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",style:{\"--framer-text-color\":\"var(--token-51c5191e-d1ea-4f6d-a69c-52e8381085e7, rgb(213, 223, 240))\"},children:\"Lorem ipsum dolor sit amet consectetur non venenatis nisi et in quis fermentum vel magna.\"})}),className:\"framer-1c83vej\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k5z2n8-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{DA6inex61:resolvedLinks3[2],style:{height:\"100%\",width:\"100%\"}},xtuOTfnP8:{DA6inex61:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ComponentsSecondaryButton,{DA6inex61:resolvedLinks3[0],fZWHa84Hr:\"sXQKpLvOG\",height:\"100%\",id:\"oRuD48SPc\",iy9Qy96a_:true,kyYnMc5QF:\"Browse all specialities\",layoutId:\"oRuD48SPc\",oNAuR9F1L:\"xGgxtLvW1\",style:{height:\"100%\"},variant:\"zBSSBkc9D\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kff408\",\"data-framer-name\":\"Slideshow Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lszyga-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{arrowOptions:{arrowFill:\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\",arrowGap:16,arrowPadding:-100,arrowPaddingBottom:-88,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-112,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:64,leftArrow:\"https://framerusercontent.com/images/dGyvnrk9QN6OUR7I6RyDDY1sJ3s.svg\",rightArrow:\"https://framerusercontent.com/images/qrbrgwJKb00deyqyloBBXnhF14.svg\",showMouseControls:true},itemAmount:1},xtuOTfnP8:{arrowOptions:{arrowFill:\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\",arrowGap:10,arrowPadding:-100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:64,leftArrow:\"https://framerusercontent.com/images/dGyvnrk9QN6OUR7I6RyDDY1sJ3s.svg\",rightArrow:\"https://framerusercontent.com/images/qrbrgwJKb00deyqyloBBXnhF14.svg\",showMouseControls:true},itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\",arrowGap:100,arrowPadding:20,arrowPaddingBottom:-86,arrowPaddingLeft:0,arrowPaddingRight:-425,arrowPaddingTop:-88,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:64,leftArrow:\"https://framerusercontent.com/images/dGyvnrk9QN6OUR7I6RyDDY1sJ3s.svg\",rightArrow:\"https://framerusercontent.com/images/qrbrgwJKb00deyqyloBBXnhF14.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:28,height:\"100%\",id:\"Fg9Xf5wdw\",intervalControl:1.5,itemAmount:2,layoutId:\"Fg9Xf5wdw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxjsx9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GG9O_qS4q\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"GG9O_qS4q\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"GG9O_qS4q\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"GG9O_qS4q\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"GG9O_qS4q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"GG9O_qS4q\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pediatric\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idGG9O_qS4q,s46JIT1Fa:s46JIT1FaGG9O_qS4q,XhABW9Kt7:XhABW9Kt7GG9O_qS4q,xZbMkBO1T:xZbMkBO1TGG9O_qS4q},index)=>{s46JIT1FaGG9O_qS4q??=\"\";xZbMkBO1TGG9O_qS4q??=\"\";XhABW9Kt7GG9O_qS4q??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GG9O_qS4q-${idGG9O_qS4q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1FaGG9O_qS4q},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1FaGG9O_qS4q},webPageId:\"HO4EDhejA\"},nodeId:\"hBua8egV9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wtbv1r framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vzduxq-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7GG9O_qS4q,height:\"100%\",id:\"eJbEiFtGU\",layoutId:\"eJbEiFtGU\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1TGG9O_qS4q})})})})})})},idGG9O_qS4q);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vd0hho\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"S_malQtaj\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"S_malQtaj\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"S_malQtaj\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"S_malQtaj\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"S_malQtaj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"S_malQtaj\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Cardiology\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idS_malQtaj,s46JIT1Fa:s46JIT1FaS_malQtaj,XhABW9Kt7:XhABW9Kt7S_malQtaj,xZbMkBO1T:xZbMkBO1TS_malQtaj},index1)=>{s46JIT1FaS_malQtaj??=\"\";xZbMkBO1TS_malQtaj??=\"\";XhABW9Kt7S_malQtaj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`S_malQtaj-${idS_malQtaj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1FaS_malQtaj},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1FaS_malQtaj},webPageId:\"HO4EDhejA\"},nodeId:\"TzH_Se9L3\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ual4j3 framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14x47ut-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7S_malQtaj,height:\"100%\",id:\"CExHAsoeA\",layoutId:\"CExHAsoeA\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1TS_malQtaj})})})})})})},idS_malQtaj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-193f4np\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SRtiDN9gA\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"SRtiDN9gA\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"SRtiDN9gA\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"SRtiDN9gA\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"SRtiDN9gA\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SRtiDN9gA\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Ophthalmology\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idSRtiDN9gA,s46JIT1Fa:s46JIT1FaSRtiDN9gA,XhABW9Kt7:XhABW9Kt7SRtiDN9gA,xZbMkBO1T:xZbMkBO1TSRtiDN9gA},index2)=>{s46JIT1FaSRtiDN9gA??=\"\";xZbMkBO1TSRtiDN9gA??=\"\";XhABW9Kt7SRtiDN9gA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SRtiDN9gA-${idSRtiDN9gA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1FaSRtiDN9gA},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1FaSRtiDN9gA},webPageId:\"HO4EDhejA\"},nodeId:\"PBCLBhhLz\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p9190y framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sgq7mv-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7SRtiDN9gA,height:\"100%\",id:\"b0F9RLF3d\",layoutId:\"b0F9RLF3d\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1TSRtiDN9gA})})})})})})},idSRtiDN9gA);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1coovmn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"aVMOm2H2m\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"aVMOm2H2m\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"aVMOm2H2m\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"aVMOm2H2m\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"aVMOm2H2m\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aVMOm2H2m\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pathology\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idaVMOm2H2m,s46JIT1Fa:s46JIT1FaaVMOm2H2m,XhABW9Kt7:XhABW9Kt7aVMOm2H2m,xZbMkBO1T:xZbMkBO1TaVMOm2H2m},index3)=>{s46JIT1FaaVMOm2H2m??=\"\";xZbMkBO1TaVMOm2H2m??=\"\";XhABW9Kt7aVMOm2H2m??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aVMOm2H2m-${idaVMOm2H2m}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1FaaVMOm2H2m},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1FaaVMOm2H2m},webPageId:\"HO4EDhejA\"},nodeId:\"vUE_cNP1Y\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hhhe7f framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kripsa-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7aVMOm2H2m,height:\"100%\",id:\"Clbh_QYSS\",layoutId:\"Clbh_QYSS\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1TaVMOm2H2m})})})})})})},idaVMOm2H2m);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bfp8pw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"s65BA81EE\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"s65BA81EE\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"s65BA81EE\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"s65BA81EE\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"s65BA81EE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"s65BA81EE\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pulmonology\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:ids65BA81EE,s46JIT1Fa:s46JIT1Fas65BA81EE,XhABW9Kt7:XhABW9Kt7s65BA81EE,xZbMkBO1T:xZbMkBO1Ts65BA81EE},index4)=>{s46JIT1Fas65BA81EE??=\"\";xZbMkBO1Ts65BA81EE??=\"\";XhABW9Kt7s65BA81EE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`s65BA81EE-${ids65BA81EE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1Fas65BA81EE},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1Fas65BA81EE},webPageId:\"HO4EDhejA\"},nodeId:\"IFCU8Blkw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-camm77 framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jydalm-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7s65BA81EE,height:\"100%\",id:\"SDPeBoreo\",layoutId:\"SDPeBoreo\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1Ts65BA81EE})})})})})})},ids65BA81EE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-af2xm1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ULrtAI3qJ\",data:Reviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ULrtAI3qJ\",name:\"s46JIT1Fa\",type:\"Identifier\"},{collection:\"ULrtAI3qJ\",name:\"xZbMkBO1T\",type:\"Identifier\"},{collection:\"ULrtAI3qJ\",name:\"XhABW9Kt7\",type:\"Identifier\"},{collection:\"ULrtAI3qJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ULrtAI3qJ\",name:\"xZbMkBO1T\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Orthopedic\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idULrtAI3qJ,s46JIT1Fa:s46JIT1FaULrtAI3qJ,XhABW9Kt7:XhABW9Kt7ULrtAI3qJ,xZbMkBO1T:xZbMkBO1TULrtAI3qJ},index5)=>{s46JIT1FaULrtAI3qJ??=\"\";xZbMkBO1TULrtAI3qJ??=\"\";XhABW9Kt7ULrtAI3qJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ULrtAI3qJ-${idULrtAI3qJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s46JIT1Fa:s46JIT1FaULrtAI3qJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s46JIT1Fa:s46JIT1FaULrtAI3qJ},webPageId:\"HO4EDhejA\"},nodeId:\"OKM1MHIaO\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uc3xtt framer-13tg0d5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gid213-container\",children:/*#__PURE__*/_jsx(CMSServiceCard,{H6VkK3Rgf:XhABW9Kt7ULrtAI3qJ,height:\"100%\",id:\"PsVILtJY7\",layoutId:\"PsVILtJY7\",style:{height:\"100%\",width:\"100%\"},variant:\"p3L4Gk8c1\",width:\"100%\",YEdUAIKbA:xZbMkBO1TULrtAI3qJ})})})})})})},idULrtAI3qJ);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1c0mzue\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vaipvn\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1reka5u\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Why choose us\"})}),className:\"framer-10cb2vp\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-alignment\":\"left\"},children:\"The right care for your loved ones\"})})},xtuOTfnP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-alignment\":\"left\"},children:\"The right care for your loved ones\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-alignment\":\"center\"},children:\"The right care for your loved ones\"})}),className:\"framer-dzqepq\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo6l01\",\"data-framer-name\":\"Bottom Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3wehp\",\"data-framer-name\":\"Video Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vppire\",\"data-framer-name\":\"Decoration Element\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-h64tou\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 755 609\"><path d=\"M 110.981 201.33 C 126.096 191.593 143.046 186.26 159.966 180.781 C 180.758 174.002 202.187 169.368 223.223 163.486 C 235.694 160.021 247.939 155.595 260.024 150.987 C 269.065 147.586 278.109 143.145 286.887 138.911 C 299.892 132.885 312.248 125.554 323.762 117.032 C 329.298 112.808 335.735 109.759 341.502 105.839 C 351.727 98.97 361.763 91.775 371.87 84.701 L 373.48 83.775 C 385.487 75.99 397.612 68.41 409.429 60.298 C 419.962 52.663 431.027 45.783 442.539 39.712 C 457.264 32.438 471.894 25.001 487.479 19.307 C 499.338 14.861 511.422 11.042 523.681 7.863 C 552.854 -0.088 583.336 -1.98 613.223 2.307 C 625.027 4.267 636.635 7.232 647.919 11.171 C 655.207 13.584 661.607 17.601 668.765 19.979 C 671.378 20.878 672.312 24.108 674.564 24.669 C 682.961 26.717 687.545 34.345 694.918 37.856 C 695.813 38.176 696.59 38.756 697.148 39.522 C 699.989 43.286 703.429 46.563 707.335 49.222 C 721.121 62.242 732.266 77.775 740.168 94.982 C 745.175 105.068 748.987 115.702 751.528 126.671 C 753.903 139.387 754.865 152.331 754.394 165.268 C 754.084 186.202 748.726 206.778 738.77 225.266 C 730.765 240.756 720.641 255.074 708.688 267.81 C 698.61 278.43 687.776 288.316 676.272 297.389 C 671.314 301.281 666.084 304.892 660.73 308.574 C 647.09 318.401 632.917 327.47 618.274 335.741 C 608.902 341.135 599.529 346.53 590.341 352.146 C 580.462 358.378 570.797 364.978 561.417 372.07 C 556.146 376.086 550.692 379.881 545.356 383.881 C 529.973 395.568 515.464 408.354 501.946 422.136 C 485.001 439.243 469.104 457.346 454.344 476.347 C 444.505 489.11 434.848 502.095 425.227 514.95 C 411.058 534.006 394.55 551.231 376.089 566.223 C 373.539 568.128 370.877 569.879 368.116 571.467 C 364.561 573.542 361.167 575.879 357.962 578.458 C 355.534 580.534 352.806 582.232 349.871 583.498 C 335.549 590.838 320.545 596.767 305.072 601.2 C 297.345 602.972 289.653 604.614 281.824 605.734 C 265.148 608.123 248.266 608.683 231.483 607.404 C 215.141 606.144 198.932 603.585 183.011 599.752 C 167.295 596.055 152.092 590.485 137.731 583.163 C 130.211 579.683 123.131 575.73 115.817 572.13 C 107.586 568.246 99.572 563.927 91.808 559.191 C 81.813 553.136 72.595 545.899 64.353 537.64 C 56.289 529.229 50.142 519.279 42.98 510.24 C 37.152 503.219 32.515 495.403 26.852 488.286 C 18.254 477.741 11.937 465.539 8.295 452.44 C 4.289 438.866 1.738 424.903 0.685 410.784 C 0.255 399.772 0.618 388.741 1.772 377.775 C 3.008 362.044 5.678 346.451 9.749 331.188 C 14.293 314.728 21.202 298.997 30.265 284.485 C 35.944 275.755 41.262 266.687 47.722 258.545 C 59.103 243.372 72.177 229.526 86.69 217.277 C 94.449 211.467 102.561 206.141 110.981 201.33 Z\" fill=\"var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, rgb(12, 185, 241))\"></path></svg>',svgContentId:11157271362,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-doija5\",\"data-framer-name\":\"Element\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 549 549\"><path d=\"M 249.578 494.065 C 239.149 484.195 231.827 472.074 224.397 460.004 C 215.23 445.18 207.625 429.46 199.116 414.279 C 194.088 405.274 188.35 396.626 182.499 388.136 C 178.158 381.776 173.003 375.609 168.059 369.609 C 160.927 360.674 152.894 352.487 144.085 345.176 C 139.75 341.685 136.168 337.275 132.029 333.548 C 124.753 326.923 117.257 320.508 109.843 314.014 L 108.818 312.941 C 100.495 305.11 92.31 297.148 83.766 289.526 C 75.833 282.808 68.393 275.536 61.503 267.765 C 53.075 257.733 44.537 247.805 37.186 236.809 C 31.505 228.464 26.271 219.826 21.507 210.932 C 9.867 189.839 2.728 166.592 0.537 142.641 C -0.12 133.132 0.048 123.585 1.037 114.105 C 1.574 108.007 3.531 102.295 4.064 96.305 C 4.283 94.112 6.639 92.78 6.66 90.931 C 6.704 84.043 11.826 79.057 13.206 72.686 C 13.291 71.933 13.601 71.222 14.096 70.645 C 16.517 67.737 18.443 64.455 19.8 60.93 C 27.435 47.803 37.528 36.248 49.533 26.888 C 56.5 21.111 64.118 16.156 72.234 12.123 C 81.749 7.888 91.705 4.706 101.921 2.634 C 118.369 -1.07 135.473 -0.796 151.795 3.432 C 165.408 6.712 178.497 11.855 190.688 18.713 C 200.873 24.516 210.623 31.043 219.862 38.242 C 223.829 41.349 227.627 44.718 231.504 48.171 C 241.729 56.882 251.46 66.149 260.653 75.929 C 266.616 82.171 272.58 88.412 278.682 94.47 C 285.395 100.945 292.356 107.186 299.65 113.114 C 303.773 116.439 307.756 119.947 311.878 123.326 C 323.883 133.037 336.586 141.863 349.886 149.735 C 366.424 159.635 383.548 168.534 401.165 176.385 C 412.983 181.6 424.942 186.632 436.792 191.661 C 454.342 199.044 470.892 208.582 486.056 220.053 C 488.021 221.669 489.886 223.401 491.641 225.239 C 493.926 227.601 496.385 229.789 499 231.785 C 501.075 233.275 502.911 235.067 504.447 237.102 C 512.852 246.809 520.279 257.311 526.622 268.457 C 529.443 274.107 532.156 279.754 534.487 285.606 C 539.452 298.069 543.023 311.035 545.137 324.272 C 547.184 337.164 548.189 350.197 548.143 363.247 C 548.166 376.114 546.627 388.935 543.56 401.434 C 542.231 407.913 540.45 414.139 538.989 420.481 C 537.476 427.586 535.582 434.605 533.315 441.509 C 530.429 450.39 526.475 458.891 521.538 466.828 C 516.45 474.656 509.801 481.291 504.053 488.539 C 499.638 494.374 494.378 499.437 489.858 505.162 C 483.198 513.807 474.817 520.996 465.237 526.284 C 455.354 531.942 444.895 536.547 434.036 540.022 C 425.495 542.429 416.791 544.226 407.991 545.398 C 395.445 547.403 382.742 548.272 370.036 547.995 C 356.306 547.577 342.708 545.189 329.663 540.905 C 321.774 538.152 313.688 535.741 306.114 532.272 C 292.122 526.318 278.856 518.802 266.571 509.871 C 260.582 504.957 254.907 499.678 249.578 494.065 Z\" fill=\"var(--token-65c01b89-cbea-44ad-912d-219cc958c369, rgb(170, 234, 255))\"></path></svg>',svgContentId:10261915638,withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{background:{alt:\"The righ care for your loved ones | Doctr X Framer template\",fit:\"fill\",pixelHeight:1394,pixelWidth:1548,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png\",srcSet:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png 1548w\"}},xtuOTfnP8:{background:{alt:\"The righ care for your loved ones | Doctr X Framer template\",fit:\"fill\",pixelHeight:1394,pixelWidth:1548,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png\",srcSet:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png 1548w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"The righ care for your loved ones | Doctr X Framer template\",fit:\"fill\",pixelHeight:1394,pixelWidth:1548,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 128px) / 2, 1px)`,src:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png\",srcSet:\"https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqAyjKeR29SYptmmoCsKoGbhmE.png 1548w\"},className:\"framer-vvamop\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8tcxe\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{height:100,width:\"100px\"},xtuOTfnP8:{height:100,width:\"100px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"140px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{transformTemplate:transformTemplate1},xtuOTfnP8:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(Container,{className:\"framer-135dlpv-container\",id:\"135dlpv\",whileHover:animation9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"eg4txb2JB\"},xtuOTfnP8:{variant:\"eg4txb2JB\"}},children:/*#__PURE__*/_jsx(ComponentsVideoButton,{height:\"100%\",id:\"DUJo7YCVG\",layoutId:\"DUJo7YCVG\",qgIwD7h0D:qgIwD7h0D3bnx0g({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"QrjlotA3u\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-p1smws\"),\"data-framer-portal-id\":\"135dlpv\",exit:{opacity:0,transition:{delay:0,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"jPEeoQh0r\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation11,className:cx(scopingClassNames,\"framer-bb4kze-container\"),\"data-framer-portal-id\":\"135dlpv\",exit:animation10,initial:animation12,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"IYy0igRIs\",isMixedBorderRadius:false,isRed:true,layoutId:\"IYy0igRIs\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/smPos0mJvh8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation14,className:cx(scopingClassNames,\"framer-9dbdxm\"),\"data-framer-name\":\"Close Icon\",\"data-framer-portal-id\":\"135dlpv\",exit:animation13,initial:animation15,onTap:onTap1wnntms({overlay}),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cuz1pk\",\"data-framer-name\":\"Close\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 15.625 4.375 L 4.375 15.625 M 15.625 15.625 L 4.375 4.375\" fill=\"rgb(255,255,255)\" stroke-width=\"2\" stroke=\"hsl(0, 0%, 100%)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9443466799,withExternalLayout:true})})]}),getContainer())})})]})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1h1vf\",\"data-framer-name\":\"Right Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfc6oj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`},xtuOTfnP8:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:`max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 128px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o6wjsk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"aHO4D3jUE\"}},children:/*#__PURE__*/_jsx(PageComponentsIconLeftContent,{Db8dtKQFE:true,Fl0iRE0bn:\"Resident care\",height:\"100%\",id:\"fJBPUn8q3\",layoutId:\"fJBPUn8q3\",style:{width:\"100%\"},tkrtx9Vm8:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\",v0llRbTzw:addImageAlt({src:\"https://framerusercontent.com/images/B03ZBvkJZjVxKs4AGS9XZEKnWA.png\"},\"\"),variant:\"Sqc8fTke6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`},xtuOTfnP8:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:`max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 128px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kj836j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"UDPdRdqiG\"}},children:/*#__PURE__*/_jsx(PageComponentsIconLeftContent,{Db8dtKQFE:true,Fl0iRE0bn:\"Quality support\",height:\"100%\",id:\"VdAhLiYLk\",layoutId:\"VdAhLiYLk\",style:{width:\"100%\"},tkrtx9Vm8:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\",v0llRbTzw:addImageAlt({src:\"https://framerusercontent.com/images/khDDmzl4iI4EQEKoZC3rVARNpSw.png\"},\"\"),variant:\"pjnXJtYl5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`},xtuOTfnP8:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:`max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 128px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aloy43-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"UDPdRdqiG\"}},children:/*#__PURE__*/_jsx(PageComponentsIconLeftContent,{Db8dtKQFE:false,Fl0iRE0bn:\"24/7 nurse staff\",height:\"100%\",id:\"MmJhfCL20\",layoutId:\"MmJhfCL20\",style:{width:\"100%\"},tkrtx9Vm8:\"Lorem ipsum dolor sit amet consectetur sit dignissim pellentesque egestas.\",v0llRbTzw:addImageAlt({src:\"https://framerusercontent.com/images/5FYMPSwknI0yzv3560wRwvtKsww.png\"},\"\"),variant:\"pjnXJtYl5\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gldbnw-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks4[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Book an appointment\",height:\"100%\",id:\"t0SNx_lsB\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks4[0],layoutId:\"t0SNx_lsB\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"aKpShWvoF\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"kLIkWvcbN\",width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cmvaw\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{background:{alt:\"Book your medical appointment today | Doctr X Framer Template\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9295)`,src:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png\",srcSet:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=512 512w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png 4096w\"}},xtuOTfnP8:{background:{alt:\"Book your medical appointment today | Doctr X Framer Template\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png\",srcSet:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=512 512w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Book your medical appointment today | Doctr X Framer Template\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4333)`,src:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png\",srcSet:\"https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=512 512w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/beT2xra86p01LBx7vZTx7P8o.png 4096w\"},className:\"framer-1nwk2cj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12xbv4p\",\"data-framer-name\":\"Decoration Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulf4t7\",\"data-framer-name\":\"Element\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9g6ew\",\"data-framer-name\":\"Element\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n78t7o\",\"data-framer-name\":\"Container Default\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izf60o\",\"data-framer-name\":\"Right Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84u4bl\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\"},children:\"Book now\"})}),className:\"framer-xirk4n\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hkcytr\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-color\":\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\"},children:\"Book your medical appointment today\"})}),className:\"framer-1gxil7c\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",style:{\"--framer-text-color\":\"var(--token-51c5191e-d1ea-4f6d-a69c-52e8381085e7, rgb(213, 223, 240))\"},children:\"Lorem ipsum dolor sit amet consectetur non venenatis nisi et in quis fermentum vel magna.\"})}),className:\"framer-1838gum\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ufk164\",\"data-framer-name\":\"Buttons Row\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1340px) - 48px, 1px), 540px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4facr2-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks5[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Book an appointment\",height:\"100%\",id:\"Je8b6qQgK\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks5[0],layoutId:\"Je8b6qQgK\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"aKpShWvoF\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"xvF6LBnfT\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined},{href:{webPageId:\"zp4QUizMk\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1340px) - 48px, 1px), 540px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qy89gu-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{DA6inex61:resolvedLinks6[2],style:{height:\"100%\",width:\"100%\"}},xtuOTfnP8:{DA6inex61:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ComponentsSecondaryButton,{DA6inex61:resolvedLinks6[0],fZWHa84Hr:\"sXQKpLvOG\",height:\"100%\",id:\"FYFEiC1ES\",iy9Qy96a_:true,kyYnMc5QF:\"Our specialities\",layoutId:\"FYFEiC1ES\",oNAuR9F1L:\"sXQKpLvOG\",style:{height:\"100%\"},variant:\"zBSSBkc9D\",width:\"100%\"})})})})})})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5jjuj5\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112ia4h\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ic4yd0\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9bn2x\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Our professionals\"})}),className:\"framer-7nf8cx\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5troul\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",children:\"We have a highly trained team \"})}),className:\"framer-1bim5xz\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q8rf6d\",\"data-styles-preset\":\"c7WFHwZRF\",children:\"Lorem ipsum dolor sit amet consectetur venenatis ac volutpat vel viverra hendrerit sit eu tellus in ipsum sed venenatis dui a aliquam magna sem mi nullam augue quam viverra viverra ipsum pretium.\"})}),className:\"framer-pg5c8h\",\"data-framer-name\":\"Paragraph Default\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FJUAc6Cqt\"},implicitPathVariables:undefined},{href:{webPageId:\"FJUAc6Cqt\"},implicitPathVariables:undefined},{href:{webPageId:\"FJUAc6Cqt\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16n8aqg-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks7[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Meet our team\",height:\"100%\",id:\"efJVgHBrA\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks7[0],layoutId:\"efJVgHBrA\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"Ap7m21n8J\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"kLIkWvcbN\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18k0y5l\",\"data-framer-name\":\"Right Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{background:{alt:\"Sophie Moore | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1330,pixelWidth:1212,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px) * 0.95)`,src:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png\",srcSet:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png?scale-down-to=1024 933w,https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png 1212w\"}},xtuOTfnP8:{background:{alt:\"Sophie Moore | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1330,pixelWidth:1212,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px) * 0.9)`,src:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png\",srcSet:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png?scale-down-to=1024 933w,https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png 1212w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sophie Moore | Doctr X Framer Template\",fit:\"fill\",pixelHeight:1330,pixelWidth:1212,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 112px) / 3, 1px)`,src:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png\",srcSet:\"https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png?scale-down-to=1024 933w,https://framerusercontent.com/images/mJEQrSYA8UITju5QtL6HVk3YnA.png 1212w\"},className:\"framer-cbdne1\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4yr1d\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Pediatrician | Doctr X Framer Template\",fit:\"fill\",pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/ifbuYZt98uSyHjBFV6dIERkYJvg.png\"},className:\"framer-a9s696\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7rbp6\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXJpdHkgQ2l0eSBCb2xk\",\"--framer-font-family\":'\"Clarity City Bold\", \"Clarity City Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.111em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\"},children:\"Sophie Moore\"})}),className:\"framer-daxn6e\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Clarity City Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXJpdHkgQ2l0eSBNZWRpdW0=\",\"--framer-font-family\":'\"Clarity City Medium\", \"Clarity City Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.111em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb73a6fa-eb9b-4910-9bb7-d39b025196db, rgb(102, 110, 130))\"},children:\"Pediatrician\"})}),className:\"framer-1ju6koz\",\"data-framer-name\":\"Role\",fonts:[\"CUSTOM;Clarity City Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bylgp0\",\"data-framer-name\":\"Decoration Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-114738\",\"data-framer-name\":\"Element\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmwvcz\",\"data-framer-name\":\"Element\"})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bzwvo\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rms9ui\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6yov9\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Testimonials\"})}),className:\"framer-17809gs\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here\u2019s what our great customers say\"})}),className:\"framer-13cafhw\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlvn9p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"K5r7qNbHZ\"},xtuOTfnP8:{variant:\"XZTCBc2wW\"}},children:/*#__PURE__*/_jsx(PageComponentsSliderTestimonialsV1,{height:\"100%\",id:\"KSjdmBUj0\",layoutId:\"KSjdmBUj0\",style:{width:\"100%\"},variant:\"yX3nS8vPP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gip7bd\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined},{href:{webPageId:\"LvhO0nUgz\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g7muma-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{jBYwuSmZN:resolvedLinks8[2],style:{width:\"100%\"}},xtuOTfnP8:{jBYwuSmZN:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(ComponentsPrimaryButton,{cgcYD4_m5:\"Book an appointment\",height:\"100%\",id:\"mzklk4X5u\",IOBQb7f6g:false,jBYwuSmZN:resolvedLinks8[0],layoutId:\"mzklk4X5u\",luJazTLmF:true,MgUAMYQ4R:\"uVBMWj4qH\",mQpxXNJwh:\"aKpShWvoF\",NzMNe98r2:\"tLRAdjtRY\",pPjzCELDo:false,variant:\"kLIkWvcbN\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1y9ea4x\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i0n0fd\",\"data-framer-name\":\"Container Default\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s4osd9\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhlnvg\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lv001s\",\"data-styles-preset\":\"MKRnc7thw\",style:{\"--framer-text-color\":\"var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, rgb(61, 101, 255))\"},children:\"Our blog\"})}),className:\"framer-8if7qk\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p2ek1\",\"data-styles-preset\":\"dFqd7ZCRK\",children:\"Browse our latest articles on healthcare & wellness\"})}),className:\"framer-6jf5sr\",\"data-framer-name\":\"Heading Large\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iTXXB_dLp\"},implicitPathVariables:undefined},{href:{webPageId:\"iTXXB_dLp\"},implicitPathVariables:undefined},{href:{webPageId:\"iTXXB_dLp\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tzr3gn-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{DA6inex61:resolvedLinks9[2],style:{height:\"100%\",width:\"100%\"}},xtuOTfnP8:{DA6inex61:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(ComponentsSecondaryButton,{DA6inex61:resolvedLinks9[0],fZWHa84Hr:\"vR8dFEzys\",height:\"100%\",id:\"VGybbZUAo\",iy9Qy96a_:true,kyYnMc5QF:\"Browse all articles\",layoutId:\"VGybbZUAo\",oNAuR9F1L:\"eOUXdQug8\",style:{height:\"100%\"},variant:\"Dj0HdGr9W\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ov6f9t\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"P80XO5h76\",data:BlogPosts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"P80XO5h76\",name:\"qTWKvqd3g\",type:\"Identifier\"},{collection:\"P80XO5h76\",name:\"Wdo9s3YM7\",type:\"Identifier\"},{collection:\"P80XO5h76\",name:\"vPIRIrOMp\",type:\"Identifier\"},{collection:\"P80XO5h76\",name:\"rRGoDN84B\",type:\"Identifier\"},{collection:\"P80XO5h76\",name:\"ctXB6c_GU\",type:\"Identifier\"},{collection:\"P80XO5h76\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({ctXB6c_GU:ctXB6c_GUP80XO5h76,id:idP80XO5h76,qTWKvqd3g:qTWKvqd3gP80XO5h76,rRGoDN84B:rRGoDN84BP80XO5h76,vPIRIrOMp:vPIRIrOMpP80XO5h76,Wdo9s3YM7:Wdo9s3YM7P80XO5h76},index6)=>{qTWKvqd3gP80XO5h76??=\"\";vPIRIrOMpP80XO5h76??=\"\";rRGoDN84BP80XO5h76??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`P80XO5h76-${idP80XO5h76}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qTWKvqd3g:qTWKvqd3gP80XO5h76},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qTWKvqd3g:qTWKvqd3gP80XO5h76},webPageId:\"BJ2ACTiAy\"},nodeId:\"v_HiFA1Ga\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-12wy5gc framer-13tg0d5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px, 50px), 342px)`},xtuOTfnP8:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1340px) - 48px, 50px), 342px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:`max(max((min(${componentViewport?.width||\"100vw\"}, 1340px) - 104px) / 3, 50px), 342px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hs9435-container\",children:/*#__PURE__*/_jsx(CMSBlogPostImageCard,{height:\"100%\",HusVke_ec:vPIRIrOMpP80XO5h76,id:\"J6tkfxf9v\",iOMASWgfh:toDateString(ctXB6c_GUP80XO5h76,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"J6tkfxf9v\",style:{width:\"100%\"},variant:\"yo1YarjPE\",width:\"100%\",wMnPVAMbG:toResponsiveImage(Wdo9s3YM7P80XO5h76),X0tAjuiH0:rRGoDN84BP80XO5h76})})})})})})})},idP80XO5h76);})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1187,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r1hdb4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nz92k7zlm:{variant:\"FsBNDRm93\"},xtuOTfnP8:{variant:\"S9YgsV7y4\"}},children:/*#__PURE__*/_jsx(FooterFooterV1,{height:\"100%\",id:\"ofqgB1AC8\",layoutId:\"ofqgB1AC8\",style:{width:\"100%\"},variant:\"gjRItih3m\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WYr6H.framer-13tg0d5, .framer-WYr6H .framer-13tg0d5 { display: block; }\",\".framer-WYr6H.framer-v1algy { align-content: center; align-items: center; background-color: var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-WYr6H .framer-1q9f946-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-WYr6H .framer-1oziaqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 114px 8px 100px 8px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1i4q63m { background-color: var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, #3d65ff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; flex: none; height: 682px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 46%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WYr6H .framer-1mhqcb2 { flex: none; height: 907px; position: absolute; right: -228px; top: -29px; width: 1032px; }\",\".framer-WYr6H .framer-blx0f1 { flex: none; height: 907px; position: absolute; right: -310px; top: 117px; width: 1032px; }\",\".framer-WYr6H .framer-22t2cv, .framer-WYr6H .framer-112ia4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1oag9c2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 590px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-pq20k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-mj0pk, .framer-WYr6H .framer-hkcytr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-153b647, .framer-WYr6H .framer-1w4myf1, .framer-WYr6H .framer-7p60dn, .framer-WYr6H .framer-84u4bl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-vufec9, .framer-WYr6H .framer-17lbx94, .framer-WYr6H .framer-1uzs5np, .framer-WYr6H .framer-10pnyyu, .framer-WYr6H .framer-17h41fo, .framer-WYr6H .framer-166jyb, .framer-WYr6H .framer-12xze8l, .framer-WYr6H .framer-dzqepq, .framer-WYr6H .framer-1gxil7c, .framer-WYr6H .framer-1838gum, .framer-WYr6H .framer-1bim5xz, .framer-WYr6H .framer-pg5c8h, .framer-WYr6H .framer-17809gs, .framer-WYr6H .framer-13cafhw, .framer-WYr6H .framer-6jf5sr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WYr6H .framer-99fv7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-5fw97z-container, .framer-WYr6H .framer-1yujl29-container, .framer-WYr6H .framer-1gldbnw-container, .framer-WYr6H .framer-4facr2-container, .framer-WYr6H .framer-16n8aqg-container, .framer-WYr6H .framer-1g7muma-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WYr6H .framer-1ctqq5b-container { flex: none; height: 68px; position: relative; width: auto; }\",\".framer-WYr6H .framer-1pcvds3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-WYr6H .framer-nt1duh, .framer-WYr6H .framer-1r1cibb, .framer-WYr6H .framer-xxzkgw, .framer-WYr6H .framer-16nnvpa, .framer-WYr6H .framer-jsi1bv, .framer-WYr6H .framer-10cb2vp, .framer-WYr6H .framer-xirk4n, .framer-WYr6H .framer-7nf8cx, .framer-WYr6H .framer-8if7qk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WYr6H .framer-10rpu5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WYr6H .framer-1p3r4qe, .framer-WYr6H .framer-w4eygp { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-WYr6H .framer-1tr6ix2 { flex: none; height: 33px; position: relative; width: 183px; }\",\".framer-WYr6H .framer-16my52z, .framer-WYr6H .framer-1o7vmx7 { 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; position: relative; width: min-content; }\",\".framer-WYr6H .framer-ak892e, .framer-WYr6H .framer-5fcgee, .framer-WYr6H .framer-1ztk5x, .framer-WYr6H .framer-109xn2i, .framer-WYr6H .framer-1srxvc4, .framer-WYr6H .framer-emg99d, .framer-WYr6H .framer-mv0pv6, .framer-WYr6H .framer-opdrd5, .framer-WYr6H .framer-9bg57w, .framer-WYr6H .framer-hb9x92 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-WYr6H .framer-mlfztp { flex: none; height: 31px; position: relative; width: 150px; }\",\".framer-WYr6H .framer-1p1x1gp { aspect-ratio: 1.0346646571213263 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 800px; border-top-right-radius: 800px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 655px); max-width: 632px; min-height: 655px; min-width: 540px; overflow: visible; position: relative; width: 1px; }\",\".framer-WYr6H .framer-11g4gm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1nmvno9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1odzjb4-container, .framer-WYr6H .framer-o6wjsk-container, .framer-WYr6H .framer-kj836j-container, .framer-WYr6H .framer-1aloy43-container, .framer-WYr6H .framer-dlvn9p-container, .framer-WYr6H .framer-r1hdb4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1tjiovk, .framer-WYr6H .framer-5jjuj5, .framer-WYr6H .framer-1y9ea4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1yj65u0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 124px; height: min-content; justify-content: center; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-6nvzzz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px 0px 46px 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1bkzcfs { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 637px; overflow: hidden; position: relative; width: 86%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-WYr6H .framer-1wl60pz { align-content: flex-start; align-items: flex-start; background-color: var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 28px; box-shadow: 0px 2px 6px 0px rgba(31, 75, 160, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 42px 28px 42px 28px; position: absolute; right: 28px; width: min-content; }\",\".framer-WYr6H .framer-1om6s4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 118px; }\",\".framer-WYr6H .framer-d5070m, .framer-WYr6H .framer-13tome5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 118px; word-break: break-word; word-wrap: break-word; }\",\".framer-WYr6H .framer-oysdeu { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #d5dff0; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-x5qk48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 141px; }\",\".framer-WYr6H .framer-1n4migy, .framer-WYr6H .framer-hh4au6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 141px; word-break: break-word; word-wrap: break-word; }\",\".framer-WYr6H .framer-1ohed20 { background-color: var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, #3d65ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: -46px; flex: none; height: 479px; left: 80px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WYr6H .framer-gmc2li { bottom: -173px; flex: none; height: 585px; left: -177px; position: absolute; width: 585px; }\",\".framer-WYr6H .framer-fbw62d { bottom: -111px; flex: none; height: 377px; position: absolute; right: -138px; width: 377px; }\",\".framer-WYr6H .framer-1omgwqg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1t9ph7x, .framer-WYr6H .framer-5troul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1btr85v { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-hudfh3 { background-color: var(--token-51c5191e-d1ea-4f6d-a69c-52e8381085e7, #d5dff0); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1lfjwwr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-w5c29a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-2d9q3h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1eznmlq { border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; flex: none; height: 48px; overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WYr6H .framer-1dezlzq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1eat92b { flex: none; height: 57px; position: relative; width: 83px; }\",\".framer-WYr6H .framer-1a550zk { align-content: center; align-items: center; background-color: var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, #13182f); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 240px 0px 240px 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-rbc606 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-5pvm5y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; min-width: 410px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-WYr6H .framer-ipquvv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1c83vej { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 96%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WYr6H .framer-k5z2n8-container, .framer-WYr6H .framer-qy89gu-container, .framer-WYr6H .framer-1tzr3gn-container { flex: none; height: 72px; position: relative; width: auto; }\",\".framer-WYr6H .framer-kff408 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 0%) add; 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; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 0%) add; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-WYr6H .framer-lszyga-container { flex: none; height: 412px; position: relative; width: 852px; }\",\".framer-WYr6H .framer-1dxjsx9, .framer-WYr6H .framer-1vd0hho, .framer-WYr6H .framer-193f4np, .framer-WYr6H .framer-1coovmn, .framer-WYr6H .framer-1bfp8pw, .framer-WYr6H .framer-af2xm1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 412px; }\",\".framer-WYr6H .framer-1wtbv1r, .framer-WYr6H .framer-1ual4j3, .framer-WYr6H .framer-p9190y, .framer-WYr6H .framer-1hhhe7f, .framer-WYr6H .framer-camm77, .framer-WYr6H .framer-1uc3xtt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-WYr6H .framer-vzduxq-container, .framer-WYr6H .framer-14x47ut-container, .framer-WYr6H .framer-sgq7mv-container, .framer-WYr6H .framer-1kripsa-container, .framer-WYr6H .framer-jydalm-container, .framer-WYr6H .framer-gid213-container { flex: none; height: 412px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1c0mzue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1vaipvn, .framer-WYr6H .framer-rms9ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1reka5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 45%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1qo6l01 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-n3wehp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1vppire { background-color: var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, #3d65ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: -50px; flex: none; height: 481px; left: -132px; overflow: hidden; position: absolute; width: 585px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WYr6H .framer-h64tou { flex: none; height: 609px; left: -387px; position: absolute; top: -186px; width: 755px; }\",\".framer-WYr6H .framer-doija5 { bottom: -248px; flex: none; height: 549px; left: -105px; position: absolute; width: 549px; }\",\".framer-WYr6H .framer-vvamop { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 632px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WYr6H .framer-1u8tcxe { background-color: var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, #13182f); flex: none; height: 101%; left: -4px; opacity: 0.4; overflow: visible; pointer-events: none; position: absolute; top: -4px; width: 101%; }\",\".framer-WYr6H .framer-135dlpv-container { flex: none; height: 140px; left: calc(50.00000000000002% - 140px / 2); position: absolute; top: calc(50.00000000000002% - 140px / 2); width: 140px; }\",\".framer-WYr6H.framer-p1smws { background-color: var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, #13182f); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-WYr6H.framer-bb4kze-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 78%; z-index: 10; }\",\".framer-WYr6H.framer-9dbdxm { cursor: pointer; flex: none; height: 20px; overflow: visible; position: fixed; right: 20px; top: 20px; width: 20px; z-index: 10; }\",\".framer-WYr6H .framer-1cuz1pk { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-WYr6H .framer-a1h1vf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1rfc6oj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1cmvaw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 158px 0px 158px 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1nwk2cj { border-bottom-right-radius: 24px; border-top-right-radius: 24px; flex: none; height: 522px; left: 0px; position: absolute; top: calc(50.00000000000002% - 522px / 2); width: 43%; z-index: 2; }\",\".framer-WYr6H .framer-12xbv4p { align-content: center; align-items: center; background-color: var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, #3d65ff); border-bottom-left-radius: 40px; border-top-left-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 640px; overflow: hidden; padding: 0px; position: absolute; right: -36px; top: 50%; transform: translateY(-50%); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WYr6H .framer-1ulf4t7 { aspect-ratio: 1 / 1; background-color: var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, #0cb9f1); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: -312px; position: absolute; top: -280px; width: 800px; z-index: 10; }\",\".framer-WYr6H .framer-9g6ew { aspect-ratio: 1 / 1; background-color: var(--token-65c01b89-cbea-44ad-912d-219cc958c369, #aaeaff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -220px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); left: -120px; position: absolute; width: 640px; z-index: 1; }\",\".framer-WYr6H .framer-1n78t7o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-end; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; z-index: 1; }\",\".framer-WYr6H .framer-1izf60o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-WYr6H .framer-1ufk164 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WYr6H .framer-ic4yd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; max-width: 40%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1t9bn2x { align-content: flex-start; align-items: flex-start; 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-WYr6H .framer-18k0y5l { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-cbdne1 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 632px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WYr6H .framer-q4yr1d { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 40px; box-shadow: 0px 2px 6px 0px rgba(31, 75, 160, 0.08), 0px -2px 6px 0px rgba(30, 74, 160, 0.07999999821186066); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 40px; overflow: visible; padding: 24px; position: absolute; width: 290px; }\",\".framer-WYr6H .framer-a9s696 { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; }\",\".framer-WYr6H .framer-1p7rbp6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 125px; }\",\".framer-WYr6H .framer-daxn6e, .framer-WYr6H .framer-1ju6koz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 125px; word-break: break-word; word-wrap: break-word; }\",\".framer-WYr6H .framer-bylgp0 { background-color: var(--token-a486333b-86d1-4b3e-8f5e-2de5a770d483, #3d65ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: -50px; flex: none; height: 480px; left: -50px; overflow: hidden; position: absolute; width: 576px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WYr6H .framer-114738 { aspect-ratio: 1 / 1; background-color: var(--token-65c01b89-cbea-44ad-912d-219cc958c369, #aaeaff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -189px; flex: none; height: var(--framer-aspect-ratio-supported, 376px); position: absolute; right: -61px; width: 376px; }\",\".framer-WYr6H .framer-1dmwvcz { aspect-ratio: 1 / 1; background-color: var(--token-c3db12e9-bc43-48bd-9354-2c17017427a4, #0cb9f1); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -323px; flex: none; height: var(--framer-aspect-ratio-supported, 584px); left: -191px; position: absolute; width: 584px; }\",\".framer-WYr6H .framer-1bzwvo { align-content: center; align-items: center; background-color: var(--token-dbb6ed55-335c-4b41-9d9d-70bd44868efc, #f3f8ff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1p6yov9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-WYr6H .framer-1gip7bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-WYr6H .framer-1i0n0fd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1340px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-1s4osd9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-vhlnvg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 690px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WYr6H .framer-1ov6f9t { display: grid; flex: none; gap: 28px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-WYr6H .framer-12wy5gc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-WYr6H .framer-1hs9435-container { flex: 1 0 0px; height: auto; min-width: 342px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WYr6H.framer-v1algy, .framer-WYr6H .framer-1oziaqg, .framer-WYr6H .framer-1oag9c2, .framer-WYr6H .framer-pq20k4, .framer-WYr6H .framer-mj0pk, .framer-WYr6H .framer-153b647, .framer-WYr6H .framer-99fv7o, .framer-WYr6H .framer-1pcvds3, .framer-WYr6H .framer-10rpu5l, .framer-WYr6H .framer-1p3r4qe, .framer-WYr6H .framer-16my52z, .framer-WYr6H .framer-w4eygp, .framer-WYr6H .framer-1o7vmx7, .framer-WYr6H .framer-11g4gm8, .framer-WYr6H .framer-1nmvno9, .framer-WYr6H .framer-1tjiovk, .framer-WYr6H .framer-1yj65u0, .framer-WYr6H .framer-6nvzzz, .framer-WYr6H .framer-1wl60pz, .framer-WYr6H .framer-1om6s4p, .framer-WYr6H .framer-oysdeu, .framer-WYr6H .framer-x5qk48, .framer-WYr6H .framer-1omgwqg, .framer-WYr6H .framer-1w4myf1, .framer-WYr6H .framer-1t9ph7x, .framer-WYr6H .framer-1btr85v, .framer-WYr6H .framer-1lfjwwr, .framer-WYr6H .framer-2d9q3h, .framer-WYr6H .framer-1dezlzq, .framer-WYr6H .framer-1a550zk, .framer-WYr6H .framer-rbc606, .framer-WYr6H .framer-5pvm5y, .framer-WYr6H .framer-7p60dn, .framer-WYr6H .framer-ipquvv, .framer-WYr6H .framer-kff408, .framer-WYr6H .framer-1dxjsx9, .framer-WYr6H .framer-1wtbv1r, .framer-WYr6H .framer-1vd0hho, .framer-WYr6H .framer-1ual4j3, .framer-WYr6H .framer-193f4np, .framer-WYr6H .framer-p9190y, .framer-WYr6H .framer-1coovmn, .framer-WYr6H .framer-1hhhe7f, .framer-WYr6H .framer-1bfp8pw, .framer-WYr6H .framer-camm77, .framer-WYr6H .framer-af2xm1, .framer-WYr6H .framer-1uc3xtt, .framer-WYr6H .framer-1c0mzue, .framer-WYr6H .framer-1vaipvn, .framer-WYr6H .framer-1reka5u, .framer-WYr6H .framer-1qo6l01, .framer-WYr6H .framer-n3wehp, .framer-WYr6H .framer-a1h1vf, .framer-WYr6H .framer-1rfc6oj, .framer-WYr6H .framer-1cmvaw, .framer-WYr6H .framer-12xbv4p, .framer-WYr6H .framer-1n78t7o, .framer-WYr6H .framer-1izf60o, .framer-WYr6H .framer-84u4bl, .framer-WYr6H .framer-hkcytr, .framer-WYr6H .framer-1ufk164, .framer-WYr6H .framer-5jjuj5, .framer-WYr6H .framer-ic4yd0, .framer-WYr6H .framer-1t9bn2x, .framer-WYr6H .framer-5troul, .framer-WYr6H .framer-18k0y5l, .framer-WYr6H .framer-q4yr1d, .framer-WYr6H .framer-1p7rbp6, .framer-WYr6H .framer-1bzwvo, .framer-WYr6H .framer-rms9ui, .framer-WYr6H .framer-1p6yov9, .framer-WYr6H .framer-1gip7bd, .framer-WYr6H .framer-1y9ea4x, .framer-WYr6H .framer-1i0n0fd, .framer-WYr6H .framer-vhlnvg, .framer-WYr6H .framer-12wy5gc { gap: 0px; } .framer-WYr6H.framer-v1algy > *, .framer-WYr6H .framer-11g4gm8 > *, .framer-WYr6H .framer-1tjiovk > *, .framer-WYr6H .framer-6nvzzz > *, .framer-WYr6H .framer-oysdeu > *, .framer-WYr6H .framer-1a550zk > *, .framer-WYr6H .framer-1rfc6oj > *, .framer-WYr6H .framer-12xbv4p > *, .framer-WYr6H .framer-5jjuj5 > *, .framer-WYr6H .framer-18k0y5l > *, .framer-WYr6H .framer-1bzwvo > *, .framer-WYr6H .framer-1y9ea4x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WYr6H.framer-v1algy > :first-child, .framer-WYr6H .framer-1oziaqg > :first-child, .framer-WYr6H .framer-1oag9c2 > :first-child, .framer-WYr6H .framer-pq20k4 > :first-child, .framer-WYr6H .framer-mj0pk > :first-child, .framer-WYr6H .framer-153b647 > :first-child, .framer-WYr6H .framer-1pcvds3 > :first-child, .framer-WYr6H .framer-1p3r4qe > :first-child, .framer-WYr6H .framer-w4eygp > :first-child, .framer-WYr6H .framer-11g4gm8 > :first-child, .framer-WYr6H .framer-1tjiovk > :first-child, .framer-WYr6H .framer-6nvzzz > :first-child, .framer-WYr6H .framer-1om6s4p > :first-child, .framer-WYr6H .framer-oysdeu > :first-child, .framer-WYr6H .framer-x5qk48 > :first-child, .framer-WYr6H .framer-1omgwqg > :first-child, .framer-WYr6H .framer-1w4myf1 > :first-child, .framer-WYr6H .framer-1t9ph7x > :first-child, .framer-WYr6H .framer-1lfjwwr > :first-child, .framer-WYr6H .framer-1dezlzq > :first-child, .framer-WYr6H .framer-1a550zk > :first-child, .framer-WYr6H .framer-5pvm5y > :first-child, .framer-WYr6H .framer-7p60dn > :first-child, .framer-WYr6H .framer-ipquvv > :first-child, .framer-WYr6H .framer-1dxjsx9 > :first-child, .framer-WYr6H .framer-1vd0hho > :first-child, .framer-WYr6H .framer-193f4np > :first-child, .framer-WYr6H .framer-1coovmn > :first-child, .framer-WYr6H .framer-1bfp8pw > :first-child, .framer-WYr6H .framer-af2xm1 > :first-child, .framer-WYr6H .framer-1c0mzue > :first-child, .framer-WYr6H .framer-1vaipvn > :first-child, .framer-WYr6H .framer-1reka5u > :first-child, .framer-WYr6H .framer-a1h1vf > :first-child, .framer-WYr6H .framer-1rfc6oj > :first-child, .framer-WYr6H .framer-12xbv4p > :first-child, .framer-WYr6H .framer-1izf60o > :first-child, .framer-WYr6H .framer-84u4bl > :first-child, .framer-WYr6H .framer-hkcytr > :first-child, .framer-WYr6H .framer-5jjuj5 > :first-child, .framer-WYr6H .framer-ic4yd0 > :first-child, .framer-WYr6H .framer-1t9bn2x > :first-child, .framer-WYr6H .framer-5troul > :first-child, .framer-WYr6H .framer-18k0y5l > :first-child, .framer-WYr6H .framer-1p7rbp6 > :first-child, .framer-WYr6H .framer-1bzwvo > :first-child, .framer-WYr6H .framer-rms9ui > :first-child, .framer-WYr6H .framer-1p6yov9 > :first-child, .framer-WYr6H .framer-1y9ea4x > :first-child, .framer-WYr6H .framer-1i0n0fd > :first-child, .framer-WYr6H .framer-vhlnvg > :first-child { margin-top: 0px; } .framer-WYr6H.framer-v1algy > :last-child, .framer-WYr6H .framer-1oziaqg > :last-child, .framer-WYr6H .framer-1oag9c2 > :last-child, .framer-WYr6H .framer-pq20k4 > :last-child, .framer-WYr6H .framer-mj0pk > :last-child, .framer-WYr6H .framer-153b647 > :last-child, .framer-WYr6H .framer-1pcvds3 > :last-child, .framer-WYr6H .framer-1p3r4qe > :last-child, .framer-WYr6H .framer-w4eygp > :last-child, .framer-WYr6H .framer-11g4gm8 > :last-child, .framer-WYr6H .framer-1tjiovk > :last-child, .framer-WYr6H .framer-6nvzzz > :last-child, .framer-WYr6H .framer-1om6s4p > :last-child, .framer-WYr6H .framer-oysdeu > :last-child, .framer-WYr6H .framer-x5qk48 > :last-child, .framer-WYr6H .framer-1omgwqg > :last-child, .framer-WYr6H .framer-1w4myf1 > :last-child, .framer-WYr6H .framer-1t9ph7x > :last-child, .framer-WYr6H .framer-1lfjwwr > :last-child, .framer-WYr6H .framer-1dezlzq > :last-child, .framer-WYr6H .framer-1a550zk > :last-child, .framer-WYr6H .framer-5pvm5y > :last-child, .framer-WYr6H .framer-7p60dn > :last-child, .framer-WYr6H .framer-ipquvv > :last-child, .framer-WYr6H .framer-1dxjsx9 > :last-child, .framer-WYr6H .framer-1vd0hho > :last-child, .framer-WYr6H .framer-193f4np > :last-child, .framer-WYr6H .framer-1coovmn > :last-child, .framer-WYr6H .framer-1bfp8pw > :last-child, .framer-WYr6H .framer-af2xm1 > :last-child, .framer-WYr6H .framer-1c0mzue > :last-child, .framer-WYr6H .framer-1vaipvn > :last-child, .framer-WYr6H .framer-1reka5u > :last-child, .framer-WYr6H .framer-a1h1vf > :last-child, .framer-WYr6H .framer-1rfc6oj > :last-child, .framer-WYr6H .framer-12xbv4p > :last-child, .framer-WYr6H .framer-1izf60o > :last-child, .framer-WYr6H .framer-84u4bl > :last-child, .framer-WYr6H .framer-hkcytr > :last-child, .framer-WYr6H .framer-5jjuj5 > :last-child, .framer-WYr6H .framer-ic4yd0 > :last-child, .framer-WYr6H .framer-1t9bn2x > :last-child, .framer-WYr6H .framer-5troul > :last-child, .framer-WYr6H .framer-18k0y5l > :last-child, .framer-WYr6H .framer-1p7rbp6 > :last-child, .framer-WYr6H .framer-1bzwvo > :last-child, .framer-WYr6H .framer-rms9ui > :last-child, .framer-WYr6H .framer-1p6yov9 > :last-child, .framer-WYr6H .framer-1y9ea4x > :last-child, .framer-WYr6H .framer-1i0n0fd > :last-child, .framer-WYr6H .framer-vhlnvg > :last-child { margin-bottom: 0px; } .framer-WYr6H .framer-1oziaqg > *, .framer-WYr6H .framer-mj0pk > *, .framer-WYr6H .framer-1t9ph7x > *, .framer-WYr6H .framer-ipquvv > *, .framer-WYr6H .framer-1c0mzue > *, .framer-WYr6H .framer-hkcytr > *, .framer-WYr6H .framer-5troul > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-WYr6H .framer-1oag9c2 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-WYr6H .framer-pq20k4 > *, .framer-WYr6H .framer-1lfjwwr > *, .framer-WYr6H .framer-1vaipvn > *, .framer-WYr6H .framer-rms9ui > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WYr6H .framer-153b647 > *, .framer-WYr6H .framer-1w4myf1 > *, .framer-WYr6H .framer-7p60dn > *, .framer-WYr6H .framer-1reka5u > *, .framer-WYr6H .framer-1izf60o > *, .framer-WYr6H .framer-84u4bl > *, .framer-WYr6H .framer-1p6yov9 > *, .framer-WYr6H .framer-vhlnvg > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-WYr6H .framer-99fv7o > *, .framer-WYr6H .framer-1ufk164 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-WYr6H .framer-99fv7o > :first-child, .framer-WYr6H .framer-10rpu5l > :first-child, .framer-WYr6H .framer-16my52z > :first-child, .framer-WYr6H .framer-1o7vmx7 > :first-child, .framer-WYr6H .framer-1nmvno9 > :first-child, .framer-WYr6H .framer-1yj65u0 > :first-child, .framer-WYr6H .framer-1wl60pz > :first-child, .framer-WYr6H .framer-1btr85v > :first-child, .framer-WYr6H .framer-2d9q3h > :first-child, .framer-WYr6H .framer-rbc606 > :first-child, .framer-WYr6H .framer-kff408 > :first-child, .framer-WYr6H .framer-1wtbv1r > :first-child, .framer-WYr6H .framer-1ual4j3 > :first-child, .framer-WYr6H .framer-p9190y > :first-child, .framer-WYr6H .framer-1hhhe7f > :first-child, .framer-WYr6H .framer-camm77 > :first-child, .framer-WYr6H .framer-1uc3xtt > :first-child, .framer-WYr6H .framer-1qo6l01 > :first-child, .framer-WYr6H .framer-n3wehp > :first-child, .framer-WYr6H .framer-1cmvaw > :first-child, .framer-WYr6H .framer-1n78t7o > :first-child, .framer-WYr6H .framer-1ufk164 > :first-child, .framer-WYr6H .framer-q4yr1d > :first-child, .framer-WYr6H .framer-1gip7bd > :first-child, .framer-WYr6H .framer-12wy5gc > :first-child { margin-left: 0px; } .framer-WYr6H .framer-99fv7o > :last-child, .framer-WYr6H .framer-10rpu5l > :last-child, .framer-WYr6H .framer-16my52z > :last-child, .framer-WYr6H .framer-1o7vmx7 > :last-child, .framer-WYr6H .framer-1nmvno9 > :last-child, .framer-WYr6H .framer-1yj65u0 > :last-child, .framer-WYr6H .framer-1wl60pz > :last-child, .framer-WYr6H .framer-1btr85v > :last-child, .framer-WYr6H .framer-2d9q3h > :last-child, .framer-WYr6H .framer-rbc606 > :last-child, .framer-WYr6H .framer-kff408 > :last-child, .framer-WYr6H .framer-1wtbv1r > :last-child, .framer-WYr6H .framer-1ual4j3 > :last-child, .framer-WYr6H .framer-p9190y > :last-child, .framer-WYr6H .framer-1hhhe7f > :last-child, .framer-WYr6H .framer-camm77 > :last-child, .framer-WYr6H .framer-1uc3xtt > :last-child, .framer-WYr6H .framer-1qo6l01 > :last-child, .framer-WYr6H .framer-n3wehp > :last-child, .framer-WYr6H .framer-1cmvaw > :last-child, .framer-WYr6H .framer-1n78t7o > :last-child, .framer-WYr6H .framer-1ufk164 > :last-child, .framer-WYr6H .framer-q4yr1d > :last-child, .framer-WYr6H .framer-1gip7bd > :last-child, .framer-WYr6H .framer-12wy5gc > :last-child { margin-right: 0px; } .framer-WYr6H .framer-1pcvds3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-WYr6H .framer-10rpu5l > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-WYr6H .framer-1p3r4qe > *, .framer-WYr6H .framer-w4eygp > *, .framer-WYr6H .framer-1t9bn2x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WYr6H .framer-16my52z > *, .framer-WYr6H .framer-1o7vmx7 > *, .framer-WYr6H .framer-1btr85v > *, .framer-WYr6H .framer-n3wehp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WYr6H .framer-1nmvno9 > *, .framer-WYr6H .framer-rbc606 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-WYr6H .framer-1yj65u0 > * { margin: 0px; margin-left: calc(124px / 2); margin-right: calc(124px / 2); } .framer-WYr6H .framer-1wl60pz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-WYr6H .framer-1om6s4p > *, .framer-WYr6H .framer-x5qk48 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-WYr6H .framer-1omgwqg > *, .framer-WYr6H .framer-1dxjsx9 > *, .framer-WYr6H .framer-1vd0hho > *, .framer-WYr6H .framer-193f4np > *, .framer-WYr6H .framer-1coovmn > *, .framer-WYr6H .framer-1bfp8pw > *, .framer-WYr6H .framer-af2xm1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WYr6H .framer-2d9q3h > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WYr6H .framer-1dezlzq > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-WYr6H .framer-5pvm5y > *, .framer-WYr6H .framer-ic4yd0 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-WYr6H .framer-kff408 > *, .framer-WYr6H .framer-1cmvaw > *, .framer-WYr6H .framer-1gip7bd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WYr6H .framer-1wtbv1r > *, .framer-WYr6H .framer-1ual4j3 > *, .framer-WYr6H .framer-p9190y > *, .framer-WYr6H .framer-1hhhe7f > *, .framer-WYr6H .framer-camm77 > *, .framer-WYr6H .framer-1uc3xtt > *, .framer-WYr6H .framer-12wy5gc > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-WYr6H .framer-1qo6l01 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-WYr6H .framer-a1h1vf > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-WYr6H .framer-1n78t7o > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-WYr6H .framer-q4yr1d > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-WYr6H .framer-1p7rbp6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-WYr6H .framer-1i0n0fd > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-WYr6H.framer-v1algy { width: 810px; } .framer-WYr6H .framer-1q9f946-container { left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-WYr6H .framer-1oziaqg { padding: 80px 8px 140px 8px; } .framer-WYr6H .framer-1i4q63m { border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 30px; left: -8px; right: unset; top: unset; width: 102%; } .framer-WYr6H .framer-1mhqcb2 { top: 61px; } .framer-WYr6H .framer-blx0f1 { top: 227px; } .framer-WYr6H .framer-22t2cv { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-WYr6H .framer-1oag9c2, .framer-WYr6H .framer-vhlnvg { flex: none; width: 100%; } .framer-WYr6H .framer-pq20k4 { max-width: 680px; width: 80%; } .framer-WYr6H .framer-1p1x1gp { aspect-ratio: unset; flex: none; height: 821px; max-width: unset; min-height: unset; min-width: unset; width: 100%; } .framer-WYr6H .framer-11g4gm8 { padding: 40px 0px 0px 0px; } .framer-WYr6H .framer-1tjiovk { padding: 164px 0px 204px 0px; } .framer-WYr6H .framer-1yj65u0, .framer-WYr6H .framer-rbc606 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; } .framer-WYr6H .framer-6nvzzz { flex: none; max-width: 100%; order: 1; width: 100%; } .framer-WYr6H .framer-1bkzcfs { width: 100%; } .framer-WYr6H .framer-gmc2li { bottom: -303px; left: unset; right: -65px; } .framer-WYr6H .framer-1omgwqg { flex: none; order: 0; width: 80%; } .framer-WYr6H .framer-1a550zk, .framer-WYr6H .framer-1bzwvo, .framer-WYr6H .framer-1y9ea4x { padding: 164px 0px 164px 0px; } .framer-WYr6H .framer-5pvm5y { flex: none; width: 80%; } .framer-WYr6H .framer-kff408 { justify-content: center; width: 100%; } .framer-WYr6H .framer-lszyga-container { width: 412px; } .framer-WYr6H .framer-1c0mzue, .framer-WYr6H .framer-5jjuj5 { padding: 164px 0px 194px 0px; } .framer-WYr6H .framer-1vaipvn { align-content: flex-start; align-items: flex-start; } .framer-WYr6H .framer-1reka5u { align-content: flex-start; align-items: flex-start; max-width: 55%; } .framer-WYr6H .framer-1qo6l01 { flex-direction: column; gap: 48px; } .framer-WYr6H .framer-n3wehp { flex: none; order: 1; width: 100%; } .framer-WYr6H .framer-1vppire { left: -102px; } .framer-WYr6H .framer-135dlpv-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100px; } .framer-WYr6H .framer-a1h1vf { flex: none; justify-content: center; order: 0; width: 100%; } .framer-WYr6H .framer-1cmvaw { flex-direction: column; justify-content: flex-end; padding: 78px 0px 588px 0px; } .framer-WYr6H .framer-1nwk2cj { bottom: 0px; top: unset; width: 90%; } .framer-WYr6H .framer-12xbv4p { height: 100%; min-height: unset; top: calc(50.00000000000002% - 100% / 2); transform: unset; } .framer-WYr6H .framer-1ulf4t7 { bottom: -304px; height: var(--framer-aspect-ratio-supported, 707px); left: unset; right: -194px; top: unset; width: 707px; } .framer-WYr6H .framer-9g6ew { bottom: -20px; left: -200px; } .framer-WYr6H .framer-1n78t7o { flex: none; justify-content: flex-start; width: 100%; } .framer-WYr6H .framer-1izf60o { flex: 0.8 0 0px; max-width: 100%; padding: 0px 0px 0px 56px; } .framer-WYr6H .framer-112ia4h { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; justify-content: flex-start; } .framer-WYr6H .framer-ic4yd0 { flex: none; max-width: 100%; width: 80%; } .framer-WYr6H .framer-18k0y5l { align-content: flex-end; align-items: flex-end; flex: none; width: 100%; } .framer-WYr6H .framer-cbdne1 { height: 752px; width: 90%; } .framer-WYr6H .framer-bylgp0 { height: 560px; left: 0px; right: 30px; width: unset; } .framer-WYr6H .framer-1dmwvcz { left: -51px; } .framer-WYr6H .framer-rms9ui, .framer-WYr6H .framer-1i0n0fd { gap: 48px; } .framer-WYr6H .framer-1p6yov9 { width: 80%; } .framer-WYr6H .framer-1s4osd9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; } .framer-WYr6H .framer-1ov6f9t { grid-template-columns: repeat(1, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WYr6H .framer-22t2cv, .framer-WYr6H .framer-1yj65u0, .framer-WYr6H .framer-rbc606, .framer-WYr6H .framer-1qo6l01, .framer-WYr6H .framer-1cmvaw, .framer-WYr6H .framer-112ia4h, .framer-WYr6H .framer-rms9ui, .framer-WYr6H .framer-1i0n0fd, .framer-WYr6H .framer-1s4osd9 { gap: 0px; } .framer-WYr6H .framer-22t2cv > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-WYr6H .framer-22t2cv > :first-child, .framer-WYr6H .framer-1yj65u0 > :first-child, .framer-WYr6H .framer-rbc606 > :first-child, .framer-WYr6H .framer-1qo6l01 > :first-child, .framer-WYr6H .framer-1cmvaw > :first-child, .framer-WYr6H .framer-112ia4h > :first-child, .framer-WYr6H .framer-rms9ui > :first-child, .framer-WYr6H .framer-1i0n0fd > :first-child, .framer-WYr6H .framer-1s4osd9 > :first-child { margin-top: 0px; } .framer-WYr6H .framer-22t2cv > :last-child, .framer-WYr6H .framer-1yj65u0 > :last-child, .framer-WYr6H .framer-rbc606 > :last-child, .framer-WYr6H .framer-1qo6l01 > :last-child, .framer-WYr6H .framer-1cmvaw > :last-child, .framer-WYr6H .framer-112ia4h > :last-child, .framer-WYr6H .framer-rms9ui > :last-child, .framer-WYr6H .framer-1i0n0fd > :last-child, .framer-WYr6H .framer-1s4osd9 > :last-child { margin-bottom: 0px; } .framer-WYr6H .framer-1yj65u0 > *, .framer-WYr6H .framer-rbc606 > *, .framer-WYr6H .framer-1qo6l01 > *, .framer-WYr6H .framer-112ia4h > *, .framer-WYr6H .framer-rms9ui > *, .framer-WYr6H .framer-1i0n0fd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-WYr6H .framer-1cmvaw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WYr6H .framer-1s4osd9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-WYr6H.framer-v1algy { width: 390px; } .framer-WYr6H .framer-1q9f946-container { left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-WYr6H .framer-1oziaqg { padding: 24px 8px 140px 8px; } .framer-WYr6H .framer-1i4q63m { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 40px; height: 382px; left: 0px; right: unset; top: unset; width: 100%; } .framer-WYr6H .framer-1mhqcb2 { top: 61px; } .framer-WYr6H .framer-blx0f1 { top: 227px; } .framer-WYr6H .framer-22t2cv { flex-direction: column; gap: 40px; justify-content: flex-start; padding: 0px 20px 0px 20px; } .framer-WYr6H .framer-1oag9c2, .framer-WYr6H .framer-vhlnvg { flex: none; width: 100%; } .framer-WYr6H .framer-99fv7o { flex-direction: column; gap: 18px; } .framer-WYr6H .framer-5fw97z-container, .framer-WYr6H .framer-1ctqq5b-container, .framer-WYr6H .framer-1pcvds3, .framer-WYr6H .framer-d5070m, .framer-WYr6H .framer-13tome5, .framer-WYr6H .framer-1n4migy, .framer-WYr6H .framer-hh4au6, .framer-WYr6H .framer-1yujl29-container, .framer-WYr6H .framer-k5z2n8-container, .framer-WYr6H .framer-1gldbnw-container, .framer-WYr6H .framer-4facr2-container, .framer-WYr6H .framer-qy89gu-container, .framer-WYr6H .framer-16n8aqg-container, .framer-WYr6H .framer-1p6yov9, .framer-WYr6H .framer-1gip7bd, .framer-WYr6H .framer-1tzr3gn-container { width: 100%; } .framer-WYr6H .framer-10rpu5l { flex-wrap: wrap; width: 100%; } .framer-WYr6H .framer-1p1x1gp { aspect-ratio: unset; flex: none; height: 425px; max-width: unset; min-height: unset; min-width: unset; width: 100%; } .framer-WYr6H .framer-1nmvno9 { padding: 0px 20px 0px 20px; } .framer-WYr6H .framer-1tjiovk { padding: 100px 0px 130px 0px; } .framer-WYr6H .framer-1yj65u0 { flex-direction: column; gap: 40px; padding: 0px 20px 0px 20px; } .framer-WYr6H .framer-6nvzzz { flex: none; order: 1; padding: 0px 0px 31px 0px; width: 100%; } .framer-WYr6H .framer-1bkzcfs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 487px; justify-content: flex-end; padding: 0px 12px 12px 12px; width: 100%; } .framer-WYr6H .framer-1wl60pz { align-content: center; align-items: center; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; bottom: unset; gap: 15px; justify-content: center; padding: 24px 18px 24px 18px; position: relative; right: unset; width: 100%; } .framer-WYr6H .framer-1om6s4p, .framer-WYr6H .framer-x5qk48, .framer-WYr6H .framer-1g7muma-container { flex: 1 0 0px; width: 1px; } .framer-WYr6H .framer-1ohed20 { bottom: -26px; height: 329px; left: 24px; right: -15px; } .framer-WYr6H .framer-fbw62d { bottom: -75px; height: 281px; right: -62px; width: 281px; } .framer-WYr6H .framer-1omgwqg { flex: none; order: 0; width: 100%; } .framer-WYr6H .framer-1a550zk { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 100px 0px 180px 0px; } .framer-WYr6H .framer-rbc606 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; padding: 0px 20px 0px 20px; } .framer-WYr6H .framer-5pvm5y { flex: none; min-width: 100%; width: 100%; } .framer-WYr6H .framer-kff408 { -webkit-mask: unset; mask: unset; width: 100%; } .framer-WYr6H .framer-lszyga-container { flex: 1 0 0px; min-width: 342px; width: 1px; } .framer-WYr6H .framer-1c0mzue { padding: 100px 0px 150px 0px; } .framer-WYr6H .framer-1vaipvn { align-content: flex-start; align-items: flex-start; } .framer-WYr6H .framer-1reka5u { align-content: flex-start; align-items: flex-start; max-width: 100%; } .framer-WYr6H .framer-1qo6l01 { flex-direction: column; gap: 40px; } .framer-WYr6H .framer-n3wehp { flex: none; order: 1; width: 100%; } .framer-WYr6H .framer-1vppire { left: -41px; width: 100%; } .framer-WYr6H .framer-vvamop { height: 442px; } .framer-WYr6H .framer-1u8tcxe { top: -5px; width: 101%; } .framer-WYr6H .framer-135dlpv-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100px; } .framer-WYr6H .framer-a1h1vf { flex: none; justify-content: center; order: 0; width: 100%; } .framer-WYr6H .framer-1cmvaw { padding: 78px 0px 578px 0px; } .framer-WYr6H .framer-1nwk2cj { bottom: 0px; top: unset; width: 93%; } .framer-WYr6H .framer-12xbv4p { border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 100%; min-height: unset; right: 0px; top: calc(49.91233196960844% - 100% / 2); transform: unset; } .framer-WYr6H .framer-1ulf4t7 { bottom: 0px; height: var(--framer-aspect-ratio-supported, 513px); top: unset; width: 513px; } .framer-WYr6H .framer-9g6ew { bottom: -71px; height: var(--framer-aspect-ratio-supported, 341px); left: unset; right: -132px; width: 341px; } .framer-WYr6H .framer-1ufk164 { flex-direction: column; gap: 18px; width: 100%; } .framer-WYr6H .framer-5jjuj5 { padding: 100px 0px 143px 0px; } .framer-WYr6H .framer-112ia4h { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-WYr6H .framer-ic4yd0 { flex: none; max-width: 100%; width: 100%; } .framer-WYr6H .framer-18k0y5l { align-content: flex-end; align-items: flex-end; flex: none; width: 100%; } .framer-WYr6H .framer-cbdne1 { align-content: center; align-items: center; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 532px; justify-content: flex-end; padding: 0px 12px 12px 12px; width: 95%; } .framer-WYr6H .framer-q4yr1d { bottom: unset; gap: 12px; left: unset; padding: 18px; position: relative; width: 100%; } .framer-WYr6H .framer-a9s696 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-WYr6H .framer-bylgp0 { height: 440px; left: 0px; right: 30px; width: unset; } .framer-WYr6H .framer-114738 { bottom: -84px; height: var(--framer-aspect-ratio-supported, 230px); right: -69px; width: 230px; } .framer-WYr6H .framer-1dmwvcz { bottom: -129px; height: var(--framer-aspect-ratio-supported, 230px); left: 20px; width: 230px; } .framer-WYr6H .framer-1bzwvo { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 100px 0px 100px 0px; } .framer-WYr6H .framer-rms9ui, .framer-WYr6H .framer-1i0n0fd { gap: 40px; } .framer-WYr6H .framer-1y9ea4x { padding: 100px 0px 100px 0px; } .framer-WYr6H .framer-1s4osd9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; } .framer-WYr6H .framer-1ov6f9t { grid-template-columns: repeat(1, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WYr6H .framer-22t2cv, .framer-WYr6H .framer-99fv7o, .framer-WYr6H .framer-1yj65u0, .framer-WYr6H .framer-1bkzcfs, .framer-WYr6H .framer-1wl60pz, .framer-WYr6H .framer-rbc606, .framer-WYr6H .framer-1qo6l01, .framer-WYr6H .framer-1ufk164, .framer-WYr6H .framer-112ia4h, .framer-WYr6H .framer-cbdne1, .framer-WYr6H .framer-q4yr1d, .framer-WYr6H .framer-rms9ui, .framer-WYr6H .framer-1i0n0fd, .framer-WYr6H .framer-1s4osd9 { gap: 0px; } .framer-WYr6H .framer-22t2cv > *, .framer-WYr6H .framer-1yj65u0 > *, .framer-WYr6H .framer-rbc606 > *, .framer-WYr6H .framer-1qo6l01 > *, .framer-WYr6H .framer-112ia4h > *, .framer-WYr6H .framer-rms9ui > *, .framer-WYr6H .framer-1i0n0fd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WYr6H .framer-22t2cv > :first-child, .framer-WYr6H .framer-99fv7o > :first-child, .framer-WYr6H .framer-1yj65u0 > :first-child, .framer-WYr6H .framer-1bkzcfs > :first-child, .framer-WYr6H .framer-rbc606 > :first-child, .framer-WYr6H .framer-1qo6l01 > :first-child, .framer-WYr6H .framer-1ufk164 > :first-child, .framer-WYr6H .framer-112ia4h > :first-child, .framer-WYr6H .framer-cbdne1 > :first-child, .framer-WYr6H .framer-rms9ui > :first-child, .framer-WYr6H .framer-1i0n0fd > :first-child, .framer-WYr6H .framer-1s4osd9 > :first-child { margin-top: 0px; } .framer-WYr6H .framer-22t2cv > :last-child, .framer-WYr6H .framer-99fv7o > :last-child, .framer-WYr6H .framer-1yj65u0 > :last-child, .framer-WYr6H .framer-1bkzcfs > :last-child, .framer-WYr6H .framer-rbc606 > :last-child, .framer-WYr6H .framer-1qo6l01 > :last-child, .framer-WYr6H .framer-1ufk164 > :last-child, .framer-WYr6H .framer-112ia4h > :last-child, .framer-WYr6H .framer-cbdne1 > :last-child, .framer-WYr6H .framer-rms9ui > :last-child, .framer-WYr6H .framer-1i0n0fd > :last-child, .framer-WYr6H .framer-1s4osd9 > :last-child { margin-bottom: 0px; } .framer-WYr6H .framer-99fv7o > *, .framer-WYr6H .framer-1ufk164 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-WYr6H .framer-1bkzcfs > *, .framer-WYr6H .framer-cbdne1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WYr6H .framer-1wl60pz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-WYr6H .framer-1wl60pz > :first-child, .framer-WYr6H .framer-q4yr1d > :first-child { margin-left: 0px; } .framer-WYr6H .framer-1wl60pz > :last-child, .framer-WYr6H .framer-q4yr1d > :last-child { margin-right: 0px; } .framer-WYr6H .framer-q4yr1d > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WYr6H .framer-1s4osd9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9954\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xtuOTfnP8\":{\"layout\":[\"fixed\",\"auto\"]},\"nz92k7zlm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerxNHQGVjHL=withCSS(Component,css,\"framer-WYr6H\");export default FramerxNHQGVjHL;FramerxNHQGVjHL.displayName=\"Home\";FramerxNHQGVjHL.defaultProps={height:9954,width:1440};addFonts(FramerxNHQGVjHL,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clarity City Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/sVrNYKWOeLni3zSZEVyHGv7aGzM.woff2\"},{family:\"Clarity City Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5ODtfXM76H7l4vO0BeSnlUYQ.woff2\"}]},...HeaderHeaderV1Fonts,...ComponentsPrimaryButtonFonts,...ComponentsSecondaryButtonFonts,...PageComponentsBookingCardFonts,...CMSServiceCardFonts,...SlideshowFonts,...ComponentsVideoButtonFonts,...YouTubeFonts,...PageComponentsIconLeftContentFonts,...PageComponentsSliderTestimonialsV1Fonts,...CMSBlogPostImageCardFonts,...FooterFooterV1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxNHQGVjHL\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xtuOTfnP8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nz92k7zlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"9954\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "mzDAAigB,IAAMA,GAAWC,GAAGA,EAA6sB,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,EAAE,EAAEG,EAAE,CAAC,GAAGJ,IAAIC,GAAG,IAAIG,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAE,CAAC,EAAE,OAAOD,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,QAAQ,KAAKD,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAE,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,IAAIC,EAAE,CAAC,EAAED,EAAE,CAAC,GAAG,GAASA,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,sBAAsBA,CAAC,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKA,EAAE,EAAE,CAAC,CAAC,IAAIC,EAAE,EAAE,CAAC,CAAC,EAAED,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAOC,CAAC,CCArkC,IAAIC,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,SAAS,EAAE,EAAE,UAAUM,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAAC,EAAE,EAAEJ,GAAE,EAAE,CAAC,EAAE,EAAE,IAAMK,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQR,EAAE,OAAO,CAAC,EAAQS,EAAE,EAAET,EAAQU,EAAE,KAAK,KAAKP,EAAEJ,CAAC,EAAE,IAAUY,EAAET,GAAiBC,EAAER,EAAEI,CAAC,EAAMa,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMR,EAAEO,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEf,GAAG,EAAE,KAAK,IAAI,CAACc,EAAED,EAAEb,CAAC,IAAIc,EAAED,EAAED,EAAE,GAAGN,EAAE,KAAK,IAAIA,EAAEN,CAAC,EAAEY,EAAE,KAAK,IAAIN,EAAEN,CAAC,EAAE,MAAMe,EAAET,GAAG,EAAE,KAAK,IAAI,CAACO,EAAEP,CAAC,GAAGM,GAAGC,EAAED,EAAE,GAAGN,GAAG,OAAOA,GAAG,CAACK,EAAE,QAAQI,EAAET,CAAC,EAAE,IAAMN,EAAMM,IAAJ,EAAM,EAAEP,GAAsBgB,EAAET,EAAEK,EAAE,OAAO,EAAQb,EAAE,KAAK,IAAIE,CAAC,GAAGS,EAAQR,EAAE,KAAK,IAAI,EAAEU,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKb,GAAGG,EAAEU,EAAE,iBAAiBJ,GAAiBJ,EAAE,EAAEQ,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKV,EAAE,EAAE,SAASR,EAAE,EAAE,MAAMG,EAAE,GAAG,MAAMC,EAAE,KAAK,cAAcC,EAAE,gBAAgBc,EAAE,aAAaC,EAAE,IAAIT,EAAE,IAAIC,EAAE,aAAaC,EAAE,GAAG,UAAUC,CAAC,IAAI,CAACV,EAAEI,GAAE,GAAGJ,CAAC,EAAE,IAAMW,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQP,EAAE,OAAOA,CAAC,EAAQa,EAAcb,GAAYG,IAAT,QAAYH,EAAEG,GAAYC,IAAT,QAAYJ,EAAEI,EAAQU,EAAgBd,GAAYG,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEH,CAAC,EAAE,KAAK,IAAII,EAAEJ,CAAC,EAAEG,EAAEC,EAAMI,EAAEb,EAAEH,EAAQiB,EAAET,EAAEQ,EAAQO,EAAWH,IAAT,OAAWH,EAAEG,EAAEH,CAAC,EAAEF,EAAE,OAAOQ,EAAEA,IAAIN,IAAID,EAAEO,EAAEf,GAAG,IAAMgB,EAAUhB,GAAG,CAACQ,EAAE,KAAK,IAAI,CAACR,EAAEJ,CAAC,EAAQqB,EAAWjB,GAAGe,EAAEC,EAAUhB,CAAC,EAAQkB,EAAclB,GAAG,CAAC,IAAMN,EAAEsB,EAAUhB,CAAC,EAAQR,EAAEyB,EAAWjB,CAAC,EAAEO,EAAE,KAAK,KAAK,IAAIb,CAAC,GAAGW,EAAEE,EAAE,QAAQA,EAAE,KAAKQ,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBrB,GAAG,CAAIa,EAAcN,EAAE,OAAO,IAAGY,EAAEnB,EAAEoB,EAAElB,GAAO,CAAC,KAAKK,EAAE,QAAQ,GAAGO,EAAgBP,EAAE,OAAO,EAAE,SAASd,GAAsBwB,EAAWjB,EAAEO,EAAE,OAAO,EAAE,QAAQV,EAAE,UAAUc,EAAE,aAAaN,EAAE,UAAUC,CAAC,CAAC,EAAE,EAAE,OAAAe,EAAmB,CAAC,EAASrB,GAAG,CAAC,IAAIN,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAclB,CAAC,EAAEqB,EAAmBrB,CAAC,GAAcmB,IAAT,QAAYnB,EAAEmB,GAAGZ,EAAE,iBAAiB,GAAYa,EAAEpB,EAAEmB,CAAC,IAAEZ,EAAE,iBAAiB,GAAM,CAACb,GAAGwB,EAAclB,CAAC,EAASO,EAAC,CAAC,EAAQX,GAAE,GAASC,GAAE,IAAI,SAASyB,GAAqBtB,EAAE,CAAC,IAAI,EAAMR,EAAEI,GAAM,EAAEI,EAAE,CAAC,EAAQ,EAAE,CAAC,EAAE,OAAO,EAAE,KAAM,CAAC,EAAE,MAAMR,EAAEK,IAAG,EAAEG,EAAER,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAW,IAAT,QAAY,EAAE,mBAAmB,EAAEA,GAAGA,GAAGI,GAAE,IAAM,EAAEJ,EAAEI,GAAE,OAAI,EAAE,SAAN,GAAc,EAAE,KAAK,EAAE,OAAO,EAAQ,CAAC,UAAU,EAAE,SAAS,EAAE,IAAI,mBAA0B,GAAgB,GAAG,GAAG,CAAC,CCA1jD,IAAM2B,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,CAAC,GAASK,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,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,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,MAAS,CAAC,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,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,GAA2kF,SAASI,GAAgBC,EAAE,EAAE,CAAC,IAAIC,EAAE,OAAc,OAAOD,GAAlB,SAAuB,IAAWC,EAAE,EAAED,CAAC,KAAb,MAA0BC,IAAT,SAAa,EAAED,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,CAAo7H,SAASE,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAACC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,CAAC,IAAIC,CAAC,IAAIC,CAAC,IAAIC,CAAC,GAAG,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAER,EAAE,OAAO,OAAO,CAAC,KAAKI,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAEN,CAAC,CAAC,CAAC,EAASC,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaT,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAEU,GAAEV,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEI,EAAEH,EAAEC,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQG,EAAEX,EAAE,OAA8C,GAAjCC,GAAGU,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMX,EAAED,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BX,GAAE,UAAU,GAAGW,EAAE,CAAC,GAAK,CAAC,UAAUZ,EAAE,mBAAmBH,CAAC,EAAEI,EAAQH,EAA+BE,GAAE,WAAYH,GAAG,EAAQM,EAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQM,EAAEQ,EAAET,CAAC,EAAE,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAEE,GAAOG,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,IAAGgB,EAAEhB,EAAC,EAAE,QAASO,EAAEC,CAAC,EAAE,MAAMO,GAAUR,EAAEM,KAAV,MAAuBN,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMc,EAAEf,EAAaY,EAAEd,EAAEa,EAA8BZ,GAAE,SAAS,OAAO,CAAC,EAAQiB,EAAEV,EAAaS,CAAC,EAAEV,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEW,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKd,IAAGA,EAAE,UAAUa,EAAEb,EAAE,mBAAmB,YAAY,IAAI,EAAE,MAAgDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMI,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,KAAKC,EAAE,OAAOC,EAAE,OAAOG,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,IAAMC,EAAEM,EAAE,IAAIP,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQC,EAAG,GAAGD,EAAE,eAAe,CAAC,IAAMC,EAAE,EAAED,CAAC,EAAe,OAAOC,GAApB,WAAsBM,EAAE,IAAIP,EAAE,OAAOC,CAAC,EAAEO,EAAE,UAAUR,EAAE,MAAM,CAAC,MAASC,IAAGA,EAAED,CAAC,EAAEO,EAAE,OAAOP,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQQ,EAAE,IAAI,qBAAqBmB,EAAqB,CAAC,KAAK1B,EAAE,WAAWC,EAAE,UAAqB,OAAOG,GAAlB,SAAoBA,EAAEmB,GAAEnB,CAAC,CAAC,CAAC,EAAE,OAAAC,EAAE,QAASN,GAAGQ,EAAE,QAAQR,CAAC,CAAE,EAAQ,IAAIQ,EAAE,WAAW,CAAC,CAAC,IAAMoB,GAAE,IAAI,QAAYC,GAAE,SAASC,GAAe9B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAU,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMA,EAAE,OAAO,CAAC,CAAC,CAAC,OAAOA,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAY,EAAE,cAAcC,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE0B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BE,IAAT,QAAkBA,EAAE,QAAS,GAAG,CAAC,EAAE,CAAC,OAAOF,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO8B,GAAe9B,EAAEC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAAS+B,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,GAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAE,EAAE,CAAC6B,IAAGI,GAAqB,EAAE,IAAMhC,EAAEyB,GAAgB1B,CAAC,EAAE,OAAAC,EAAE,QAASD,GAAG,CAAC,IAAIC,EAAE2B,GAAE,IAAI5B,CAAC,EAAMC,IAAGA,EAAE,IAAI,IAAI2B,GAAE,IAAI5B,EAAEC,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8B4B,IAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAACC,EAAE,QAASD,GAAG,CAAC,IAAMC,EAAE2B,GAAE,IAAI5B,CAAC,EAA8BC,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoC4B,IAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAEsC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAE,EAAE,CAAC,OAAmB,OAAOA,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAE,CAAC,CAAC,CAA+hK,SAASyC,GAAqBC,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBF,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASH,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAASR,EAAGI,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBF,EAAE,YAAYI,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAACR,EAAE,EAAEC,GAAkBF,EAAE,YAAYS,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAACV,EAAE,EAAEC,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyBH,EAAE,EAAEF,GAAqBC,EAAE,EAAEI,CAAC,EAAE,EAAQO,GAAG,CAAC,SAASX,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAWV,EAAE,aAAa,CAAC,EAAQK,EAAEK,GAAWV,EAAE,WAAWC,CAAC,EAAE,OAAAD,EAAE,iBAAiB,eAAeI,CAAC,EAAEJ,EAAE,iBAAiB,eAAeK,CAAC,EAAQ,IAAI,CAACL,EAAE,oBAAoB,eAAeI,CAAC,EAAEJ,EAAE,oBAAoB,eAAeK,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAASZ,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAACR,EAAE,EAAEF,GAAqBC,EAAE,WAAWS,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcd,GAAG,CAAC,EAAE,EAAEF,GAAqBC,EAAE,aAAaC,CAAC,EAAEa,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAb,EAAE,iBAAiB,cAAce,CAAa,EAAQ,IAAI,CAACf,EAAE,oBAAoB,cAAce,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQG,GAAG,CAAC,OAAOb,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQK,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA/5lB,IAAME,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAA0B,CAAC,GAAID,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAC1L,MAAM,mBAAyB,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,qBAA2B,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,yBAA0B,CAAQ,SAASE,IAA8B,CAAC,GAAIF,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAAa,MAAM,SAAe,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,WAAiB,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,eAAgB,CAAQ,SAASG,IAAqB,CAAC,GAAIH,GAAU,EAAS,MAAM,CAAC,SAASE,GAA6B,CAAC,CAAE,CAAQ,SAASE,IAAmB,CAAC,GAAG,CAACJ,GAAU,EAAE,OAAO,GAAK,CAACK,EAAUC,CAAY,EAAEC,GAASJ,GAAoB,CAAC,EAAQK,EAAmB,IAAIF,EAAaH,GAAoB,CAAC,EAAE,OAAAM,GAAU,IAAI,CAAC,IAAMC,EAAiBT,GAAyB,EAAE,gBAAS,iBAAiBS,EAAiBF,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoBE,EAAiBF,CAAkB,CAAE,CAAE,CAAC,EAASH,CAAU,CCCx9B,IAAMM,GAAU,KAaE,SAARC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,EAAa,cAAAC,EAAc,mBAAAC,EAAmB,aAAAC,CAAY,EAAEvB,EAAoB,CAAC,YAAAwB,GAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,EAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,EAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,GAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,EAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,EAAY,QAAAC,EAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,EAAkB,YAAAC,EAAY,SAAAC,CAAQ,EAAErC,EAAsBsC,EAAajD,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAEj7BmD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,GAAc7D,EAAM,OAAO,OAAO,EAAQ8D,GAAYC,GAAS,MAAMF,EAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,GAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,GAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYd,GAAc,IAAIe,GAAoBC,GAAU,CAAC,EAAI,CAAChB,EAAa,CAAC,EAAQiB,GAAWL,GAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAE9jBS,GAAc,CAAC,EAAMC,GAAY,EAAKhC,IAAUgC,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG/B,IAAaU,GAAU,QAAQ,CAAC,IAAMsB,EAAMjC,GAAc,OAAO,EAAQkC,GAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,GAAMtB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNuB,IAA1MvB,EAAYoB,CAAK,EAAE,QAAQ9B,EAAaU,EAAYoB,CAAK,EAAE,QAAQ,WAAWpB,EAAYoB,CAAK,EAAE,QAAQ,YAAYpB,EAAYoB,CAAK,EAAE,QAAQ,UAAUpB,EAAYoB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAMzF,EAAU2F,GAASxB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQyB,GAAUzB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ0B,GAAW1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQ2B,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,EAAO,YAAY,EAAE9B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,EAAO,aAAa,EAAE9B,GAAU,QAAQ,YAAY,EAAEQ,GAAQ,CAAC,OAAOe,GAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,CAAE,CAAC,EAAE,CAACvC,EAAW,CAAC,EAAQyC,GAAgBV,GAAY,IAAI,CAACW,GAAK,KAAKZ,EAAO,CAAE,EAAE,CAACA,EAAO,CAAC,EAG7uCa,GAAgB,IAAI,CAAI3C,IAAYyC,GAAgB,CAAE,EAAE,CAACzC,GAAYhD,CAAU,CAAC,EAGhF,IAAI4F,GAAcjC,GAAO,EAAI,EAAEkC,GAAU,IAAYC,GAAOpC,GAAU,QAAQ,CAAC,CAAC,YAAAqC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEd,GAAc,EAAI,GAAGiB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGnB,GAAW,CAAC,IAAMsB,EAAM,WAAW,IAAIrB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAaqB,CAAK,CAAE,CAAC,EAAE,CAACtB,EAAU,CAAC,EAEhX,IAAMuB,GAA+DlD,IAAc,OAAamD,GAAarD,EAAS,EAAoCoB,GAAK,SAAekC,GAA+ClC,GAAK,KAAMxE,EAAU2G,GAAWjH,EAAUgH,GAAiB,CAACE,GAAYC,EAAc,EAAEnC,GAAShF,EAAU8G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAErC,GAAS,EAAK,EAAyGsC,GAAc9C,GAAO,IAAI,EAAQ+C,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO3D,GAAW,EAAE,GAA+C4D,GAAKC,GAAed,EAAY,EAAuEe,GAAe/D,EAAa,CAAC/D,GAA8C8E,GAAK,UAAWxE,GAAK,CAACN,GAA8C8E,GAAK,WAAYxE,GAAsDyH,GAAY,IAAIJ,GAAOT,GAAYF,GAAwIgB,GAActE,EAA8H,EAArHuE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,GAAQC,GAAK,CAACrB,GAAa,CAACA,GAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,EAAO,EAAE,EAAEA,EAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,GAAWI,EAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAqHV,GAAgB,IAAI,CAAuC1B,GAAK,WAAY,MAG9mD,CAAC2B,GAAc,SAASlB,IAAYqC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAACjD,EAAKiC,GAAaY,GAAOV,GAAWC,GAAYF,GAAYzB,EAAU,CAAC,EAG3G,IAAMgD,GAAY,IAAI,CAAI7E,GAAU,CAACG,IAAa,CAACiB,EAAK,QAAQsC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAE/G,CAAiB,EAAMb,GAAiBgF,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACsC,GAAeD,GAAY,CAAC,EAAEqB,GAAY,CAAE,EAAExH,EAAgB,GAAG,GAAG,EAAuC0H,GAASC,GAAO,CAAyDvB,GAApDnD,GAAmEkD,GAAYwB,EAApDxB,GAAYwB,CAA6C,CAAG,EAAQC,GAAQhE,GAAO,CAAC,IAAMiE,GAAmBR,GAAK,EAAEtB,GAAWI,EAAW,EAAQ2B,GAAyBT,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAQ4B,GAAKnE,EAAMiE,GAAyBG,GAAapE,EAAM,KAAK,IAAIkE,EAAwB,EAAyD1B,GAAnDnD,GAAkEkD,GAAY6B,GAAnD7B,GAAY4B,EAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAAC3B,GAAc,EAAI,CAAE,EAAQ4B,GAAc,CAACC,EAAM,CAAC,OAAAC,GAAO,SAAAC,EAAQ,IAAI,CAAC/B,GAAc,EAAK,EAAE,IAAMgC,GAAWtF,EAAaoF,GAAO,EAAEA,GAAO,EAAQG,GAAkB,IAC9LC,GAAaxF,EAAaqF,GAAS,EAAEA,GAAS,EAAQI,GAAaH,GAAW,CAACvE,EAAK,KAAK,EAAQ2E,GAAaJ,GAAWvE,EAAK,KAAK,EAA6D4E,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiB5E,EAAK,IAAI,EAAqF8E,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgEjD,GAAU,IAAI,CAAC,GAAG,GAACe,IAAWlC,IAAkB,OAAAgD,GAAY,EAAQ,IAAI1D,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAcgC,GAAUlC,EAAU,CAAC,EAA8D,IAAIsE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAIjJ,CAAU,OAAOP,CAAG,QAAQA,EAAIO,CAAU,MAI7E,QAAQ8D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAIF,GAAc,CAACmG,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAIxF,EAAY,CAAC,GAAMuF,KAAapG,GAAc,OAAO,IAAGqG,GAAIxF,EAAY,CAAC,GAAuBN,EAAK+F,GAAM,CAAC,IAAIzF,EAAYuF,EAAU,EAAE,SAASrF,EAAMqF,GAAW,KAAK,MAAMrF,EAAM,MAAMZ,GAAalD,EAAW,EAAEiJ,GAAwB,OAAO,OAAQ/F,EAAkD,OAArClD,EAAW,EAAEiJ,GAAiB,OAAc,KAAKhF,EAAK,MAAMiF,GAAM,YAAgEnG,IAAc,OAAO,aAAaoE,GAAa,aAAa6B,KAAe,IAAIvJ,EAAI,SAASoD,EAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,EAAa,cAAcC,EAAc,SAASoD,EAAMqF,EAAU,EAAErF,EAAMqF,GAAW,IAAI,CAAE,CAAC,CAAC,EAEhyB,IAAMG,GAAcpG,EAAa,WAAW,YAAkBqG,GAAexI,GAAU,EAAQyI,GAAa,IAAIzI,GAAU,EAAQ0I,GAAeC,GAAM1I,GAAU,EAAEuI,EAAc,EAAQI,GAAa,IAAI3I,GAAgB4I,GAAS,mBAAmBN,EAAa,mBAAmBrI,EAAS,KAAKwI,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBvI,EAAS,KAAK0I,EAAY,KAElaE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG7H,GAAiB,CAAC,QAAQ8H,EAAE,EAAEA,EAAuDhH,IAAc,OAAQgH,IAAKF,GAAK,KAAkBvG,EAAK0G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM/H,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY2H,GAAiB,gBAAgBzH,EAAkB,QAAQC,EAAY,QAAQ,IAAIoF,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMxB,GAAW,MAAM8D,EAAE,IAAIzH,EAAQ,QAAQD,EAAY,aAAaa,EAAa,WAAWC,EAAU,EAAE4G,CAAC,CAAC,EAAMpH,EAAS,IAAGmH,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQnH,CAAQ,MAAO,CAAC,IAAMwH,GAAU5K,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAYiF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAY1I,KAAgB,YAAYA,KAAgB,WAAWA,KAAgB,YAAkB2I,GAAe3I,KAAgB,eAAeA,KAAgB,cAAcA,KAAgB,eAAqB4I,GAAa5I,KAAgB,YAAYA,KAAgB,cAAoB6I,GAAc7I,KAAgB,aAAaA,KAAgB,eAAqB8I,GAAY9I,KAAgB,WAAWA,KAAgB,cAAcA,KAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGqH,GAAe,QAAQ7H,EAAa,gBAAgB/B,GAAY+I,GAAS,OAAU,aAAa/I,GAAY+I,GAAS,OAAU,UAAU/I,GAAY+I,GAAS,OAAU,QAA2C3F,GAAK,OAAQ,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,GAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,GAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAY8D,GAAO,CACtyDA,EAAM,eAAe,EAAE5D,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,IAAIgC,GAAc,SAAS,CAAcnD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,GAAS,UAAU,SAAS,aAAaT,EAAa,WAAW,OAAO,YAAYwC,EAAS,OAAOlC,CAAkB,EAAE,SAAsB2C,EAAKoH,EAAO,GAAG,CAAC,IAAIhH,GAAU,GAAGyG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIhL,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,EAASoE,GAAeE,GAAa,EAAE,EAAGjE,EAAkD,EAArCL,EAASoE,GAAeE,GAAe,cAAcjE,EAAa,MAAM,SAAS,eAAexC,IAAgB,GAAG,CAACmC,EAAS,cAAc,OAAU,OAAOtD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,CAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGuH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcvH,EAAMsH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAcxH,EAAa,MAAM,SAAS,eAAe1B,EAAiB,gBAAgB,SAAS,IAAIA,EAAiB,QAAQI,GAAS,QAAQH,GAAkB1C,GAAU,EAAE,WAAW,SAAS,MAAM4C,GAAa,IAAIH,EAAiBG,GAAayI,GAAYvI,GAAgB,QAAQ,KAAKL,EAAiBG,GAAa2I,GAAatI,GAAiBwI,GAAY,EAAE,QAAQ,MAAMhJ,EAAiBG,GAAa4I,GAAczI,GAAkB0I,GAAY,EAAE,QAAQ,OAAOhJ,EAAiBG,GAAa0I,GAAetI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ2C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcmD,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsI,GAAK,OAAO,EAAevG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGsH,GAAmB,KAAK1H,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGsH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyB7K,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyB6L,GAAoB7L,EAAU,CAAC,MAAM,CAAC,KAAK8L,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAK8L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAO7L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK6L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa9L,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,aAAa9L,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAK8L,EAAY,OAAO,MAAM,cAAc,aAAa9L,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,aAAa9L,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAK8L,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAa9L,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK8L,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,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAa9L,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,WAAW,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa9L,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK6L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMwL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BpH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,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,EAA4ByG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmBjM,EAAMmK,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAAjF,EAAK,IAAAxE,EAAI,aAAA0H,EAAa,YAAAqE,EAAY,aAAAxC,EAAa,SAAAnG,EAAS,QAAA4I,EAAQ,eAAAjL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAwI,EAAO,MAAA5H,CAAK,EAAE7E,EAEzma0M,GAAgD1H,GAAK,KAAMxE,GAAKuJ,EAAmB4C,EAAY,CAAC,CAAoC3H,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMxE,EAAsCwE,GAAK,MAAM,EAAE,IAAI4H,IAAKA,GAAIF,CAAW,EAE1TG,EAAQ,CAACjJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,CAAClL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQqL,EAAQ,CAAClJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAClL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQsL,EAAQ,CAACnJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACpL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQyL,EAAM,CAACpJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACnL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQyL,GAAW,CAACrJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,GAAU,CAAC/D,GAAUuE,GAAaD,EAAagF,IAAQA,IAAQP,EAAY,CAAC,GAAGO,IAAQP,EAAY,CAAC,CAAC,EAAE/F,GAAU,IAAI,CAAC,GAAIe,GAAiB,OAAOA,GAAU,SAASwF,IAAU,CAAC,IAAIC,IAAcA,GAAajD,EAAI,WAAW,MAAMiD,KAAe,QAAcA,GAAa,aAAa,cAAc,CAACD,EAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAME,GAAWzJ,EAAS,UAAUuE,GAAaD,EAAa,CAACyE,EAAY,CAAC,EAAE3H,EAAK,eAAesI,GAAIX,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAE3H,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBX,EAAKkJ,EAAY,CAAC,QAAQ,KAAK,SAAsBlJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,IAAQ,EAAa,SAAsB2I,GAAavD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,EAAQ,MAAMC,EAAM,QAAQ/I,EAAagJ,GAAW,GAAG,QAAShJ,EAAwB,GAAXgJ,GAAc,QAAQhJ,EAAa4I,EAAQ,EAAE,QAAS5I,EAAqB,EAAR6I,EAAU,WAAAO,EAAU,EAAE,SAASpD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAapF,EAAM,MAAS,GAAGsH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAA0C,EAAgB,QAAAV,EAAQ,MAAAhH,EAAM,MAAAlB,EAAM,aAAA0D,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAA0C,EAAY,IAAAlN,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,CAAK,EAAE,CAA8C,IAAI2N,EAAWpF,IAAe1D,EAAuDX,IAAYyJ,EAAW,KAAK,IAAInF,CAAoB,IAAI3D,GAAO,IAAM+I,EAAcpN,EAAI,EAAMqN,EAAI,CAAC5J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAYqN,EAAO,CAAC7J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYsN,EAAM9J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYuN,EAAK/J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,CAAC,GAAG,KAAK,SAAS,GAAG7E,EAAM,MAAM,CAAC,GAAG0N,EAAY,QAAQ,GAAGG,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAsB3J,EAAKoH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQ2C,EAAWF,EAAgBV,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,EC3DzkF,IAAMiD,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUJ,GAAmCI,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA7C,CAAQ,EAAE8C,GAAgB,CAAC,WAAAnD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkD,EAAiBrB,GAAuBH,EAAMvB,CAAQ,EAAO,CAAC,sBAAAgD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGzB,GAA4CoB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB0D,EAAM9C,EAAO,IAAI,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAUqB,GAAGlE,GAAkB,GAAG6D,EAAsB,gBAAgBvB,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAY,IAAItB,GAA6BwB,EAAK,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,GAAGpB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAAc7B,EAAKkD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,IAAI,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,IAAI,kHAAkH,aAAa,YAAY,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,IAAI,kHAAkH,aAAa,UAAU,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,EAAe7B,EAAKkD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,uXAAuX,aAAa,YAAY,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,IAAI,uXAAuX,aAAa,WAAW,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,gFAAgF,uHAAuH,wLAAwL,oLAAoL,0IAA0I,wKAAwK,mKAAmK,EASzuMC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,0BAA0BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTyM,IAAMM,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,CAAC,GAASC,GAAmB,CAACD,EAAE,IAAI,yBAAyB,CAAC,GAASE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,qBAAqB,YAAY,sBAAsB,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,KAAAC,EAAK,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAMC,EAAMC,EAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kDAAwC,WAAWC,EAAML,GAA+CG,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,0JAA0J,SAASE,GAAOD,EAAuCb,GAAwBU,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMV,GAAmCK,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,CAAC,IAAI,0FAA0F,OAAO,uQAAuQ,EAAE,WAAWC,EAAMd,GAAgCQ,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,qBAAqB,WAAWC,EAAMX,GAAmCI,EAAM,aAAa,MAAMO,IAAQ,OAAOA,EAAM,cAAc,CAAE,EAAQC,GAAuB,CAACR,EAAM/B,IAAe+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAE+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAUwC,GAA6BC,GAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9C,EAAQ,UAAA+C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9D,CAAQ,EAAE+D,GAAgB,CAAC,WAAApE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmE,EAAiBzB,GAAuBR,EAAM/B,CAAQ,EAAQiE,EAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAatB,GAAuBA,GAAuBA,EAAS,EAAQuB,EAAkBC,GAAqB,EAAE,OAAoBtD,EAAKuD,EAAY,CAAC,GAAGxB,GAA4CmB,EAAgB,SAAsBlD,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBsE,EAAMtD,EAAO,IAAI,CAAC,GAAGmC,EAAU,GAAGI,EAAgB,UAAUgB,GAAG9E,GAAkB,GAAGyE,EAAsB,gBAAgBtB,EAAUS,CAAU,EAAE,mBAAmB,sBAAsB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yDAAyD,GAAGnB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAGhD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEyD,EAAYI,CAAc,EAAE,SAAS,CAAcc,EAAMtD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAcS,EAAMtD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iDAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMtD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBqD,EAAMtD,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAcF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,cAAc,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAMtD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,GAAG,EAAE,SAAS,CAAcS,EAAMtD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGlE,GAAqB,CAAC,UAAU,CAAC,kBAAkBM,EAAkB,CAAC,EAAEmD,EAAYI,CAAc,EAAE,SAAS,CAAc1C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkB1D,EAAkB,CAAC,EAAeW,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkB1D,EAAkB,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK2D,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFP,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,KAAK,IAAI,KAAK,GAAG,YAAY,EAAE,MAAM,aAAa,GAAG/D,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBY,EAAiB,SAAS,YAAY,kBAAkB1D,GAAmB,GAAGR,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ+E,IAAwFP,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,KAAK,IAAI,KAAK,GAAG,kBAAkB,EAAE,MAAM,aAAa,GAAG/D,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,aAAa,GAAG7C,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,aAAa,GAAG7C,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,CAAC,EAAEG,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,kFAAkF,2QAA2Q,8RAA8R,6RAA6R,mMAAmM,gRAAgR,+IAA+I,4OAA4O,sPAAsP,iLAAiL,gLAAgL,iMAAiM,0kCAA0kC,8HAA8H,6DAA6D,gIAAgI,+KAA+K,sHAAsH,2aAA2a,oLAAoL,wFAAwF,utBAAutB,mLAAmL,4EAA4E,2aAA2a,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAS74iBC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oCAAoCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,sBAAsB,qBAAqB,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kDAAwC,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,0JAA0J,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,qBAAqB,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTz1E,IAAMC,GAA2BC,GAASC,EAAqB,EAAQC,GAAoCF,GAASG,EAA8B,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,oBAAoB,YAAY,oBAAoB,YAAY,kBAAkB,YAAY,kBAAkB,YAAY,kBAAkB,YAAY,mBAAmB,YAAY,mBAAmB,YAAY,mBAAmB,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,GAAuB,CAACH,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBpB,GAAuBH,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAiBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAgBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAgBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAiBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAgBV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAgBX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAiBZ,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASzB,CAAW,EAAmC0B,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAS1B,CAAW,EAAmC2B,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBtD,EAAKuD,EAAY,CAAC,GAAGlC,GAA4C6B,GAAgB,SAAsBlD,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBqE,EAAMtD,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAU+B,GAAG7E,GAAkB,GAAGwE,GAAsB,gBAAgBhC,EAAUI,CAAU,EAAE,mBAAmB,oBAAoB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6B+B,GAAK,MAAM,CAAC,GAAG3B,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAS,CAACqB,GAAY,GAAgBhD,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEL,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,GAAG,GAAGvE,GAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU4D,EAAgB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGtD,GAAqB,CAAC,UAAU,CAAC,UAAU2D,CAAe,EAAE,UAAU,CAAC,UAAUC,CAAgB,EAAE,UAAU,CAAC,UAAUJ,CAAe,EAAE,UAAU,CAAC,UAAUC,CAAgB,EAAE,UAAU,CAAC,UAAUC,CAAe,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK0D,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAwEL,GAAkB,OAAQ,OAAO,yBAAyB,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,KAAK,GAAG,GAAGvE,GAAqB,CAAC,UAAU,CAAC,MAAM,WAAwEuE,GAAkB,OAAQ,OAAO,yBAAyB,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,UAAU,CAAC,MAAM,WAAwEA,GAAkB,OAAQ,OAAO,yBAAyB,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,UAAU,CAAC,MAAM,OAAoEA,GAAkB,OAAQ,OAAO,WAAW,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,OAAoEA,GAAkB,OAAQ,OAAO,WAAW,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,OAAoEA,GAAkB,OAAQ,OAAO,WAAW,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,WAAwEA,GAAkB,OAAQ,OAAO,yBAAyB,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKtB,GAA+B,CAAC,UAAU,kDAAwC,UAAU,0JAA0J,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,qBAAqB,UAAU,eAAe,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,UAAU,oDAA0C,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUM,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,gBAAgB,EAAE,UAAU,CAAC,UAAU,sCAAsC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUA,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,eAAe,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,sCAAsC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUA,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,eAAe,EAAE,UAAU,CAAC,UAAU,oDAA0C,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUA,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,gBAAgB,EAAE,UAAU,CAAC,UAAU,oDAA0C,UAAUA,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,gBAAgB,EAAE,UAAU,CAAC,UAAU,sCAAsC,UAAUA,GAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,qBAAqB,UAAU,eAAe,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAEmC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAY,GAAgBhD,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEL,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,GAAG,GAAGvE,GAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,IAAI,EAAE,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU+D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGzD,GAAqB,CAAC,UAAU,CAAC,UAAU0D,CAAe,EAAE,UAAU,CAAC,UAAUC,CAAe,EAAE,UAAU,CAAC,UAAUL,CAAe,EAAE,UAAU,CAAC,UAAUE,CAAe,EAAE,UAAU,CAAC,UAAUI,CAAgB,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgBO,EAAMtD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG5E,GAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUmE,EAAgB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG7D,GAAqB,CAAC,UAAU,CAAC,UAAU+D,EAAgB,EAAE,UAAU,CAAC,UAAUD,EAAe,CAAC,EAAErB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG5E,GAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUqE,GAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,GAAqB,CAAC,UAAU,CAAC,UAAU8D,EAAe,EAAE,UAAU,CAAC,UAAUD,CAAe,CAAC,EAAEpB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,kFAAkF,kQAAkQ,oOAAoO,8HAA8H,+QAA+Q,+kBAA+kB,sKAAsK,+LAA+L,2aAA2a,2aAA2a,+aAA+a,8LAA8L,+GAA+G,sFAAsF,2aAA2a,+JAA+J,2HAA2H,+aAA+a,0aAA0a,EAQp2rBC,GAAgBC,GAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yCAAyCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,oBAAoB,oBAAoB,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,kBAAkB,iBAAiB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGtF,GAA2B,GAAGG,EAAmC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR3B,IAAMyF,GAAuBC,GAASC,EAAiB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,cAAc,YAAY,gBAAgB,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,UAAAC,EAAU,UAAAC,EAAU,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGL,EAAM,WAAWC,EAAKR,GAAyCO,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAK,WAAWC,EAAMJ,GAAmCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,QAAQ,WAAWC,EAAMN,GAA+CG,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,6EAA6E,UAAUP,GAA+CI,EAAM,UAAU,SAASK,GAAOD,EAAuCb,GAAwBS,EAAM,OAAO,KAAK,MAAMI,IAAyC,OAAOA,EAAuCJ,EAAM,WAAW,MAAMK,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACN,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAUkC,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASQ,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAvD,CAAQ,EAAEwD,GAAgB,CAAC,WAAA7D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4D,EAAiBxB,GAAuBN,EAAM3B,CAAQ,EAAQ0D,EAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAarB,GAAuBA,EAAS,EAAQsB,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAGvB,GAA4CkB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB+D,EAAMlD,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUgB,GAAGvE,GAAkB,GAAGkE,EAAsB,gBAAgBrB,EAAUQ,CAAU,EAAE,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,eAAe,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAS,CAAcc,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFN,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,QAAQ,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,OAAO,GAAG3D,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBc,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAG3D,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuE,IAAwFN,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,QAAQ,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,OAAO,GAAG3D,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0B,IAAwFN,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,QAAQ,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,OAAO,GAAG3D,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0B,IAAwFN,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,QAAQ,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,OAAO,GAAG3D,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEK,EAAYI,CAAc,CAAC,CAAC,EAAec,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4EAA4E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,GAAwBhC,EAAKyD,EAA0B,CAAC,OAAO,EAAE,MAAmER,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,QAAQ,EAAE,OAAO,IAAI,GAAGjE,GAAqB,CAAC,UAAU,CAAC,GAAgEiE,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,QAAQ,EAAE,OAAO,GAAG,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,QAAQ,EAAE,OAAO,GAAG,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,QAAQ,EAAE,OAAO,GAAG,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKpB,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kBAAkB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wEAAwE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8E,GAAI,CAAC,kFAAkF,gFAAgF,gRAAgR,yRAAyR,uOAAuO,8RAA8R,iHAAiH,oKAAoK,wGAAwG,g2BAAg2B,gEAAgE,sGAAsG,4GAA4G,kKAAkK,0vBAA0vB,yFAAyF,0vBAA0vB,GAAeA,GAAI,GAAgBA,EAAG,EAS32aC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sCAAsCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,cAAc,gBAAgB,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,6EAA6E,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjF,GAAuB,GAAGuF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/C,IAAMC,GAAoBC,GAASC,EAAc,EAAQC,GAAmCC,GAA0BC,CAAS,EAAQC,GAA6BL,GAASM,EAAuB,EAAQC,GAA+BP,GAASQ,EAAyB,EAAQC,GAAmCN,GAA0BO,EAAO,GAAG,EAAQC,GAA+BR,GAA0BS,EAAK,EAAQC,GAA+Bb,GAASc,EAAyB,EAAQC,GAAgBC,GAAON,EAAO,GAAG,EAAQO,GAAoBjB,GAASkB,EAAc,EAAQC,GAAenB,GAASoB,CAAS,EAAQC,GAA2BrB,GAASsB,EAAqB,EAAQC,GAAavB,GAASwB,EAAO,EAAQC,GAAmCzB,GAAS0B,EAA6B,EAAQC,GAAoBX,GAAON,EAAO,OAAO,EAAQkB,GAAwC5B,GAAS6B,EAAkC,EAAQC,GAA0B9B,GAAS+B,EAAoB,EAAQC,GAAoBhC,GAASiC,EAAc,EAAQC,GAAgBlB,GAAOZ,CAAS,EAAQ+B,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,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,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWhB,EAAW,EAAQiB,GAAmB,CAACC,EAAE,IAAI,yBAAyB,CAAC,GAASC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWhB,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQiB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWjB,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQkB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAd,EAAS,uBAAAe,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOf,EAAS,CAAC,KAAK,IAAIkB,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAa,CAACD,EAAME,EAAQ,CAAC,EAAEC,IAAe,CAAC,GAAG,OAAOH,GAAQ,SAAS,MAAM,GAAG,IAAMI,EAAK,IAAI,KAAKJ,CAAK,EAAE,GAAG,MAAMI,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAQH,EAAQ,QAAQA,EAAQ,QAAQ,OAAaI,EAAY,CAAC,UAAUD,IAAU,OAAOH,EAAQ,UAAU,OAAU,UAAUG,IAAU,OAAO,OAAU,QAAQ,SAAS,KAAK,EAAQE,EAAe,QAAcC,EAAON,EAAQ,QAAQC,GAAcI,EAC76O,GAAG,CAAC,OAAOH,EAAK,eAAeI,EAAOF,CAAW,CAAE,MAAM,CAAC,OAAOF,EAAK,eAAeG,EAAeD,CAAW,CAAE,CAAC,EAAQG,GAAU,CAAC,CAAC,MAAAT,CAAK,IAAoBU,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOX,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUY,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAjB,EAAa,UAAAkB,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAE5C,GAASI,CAAK,EAAQyC,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUxD,CAAY,EAAE,GAAGwD,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,EAAG,CAAC,EAAE,CAAC,OAAUzD,CAAY,CAAC,EAAQ0D,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUxD,CAAY,EAAE,SAAS,MAAMwD,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUxD,CAAY,CAAC,EAAE,GAAK,CAAC2D,EAAYC,EAAmB,EAAEC,GAA8BtC,EAAQuC,GAAY,EAAK,EAAQC,GAAe,OAAe,CAAC,sBAAAC,GAAsB,MAAAC,EAAK,EAAEC,GAAyB,MAAS,EAAQC,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,EAAQ,IAAIL,GAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,GAAa,CAAC,CAAC,QAAAH,EAAQ,SAAAC,EAAQ,IAAIL,GAAsB,SAASM,KAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAA6NI,GAAkBC,GAAGxH,GAAkB,GAAtO,CAAaoE,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQqD,GAAWC,GAAO,IAAI,EAAQC,GAAOC,GAAU,EAAQC,GAAiBC,GAAc,EAAQC,GAAsBC,GAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoB5E,EAAK6E,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnI,EAAiB,EAAE,SAAsBoI,EAAMC,EAAY,CAAC,GAAGjE,GAAU0D,GAAgB,SAAS,CAAcxE,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAegF,EAAME,EAAO,IAAI,CAAC,GAAGlC,GAAU,UAAUmB,GAAGD,GAAkB,gBAAgBnD,CAAS,EAAE,IAAIJ,GAAKyD,GAAK,MAAM,CAAC,GAAGtD,CAAK,EAAE,SAAS,CAAcZ,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBnD,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAMP,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,SAAsB3E,EAAKmF,GAAmC,CAAC,QAAQvI,GAAU,UAAU,2BAA2B,wBAAwB,UAAU,QAAQC,GAAW,UAAU,GAAK,SAAsBmD,EAAKoF,GAAe,CAAC,UAAU,4EAA4E,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,6kBAA6kB,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,6kBAA6kB,aAAa,WAAW,CAAC,EAAE,SAAsBnD,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,4kBAA4kB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerF,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,okBAAokB,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,okBAAokB,aAAa,UAAU,CAAC,EAAE,SAAsBnD,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,2kBAA2kB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAAcA,EAAMQ,GAAmC,CAAC,QAAQvI,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,eAAe,QAAQF,GAAW,UAAU,GAAK,SAAS,CAAciI,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gHAAgH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B1F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWwB,GAAmB,OAAO,OAAO,iCAAiC,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuC,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB1F,EAAK4F,GAAwB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAUF,EAAc,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B7F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWwB,GAAmB,OAAO,OAAO,iCAAiC,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,eAAe,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0C,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB7F,EAAK8F,GAA0B,CAAC,UAAUD,EAAe,CAAC,EAAE,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,mBAAmB,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,UAAU,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAc9E,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,uzIAAuzI,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc9E,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAc9E,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,gwHAAgwH,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc9E,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iEAAiE,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYwB,GAAmB,OAAO,OAAO,2BAA2B,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iEAAiE,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB3E,EAAK+F,GAA+B,CAAC,QAAQ3I,GAAW,WAAW,CAAC,IAAI,iEAAiE,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,oBAAoBuH,GAAmB,OAAO,OAAO,qDAAqD,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,QAAQ,QAAQ9H,GAAW,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKgG,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAsBwC,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYP,GAAmB,OAAO,OAAO,oBAAoB,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKiG,GAA0B,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,CAAC,CAAC,CAAC,EAAejG,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWwB,GAAmB,OAAO,OAAO,2BAA2B,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsB3E,EAAKkG,GAAM,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,qBAAqBvB,GAAmB,OAAO,OAAO,oDAAoD,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnD,EAAWwF,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,KAAkB9E,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,KAAkB9E,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnD,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnD,EAAWwF,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,MAAmB9E,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,MAAmB9E,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnD,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAE,SAAsBnD,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,+ZAA+Z,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerF,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,oZAAoZ,aAAa,WAAW,CAAC,EAAE,SAAsBnD,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,4ZAA4Z,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,yGAA+F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAc9E,EAAKkG,GAAM,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,EAAepB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,QAAQ,EAAE,IAAI,stBAAstB,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6BnG,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgD,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnG,EAAK4F,GAAwB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAUO,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenG,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6BpG,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiD,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBpG,EAAK8F,GAA0B,CAAC,UAAUM,EAAe,CAAC,EAAE,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,0BAA0B,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepG,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAKkF,EAA0B,CAAC,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,UAAU,uEAAuE,SAAS,GAAG,aAAa,KAAK,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,KAAK,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,UAAU,uEAAuE,WAAW,sEAAsE,kBAAkB,EAAI,EAAE,WAAW,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,uEAAuE,SAAS,GAAG,aAAa,KAAK,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,UAAU,uEAAuE,WAAW,sEAAsE,kBAAkB,EAAI,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsBnD,EAAKqG,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,uEAAuE,SAAS,IAAI,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,KAAK,gBAAgB,IAAI,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,UAAU,uEAAuE,WAAW,sEAAsE,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcrG,EAAKgF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAWC,GAAe5C,KAAwB7D,EAAK0G,GAAU,CAAC,SAASF,GAAY,IAAI,CAAC,CAAC,GAAGrF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE0F,KAAS3F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBlB,EAAK+E,EAAY,CAAC,GAAG,aAAa5D,CAAW,GAAG,SAAsBnB,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5F,CAAkB,EAAE,SAAsBhB,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7F,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBhB,EAAKgF,EAAO,EAAE,CAAC,UAAU,gCAAgC,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAU5F,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKgF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,YAAY,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACQ,EAAYC,GAAgBC,KAAyBjH,EAAK0G,GAAU,CAAC,SAASK,GAAa,IAAI,CAAC,CAAC,GAAGxF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE6F,KAAU9F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBtB,EAAK+E,EAAY,CAAC,GAAG,aAAaxD,CAAW,GAAG,SAAsBvB,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUxF,CAAkB,EAAE,SAAsBpB,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUzF,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBpB,EAAKgF,EAAO,EAAE,CAAC,UAAU,gCAAgC,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAUxF,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKgF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,eAAe,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACY,EAAYC,GAAgBC,KAAyBrH,EAAK0G,GAAU,CAAC,SAASS,GAAa,IAAI,CAAC,CAAC,GAAGxF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE6F,KAAU9F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB1B,EAAK+E,EAAY,CAAC,GAAG,aAAapD,CAAW,GAAG,SAAsB3B,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpF,CAAkB,EAAE,SAAsBxB,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUrF,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBxB,EAAKgF,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAUpF,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKgF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACgB,EAAYC,GAAgBC,KAAyBzH,EAAK0G,GAAU,CAAC,SAASa,GAAa,IAAI,CAAC,CAAC,GAAGxF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE6F,KAAU9F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB9B,EAAK+E,EAAY,CAAC,GAAG,aAAahD,CAAW,GAAG,SAAsB/B,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhF,CAAkB,EAAE,SAAsB5B,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUjF,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsB5B,EAAKgF,EAAO,EAAE,CAAC,UAAU,gCAAgC,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAUhF,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKgF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,aAAa,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACoB,EAAYC,GAAgBC,KAAyB7H,EAAK0G,GAAU,CAAC,SAASiB,GAAa,IAAI,CAAC,CAAC,GAAGxF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE6F,KAAU9F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBlC,EAAK+E,EAAY,CAAC,GAAG,aAAa5C,CAAW,GAAG,SAAsBnC,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5E,CAAkB,EAAE,SAAsBhC,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7E,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBhC,EAAKgF,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAU5E,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKgF,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBhF,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,YAAY,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACwB,EAAYC,GAAgBC,KAAyBjI,EAAK0G,GAAU,CAAC,SAASqB,GAAa,IAAI,CAAC,CAAC,GAAGxF,EAAY,UAAUH,EAAmB,UAAUE,EAAmB,UAAUD,CAAkB,EAAE6F,KAAU9F,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBtC,EAAK+E,EAAY,CAAC,GAAG,aAAaxC,CAAW,GAAG,SAAsBvC,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUxE,CAAkB,EAAE,SAAsBpC,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUzE,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBpC,EAAKgF,EAAO,EAAE,CAAC,UAAU,gCAAgC,SAAsBhF,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAK8G,GAAe,CAAC,UAAUxE,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnD,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAc9E,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,2wFAA2wF,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerF,EAAKqF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,mwFAAmwF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8DAA8D,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWwB,GAAmB,OAAO,OAAO,yBAAyB,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,8DAA8D,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBG,EAAMoB,GAAM,CAAC,WAAW,CAAC,IAAI,8DAA8D,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYvB,GAAmB,OAAO,OAAO,+BAA+B,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc3E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeA,EAAKrB,GAAQ,CAAC,SAASiF,GAAsB5D,EAAK0G,GAAU,CAAC,SAAsB1G,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,CAAC,EAAE,SAAsBnD,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBlF,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkBlF,EAAkB,EAAE,UAAU,CAAC,kBAAkBA,EAAkB,CAAC,EAAE,SAAsB6G,EAAMa,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,WAAW3H,GAAW,SAAS,CAAcgC,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKmI,GAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUxE,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAe5D,EAAKoI,GAAgB,CAAC,SAASxE,EAAQ,SAAsB5D,EAAK0G,GAAU,CAAC,SAA+B2B,GAA0BvD,EAAYU,EAAS,CAAC,SAAS,CAAcxF,EAAKgF,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUf,GAAGD,GAAkB,eAAe,EAAE,wBAAwB,UAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIJ,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAe5D,EAAKkF,EAA0B,CAAC,SAAsBlF,EAAK2F,EAAU,CAAC,QAAQtH,GAAY,UAAU4F,GAAGD,GAAkB,yBAAyB,EAAE,wBAAwB,UAAU,KAAK5F,GAAY,QAAQE,GAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBL,GAAmB,SAAsB+B,EAAKsI,GAAQ,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,KAAK,WAAW,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,GAAG,eAAe,GAAG,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetI,EAAKgF,EAAO,IAAI,CAAC,QAAQxG,GAAY,UAAUyF,GAAGD,GAAkB,eAAe,EAAE,mBAAmB,aAAa,wBAAwB,UAAU,KAAKzF,GAAY,QAAQE,GAAY,MAAMsF,GAAa,CAAC,QAAAH,CAAO,CAAC,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5D,EAAKqF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,QAAQ,EAAE,IAAI,+SAA+S,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE3G,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYP,GAAmB,OAAO,OAAO,+BAA+B,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKuI,GAA8B,CAAC,UAAU,GAAK,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6EAA6E,UAAUtJ,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYP,GAAmB,OAAO,OAAO,+BAA+B,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKuI,GAA8B,CAAC,UAAU,GAAK,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6EAA6E,UAAUtJ,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYP,GAAmB,OAAO,OAAO,+BAA+B,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKuI,GAA8B,CAAC,UAAU,GAAM,UAAU,mBAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6EAA6E,UAAUtJ,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS+C,GAA6BxI,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxI,EAAK4F,GAAwB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU4C,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAM2D,GAAoB,CAAC,kBAAkB,CAAC,WAAWnL,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcwC,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,MAAM,QAAQwB,GAAmB,OAAO,OAAO,aAAa,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,CAAC,EAAE,SAAsB3E,EAAKkG,GAAM,CAAC,WAAW,CAAC,IAAI,gEAAgE,IAAI,OAAO,MAAM,QAAQvB,GAAmB,OAAO,OAAO,aAAa,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAsB8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiD,GAA6B1I,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,mBAAmBwB,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1I,EAAK4F,GAAwB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU8C,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1I,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkD,GAA6B3I,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,mBAAmBwB,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwF,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3I,EAAK8F,GAA0B,CAAC,UAAU6C,EAAe,CAAC,EAAE,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,mBAAmB,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3I,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qMAAqM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmD,GAA6B5I,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB5I,EAAK4F,GAAwB,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAUgD,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc9E,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,aAAawB,GAAmB,OAAO,OAAO,4BAA4B,IAAI,sEAAsE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsB3E,EAAKkG,GAAM,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYvB,GAAmB,OAAO,OAAO,+BAA+B,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc9E,EAAKkG,GAAM,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,EAAepB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,UAAU,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,UAAU,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0CAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYP,GAAmB,OAAO,OAAO,oBAAoB,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,0BAA0B,SAAsB3F,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAK6I,GAAmC,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7I,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAsBA,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASqD,GAA6B9I,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWwB,GAAmB,OAAO,OAAO,wBAAwB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2F,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB9I,EAAK4F,GAAwB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAUkD,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9I,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB8E,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW1I,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAS,CAAcsH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9E,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWwF,EAAS,CAAC,SAAsBxF,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qDAAqD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASsD,GAA6B/I,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYwB,GAAmB,OAAO,OAAO,mBAAmB,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,GAAG,SAAsBlF,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,WAAW1I,GAAW,SAASC,GAAW,SAAsB8C,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4F,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/I,EAAK8F,GAA0B,CAAC,UAAUiD,EAAe,CAAC,EAAE,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,sBAAsB,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/I,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKsG,GAAmB,CAAC,SAAsBtG,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKsL,GAAU,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAYC,GAAgBC,KAAyBnJ,EAAK0G,GAAU,CAAC,SAASuC,GAAa,IAAI,CAAC,CAAC,UAAUrG,EAAmB,GAAGC,EAAY,UAAUL,EAAmB,UAAUG,EAAmB,UAAUD,EAAmB,UAAUD,EAAkB,EAAE2G,MAAU5G,IAAqB,GAAGE,IAAqB,GAAGC,IAAqB,GAAuB3C,EAAK+E,EAAY,CAAC,GAAG,aAAalC,CAAW,GAAG,SAAsB7C,EAAK4G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpE,CAAkB,EAAE,SAAsBxC,EAAK6G,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUrE,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBxC,EAAK,IAAI,CAAC,UAAU,gCAAgC,SAAsBA,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAewB,GAAmB,OAAO,OAAO,iCAAiC,EAAE,UAAU,CAAC,MAAM,eAAeA,GAAmB,OAAO,OAAO,iCAAiC,CAAC,EAAE,SAAsB3E,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,wCAAwC,SAAsB3E,EAAK2F,EAAU,CAAC,UAAU,2BAA2B,SAAsB3F,EAAKqJ,GAAqB,CAAC,OAAO,OAAO,UAAU3G,EAAmB,GAAG,YAAY,UAAUpD,GAAasD,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAE0B,EAAgB,EAAE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUlF,GAAkBqD,EAAkB,EAAE,UAAUE,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKkF,EAA0B,CAAC,OAAO,KAAK,MAAMP,GAAmB,OAAO,QAAQ,SAAsB3E,EAAKsJ,GAAgB,CAAC,kBAAkB,CAAC,WAAWhM,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,SAAsBwC,EAAKiF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnD,EAAKuJ,GAAe,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,EAAevJ,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwJ,GAAI,CAAC,kFAAkF,kFAAkF,qVAAqV,yIAAyI,oSAAoS,gWAAgW,6HAA6H,4HAA4H,yUAAyU,iTAAiT,+QAA+Q,wTAAwT,wXAAwX,mnBAAmnB,+QAA+Q,oTAAoT,yGAAyG,mSAAmS,oYAAoY,yRAAyR,kUAAkU,gGAAgG,oTAAoT,8WAA8W,+FAA+F,0XAA0X,gRAAgR,uTAAuT,kTAAkT,6VAA6V,gTAAgT,0TAA0T,yTAAyT,+kBAA+kB,qRAAqR,qOAAqO,kUAAkU,oRAAoR,qOAAqO,kaAAka,8HAA8H,+HAA+H,+RAA+R,6SAA6S,6QAA6Q,+LAA+L,6RAA6R,yQAAyQ,mRAAmR,iTAAiT,8RAA8R,+FAA+F,8eAA8e,kTAAkT,4TAA4T,0RAA0R,sNAAsN,yLAAyL,yaAAya,0GAA0G,iZAAiZ,6aAA6a,mTAAmT,gSAAgS,gVAAgV,qSAAqS,8QAA8Q,+QAA+Q,saAAsa,2HAA2H,8HAA8H,2TAA2T,2PAA2P,kMAAkM,6KAA6K,oPAAoP,mKAAmK,oLAAoL,8RAA8R,4RAA4R,4RAA4R,kOAAkO,4iBAA4iB,kZAAkZ,kZAAkZ,+TAA+T,6TAA6T,yRAAyR,8SAA8S,6RAA6R,oRAAoR,yTAAyT,sjBAAsjB,gHAAgH,6RAA6R,qOAAqO,oaAAoa,uYAAuY,wYAAwY,6eAA6e,oRAAoR,+RAA+R,kTAAkT,8QAA8Q,gTAAgT,4PAA4P,qTAAqT,6HAA6H,gmbAAgmb,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,k0LAAk0L,2/SAA2/S,EAW7zgKC,GAAgBC,GAAQnJ,GAAUiJ,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,GAAGI,GAAoB,GAAGC,GAA6B,GAAGC,GAA+B,GAAGC,GAA+B,GAAGC,GAAoB,GAAGC,GAAe,GAAGC,GAA2B,GAAGC,GAAa,GAAGC,GAAmC,GAAGC,GAAwC,GAAGC,GAA0B,GAAGC,GAAoB,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,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC5uF,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,oCAAsC,4JAA0L,sBAAwB,OAAO,yBAA2B,QAAQ,qBAAuB,4BAA4B,sBAAwB,IAAI,4BAA8B,OAAO,yBAA2B,OAAO,qBAAuB,OAAO,6BAA+B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["noopReturn", "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", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qgIwD7h0D", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapp6xxrf", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerAcLZ3i07n", "withCSS", "AcLZ3i07n_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transformTemplate2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "date", "height", "id", "image", "name1", "paragraph", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d3o_EuJIe", "dqsNr6223", "VtxK3j6d8", "vgvMLTUvw", "VqvbMUCc1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerxm1_qXYgw", "withCSS", "xm1_qXYgw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ComponentsButtonArrowFonts", "getFonts", "ba1OkQgWK_default", "PageComponentsTestimonialsCardFonts", "xm1_qXYgw_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Jh_gzM42keozgd8", "args", "Jh_gzM42k1f07ch", "Jh_gzM42k1uw8y3n", "Jh_gzM42k1tukxf", "Jh_gzM42ki2dlgb", "Jh_gzM42k1qw5j55", "Jh_gzM42k122lnl", "Jh_gzM42k9azlic", "Jh_gzM42k1mmx8wi", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerBQMrZwQ5F", "withCSS", "BQMrZwQ5F_default", "addPropertyControls", "ControlType", "addFonts", "ComponentsDividerFonts", "getFonts", "hBw13MNMY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "divider", "height", "id", "imageIcon", "paragraph", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "v0llRbTzw", "Fl0iRE0bn", "tkrtx9Vm8", "Db8dtKQFE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "Framerj19V_4wvj", "withCSS", "j19V_4wvj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderHeaderV1Fonts", "getFonts", "dMbFQUZQy_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ComponentsPrimaryButtonFonts", "pOGgPX4b1_default", "ComponentsSecondaryButtonFonts", "zHpR9H_jX_default", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "PageComponentsBookingCardFonts", "sXz4cRE43_default", "MotionDivWithFX", "withFX", "CMSServiceCardFonts", "JmceEDUMo_default", "SlideshowFonts", "Slideshow", "ComponentsVideoButtonFonts", "AcLZ3i07n_default", "YouTubeFonts", "Youtube", "PageComponentsIconLeftContentFonts", "j19V_4wvj_default", "MotionSectionWithFX", "PageComponentsSliderTestimonialsV1Fonts", "BQMrZwQ5F_default", "CMSBlogPostImageCardFonts", "WUP9VE8g0_default", "FooterFooterV1Fonts", "jlbxLxemx_default", "ContainerWithFX", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "transition6", "animation7", "animation8", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation9", "transformTemplate1", "_", "transition7", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "s46JIT1FaGG9O_qS4q", "xZbMkBO1TGG9O_qS4q", "XhABW9Kt7GG9O_qS4q", "idGG9O_qS4q", "s46JIT1FaS_malQtaj", "xZbMkBO1TS_malQtaj", "XhABW9Kt7S_malQtaj", "idS_malQtaj", "s46JIT1FaSRtiDN9gA", "xZbMkBO1TSRtiDN9gA", "XhABW9Kt7SRtiDN9gA", "idSRtiDN9gA", "s46JIT1FaaVMOm2H2m", "xZbMkBO1TaVMOm2H2m", "XhABW9Kt7aVMOm2H2m", "idaVMOm2H2m", "s46JIT1Fas65BA81EE", "xZbMkBO1Ts65BA81EE", "XhABW9Kt7s65BA81EE", "ids65BA81EE", "s46JIT1FaULrtAI3qJ", "xZbMkBO1TULrtAI3qJ", "XhABW9Kt7ULrtAI3qJ", "idULrtAI3qJ", "qTWKvqd3gP80XO5h76", "Wdo9s3YM7P80XO5h76", "vPIRIrOMpP80XO5h76", "rRGoDN84BP80XO5h76", "ctXB6c_GUP80XO5h76", "idP80XO5h76", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "qgIwD7h0D3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "dMbFQUZQy_default", "SVG", "MotionDivWithOptimizedAppearEffect", "RichText2", "x", "ResolveLinks", "resolvedLinks", "Container", "pOGgPX4b1_default", "resolvedLinks1", "zHpR9H_jX_default", "ImageWithOptimizedAppearEffect", "MotionDivWithFX", "sXz4cRE43_default", "Image2", "resolvedLinks2", "resolvedLinks3", "Slideshow", "ChildrenCanSuspend", "huDFV53ev_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "Link", "JmceEDUMo_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "AcLZ3i07n_default", "AnimatePresence", "Ga", "Youtube", "j19V_4wvj_default", "resolvedLinks4", "MotionSectionWithFX", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "BQMrZwQ5F_default", "resolvedLinks8", "resolvedLinks9", "UVWYyksHW_default", "collection6", "paginationInfo6", "loadMore6", "index6", "WUP9VE8g0_default", "ContainerWithFX", "jlbxLxemx_default", "css", "FramerxNHQGVjHL", "withCSS", "xNHQGVjHL_default", "addFonts", "HeaderHeaderV1Fonts", "ComponentsPrimaryButtonFonts", "ComponentsSecondaryButtonFonts", "PageComponentsBookingCardFonts", "CMSServiceCardFonts", "SlideshowFonts", "ComponentsVideoButtonFonts", "YouTubeFonts", "PageComponentsIconLeftContentFonts", "PageComponentsSliderTestimonialsV1Fonts", "CMSBlogPostImageCardFonts", "FooterFooterV1Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
