Comparing version 0.0.0-experimental-94c0244ba to 0.0.0-experimental-a703c3f7e
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-dev-runtime.development.js | ||
@@ -36,4 +36,2 @@ * | ||
var REACT_LAZY_TYPE = 0xead4; | ||
var REACT_BLOCK_TYPE = 0xead9; | ||
var REACT_SERVER_BLOCK_TYPE = 0xeada; | ||
var REACT_FUNDAMENTAL_TYPE = 0xead5; | ||
@@ -45,2 +43,3 @@ var REACT_SCOPE_TYPE = 0xead7; | ||
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3; | ||
var REACT_CACHE_TYPE = 0xeae4; | ||
@@ -61,4 +60,2 @@ if (typeof Symbol === 'function' && Symbol.for) { | ||
REACT_LAZY_TYPE = symbolFor('react.lazy'); | ||
REACT_BLOCK_TYPE = symbolFor('react.block'); | ||
REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block'); | ||
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental'); | ||
@@ -70,2 +67,3 @@ REACT_SCOPE_TYPE = symbolFor('react.scope'); | ||
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden'); | ||
REACT_CACHE_TYPE = symbolFor('react.cache'); | ||
} | ||
@@ -129,2 +127,8 @@ | ||
var REACT_MODULE_REFERENCE = 0; | ||
if (typeof Symbol === 'function') { | ||
REACT_MODULE_REFERENCE = Symbol.for('react.module.reference'); | ||
} | ||
function isValidElementType(type) { | ||
@@ -136,3 +140,3 @@ if (typeof type === 'string' || typeof type === 'function') { | ||
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) { | ||
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) { | ||
return true; | ||
@@ -142,3 +146,7 @@ } | ||
if (typeof type === 'object' && type !== null) { | ||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) { | ||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || // This needs to include all possible module reference object | ||
// types supported by any Flight configuration anywhere since | ||
// we don't know which Flight build this will end up being used | ||
// with. | ||
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) { | ||
return true; | ||
@@ -188,3 +196,3 @@ } | ||
case REACT_PROFILER_TYPE: | ||
return "Profiler"; | ||
return 'Profiler'; | ||
@@ -199,2 +207,5 @@ case REACT_STRICT_MODE_TYPE: | ||
return 'SuspenseList'; | ||
case REACT_CACHE_TYPE: | ||
return 'Cache'; | ||
} | ||
@@ -218,5 +229,2 @@ | ||
case REACT_BLOCK_TYPE: | ||
return getComponentName(type._render); | ||
case REACT_LAZY_TYPE: | ||
@@ -362,3 +370,3 @@ { | ||
// If something asked for a stack inside a fake render, it should get ignored. | ||
if (!fn || reentry) { | ||
if ( !fn || reentry) { | ||
return ''; | ||
@@ -557,5 +565,2 @@ } | ||
case REACT_BLOCK_TYPE: | ||
return describeFunctionComponentFrame(type._render); | ||
case REACT_LAZY_TYPE: | ||
@@ -691,3 +696,3 @@ { | ||
if (!didWarnAboutStringRefs[componentName]) { | ||
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://fb.me/react-strict-mode-string-ref', getComponentName(ReactCurrentOwner.current.type), config.ref); | ||
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentName(ReactCurrentOwner.current.type), config.ref); | ||
@@ -706,3 +711,3 @@ didWarnAboutStringRefs[componentName] = true; | ||
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); | ||
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName); | ||
} | ||
@@ -725,3 +730,3 @@ }; | ||
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); | ||
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName); | ||
} | ||
@@ -1001,3 +1006,3 @@ }; | ||
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.', currentComponentErrorInfo, childOwner); | ||
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner); | ||
@@ -1073,3 +1078,2 @@ setCurrentlyValidatingElement$1(null); | ||
var name = getComponentName(type); | ||
var propTypes; | ||
@@ -1088,7 +1092,11 @@ | ||
if (propTypes) { | ||
// Intentionally inside to avoid triggering lazy initializers: | ||
var name = getComponentName(type); | ||
checkPropTypes(propTypes, element.props, 'prop', name, element); | ||
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) { | ||
propTypesMisspellWarningShown = true; | ||
propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers: | ||
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', name || 'Unknown'); | ||
var _name = getComponentName(type); | ||
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown'); | ||
} | ||
@@ -1095,0 +1103,0 @@ |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-dev-runtime.production.min.js | ||
@@ -3,0 +3,0 @@ * |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-dev-runtime.profiling.min.js | ||
@@ -3,0 +3,0 @@ * |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-runtime.development.js | ||
@@ -36,4 +36,2 @@ * | ||
var REACT_LAZY_TYPE = 0xead4; | ||
var REACT_BLOCK_TYPE = 0xead9; | ||
var REACT_SERVER_BLOCK_TYPE = 0xeada; | ||
var REACT_FUNDAMENTAL_TYPE = 0xead5; | ||
@@ -45,2 +43,3 @@ var REACT_SCOPE_TYPE = 0xead7; | ||
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3; | ||
var REACT_CACHE_TYPE = 0xeae4; | ||
@@ -61,4 +60,2 @@ if (typeof Symbol === 'function' && Symbol.for) { | ||
REACT_LAZY_TYPE = symbolFor('react.lazy'); | ||
REACT_BLOCK_TYPE = symbolFor('react.block'); | ||
REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block'); | ||
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental'); | ||
@@ -70,2 +67,3 @@ REACT_SCOPE_TYPE = symbolFor('react.scope'); | ||
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden'); | ||
REACT_CACHE_TYPE = symbolFor('react.cache'); | ||
} | ||
@@ -129,2 +127,8 @@ | ||
var REACT_MODULE_REFERENCE = 0; | ||
if (typeof Symbol === 'function') { | ||
REACT_MODULE_REFERENCE = Symbol.for('react.module.reference'); | ||
} | ||
function isValidElementType(type) { | ||
@@ -136,3 +140,3 @@ if (typeof type === 'string' || typeof type === 'function') { | ||
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) { | ||
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) { | ||
return true; | ||
@@ -142,3 +146,7 @@ } | ||
if (typeof type === 'object' && type !== null) { | ||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) { | ||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || // This needs to include all possible module reference object | ||
// types supported by any Flight configuration anywhere since | ||
// we don't know which Flight build this will end up being used | ||
// with. | ||
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) { | ||
return true; | ||
@@ -188,3 +196,3 @@ } | ||
case REACT_PROFILER_TYPE: | ||
return "Profiler"; | ||
return 'Profiler'; | ||
@@ -199,2 +207,5 @@ case REACT_STRICT_MODE_TYPE: | ||
return 'SuspenseList'; | ||
case REACT_CACHE_TYPE: | ||
return 'Cache'; | ||
} | ||
@@ -218,5 +229,2 @@ | ||
case REACT_BLOCK_TYPE: | ||
return getComponentName(type._render); | ||
case REACT_LAZY_TYPE: | ||
@@ -362,3 +370,3 @@ { | ||
// If something asked for a stack inside a fake render, it should get ignored. | ||
if (!fn || reentry) { | ||
if ( !fn || reentry) { | ||
return ''; | ||
@@ -557,5 +565,2 @@ } | ||
case REACT_BLOCK_TYPE: | ||
return describeFunctionComponentFrame(type._render); | ||
case REACT_LAZY_TYPE: | ||
@@ -691,3 +696,3 @@ { | ||
if (!didWarnAboutStringRefs[componentName]) { | ||
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://fb.me/react-strict-mode-string-ref', getComponentName(ReactCurrentOwner.current.type), config.ref); | ||
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentName(ReactCurrentOwner.current.type), config.ref); | ||
@@ -706,3 +711,3 @@ didWarnAboutStringRefs[componentName] = true; | ||
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); | ||
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName); | ||
} | ||
@@ -725,3 +730,3 @@ }; | ||
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); | ||
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName); | ||
} | ||
@@ -1001,3 +1006,3 @@ }; | ||
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.', currentComponentErrorInfo, childOwner); | ||
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner); | ||
@@ -1073,3 +1078,2 @@ setCurrentlyValidatingElement$1(null); | ||
var name = getComponentName(type); | ||
var propTypes; | ||
@@ -1088,7 +1092,11 @@ | ||
if (propTypes) { | ||
// Intentionally inside to avoid triggering lazy initializers: | ||
var name = getComponentName(type); | ||
checkPropTypes(propTypes, element.props, 'prop', name, element); | ||
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) { | ||
propTypesMisspellWarningShown = true; | ||
propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers: | ||
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', name || 'Unknown'); | ||
var _name = getComponentName(type); | ||
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown'); | ||
} | ||
@@ -1095,0 +1103,0 @@ |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-runtime.production.min.js | ||
@@ -3,0 +3,0 @@ * |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react-jsx-runtime.profiling.min.js | ||
@@ -3,0 +3,0 @@ * |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react.production.min.js | ||
@@ -9,20 +9,19 @@ * | ||
*/ | ||
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.unstable_SuspenseList=60120;var u=60115,v=60116,w=60121;exports.unstable_DebugTracingMode=60129;exports.unstable_LegacyHidden=60131; | ||
if("function"===typeof Symbol&&Symbol.for){var x=Symbol.for;m=x("react.element");p=x("react.portal");exports.Fragment=x("react.fragment");exports.StrictMode=x("react.strict_mode");exports.Profiler=x("react.profiler");q=x("react.provider");r=x("react.context");t=x("react.forward_ref");exports.Suspense=x("react.suspense");exports.unstable_SuspenseList=x("react.suspense_list");u=x("react.memo");v=x("react.lazy");w=x("react.block");exports.unstable_DebugTracingMode=x("react.debug_trace_mode");exports.unstable_LegacyHidden= | ||
x("react.legacy_hidden")}var y="function"===typeof Symbol&&Symbol.iterator;function z(a){if(null===a||"object"!==typeof a)return null;a=y&&a[y]||a["@@iterator"];return"function"===typeof a?a:null} | ||
function A(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var B={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},C={}; | ||
function D(a,b,c){this.props=a;this.context=b;this.refs=C;this.updater=c||B}D.prototype.isReactComponent={};D.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(A(85));this.updater.enqueueSetState(this,a,b,"setState")};D.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function E(){}E.prototype=D.prototype;function F(a,b,c){this.props=a;this.context=b;this.refs=C;this.updater=c||B}var G=F.prototype=new E; | ||
G.constructor=F;l(G,D.prototype);G.isPureReactComponent=!0;var H={current:null},I=Object.prototype.hasOwnProperty,J={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function K(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)I.call(b,e)&&!J.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];d.children=f}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return{$$typeof:m,type:a,key:k,ref:h,props:d,_owner:H.current}} | ||
function L(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var N=/\/+/g;function O(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)} | ||
function P(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,d=d(h),a=""===e?"."+O(h,0):e,Array.isArray(d)?(c="",null!=a&&(c=a.replace(N,"$&/")+"/"),P(d,b,c,"",function(a){return a})):null!=d&&(M(d)&&(d=L(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(N,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(Array.isArray(a))for(var g= | ||
0;g<a.length;g++){k=a[g];var f=e+O(k,g);h+=P(k,b,c,f,d)}else if(f=z(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+O(k,g++),h+=P(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(A(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function Q(a,b,c){if(null==a)return a;var e=[],d=0;P(a,e,"","",function(a){return b.call(c,a,d++)});return e} | ||
function R(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function S(a){return{$$typeof:w,_data:a.load.apply(null,a.args),_render:a.render}}var T={current:null};function U(){var a=T.current;if(null===a)throw Error(A(321));return a} | ||
var V={suspense:null},W={ReactCurrentDispatcher:T,ReactCurrentBatchConfig:V,ReactCurrentOwner:H,IsSomeRendererActing:{current:!1},assign:l};exports.Children={map:Q,forEach:function(a,b,c){Q(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;Q(a,function(){b++});return b},toArray:function(a){return Q(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(A(143));return a}};exports.Component=D;exports.PureComponent=F; | ||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=W; | ||
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=H.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)I.call(b,f)&&!J.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];e.children=g}return{$$typeof:m,type:a.type, | ||
key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:r,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=K;exports.createFactory=function(a){var b=K.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};exports.isValidElement=M; | ||
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:R}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.unstable_block=function(a,b){return void 0===b?function(){return{$$typeof:w,_data:void 0,_render:a}}:function(){return{$$typeof:v,_payload:{load:b,args:arguments,render:a},_init:S}}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}}; | ||
exports.unstable_useDeferredValue=function(a,b){return U().useDeferredValue(a,b)};exports.unstable_useMutableSource=function(a,b,c){return U().useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return U().useOpaqueIdentifier()};exports.unstable_useTransition=function(a){return U().useTransition(a)};exports.unstable_withSuspenseConfig=function(a,b){var c=V.suspense;V.suspense=void 0===b?null:b;try{a()}finally{V.suspense=c}}; | ||
exports.useCallback=function(a,b){return U().useCallback(a,b)};exports.useContext=function(a,b){return U().useContext(a,b)};exports.useDebugValue=function(){};exports.useEffect=function(a,b){return U().useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return U().useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return U().useLayoutEffect(a,b)};exports.useMemo=function(a,b){return U().useMemo(a,b)};exports.useReducer=function(a,b,c){return U().useReducer(a,b,c)}; | ||
exports.useRef=function(a){return U().useRef(a)};exports.useState=function(a){return U().useState(a)};exports.version="17.0.0-alpha.0-experimental-94c0244ba"; | ||
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.unstable_SuspenseList=60120;var u=60115,v=60116;exports.unstable_DebugTracingMode=60129;exports.unstable_LegacyHidden=60131;exports.unstable_Cache=60132; | ||
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.unstable_SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_LegacyHidden= | ||
w("react.legacy_hidden");exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null} | ||
function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var A={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={}; | ||
function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState")};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}var F=E.prototype=new D; | ||
F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G={current:null},H=Object.prototype.hasOwnProperty,I={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function J(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)H.call(b,e)&&!I.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];d.children=f}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return{$$typeof:m,type:a,key:k,ref:h,props:d,_owner:G.current}} | ||
function K(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var M=/\/+/g;function N(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)} | ||
function O(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,d=d(h),a=""===e?"."+N(h,0):e,Array.isArray(d)?(c="",null!=a&&(c=a.replace(M,"$&/")+"/"),O(d,b,c,"",function(a){return a})):null!=d&&(L(d)&&(d=K(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(M,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(Array.isArray(a))for(var g= | ||
0;g<a.length;g++){k=a[g];var f=e+N(k,g);h+=O(k,b,c,f,d)}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+N(k,g++),h+=O(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(z(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function P(a,b,c){if(null==a)return a;var e=[],d=0;O(a,e,"","",function(a){return b.call(c,a,d++)});return e} | ||
function Q(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}var R={current:null},S={transition:0},T={ReactCurrentDispatcher:R,ReactCurrentBatchConfig:S,ReactCurrentOwner:G,IsSomeRendererActing:{current:!1},assign:l}; | ||
exports.Children={map:P,forEach:function(a,b,c){P(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;P(a,function(){b++});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(z(143));return a}};exports.Component=C;exports.PureComponent=E;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T; | ||
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!I.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];e.children=g}return{$$typeof:m,type:a.type, | ||
key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:r,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=J;exports.createFactory=function(a){var b=J.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};exports.isValidElement=L; | ||
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return R.current.getCacheForType(a)}; | ||
exports.unstable_startTransition=function(a){var b=S.transition;S.transition=1;try{a()}finally{S.transition=b}};exports.unstable_useCacheRefresh=function(){return R.current.useCacheRefresh()};exports.unstable_useDeferredValue=function(a){return R.current.useDeferredValue(a)};exports.unstable_useMutableSource=function(a,b,c){return R.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return R.current.useOpaqueIdentifier()};exports.unstable_useTransition=function(){return R.current.useTransition()}; | ||
exports.useCallback=function(a,b){return R.current.useCallback(a,b)};exports.useContext=function(a,b){return R.current.useContext(a,b)};exports.useDebugValue=function(){};exports.useEffect=function(a,b){return R.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return R.current.useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return R.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return R.current.useMemo(a,b)}; | ||
exports.useReducer=function(a,b,c){return R.current.useReducer(a,b,c)};exports.useRef=function(a){return R.current.useRef(a)};exports.useState=function(a){return R.current.useState(a)};exports.version="17.0.2-experimental-a703c3f7e"; |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "0.0.0-experimental-94c0244ba", | ||
"version": "0.0.0-experimental-a703c3f7e", | ||
"homepage": "https://reactjs.org/", | ||
@@ -21,5 +21,19 @@ "bugs": "https://github.com/facebook/react/issues", | ||
"jsx-dev-runtime.js", | ||
"unstable-cache.js" | ||
"unstable-shared-subset.js" | ||
], | ||
"main": "index.js", | ||
"exports": { | ||
".": { | ||
"react-server": "./unstable-shared-subset.js", | ||
"default": "./index.js" | ||
}, | ||
"./index": { | ||
"react-server": "./unstable-shared-subset.js", | ||
"default": "./index.js" | ||
}, | ||
"./build-info.json": "./build-info.json", | ||
"./jsx-runtime": "./jsx-runtime.js", | ||
"./jsx-dev-runtime": "./jsx-dev-runtime.js", | ||
"./": "./" | ||
}, | ||
"repository": { | ||
@@ -42,2 +56,2 @@ "type": "git", | ||
} | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react.production.min.js | ||
@@ -9,26 +9,25 @@ * | ||
*/ | ||
'use strict';(function(c,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(c=c||self,w(c.React={}))})(this,function(c){function w(a){if(null===a||"object"!==typeof a)return null;a=ba&&a[ba]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,g=1;g<arguments.length;g++)b+="&args[]="+encodeURIComponent(arguments[g]);return"Minified React error #"+ | ||
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,b,g){this.props=a;this.context=b;this.refs=ca;this.updater=g||da}function ea(){}function M(a,b,g){this.props=a;this.context=b;this.refs=ca;this.updater=g||da}function fa(a,b,g){var m,e={},c=null,y=null;if(null!=b)for(m in void 0!==b.ref&&(y=b.ref),void 0!==b.key&&(c=""+b.key),b)ha.call(b,m)&&!ia.hasOwnProperty(m)&&(e[m]=b[m]);var d=arguments.length-2;if(1=== | ||
d)e.children=g;else if(1<d){for(var h=Array(d),f=0;f<d;f++)h[f]=arguments[f+2];e.children=h}if(a&&a.defaultProps)for(m in d=a.defaultProps,d)void 0===e[m]&&(e[m]=d[m]);return{$$typeof:v,type:a,key:c,ref:y,props:e,_owner:N.current}}function wa(a,b){return{$$typeof:v,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===v}function xa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function P(a,b){return"object"=== | ||
typeof a&&null!==a&&null!=a.key?xa(""+a.key):b.toString(36)}function C(a,b,g,m,c){var e=typeof a;if("undefined"===e||"boolean"===e)a=null;var d=!1;if(null===a)d=!0;else switch(e){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ja:d=!0}}if(d)return d=a,c=c(d),a=""===m?"."+P(d,0):m,Array.isArray(c)?(g="",null!=a&&(g=a.replace(ka,"$&/")+"/"),C(c,b,g,"",function(a){return a})):null!=c&&(O(c)&&(c=wa(c,g+(!c.key||d&&d.key===c.key?"":(""+c.key).replace(ka,"$&/")+"/")+ | ||
a)),b.push(c)),1;d=0;m=""===m?".":m+":";if(Array.isArray(a))for(var f=0;f<a.length;f++){e=a[f];var h=m+P(e,f);d+=C(e,b,g,h,c)}else if(h=w(a),"function"===typeof h)for(a=h.call(a),f=0;!(e=a.next()).done;)e=e.value,h=m+P(e,f++),d+=C(e,b,g,h,c);else if("object"===e)throw b=""+a,Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return d}function D(a,b,g){if(null==a)return a;var c=[],e=0;C(a,c,"","",function(a){return b.call(g,a,e++)});return c}function ya(a){if(-1=== | ||
a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function za(a){return{$$typeof:Q,_data:a.load.apply(null,a.args),_render:a.render}}function l(){var a=la.current;if(null===a)throw Error(x(321));return a}function R(a,b){var g=a.length;a.push(b);a:for(;;){var c=g-1>>>1,e=a[c];if(void 0!==e&&0<E(e,b))a[c]=b,a[g]=e,g= | ||
c;else break a}}function n(a){a=a[0];return void 0===a?null:a}function F(a){var b=a[0];if(void 0!==b){var g=a.pop();if(g!==b){a[0]=g;a:for(var c=0,e=a.length;c<e;){var d=2*(c+1)-1,f=a[d],k=d+1,h=a[k];if(void 0!==f&&0>E(f,g))void 0!==h&&0>E(h,f)?(a[c]=h,a[k]=g,c=k):(a[c]=f,a[d]=g,c=d);else if(void 0!==h&&0>E(h,g))a[c]=h,a[k]=g,c=k;else break a}}return b}return null}function E(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function G(a){for(var b=n(r);null!==b;){if(null===b.callback)F(r); | ||
else if(b.startTime<=a)F(r),b.sortIndex=b.expirationTime,R(p,b);else break;b=n(r)}}function S(a){z=!1;G(a);if(!t)if(null!==n(p))t=!0,A(T);else{var b=n(r);null!==b&&H(S,b.startTime-a)}}function T(a,b){t=!1;z&&(z=!1,U());I=!0;var c=f;try{G(b);for(k=n(p);null!==k&&(!(k.expirationTime>b)||a&&!V());){var d=k.callback;if("function"===typeof d){k.callback=null;f=k.priorityLevel;var e=d(k.expirationTime<=b);b=q();"function"===typeof e?k.callback=e:k===n(p)&&F(p);G(b)}else F(p);k=n(p)}if(null!==k)var l=!0; | ||
else{var y=n(r);null!==y&&H(S,y.startTime-b);l=!1}return l}finally{k=null,f=c,I=!1}}var v=60103,ja=60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ma=60109,na=60110,oa=60112;c.Suspense=60113;c.unstable_SuspenseList=60120;var pa=60115,W=60116,Q=60121;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ja=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler= | ||
d("react.profiler");ma=d("react.provider");na=d("react.context");oa=d("react.forward_ref");c.Suspense=d("react.suspense");c.unstable_SuspenseList=d("react.suspense_list");pa=d("react.memo");W=d("react.lazy");Q=d("react.block");c.unstable_DebugTracingMode=d("react.debug_trace_mode");c.unstable_LegacyHidden=d("react.legacy_hidden")}var ba="function"===typeof Symbol&&Symbol.iterator,Aa=Object.prototype.hasOwnProperty,X=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined"); | ||
for(var c=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)Aa.call(e,f)&&(c[f]=e[f])}}return c},da={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},ca={};u.prototype.isReactComponent={};u.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,b,"setState")};u.prototype.forceUpdate= | ||
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ea.prototype=u.prototype;d=M.prototype=new ea;d.constructor=M;X(d,u.prototype);d.isPureReactComponent=!0;var N={current:null},ha=Object.prototype.hasOwnProperty,ia={key:!0,ref:!0,__self:!0,__source:!0},ka=/\/+/g,la={current:null},J={suspense:null},Y;if("object"===typeof performance&&"function"===typeof performance.now){var Ba=performance;var q=function(){return Ba.now()}}else{var qa=Date,Ca=qa.now();q=function(){return qa.now()-Ca}}if("undefined"=== | ||
typeof window||"function"!==typeof MessageChannel){var B=null,ra=null,sa=function(){if(null!==B)try{var a=q();B(!0,a);B=null}catch(b){throw setTimeout(sa,0),b;}};var A=function(a){null!==B?setTimeout(A,0,a):(B=a,setTimeout(sa,0))};var H=function(a,b){ra=setTimeout(a,b)};var U=function(){clearTimeout(ra)};var V=function(){return!1};d=Y=function(){}}else{var Da=window.setTimeout,Ea=window.clearTimeout;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&& | ||
console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"));var K=!1,L=null,Z=-1,ta=5,ua=0;V=function(){return q()>=ua};d=function(){};Y=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"): | ||
ta=0<a?Math.floor(1E3/a):5};var va=new MessageChannel,aa=va.port2;va.port1.onmessage=function(){if(null!==L){var a=q();ua=a+ta;try{L(!0,a)?aa.postMessage(null):(K=!1,L=null)}catch(b){throw aa.postMessage(null),b;}}else K=!1};A=function(a){L=a;K||(K=!0,aa.postMessage(null))};H=function(a,b){Z=Da(function(){a(q())},b)};U=function(){Ea(Z);Z=-1}}var p=[],r=[],Fa=1,k=null,f=3,I=!1,t=!1,z=!1,Ga=0;d={ReactCurrentDispatcher:la,ReactCurrentOwner:N,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:J, | ||
assign:X,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=f;f=a;try{return b()}finally{f=c}},unstable_next:function(a){switch(f){case 1:case 2:case 3:var b=3;break;default:b=f}var c=f;f=b;try{return a()}finally{f=c}},unstable_scheduleCallback:function(a,b,c){var d=q();"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:Fa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,R(r,a),null===n(p)&&a===n(r)&&(z?U():z=!0,H(S,c-d))):(a.sortIndex=e,R(p,a),t||I||(t=!0,A(T)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=f;return function(){var c=f;f= | ||
b;try{return a.apply(this,arguments)}finally{f=c}}},unstable_getCurrentPriorityLevel:function(){return f},unstable_shouldYield:function(){var a=q();G(a);var b=n(p);return b!==k&&null!==k&&null!==b&&null!==b.callback&&b.startTime<=a&&b.expirationTime<k.expirationTime||V()},unstable_requestPaint:d,unstable_continueExecution:function(){t||I||(t=!0,A(T))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return n(p)},get unstable_now(){return q},get unstable_forceFrameRate(){return Y}, | ||
unstable_Profiling:null},SchedulerTracing:{__proto__:null,__interactionsRef:null,__subscriberRef:null,unstable_clear:function(a){return a()},unstable_getCurrent:function(){return null},unstable_getThreadID:function(){return++Ga},unstable_trace:function(a,b,c){return c()},unstable_wrap:function(a){return a},unstable_subscribe:function(a){},unstable_unsubscribe:function(a){}}};c.Children={map:D,forEach:function(a,b,c){D(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;D(a,function(){b++}); | ||
return b},toArray:function(a){return D(a,function(a){return a})||[]},only:function(a){if(!O(a))throw Error(x(143));return a}};c.Component=u;c.PureComponent=M;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(x(267,a));var d=X({},a.props),e=a.key,g=a.ref,f=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,f=N.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var k=a.type.defaultProps;for(h in b)ha.call(b,h)&&!ia.hasOwnProperty(h)&& | ||
(d[h]=void 0===b[h]&&void 0!==k?k[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){k=Array(h);for(var l=0;l<h;l++)k[l]=arguments[l+2];d.children=k}return{$$typeof:v,type:a.type,key:e,ref:g,props:d,_owner:f}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:na,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};c.createElement=fa;c.createFactory=function(a){var b= | ||
fa.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:oa,render:a}};c.isValidElement=O;c.lazy=function(a){return{$$typeof:W,_payload:{_status:-1,_result:a},_init:ya}};c.memo=function(a,b){return{$$typeof:pa,type:a,compare:void 0===b?null:b}};c.unstable_block=function(a,b){return void 0===b?function(){return{$$typeof:Q,_data:void 0,_render:a}}:function(){return{$$typeof:W,_payload:{load:b,args:arguments,render:a},_init:za}}};c.unstable_createMutableSource= | ||
function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_useDeferredValue=function(a,b){return l().useDeferredValue(a,b)};c.unstable_useMutableSource=function(a,b,c){return l().useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return l().useOpaqueIdentifier()};c.unstable_useTransition=function(a){return l().useTransition(a)};c.unstable_withSuspenseConfig=function(a,b){var c=J.suspense;J.suspense=void 0===b?null: | ||
b;try{a()}finally{J.suspense=c}};c.useCallback=function(a,b){return l().useCallback(a,b)};c.useContext=function(a,b){return l().useContext(a,b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return l().useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return l().useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return l().useLayoutEffect(a,b)};c.useMemo=function(a,b){return l().useMemo(a,b)};c.useReducer=function(a,b,c){return l().useReducer(a,b,c)};c.useRef=function(a){return l().useRef(a)}; | ||
c.useState=function(a){return l().useState(a)};c.version="17.0.0-alpha.0-experimental-94c0244ba"}); | ||
(function(){'use strict';(function(c,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(c=c||self,w(c.React={}))})(this,function(c){function w(a){if(null===a||"object"!==typeof a)return null;a=U&&a[U]||a["@@iterator"];return"function"===typeof a?a:null}function A(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,k=1;k<arguments.length;k++)b+="&args[]="+encodeURIComponent(arguments[k]);return"Minified React error #"+ | ||
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,b,k){this.props=a;this.context=b;this.refs=V;this.updater=k||W}function X(){}function J(a,b,k){this.props=a;this.context=b;this.refs=V;this.updater=k||W}function Y(a,b,k){var m,c={},Z=null,x=null;if(null!=b)for(m in void 0!==b.ref&&(x=b.ref),void 0!==b.key&&(Z=""+b.key),b)aa.call(b,m)&&!ba.hasOwnProperty(m)&&(c[m]=b[m]);var d=arguments.length-2;if(1===d)c.children= | ||
k;else if(1<d){for(var f=Array(d),e=0;e<d;e++)f[e]=arguments[e+2];c.children=f}if(a&&a.defaultProps)for(m in d=a.defaultProps,d)void 0===c[m]&&(c[m]=d[m]);return{$$typeof:v,type:a,key:Z,ref:x,props:c,_owner:K.current}}function qa(a,b){return{$$typeof:v,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ra(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function M(a,b){return"object"=== | ||
typeof a&&null!==a&&null!=a.key?ra(""+a.key):b.toString(36)}function B(a,b,k,c,h){var m=typeof a;if("undefined"===m||"boolean"===m)a=null;var d=!1;if(null===a)d=!0;else switch(m){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ca:d=!0}}if(d)return d=a,h=h(d),a=""===c?"."+M(d,0):c,Array.isArray(h)?(k="",null!=a&&(k=a.replace(da,"$&/")+"/"),B(h,b,k,"",function(a){return a})):null!=h&&(L(h)&&(h=qa(h,k+(!h.key||d&&d.key===h.key?"":(""+h.key).replace(da,"$&/")+"/")+ | ||
a)),b.push(h)),1;d=0;c=""===c?".":c+":";if(Array.isArray(a))for(var e=0;e<a.length;e++){m=a[e];var f=c+M(m,e);d+=B(m,b,k,f,h)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),e=0;!(m=a.next()).done;)m=m.value,f=c+M(m,e++),d+=B(m,b,k,f,h);else if("object"===m)throw b=""+a,Error(A(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return d}function C(a,b,k){if(null==a)return a;var c=[],d=0;B(a,c,"","",function(a){return b.call(k,a,d++)});return c}function sa(a){if(-1=== | ||
a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function N(a,b){var k=a.length;a.push(b);a:for(;;){var c=k-1>>>1,d=a[c];if(void 0!==d&&0<D(d,b))a[c]=b,a[k]=d,k=c;else break a}}function n(a){a=a[0];return void 0===a?null:a}function E(a){var b=a[0];if(void 0!==b){var c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,h=a.length;d< | ||
h;){var e=2*(d+1)-1,g=a[e],l=e+1,f=a[l];if(void 0!==g&&0>D(g,c))void 0!==f&&0>D(f,g)?(a[d]=f,a[l]=c,d=l):(a[d]=g,a[e]=c,d=e);else if(void 0!==f&&0>D(f,c))a[d]=f,a[l]=c,d=l;else break a}}return b}return null}function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function O(a){for(var b=n(q);null!==b;){if(null===b.callback)E(q);else if(b.startTime<=a)E(q),b.sortIndex=b.expirationTime,N(p,b);else break;b=n(q)}}function P(a){y=!1;O(a);if(!r)if(null!==n(p))r=!0,Q(R);else{var b=n(q);null!== | ||
b&&S(P,b.startTime-a)}}function R(a,b){r=!1;y&&(y=!1,ea(z),z=-1);F=!0;var c=e;try{O(b);for(l=n(p);null!==l&&(!(l.expirationTime>b)||a&&!fa());){var d=l.callback;if("function"===typeof d){l.callback=null;e=l.priorityLevel;var h=d(l.expirationTime<=b);b=t();"function"===typeof h?l.callback=h:l===n(p)&&E(p);O(b)}else E(p);l=n(p)}if(null!==l)var g=!0;else{var x=n(q);null!==x&&S(P,x.startTime-b);g=!1}return g}finally{l=null,e=c,F=!1}}function fa(){return t()>=ha}function Q(a){G=a;H||(H=!0,ia.postMessage(null))} | ||
function S(a,b){z=ta(function(){a(t())},b)}var v=60103,ca=60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ja=60109,ka=60110,la=60112;c.Suspense=60113;c.unstable_SuspenseList=60120;var ma=60115,na=60116;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;c.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ca=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler=d("react.profiler"); | ||
ja=d("react.provider");ka=d("react.context");la=d("react.forward_ref");c.Suspense=d("react.suspense");c.unstable_SuspenseList=d("react.suspense_list");ma=d("react.memo");na=d("react.lazy");c.unstable_DebugTracingMode=d("react.debug_trace_mode");c.unstable_LegacyHidden=d("react.legacy_hidden");c.unstable_Cache=d("react.cache")}var U="function"===typeof Symbol&&Symbol.iterator,ua=Object.prototype.hasOwnProperty,T=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined"); | ||
for(var c=Object(a),d=1;d<arguments.length;d++){var h=arguments[d];if(null!=h){var e=void 0;h=Object(h);for(e in h)ua.call(h,e)&&(c[e]=h[e])}}return c},W={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},V={};u.prototype.isReactComponent={};u.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(A(85));this.updater.enqueueSetState(this,a,b,"setState")};u.prototype.forceUpdate= | ||
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};X.prototype=u.prototype;d=J.prototype=new X;d.constructor=J;T(d,u.prototype);d.isPureReactComponent=!0;var K={current:null},aa=Object.prototype.hasOwnProperty,ba={key:!0,ref:!0,__self:!0,__source:!0},da=/\/+/g,g={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var va=performance;var t=function(){return va.now()}}else{var oa=Date,wa=oa.now();t=function(){return oa.now()-wa}}var p= | ||
[],q=[],xa=1,l=null,e=3,F=!1,r=!1,y=!1,ta=window.setTimeout,ea=window.clearTimeout;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")); | ||
var H=!1,G=null,z=-1,pa=5,ha=0;d=new MessageChannel;var ia=d.port2;d.port1.onmessage=function(){if(null!==G){var a=t();ha=a+pa;var b=!0;try{b=G(!0,a)}finally{b?ia.postMessage(null):(H=!1,G=null)}}else H=!1};var ya=0;d={ReactCurrentDispatcher:g,ReactCurrentOwner:K,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:I,assign:T,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a, | ||
b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=e;e=a;try{return b()}finally{e=c}},unstable_next:function(a){switch(e){case 1:case 2:case 3:var b=3;break;default:b=e}var c=e;e=b;try{return a()}finally{e=c}},unstable_scheduleCallback:function(a,b,c){var d=t();"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:xa++,callback:b,priorityLevel:a, | ||
startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,N(q,a),null===n(p)&&a===n(q)&&(y?(ea(z),z=-1):y=!0,S(P,c-d))):(a.sortIndex=e,N(p,a),r||F||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=e;return function(){var c=e;e=b;try{return a.apply(this,arguments)}finally{e=c}}},unstable_getCurrentPriorityLevel:function(){return e},unstable_shouldYield:fa,unstable_requestPaint:function(){},unstable_continueExecution:function(){r|| | ||
F||(r=!0,Q(R))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return n(p)},get unstable_now(){return 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"):pa=0<a?Math.floor(1E3/a):5},unstable_Profiling:null},SchedulerTracing:{__proto__:null,__interactionsRef:null,__subscriberRef:null,unstable_clear:function(a){return a()},unstable_getCurrent:function(){return null}, | ||
unstable_getThreadID:function(){return++ya},unstable_trace:function(a,b,c){return c()},unstable_wrap:function(a){return a},unstable_subscribe:function(a){},unstable_unsubscribe:function(a){}}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(A(143));return a}};c.Component=u;c.PureComponent=J;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED= | ||
d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));var d=T({},a.props),e=a.key,k=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,g=K.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(f in b)aa.call(b,f)&&!ba.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==l?l[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=c;else if(1<f){l=Array(f);for(var n=0;n<f;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:v,type:a.type, | ||
key:e,ref:k,props:d,_owner:g}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:ka,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ja,_context:a};return a.Consumer=a};c.createElement=Y;c.createFactory=function(a){var b=Y.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:la,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:na,_payload:{_status:-1, | ||
_result:a},_init:sa}};c.memo=function(a,b){return{$$typeof:ma,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};c.unstable_startTransition=function(a){var b=I.transition;I.transition=1;try{a()}finally{I.transition=b}};c.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()}; | ||
c.unstable_useDeferredValue=function(a){return g.current.useDeferredValue(a)};c.unstable_useMutableSource=function(a,b,c){return g.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return g.current.useOpaqueIdentifier()};c.unstable_useTransition=function(){return g.current.useTransition()};c.useCallback=function(a,b){return g.current.useCallback(a,b)};c.useContext=function(a,b){return g.current.useContext(a,b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return g.current.useEffect(a, | ||
b)};c.useImperativeHandle=function(a,b,c){return g.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return g.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return g.current.useMemo(a,b)};c.useReducer=function(a,b,c){return g.current.useReducer(a,b,c)};c.useRef=function(a){return g.current.useRef(a)};c.useState=function(a){return g.current.useState(a)};c.version="17.0.2-experimental-a703c3f7e"}); | ||
})(); |
@@ -1,2 +0,2 @@ | ||
/** @license React v0.0.0-experimental-94c0244ba | ||
/** @license React vundefined | ||
* react.profiling.min.js | ||
@@ -9,33 +9,32 @@ * | ||
*/ | ||
'use strict';(function(c,H){"object"===typeof exports&&"undefined"!==typeof module?H(exports):"function"===typeof define&&define.amd?define(["exports"],H):(c=c||self,H(c.React={}))})(this,function(c){function H(a){if(null===a||"object"!==typeof a)return null;a=qa&&a[qa]||a["@@iterator"];return"function"===typeof a?a:null}function I(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,d=1;d<arguments.length;d++)b+="&args[]="+encodeURIComponent(arguments[d]);return"Minified React error #"+ | ||
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function E(a,b,d){this.props=a;this.context=b;this.refs=ra;this.updater=d||sa}function ta(){}function Z(a,b,d){this.props=a;this.context=b;this.refs=ra;this.updater=d||sa}function ua(a,b,d){var f,e={},y=null,c=null;if(null!=b)for(f in void 0!==b.ref&&(c=b.ref),void 0!==b.key&&(y=""+b.key),b)va.call(b,f)&&!wa.hasOwnProperty(f)&&(e[f]=b[f]);var h=arguments.length-2;if(1=== | ||
h)e.children=d;else if(1<h){for(var k=Array(h),g=0;g<h;g++)k[g]=arguments[g+2];e.children=k}if(a&&a.defaultProps)for(f in h=a.defaultProps,h)void 0===e[f]&&(e[f]=h[f]);return{$$typeof:F,type:a,key:y,ref:c,props:e,_owner:aa.current}}function La(a,b){return{$$typeof:F,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function ba(a){return"object"===typeof a&&null!==a&&a.$$typeof===F}function Ma(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function ca(a, | ||
b){return"object"===typeof a&&null!==a&&null!=a.key?Ma(""+a.key):b.toString(36)}function O(a,b,d,f,e){var c=typeof a;if("undefined"===c||"boolean"===c)a=null;var l=!1;if(null===a)l=!0;else switch(c){case "string":case "number":l=!0;break;case "object":switch(a.$$typeof){case F:case xa:l=!0}}if(l)return l=a,e=e(l),a=""===f?"."+ca(l,0):f,Array.isArray(e)?(d="",null!=a&&(d=a.replace(ya,"$&/")+"/"),O(e,b,d,"",function(a){return a})):null!=e&&(ba(e)&&(e=La(e,d+(!e.key||l&&l.key===e.key?"":(""+e.key).replace(ya, | ||
"$&/")+"/")+a)),b.push(e)),1;l=0;f=""===f?".":f+":";if(Array.isArray(a))for(var h=0;h<a.length;h++){c=a[h];var k=f+ca(c,h);l+=O(c,b,d,k,e)}else if(k=H(a),"function"===typeof k)for(a=k.call(a),h=0;!(c=a.next()).done;)c=c.value,k=f+ca(c,h++),l+=O(c,b,d,k,e);else if("object"===c)throw b=""+a,Error(I(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return l}function P(a,b,d){if(null==a)return a;var f=[],e=0;O(a,f,"","",function(a){return b.call(d,a,e++)});return f}function Na(a){if(-1=== | ||
a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function Oa(a){return{$$typeof:da,_data:a.load.apply(null,a.args),_render:a.render}}function q(){var a=za.current;if(null===a)throw Error(I(321));return a}function ea(a,b){var d=a.length;a.push(b);a:for(;;){var f=d-1>>>1,e=a[f];if(void 0!==e&&0<Q(e,b))a[f]=b,a[d]=e, | ||
d=f;else break a}}function u(a){a=a[0];return void 0===a?null:a}function R(a){var b=a[0];if(void 0!==b){var d=a.pop();if(d!==b){a[0]=d;a:for(var f=0,e=a.length;f<e;){var c=2*(f+1)-1,l=a[c],h=c+1,k=a[h];if(void 0!==l&&0>Q(l,d))void 0!==k&&0>Q(k,l)?(a[f]=k,a[h]=d,f=h):(a[f]=l,a[c]=d,f=c);else if(void 0!==k&&0>Q(k,d))a[f]=k,a[h]=d,f=h;else break a}}return b}return null}function Q(a,b){var d=a.sortIndex-b.sortIndex;return 0!==d?d:a.id-b.id}function z(a){if(null!==r){var b=J;J+=a.length;if(J+1>C){C*=2; | ||
if(524288<C){console.error("Scheduler Profiling: Event log exceeded maximum size. Don't forget to call `stopLoggingProfilingEvents()`.");Aa();return}var d=new Int32Array(4*C);d.set(r);K=d.buffer;r=d}r.set(a,b)}}function Aa(){var a=K;C=0;r=K=null;J=0;return a}function Ba(a,b){n[3]++;null!==r&&z([1,1E3*b,a.id,a.priorityLevel])}function S(a){for(var b=u(A);null!==b;){if(null===b.callback)R(A);else if(b.startTime<=a)R(A),b.sortIndex=b.expirationTime,ea(w,b),Ba(b,a),b.isQueued=!0;else break;b=u(A)}}function fa(a){L= | ||
!1;S(a);if(!D)if(null!==u(w))D=!0,M(ha);else{var b=u(A);null!==b&&T(fa,b.startTime-a)}}function ha(a,b){null!==r&&z([8,1E3*b,ia]);D=!1;L&&(L=!1,ja());U=!0;var d=p;try{try{S(b);for(m=u(w);null!==m&&(!(m.expirationTime>b)||a&&!ka());){var f=m.callback;if("function"===typeof f){m.callback=null;p=m.priorityLevel;var e=m.expirationTime<=b,c=m,l=b;V++;n[0]=c.priorityLevel;n[1]=c.id;n[2]=V;null!==r&&z([5,1E3*l,c.id,V]);var h=f(e);b=v();"function"===typeof h?(m.callback=h,c=m,l=b,n[0]=0,n[1]=0,n[2]=0,null!== | ||
r&&z([6,1E3*l,c.id,V])):(c=m,l=b,n[0]=0,n[1]=0,n[3]--,null!==r&&z([2,1E3*l,c.id]),m.isQueued=!1,m===u(w)&&R(w));S(b)}else R(w);m=u(w)}if(null!==m)var k=!0;else{var g=u(A);null!==g&&T(fa,g.startTime-b);k=!1}return k}catch(Pa){if(null!==m){var q=v();a=m;n[0]=0;n[1]=0;n[3]--;null!==r&&z([3,1E3*q,a.id]);m.isQueued=!1}throw Pa;}}finally{m=null,p=d,U=!1,d=v(),ia++,null!==r&&z([7,1E3*d,ia])}}function Qa(a){var b=!1,d=null;x.forEach(function(f){try{f.onInteractionTraced(a)}catch(e){b||(b=!0,d=e)}});if(b)throw d; | ||
}function Ra(a){var b=!1,d=null;x.forEach(function(f){try{f.onInteractionScheduledWorkCompleted(a)}catch(e){b||(b=!0,d=e)}});if(b)throw d;}function Sa(a,b){var d=!1,f=null;x.forEach(function(e){try{e.onWorkScheduled(a,b)}catch(y){d||(d=!0,f=y)}});if(d)throw f;}function Ta(a,b){var d=!1,f=null;x.forEach(function(e){try{e.onWorkStarted(a,b)}catch(y){d||(d=!0,f=y)}});if(d)throw f;}function Ua(a,b){var d=!1,f=null;x.forEach(function(e){try{e.onWorkStopped(a,b)}catch(y){d||(d=!0,f=y)}});if(d)throw f;} | ||
function Va(a,b){var d=!1,f=null;x.forEach(function(e){try{e.onWorkCanceled(a,b)}catch(y){d||(d=!0,f=y)}});if(d)throw f;}var F=60103,xa=60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var Ca=60109,Da=60110,Ea=60112;c.Suspense=60113;c.unstable_SuspenseList=60120;var Fa=60115,la=60116,da=60121;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;if("function"===typeof Symbol&&Symbol.for){var g=Symbol.for;F=g("react.element");xa=g("react.portal");c.Fragment=g("react.fragment"); | ||
c.StrictMode=g("react.strict_mode");c.Profiler=g("react.profiler");Ca=g("react.provider");Da=g("react.context");Ea=g("react.forward_ref");c.Suspense=g("react.suspense");c.unstable_SuspenseList=g("react.suspense_list");Fa=g("react.memo");la=g("react.lazy");da=g("react.block");c.unstable_DebugTracingMode=g("react.debug_trace_mode");c.unstable_LegacyHidden=g("react.legacy_hidden")}var qa="function"===typeof Symbol&&Symbol.iterator,Wa=Object.prototype.hasOwnProperty,ma=Object.assign||function(a,b){if(null== | ||
a)throw new TypeError("Object.assign target cannot be null or undefined");for(var d=Object(a),f=1;f<arguments.length;f++){var e=arguments[f];if(null!=e){var c=void 0;e=Object(e);for(c in e)Wa.call(e,c)&&(d[c]=e[c])}}return d},sa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,d){},enqueueReplaceState:function(a,b,d,c){},enqueueSetState:function(a,b,d,c){}},ra={};E.prototype.isReactComponent={};E.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!= | ||
a)throw Error(I(85));this.updater.enqueueSetState(this,a,b,"setState")};E.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ta.prototype=E.prototype;g=Z.prototype=new ta;g.constructor=Z;ma(g,E.prototype);g.isPureReactComponent=!0;var aa={current:null},va=Object.prototype.hasOwnProperty,wa={key:!0,ref:!0,__self:!0,__source:!0},ya=/\/+/g,za={current:null},W={suspense:null},na;if("object"===typeof performance&&"function"===typeof performance.now){var Xa=performance; | ||
var v=function(){return Xa.now()}}else{var Ga=Date,Ya=Ga.now();v=function(){return Ga.now()-Ya}}if("undefined"===typeof window||"function"!==typeof MessageChannel){var N=null,Ha=null,Ia=function(){if(null!==N)try{var a=v();N(!0,a);N=null}catch(b){throw setTimeout(Ia,0),b;}};var M=function(a){null!==N?setTimeout(M,0,a):(N=a,setTimeout(Ia,0))};var T=function(a,b){Ha=setTimeout(a,b)};var ja=function(){clearTimeout(Ha)};var ka=function(){return!1};g=na=function(){}}else{var Za=window.setTimeout,$a=window.clearTimeout; | ||
"undefined"!==typeof console&&(g=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!==typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"));var X=!1,Y=null,oa=-1,Ja=5,Ka=0;ka=function(){return v()>=Ka}; | ||
g=function(){};na=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"):Ja=0<a?Math.floor(1E3/a):5};var G=new MessageChannel,pa=G.port2;G.port1.onmessage=function(){if(null!==Y){var a=v();Ka=a+Ja;try{Y(!0,a)?pa.postMessage(null):(X=!1,Y=null)}catch(b){throw pa.postMessage(null),b;}}else X=!1};M=function(a){Y=a;X||(X=!0,pa.postMessage(null))};T=function(a,b){oa=Za(function(){a(v())},b)};ja=function(){$a(oa); | ||
oa=-1}}var V=0,ia=0;G="function"===typeof SharedArrayBuffer?new SharedArrayBuffer(4*Int32Array.BYTES_PER_ELEMENT):"function"===typeof ArrayBuffer?new ArrayBuffer(4*Int32Array.BYTES_PER_ELEMENT):null;var n=null!==G?new Int32Array(G):[];n[0]=0;n[3]=0;var C=n[1]=0,K=null,r=null,J=0,w=[],A=[],ab=1,m=null,p=3,U=!1,D=!1,L=!1;g={__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a, | ||
b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var d=p;p=a;try{return b()}finally{p=d}},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var d=p;p=b;try{return a()}finally{p=d}},unstable_scheduleCallback:function(a,b,d){var c=v();"object"===typeof d&&null!==d?(d=d.delay,d="number"===typeof d&&0<d?c+d:c):d=c;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=d+e;a={id:ab++,callback:b,priorityLevel:a, | ||
startTime:d,expirationTime:e,sortIndex:-1,isQueued:!1};d>c?(a.sortIndex=d,ea(A,a),null===u(w)&&a===u(A)&&(L?ja():L=!0,T(fa,d-c))):(a.sortIndex=e,ea(w,a),Ba(a,c),a.isQueued=!0,D||U||(D=!0,M(ha)));return a},unstable_cancelCallback:function(a){if(a.isQueued){var b=v();n[3]--;null!==r&&z([4,1E3*b,a.id]);a.isQueued=!1}a.callback=null},unstable_wrapCallback:function(a){var b=p;return function(){var d=p;p=b;try{return a.apply(this,arguments)}finally{p=d}}},unstable_getCurrentPriorityLevel:function(){return p}, | ||
unstable_shouldYield:function(){var a=v();S(a);var b=u(w);return b!==m&&null!==m&&null!==b&&null!==b.callback&&b.startTime<=a&&b.expirationTime<m.expirationTime||ka()},unstable_requestPaint:g,unstable_continueExecution:function(){D||U||(D=!0,M(ha))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return u(w)},get unstable_now(){return v},get unstable_forceFrameRate(){return na},unstable_Profiling:{startLoggingProfilingEvents:function(){C=131072;K=new ArrayBuffer(4*C); | ||
r=new Int32Array(K);J=0},stopLoggingProfilingEvents:Aa,sharedProfilingBuffer:G}};var bb=0,cb=0,t=null,B=null;t={current:new Set};B={current:null};var x=null;x=new Set;g={ReactCurrentDispatcher:za,ReactCurrentOwner:aa,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:W,assign:ma,Scheduler:g,SchedulerTracing:{__proto__:null,get __interactionsRef(){return t},get __subscriberRef(){return B},unstable_clear:function(a){var b=t.current;t.current=new Set;try{return a()}finally{t.current=b}},unstable_getCurrent:function(){return t.current}, | ||
unstable_getThreadID:function(){return++cb},unstable_trace:function(a,b,d){var c=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0,e={__count:1,id:bb++,name:a,timestamp:b},g=t.current,l=new Set(g);l.add(e);t.current=l;var h=B.current;try{if(null!==h)h.onInteractionTraced(e)}finally{try{if(null!==h)h.onWorkStarted(l,c)}finally{try{var k=d()}finally{t.current=g;try{if(null!==h)h.onWorkStopped(l,c)}finally{if(e.__count--,null!==h&&0===e.__count)h.onInteractionScheduledWorkCompleted(e)}}}}return k}, | ||
unstable_wrap:function(a){function b(){var b=t.current;t.current=c;e=B.current;try{try{if(null!==e)e.onWorkStarted(c,d)}finally{try{var f=a.apply(void 0,arguments)}finally{if(t.current=b,null!==e)e.onWorkStopped(c,d)}}return f}finally{g||(g=!0,c.forEach(function(a){a.__count--;if(null!==e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)}))}}var d=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,c=t.current,e=B.current;if(null!==e)e.onWorkScheduled(c,d);c.forEach(function(a){a.__count++}); | ||
var g=!1;b.cancel=function(){e=B.current;try{if(null!==e)e.onWorkCanceled(c,d)}finally{c.forEach(function(a){a.__count--;if(e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)})}};return b},unstable_subscribe:function(a){x.add(a);1===x.size&&(B.current={onInteractionScheduledWorkCompleted:Ra,onInteractionTraced:Qa,onWorkCanceled:Va,onWorkScheduled:Sa,onWorkStarted:Ta,onWorkStopped:Ua})},unstable_unsubscribe:function(a){x.delete(a);0===x.size&&(B.current=null)}}};c.Children={map:P,forEach:function(a, | ||
b,d){P(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;P(a,function(){b++});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!ba(a))throw Error(I(143));return a}};c.Component=E;c.PureComponent=Z;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=g;c.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error(I(267,a));var c=ma({},a.props),e=a.key,g=a.ref,l=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,l=aa.current);void 0!==b.key&& | ||
(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)va.call(b,k)&&!wa.hasOwnProperty(k)&&(c[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)c.children=d;else if(1<k){h=Array(k);for(var m=0;m<k;m++)h[m]=arguments[m+2];c.children=h}return{$$typeof:F,type:a.type,key:e,ref:g,props:c,_owner:l}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:Da,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null}; | ||
a.Provider={$$typeof:Ca,_context:a};return a.Consumer=a};c.createElement=ua;c.createFactory=function(a){var b=ua.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:Ea,render:a}};c.isValidElement=ba;c.lazy=function(a){return{$$typeof:la,_payload:{_status:-1,_result:a},_init:Na}};c.memo=function(a,b){return{$$typeof:Fa,type:a,compare:void 0===b?null:b}};c.unstable_block=function(a,b){return void 0===b?function(){return{$$typeof:da,_data:void 0, | ||
_render:a}}:function(){return{$$typeof:la,_payload:{load:b,args:arguments,render:a},_init:Oa}}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_useDeferredValue=function(a,b){return q().useDeferredValue(a,b)};c.unstable_useMutableSource=function(a,b,c){return q().useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return q().useOpaqueIdentifier()};c.unstable_useTransition= | ||
function(a){return q().useTransition(a)};c.unstable_withSuspenseConfig=function(a,b){var c=W.suspense;W.suspense=void 0===b?null:b;try{a()}finally{W.suspense=c}};c.useCallback=function(a,b){return q().useCallback(a,b)};c.useContext=function(a,b){return q().useContext(a,b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return q().useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return q().useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return q().useLayoutEffect(a,b)}; | ||
c.useMemo=function(a,b){return q().useMemo(a,b)};c.useReducer=function(a,b,c){return q().useReducer(a,b,c)};c.useRef=function(a){return q().useRef(a)};c.useState=function(a){return q().useState(a)};c.version="17.0.0-alpha.0-experimental-94c0244ba"}); | ||
(function(){'use strict';(function(c,G){"object"===typeof exports&&"undefined"!==typeof module?G(exports):"function"===typeof define&&define.amd?define(["exports"],G):(c=c||self,G(c.React={}))})(this,function(c){function G(a){if(null===a||"object"!==typeof a)return null;a=ja&&a[ja]||a["@@iterator"];return"function"===typeof a?a:null}function L(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,d=1;d<arguments.length;d++)b+="&args[]="+encodeURIComponent(arguments[d]);return"Minified React error #"+ | ||
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function E(a,b,d){this.props=a;this.context=b;this.refs=ka;this.updater=d||la}function ma(){}function W(a,b,d){this.props=a;this.context=b;this.refs=ka;this.updater=d||la}function na(a,b,d){var f,e={},c=null,k=null;if(null!=b)for(f in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(c=""+b.key),b)oa.call(b,f)&&!pa.hasOwnProperty(f)&&(e[f]=b[f]);var h=arguments.length-2;if(1=== | ||
h)e.children=d;else if(1<h){for(var l=Array(h),g=0;g<h;g++)l[g]=arguments[g+2];e.children=l}if(a&&a.defaultProps)for(f in h=a.defaultProps,h)void 0===e[f]&&(e[f]=h[f]);return{$$typeof:F,type:a,key:c,ref:k,props:e,_owner:X.current}}function Fa(a,b){return{$$typeof:F,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function Y(a){return"object"===typeof a&&null!==a&&a.$$typeof===F}function Ga(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function Z(a,b){return"object"=== | ||
typeof a&&null!==a&&null!=a.key?Ga(""+a.key):b.toString(36)}function M(a,b,d,f,e){var c=typeof a;if("undefined"===c||"boolean"===c)a=null;var k=!1;if(null===a)k=!0;else switch(c){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case F:case qa:k=!0}}if(k)return k=a,e=e(k),a=""===f?"."+Z(k,0):f,Array.isArray(e)?(d="",null!=a&&(d=a.replace(ra,"$&/")+"/"),M(e,b,d,"",function(a){return a})):null!=e&&(Y(e)&&(e=Fa(e,d+(!e.key||k&&k.key===e.key?"":(""+e.key).replace(ra,"$&/")+"/")+ | ||
a)),b.push(e)),1;k=0;f=""===f?".":f+":";if(Array.isArray(a))for(var h=0;h<a.length;h++){c=a[h];var l=f+Z(c,h);k+=M(c,b,d,l,e)}else if(l=G(a),"function"===typeof l)for(a=l.call(a),h=0;!(c=a.next()).done;)c=c.value,l=f+Z(c,h++),k+=M(c,b,d,l,e);else if("object"===c)throw b=""+a,Error(L(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return k}function N(a,b,d){if(null==a)return a;var f=[],e=0;M(a,f,"","",function(a){return b.call(d,a,e++)});return f}function Ha(a){if(-1=== | ||
a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function aa(a,b){var d=a.length;a.push(b);a:for(;;){var f=d-1>>>1,e=a[f];if(void 0!==e&&0<O(e,b))a[f]=b,a[d]=e,d=f;else break a}}function u(a){a=a[0];return void 0===a?null:a}function P(a){var b=a[0];if(void 0!==b){var d=a.pop();if(d!==b){a[0]=d;a:for(var f=0,e=a.length;f< | ||
e;){var c=2*(f+1)-1,k=a[c],h=c+1,l=a[h];if(void 0!==k&&0>O(k,d))void 0!==l&&0>O(l,k)?(a[f]=l,a[h]=d,f=h):(a[f]=k,a[c]=d,f=c);else if(void 0!==l&&0>O(l,d))a[f]=l,a[h]=d,f=h;else break a}}return b}return null}function O(a,b){var d=a.sortIndex-b.sortIndex;return 0!==d?d:a.id-b.id}function y(a){if(null!==r){var b=H;H+=a.length;if(H+1>C){C*=2;if(524288<C){console.error("Scheduler Profiling: Event log exceeded maximum size. Don't forget to call `stopLoggingProfilingEvents()`.");sa();return}var d=new Int32Array(4* | ||
C);d.set(r);I=d.buffer;r=d}r.set(a,b)}}function sa(){var a=I;C=0;r=I=null;H=0;return a}function ta(a,b){p[3]++;null!==r&&y([1,1E3*b,a.id,a.priorityLevel])}function ba(a){for(var b=u(z);null!==b;){if(null===b.callback)P(z);else if(b.startTime<=a)P(z),b.sortIndex=b.expirationTime,aa(w,b),ta(b,a),b.isQueued=!0;else break;b=u(z)}}function ca(a){J=!1;ba(a);if(!D)if(null!==u(w))D=!0,da(ea);else{var b=u(z);null!==b&&fa(ca,b.startTime-a)}}function ea(a,b){null!==r&&y([8,1E3*b,ha]);D=!1;J&&(J=!1,ua(K),K=-1); | ||
Q=!0;var d=q;try{try{ba(b);for(m=u(w);null!==m&&(!(m.expirationTime>b)||a&&!va());){var f=m.callback;if("function"===typeof f){m.callback=null;q=m.priorityLevel;var e=m.expirationTime<=b,c=m,k=b;R++;p[0]=c.priorityLevel;p[1]=c.id;p[2]=R;null!==r&&y([5,1E3*k,c.id,R]);var h=f(e);b=x();"function"===typeof h?(m.callback=h,c=m,k=b,p[0]=0,p[1]=0,p[2]=0,null!==r&&y([6,1E3*k,c.id,R])):(c=m,k=b,p[0]=0,p[1]=0,p[3]--,null!==r&&y([2,1E3*k,c.id]),m.isQueued=!1,m===u(w)&&P(w));ba(b)}else P(w);m=u(w)}if(null!== | ||
m)var l=!0;else{var g=u(z);null!==g&&fa(ca,g.startTime-b);l=!1}return l}catch(Ia){if(null!==m){var n=x();a=m;p[0]=0;p[1]=0;p[3]--;null!==r&&y([3,1E3*n,a.id]);m.isQueued=!1}throw Ia;}}finally{m=null,q=d,Q=!1,d=x(),ha++,null!==r&&y([7,1E3*d,ha])}}function va(){return x()>=wa}function da(a){S=a;T||(T=!0,xa.postMessage(null))}function fa(a,b){K=Ja(function(){a(x())},b)}function Ka(a){var b=!1,d=null;v.forEach(function(f){try{f.onInteractionTraced(a)}catch(e){b||(b=!0,d=e)}});if(b)throw d;}function La(a){var b= | ||
!1,d=null;v.forEach(function(f){try{f.onInteractionScheduledWorkCompleted(a)}catch(e){b||(b=!0,d=e)}});if(b)throw d;}function Ma(a,b){var d=!1,f=null;v.forEach(function(e){try{e.onWorkScheduled(a,b)}catch(B){d||(d=!0,f=B)}});if(d)throw f;}function Na(a,b){var d=!1,f=null;v.forEach(function(e){try{e.onWorkStarted(a,b)}catch(B){d||(d=!0,f=B)}});if(d)throw f;}function Oa(a,b){var d=!1,f=null;v.forEach(function(e){try{e.onWorkStopped(a,b)}catch(B){d||(d=!0,f=B)}});if(d)throw f;}function Pa(a,b){var d= | ||
!1,f=null;v.forEach(function(e){try{e.onWorkCanceled(a,b)}catch(B){d||(d=!0,f=B)}});if(d)throw f;}var F=60103,qa=60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ya=60109,za=60110,Aa=60112;c.Suspense=60113;c.unstable_SuspenseList=60120;var Ba=60115,Ca=60116;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;c.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var g=Symbol.for;F=g("react.element");qa=g("react.portal");c.Fragment=g("react.fragment");c.StrictMode= | ||
g("react.strict_mode");c.Profiler=g("react.profiler");ya=g("react.provider");za=g("react.context");Aa=g("react.forward_ref");c.Suspense=g("react.suspense");c.unstable_SuspenseList=g("react.suspense_list");Ba=g("react.memo");Ca=g("react.lazy");c.unstable_DebugTracingMode=g("react.debug_trace_mode");c.unstable_LegacyHidden=g("react.legacy_hidden");c.unstable_Cache=g("react.cache")}var ja="function"===typeof Symbol&&Symbol.iterator,Qa=Object.prototype.hasOwnProperty,ia=Object.assign||function(a,b){if(null== | ||
a)throw new TypeError("Object.assign target cannot be null or undefined");for(var d=Object(a),f=1;f<arguments.length;f++){var e=arguments[f];if(null!=e){var c=void 0;e=Object(e);for(c in e)Qa.call(e,c)&&(d[c]=e[c])}}return d},la={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,d){},enqueueReplaceState:function(a,b,d,c){},enqueueSetState:function(a,b,d,c){}},ka={};E.prototype.isReactComponent={};E.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!= | ||
a)throw Error(L(85));this.updater.enqueueSetState(this,a,b,"setState")};E.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ma.prototype=E.prototype;g=W.prototype=new ma;g.constructor=W;ia(g,E.prototype);g.isPureReactComponent=!0;var X={current:null},oa=Object.prototype.hasOwnProperty,pa={key:!0,ref:!0,__self:!0,__source:!0},ra=/\/+/g,n={current:null},U={transition:0},R=0,ha=0;g="function"===typeof SharedArrayBuffer?new SharedArrayBuffer(4*Int32Array.BYTES_PER_ELEMENT): | ||
"function"===typeof ArrayBuffer?new ArrayBuffer(4*Int32Array.BYTES_PER_ELEMENT):null;var p=null!==g?new Int32Array(g):[];p[0]=0;p[3]=0;var C=p[1]=0,I=null,r=null,H=0;if("object"===typeof performance&&"function"===typeof performance.now){var Ra=performance;var x=function(){return Ra.now()}}else{var Da=Date,Sa=Da.now();x=function(){return Da.now()-Sa}}var w=[],z=[],Ta=1,m=null,q=3,Q=!1,D=!1,J=!1,Ja=window.setTimeout,ua=window.clearTimeout;if("undefined"!==typeof console){var V=window.cancelAnimationFrame; | ||
"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills");"function"!==typeof V&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var T=!1,S=null,K=-1,Ea=5,wa=0;V=new MessageChannel;var xa=V.port2;V.port1.onmessage=function(){if(null!== | ||
S){var a=x();wa=a+Ea;var b=!0;try{b=S(!0,a)}finally{b?xa.postMessage(null):(T=!1,S=null)}}else T=!1};g={__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var d=q;q=a;try{return b()}finally{q=d}},unstable_next:function(a){switch(q){case 1:case 2:case 3:var b=3;break;default:b=q}var d=q;q=b;try{return a()}finally{q= | ||
d}},unstable_scheduleCallback:function(a,b,d){var c=x();"object"===typeof d&&null!==d?(d=d.delay,d="number"===typeof d&&0<d?c+d:c):d=c;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=d+e;a={id:Ta++,callback:b,priorityLevel:a,startTime:d,expirationTime:e,sortIndex:-1,isQueued:!1};d>c?(a.sortIndex=d,aa(z,a),null===u(w)&&a===u(z)&&(J?(ua(K),K=-1):J=!0,fa(ca,d-c))):(a.sortIndex=e,aa(w,a),ta(a,c),a.isQueued=!0,D||Q||(D=!0,da(ea)));return a}, | ||
unstable_cancelCallback:function(a){if(a.isQueued){var b=x();p[3]--;null!==r&&y([4,1E3*b,a.id]);a.isQueued=!1}a.callback=null},unstable_wrapCallback:function(a){var b=q;return function(){var d=q;q=b;try{return a.apply(this,arguments)}finally{q=d}}},unstable_getCurrentPriorityLevel:function(){return q},unstable_shouldYield:va,unstable_requestPaint:function(){},unstable_continueExecution:function(){D||Q||(D=!0,da(ea))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return u(w)}, | ||
get unstable_now(){return x},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"):Ea=0<a?Math.floor(1E3/a):5},unstable_Profiling:{startLoggingProfilingEvents:function(){C=131072;I=new ArrayBuffer(4*C);r=new Int32Array(I);H=0},stopLoggingProfilingEvents:sa,sharedProfilingBuffer:g}};var Ua=0,Va=0,t=null,A=null;t={current:new Set};A={current:null};var v=null;v=new Set;g={ReactCurrentDispatcher:n, | ||
ReactCurrentOwner:X,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:U,assign:ia,Scheduler:g,SchedulerTracing:{__proto__:null,get __interactionsRef(){return t},get __subscriberRef(){return A},unstable_clear:function(a){var b=t.current;t.current=new Set;try{return a()}finally{t.current=b}},unstable_getCurrent:function(){return t.current},unstable_getThreadID:function(){return++Va},unstable_trace:function(a,b,d){var c=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0,e={__count:1,id:Ua++, | ||
name:a,timestamp:b},g=t.current,k=new Set(g);k.add(e);t.current=k;var h=A.current;try{if(null!==h)h.onInteractionTraced(e)}finally{try{if(null!==h)h.onWorkStarted(k,c)}finally{try{var l=d()}finally{t.current=g;try{if(null!==h)h.onWorkStopped(k,c)}finally{if(e.__count--,null!==h&&0===e.__count)h.onInteractionScheduledWorkCompleted(e)}}}}return l},unstable_wrap:function(a){function b(){var b=t.current;t.current=c;e=A.current;try{try{if(null!==e)e.onWorkStarted(c,d)}finally{try{var f=a.apply(void 0, | ||
arguments)}finally{if(t.current=b,null!==e)e.onWorkStopped(c,d)}}return f}finally{g||(g=!0,c.forEach(function(a){a.__count--;if(null!==e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)}))}}var d=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,c=t.current,e=A.current;if(null!==e)e.onWorkScheduled(c,d);c.forEach(function(a){a.__count++});var g=!1;b.cancel=function(){e=A.current;try{if(null!==e)e.onWorkCanceled(c,d)}finally{c.forEach(function(a){a.__count--;if(e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)})}}; | ||
return b},unstable_subscribe:function(a){v.add(a);1===v.size&&(A.current={onInteractionScheduledWorkCompleted:La,onInteractionTraced:Ka,onWorkCanceled:Pa,onWorkScheduled:Ma,onWorkStarted:Na,onWorkStopped:Oa})},unstable_unsubscribe:function(a){v.delete(a);0===v.size&&(A.current=null)}}};c.Children={map:N,forEach:function(a,b,c){N(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!Y(a))throw Error(L(143)); | ||
return a}};c.Component=E;c.PureComponent=W;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=g;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(L(267,a));var d=ia({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=X.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(l in b)oa.call(b,l)&&!pa.hasOwnProperty(l)&&(d[l]=void 0===b[l]&&void 0!==h?h[l]:b[l])}var l=arguments.length-2;if(1===l)d.children=c;else if(1< | ||
l){h=Array(l);for(var m=0;m<l;m++)h[m]=arguments[m+2];d.children=h}return{$$typeof:F,type:a.type,key:e,ref:g,props:d,_owner:k}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:za,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ya,_context:a};return a.Consumer=a};c.createElement=na;c.createFactory=function(a){var b=na.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:Aa, | ||
render:a}};c.isValidElement=Y;c.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:Ha}};c.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return n.current.getCacheForType(a)};c.unstable_startTransition=function(a){var b=U.transition;U.transition=1;try{a()}finally{U.transition= | ||
b}};c.unstable_useCacheRefresh=function(){return n.current.useCacheRefresh()};c.unstable_useDeferredValue=function(a){return n.current.useDeferredValue(a)};c.unstable_useMutableSource=function(a,b,c){return n.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return n.current.useOpaqueIdentifier()};c.unstable_useTransition=function(){return n.current.useTransition()};c.useCallback=function(a,b){return n.current.useCallback(a,b)};c.useContext=function(a,b){return n.current.useContext(a, | ||
b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return n.current.useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return n.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return n.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return n.current.useMemo(a,b)};c.useReducer=function(a,b,c){return n.current.useReducer(a,b,c)};c.useRef=function(a){return n.current.useRef(a)};c.useState=function(a){return n.current.useState(a)};c.version="17.0.2-experimental-a703c3f7e"}); | ||
})(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
379286
9100
20
5