Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
2
Maintainers
4
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-a9985529f-20231025 to 0.0.0-experimental-a9cc32511-20240215

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

293

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

@@ -28,5 +28,6 @@ /**

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
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');

@@ -100,8 +101,9 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
var enableDebugTracing = false;
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference');
var REACT_CLIENT_REFERENCE$2 = Symbol.for('react.client.reference');
function isValidElementType(type) {

@@ -118,7 +120,7 @@ if (typeof type === 'string' || typeof type === 'function') {

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 || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_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_CLIENT_REFERENCE$1 || type.getModuleId !== undefined) {
type.$$typeof === REACT_CLIENT_REFERENCE$2 || type.getModuleId !== undefined) {
return true;

@@ -145,4 +147,5 @@ }

return type.displayName || 'Context';
} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
}
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.

@@ -155,9 +158,8 @@ function getComponentNameFromType(type) {

{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
if (typeof type === 'function') {
if (type.$$typeof === REACT_CLIENT_REFERENCE$1) {
// TODO: Create a convention for naming client references with debug info.
return null;
}
}
if (typeof type === 'function') {
return type.displayName || type.name || null;

@@ -197,11 +199,27 @@ }

if (typeof type === 'object') {
{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}
}
switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -231,9 +249,2 @@ return getWrappedName(type, type.render, 'ForwardRef');

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
}

@@ -343,3 +354,3 @@ }

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -367,3 +378,15 @@ if (prefix === undefined) {

}
/**
* Leverages native browser/VM stack frames to get proper details (e.g.
* filename, line + col number) for a single component in a component stack. We
* do this by:
* (1) throwing and catching an error in the function - this will be our
* control error.
* (2) calling the component which will eventually throw an error that we'll
* catch - this will be our sample error.
* (3) diffing the control and sample error stacks to find the stack frame
* which represents our component.
*/
function describeNativeComponentFrame(fn, construct) {

@@ -383,3 +406,2 @@ // If something asked for a stack inside a fake render, it should get ignored.

var control;
reentry = true;

@@ -398,79 +420,138 @@ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined.

}
/**
* Finding a common stack frame between sample and control errors can be
* tricky given the different types and levels of stack trace truncation from
* different JS VMs. So instead we'll attempt to control what that common
* frame should be through this object method:
* Having both the sample and control errors be in the function under the
* `DescribeNativeComponentFrameRoot` property, + setting the `name` and
* `displayName` properties of the function ensures that a stack
* frame exists that has the method name `DescribeNativeComponentFrameRoot` in
* it for both control and sample stacks.
*/
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
var RunInRootFrame = {
DetermineComponentFrameRoot: function () {
var control;
Object.defineProperty(Fake.prototype, 'props', {
set: function () {
// We use a throwing setter instead of frozen or non-writable props
// because that won't throw in a non-strict mode function.
throw Error();
}
});
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
if (typeof Reflect === 'object' && Reflect.construct) {
// We construct a different control for this case to include any extra
// frames added by the construct call.
try {
Reflect.construct(Fake, []);
} catch (x) {
control = x;
}
Reflect.construct(fn, [], Fake);
} else {
try {
Fake.call();
} catch (x) {
control = x;
} // $FlowFixMe[prop-missing] found when upgrading Flow
Object.defineProperty(Fake.prototype, 'props', {
set: function () {
// We use a throwing setter instead of frozen or non-writable props
// because that won't throw in a non-strict mode function.
throw Error();
}
});
if (typeof Reflect === 'object' && Reflect.construct) {
// We construct a different control for this case to include any extra
// frames added by the construct call.
try {
Reflect.construct(Fake, []);
} catch (x) {
control = x;
}
fn.call(Fake.prototype);
}
} else {
try {
throw Error();
} catch (x) {
control = x;
} // TODO(luna): This will currently only throw if the function component
// tries to access React/ReactDOM/props. We should probably make this throw
// in simple components too
Reflect.construct(fn, [], Fake);
} else {
try {
Fake.call();
} catch (x) {
control = x;
} // $FlowFixMe[prop-missing] found when upgrading Flow
var maybePromise = fn(); // If the function component returns a promise, it's likely an async
// component, which we don't yet support. Attach a noop catch handler to
// silence the error.
// TODO: Implement component stacks for async client components?
fn.call(Fake.prototype);
}
} else {
try {
throw Error();
} catch (x) {
control = x;
} // TODO(luna): This will currently only throw if the function component
// tries to access React/ReactDOM/props. We should probably make this throw
// in simple components too
if (maybePromise && typeof maybePromise.catch === 'function') {
maybePromise.catch(function () {});
var maybePromise = fn(); // If the function component returns a promise, it's likely an async
// component, which we don't yet support. Attach a noop catch handler to
// silence the error.
// TODO: Implement component stacks for async client components?
if (maybePromise && typeof maybePromise.catch === 'function') {
maybePromise.catch(function () {});
}
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
return [sample.stack, control.stack];
}
}
return [null, null];
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
}; // $FlowFixMe[prop-missing]
RunInRootFrame.DetermineComponentFrameRoot.displayName = 'DetermineComponentFrameRoot';
var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, 'name'); // Before ES6, the `name` property was not configurable.
if (namePropDescriptor && namePropDescriptor.configurable) {
// V8 utilizes a function's `name` property when generating a stack trace.
Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, // Configurable properties can be updated even if its writable descriptor
// is set to `false`.
// $FlowFixMe[cannot-write]
'name', {
value: 'DetermineComponentFrameRoot'
});
}
try {
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
sampleStack = _RunInRootFrame$Deter[0],
controlStack = _RunInRootFrame$Deter[1];
if (sampleStack && controlStack) {
// This extracts the first frame from the sample that isn't also in the control.
// Skipping one frame that we assume is the frame that calls the two.
var sampleLines = sample.stack.split('\n');
var controlLines = control.stack.split('\n');
var s = sampleLines.length - 1;
var c = controlLines.length - 1;
var sampleLines = sampleStack.split('\n');
var controlLines = controlStack.split('\n');
var s = 0;
var c = 0;
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
// We expect at least one stack frame to be shared.
// Typically this will be the root most one. However, stack frames may be
// cut off due to maximum stack limits. In this case, one maybe cut off
// earlier than the other. We assume that the sample is longer or the same
// and there for cut off earlier. So we should find the root most frame in
// the sample somewhere in the control.
c--;
while (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) {
s++;
}
while (c < controlLines.length && !controlLines[c].includes('DetermineComponentFrameRoot')) {
c++;
} // We couldn't find our intentionally injected common root frame, attempt
// to find another common root frame by search from the bottom of the
// control stack...
if (s === sampleLines.length || c === controlLines.length) {
s = sampleLines.length - 1;
c = controlLines.length - 1;
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
// We expect at least one stack frame to be shared.
// Typically this will be the root most one. However, stack frames may be
// cut off due to maximum stack limits. In this case, one maybe cut off
// earlier than the other. We assume that the sample is longer or the same
// and there for cut off earlier. So we should find the root most frame in
// the sample somewhere in the control.
c--;
}
}
for (; s >= 1 && c >= 0; s--, c--) {

@@ -502,3 +583,3 @@ // Next we find the first one that isn't the same which should be the

{
if (true) {
if (typeof fn === 'function') {

@@ -542,3 +623,3 @@ componentFrameCache.set(fn, _frame);

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -554,3 +635,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -586,3 +667,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -597,3 +678,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -617,3 +698,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);

@@ -750,8 +831,2 @@ } else {

var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var specialPropKeyWarningShown;

@@ -892,17 +967,9 @@ var specialPropRefWarningShown;

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -961,3 +1028,5 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -1002,3 +1071,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);

@@ -1070,3 +1139,3 @@ } else {

if (!info) {
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
var parentName = getComponentNameFromType(parentType);

@@ -1073,0 +1142,0 @@ if (parentName) {

@@ -1,10 +0,12 @@

/**
* @license React
* react-jsx-dev-runtime.production.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
React
react-jsx-dev-runtime.production.min.js
Copyright (c) Meta Platforms, Inc. and affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0;
//# sourceMappingURL=react-jsx-dev-runtime.production.min.js.map

@@ -1,10 +0,12 @@

/**
* @license React
* react-jsx-dev-runtime.profiling.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
React
react-jsx-dev-runtime.profiling.min.js
Copyright (c) Meta Platforms, Inc. and affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0;
//# sourceMappingURL=react-jsx-dev-runtime.profiling.min.js.map

@@ -28,5 +28,6 @@ /**

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
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');

@@ -100,8 +101,9 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
var enableDebugTracing = false;
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference');
var REACT_CLIENT_REFERENCE$2 = Symbol.for('react.client.reference');
function isValidElementType(type) {

@@ -118,7 +120,7 @@ if (typeof type === 'string' || typeof type === 'function') {

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 || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_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_CLIENT_REFERENCE$1 || type.getModuleId !== undefined) {
type.$$typeof === REACT_CLIENT_REFERENCE$2 || type.getModuleId !== undefined) {
return true;

@@ -145,4 +147,5 @@ }

return type.displayName || 'Context';
} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
}
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.

@@ -155,9 +158,8 @@ function getComponentNameFromType(type) {

{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
if (typeof type === 'function') {
if (type.$$typeof === REACT_CLIENT_REFERENCE$1) {
// TODO: Create a convention for naming client references with debug info.
return null;
}
}
if (typeof type === 'function') {
return type.displayName || type.name || null;

@@ -197,11 +199,27 @@ }

if (typeof type === 'object') {
{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}
}
switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -231,9 +249,2 @@ return getWrappedName(type, type.render, 'ForwardRef');

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
}

@@ -343,3 +354,3 @@ }

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -367,3 +378,15 @@ if (prefix === undefined) {

}
/**
* Leverages native browser/VM stack frames to get proper details (e.g.
* filename, line + col number) for a single component in a component stack. We
* do this by:
* (1) throwing and catching an error in the function - this will be our
* control error.
* (2) calling the component which will eventually throw an error that we'll
* catch - this will be our sample error.
* (3) diffing the control and sample error stacks to find the stack frame
* which represents our component.
*/
function describeNativeComponentFrame(fn, construct) {

@@ -383,3 +406,2 @@ // If something asked for a stack inside a fake render, it should get ignored.

var control;
reentry = true;

@@ -398,79 +420,138 @@ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined.

}
/**
* Finding a common stack frame between sample and control errors can be
* tricky given the different types and levels of stack trace truncation from
* different JS VMs. So instead we'll attempt to control what that common
* frame should be through this object method:
* Having both the sample and control errors be in the function under the
* `DescribeNativeComponentFrameRoot` property, + setting the `name` and
* `displayName` properties of the function ensures that a stack
* frame exists that has the method name `DescribeNativeComponentFrameRoot` in
* it for both control and sample stacks.
*/
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
var RunInRootFrame = {
DetermineComponentFrameRoot: function () {
var control;
Object.defineProperty(Fake.prototype, 'props', {
set: function () {
// We use a throwing setter instead of frozen or non-writable props
// because that won't throw in a non-strict mode function.
throw Error();
}
});
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
if (typeof Reflect === 'object' && Reflect.construct) {
// We construct a different control for this case to include any extra
// frames added by the construct call.
try {
Reflect.construct(Fake, []);
} catch (x) {
control = x;
}
Reflect.construct(fn, [], Fake);
} else {
try {
Fake.call();
} catch (x) {
control = x;
} // $FlowFixMe[prop-missing] found when upgrading Flow
Object.defineProperty(Fake.prototype, 'props', {
set: function () {
// We use a throwing setter instead of frozen or non-writable props
// because that won't throw in a non-strict mode function.
throw Error();
}
});
if (typeof Reflect === 'object' && Reflect.construct) {
// We construct a different control for this case to include any extra
// frames added by the construct call.
try {
Reflect.construct(Fake, []);
} catch (x) {
control = x;
}
fn.call(Fake.prototype);
}
} else {
try {
throw Error();
} catch (x) {
control = x;
} // TODO(luna): This will currently only throw if the function component
// tries to access React/ReactDOM/props. We should probably make this throw
// in simple components too
Reflect.construct(fn, [], Fake);
} else {
try {
Fake.call();
} catch (x) {
control = x;
} // $FlowFixMe[prop-missing] found when upgrading Flow
var maybePromise = fn(); // If the function component returns a promise, it's likely an async
// component, which we don't yet support. Attach a noop catch handler to
// silence the error.
// TODO: Implement component stacks for async client components?
fn.call(Fake.prototype);
}
} else {
try {
throw Error();
} catch (x) {
control = x;
} // TODO(luna): This will currently only throw if the function component
// tries to access React/ReactDOM/props. We should probably make this throw
// in simple components too
if (maybePromise && typeof maybePromise.catch === 'function') {
maybePromise.catch(function () {});
var maybePromise = fn(); // If the function component returns a promise, it's likely an async
// component, which we don't yet support. Attach a noop catch handler to
// silence the error.
// TODO: Implement component stacks for async client components?
if (maybePromise && typeof maybePromise.catch === 'function') {
maybePromise.catch(function () {});
}
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
return [sample.stack, control.stack];
}
}
return [null, null];
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
}; // $FlowFixMe[prop-missing]
RunInRootFrame.DetermineComponentFrameRoot.displayName = 'DetermineComponentFrameRoot';
var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, 'name'); // Before ES6, the `name` property was not configurable.
if (namePropDescriptor && namePropDescriptor.configurable) {
// V8 utilizes a function's `name` property when generating a stack trace.
Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, // Configurable properties can be updated even if its writable descriptor
// is set to `false`.
// $FlowFixMe[cannot-write]
'name', {
value: 'DetermineComponentFrameRoot'
});
}
try {
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
sampleStack = _RunInRootFrame$Deter[0],
controlStack = _RunInRootFrame$Deter[1];
if (sampleStack && controlStack) {
// This extracts the first frame from the sample that isn't also in the control.
// Skipping one frame that we assume is the frame that calls the two.
var sampleLines = sample.stack.split('\n');
var controlLines = control.stack.split('\n');
var s = sampleLines.length - 1;
var c = controlLines.length - 1;
var sampleLines = sampleStack.split('\n');
var controlLines = controlStack.split('\n');
var s = 0;
var c = 0;
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
// We expect at least one stack frame to be shared.
// Typically this will be the root most one. However, stack frames may be
// cut off due to maximum stack limits. In this case, one maybe cut off
// earlier than the other. We assume that the sample is longer or the same
// and there for cut off earlier. So we should find the root most frame in
// the sample somewhere in the control.
c--;
while (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) {
s++;
}
while (c < controlLines.length && !controlLines[c].includes('DetermineComponentFrameRoot')) {
c++;
} // We couldn't find our intentionally injected common root frame, attempt
// to find another common root frame by search from the bottom of the
// control stack...
if (s === sampleLines.length || c === controlLines.length) {
s = sampleLines.length - 1;
c = controlLines.length - 1;
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
// We expect at least one stack frame to be shared.
// Typically this will be the root most one. However, stack frames may be
// cut off due to maximum stack limits. In this case, one maybe cut off
// earlier than the other. We assume that the sample is longer or the same
// and there for cut off earlier. So we should find the root most frame in
// the sample somewhere in the control.
c--;
}
}
for (; s >= 1 && c >= 0; s--, c--) {

@@ -502,3 +583,3 @@ // Next we find the first one that isn't the same which should be the

{
if (true) {
if (typeof fn === 'function') {

@@ -542,3 +623,3 @@ componentFrameCache.set(fn, _frame);

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -554,3 +635,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -586,3 +667,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -597,3 +678,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -617,3 +698,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);

@@ -750,8 +831,2 @@ } else {

var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var specialPropKeyWarningShown;

@@ -892,17 +967,9 @@ var specialPropRefWarningShown;

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -961,3 +1028,5 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -1002,3 +1071,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);

@@ -1070,3 +1139,3 @@ } else {

if (!info) {
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
var parentName = getComponentNameFromType(parentType);

@@ -1073,0 +1142,0 @@ if (parentName) {

@@ -1,11 +0,13 @@

/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'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;
/*
React
react-jsx-runtime.production.min.js
Copyright (c) Meta Platforms, Inc. and affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'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;
function p(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)&&"key"!==b&&"ref"!==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=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.production.min.js.map

@@ -1,11 +0,13 @@

/**
* @license React
* react-jsx-runtime.profiling.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'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;
/*
React
react-jsx-runtime.profiling.min.js
Copyright (c) Meta Platforms, Inc. and affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'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;
function p(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)&&"key"!==b&&"ref"!==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=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.profiling.min.js.map

@@ -1,31 +0,34 @@

/**
* @license React
* react.production.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'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"),aa=Symbol.for("react.debug_trace_mode"),ba=Symbol.for("react.offscreen"),ca=
Symbol.for("react.cache"),B=Symbol.for("react.default_value"),da=Symbol.for("react.postpone"),C=Symbol.iterator;function ea(a){if(null===a||"object"!==typeof a)return null;a=C&&a[C]||a["@@iterator"];return"function"===typeof a?a:null}var D={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},E=Object.assign,F={};function G(a,b,c){this.props=a;this.context=b;this.refs=F;this.updater=c||D}G.prototype.isReactComponent={};
G.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")};G.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function H(){}H.prototype=G.prototype;function I(a,b,c){this.props=a;this.context=b;this.refs=F;this.updater=c||D}var J=I.prototype=new H;
J.constructor=I;E(J,G.prototype);J.isPureReactComponent=!0;var K=Array.isArray,L=Object.prototype.hasOwnProperty,M={current:null},N={key:!0,ref:!0,__self:!0,__source:!0};
function O(a,b,c){var d,e={},f=null,g=null;if(null!=b)for(d in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(f=""+b.key),b)L.call(b,d)&&!N.hasOwnProperty(d)&&(e[d]=b[d]);var h=arguments.length-2;if(1===h)e.children=c;else if(1<h){for(var k=Array(h),m=0;m<h;m++)k[m]=arguments[m+2];e.children=k}if(a&&a.defaultProps)for(d in h=a.defaultProps,h)void 0===e[d]&&(e[d]=h[d]);return{$$typeof:l,type:a,key:f,ref:g,props:e,_owner:M.current}}
function fa(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var Q=/\/+/g;function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function S(a,b,c,d,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var g=!1;if(null===a)g=!0;else switch(f){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case l:case n:g=!0}}if(g)return g=a,e=e(g),a=""===d?"."+R(g,0):d,K(e)?(c="",null!=a&&(c=a.replace(Q,"$&/")+"/"),S(e,b,c,"",function(m){return m})):null!=e&&(P(e)&&(e=fa(e,c+(!e.key||g&&g.key===e.key?"":(""+e.key).replace(Q,"$&/")+"/")+a)),b.push(e)),1;g=0;d=""===d?".":d+":";if(K(a))for(var h=0;h<a.length;h++){f=
a[h];var k=d+R(f,h);g+=S(f,b,c,k,e)}else if(k=ea(a),"function"===typeof k)for(a=k.call(a),h=0;!(f=a.next()).done;)f=f.value,k=d+R(f,h++),g+=S(f,b,c,k,e);else if("object"===f)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return g}
function T(a,b,c){if(null==a)return a;var d=[],e=0;S(a,d,"","",function(f){return b.call(c,f,e++)});return d}function ha(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var U={current:null};function ia(){return new WeakMap}
function V(){return{s:0,v:void 0,o:null,p:null}}var W={current:null};function X(a,b){return W.current.useOptimistic(a,b)}var Y={transition:null},Z={},ja={ReactCurrentDispatcher:W,ReactCurrentCache:U,ReactCurrentBatchConfig:Y,ReactCurrentOwner:M,ContextRegistry:Z};
exports.Children={map:T,forEach:function(a,b,c){T(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;T(a,function(){b++});return b},toArray:function(a){return T(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=G;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=I;exports.StrictMode=q;exports.Suspense=x;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ja;
exports.cache=function(a){return function(){var b=U.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ia);b=c.get(a);void 0===b&&(b=V(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(e);void 0===b&&(b=V(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=V(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var g=a.apply(null,
arguments);c=b;c.s=1;return c.v=g}catch(h){throw g=b,g.s=2,g.v=h,h;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=E({},a.props),e=a.key,f=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,g=M.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)L.call(b,k)&&!N.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){h=Array(k);
for(var m=0;m<k;m++)h[m]=arguments[m+2];d.children=h}return{$$typeof:l,type:a.type,key:e,ref:f,props:d,_owner:g}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=O;exports.createFactory=function(a){var b=O.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
exports.createServerContext=function(a,b){var c=!0;if(!Z[a]){c=!1;var d={$$typeof:v,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:t,_context:d};Z[a]=d}d=Z[a];if(d._defaultValue===B)d._defaultValue=b,d._currentValue===B&&(d._currentValue=b),d._currentValue2===B&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};exports.experimental_useEffectEvent=function(a){return W.current.useEffectEvent(a)};
exports.experimental_useOptimistic=function(a,b){return X(a,b)};exports.forwardRef=function(a){return{$$typeof:w,render:a}};exports.isValidElement=P;exports.lazy=function(a){return{$$typeof:A,_payload:{_status:-1,_result:a},_init:ha}};exports.memo=function(a,b){return{$$typeof:z,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=Y.transition;Y.transition={};try{a()}finally{Y.transition=b}};exports.unstable_Cache=ca;exports.unstable_DebugTracingMode=aa;
exports.unstable_Offscreen=ba;exports.unstable_SuspenseList=y;exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.unstable_getCacheForType=function(a){var b=U.current;return b?b.getCacheForType(a):a()};exports.unstable_getCacheSignal=function(){var a=U.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};
exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=da;throw a;};exports.unstable_useCacheRefresh=function(){return W.current.useCacheRefresh()};exports.unstable_useMemoCache=function(a){return W.current.useMemoCache(a)};exports.use=function(a){return W.current.use(a)};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,b){return W.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return W.current.useEffect(a,b)};exports.useId=function(){return W.current.useId()};exports.useImperativeHandle=function(a,b,c){return W.current.useImperativeHandle(a,b,c)};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.useOptimistic=X;exports.useReducer=function(a,b,c){return W.current.useReducer(a,b,c)};exports.useRef=function(a){return W.current.useRef(a)};exports.useState=function(a){return W.current.useState(a)};exports.useSyncExternalStore=function(a,b,c){return W.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return W.current.useTransition()};exports.version="18.3.0-experimental-a9985529f-20231025";
/*
React
react.production.min.js
Copyright (c) Meta Platforms, Inc. and affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'use strict';var k=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.forward_ref"),w=Symbol.for("react.suspense"),x=Symbol.for("react.suspense_list"),y=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),A=Symbol.for("react.debug_trace_mode"),aa=Symbol.for("react.offscreen"),ba=Symbol.for("react.cache"),ca=Symbol.for("react.postpone"),
B=Symbol.iterator;function da(a){if(null===a||"object"!==typeof a)return null;a=B&&a[B]||a["@@iterator"];return"function"===typeof a?a:null}var C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},D=Object.assign,E={};function F(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}F.prototype.isReactComponent={};
F.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")};F.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function G(){}G.prototype=F.prototype;function H(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}var I=H.prototype=new G;
I.constructor=H;D(I,F.prototype);I.isPureReactComponent=!0;var J=Array.isArray,K=Object.prototype.hasOwnProperty,L={current:null};function M(a,b,c,e,d){return{$$typeof:k,type:a,key:b,ref:c,props:d,_owner:e}}
function N(a,b,c){var e,d={},f=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(f=""+b.key),b)K.call(b,e)&&"key"!==e&&"ref"!==e&&"__self"!==e&&"__source"!==e&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var g=Array(l),m=0;m<l;m++)g[m]=arguments[m+2];d.children=g}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return M(a,f,h,L.current,d)}function ea(a,b){return M(a.type,b,a.ref,a._owner,a.props)}
function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===k}var P={current:null},Q={current:null},R={transition:null},fa={ReactCurrentDispatcher:P,ReactCurrentCache:Q,ReactCurrentBatchConfig:R,ReactCurrentOwner:L};function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var S=/\/+/g;function T(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}function U(){}
function ha(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(U,U):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}
function V(a,b,c,e,d){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var h=!1;if(null===a)h=!0;else switch(f){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case k:case n:h=!0;break;case z:return h=a._init,V(h(a._payload),b,c,e,d)}}if(h)return d=d(a),h=""===e?"."+T(a,0):e,J(d)?(c="",null!=h&&(c=h.replace(S,"$&/")+"/"),V(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=ea(d,c+(!d.key||a&&a.key===d.key?"":(""+d.key).replace(S,"$&/")+"/")+h)),b.push(d)),1;h=0;var l=
""===e?".":e+":";if(J(a))for(var g=0;g<a.length;g++)e=a[g],f=l+T(e,g),h+=V(e,b,c,f,d);else if(g=da(a),"function"===typeof g)for(a=g.call(a),g=0;!(e=a.next()).done;)e=e.value,f=l+T(e,g++),h+=V(e,b,c,f,d);else if("object"===f){if("function"===typeof a.then)return V(ha(a),b,c,e,d);b=String(a);throw 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 W(a,b,c){if(null==a)return a;var e=[],d=0;V(a,e,"","",function(f){return b.call(c,f,d++)});return e}function ia(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ja(){return new WeakMap}
function X(){return{s:0,v:void 0,o:null,p:null}}function Y(a,b){return P.current.useOptimistic(a,b)}function ka(){}var Z="function"===typeof reportError?reportError:function(a){console.error(a)};
exports.Children={map:W,forEach:function(a,b,c){W(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;W(a,function(){b++});return b},toArray:function(a){return W(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=F;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=H;exports.StrictMode=q;exports.Suspense=w;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=fa;exports.act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.cache=function(a){return function(){var b=Q.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ja);b=c.get(a);void 0===b&&(b=X(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(d);void 0===b&&(b=X(),f.set(d,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(d),void 0===b&&(b=X(),f.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=D({},a.props),d=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=L.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(g in b)K.call(b,g)&&"key"!==g&&"ref"!==g&&"__self"!==g&&"__source"!==g&&(e[g]=void 0===b[g]&&void 0!==l?l[g]:b[g])}var g=arguments.length-2;if(1===g)e.children=
c;else if(1<g){l=Array(g);for(var m=0;m<g;m++)l[m]=arguments[m+2];e.children=l}return M(a.type,d,f,h,e)};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=N;exports.createFactory=function(a){var b=N.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.experimental_useEffectEvent=function(a){return P.current.useEffectEvent(a)};
exports.experimental_useOptimistic=function(a,b){return Y(a,b)};exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:z,_payload:{_status:-1,_result:a},_init:ia}};exports.memo=function(a,b){return{$$typeof:y,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=R.transition,c=new Set;R.transition={_callbacks:c};var e=R.transition;try{var d=a();"object"===typeof d&&null!==d&&"function"===typeof d.then&&(c.forEach(function(f){return f(e,d)}),d.then(ka,Z))}catch(f){Z(f)}finally{R.transition=b}};exports.unstable_Activity=aa;exports.unstable_Cache=ba;exports.unstable_DebugTracingMode=A;exports.unstable_SuspenseList=x;exports.unstable_getCacheForType=function(a){var b=Q.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=Q.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=ca;throw a;};exports.unstable_useCacheRefresh=function(){return P.current.useCacheRefresh()};exports.unstable_useMemoCache=function(a){return P.current.useMemoCache(a)};exports.use=function(a){return P.current.use(a)};
exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return P.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return P.current.useEffect(a,b)};exports.useId=function(){return P.current.useId()};exports.useImperativeHandle=function(a,b,c){return P.current.useImperativeHandle(a,b,c)};
exports.useInsertionEffect=function(a,b){return P.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return P.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useOptimistic=Y;exports.useReducer=function(a,b,c){return P.current.useReducer(a,b,c)};exports.useRef=function(a){return P.current.useRef(a)};exports.useState=function(a){return P.current.useState(a)};
exports.useSyncExternalStore=function(a,b,c){return P.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.3.0-experimental-a9cc32511-20240215";
//# sourceMappingURL=react.production.min.js.map

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

],
"version": "0.0.0-experimental-a9985529f-20231025",
"version": "0.0.0-experimental-a9cc32511-20240215",
"homepage": "https://reactjs.org/",

@@ -19,4 +19,5 @@ "bugs": "https://github.com/facebook/react/issues",

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

@@ -26,7 +27,10 @@ "main": "index.js",

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

@@ -33,0 +37,0 @@ },

@@ -10,20 +10,28 @@ /**

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

@@ -10,20 +10,28 @@ /**

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

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