Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
2
Maintainers
4
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 18.3.0-canary-4b2a1115a-20240202 to 18.3.0-canary-4b84f1161-20240318

cjs/react.shared-subset.development.js

221

cjs/react.production.js

@@ -13,3 +13,3 @@ /**

var ReactVersion = '18.3.0-canary-4b2a1115a-20240202';
var ReactVersion = '18.3.0-canary-4b84f1161-20240318';

@@ -460,35 +460,2 @@ // ATTENTION

/**
* Keeps track of the current dispatcher.
*/
const ReactCurrentDispatcher = {
current: null
};
/**
* Keeps track of the current Cache dispatcher.
*/
const ReactCurrentCache = {
current: null
};
/**
* Keeps track of the current batch's configuration such as how long an update
* should suspend for if it needs to.
*/
const ReactCurrentBatchConfig = {
transition: null
};
const ReactSharedInternals = {
ReactCurrentDispatcher,
ReactCurrentCache,
ReactCurrentBatchConfig,
ReactCurrentOwner
};
const createElement = createElement$1;
const cloneElement = cloneElement$1;
const createFactory = createFactory$1;
const SEPARATOR = '.';

@@ -856,21 +823,121 @@ const SUBSEPARATOR = ':';

/**
* Keeps track of the current Cache dispatcher.
*/
const ReactCurrentCache = {
current: null
};
const UNTERMINATED = 0;
const TERMINATED = 1;
const ERRORED = 2;
function createCacheRoot() {
return new WeakMap();
}
function createCacheNode() {
return {
s: UNTERMINATED,
// status, represents whether the cached computation returned a value or threw an error
v: undefined,
// value, either the cached result or an error, depending on s
o: null,
// object cache, a WeakMap where non-primitive arguments are stored
p: null // primitive cache, a regular Map where primitive arguments are stored.
};
}
function cache(fn) {
// On the client (i.e. not a Server Components environment) `cache` has
// no caching behavior. We just return the function as-is.
//
// We intend to implement client caching in a future major release. In the
// meantime, it's only exposed as an API so that Shared Components can use
// per-request caching on the server without breaking on the client. But it
// does mean they need to be aware of the behavioral difference.
//
// The rest of the behavior is the same as the server implementation — it
// returns a new reference, extra properties like `displayName` are not
// preserved, the length of the new function is 0, etc. That way apps can't
// accidentally depend on those details.
return function () {
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
return fn.apply(null, arguments);
const dispatcher = ReactCurrentCache.current;
if (!dispatcher) {
// If there is no dispatcher, then we treat this as not being cached.
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
return fn.apply(null, arguments);
}
const fnMap = dispatcher.getCacheForType(createCacheRoot);
const fnNode = fnMap.get(fn);
let cacheNode;
if (fnNode === undefined) {
cacheNode = createCacheNode();
fnMap.set(fn, cacheNode);
} else {
cacheNode = fnNode;
}
for (let i = 0, l = arguments.length; i < l; i++) {
const arg = arguments[i];
if (typeof arg === 'function' || typeof arg === 'object' && arg !== null) {
// Objects go into a WeakMap
let objectCache = cacheNode.o;
if (objectCache === null) {
cacheNode.o = objectCache = new WeakMap();
}
const objectNode = objectCache.get(arg);
if (objectNode === undefined) {
cacheNode = createCacheNode();
objectCache.set(arg, cacheNode);
} else {
cacheNode = objectNode;
}
} else {
// Primitives go into a regular Map
let primitiveCache = cacheNode.p;
if (primitiveCache === null) {
cacheNode.p = primitiveCache = new Map();
}
const primitiveNode = primitiveCache.get(arg);
if (primitiveNode === undefined) {
cacheNode = createCacheNode();
primitiveCache.set(arg, cacheNode);
} else {
cacheNode = primitiveNode;
}
}
}
if (cacheNode.s === TERMINATED) {
return cacheNode.v;
}
if (cacheNode.s === ERRORED) {
throw cacheNode.v;
}
try {
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
const result = fn.apply(null, arguments);
const terminatedNode = cacheNode;
terminatedNode.s = TERMINATED;
terminatedNode.v = result;
return result;
} catch (error) {
// We store the first error that's thrown and rethrow it.
const erroredNode = cacheNode;
erroredNode.s = ERRORED;
erroredNode.v = error;
throw error;
}
};
}
/**
* Keeps track of the current dispatcher.
*/
const ReactCurrentDispatcher = {
current: null
};
function resolveDispatcher() {

@@ -958,41 +1025,28 @@ const dispatcher = ReactCurrentDispatcher.current;

function startTransition(scope, options) {
const prevTransition = ReactCurrentBatchConfig.transition; // Each renderer registers a callback to receive the return value of
// the scope function. This is used to implement async actions.
/**
* Keeps track of the current batch's configuration such as how long an update
* should suspend for if it needs to.
*/
const ReactCurrentBatchConfig = {
transition: null
};
const callbacks = new Set();
const transition = {
_callbacks: callbacks
};
ReactCurrentBatchConfig.transition = transition;
const currentTransition = ReactCurrentBatchConfig.transition;
const ReactSharedInternals = {
ReactCurrentDispatcher,
ReactCurrentCache,
ReactCurrentBatchConfig,
ReactCurrentOwner
};
{
try {
const returnValue = scope();
function startTransition(scope, options) {
const prevTransition = ReactCurrentBatchConfig.transition;
ReactCurrentBatchConfig.transition = {};
if (typeof returnValue === 'object' && returnValue !== null && typeof returnValue.then === 'function') {
callbacks.forEach(callback => callback(currentTransition, returnValue));
returnValue.then(noop, onError);
}
} catch (error) {
onError(error);
} finally {
ReactCurrentBatchConfig.transition = prevTransition;
}
try {
scope();
} finally {
ReactCurrentBatchConfig.transition = prevTransition;
}
}
function noop() {} // Use reportError, if it exists. Otherwise console.error. This is the same as
// the default for onRecoverableError.
const onError = typeof reportError === 'function' ? // In modern browsers, reportError will dispatch an error event,
// emulating an uncaught JavaScript error.
reportError : error => {
// In older browsers and test environments, fallback to console.error.
// eslint-disable-next-line react-internal/no-production-logging
console['error'](error);
};
function act(callback) {

@@ -1004,2 +1058,5 @@ {

const createElement = createElement$1;
const cloneElement = cloneElement$1;
const createFactory = createFactory$1;
const Children = {

@@ -1021,3 +1078,2 @@ map: mapChildren,

exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
exports.act = act;
exports.cache = cache;

@@ -1034,2 +1090,3 @@ exports.cloneElement = cloneElement;

exports.startTransition = startTransition;
exports.unstable_act = act;
exports.unstable_useCacheRefresh = useCacheRefresh;

@@ -1036,0 +1093,0 @@ exports.use = use;

@@ -14,17 +14,19 @@ /*

H.constructor=G;C(H,E.prototype);H.isPureReactComponent=!0;var I=Array.isArray,J=Object.prototype.hasOwnProperty,K={current:null},L={key:!0,ref:!0,__self:!0,__source:!0};
function M(a,b,c){var e,d={},f=null,k=null;if(null!=b)for(e in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(f=""+b.key),b)J.call(b,e)&&!L.hasOwnProperty(e)&&(d[e]=b[e]);var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){for(var g=Array(h),m=0;m<h;m++)g[m]=arguments[m+2];d.children=g}if(a&&a.defaultProps)for(e in h=a.defaultProps,h)void 0===d[e]&&(d[e]=h[e]);return{$$typeof:l,type:a,key:f,ref:k,props:d,_owner:K.current}}
function N(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}var P={current:null},Q={transition:null},R={ReactCurrentDispatcher:P,ReactCurrentCache:{current:null},ReactCurrentBatchConfig:Q,ReactCurrentOwner:K};function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var S=/\/+/g;
function T(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function U(a,b,c,e,d){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var k=!1;if(null===a)k=!0;else switch(f){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case l:case n:k=!0}}if(k)return k=a,d=d(k),a=""===e?"."+T(k,0):e,I(d)?(c="",null!=a&&(c=a.replace(S,"$&/")+"/"),U(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=N(d,c+(!d.key||k&&k.key===d.key?"":(""+d.key).replace(S,"$&/")+"/")+a)),b.push(d)),1;k=0;e=""===e?".":e+":";if(I(a))for(var h=0;h<a.length;h++){f=
a[h];var g=e+T(f,h);k+=U(f,b,c,g,d)}else if(g=A(a),"function"===typeof g)for(a=g.call(a),h=0;!(f=a.next()).done;)f=f.value,g=e+T(f,h++),k+=U(f,b,c,g,d);else if("object"===f)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return k}
function V(a,b,c){if(null==a)return a;var e=[],d=0;U(a,e,"","",function(f){return b.call(c,f,d++)});return e}function W(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function X(){}var Y="function"===typeof reportError?reportError:function(a){console.error(a)};
exports.Children={map:V,forEach:function(a,b,c){V(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;V(a,function(){b++});return b},toArray:function(a){return V(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=E;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=G;exports.StrictMode=q;exports.Suspense=w;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=R;exports.act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.cache=function(a){return function(){return a.apply(null,arguments)}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=C({},a.props),d=a.key,f=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,k=K.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(g in b)J.call(b,g)&&!L.hasOwnProperty(g)&&(e[g]=void 0===b[g]&&void 0!==h?h[g]:b[g])}var g=arguments.length-2;if(1===g)e.children=c;else if(1<g){h=Array(g);
for(var m=0;m<g;m++)h[m]=arguments[m+2];e.children=h}return{$$typeof:l,type:a.type,key:d,ref:f,props:e,_owner:k}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=M;exports.createFactory=function(a){var b=M.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:y,_payload:{_status:-1,_result:a},_init:W}};exports.memo=function(a,b){return{$$typeof:x,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=Q.transition,c=new Set;Q.transition={_callbacks:c};var e=Q.transition;try{var d=a();"object"===typeof d&&null!==d&&"function"===typeof d.then&&(c.forEach(function(f){return f(e,d)}),d.then(X,Y))}catch(f){Y(f)}finally{Q.transition=b}};exports.unstable_useCacheRefresh=function(){return P.current.useCacheRefresh()};exports.use=function(a){return P.current.use(a)};exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};
exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return P.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return P.current.useEffect(a,b)};exports.useId=function(){return P.current.useId()};exports.useImperativeHandle=function(a,b,c){return P.current.useImperativeHandle(a,b,c)};exports.useInsertionEffect=function(a,b){return P.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return P.current.useLayoutEffect(a,b)};
exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useOptimistic=function(a,b){return P.current.useOptimistic(a,b)};exports.useReducer=function(a,b,c){return P.current.useReducer(a,b,c)};exports.useRef=function(a){return P.current.useRef(a)};exports.useState=function(a){return P.current.useState(a)};exports.useSyncExternalStore=function(a,b,c){return P.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.3.0-canary-4b2a1115a-20240202";
function M(a,b,c){var f,d={},e=null,g=null;if(null!=b)for(f in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(e=""+b.key),b)J.call(b,f)&&!L.hasOwnProperty(f)&&(d[f]=b[f]);var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){for(var k=Array(h),m=0;m<h;m++)k[m]=arguments[m+2];d.children=k}if(a&&a.defaultProps)for(f in h=a.defaultProps,h)void 0===d[f]&&(d[f]=h[f]);return{$$typeof:l,type:a,key:e,ref:g,props:d,_owner:K.current}}
function N(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var P=/\/+/g;function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function R(a,b,c,f,d){var e=typeof a;if("undefined"===e||"boolean"===e)a=null;var g=!1;if(null===a)g=!0;else switch(e){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case l:case n:g=!0}}if(g)return g=a,d=d(g),a=""===f?"."+Q(g,0):f,I(d)?(c="",null!=a&&(c=a.replace(P,"$&/")+"/"),R(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=N(d,c+(!d.key||g&&g.key===d.key?"":(""+d.key).replace(P,"$&/")+"/")+a)),b.push(d)),1;g=0;f=""===f?".":f+":";if(I(a))for(var h=0;h<a.length;h++){e=
a[h];var k=f+Q(e,h);g+=R(e,b,c,k,d)}else if(k=A(a),"function"===typeof k)for(a=k.call(a),h=0;!(e=a.next()).done;)e=e.value,k=f+Q(e,h++),g+=R(e,b,c,k,d);else if("object"===e)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return g}
function S(a,b,c){if(null==a)return a;var f=[],d=0;R(a,f,"","",function(e){return b.call(c,e,d++)});return f}function T(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var U={current:null};function V(){return new WeakMap}
function W(){return{s:0,v:void 0,o:null,p:null}}var X={current:null},Y={transition:null},Z={ReactCurrentDispatcher:X,ReactCurrentCache:U,ReactCurrentBatchConfig:Y,ReactCurrentOwner:K};
exports.Children={map:S,forEach:function(a,b,c){S(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;S(a,function(){b++});return b},toArray:function(a){return S(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=E;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=G;exports.StrictMode=q;exports.Suspense=w;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Z;
exports.cache=function(a){return function(){var b=U.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(V);b=c.get(a);void 0===b&&(b=W(),c.set(a,b));c=0;for(var f=arguments.length;c<f;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var e=b.o;null===e&&(b.o=e=new WeakMap);b=e.get(d);void 0===b&&(b=W(),e.set(d,b))}else e=b.p,null===e&&(b.p=e=new Map),b=e.get(d),void 0===b&&(b=W(),e.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var g=a.apply(null,
arguments);c=b;c.s=1;return c.v=g}catch(h){throw g=b,g.s=2,g.v=h,h;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var f=C({},a.props),d=a.key,e=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(e=b.ref,g=K.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)J.call(b,k)&&!L.hasOwnProperty(k)&&(f[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)f.children=c;else if(1<k){h=Array(k);
for(var m=0;m<k;m++)h[m]=arguments[m+2];f.children=h}return{$$typeof:l,type:a.type,key:d,ref:e,props:f,_owner:g}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=M;exports.createFactory=function(a){var b=M.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:y,_payload:{_status:-1,_result:a},_init:T}};exports.memo=function(a,b){return{$$typeof:x,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=Y.transition;Y.transition={};try{a()}finally{Y.transition=b}};exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.unstable_useCacheRefresh=function(){return X.current.useCacheRefresh()};
exports.use=function(a){return X.current.use(a)};exports.useCallback=function(a,b){return X.current.useCallback(a,b)};exports.useContext=function(a){return X.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return X.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return X.current.useEffect(a,b)};exports.useId=function(){return X.current.useId()};exports.useImperativeHandle=function(a,b,c){return X.current.useImperativeHandle(a,b,c)};
exports.useInsertionEffect=function(a,b){return X.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return X.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return X.current.useMemo(a,b)};exports.useOptimistic=function(a,b){return X.current.useOptimistic(a,b)};exports.useReducer=function(a,b,c){return X.current.useReducer(a,b,c)};exports.useRef=function(a){return X.current.useRef(a)};exports.useState=function(a){return X.current.useState(a)};
exports.useSyncExternalStore=function(a,b,c){return X.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return X.current.useTransition()};exports.version="18.3.0-canary-4b84f1161-20240318";
//# sourceMappingURL=react.production.min.js.map

@@ -7,3 +7,3 @@ {

],
"version": "18.3.0-canary-4b2a1115a-20240202",
"version": "18.3.0-canary-4b84f1161-20240318",
"homepage": "https://reactjs.org/",

@@ -20,3 +20,3 @@ "bugs": "https://github.com/facebook/react/issues",

"jsx-dev-runtime.js",
"react.react-server.js"
"react.shared-subset.js"
],

@@ -26,3 +26,3 @@ "main": "index.js",

".": {
"react-server": "./react.react-server.js",
"react-server": "./react.shared-subset.js",
"default": "./index.js"

@@ -29,0 +29,0 @@ },

@@ -11,23 +11,24 @@ /**

'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=W;this.updater=c||X}function Y(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=W;this.updater=c||X}function Z(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)aa.call(b,d)&&!ba.hasOwnProperty(d)&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:k,props:e,_owner:N.current}}function oa(a,b){return{$$typeof:A,type:a.type,
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function pa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?pa(""+a.key):b.toString(36)}function E(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case A:case qa:k=
!0}}if(k)return k=a,e=e(k),a=""===d?"."+P(k,0):d,ca(e)?(c="",null!=a&&(c=a.replace(da,"$&/")+"/"),E(e,b,c,"",function(n){return n})):null!=e&&(O(e)&&(e=oa(e,c+(!e.key||k&&k.key===e.key?"":(""+e.key).replace(da,"$&/")+"/")+a)),b.push(e)),1;k=0;d=""===d?".":d+":";if(ca(a))for(var l=0;l<a.length;l++){g=a[l];var h=d+P(g,l);k+=E(g,b,c,h,e)}else if(h=z(a),"function"===typeof h)for(a=h.call(a),l=0;!(g=a.next()).done;)g=g.value,h=d+P(g,l++),k+=E(g,b,c,h,e);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return k}function F(a,b,c){if(null==a)return a;var d=[],e=0;E(a,d,"","",function(g){return b.call(c,g,e++)});return d}function ra(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function Q(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<G(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function H(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,g=e>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>G(l,c))h<e&&0>G(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>G(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}
function G(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function I(a){for(var b=r(u);null!==b;){if(null===b.callback)H(u);else if(b.startTime<=a)H(u),b.sortIndex=b.expirationTime,Q(t,b);else break;b=r(u)}}function R(a){B=!1;I(a);if(!w)if(null!==r(t))w=!0,S();else{var b=r(u);null!==b&&T(R,b.startTime-a)}}function ea(){return x()-fa<ha?!1:!0}function S(){J||(J=!0,K())}function T(a,b){C=ia(function(){a(x())},b)}function sa(){}var A=Symbol.for("react.element"),qa=Symbol.for("react.portal"),
ta=Symbol.for("react.fragment"),ua=Symbol.for("react.strict_mode"),va=Symbol.for("react.profiler"),wa=Symbol.for("react.provider"),xa=Symbol.for("react.context"),ya=Symbol.for("react.forward_ref"),za=Symbol.for("react.suspense"),Aa=Symbol.for("react.memo"),Ba=Symbol.for("react.lazy"),V=Symbol.iterator,X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},ja=Object.assign,W={};y.prototype.isReactComponent=
{};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Y.prototype=y.prototype;var v=M.prototype=new Y;v.constructor=M;ja(v,y.prototype);v.isPureReactComponent=!0;var ca=Array.isArray,aa=Object.prototype.hasOwnProperty,
N={current:null},ba={key:!0,ref:!0,__self:!0,__source:!0},m={current:null},D={transition:null},da=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Ca=performance;var x=function(){return Ca.now()}}else{var ka=Date,Da=ka.now();x=function(){return ka.now()-Da}}var t=[],u=[],Ea=1,q=null,p=3,L=!1,w=!1,B=!1,ia="function"===typeof setTimeout?setTimeout:null,la="function"===typeof clearTimeout?clearTimeout:null,ma="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==
typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var J=!1,C=-1,ha=5,fa=-1,U=function(){if(J){var a=x();fa=a;var b=!0;try{a:{w=!1;B&&(B=!1,la(C),C=-1);L=!0;var c=p;try{b:{I(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ea());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;I(a);b=!0;break b}q===
r(t)&&H(t);I(a)}else H(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&T(R,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?K():J=!1}}};if("function"===typeof ma)var K=function(){ma(U)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Fa=v.port2;v.port1.onmessage=U;K=function(){Fa.postMessage(null)}}else K=function(){ia(U,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:{current:null},ReactCurrentOwner:N,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,
unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,S())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ha=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},
unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==
c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Ea++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,Q(u,a),null===r(t)&&a===r(u)&&(B?(la(C),C=-1):B=!0,T(R,c-d))):(a.sortIndex=e,Q(t,a),w||L||(w=!0,S()));return a},unstable_shouldYield:ea,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=
c}}}}};var na="function"===typeof reportError?reportError:function(a){console.error(a)};f.Children={map:F,forEach:function(a,b,c){F(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;F(a,function(){b++});return b},toArray:function(a){return F(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ta;f.Profiler=va;f.PureComponent=M;f.StrictMode=ua;f.Suspense=za;
f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){return a.apply(null,arguments)}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=ja({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=N.current);void 0!==b.key&&(e=""+b.key);if(a.type&&
a.type.defaultProps)var l=a.type.defaultProps;for(h in b)aa.call(b,h)&&!ba.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:e,ref:g,props:d,_owner:k}};f.createContext=function(a){a={$$typeof:xa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:wa,
_context:a};return a.Consumer=a};f.createElement=Z;f.createFactory=function(a){var b=Z.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.forwardRef=function(a){return{$$typeof:ya,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ba,_payload:{_status:-1,_result:a},_init:ra}};f.memo=function(a,b){return{$$typeof:Aa,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;
try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(sa,na))}catch(g){na(g)}finally{D.transition=b}};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,
b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,
b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()};f.version="18.3.0-canary-4b2a1115a-20240202"})})();
'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=X;this.updater=c||Y}function Z(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=X;this.updater=c||Y}function aa(a,b,c){var e,d={},g=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)ba.call(b,e)&&!ca.hasOwnProperty(e)&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];d.children=k}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return{$$typeof:A,type:a,key:g,ref:h,props:d,_owner:N.current}}function pa(a,b){return{$$typeof:A,type:a.type,
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function qa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?qa(""+a.key):b.toString(36)}function D(a,b,c,e,d){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ra:h=
!0}}if(h)return h=a,d=d(h),a=""===e?"."+P(h,0):e,da(d)?(c="",null!=a&&(c=a.replace(ea,"$&/")+"/"),D(d,b,c,"",function(n){return n})):null!=d&&(O(d)&&(d=pa(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(ea,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(da(a))for(var l=0;l<a.length;l++){g=a[l];var k=e+P(g,l);h+=D(g,b,c,k,d)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=e+P(g,l++),h+=D(g,b,c,k,d);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var e=[],d=0;D(a,e,"","",function(g){return b.call(c,g,d++)});return e}function sa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ta(){return new WeakMap}function Q(){return{s:0,v:void 0,o:null,p:null}}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var e=c-1>>>1,d=a[e];if(0<F(d,b))a[e]=b,a[c]=d,c=e;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var e=0,d=a.length,g=d>>>1;e<g;){var h=2*(e+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<d&&0>F(n,l)?(a[e]=
n,a[k]=c,e=k):(a[e]=l,a[h]=c,e=h);else if(k<d&&0>F(n,c))a[e]=n,a[k]=c,e=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function fa(){return x()-ha<ia?!1:!0}function T(){I||(I=!0,J())}function U(a,b){C=ja(function(){a(x())},
b)}var A=Symbol.for("react.element"),ra=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),xa=Symbol.for("react.provider"),ya=Symbol.for("react.context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.memo"),Ca=Symbol.for("react.lazy"),W=Symbol.iterator,Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,e){},enqueueSetState:function(a,
b,c,e){}},ka=Object.assign,X={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=y.prototype;var v=M.prototype=new Z;v.constructor=M;ka(v,y.prototype);
v.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,N={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,la={current:null},m={current:null},K={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Da=performance;var x=function(){return Da.now()}}else{var ma=Date,Ea=ma.now();x=function(){return ma.now()-Ea}}var t=[],u=[],Fa=1,q=null,p=3,L=!1,w=!1,B=!1,ja="function"===typeof setTimeout?setTimeout:null,na="function"===
typeof clearTimeout?clearTimeout:null,oa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ia=5,ha=-1,V=function(){if(I){var a=x();ha=a;var b=!0;try{a:{w=!1;B&&(B=!1,na(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&fa());){var e=q.callback;if("function"===typeof e){q.callback=null;
p=q.priorityLevel;var d=e(q.expirationTime<=a);a=x();if("function"===typeof d){q.callback=d;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof oa)var J=function(){oa(V)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ga=v.port2;v.port1.onmessage=V;J=function(){Ga.postMessage(null)}}else J=function(){ja(V,0)};v={ReactCurrentDispatcher:m,
ReactCurrentCache:la,ReactCurrentOwner:N,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,T())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):
ia=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},
unstable_scheduleCallback:function(a,b,c){var e=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?e+c:e):c=e;switch(a){case 1:var d=-1;break;case 2:d=250;break;case 5:d=1073741823;break;case 4:d=1E4;break;default:d=5E3}d=c+d;a={id:Fa++,callback:b,priorityLevel:a,startTime:c,expirationTime:d,sortIndex:-1};c>e?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(na(C),C=-1):B=!0,U(S,c-e))):(a.sortIndex=d,R(t,a),w||L||(w=!0,T()));return a},unstable_shouldYield:fa,unstable_wrapCallback:function(a){var b=
p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ua;f.Profiler=wa;f.PureComponent=M;f.StrictMode=va;f.Suspense=Aa;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=
v;f.cache=function(a){return function(){var b=la.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ta);b=c.get(a);void 0===b&&(b=Q(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(d);void 0===b&&(b=Q(),g.set(d,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(d),void 0===b&&(b=Q(),g.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=ka({},a.props),d=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=N.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)ba.call(b,k)&&!ca.hasOwnProperty(k)&&(e[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k=
arguments.length-2;if(1===k)e.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];e.children=l}return{$$typeof:A,type:a.type,key:d,ref:g,props:e,_owner:h}};f.createContext=function(a){a={$$typeof:ya,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:xa,_context:a};return a.Consumer=a};f.createElement=aa;f.createFactory=function(a){var b=aa.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};
f.forwardRef=function(a){return{$$typeof:za,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:sa}};f.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};
f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,
b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()};
f.version="18.3.0-canary-4b84f1161-20240318"})})();

@@ -11,23 +11,24 @@ /**

'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=W;this.updater=c||X}function Y(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=W;this.updater=c||X}function Z(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)aa.call(b,d)&&!ba.hasOwnProperty(d)&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:k,props:e,_owner:N.current}}function oa(a,b){return{$$typeof:A,type:a.type,
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function pa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?pa(""+a.key):b.toString(36)}function E(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case A:case qa:k=
!0}}if(k)return k=a,e=e(k),a=""===d?"."+P(k,0):d,ca(e)?(c="",null!=a&&(c=a.replace(da,"$&/")+"/"),E(e,b,c,"",function(n){return n})):null!=e&&(O(e)&&(e=oa(e,c+(!e.key||k&&k.key===e.key?"":(""+e.key).replace(da,"$&/")+"/")+a)),b.push(e)),1;k=0;d=""===d?".":d+":";if(ca(a))for(var l=0;l<a.length;l++){g=a[l];var h=d+P(g,l);k+=E(g,b,c,h,e)}else if(h=z(a),"function"===typeof h)for(a=h.call(a),l=0;!(g=a.next()).done;)g=g.value,h=d+P(g,l++),k+=E(g,b,c,h,e);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return k}function F(a,b,c){if(null==a)return a;var d=[],e=0;E(a,d,"","",function(g){return b.call(c,g,e++)});return d}function ra(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function Q(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<G(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function H(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,g=e>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>G(l,c))h<e&&0>G(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>G(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}
function G(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function I(a){for(var b=r(u);null!==b;){if(null===b.callback)H(u);else if(b.startTime<=a)H(u),b.sortIndex=b.expirationTime,Q(t,b);else break;b=r(u)}}function R(a){B=!1;I(a);if(!w)if(null!==r(t))w=!0,S();else{var b=r(u);null!==b&&T(R,b.startTime-a)}}function ea(){return x()-fa<ha?!1:!0}function S(){J||(J=!0,K())}function T(a,b){C=ia(function(){a(x())},b)}function sa(){}var A=Symbol.for("react.element"),qa=Symbol.for("react.portal"),
ta=Symbol.for("react.fragment"),ua=Symbol.for("react.strict_mode"),va=Symbol.for("react.profiler"),wa=Symbol.for("react.provider"),xa=Symbol.for("react.context"),ya=Symbol.for("react.forward_ref"),za=Symbol.for("react.suspense"),Aa=Symbol.for("react.memo"),Ba=Symbol.for("react.lazy"),V=Symbol.iterator,X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},ja=Object.assign,W={};y.prototype.isReactComponent=
{};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Y.prototype=y.prototype;var v=M.prototype=new Y;v.constructor=M;ja(v,y.prototype);v.isPureReactComponent=!0;var ca=Array.isArray,aa=Object.prototype.hasOwnProperty,
N={current:null},ba={key:!0,ref:!0,__self:!0,__source:!0},m={current:null},D={transition:null},da=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Ca=performance;var x=function(){return Ca.now()}}else{var ka=Date,Da=ka.now();x=function(){return ka.now()-Da}}var t=[],u=[],Ea=1,q=null,p=3,L=!1,w=!1,B=!1,ia="function"===typeof setTimeout?setTimeout:null,la="function"===typeof clearTimeout?clearTimeout:null,ma="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==
typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var J=!1,C=-1,ha=5,fa=-1,U=function(){if(J){var a=x();fa=a;var b=!0;try{a:{w=!1;B&&(B=!1,la(C),C=-1);L=!0;var c=p;try{b:{I(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ea());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;I(a);b=!0;break b}q===
r(t)&&H(t);I(a)}else H(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&T(R,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?K():J=!1}}};if("function"===typeof ma)var K=function(){ma(U)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Fa=v.port2;v.port1.onmessage=U;K=function(){Fa.postMessage(null)}}else K=function(){ia(U,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:{current:null},ReactCurrentOwner:N,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,
unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,S())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ha=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},
unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==
c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Ea++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,Q(u,a),null===r(t)&&a===r(u)&&(B?(la(C),C=-1):B=!0,T(R,c-d))):(a.sortIndex=e,Q(t,a),w||L||(w=!0,S()));return a},unstable_shouldYield:ea,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=
c}}}}};var na="function"===typeof reportError?reportError:function(a){console.error(a)};f.Children={map:F,forEach:function(a,b,c){F(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;F(a,function(){b++});return b},toArray:function(a){return F(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ta;f.Profiler=va;f.PureComponent=M;f.StrictMode=ua;f.Suspense=za;
f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){return a.apply(null,arguments)}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=ja({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=N.current);void 0!==b.key&&(e=""+b.key);if(a.type&&
a.type.defaultProps)var l=a.type.defaultProps;for(h in b)aa.call(b,h)&&!ba.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:e,ref:g,props:d,_owner:k}};f.createContext=function(a){a={$$typeof:xa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:wa,
_context:a};return a.Consumer=a};f.createElement=Z;f.createFactory=function(a){var b=Z.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.forwardRef=function(a){return{$$typeof:ya,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ba,_payload:{_status:-1,_result:a},_init:ra}};f.memo=function(a,b){return{$$typeof:Aa,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;
try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(sa,na))}catch(g){na(g)}finally{D.transition=b}};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,
b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,
b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()};f.version="18.3.0-canary-4b2a1115a-20240202"})})();
'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=X;this.updater=c||Y}function Z(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=X;this.updater=c||Y}function aa(a,b,c){var e,d={},g=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)ba.call(b,e)&&!ca.hasOwnProperty(e)&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];d.children=k}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return{$$typeof:A,type:a,key:g,ref:h,props:d,_owner:N.current}}function pa(a,b){return{$$typeof:A,type:a.type,
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function qa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?qa(""+a.key):b.toString(36)}function D(a,b,c,e,d){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ra:h=
!0}}if(h)return h=a,d=d(h),a=""===e?"."+P(h,0):e,da(d)?(c="",null!=a&&(c=a.replace(ea,"$&/")+"/"),D(d,b,c,"",function(n){return n})):null!=d&&(O(d)&&(d=pa(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(ea,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(da(a))for(var l=0;l<a.length;l++){g=a[l];var k=e+P(g,l);h+=D(g,b,c,k,d)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=e+P(g,l++),h+=D(g,b,c,k,d);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var e=[],d=0;D(a,e,"","",function(g){return b.call(c,g,d++)});return e}function sa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ta(){return new WeakMap}function Q(){return{s:0,v:void 0,o:null,p:null}}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var e=c-1>>>1,d=a[e];if(0<F(d,b))a[e]=b,a[c]=d,c=e;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var e=0,d=a.length,g=d>>>1;e<g;){var h=2*(e+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<d&&0>F(n,l)?(a[e]=
n,a[k]=c,e=k):(a[e]=l,a[h]=c,e=h);else if(k<d&&0>F(n,c))a[e]=n,a[k]=c,e=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function fa(){return x()-ha<ia?!1:!0}function T(){I||(I=!0,J())}function U(a,b){C=ja(function(){a(x())},
b)}var A=Symbol.for("react.element"),ra=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),xa=Symbol.for("react.provider"),ya=Symbol.for("react.context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.memo"),Ca=Symbol.for("react.lazy"),W=Symbol.iterator,Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,e){},enqueueSetState:function(a,
b,c,e){}},ka=Object.assign,X={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=y.prototype;var v=M.prototype=new Z;v.constructor=M;ka(v,y.prototype);
v.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,N={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,la={current:null},m={current:null},K={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Da=performance;var x=function(){return Da.now()}}else{var ma=Date,Ea=ma.now();x=function(){return ma.now()-Ea}}var t=[],u=[],Fa=1,q=null,p=3,L=!1,w=!1,B=!1,ja="function"===typeof setTimeout?setTimeout:null,na="function"===
typeof clearTimeout?clearTimeout:null,oa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ia=5,ha=-1,V=function(){if(I){var a=x();ha=a;var b=!0;try{a:{w=!1;B&&(B=!1,na(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&fa());){var e=q.callback;if("function"===typeof e){q.callback=null;
p=q.priorityLevel;var d=e(q.expirationTime<=a);a=x();if("function"===typeof d){q.callback=d;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof oa)var J=function(){oa(V)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ga=v.port2;v.port1.onmessage=V;J=function(){Ga.postMessage(null)}}else J=function(){ja(V,0)};v={ReactCurrentDispatcher:m,
ReactCurrentCache:la,ReactCurrentOwner:N,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,T())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):
ia=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},
unstable_scheduleCallback:function(a,b,c){var e=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?e+c:e):c=e;switch(a){case 1:var d=-1;break;case 2:d=250;break;case 5:d=1073741823;break;case 4:d=1E4;break;default:d=5E3}d=c+d;a={id:Fa++,callback:b,priorityLevel:a,startTime:c,expirationTime:d,sortIndex:-1};c>e?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(na(C),C=-1):B=!0,U(S,c-e))):(a.sortIndex=d,R(t,a),w||L||(w=!0,T()));return a},unstable_shouldYield:fa,unstable_wrapCallback:function(a){var b=
p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ua;f.Profiler=wa;f.PureComponent=M;f.StrictMode=va;f.Suspense=Aa;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=
v;f.cache=function(a){return function(){var b=la.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ta);b=c.get(a);void 0===b&&(b=Q(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(d);void 0===b&&(b=Q(),g.set(d,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(d),void 0===b&&(b=Q(),g.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=ka({},a.props),d=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=N.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)ba.call(b,k)&&!ca.hasOwnProperty(k)&&(e[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k=
arguments.length-2;if(1===k)e.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];e.children=l}return{$$typeof:A,type:a.type,key:d,ref:g,props:e,_owner:h}};f.createContext=function(a){a={$$typeof:ya,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:xa,_context:a};return a.Consumer=a};f.createElement=aa;f.createFactory=function(a){var b=aa.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};
f.forwardRef=function(a){return{$$typeof:za,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:sa}};f.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};
f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,
b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()};
f.version="18.3.0-canary-4b84f1161-20240318"})})();

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc