{
  "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/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/6gJYwGj81YX3Q0GNtrdE/Qm86SF1p9YpIw13LRwRc/EVVV40dDD.js", "ssg:https://ga.jspm.io/npm:phenomenon@1.6.0/dist/phenomenon.mjs", "ssg:https://ga.jspm.io/npm:cobe@0.6.0/dist/index.esm.js", "ssg:https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.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{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"HgYzBvHfb\"];const serializationHash=\"framer-SOzQq\";const variantClassNames={HgYzBvHfb:\"framer-v-7iu0gf\"};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(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HgYzBvHfb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7iu0gf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HgYzBvHfb\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ndftzc\",layoutDependency:layoutDependency,layoutId:\"ogUuCVw44\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lm98y8-container\",layoutDependency:layoutDependency,layoutId:\"hKnQMnAE4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:35,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"hKnQMnAE4\",layoutId:\"hKnQMnAE4\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-anmwb9\",layoutDependency:layoutDependency,layoutId:\"nt8yTdbfg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfq2ij\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"ZHCADslna\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/As3DZKXhtlkRELBQKbfhVv0lx0k.png\",srcSet:\"https://framerusercontent.com/images/As3DZKXhtlkRELBQKbfhVv0lx0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/As3DZKXhtlkRELBQKbfhVv0lx0k.png 827w\"},className:\"framer-1o2ssi4\",\"data-framer-name\":\"Baldursgate4_Button1_Off\",layoutDependency:layoutDependency,layoutId:\"M8efSSbLv\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iemh9q\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"koTaOrAjo\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1px\",src:\"https://framerusercontent.com/images/7Qa94ID1KyY8nfpL8beL80SYEo.png\",srcSet:\"https://framerusercontent.com/images/7Qa94ID1KyY8nfpL8beL80SYEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7Qa94ID1KyY8nfpL8beL80SYEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Qa94ID1KyY8nfpL8beL80SYEo.png 1080w\"},className:\"framer-r56ygs\",\"data-framer-name\":\"NoMansSky_Switch2_Left\",layoutDependency:layoutDependency,layoutId:\"S6Ap6A1oO\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ligyx\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"gw6q7uQXd\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"142px\",src:\"https://framerusercontent.com/images/wAO4r0P0ix611otHSdrjKUk2I.png\",srcSet:\"https://framerusercontent.com/images/wAO4r0P0ix611otHSdrjKUk2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/wAO4r0P0ix611otHSdrjKUk2I.png 635w\"},className:\"framer-wxvr9\",\"data-framer-name\":\"DCS_Button3_Off\",layoutDependency:layoutDependency,layoutId:\"ATwhA_x1v\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1os5c7h\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"WPWYBjCJY\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"142px\",src:\"https://framerusercontent.com/images/ON5YRPpC41KF0u7LiRQlIHUGjfQ.png\",srcSet:\"https://framerusercontent.com/images/ON5YRPpC41KF0u7LiRQlIHUGjfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ON5YRPpC41KF0u7LiRQlIHUGjfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ON5YRPpC41KF0u7LiRQlIHUGjfQ.png 1159w\"},className:\"framer-13genco\",\"data-framer-name\":\"Baldursgate4_Button2_On\",layoutDependency:layoutDependency,layoutId:\"X1NL15YEd\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbegy9\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"lpdM8ACkO\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"126px\",src:\"https://framerusercontent.com/images/PSdxKFU9ojLaFmQRtIPChck38II.png\",srcSet:\"https://framerusercontent.com/images/PSdxKFU9ojLaFmQRtIPChck38II.png?scale-down-to=512 512w,https://framerusercontent.com/images/PSdxKFU9ojLaFmQRtIPChck38II.png 968w\"},className:\"framer-1nqkpsc\",\"data-framer-name\":\"FarmingSim_Toggle_Left\",layoutDependency:layoutDependency,layoutId:\"nB7R3Cqeo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yw8ko8\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"Lf6oOmj2K\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"142px\",src:\"https://framerusercontent.com/images/p1mkEW7lW23W03vrPMTDpSf7NKU.png\",srcSet:\"https://framerusercontent.com/images/p1mkEW7lW23W03vrPMTDpSf7NKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/p1mkEW7lW23W03vrPMTDpSf7NKU.png 847w\"},className:\"framer-sn7yth\",\"data-framer-name\":\"DCS_Button4_Off\",layoutDependency:layoutDependency,layoutId:\"Sze7hYAPI\"})})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpp46l-container\",layoutDependency:layoutDependency,layoutId:\"w9FNb2JV1-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:35,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"w9FNb2JV1\",layoutId:\"w9FNb2JV1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s8vjt9\",layoutDependency:layoutDependency,layoutId:\"zGSz5b8OD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16f82e2\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"KWB3dopV6\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8uiKcILje9yEo9eTbesDU80Q.png\",srcSet:\"https://framerusercontent.com/images/8uiKcILje9yEo9eTbesDU80Q.png 332w\"},className:\"framer-ut6x0u\",\"data-framer-name\":\"FarmingSim_Switch2_Down\",layoutDependency:layoutDependency,layoutId:\"Z0m7oRf5d\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h1xjmc\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"PB5qWZgS7\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/EF8bEeTdo2NF2SLgHisbSjYuSoo.png\",srcSet:\"https://framerusercontent.com/images/EF8bEeTdo2NF2SLgHisbSjYuSoo.png?scale-down-to=512 512w,https://framerusercontent.com/images/EF8bEeTdo2NF2SLgHisbSjYuSoo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EF8bEeTdo2NF2SLgHisbSjYuSoo.png 1304w\"},className:\"framer-rjmjxz\",\"data-framer-name\":\"Baldursgate4_Panel1_Rectangle\",layoutDependency:layoutDependency,layoutId:\"uRxUr9BAX\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6hfw7w\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"OdRZTQOrU\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"666px\",src:\"https://framerusercontent.com/images/db1onIkZNTMjDzZsJdsBvzDjMwE.png\",srcSet:\"https://framerusercontent.com/images/db1onIkZNTMjDzZsJdsBvzDjMwE.png 590w\"},className:\"framer-1x8uvav\",\"data-framer-name\":\"FarmingSim_Slider_Up\",layoutDependency:layoutDependency,layoutId:\"dkHtEuAcV\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r16gsm\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"mgU_RSImn\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/UTZTuDgxcgOC0yQXt6ZBgnFYKQ.png\",srcSet:\"https://framerusercontent.com/images/UTZTuDgxcgOC0yQXt6ZBgnFYKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UTZTuDgxcgOC0yQXt6ZBgnFYKQ.png 832w\"},className:\"framer-5d6r4r\",\"data-framer-name\":\"Starfield_Slider_Locked\",layoutDependency:layoutDependency,layoutId:\"lY2XbCbhv\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7ycj5\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"x7zcaXXyY\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pD3P3yBb0wVQV1AFICTXPjYYJE.png\",srcSet:\"https://framerusercontent.com/images/pD3P3yBb0wVQV1AFICTXPjYYJE.png 324w\"},className:\"framer-u22c5k\",\"data-framer-name\":\"NoMansSky_Switch4_Down\",layoutDependency:layoutDependency,layoutId:\"MKPv_VQzE\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-63mq59\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"A7upmb3AZ\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/87WVAL9srx5d4KRcXQR1WIV9hGw.png\",srcSet:\"https://framerusercontent.com/images/87WVAL9srx5d4KRcXQR1WIV9hGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/87WVAL9srx5d4KRcXQR1WIV9hGw.png 632w\"},className:\"framer-1iuyp7h\",\"data-framer-name\":\"EuroTruckSim_Toggle1_Left\",layoutDependency:layoutDependency,layoutId:\"gDyr1yGRl\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bexajs\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"fNLHmhGXM\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/JeUnKllG5Ew9wTkaFK5U6yiCNw.png\",srcSet:\"https://framerusercontent.com/images/JeUnKllG5Ew9wTkaFK5U6yiCNw.png 500w\"},className:\"framer-5jj858\",\"data-framer-name\":\"DCS_Toggle4_Left\",layoutDependency:layoutDependency,layoutId:\"i2m8Qm0fO\"})})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12saxfk-container\",layoutDependency:layoutDependency,layoutId:\"iUjPSy0yy-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:35,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"iUjPSy0yy\",layoutId:\"iUjPSy0yy\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-177k371\",layoutDependency:layoutDependency,layoutId:\"BlctgrBdU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z50mkq\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"UnEOuwZTg\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/3HHJuWtMh2K8FZE8YhPWs5i6Vg.png\"},className:\"framer-1889qbk\",\"data-framer-name\":\"Starfield_Toggle3_Down\",layoutDependency:layoutDependency,layoutId:\"PxBHqspKP\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j66cu1\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"b4peNjijo\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/bNOTaRsiyAjq7BvHcIEr840P7k.png\"},className:\"framer-17754pq\",\"data-framer-name\":\"NoMansSky_Button1_Off\",layoutDependency:layoutDependency,layoutId:\"XFc4z_kEk\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8v8kev\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"CRffw3NMO\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"883px\",src:\"https://framerusercontent.com/images/IsTGUmn3Szf8j2XpTZzQCaMqA.png\",srcSet:\"https://framerusercontent.com/images/IsTGUmn3Szf8j2XpTZzQCaMqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsTGUmn3Szf8j2XpTZzQCaMqA.png 782w\"},className:\"framer-tp0dw8\",\"data-framer-name\":\"FarmingSim_Switch_Round_On\",layoutDependency:layoutDependency,layoutId:\"x0iV3gSkJ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11xz04x\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"AGn45j3F6\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/DObGA7h381npCBwDWG0MFrGcU.png\"},className:\"framer-4fsc3o\",\"data-framer-name\":\"DCS_Button2_On\",layoutDependency:layoutDependency,layoutId:\"K6ts_SqzB\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zqlivf\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"PVfQbN9nh\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/azyk8JfthL6GoMmRO8ebblRPRZM.png\"},className:\"framer-9m36md\",\"data-framer-name\":\"EuroTruckSim_Button_Warning_On\",layoutDependency:layoutDependency,layoutId:\"Sphr2uMlu\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ur98h\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"i0eQPgC_T\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/K48MSD2dOYR11iT8CwP716uCk.png\"},className:\"framer-ycg7k7\",\"data-framer-name\":\"NoMansSky_Button_Tri1_Off\",layoutDependency:layoutDependency,layoutId:\"NdtxowzIa\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5jue2q\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"POXxeKZcW\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/KR9KX25YpsumTuvtD1VwgqqiGw.png\",srcSet:\"https://framerusercontent.com/images/KR9KX25YpsumTuvtD1VwgqqiGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KR9KX25YpsumTuvtD1VwgqqiGw.png 640w\"},className:\"framer-840h1q\",\"data-framer-name\":\"Starfield_Button6_Off\",layoutDependency:layoutDependency,layoutId:\"bvsUAmfhs\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cmzdyj\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"YwPEmIQqn\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/pEBOHS59cu5DEPIvA32cgbDfdUw.png\"},className:\"framer-zhn7dy\",\"data-framer-name\":\"Cyberpunk_Button2_Off\",layoutDependency:layoutDependency,layoutId:\"PakdRKZkQ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utlhti\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"mm7vfFWBg\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/qRMbY3j8Ev1WRPoQrfK2Pc1Znc.png\",srcSet:\"https://framerusercontent.com/images/qRMbY3j8Ev1WRPoQrfK2Pc1Znc.png 511w\"},className:\"framer-14x4i58\",\"data-framer-name\":\"FarmingSim_Button_Rectangle2_Off\",layoutDependency:layoutDependency,layoutId:\"FisPoMyE2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-awlxr6\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"WOwRqNHZq\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/xFO0VRipbGpAU4d5eaBrYPRF9o.png\"},className:\"framer-67dv3b\",\"data-framer-name\":\"DCS_Button1_On\",layoutDependency:layoutDependency,layoutId:\"Llz8SJIne\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nhi8c3\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"Uej2TKVT7\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gimyzRRfsToQOOHwtUbt2sYgrmY.png\"},className:\"framer-1vs9s0j\",\"data-framer-name\":\"Cyberpunk_Button3_On\",layoutDependency:layoutDependency,layoutId:\"lwmfUlMul\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5bkur4\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"nlCqB95B7\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/99kew5TjAq9bhd5yi7Bm0I2id1E.png\"},className:\"framer-rwji2c\",\"data-framer-name\":\"Baldursgate4_Button7_On\",layoutDependency:layoutDependency,layoutId:\"FERbFN_EX\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuwpy3\",\"data-framer-name\":\"c-square\",layoutDependency:layoutDependency,layoutId:\"AFSgOBqLW\",style:{background:\"radial-gradient(99.99999960970574% 99.99999960970574% at 3.469446951953614e-16% 0%, rgba(84, 84, 84, 0.5) 0%, rgba(46, 46, 46, 0.19) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"11.688006401062012px 11.688006401062012px 17.97031021118164px 0px rgba(0, 0, 0, 0.03999999910593033), inset 1.4610008001327515px 1.4610008001327515px 2.922001600265503px 0px rgba(255, 255, 255, 0.05999999865889549), inset 0px 0px 0px 1.4610008001327515px rgba(255, 255, 255, 0.029999999329447746)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZooA1HtFu7NrqtZjjrCHju6kg.png\"},className:\"framer-1cj79ik\",\"data-framer-name\":\"Starfield_Toggle2_Off\",layoutDependency:layoutDependency,layoutId:\"WoUTCBDZU\"})})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SOzQq.framer-e9ivf5, .framer-SOzQq .framer-e9ivf5 { display: block; }\",\".framer-SOzQq.framer-7iu0gf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 548px; }\",\".framer-SOzQq .framer-ndftzc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-SOzQq .framer-lm98y8-container, .framer-SOzQq .framer-12saxfk-container { flex: none; height: 75px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-anmwb9 { display: grid; gap: 24px; grid-auto-rows: 75px; grid-template-columns: repeat(12, 75px); grid-template-rows: repeat(1, 75px); height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-SOzQq .framer-hfq2ij { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; padding: 8px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-1o2ssi4 { aspect-ratio: 2.0936709942023657 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 419px); }\",\".framer-SOzQq .framer-iemh9q, .framer-SOzQq .framer-dbegy9 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; padding: 24px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-r56ygs { aspect-ratio: 2.076923076923077 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 415px); }\",\".framer-SOzQq .framer-5ligyx, .framer-SOzQq .framer-1os5c7h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; padding: 16px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-wxvr9 { aspect-ratio: 2.414448523881466 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 83px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-13genco { aspect-ratio: 4.474903745568946 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-1nqkpsc { aspect-ratio: 3.361111150204051 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-1yw8ko8 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 16px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-sn7yth { bottom: -21px; flex: none; left: calc(50.00000000000002% - 142px / 2); position: absolute; top: 0px; width: 142px; z-index: 1; }\",\".framer-SOzQq .framer-cpp46l-container { flex: none; height: 124px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-1s8vjt9 { display: grid; gap: 24px; grid-auto-rows: 50px; grid-template-columns: repeat(10, minmax(75px, 1fr)); grid-template-rows: repeat(2, 50px); height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-SOzQq .framer-16f82e2, .framer-SOzQq .framer-1h7ycj5 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-height: 100%; padding: 16px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-ut6x0u { aspect-ratio: 0.6323809643412858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 316px); position: relative; width: 100%; }\",\".framer-SOzQq .framer-h1xjmc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-height: 100%; padding: 8px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-rjmjxz { aspect-ratio: 1.98780493899202 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); position: relative; width: 100%; }\",\".framer-SOzQq .framer-6hfw7w, .framer-SOzQq .framer-bexajs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-height: 100%; padding: 8px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-1x8uvav { aspect-ratio: 0.4765751149572854 / 1; flex: 1 0 0px; height: 1px; max-height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 0px); }\",\".framer-SOzQq .framer-1r16gsm { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-height: 100%; padding: 16px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-5d6r4r { aspect-ratio: 1.5182481751824817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 132px); position: relative; width: 100%; }\",\".framer-SOzQq .framer-u22c5k { aspect-ratio: 0.5031055900621118 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 398px); max-height: 100%; position: relative; width: 100%; }\",\".framer-SOzQq .framer-63mq59 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-height: 100%; padding: 48px 48px 48px 48px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-1iuyp7h { aspect-ratio: 1.1791044432446405 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 100%; }\",\".framer-SOzQq .framer-5jj858 { aspect-ratio: 0.6578947480094395 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 304px); position: relative; width: 100%; }\",\".framer-SOzQq .framer-177k371 { display: grid; gap: 24px; grid-auto-rows: 75px; grid-template-columns: repeat(13, minmax(75px, 1fr)); grid-template-rows: repeat(1, 75px); height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-SOzQq .framer-z50mkq { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 8px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-1889qbk { aspect-ratio: 1.152694610778443 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 174px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-j66cu1, .framer-SOzQq .framer-5ur98h, .framer-SOzQq .framer-yuwpy3 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 24px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-17754pq, .framer-SOzQq .framer-rwji2c { aspect-ratio: 1 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-SOzQq .framer-8v8kev, .framer-SOzQq .framer-11xz04x { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 12px 12px 12px 12px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-tp0dw8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-SOzQq .framer-4fsc3o { aspect-ratio: 0.8194444496288679 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 164px); }\",\".framer-SOzQq .framer-zqlivf { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 4px 12px 12px 12px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-9m36md { align-content: center; align-items: center; aspect-ratio: 1.0909090909090908 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 183px); justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-SOzQq .framer-ycg7k7 { aspect-ratio: 0.97 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 194px); }\",\".framer-SOzQq .framer-5jue2q, .framer-SOzQq .framer-nhi8c3 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 8px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-840h1q { aspect-ratio: 3.2 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-1cmzdyj, .framer-SOzQq .framer-1utlhti, .framer-SOzQq .framer-awlxr6, .framer-SOzQq .framer-5bkur4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; padding: 16px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-SOzQq .framer-zhn7dy { aspect-ratio: 2.3243242282311893 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 86px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-14x4i58 { aspect-ratio: 0.9864865583884526 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 203px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-67dv3b { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-1vs9s0j { aspect-ratio: 1.4390244179583611 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 139px); position: relative; width: 1px; }\",\".framer-SOzQq .framer-1cj79ik { aspect-ratio: 0.8395061728395061 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 238px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SOzQq.framer-7iu0gf, .framer-SOzQq .framer-ndftzc, .framer-SOzQq .framer-hfq2ij, .framer-SOzQq .framer-iemh9q, .framer-SOzQq .framer-5ligyx, .framer-SOzQq .framer-1os5c7h, .framer-SOzQq .framer-dbegy9, .framer-SOzQq .framer-1yw8ko8, .framer-SOzQq .framer-16f82e2, .framer-SOzQq .framer-h1xjmc, .framer-SOzQq .framer-6hfw7w, .framer-SOzQq .framer-1r16gsm, .framer-SOzQq .framer-1h7ycj5, .framer-SOzQq .framer-63mq59, .framer-SOzQq .framer-bexajs, .framer-SOzQq .framer-z50mkq, .framer-SOzQq .framer-j66cu1, .framer-SOzQq .framer-8v8kev, .framer-SOzQq .framer-tp0dw8, .framer-SOzQq .framer-11xz04x, .framer-SOzQq .framer-zqlivf, .framer-SOzQq .framer-9m36md, .framer-SOzQq .framer-5ur98h, .framer-SOzQq .framer-5jue2q, .framer-SOzQq .framer-1cmzdyj, .framer-SOzQq .framer-1utlhti, .framer-SOzQq .framer-awlxr6, .framer-SOzQq .framer-nhi8c3, .framer-SOzQq .framer-5bkur4, .framer-SOzQq .framer-yuwpy3 { gap: 0px; } .framer-SOzQq.framer-7iu0gf > *, .framer-SOzQq .framer-tp0dw8 > *, .framer-SOzQq .framer-9m36md > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SOzQq.framer-7iu0gf > :first-child, .framer-SOzQq .framer-hfq2ij > :first-child, .framer-SOzQq .framer-iemh9q > :first-child, .framer-SOzQq .framer-5ligyx > :first-child, .framer-SOzQq .framer-1os5c7h > :first-child, .framer-SOzQq .framer-dbegy9 > :first-child, .framer-SOzQq .framer-1yw8ko8 > :first-child, .framer-SOzQq .framer-z50mkq > :first-child, .framer-SOzQq .framer-j66cu1 > :first-child, .framer-SOzQq .framer-8v8kev > :first-child, .framer-SOzQq .framer-tp0dw8 > :first-child, .framer-SOzQq .framer-11xz04x > :first-child, .framer-SOzQq .framer-zqlivf > :first-child, .framer-SOzQq .framer-9m36md > :first-child, .framer-SOzQq .framer-5ur98h > :first-child, .framer-SOzQq .framer-5jue2q > :first-child, .framer-SOzQq .framer-1cmzdyj > :first-child, .framer-SOzQq .framer-1utlhti > :first-child, .framer-SOzQq .framer-awlxr6 > :first-child, .framer-SOzQq .framer-nhi8c3 > :first-child, .framer-SOzQq .framer-5bkur4 > :first-child, .framer-SOzQq .framer-yuwpy3 > :first-child { margin-left: 0px; } .framer-SOzQq.framer-7iu0gf > :last-child, .framer-SOzQq .framer-hfq2ij > :last-child, .framer-SOzQq .framer-iemh9q > :last-child, .framer-SOzQq .framer-5ligyx > :last-child, .framer-SOzQq .framer-1os5c7h > :last-child, .framer-SOzQq .framer-dbegy9 > :last-child, .framer-SOzQq .framer-1yw8ko8 > :last-child, .framer-SOzQq .framer-z50mkq > :last-child, .framer-SOzQq .framer-j66cu1 > :last-child, .framer-SOzQq .framer-8v8kev > :last-child, .framer-SOzQq .framer-tp0dw8 > :last-child, .framer-SOzQq .framer-11xz04x > :last-child, .framer-SOzQq .framer-zqlivf > :last-child, .framer-SOzQq .framer-9m36md > :last-child, .framer-SOzQq .framer-5ur98h > :last-child, .framer-SOzQq .framer-5jue2q > :last-child, .framer-SOzQq .framer-1cmzdyj > :last-child, .framer-SOzQq .framer-1utlhti > :last-child, .framer-SOzQq .framer-awlxr6 > :last-child, .framer-SOzQq .framer-nhi8c3 > :last-child, .framer-SOzQq .framer-5bkur4 > :last-child, .framer-SOzQq .framer-yuwpy3 > :last-child { margin-right: 0px; } .framer-SOzQq .framer-ndftzc > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SOzQq .framer-ndftzc > :first-child, .framer-SOzQq .framer-16f82e2 > :first-child, .framer-SOzQq .framer-h1xjmc > :first-child, .framer-SOzQq .framer-6hfw7w > :first-child, .framer-SOzQq .framer-1r16gsm > :first-child, .framer-SOzQq .framer-1h7ycj5 > :first-child, .framer-SOzQq .framer-63mq59 > :first-child, .framer-SOzQq .framer-bexajs > :first-child { margin-top: 0px; } .framer-SOzQq .framer-ndftzc > :last-child, .framer-SOzQq .framer-16f82e2 > :last-child, .framer-SOzQq .framer-h1xjmc > :last-child, .framer-SOzQq .framer-6hfw7w > :last-child, .framer-SOzQq .framer-1r16gsm > :last-child, .framer-SOzQq .framer-1h7ycj5 > :last-child, .framer-SOzQq .framer-63mq59 > :last-child, .framer-SOzQq .framer-bexajs > :last-child { margin-bottom: 0px; } .framer-SOzQq .framer-hfq2ij > *, .framer-SOzQq .framer-iemh9q > *, .framer-SOzQq .framer-5ligyx > *, .framer-SOzQq .framer-1os5c7h > *, .framer-SOzQq .framer-dbegy9 > *, .framer-SOzQq .framer-1yw8ko8 > *, .framer-SOzQq .framer-z50mkq > *, .framer-SOzQq .framer-j66cu1 > *, .framer-SOzQq .framer-8v8kev > *, .framer-SOzQq .framer-11xz04x > *, .framer-SOzQq .framer-zqlivf > *, .framer-SOzQq .framer-5ur98h > *, .framer-SOzQq .framer-5jue2q > *, .framer-SOzQq .framer-1cmzdyj > *, .framer-SOzQq .framer-1utlhti > *, .framer-SOzQq .framer-awlxr6 > *, .framer-SOzQq .framer-nhi8c3 > *, .framer-SOzQq .framer-5bkur4 > *, .framer-SOzQq .framer-yuwpy3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SOzQq .framer-16f82e2 > *, .framer-SOzQq .framer-h1xjmc > *, .framer-SOzQq .framer-6hfw7w > *, .framer-SOzQq .framer-1r16gsm > *, .framer-SOzQq .framer-1h7ycj5 > *, .framer-SOzQq .framer-63mq59 > *, .framer-SOzQq .framer-bexajs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 306\n * @framerIntrinsicWidth 548\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEVVV40dDD=withCSS(Component,css,\"framer-SOzQq\");export default FramerEVVV40dDD;FramerEVVV40dDD.displayName=\"component-ticker\";FramerEVVV40dDD.defaultProps={height:306,width:548};addFonts(FramerEVVV40dDD,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEVVV40dDD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"548\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"306\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EVVV40dDD.map", "var t=[\"x\",\"y\",\"z\"],e=function(t){Object.assign(this,{uniforms:{},geometry:{vertices:[{x:0,y:0,z:0}]},mode:0,modifiers:{},attributes:[],multiplier:1,buffers:[]}),Object.assign(this,t),this.prepareProgram(),this.prepareUniforms(),this.prepareAttributes()};e.prototype.compileShader=function(t,r){var s=this.gl.createShader(t);return this.gl.shaderSource(s,r),this.gl.compileShader(s),s},e.prototype.prepareProgram=function(){var t=this.gl,r=this.vertex,s=this.fragment,n=t.createProgram();t.attachShader(n,this.compileShader(35633,r)),t.attachShader(n,this.compileShader(35632,s)),t.linkProgram(n),t.useProgram(n),this.program=n},e.prototype.prepareUniforms=function(){for(var t=Object.keys(this.uniforms),r=0;r<t.length;r+=1){var s=this.gl.getUniformLocation(this.program,t[r]);this.uniforms[t[r]].location=s}},e.prototype.prepareAttributes=function(){void 0!==this.geometry.vertices&&this.attributes.push({name:\"aPosition\",size:3}),void 0!==this.geometry.normal&&this.attributes.push({name:\"aNormal\",size:3}),this.attributeKeys=[];for(var t=0;t<this.attributes.length;t+=1)this.attributeKeys.push(this.attributes[t].name),this.prepareAttribute(this.attributes[t])},e.prototype.prepareAttribute=function(r){for(var s=this.geometry,n=this.multiplier,a=s.vertices,o=s.normal,h=new Float32Array(n*a.length*r.size),u=0;u<n;u+=1)for(var f=r.data&&r.data(u,n),c=u*a.length*r.size,l=0;l<a.length;l+=1)for(var p=0;p<r.size;p+=1){var m=this.modifiers[r.name];h[c]=void 0!==m?m(f,l,p,this):\"aPosition\"===r.name?a[l][t[p]]:\"aNormal\"===r.name?o[l][t[p]]:f[p],c+=1}this.attributes[this.attributeKeys.indexOf(r.name)].data=h,this.prepareBuffer(this.attributes[this.attributeKeys.indexOf(r.name)])},e.prototype.prepareBuffer=function(t){var r=t.data,s=t.name,n=t.size,a=this.gl.createBuffer();this.gl.bindBuffer(34962,a),this.gl.bufferData(34962,r,35044);var o=this.gl.getAttribLocation(this.program,s);this.gl.enableVertexAttribArray(o),this.gl.vertexAttribPointer(o,n,5126,!1,0,0),this.buffers[this.attributeKeys.indexOf(t.name)]={buffer:a,location:o,size:n}},e.prototype.render=function(t){var r=this,s=this.uniforms,n=this.multiplier,a=this.gl;a.useProgram(this.program);for(var o=0;o<this.buffers.length;o+=1){var h=this.buffers[o],u=h.location,f=h.buffer,c=h.size;a.enableVertexAttribArray(u),a.bindBuffer(34962,f),a.vertexAttribPointer(u,c,5126,!1,0,0)}Object.keys(t).forEach((function(r){s[r].value=t[r].value})),Object.keys(s).forEach((function(t){var n=s[t];r.uniformMap[n.type](n.location,n.value)})),a.drawArrays(this.mode,0,n*this.geometry.vertices.length),this.onRender&&this.onRender(this)},e.prototype.destroy=function(){for(var t=0;t<this.buffers.length;t+=1)this.gl.deleteBuffer(this.buffers[t].buffer);this.gl.deleteProgram(this.program),this.gl=null};var i=function(t){var r=this,s=t||{},n=s.canvas;void 0===n&&(n=document.querySelector(\"canvas\"));var a=s.context;void 0===a&&(a={});var o=s.contextType;void 0===o&&(o=\"experimental-webgl\");var h=s.settings;void 0===h&&(h={});var u=n.getContext(o,Object.assign({alpha:!1,antialias:!1},a));Object.assign(this,{gl:u,canvas:n,uniforms:{},instances:new Map,shouldRender:!0}),Object.assign(this,{devicePixelRatio:1,clearColor:[1,1,1,1],position:{x:0,y:0,z:2},clip:[.001,100]}),Object.assign(this,h),this.uniformMap={float:function(t,r){return u.uniform1f(t,r)},vec2:function(t,r){return u.uniform2fv(t,r)},vec3:function(t,r){return u.uniform3fv(t,r)},vec4:function(t,r){return u.uniform4fv(t,r)},mat2:function(t,r){return u.uniformMatrix2fv(t,!1,r)},mat3:function(t,r){return u.uniformMatrix3fv(t,!1,r)},mat4:function(t,r){return u.uniformMatrix4fv(t,!1,r)}},u.enable(u.DEPTH_TEST),u.depthFunc(u.LEQUAL),!1===u.getContextAttributes().alpha&&(u.clearColor.apply(u,this.clearColor),u.clearDepth(1)),this.onSetup&&this.onSetup(u),window.addEventListener(\"resize\",(function(){return r.resize()})),this.resize(),this.render()};i.prototype.resize=function(){var t=this.gl,r=this.canvas,s=this.devicePixelRatio,n=this.position;r.width=r.clientWidth*s,r.height=r.clientHeight*s;var a=t.drawingBufferWidth,o=t.drawingBufferHeight,h=a/o;t.viewport(0,0,a,o);var u=Math.tan(Math.PI/180*22.5),f=[1,0,0,0,0,1,0,0,0,0,1,0,n.x,n.y,(h<1?1:h)*-n.z,1];this.uniforms.uProjectionMatrix={type:\"mat4\",value:[.5/u,0,0,0,0,h/u*.5,0,0,0,0,-(this.clip[1]+this.clip[0])/(this.clip[1]-this.clip[0]),-1,0,0,-2*this.clip[1]*(this.clip[0]/(this.clip[1]-this.clip[0])),0]},this.uniforms.uViewMatrix={type:\"mat4\",value:[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},this.uniforms.uModelMatrix={type:\"mat4\",value:f}},i.prototype.toggle=function(t){t!==this.shouldRender&&(this.shouldRender=void 0!==t?t:!this.shouldRender,this.shouldRender&&this.render())},i.prototype.render=function(){var t=this;this.gl.clear(16640),this.instances.forEach((function(r){r.render(t.uniforms)})),this.onRender&&this.onRender(this),this.shouldRender&&requestAnimationFrame((function(){return t.render()}))},i.prototype.add=function(t,r){void 0===r&&(r={uniforms:{}}),void 0===r.uniforms&&(r.uniforms={}),Object.assign(r.uniforms,JSON.parse(JSON.stringify(this.uniforms))),Object.assign(r,{gl:this.gl,uniformMap:this.uniformMap});var s=new e(r);return this.instances.set(t,s),s},i.prototype.remove=function(t){var r=this.instances.get(t);void 0!==r&&(r.destroy(),this.instances.delete(t))},i.prototype.destroy=function(){var t=this;this.instances.forEach((function(r,s){r.destroy(),t.instances.delete(s)})),this.toggle(!1)};export default i;\n\n//# sourceMappingURL=phenomenon.mjs.map", "import e from\"phenomenon\";var a=\"phi\",o=\"theta\",t=\"mapSamples\",i=\"mapBrightness\",f=\"baseColor\",r=\"markerColor\",l=\"glowColor\",c=\"markers\",n=\"diffuse\",A=\"devicePixelRatio\",g=\"dark\",v=\"offset\",s=\"scale\",d={[a]:\"A\",[o]:\"B\",[t]:\"k\",[i]:\"E\",[f]:\"L\",[r]:\"M\",[l]:\"y\",[n]:\"F\",[g]:\"G\",[v]:\"x\",[s]:\"C\"},{PI:u,sin:m,cos:x}=Math,U=e=>[].concat(...e.map((e=>{let[a,o]=e.location;a=a*u/180,o=o*u/180-u;let t=x(a);return[-t*x(o),m(a),t*m(o),e.size]})),[0,0,0,0]),D=(u,m)=>{let _=(e,a,o)=>({type:e,value:\"undefined\"==typeof m[a]?o:m[a]}),x=u.getContext(\"webgl\")?\"webgl\":\"experimental-webgl\",y=new e({canvas:u,contextType:x,context:{alpha:!0,stencil:!1,antialias:!0,depth:!1,preserveDrawingBuffer:!1},settings:{[A]:m[A]||1,onSetup:e=>{let a=e.RGB,o=e.UNSIGNED_BYTE,t=e.TEXTURE_2D,i=e.createTexture();e.bindTexture(t,i),e.texImage2D(t,0,a,1,1,0,a,o,new Uint8Array([0,0,0,0]));let f=new Image;f.onload=()=>{e.bindTexture(t,i),e.texImage2D(t,0,a,a,o,f),e.generateMipmap(t);let r=e.getParameter(e.CURRENT_PROGRAM),l=e.getUniformLocation(r,\"H\");e.texParameteri(t,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(t,e.TEXTURE_MAG_FILTER,e.NEAREST),e.uniform1i(l,0)},f.src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAAAXNSR0IArs4c6QAABA5JREFUeNrV179uHEUAx/Hf3JpbF+E2VASBsmVKTBcpKJs3SMEDcDwBiVJAAewYEBUivIHT0uUBIt0YCovKD0CRjUC4QfHYh8hYXu+P25vZ2Zm9c66gMd/GJ/tz82d3bk8GN4SrByYF2366FNTACIAkivVAAazQdnf3MvAlbNUQfOPAdQDvSAimMWhwy4I2g4SU+Kp04ISLpPBAKLxPyic3O/CCi+Y7rUJbiodcpDOFY7CgxCEXmdYD2EYK2s5lApOx5pEDDYCUwM1XdJUwBV11QQMg59kePSCaPAASQMEL2hwo6TJFgxpg+TgC2ymXPbuvc40awr3D1QCFfbH9kcoqAOkZozpQo0aqAGQRKCog/+tjkgbNFEtg2FffBvBGlSxHoAaAa1u6X4PBAwDiR8FFsrQgeUhfJTSALaB9jy5NCybJPn1SVFiWk7ywN+KzhH1aKAuydhGkbEF4lWohLXDXavlyFgHY7LBnLRdlAP6BS5Cc8RfVDXbkwN/oIvmY+6obbNeBP0JwTuMGu9gTzy1Q4RS/cWpfzszeYwd+CAFrtBW/Hur0gLbJGlD+/OjVwe/drfBxkbbg63dndEDfiEBlAd7ac0BPe1D6Jd8dfbLH+RI0OzseFB5s01/M+gMdAeluLOCAuaUA9Lezo/vSgXoCX9rtEiXnp7Q1W/CNyWcd8DXoS6jH/YZ5vAJEWY2dXFQe2TUgaFaNejCzJ98g6HnlVrsE58sDcYqg+9XY75fPqdoh/kRQWiXKg8MWlJQxUFMPjqnyujhFBE7UxIMjyszk0QwQlFsezImsyvUYYYVED2pk6m0Tg8T04Fwjk2kdAwSACqlM6gRRt3vQYAFGX0Ah7Ebx1H+MDRI5ui0QldH4j7FGcm90XdxD2Jg1AOEAVAKhEFXSn4cKUELurIAKwJ3MArypPscQaLhJFICJ0ohjDySAdH8AhDtCiTuMycH8CXzhH9jUACAO5uMhoAwA5i+T6WAKmmAqnLy80wxHqIPFYpqCwxGaYLt4Dyievg5kEoVEUAhs6pqKgFtDQYOuaXypaWKQfIuwwoGSZgfLsu/XAtI8cGN+h7Cc1A5oLOMhwlIPXuhu48AIvsSBkvtV9wsJRKCyYLfq5lTrQMFd1a262oqBck9K1V0YjQg0iEYYgpS1A9GlXQV5cykwm4A7BzVsxQqo7E+zCegO7Ma7yKgsuOcfKbMBwLC8wvVNYDsANYalEpOAa6zpWjTeMKGwEwC1CiQewJc5EKfgy7GmRAZA4vUVGwE2dPM/g0xuAInE/yG5aZ8ISxWGfYigUVbdyBElTHh2uCwGdfCkOLGgQVBh3Ewp+/QK4CDlR5Ws/Zf7yhCf8pH7vinWAvoVCQ6zz0NX5V/6GkAVV+2/5qsJ/gU8bsxpM8IeAQAAAABJRU5ErkJggg==\"}}});return y.add(\"\",{vertex:\"attribute vec3 aPosition;uniform mat4 uProjectionMatrix;uniform mat4 uModelMatrix;uniform mat4 uViewMatrix;void main(){gl_Position=uProjectionMatrix*uModelMatrix*uViewMatrix*vec4(aPosition,1.);}\",fragment:\"precision highp float;uniform vec2 r,x;uniform vec3 L,M,y;uniform vec4 z[64];uniform float A,B,k,C,D,E,F,G;uniform sampler2D H;float I=1./k;mat3 J(float a,float b){float c=cos(a),d=cos(b),e=sin(a),f=sin(b);return mat3(d,f*e,-f*c,0.,c,e,f,d*-e,d*c);}vec3 v(vec3 c,out float w){c=c.xzy;float p=max(2.,floor(log2(2.236068*k*3.141593*(1.-c.z*c.z))*.72021));vec2 g=floor(pow(1.618034,p)/2.236068*vec2(1.,1.618034)+.5),d=fract((g+1.)*.618034)*6.283185-3.883222,e=-2.*g,f=vec2(atan(c.y,c.x),c.z-1.),q=floor(vec2(e.y*f.x-d.y*(f.y*k+1.),-e.x*f.x+d.x*(f.y*k+1.))/(d.x*e.y-e.x*d.y));float n=3.141593;vec3 s;for(float h=0.;h<4.;h+=1.){vec2 t=vec2(mod(h,2.),floor(h*.5));float j=dot(g,q+t);if(j>k)continue;float a=j,b=0.;if(a>=524288.)a-=524288.,b+=.803894;if(a>=262144.)a-=262144.,b+=.901947;if(a>=131072.)a-=131072.,b+=.950973;if(a>=65536.)a-=65536.,b+=.475487;if(a>=32768.)a-=32768.,b+=.737743;if(a>=16384.)a-=16384.,b+=.868872;if(a>=8192.)a-=8192.,b+=.934436;if(a>=4096.)a-=4096.,b+=.467218;if(a>=2048.)a-=2048.,b+=.733609;if(a>=1024.)a-=1024.,b+=.866804;if(a>=512.)a-=512.,b+=.433402;if(a>=256.)a-=256.,b+=.216701;if(a>=128.)a-=128.,b+=.108351;if(a>=64.)a-=64.,b+=.554175;if(a>=32.)a-=32.,b+=.777088;if(a>=16.)a-=16.,b+=.888544;if(a>=8.)a-=8.,b+=.944272;if(a>=4.)a-=4.,b+=.472136;if(a>=2.)a-=2.,b+=.236068;if(a>=1.)a-=1.,b+=.618034;float l=fract(b)*6.283185,i=1.-2.*j*I,m=sqrt(1.-i*i);vec3 o=vec3(cos(l)*m,sin(l)*m,i);float u=length(c-o);if(u<n)n=u,s=o;}w=n;return s.xzy;}void main(){vec2 a=(gl_FragCoord.xy/r*2.-1.)/C-x*vec2(1.,-1.)/r;a.x*=r.x/r.y;float c=dot(a,a),b;vec3 d=vec3(0.,0.,1.),e=normalize(vec3(a,sqrt(.64-c)));if(c<=.64){vec3 f=e*J(B,A),g=v(f,b);float j=asin(g.y),h=acos(-g.x/cos(j));h=g.z<0.?-h:h;float t=texture2D(H,vec2(h*.5/3.141593,-(j/3.141593+.5))).x,u=smoothstep(8e-3,0.,b),l=dot(e,d),s=pow(l,F)*E,m=t*u*s,N=mix((1.-m)*pow(l,.4),m,G)+.1;gl_FragColor=vec4(L*N,1.);int O=int(D);float n=0.;for(int i=0;i<64;i++){if(i>=O)break;vec4 o=z[i];vec3 p=o.xyz,w=p-f;float q=o.w;if(dot(w,w)>q*q*4.)continue;vec3 P=v(p,b);b=length(P-f),b<q?n+=smoothstep(q*.5,0.,b):0.;}n=min(1.,n*s),gl_FragColor.xyz=mix(gl_FragColor.xyz,M,n),gl_FragColor.xyz+=pow(1.-dot(e,d),4.)*y;}float K=pow(dot(normalize(vec3(-a,sqrt(1.-c))),d),4.)*smoothstep(.1,1.,.2/(c-.64));gl_FragColor+=vec4(K*y,K);}\",uniforms:{r:{type:\"vec2\",value:[m.width,m.height]},A:_(\"float\",a),B:_(\"float\",o),k:_(\"float\",t),E:_(\"float\",i),L:_(\"vec3\",f),M:_(\"vec3\",r),F:_(\"float\",n),y:_(\"vec3\",l),G:_(\"float\",g),z:{type:\"vec4\",value:U(m[c])},D:{type:\"float\",value:m[c].length},x:_(\"vec2\",v,[0,0]),C:_(\"float\",s,1)},mode:4,geometry:{vertices:[{x:-100,y:100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0},{x:100,y:-100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0}]},onRender:({uniforms:e})=>{let a={};if(m.onRender){m.onRender(a);for(let o in d)void 0!==a[o]&&(e[d[o]].value=a[o]);void 0!==a[c]&&(e.z.value=U(a[c]),e.D.value=a[c].length),a.width&&a.height&&(e.r.value=[a.width,a.height])}}}),y};export{D as default};\n\n//# sourceMappingURL=index.esm.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";import createGlobe from\"cobe\";import{useSpring}from\"framer-motion\";/**\n * GLOBE FOR FRAMER\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Globe(props){const{background,baseColor,glowColor,isDraggable,dragOptions,speed,theta,phi,dark,diffuse,maxSamples,mapBrightness,markerSize,markerArray,markerColor,scale,alignment,maxWidth,offset}=props;const{offsetX,offsetY}=offset;const{stiffness,damping,mass}=dragOptions;const canvasRef=useRef();const pointerInteracting=useRef(null);const pointerInteractionMovement=useRef(0);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const r=useSpring(0,{stiffness:stiffness,damping:damping,mass:mass,restDelta:1e-4,restSpeed:1e-4});const fadeMask=\"radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 70%)\";useEffect(()=>{let phiValue=phi;let width=0;const onResize=()=>{if(canvasRef.current&&(width=canvasRef.current.offsetWidth)){window.addEventListener(\"resize\",onResize);}};onResize();const baseConvert=convertRGB(baseColor);const glowConvert=convertRGB(glowColor);const markerConvert=convertRGB(markerColor);const globe=createGlobe(canvasRef.current,{devicePixelRatio:2,width:width*2,height:width*2,phi:phi,theta:theta,dark:dark,diffuse:diffuse,mapSamples:maxSamples,mapBrightness:mapBrightness,baseColor:[baseConvert.r,baseConvert.g,baseConvert.b],glowColor:[glowConvert.r,glowConvert.g,glowConvert.b],markerColor:[markerConvert.r,markerConvert.g,markerConvert.b],markers:markerArray.map(marker=>{return{location:[marker.latitude,marker.longitude],size:markerSize};}),scale:scale,offset:[offsetX,offsetY],onRender:state=>{if(!isCanvas){state.phi=phiValue+r.get();}state.width=width*2;state.height=width*2;if(!isCanvas){state.phi=phiValue+r.get();phiValue+=speed/200;}}});return()=>{globe.destroy();};},[props]);return /*#__PURE__*/ _jsx(\"div\",{style:{...flexStyles,placeItems:alignment,background:background},children:/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",aspectRatio:\"1/1\",maxWidth:maxWidth,WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask},children:/*#__PURE__*/ _jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",contain:\"layout paint size\",cursor:\"auto\",userSelect:\"none\"},onPointerDown:e=>{if(isDraggable){pointerInteracting.current=e.clientX-pointerInteractionMovement.current;canvasRef.current.style.cursor=\"grabbing\";}},onPointerUp:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"grab\";}},onPointerOver:()=>{if(isDraggable){canvasRef.current.style.cursor=\"grab\";}},onPointerOut:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"auto\";}},onMouseMove:e=>{if(isDraggable){if(pointerInteracting.current!==null){const delta=e.clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}},onTouchMove:e=>{if(pointerInteracting.current!==null&&e.touches[0]){const delta=e.touches[0].clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}})})});};/* Default properties */ Globe.defaultProps={background:\"#000000\",baseColor:\"#333333\",glowColor:\"#ffffff\",markerColor:\"#ffffff\",isDraggable:true,dragOptions:{stiffness:200,damping:40,mass:1},speed:1,phi:0,theta:.3,dark:1,diffuse:2,mapBrightness:20,maxSamples:2e4,markerSize:.1,markerArray:{latitude:52.3676,longitude:4.9041},scale:1,alignment:\"center\",maxWidth:800,offset:{offsetX:0,offsetY:0}};Globe.displayName=\"Globe\";const dp=Globe.defaultProps;const dpOffset=Globe.defaultProps.offset;const dpDrag=Globe.defaultProps.dragOptions;addPropertyControls(Globe,{background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:dp.background},baseColor:{type:ControlType.Color,title:\"Base\",defaultValue:dp.baseColor},glowColor:{type:ControlType.Color,title:\"Glow\",defaultValue:dp.glowColor},markerColor:{type:ControlType.Color,title:\"Marker\",defaultValue:dp.markerColor},isDraggable:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:dp.isDraggable},dragOptions:{type:ControlType.Object,title:\"Transition\",controls:{stiffness:{type:ControlType.Number,min:0,max:1e3,title:\"Stiffness\",defaultValue:dpDrag.stiffness},damping:{type:ControlType.Number,min:0,max:100,title:\"Damping\",defaultValue:dpDrag.damping},mass:{type:ControlType.Number,min:0,title:\"Mass\",displayStepper:true,defaultValue:dpDrag.mass}},hidden(props){return!props.isDraggable;}},speed:{type:ControlType.Number,min:0,step:.1,displayStepper:true,title:\"Speed\",defaultValue:dp.speed},phi:{type:ControlType.Number,min:0,max:6.28,step:.01,displayStepper:true,title:\"Phi\",defaultValue:dp.phi},theta:{type:ControlType.Number,min:-1.57,max:1.57,step:.01,title:\"Theta\",defaultValue:dp.theta},dark:{type:ControlType.Number,min:0,max:1,step:.1,displayStepper:true,title:\"Dark\",defaultValue:dp.dark},diffuse:{type:ControlType.Number,min:0,max:5,step:.01,title:\"Diffuse\",defaultValue:dp.diffuse},mapBrightness:{type:ControlType.Number,min:0,max:12,step:.01,title:\"Brightness\",defaultValue:dp.mapBrightness},maxSamples:{type:ControlType.Number,min:0,max:1e5,title:\"Samples\",defaultValue:dp.maxSamples},scale:{type:ControlType.Number,min:0,max:5,step:.025,displayStepper:true,title:\"Scale\",defaultValue:dp.scale},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:dp.alignment,displaySegmentedControl:true},maxWidth:{type:ControlType.Number,title:\"Max Width\",min:100,max:5e3,defaultValue:dp.maxWidth},offset:{type:ControlType.Object,title:\"Offset\",controls:{offsetX:{type:ControlType.Number,min:-5e3,max:5e3,title:\"X\",defaultValue:dpOffset.offsetX},offsetY:{type:ControlType.Number,min:-5e3,max:5e3,title:\"Y\",defaultValue:dpOffset.offsetY}}},markerSize:{type:ControlType.Number,min:0,max:1,step:.01,title:\"Markers\",defaultValue:dp.markerSize},markerArray:{type:ControlType.Array,title:\"Location\",// defaultValue: [{ latitude: 52.3676, longitude: 4.9041 }],\ncontrol:{type:ControlType.Object,title:\"Location\",controls:{latitude:{type:ControlType.Number,min:-90,max:90,title:\"Lat\",step:1e-4,defaultValue:dp.markerArray.latitude},longitude:{type:ControlType.Number,min:-180,max:180,title:\"Long\",step:1e-4,defaultValue:dp.markerArray.longitude}}}}});/* Styles */ const flexStyles={width:\"100%\",height:\"100%\",display:\"flex\",placeItems:\"center\",placeContent:\"center\",overflow:\"visible\"};/* Functions */ const convertRGB=color=>{return{r:Color(color).r/255,g:Color(color).g/255,b:Color(color).b/255};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Globe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Globe.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "r", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "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", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "Ticker", "Image2", "css", "FramerEVVV40dDD", "withCSS", "EVVV40dDD_default", "addFonts", "TickerFonts", "t", "e", "r", "s", "n", "o", "h", "u", "f", "c", "l", "p", "a", "i", "window", "phenomenon_default", "a", "o", "t", "i", "f", "r", "l", "c", "n", "A", "g", "v", "s", "d", "u", "m", "x", "U", "e", "D", "_", "y", "phenomenon_default", "Globe", "props", "background", "baseColor", "glowColor", "isDraggable", "dragOptions", "speed", "theta", "phi", "dark", "diffuse", "maxSamples", "mapBrightness", "markerSize", "markerArray", "markerColor", "scale", "alignment", "maxWidth", "offset", "offsetX", "offsetY", "stiffness", "damping", "mass", "canvasRef", "pe", "pointerInteracting", "pointerInteractionMovement", "isCanvas", "RenderTarget", "r", "useSpring", "fadeMask", "phiValue", "width", "onResize", "window", "baseConvert", "convertRGB", "glowConvert", "markerConvert", "globe", "D", "marker", "state", "p", "flexStyles", "e", "delta", "dp", "dpOffset", "dpDrag", "addPropertyControls", "ControlType", "color", "Color"]
}
