Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
2
Maintainers
7
Versions
1813
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-a8cabb564-20210915 to 0.0.0-experimental-aa05e7315-20220331

cjs/react.shared-subset.development.js

203

cjs/react-jsx-dev-runtime.development.js

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.development.js

@@ -17,3 +18,2 @@ *

var React = require('react');
var _assign = require('object-assign');

@@ -23,46 +23,19 @@ // ATTENTION

// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
// nor polyfill, then a plain number is used for performance.
var REACT_ELEMENT_TYPE = 0xeac7;
var REACT_PORTAL_TYPE = 0xeaca;
exports.Fragment = 0xeacb;
var REACT_STRICT_MODE_TYPE = 0xeacc;
var REACT_PROFILER_TYPE = 0xead2;
var REACT_PROVIDER_TYPE = 0xeacd;
var REACT_CONTEXT_TYPE = 0xeace;
var REACT_FORWARD_REF_TYPE = 0xead0;
var REACT_SUSPENSE_TYPE = 0xead1;
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
var REACT_MEMO_TYPE = 0xead3;
var REACT_LAZY_TYPE = 0xead4;
var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
var REACT_OFFSCREEN_TYPE = 0xeae2;
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3;
var REACT_CACHE_TYPE = 0xeae4;
if (typeof Symbol === 'function' && Symbol.for) {
var symbolFor = Symbol.for;
REACT_ELEMENT_TYPE = symbolFor('react.element');
REACT_PORTAL_TYPE = symbolFor('react.portal');
exports.Fragment = symbolFor('react.fragment');
REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode');
REACT_PROFILER_TYPE = symbolFor('react.profiler');
REACT_PROVIDER_TYPE = symbolFor('react.provider');
REACT_CONTEXT_TYPE = symbolFor('react.context');
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
REACT_SUSPENSE_TYPE = symbolFor('react.suspense');
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
REACT_MEMO_TYPE = symbolFor('react.memo');
REACT_LAZY_TYPE = symbolFor('react.lazy');
REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');
REACT_CACHE_TYPE = symbolFor('react.cache');
}
var MAYBE_ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
// The Symbol used to tag the ReactElement-like types.
var REACT_ELEMENT_TYPE = Symbol.for('react.element');
var REACT_PORTAL_TYPE = Symbol.for('react.portal');
var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');
var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');
var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');
var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');
var REACT_MEMO_TYPE = Symbol.for('react.memo');
var REACT_LAZY_TYPE = Symbol.for('react.lazy');
var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
var REACT_CACHE_TYPE = Symbol.for('react.cache');
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
var FAUX_ITERATOR_SYMBOL = '@@iterator';

@@ -107,6 +80,7 @@ function getIteratorFn(maybeIterable) {

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -122,12 +96,14 @@

// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.
// -----------------------------------------------------------------------------
var enableScopeAPI = false; // Experimental Create Event Handle API.
var enableTransitionTracing = false; // No known bugs, but needs performance testing
var REACT_MODULE_REFERENCE = 0;
var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
if (typeof Symbol === 'function') {
REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
}
var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
var REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
function isValidElementType(type) {

@@ -139,3 +115,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 || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
return true;

@@ -195,3 +171,3 @@ }

switch (type) {
case exports.Fragment:
case REACT_FRAGMENT_TYPE:
return 'Fragment';

@@ -215,3 +191,6 @@

case REACT_CACHE_TYPE:
return 'Cache';
{
return 'Cache';
}
}

@@ -253,2 +232,10 @@

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
// eslint-disable-next-line no-fallthrough
}

@@ -260,2 +247,4 @@ }

var assign = Object.assign;
// Helpers to patch console.logs to avoid logging during side-effect free

@@ -324,21 +313,21 @@ // replaying on render function. This currently only patches the object

Object.defineProperties(console, {
log: _assign({}, props, {
log: assign({}, props, {
value: prevLog
}),
info: _assign({}, props, {
info: assign({}, props, {
value: prevInfo
}),
warn: _assign({}, props, {
warn: assign({}, props, {
value: prevWarn
}),
error: _assign({}, props, {
error: assign({}, props, {
value: prevError
}),
group: _assign({}, props, {
group: assign({}, props, {
value: prevGroup
}),
groupCollapsed: _assign({}, props, {
groupCollapsed: assign({}, props, {
value: prevGroupCollapsed
}),
groupEnd: _assign({}, props, {
groupEnd: assign({}, props, {
value: prevGroupEnd

@@ -493,4 +482,11 @@ })

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -628,2 +624,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -668,2 +665,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -857,2 +921,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -862,2 +930,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -1231,3 +1303,3 @@ }

if (type === exports.Fragment) {
if (type === REACT_FRAGMENT_TYPE) {
validateFragmentProps(element);

@@ -1244,4 +1316,5 @@ } else {

exports.Fragment = REACT_FRAGMENT_TYPE;
exports.jsxDEV = jsxDEV$1;
})();
}

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.production.min.js

@@ -9,2 +10,2 @@ *

*/
'use strict';require("object-assign");exports.Fragment=60107;if("function"===typeof Symbol&&Symbol.for){var a=Symbol.for;exports.Fragment=a("react.fragment")}exports.jsxDEV=void 0;
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0;

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.profiling.min.js

@@ -9,2 +10,2 @@ *

*/
'use strict';require("object-assign");exports.Fragment=60107;if("function"===typeof Symbol&&Symbol.for){var a=Symbol.for;exports.Fragment=a("react.fragment")}exports.jsxDEV=void 0;
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0;

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.development.js

@@ -17,3 +18,2 @@ *

var React = require('react');
var _assign = require('object-assign');

@@ -23,46 +23,19 @@ // ATTENTION

// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
// nor polyfill, then a plain number is used for performance.
var REACT_ELEMENT_TYPE = 0xeac7;
var REACT_PORTAL_TYPE = 0xeaca;
exports.Fragment = 0xeacb;
var REACT_STRICT_MODE_TYPE = 0xeacc;
var REACT_PROFILER_TYPE = 0xead2;
var REACT_PROVIDER_TYPE = 0xeacd;
var REACT_CONTEXT_TYPE = 0xeace;
var REACT_FORWARD_REF_TYPE = 0xead0;
var REACT_SUSPENSE_TYPE = 0xead1;
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
var REACT_MEMO_TYPE = 0xead3;
var REACT_LAZY_TYPE = 0xead4;
var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
var REACT_OFFSCREEN_TYPE = 0xeae2;
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3;
var REACT_CACHE_TYPE = 0xeae4;
if (typeof Symbol === 'function' && Symbol.for) {
var symbolFor = Symbol.for;
REACT_ELEMENT_TYPE = symbolFor('react.element');
REACT_PORTAL_TYPE = symbolFor('react.portal');
exports.Fragment = symbolFor('react.fragment');
REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode');
REACT_PROFILER_TYPE = symbolFor('react.profiler');
REACT_PROVIDER_TYPE = symbolFor('react.provider');
REACT_CONTEXT_TYPE = symbolFor('react.context');
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
REACT_SUSPENSE_TYPE = symbolFor('react.suspense');
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
REACT_MEMO_TYPE = symbolFor('react.memo');
REACT_LAZY_TYPE = symbolFor('react.lazy');
REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');
REACT_CACHE_TYPE = symbolFor('react.cache');
}
var MAYBE_ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
// The Symbol used to tag the ReactElement-like types.
var REACT_ELEMENT_TYPE = Symbol.for('react.element');
var REACT_PORTAL_TYPE = Symbol.for('react.portal');
var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');
var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');
var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');
var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');
var REACT_MEMO_TYPE = Symbol.for('react.memo');
var REACT_LAZY_TYPE = Symbol.for('react.lazy');
var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
var REACT_CACHE_TYPE = Symbol.for('react.cache');
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
var FAUX_ITERATOR_SYMBOL = '@@iterator';

@@ -107,6 +80,7 @@ function getIteratorFn(maybeIterable) {

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -122,12 +96,14 @@

// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.
// -----------------------------------------------------------------------------
var enableScopeAPI = false; // Experimental Create Event Handle API.
var enableTransitionTracing = false; // No known bugs, but needs performance testing
var REACT_MODULE_REFERENCE = 0;
var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
if (typeof Symbol === 'function') {
REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
}
var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
var REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
function isValidElementType(type) {

@@ -139,3 +115,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 || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
return true;

@@ -195,3 +171,3 @@ }

switch (type) {
case exports.Fragment:
case REACT_FRAGMENT_TYPE:
return 'Fragment';

@@ -215,3 +191,6 @@

case REACT_CACHE_TYPE:
return 'Cache';
{
return 'Cache';
}
}

@@ -253,2 +232,10 @@

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
// eslint-disable-next-line no-fallthrough
}

@@ -260,2 +247,4 @@ }

var assign = Object.assign;
// Helpers to patch console.logs to avoid logging during side-effect free

@@ -324,21 +313,21 @@ // replaying on render function. This currently only patches the object

Object.defineProperties(console, {
log: _assign({}, props, {
log: assign({}, props, {
value: prevLog
}),
info: _assign({}, props, {
info: assign({}, props, {
value: prevInfo
}),
warn: _assign({}, props, {
warn: assign({}, props, {
value: prevWarn
}),
error: _assign({}, props, {
error: assign({}, props, {
value: prevError
}),
group: _assign({}, props, {
group: assign({}, props, {
value: prevGroup
}),
groupCollapsed: _assign({}, props, {
groupCollapsed: assign({}, props, {
value: prevGroupCollapsed
}),
groupEnd: _assign({}, props, {
groupEnd: assign({}, props, {
value: prevGroupEnd

@@ -493,4 +482,11 @@ })

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -628,2 +624,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -668,2 +665,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -857,2 +921,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -862,2 +930,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -1231,3 +1303,3 @@ }

if (type === exports.Fragment) {
if (type === REACT_FRAGMENT_TYPE) {
validateFragmentProps(element);

@@ -1261,2 +1333,3 @@ } else {

exports.Fragment = REACT_FRAGMENT_TYPE;
exports.jsx = jsx;

@@ -1263,0 +1336,0 @@ exports.jsxs = jsxs;

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.production.min.js

@@ -9,3 +10,3 @@ *

*/
'use strict';require("object-assign");var f=require("react"),g=60103;exports.Fragment=60107;if("function"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h("react.element");exports.Fragment=h("react.fragment")}var m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=""+k);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:n.current}}exports.jsx=q;exports.jsxs=q;
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.profiling.min.js

@@ -9,3 +10,3 @@ *

*/
'use strict';require("object-assign");var f=require("react"),g=60103;exports.Fragment=60107;if("function"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h("react.element");exports.Fragment=h("react.fragment")}var m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=""+k);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:n.current}}exports.jsx=q;exports.jsxs=q;
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -9,19 +10,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.SuspenseList=60120;var u=60115,v=60116;exports.unstable_DebugTracingMode=60129;exports.unstable_Offscreen=60130;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.SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_Offscreen=w("react.offscreen");
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=Array.isArray,H=Object.prototype.hasOwnProperty,I={current:null},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)H.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:I.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,G(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(G(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=y(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(z(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();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var S={current:null},T={transition:0},U={ReactCurrentDispatcher:S,ReactCurrentBatchConfig:T,ReactCurrentOwner:I,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(z(143));return a}};exports.Component=C;exports.PureComponent=E;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U;
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=I.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)&&!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){a={$$typeof:r,_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.startTransition=function(a){var b=T.transition;T.transition=1;try{a()}finally{T.transition=b}};exports.unstable_act=function(){throw Error(z(406));};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
exports.unstable_getCacheForType=function(a){return S.current.getCacheForType(a)};exports.unstable_useCacheRefresh=function(){return S.current.useCacheRefresh()};exports.unstable_useInsertionEffect=function(a,b){return S.current.useInsertionEffect(a,b)};exports.unstable_useMutableSource=function(a,b,c){return S.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return S.current.useOpaqueIdentifier()};
exports.unstable_useSyncExternalStore=function(a,b){return S.current.useSyncExternalStore(a,b)};exports.useCallback=function(a,b){return S.current.useCallback(a,b)};exports.useContext=function(a){return S.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return S.current.useDeferredValue(a)};exports.useEffect=function(a,b){return S.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return S.current.useImperativeHandle(a,b,c)};
exports.useLayoutEffect=function(a,b){return S.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return S.current.useMemo(a,b)};exports.useReducer=function(a,b,c){return S.current.useReducer(a,b,c)};exports.useRef=function(a){return S.current.useRef(a)};exports.useState=function(a){return S.current.useState(a)};exports.useTransition=function(){return S.current.useTransition()};exports.version="18.0.0-experimental-a8cabb564-20210915";
'use strict';var l=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.server_context"),w=Symbol.for("react.forward_ref"),x=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),z=Symbol.for("react.memo"),A=Symbol.for("react.lazy"),B=Symbol.for("react.debug_trace_mode"),C=Symbol.for("react.offscreen"),aa=Symbol.for("react.cache"),
D=Symbol.for("react.default_value"),E=Symbol.iterator;function ba(a){if(null===a||"object"!==typeof a)return null;a=E&&a[E]||a["@@iterator"];return"function"===typeof a?a:null}var F={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},G=Object.assign,H={};function I(a,b,d){this.props=a;this.context=b;this.refs=H;this.updater=d||F}I.prototype.isReactComponent={};
I.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")};I.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function J(){}J.prototype=I.prototype;function K(a,b,d){this.props=a;this.context=b;this.refs=H;this.updater=d||F}var L=K.prototype=new J;
L.constructor=K;G(L,I.prototype);L.isPureReactComponent=!0;var M=Array.isArray,N=Object.prototype.hasOwnProperty,O={current:null},P={key:!0,ref:!0,__self:!0,__source:!0};
function Q(a,b,d){var c,e={},k=null,h=null;if(null!=b)for(c in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)N.call(b,c)&&!P.hasOwnProperty(c)&&(e[c]=b[c]);var g=arguments.length-2;if(1===g)e.children=d;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];e.children=f}if(a&&a.defaultProps)for(c in g=a.defaultProps,g)void 0===e[c]&&(e[c]=g[c]);return{$$typeof:l,type:a,key:k,ref:h,props:e,_owner:O.current}}
function ca(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function R(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}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,d,c,e){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 l:case n:h=!0}}if(h)return h=a,e=e(h),a=""===c?"."+T(h,0):c,M(e)?(d="",null!=a&&(d=a.replace(S,"$&/")+"/"),U(e,b,d,"",function(a){return a})):null!=e&&(R(e)&&(e=ca(e,d+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(S,"$&/")+"/")+a)),b.push(e)),1;h=0;c=""===c?".":c+":";if(M(a))for(var g=0;g<a.length;g++){k=
a[g];var f=c+T(k,g);h+=U(k,b,d,f,e)}else if(f=ba(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=c+T(k,g++),h+=U(k,b,d,f,e);else if("object"===k)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 V(a,b,d){if(null==a)return a;var c=[],e=0;U(a,c,"","",function(a){return b.call(d,a,e++)});return c}function da(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}
var W={current:null},X={transition:null},Y={ReactCurrentDispatcher:W,ReactCurrentBatchConfig:X,ReactCurrentOwner:O,ContextRegistry:{}},Z=Y.ContextRegistry;exports.Children={map:V,forEach:function(a,b,d){V(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;V(a,function(){b++});return b},toArray:function(a){return V(a,function(a){return a})||[]},only:function(a){if(!R(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};
exports.Component=I;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=K;exports.StrictMode=q;exports.Suspense=x;exports.SuspenseList=y;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Y;
exports.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var c=G({},a.props),e=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=O.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)N.call(b,f)&&!P.hasOwnProperty(f)&&(c[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)c.children=d;else if(1<f){g=Array(f);
for(var m=0;m<f;m++)g[m]=arguments[m+2];c.children=g}return{$$typeof:l,type:a.type,key:e,ref:k,props:c,_owner:h}};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=Q;exports.createFactory=function(a){var b=Q.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
exports.createServerContext=function(a,b){var d=!0;if(!Z[a]){d=!1;var c={$$typeof:v,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};c.Provider={$$typeof:t,_context:c};Z[a]=c}c=Z[a];if(c._defaultValue===D)c._defaultValue=b,c._currentValue===D&&(c._currentValue=b),c._currentValue2===D&&(c._currentValue2=b);else if(d)throw Error("ServerContext: "+a+" already defined");return c};exports.forwardRef=function(a){return{$$typeof:w,render:a}};
exports.isValidElement=R;exports.lazy=function(a){return{$$typeof:A,_payload:{_status:-1,_result:a},_init:da}};exports.memo=function(a,b){return{$$typeof:z,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=X.transition;X.transition={};try{a()}finally{X.transition=b}};exports.unstable_Cache=aa;exports.unstable_DebugTracingMode=B;exports.unstable_Offscreen=C;exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.unstable_getCacheForType=function(a){return W.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return W.current.getCacheSignal()};exports.unstable_useCacheRefresh=function(){return W.current.useCacheRefresh()};exports.useCallback=function(a,b){return W.current.useCallback(a,b)};exports.useContext=function(a){return W.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return W.current.useDeferredValue(a)};
exports.useEffect=function(a,b){return W.current.useEffect(a,b)};exports.useId=function(){return W.current.useId()};exports.useImperativeHandle=function(a,b,d){return W.current.useImperativeHandle(a,b,d)};exports.useInsertionEffect=function(a,b){return W.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return W.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return W.current.useMemo(a,b)};exports.useReducer=function(a,b,d){return W.current.useReducer(a,b,d)};
exports.useRef=function(a){return W.current.useRef(a)};exports.useState=function(a){return W.current.useState(a)};exports.useSyncExternalStore=function(a,b,d){return W.current.useSyncExternalStore(a,b,d)};exports.useTransition=function(){return W.current.useTransition()};exports.version="18.1.0-experimental-aa05e7315-20220331";

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

],
"version": "0.0.0-experimental-a8cabb564-20210915",
"version": "0.0.0-experimental-aa05e7315-20220331",
"homepage": "https://reactjs.org/",

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

"README.md",
"build-info.json",
"index.js",

@@ -22,3 +21,3 @@ "cjs/",

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

@@ -28,13 +27,8 @@ "main": "index.js",

".": {
"react-server": "./unstable-shared-subset.js",
"react-server": "./react.shared-subset.js",
"default": "./index.js"
},
"./index": {
"react-server": "./unstable-shared-subset.js",
"default": "./index.js"
},
"./build-info.json": "./build-info.json",
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js",
"./jsx-dev-runtime": "./jsx-dev-runtime.js",
"./": "./"
"./jsx-dev-runtime": "./jsx-dev-runtime.js"
},

@@ -50,4 +44,3 @@ "repository": {

"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
"loose-envify": "^1.1.0"
},

@@ -54,0 +47,0 @@ "browserify": {

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -9,25 +10,25 @@ *

*/
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var c="https://reactjs.org/docs/error-decoder.html?invariant="+a,k=1;k<arguments.length;k++)c+="&args[]="+encodeURIComponent(arguments[k]);return"Minified React error #"+
a+"; visit "+c+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function Z(){}function K(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function aa(a,c,k){var b,e={},ba=null,y=null;if(null!=c)for(b in void 0!==c.ref&&(y=c.ref),void 0!==c.key&&(ba=""+c.key),c)ca.call(c,b)&&!da.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=
k;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:ba,ref:y,props:e,_owner:L.current}}function ua(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function va(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function N(a,c){return"object"===
typeof a&&null!==a&&null!=a.key?va(""+a.key):c.toString(36)}function B(a,c,k,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ea:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+N(d,0):b,fa(e)?(k="",null!=a&&(k=a.replace(ha,"$&/")+"/"),B(e,c,k,"",function(a){return a})):null!=e&&(M(e)&&(e=ua(e,k+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),c.push(e)),
1;d=0;b=""===b?".":b+":";if(fa(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+N(n,f);d+=B(n,c,k,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+N(n,f++),d+=B(n,c,k,g,e);else if("object"===n)throw c=""+a,Error(x(31,"[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c));return d}function C(a,c,k){if(null==a)return a;var b=[],e=0;B(a,b,"","",function(a){return c.call(k,a,e++)});return b}function wa(a){if(-1===a._status){var c=a._result;
c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function O(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<D(e,c))a[d]=c,a[b]=e,b=d;else break a}}function l(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=
0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,l=a[g];if(0>D(m,b))g<e&&0>D(l,m)?(a[d]=l,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>D(l,b))a[d]=l,a[g]=b,d=g;else break a}}return c}function D(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function P(a){for(var c=l(q);null!==c;){if(null===c.callback)E(q);else if(c.startTime<=a)E(q),c.sortIndex=c.expirationTime,O(p,c);else break;c=l(q)}}function Q(a){z=!1;P(a);if(!r)if(null!==l(p))r=!0,R(S);else{var c=l(q);null!==c&&T(Q,c.startTime-
a)}}function S(a,c){r=!1;z&&(z=!1,ia(A),A=-1);F=!0;var b=h;try{P(c);for(m=l(p);null!==m&&(!(m.expirationTime>c)||a&&!ja());){var d=m.callback;if("function"===typeof d){m.callback=null;h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===l(p)&&E(p);P(c)}else E(p);m=l(p)}if(null!==m)var f=!0;else{var y=l(q);null!==y&&T(Q,y.startTime-c);f=!1}return f}finally{m=null,h=b,F=!1}}function ja(){return t()-ka<la?!1:!0}function R(a){G=a;H||(H=!0,I())}function T(a,c){A=
ma(function(){a(t())},c)}var v=60103,ea=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var na=60109,oa=60110,pa=60112;b.Suspense=60113;b.SuspenseList=60120;var qa=60115,ra=60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ea=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");
na=d("react.provider");oa=d("react.context");pa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");qa=d("react.memo");ra=d("react.lazy");b.unstable_DebugTracingMode=d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var W="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");
for(var b=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)xa.call(e,f)&&(b[f]=e[f])}}return b},Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},X={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,c,"setState")};u.prototype.forceUpdate=
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=u.prototype;d=K.prototype=new Z;d.constructor=K;U(d,u.prototype);d.isPureReactComponent=!0;var fa=Array.isArray,ca=Object.prototype.hasOwnProperty,L={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,f={current:null},J={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var sa=Date,za=sa.now();t=function(){return sa.now()-
za}}var p=[],q=[],Aa=1,m=null,h=3,F=!1,r=!1,z=!1,ma="function"===typeof setTimeout?setTimeout:null,ia="function"===typeof clearTimeout?clearTimeout:null,ta="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,la=5,ka=-1,V=function(){if(null!==G){var a=t();ka=a;var c=!0;try{c=G(!0,a)}finally{c?I():(H=!1,G=null)}}else H=
!1};if("function"===typeof ta)var I=function(){ta(V)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Ba=d.port2;d.port1.onmessage=V;I=function(){Ba.postMessage(null)}}else I=function(){ma(V,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:Aa++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,O(q,a),null===l(p)&&a===l(q)&&(z?(ia(A),A=-1):z=!0,T(Q,b-d))):(a.sortIndex=e,O(p,a),r||F||(r=!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ja,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,R(S))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return l(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"):la=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:C,forEach:function(a,c,b){C(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;C(a,function(){c++});return c},toArray:function(a){return C(a,function(a){return a})||
[]},only:function(a){if(!M(a))throw Error(x(143));return a}};b.Component=u;b.PureComponent=K;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error(x(267,a));var d=U({},a.props),e=a.key,f=a.ref,k=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,k=L.current);void 0!==c.key&&(e=""+c.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ca.call(c,g)&&!da.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=
arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var l=0;l<g;l++)h[l]=arguments[l+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};b.createContext=function(a){a={$$typeof:oa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:na,_context:a};return a.Consumer=a};b.createElement=aa;b.createFactory=function(a){var c=aa.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=
function(a){return{$$typeof:pa,render:a}};b.isValidElement=M;b.lazy=function(a){return{$$typeof:ra,_payload:{_status:-1,_result:a},_init:wa}};b.memo=function(a,c){return{$$typeof:qa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=J.transition;J.transition=1;try{a()}finally{J.transition=c}};b.unstable_act=function(a){throw Error(x(406));};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.unstable_useInsertionEffect=function(a,c){return f.current.useInsertionEffect(a,c)};b.unstable_useMutableSource=function(a,c,b){return f.current.useMutableSource(a,c,b)};b.unstable_useOpaqueIdentifier=function(){return f.current.useOpaqueIdentifier()};b.unstable_useSyncExternalStore=function(a,c){return f.current.useSyncExternalStore(a,c)};b.useCallback=
function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useLayoutEffect=function(a,c){return f.current.useLayoutEffect(a,c)};b.useMemo=function(a,c){return f.current.useMemo(a,c)};b.useReducer=function(a,c,
b){return f.current.useReducer(a,c,b)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-experimental-a8cabb564-20210915"});
(function(){'use strict';(function(c,x){"object"===typeof exports&&"undefined"!==typeof module?x(exports):"function"===typeof define&&define.amd?define(["exports"],x):(c=c||self,x(c.React={}))})(this,function(c){function x(a){if(null===a||"object"!==typeof a)return null;a=X&&a[X]||a["@@iterator"];return"function"===typeof a?a:null}function w(a,b,m){this.props=a;this.context=b;this.refs=Y;this.updater=m||Z}function aa(){}function L(a,b,m){this.props=a;this.context=b;this.refs=Y;this.updater=m||Z}function ba(a,
b,m){var d,c={},l=null,g=null;if(null!=b)for(d in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(l=""+b.key),b)ca.call(b,d)&&!da.hasOwnProperty(d)&&(c[d]=b[d]);var k=arguments.length-2;if(1===k)c.children=m;else if(1<k){for(var f=Array(k),e=0;e<k;e++)f[e]=arguments[e+2];c.children=f}if(a&&a.defaultProps)for(d in k=a.defaultProps,k)void 0===c[d]&&(c[d]=k[d]);return{$$typeof:y,type:a,key:l,ref:g,props:c,_owner:M.current}}function qa(a,b){return{$$typeof:y,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}
function N(a){return"object"===typeof a&&null!==a&&a.$$typeof===y}function ra(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function O(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ra(""+a.key):b.toString(36)}function B(a,b,m,d,c){var l=typeof a;if("undefined"===l||"boolean"===l)a=null;var g=!1;if(null===a)g=!0;else switch(l){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case y:case sa:g=!0}}if(g)return g=a,c=c(g),a=""===d?"."+
O(g,0):d,ea(c)?(m="",null!=a&&(m=a.replace(fa,"$&/")+"/"),B(c,b,m,"",function(a){return a})):null!=c&&(N(c)&&(c=qa(c,m+(!c.key||g&&g.key===c.key?"":(""+c.key).replace(fa,"$&/")+"/")+a)),b.push(c)),1;g=0;d=""===d?".":d+":";if(ea(a))for(var k=0;k<a.length;k++){l=a[k];var f=d+O(l,k);g+=B(l,b,m,f,c)}else if(f=x(a),"function"===typeof f)for(a=f.call(a),k=0;!(l=a.next()).done;)l=l.value,f=d+O(l,k++),g+=B(l,b,m,f,c);else if("object"===l)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 C(a,b,m){if(null==a)return a;var c=[],e=0;B(a,c,"","",function(a){return b.call(m,a,e++)});return c}function ta(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function P(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<D(e,b))a[d]=b,a[c]=e,c=d;else break a}}function p(a){return 0===a.length?null:a[0]}function E(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,l=e>>>1;d<l;){var g=2*(d+1)-1,k=a[g],f=g+1,h=a[f];if(0>D(k,c))f<e&&0>D(h,k)?(a[d]=h,a[f]=c,d=f):(a[d]=k,a[g]=c,d=g);else if(f<e&&0>D(h,c))a[d]=h,a[f]=c,d=f;else break a}}return b}
function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function Q(a){for(var b=p(r);null!==b;){if(null===b.callback)E(r);else if(b.startTime<=a)E(r),b.sortIndex=b.expirationTime,P(q,b);else break;b=p(r)}}function R(a){z=!1;Q(a);if(!u)if(null!==p(q))u=!0,S(T);else{var b=p(r);null!==b&&U(R,b.startTime-a)}}function T(a,b){u=!1;z&&(z=!1,ha(A),A=-1);F=!0;var c=h;try{Q(b);for(n=p(q);null!==n&&(!(n.expirationTime>b)||a&&!ia());){var d=n.callback;if("function"===typeof d){n.callback=null;
h=n.priorityLevel;var e=d(n.expirationTime<=b);b=v();"function"===typeof e?n.callback=e:n===p(q)&&E(q);Q(b)}else E(q);n=p(q)}if(null!==n)var l=!0;else{var g=p(r);null!==g&&U(R,g.startTime-b);l=!1}return l}finally{n=null,h=c,F=!1}}function ia(){return v()-ja<ka?!1:!0}function S(a){G=a;H||(H=!0,I())}function U(a,b){A=la(function(){a(v())},b)}var y=Symbol.for("react.element"),sa=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),
ma=Symbol.for("react.provider"),xa=Symbol.for("react.context"),ya=Symbol.for("react.server_context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.suspense_list"),Ca=Symbol.for("react.memo"),Da=Symbol.for("react.lazy"),Ea=Symbol.for("react.debug_trace_mode"),Fa=Symbol.for("react.offscreen"),Ga=Symbol.for("react.cache"),V=Symbol.for("react.default_value"),X=Symbol.iterator,Z={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,
b,c,d){},enqueueSetState:function(a,b,c,d){}},na=Object.assign,Y={};w.prototype.isReactComponent={};w.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")};w.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};aa.prototype=w.prototype;var t=L.prototype=
new aa;t.constructor=L;na(t,w.prototype);t.isPureReactComponent=!0;var ea=Array.isArray,ca=Object.prototype.hasOwnProperty,M={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,e={current:null},J={transition:null},K={};if("object"===typeof performance&&"function"===typeof performance.now){var Ha=performance;var v=function(){return Ha.now()}}else{var oa=Date,Ia=oa.now();v=function(){return oa.now()-Ia}}var q=[],r=[],Ja=1,n=null,h=3,F=!1,u=!1,z=!1,la="function"===typeof setTimeout?setTimeout:
null,ha="function"===typeof clearTimeout?clearTimeout:null,pa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,ka=5,ja=-1,W=function(){if(null!==G){var a=v();ja=a;var b=!0;try{b=G(!0,a)}finally{b?I():(H=!1,G=null)}}else H=!1};if("function"===typeof pa)var I=function(){pa(W)};else if("undefined"!==typeof MessageChannel){t=
new MessageChannel;var Ka=t.port2;t.port1.onmessage=W;I=function(){Ka.postMessage(null)}}else I=function(){la(W,0)};t={ReactCurrentDispatcher:e,ReactCurrentOwner:M,ReactCurrentBatchConfig:J,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=h;h=a;try{return b()}finally{h=c}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var b=
3;break;default:b=h}var c=h;h=b;try{return a()}finally{h=c}},unstable_scheduleCallback:function(a,b,c){var d=v();"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:Ja++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,P(r,a),null===p(q)&&a===p(r)&&(z?(ha(A),A=-1):z=!0,U(R,c-d))):(a.sortIndex=e,P(q,a),u||F||(u=
!0,S(T)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=h;return function(){var c=h;h=b;try{return a.apply(this,arguments)}finally{h=c}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){u||F||(u=!0,S(T))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return p(q)},get unstable_now(){return v},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"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null},ContextRegistry:K};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(!N(a))throw Error("React.Children.only expected to receive a single React element child.");
return a}};c.Component=w;c.Fragment=ua;c.Profiler=wa;c.PureComponent=L;c.StrictMode=va;c.Suspense=Aa;c.SuspenseList=Ba;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=t;c.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=na({},a.props),e=a.key,m=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(m=b.ref,g=M.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var k=a.type.defaultProps;
for(f in b)ca.call(b,f)&&!da.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==k?k[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=c;else if(1<f){k=Array(f);for(var h=0;h<f;h++)k[h]=arguments[h+2];d.children=k}return{$$typeof:y,type:a.type,key:e,ref:m,props:d,_owner:g}};c.createContext=function(a){a={$$typeof:xa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};c.createElement=
ba;c.createFactory=function(a){var b=ba.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.createServerContext=function(a,b){var c=!0;if(!K[a]){c=!1;var d={$$typeof:ya,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:ma,_context:d};K[a]=d}d=K[a];if(d._defaultValue===V)d._defaultValue=b,d._currentValue===V&&(d._currentValue=b),d._currentValue2===V&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+
a+" already defined");return d};c.forwardRef=function(a){return{$$typeof:za,render:a}};c.isValidElement=N;c.lazy=function(a){return{$$typeof:Da,_payload:{_status:-1,_result:a},_init:ta}};c.memo=function(a,b){return{$$typeof:Ca,type:a,compare:void 0===b?null:b}};c.startTransition=function(a,b){b=J.transition;J.transition={};try{a()}finally{J.transition=b}};c.unstable_Cache=Ga;c.unstable_DebugTracingMode=Ea;c.unstable_Offscreen=Fa;c.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};c.unstable_getCacheForType=function(a){return e.current.getCacheForType(a)};c.unstable_getCacheSignal=function(){return e.current.getCacheSignal()};c.unstable_useCacheRefresh=function(){return e.current.useCacheRefresh()};c.useCallback=function(a,b){return e.current.useCallback(a,b)};c.useContext=function(a){return e.current.useContext(a)};c.useDebugValue=function(a,b){};c.useDeferredValue=function(a){return e.current.useDeferredValue(a)};c.useEffect=function(a,b){return e.current.useEffect(a,b)};
c.useId=function(){return e.current.useId()};c.useImperativeHandle=function(a,b,c){return e.current.useImperativeHandle(a,b,c)};c.useInsertionEffect=function(a,b){return e.current.useInsertionEffect(a,b)};c.useLayoutEffect=function(a,b){return e.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return e.current.useMemo(a,b)};c.useReducer=function(a,b,c){return e.current.useReducer(a,b,c)};c.useRef=function(a){return e.current.useRef(a)};c.useState=function(a){return e.current.useState(a)};c.useSyncExternalStore=
function(a,b,c){return e.current.useSyncExternalStore(a,b,c)};c.useTransition=function(){return e.current.useTransition()};c.version="18.1.0-experimental-aa05e7315-20220331"});
})();

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.profiling.min.js

@@ -9,25 +10,25 @@ *

*/
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var c="https://reactjs.org/docs/error-decoder.html?invariant="+a,k=1;k<arguments.length;k++)c+="&args[]="+encodeURIComponent(arguments[k]);return"Minified React error #"+
a+"; visit "+c+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function Z(){}function K(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function aa(a,c,k){var b,e={},ba=null,y=null;if(null!=c)for(b in void 0!==c.ref&&(y=c.ref),void 0!==c.key&&(ba=""+c.key),c)ca.call(c,b)&&!da.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=
k;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:ba,ref:y,props:e,_owner:L.current}}function ua(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function va(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function N(a,c){return"object"===
typeof a&&null!==a&&null!=a.key?va(""+a.key):c.toString(36)}function B(a,c,k,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ea:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+N(d,0):b,fa(e)?(k="",null!=a&&(k=a.replace(ha,"$&/")+"/"),B(e,c,k,"",function(a){return a})):null!=e&&(M(e)&&(e=ua(e,k+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),c.push(e)),
1;d=0;b=""===b?".":b+":";if(fa(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+N(n,f);d+=B(n,c,k,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+N(n,f++),d+=B(n,c,k,g,e);else if("object"===n)throw c=""+a,Error(x(31,"[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c));return d}function C(a,c,k){if(null==a)return a;var b=[],e=0;B(a,b,"","",function(a){return c.call(k,a,e++)});return b}function wa(a){if(-1===a._status){var c=a._result;
c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function O(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<D(e,c))a[d]=c,a[b]=e,b=d;else break a}}function l(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=
0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,l=a[g];if(0>D(m,b))g<e&&0>D(l,m)?(a[d]=l,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>D(l,b))a[d]=l,a[g]=b,d=g;else break a}}return c}function D(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function P(a){for(var c=l(q);null!==c;){if(null===c.callback)E(q);else if(c.startTime<=a)E(q),c.sortIndex=c.expirationTime,O(p,c);else break;c=l(q)}}function Q(a){z=!1;P(a);if(!r)if(null!==l(p))r=!0,R(S);else{var c=l(q);null!==c&&T(Q,c.startTime-
a)}}function S(a,c){r=!1;z&&(z=!1,ia(A),A=-1);F=!0;var b=h;try{P(c);for(m=l(p);null!==m&&(!(m.expirationTime>c)||a&&!ja());){var d=m.callback;if("function"===typeof d){m.callback=null;h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===l(p)&&E(p);P(c)}else E(p);m=l(p)}if(null!==m)var f=!0;else{var y=l(q);null!==y&&T(Q,y.startTime-c);f=!1}return f}finally{m=null,h=b,F=!1}}function ja(){return t()-ka<la?!1:!0}function R(a){G=a;H||(H=!0,I())}function T(a,c){A=
ma(function(){a(t())},c)}var v=60103,ea=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var na=60109,oa=60110,pa=60112;b.Suspense=60113;b.SuspenseList=60120;var qa=60115,ra=60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ea=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");
na=d("react.provider");oa=d("react.context");pa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");qa=d("react.memo");ra=d("react.lazy");b.unstable_DebugTracingMode=d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var W="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");
for(var b=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)xa.call(e,f)&&(b[f]=e[f])}}return b},Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},X={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,c,"setState")};u.prototype.forceUpdate=
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=u.prototype;d=K.prototype=new Z;d.constructor=K;U(d,u.prototype);d.isPureReactComponent=!0;var fa=Array.isArray,ca=Object.prototype.hasOwnProperty,L={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,f={current:null},J={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var sa=Date,za=sa.now();t=function(){return sa.now()-
za}}var p=[],q=[],Aa=1,m=null,h=3,F=!1,r=!1,z=!1,ma="function"===typeof setTimeout?setTimeout:null,ia="function"===typeof clearTimeout?clearTimeout:null,ta="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,la=5,ka=-1,V=function(){if(null!==G){var a=t();ka=a;var c=!0;try{c=G(!0,a)}finally{c?I():(H=!1,G=null)}}else H=
!1};if("function"===typeof ta)var I=function(){ta(V)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Ba=d.port2;d.port1.onmessage=V;I=function(){Ba.postMessage(null)}}else I=function(){ma(V,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:Aa++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,O(q,a),null===l(p)&&a===l(q)&&(z?(ia(A),A=-1):z=!0,T(Q,b-d))):(a.sortIndex=e,O(p,a),r||F||(r=!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ja,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,R(S))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return l(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"):la=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:C,forEach:function(a,c,b){C(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;C(a,function(){c++});return c},toArray:function(a){return C(a,function(a){return a})||
[]},only:function(a){if(!M(a))throw Error(x(143));return a}};b.Component=u;b.PureComponent=K;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error(x(267,a));var d=U({},a.props),e=a.key,f=a.ref,k=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,k=L.current);void 0!==c.key&&(e=""+c.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ca.call(c,g)&&!da.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=
arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var l=0;l<g;l++)h[l]=arguments[l+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};b.createContext=function(a){a={$$typeof:oa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:na,_context:a};return a.Consumer=a};b.createElement=aa;b.createFactory=function(a){var c=aa.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=
function(a){return{$$typeof:pa,render:a}};b.isValidElement=M;b.lazy=function(a){return{$$typeof:ra,_payload:{_status:-1,_result:a},_init:wa}};b.memo=function(a,c){return{$$typeof:qa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=J.transition;J.transition=1;try{a()}finally{J.transition=c}};b.unstable_act=function(a){throw Error(x(406));};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.unstable_useInsertionEffect=function(a,c){return f.current.useInsertionEffect(a,c)};b.unstable_useMutableSource=function(a,c,b){return f.current.useMutableSource(a,c,b)};b.unstable_useOpaqueIdentifier=function(){return f.current.useOpaqueIdentifier()};b.unstable_useSyncExternalStore=function(a,c){return f.current.useSyncExternalStore(a,c)};b.useCallback=
function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useLayoutEffect=function(a,c){return f.current.useLayoutEffect(a,c)};b.useMemo=function(a,c){return f.current.useMemo(a,c)};b.useReducer=function(a,c,
b){return f.current.useReducer(a,c,b)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-experimental-a8cabb564-20210915"});
(function(){'use strict';(function(c,x){"object"===typeof exports&&"undefined"!==typeof module?x(exports):"function"===typeof define&&define.amd?define(["exports"],x):(c=c||self,x(c.React={}))})(this,function(c){function x(a){if(null===a||"object"!==typeof a)return null;a=X&&a[X]||a["@@iterator"];return"function"===typeof a?a:null}function w(a,b,m){this.props=a;this.context=b;this.refs=Y;this.updater=m||Z}function aa(){}function L(a,b,m){this.props=a;this.context=b;this.refs=Y;this.updater=m||Z}function ba(a,
b,m){var d,c={},l=null,g=null;if(null!=b)for(d in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(l=""+b.key),b)ca.call(b,d)&&!da.hasOwnProperty(d)&&(c[d]=b[d]);var k=arguments.length-2;if(1===k)c.children=m;else if(1<k){for(var f=Array(k),e=0;e<k;e++)f[e]=arguments[e+2];c.children=f}if(a&&a.defaultProps)for(d in k=a.defaultProps,k)void 0===c[d]&&(c[d]=k[d]);return{$$typeof:y,type:a,key:l,ref:g,props:c,_owner:M.current}}function qa(a,b){return{$$typeof:y,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}
function N(a){return"object"===typeof a&&null!==a&&a.$$typeof===y}function ra(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function O(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ra(""+a.key):b.toString(36)}function B(a,b,m,d,c){var l=typeof a;if("undefined"===l||"boolean"===l)a=null;var g=!1;if(null===a)g=!0;else switch(l){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case y:case sa:g=!0}}if(g)return g=a,c=c(g),a=""===d?"."+
O(g,0):d,ea(c)?(m="",null!=a&&(m=a.replace(fa,"$&/")+"/"),B(c,b,m,"",function(a){return a})):null!=c&&(N(c)&&(c=qa(c,m+(!c.key||g&&g.key===c.key?"":(""+c.key).replace(fa,"$&/")+"/")+a)),b.push(c)),1;g=0;d=""===d?".":d+":";if(ea(a))for(var k=0;k<a.length;k++){l=a[k];var f=d+O(l,k);g+=B(l,b,m,f,c)}else if(f=x(a),"function"===typeof f)for(a=f.call(a),k=0;!(l=a.next()).done;)l=l.value,f=d+O(l,k++),g+=B(l,b,m,f,c);else if("object"===l)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 C(a,b,m){if(null==a)return a;var c=[],e=0;B(a,c,"","",function(a){return b.call(m,a,e++)});return c}function ta(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function P(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<D(e,b))a[d]=b,a[c]=e,c=d;else break a}}function p(a){return 0===a.length?null:a[0]}function E(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,l=e>>>1;d<l;){var g=2*(d+1)-1,k=a[g],f=g+1,h=a[f];if(0>D(k,c))f<e&&0>D(h,k)?(a[d]=h,a[f]=c,d=f):(a[d]=k,a[g]=c,d=g);else if(f<e&&0>D(h,c))a[d]=h,a[f]=c,d=f;else break a}}return b}
function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function Q(a){for(var b=p(r);null!==b;){if(null===b.callback)E(r);else if(b.startTime<=a)E(r),b.sortIndex=b.expirationTime,P(q,b);else break;b=p(r)}}function R(a){z=!1;Q(a);if(!u)if(null!==p(q))u=!0,S(T);else{var b=p(r);null!==b&&U(R,b.startTime-a)}}function T(a,b){u=!1;z&&(z=!1,ha(A),A=-1);F=!0;var c=h;try{Q(b);for(n=p(q);null!==n&&(!(n.expirationTime>b)||a&&!ia());){var d=n.callback;if("function"===typeof d){n.callback=null;
h=n.priorityLevel;var e=d(n.expirationTime<=b);b=v();"function"===typeof e?n.callback=e:n===p(q)&&E(q);Q(b)}else E(q);n=p(q)}if(null!==n)var l=!0;else{var g=p(r);null!==g&&U(R,g.startTime-b);l=!1}return l}finally{n=null,h=c,F=!1}}function ia(){return v()-ja<ka?!1:!0}function S(a){G=a;H||(H=!0,I())}function U(a,b){A=la(function(){a(v())},b)}var y=Symbol.for("react.element"),sa=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),
ma=Symbol.for("react.provider"),xa=Symbol.for("react.context"),ya=Symbol.for("react.server_context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.suspense_list"),Ca=Symbol.for("react.memo"),Da=Symbol.for("react.lazy"),Ea=Symbol.for("react.debug_trace_mode"),Fa=Symbol.for("react.offscreen"),Ga=Symbol.for("react.cache"),V=Symbol.for("react.default_value"),X=Symbol.iterator,Z={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,
b,c,d){},enqueueSetState:function(a,b,c,d){}},na=Object.assign,Y={};w.prototype.isReactComponent={};w.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")};w.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};aa.prototype=w.prototype;var t=L.prototype=
new aa;t.constructor=L;na(t,w.prototype);t.isPureReactComponent=!0;var ea=Array.isArray,ca=Object.prototype.hasOwnProperty,M={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,e={current:null},J={transition:null},K={};if("object"===typeof performance&&"function"===typeof performance.now){var Ha=performance;var v=function(){return Ha.now()}}else{var oa=Date,Ia=oa.now();v=function(){return oa.now()-Ia}}var q=[],r=[],Ja=1,n=null,h=3,F=!1,u=!1,z=!1,la="function"===typeof setTimeout?setTimeout:
null,ha="function"===typeof clearTimeout?clearTimeout:null,pa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,ka=5,ja=-1,W=function(){if(null!==G){var a=v();ja=a;var b=!0;try{b=G(!0,a)}finally{b?I():(H=!1,G=null)}}else H=!1};if("function"===typeof pa)var I=function(){pa(W)};else if("undefined"!==typeof MessageChannel){t=
new MessageChannel;var Ka=t.port2;t.port1.onmessage=W;I=function(){Ka.postMessage(null)}}else I=function(){la(W,0)};t={ReactCurrentDispatcher:e,ReactCurrentOwner:M,ReactCurrentBatchConfig:J,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=h;h=a;try{return b()}finally{h=c}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var b=
3;break;default:b=h}var c=h;h=b;try{return a()}finally{h=c}},unstable_scheduleCallback:function(a,b,c){var d=v();"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:Ja++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,P(r,a),null===p(q)&&a===p(r)&&(z?(ha(A),A=-1):z=!0,U(R,c-d))):(a.sortIndex=e,P(q,a),u||F||(u=
!0,S(T)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=h;return function(){var c=h;h=b;try{return a.apply(this,arguments)}finally{h=c}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){u||F||(u=!0,S(T))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return p(q)},get unstable_now(){return v},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"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null},ContextRegistry:K};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(!N(a))throw Error("React.Children.only expected to receive a single React element child.");
return a}};c.Component=w;c.Fragment=ua;c.Profiler=wa;c.PureComponent=L;c.StrictMode=va;c.Suspense=Aa;c.SuspenseList=Ba;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=t;c.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=na({},a.props),e=a.key,m=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(m=b.ref,g=M.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var k=a.type.defaultProps;
for(f in b)ca.call(b,f)&&!da.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==k?k[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=c;else if(1<f){k=Array(f);for(var h=0;h<f;h++)k[h]=arguments[h+2];d.children=k}return{$$typeof:y,type:a.type,key:e,ref:m,props:d,_owner:g}};c.createContext=function(a){a={$$typeof:xa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};c.createElement=
ba;c.createFactory=function(a){var b=ba.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.createServerContext=function(a,b){var c=!0;if(!K[a]){c=!1;var d={$$typeof:ya,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:ma,_context:d};K[a]=d}d=K[a];if(d._defaultValue===V)d._defaultValue=b,d._currentValue===V&&(d._currentValue=b),d._currentValue2===V&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+
a+" already defined");return d};c.forwardRef=function(a){return{$$typeof:za,render:a}};c.isValidElement=N;c.lazy=function(a){return{$$typeof:Da,_payload:{_status:-1,_result:a},_init:ta}};c.memo=function(a,b){return{$$typeof:Ca,type:a,compare:void 0===b?null:b}};c.startTransition=function(a,b){b=J.transition;J.transition={};try{a()}finally{J.transition=b}};c.unstable_Cache=Ga;c.unstable_DebugTracingMode=Ea;c.unstable_Offscreen=Fa;c.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};c.unstable_getCacheForType=function(a){return e.current.getCacheForType(a)};c.unstable_getCacheSignal=function(){return e.current.getCacheSignal()};c.unstable_useCacheRefresh=function(){return e.current.useCacheRefresh()};c.useCallback=function(a,b){return e.current.useCallback(a,b)};c.useContext=function(a){return e.current.useContext(a)};c.useDebugValue=function(a,b){};c.useDeferredValue=function(a){return e.current.useDeferredValue(a)};c.useEffect=function(a,b){return e.current.useEffect(a,b)};
c.useId=function(){return e.current.useId()};c.useImperativeHandle=function(a,b,c){return e.current.useImperativeHandle(a,b,c)};c.useInsertionEffect=function(a,b){return e.current.useInsertionEffect(a,b)};c.useLayoutEffect=function(a,b){return e.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return e.current.useMemo(a,b)};c.useReducer=function(a,b,c){return e.current.useReducer(a,b,c)};c.useRef=function(a){return e.current.useRef(a)};c.useState=function(a){return e.current.useState(a)};c.useSyncExternalStore=
function(a,b,c){return e.current.useSyncExternalStore(a,b,c)};c.useTransition=function(){return e.current.useTransition()};c.version="18.1.0-experimental-aa05e7315-20220331"});
})();

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

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