svelte 5.41.2 → 5.41.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "svelte",
3
3
  "description": "Cybernetically enhanced web apps",
4
4
  "license": "MIT",
5
- "version": "5.41.2",
5
+ "version": "5.41.4",
6
6
  "type": "module",
7
7
  "types": "./types/index.d.ts",
8
8
  "engines": {
@@ -6,7 +6,7 @@ import { walk } from 'zimmerframe';
6
6
  import { parse } from '../1-parse/acorn.js';
7
7
  import * as e from '../../errors.js';
8
8
  import * as w from '../../warnings.js';
9
- import { extract_identifiers } from '../../utils/ast.js';
9
+ import { extract_identifiers, has_await_expression } from '../../utils/ast.js';
10
10
  import * as b from '#compiler/builders';
11
11
  import { Scope, ScopeRoot, create_scopes, get_rune, set_scope } from '../scope.js';
12
12
  import check_graph_for_cycles from './utils/check_graph_for_cycles.js';
@@ -12,7 +12,7 @@ import {
12
12
  import * as b from '#compiler/builders';
13
13
  import { sanitize_template_string } from '../../../../../utils/sanitize_template_string.js';
14
14
  import { regex_whitespaces_strict } from '../../../../patterns.js';
15
- import { has_await } from '../../../../../utils/ast.js';
15
+ import { has_await_expression } from '../../../../../utils/ast.js';
16
16
 
17
17
  /** Opens an if/each block, so that we can remove nodes in the case of a mismatch */
18
18
  export const block_open = b.literal(BLOCK_OPEN);
@@ -315,7 +315,7 @@ export class PromiseOptimiser {
315
315
 
316
316
  const promises = b.array(
317
317
  this.expressions.map((expression) => {
318
- return expression.type === 'AwaitExpression' && !has_await(expression.argument)
318
+ return expression.type === 'AwaitExpression' && !has_await_expression(expression.argument)
319
319
  ? expression.argument
320
320
  : b.call(b.thunk(expression, true));
321
321
  })
@@ -611,16 +611,20 @@ export function build_assignment_value(operator, left, right) {
611
611
  }
612
612
 
613
613
  /**
614
- * @param {ESTree.Expression} expression
614
+ * @param {ESTree.Node} node
615
615
  */
616
- export function has_await(expression) {
616
+ export function has_await_expression(node) {
617
617
  let has_await = false;
618
618
 
619
- walk(expression, null, {
619
+ walk(node, null, {
620
620
  AwaitExpression(_node, context) {
621
621
  has_await = true;
622
622
  context.stop();
623
- }
623
+ },
624
+ // don't traverse into these
625
+ FunctionDeclaration() {},
626
+ FunctionExpression() {},
627
+ ArrowFunctionExpression() {}
624
628
  });
625
629
 
626
630
  return has_await;
@@ -2,7 +2,7 @@
2
2
  import { walk } from 'zimmerframe';
3
3
  import { regex_is_valid_identifier } from '../phases/patterns.js';
4
4
  import { sanitize_template_string } from './sanitize_template_string.js';
5
- import { has_await } from './ast.js';
5
+ import { has_await_expression } from './ast.js';
6
6
 
7
7
  /**
8
8
  * @param {Array<ESTree.Expression | ESTree.SpreadElement | null>} elements
@@ -451,7 +451,7 @@ export function thunk(expression, async = false) {
451
451
  export function unthunk(expression) {
452
452
  // optimize `async () => await x()`, but not `async () => await x(await y)`
453
453
  if (expression.async && expression.body.type === 'AwaitExpression') {
454
- if (!has_await(expression.body.argument)) {
454
+ if (!has_await_expression(expression.body.argument)) {
455
455
  return unthunk(arrow(expression.params, expression.body.argument));
456
456
  }
457
457
  }
@@ -1,3 +1,4 @@
1
+ // General flags
1
2
  export const DERIVED = 1 << 1;
2
3
  export const EFFECT = 1 << 2;
3
4
  export const RENDER_EFFECT = 1 << 3;
@@ -5,21 +6,34 @@ export const BLOCK_EFFECT = 1 << 4;
5
6
  export const BRANCH_EFFECT = 1 << 5;
6
7
  export const ROOT_EFFECT = 1 << 6;
7
8
  export const BOUNDARY_EFFECT = 1 << 7;
8
- export const UNOWNED = 1 << 8;
9
- export const DISCONNECTED = 1 << 9;
10
9
  export const CLEAN = 1 << 10;
11
10
  export const DIRTY = 1 << 11;
12
11
  export const MAYBE_DIRTY = 1 << 12;
13
12
  export const INERT = 1 << 13;
14
13
  export const DESTROYED = 1 << 14;
14
+
15
+ // Flags exclusive to effects
15
16
  export const EFFECT_RAN = 1 << 15;
16
- /** 'Transparent' effects do not create a transition boundary */
17
+ /**
18
+ * 'Transparent' effects do not create a transition boundary.
19
+ * This is on a block effect 99% of the time but may also be on a branch effect if its parent block effect was pruned
20
+ */
17
21
  export const EFFECT_TRANSPARENT = 1 << 16;
18
22
  export const INSPECT_EFFECT = 1 << 17;
19
23
  export const HEAD_EFFECT = 1 << 18;
20
24
  export const EFFECT_PRESERVED = 1 << 19;
21
25
  export const USER_EFFECT = 1 << 20;
22
26
 
27
+ // Flags exclusive to deriveds
28
+ export const UNOWNED = 1 << 8;
29
+ export const DISCONNECTED = 1 << 9;
30
+ /**
31
+ * Tells that we marked this derived and its reactions as visited during the "mark as (maybe) dirty"-phase.
32
+ * Will be lifted during execution of the derived and during checking its dirty state (both are necessary
33
+ * because a derived might be checked but not executed).
34
+ */
35
+ export const WAS_MARKED = 1 << 15;
36
+
23
37
  // Flags used for async
24
38
  export const REACTION_IS_UPDATING = 1 << 21;
25
39
  export const ASYNC = 1 << 22;
@@ -153,16 +153,20 @@ export function get_stack(label) {
153
153
 
154
154
  for (let i = 0; i < lines.length; i++) {
155
155
  const line = lines[i];
156
+ const posixified = line.replaceAll('\\', '/');
156
157
 
157
158
  if (line === 'Error') {
158
159
  continue;
159
160
  }
161
+
160
162
  if (line.includes('validate_each_keys')) {
161
163
  return null;
162
164
  }
163
- if (line.includes('svelte/src/internal') || line.includes('svelte\\src\\internal')) {
165
+
166
+ if (posixified.includes('svelte/src/internal') || posixified.includes('node_modules/.vite')) {
164
167
  continue;
165
168
  }
169
+
166
170
  new_lines.push(line);
167
171
  }
168
172
 
@@ -30,7 +30,6 @@ import {
30
30
  skip_nodes,
31
31
  set_hydrate_node
32
32
  } from '../hydration.js';
33
- import { get_next_sibling } from '../operations.js';
34
33
  import { queue_micro_task } from '../task.js';
35
34
  import * as e from '../../errors.js';
36
35
  import * as w from '../../warnings.js';
@@ -39,6 +38,7 @@ import { Batch, effect_pending_updates } from '../../reactivity/batch.js';
39
38
  import { internal_set, source } from '../../reactivity/sources.js';
40
39
  import { tag } from '../../dev/tracing.js';
41
40
  import { createSubscriber } from '../../../../reactivity/create-subscriber.js';
41
+ import { create_text } from '../operations.js';
42
42
 
43
43
  /**
44
44
  * @typedef {{
@@ -93,6 +93,9 @@ export class Boundary {
93
93
  /** @type {DocumentFragment | null} */
94
94
  #offscreen_fragment = null;
95
95
 
96
+ /** @type {TemplateNode | null} */
97
+ #pending_anchor = null;
98
+
96
99
  #local_pending_count = 0;
97
100
  #pending_count = 0;
98
101
 
@@ -156,8 +159,10 @@ export class Boundary {
156
159
  this.#hydrate_resolved_content();
157
160
  }
158
161
  } else {
162
+ var anchor = this.#get_anchor();
163
+
159
164
  try {
160
- this.#main_effect = branch(() => children(this.#anchor));
165
+ this.#main_effect = branch(() => children(anchor));
161
166
  } catch (error) {
162
167
  this.error(error);
163
168
  }
@@ -168,6 +173,10 @@ export class Boundary {
168
173
  this.#pending = false;
169
174
  }
170
175
  }
176
+
177
+ return () => {
178
+ this.#pending_anchor?.remove();
179
+ };
171
180
  }, flags);
172
181
 
173
182
  if (hydrating) {
@@ -195,9 +204,11 @@ export class Boundary {
195
204
  this.#pending_effect = branch(() => pending(this.#anchor));
196
205
 
197
206
  Batch.enqueue(() => {
207
+ var anchor = this.#get_anchor();
208
+
198
209
  this.#main_effect = this.#run(() => {
199
210
  Batch.ensure();
200
- return branch(() => this.#children(this.#anchor));
211
+ return branch(() => this.#children(anchor));
201
212
  });
202
213
 
203
214
  if (this.#pending_count > 0) {
@@ -212,6 +223,19 @@ export class Boundary {
212
223
  });
213
224
  }
214
225
 
226
+ #get_anchor() {
227
+ var anchor = this.#anchor;
228
+
229
+ if (this.#pending) {
230
+ this.#pending_anchor = create_text();
231
+ this.#anchor.before(this.#pending_anchor);
232
+
233
+ anchor = this.#pending_anchor;
234
+ }
235
+
236
+ return anchor;
237
+ }
238
+
215
239
  /**
216
240
  * Returns `true` if the effect exists inside a boundary whose pending snippet is shown
217
241
  * @returns {boolean}
@@ -253,6 +277,7 @@ export class Boundary {
253
277
 
254
278
  if (this.#main_effect !== null) {
255
279
  this.#offscreen_fragment = document.createDocumentFragment();
280
+ this.#offscreen_fragment.append(/** @type {TemplateNode} */ (this.#pending_anchor));
256
281
  move_effect(this.#main_effect, this.#offscreen_fragment);
257
282
  }
258
283
 
@@ -402,6 +427,7 @@ export class Boundary {
402
427
  if (failed) {
403
428
  queue_micro_task(() => {
404
429
  this.#failed_effect = this.#run(() => {
430
+ Batch.ensure();
405
431
  this.#is_creating_fallback = true;
406
432
 
407
433
  try {
@@ -377,8 +377,12 @@ export class Batch {
377
377
  // Re-run async/block effects that depend on distinct values changed in both batches
378
378
  const others = [...batch.current.keys()].filter((s) => !this.current.has(s));
379
379
  if (others.length > 0) {
380
+ /** @type {Set<Value>} */
381
+ const marked = new Set();
382
+ /** @type {Map<Reaction, boolean>} */
383
+ const checked = new Map();
380
384
  for (const source of sources) {
381
- mark_effects(source, others);
385
+ mark_effects(source, others, marked, checked);
382
386
  }
383
387
 
384
388
  if (queued_root_effects.length > 0) {
@@ -688,15 +692,24 @@ function flush_queued_effects(effects) {
688
692
  * these effects can re-run after another batch has been committed
689
693
  * @param {Value} value
690
694
  * @param {Source[]} sources
695
+ * @param {Set<Value>} marked
696
+ * @param {Map<Reaction, boolean>} checked
691
697
  */
692
- function mark_effects(value, sources) {
698
+ function mark_effects(value, sources, marked, checked) {
699
+ if (marked.has(value)) return;
700
+ marked.add(value);
701
+
693
702
  if (value.reactions !== null) {
694
703
  for (const reaction of value.reactions) {
695
704
  const flags = reaction.f;
696
705
 
697
706
  if ((flags & DERIVED) !== 0) {
698
- mark_effects(/** @type {Derived} */ (reaction), sources);
699
- } else if ((flags & (ASYNC | BLOCK_EFFECT)) !== 0 && depends_on(reaction, sources)) {
707
+ mark_effects(/** @type {Derived} */ (reaction), sources, marked, checked);
708
+ } else if (
709
+ (flags & (ASYNC | BLOCK_EFFECT)) !== 0 &&
710
+ (flags & DIRTY) === 0 && // we may have scheduled this one already
711
+ depends_on(reaction, sources, checked)
712
+ ) {
700
713
  set_signal_status(reaction, DIRTY);
701
714
  schedule_effect(/** @type {Effect} */ (reaction));
702
715
  }
@@ -707,20 +720,27 @@ function mark_effects(value, sources) {
707
720
  /**
708
721
  * @param {Reaction} reaction
709
722
  * @param {Source[]} sources
723
+ * @param {Map<Reaction, boolean>} checked
710
724
  */
711
- function depends_on(reaction, sources) {
725
+ function depends_on(reaction, sources, checked) {
726
+ const depends = checked.get(reaction);
727
+ if (depends !== undefined) return depends;
728
+
712
729
  if (reaction.deps !== null) {
713
730
  for (const dep of reaction.deps) {
714
731
  if (sources.includes(dep)) {
715
732
  return true;
716
733
  }
717
734
 
718
- if ((dep.f & DERIVED) !== 0 && depends_on(/** @type {Derived} */ (dep), sources)) {
735
+ if ((dep.f & DERIVED) !== 0 && depends_on(/** @type {Derived} */ (dep), sources, checked)) {
736
+ checked.set(/** @type {Derived} */ (dep), true);
719
737
  return true;
720
738
  }
721
739
  }
722
740
  }
723
741
 
742
+ checked.set(reaction, false);
743
+
724
744
  return false;
725
745
  }
726
746
 
@@ -10,7 +10,8 @@ import {
10
10
  MAYBE_DIRTY,
11
11
  STALE_REACTION,
12
12
  UNOWNED,
13
- ASYNC
13
+ ASYNC,
14
+ WAS_MARKED
14
15
  } from '#client/constants';
15
16
  import {
16
17
  active_reaction,
@@ -326,6 +327,7 @@ export function execute_derived(derived) {
326
327
 
327
328
  stack.push(derived);
328
329
 
330
+ derived.f &= ~WAS_MARKED;
329
331
  destroy_derived_effects(derived);
330
332
  value = update_reaction(derived);
331
333
  } finally {
@@ -335,6 +337,7 @@ export function execute_derived(derived) {
335
337
  }
336
338
  } else {
337
339
  try {
340
+ derived.f &= ~WAS_MARKED;
338
341
  destroy_derived_effects(derived);
339
342
  value = update_reaction(derived);
340
343
  } finally {
@@ -149,6 +149,9 @@ function create_effect(type, fn, sync, push = true) {
149
149
  (e.f & EFFECT_PRESERVED) === 0
150
150
  ) {
151
151
  e = e.first;
152
+ if ((type & BLOCK_EFFECT) !== 0 && (type & EFFECT_TRANSPARENT) !== 0 && e !== null) {
153
+ e.f |= EFFECT_TRANSPARENT;
154
+ }
152
155
  }
153
156
 
154
157
  if (e !== null) {
@@ -604,7 +607,12 @@ export function pause_children(effect, transitions, local) {
604
607
 
605
608
  while (child !== null) {
606
609
  var sibling = child.next;
607
- var transparent = (child.f & EFFECT_TRANSPARENT) !== 0 || (child.f & BRANCH_EFFECT) !== 0;
610
+ var transparent =
611
+ (child.f & EFFECT_TRANSPARENT) !== 0 ||
612
+ // If this is a branch effect without a block effect parent,
613
+ // it means the parent block effect was pruned. In that case,
614
+ // transparency information was transferred to the branch effect.
615
+ ((child.f & BRANCH_EFFECT) !== 0 && (effect.f & BLOCK_EFFECT) !== 0);
608
616
  // TODO we don't need to call pause_children recursively with a linked list in place
609
617
  // it's slightly more involved though as we have to account for `transparent` changing
610
618
  // through the tree.
@@ -27,7 +27,8 @@ import {
27
27
  MAYBE_DIRTY,
28
28
  BLOCK_EFFECT,
29
29
  ROOT_EFFECT,
30
- ASYNC
30
+ ASYNC,
31
+ WAS_MARKED
31
32
  } from '#client/constants';
32
33
  import * as e from '../errors.js';
33
34
  import { legacy_mode_flag, tracing_mode_flag } from '../../flags/index.js';
@@ -332,7 +333,10 @@ function mark_reactions(signal, status) {
332
333
  }
333
334
 
334
335
  if ((flags & DERIVED) !== 0) {
335
- mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY);
336
+ if ((flags & WAS_MARKED) === 0) {
337
+ reaction.f |= WAS_MARKED;
338
+ mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY);
339
+ }
336
340
  } else if (not_dirty) {
337
341
  if ((flags & BLOCK_EFFECT) !== 0) {
338
342
  if (eager_block_effects !== null) {
@@ -20,7 +20,8 @@ import {
20
20
  DISCONNECTED,
21
21
  REACTION_IS_UPDATING,
22
22
  STALE_REACTION,
23
- ERROR_VALUE
23
+ ERROR_VALUE,
24
+ WAS_MARKED
24
25
  } from './constants.js';
25
26
  import { old_values } from './reactivity/sources.js';
26
27
  import {
@@ -161,6 +162,10 @@ export function is_dirty(reaction) {
161
162
  var dependencies = reaction.deps;
162
163
  var is_unowned = (flags & UNOWNED) !== 0;
163
164
 
165
+ if (flags & DERIVED) {
166
+ reaction.f &= ~WAS_MARKED;
167
+ }
168
+
164
169
  if (dependencies !== null) {
165
170
  var i;
166
171
  var dependency;
package/src/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * The current version, as set in package.json.
5
5
  * @type {string}
6
6
  */
7
- export const VERSION = '5.41.2';
7
+ export const VERSION = '5.41.4';
8
8
  export const PUBLIC_VERSION = '5';
@@ -261,6 +261,6 @@
261
261
  null,
262
262
  null
263
263
  ],
264
- "mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCzPRC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;;;;;iBCyRXC,SAASA;;;;iBC/aTC,gBAAgBA;;;;;MCvEpBC,WAAWA;;;;;;;;iBC+EPC,aAAaA;;;;;;;;iBAyBbC,UAAUA;;;;;;;;;;;iBAoBVC,UAAUA;;;;;;iBAuBVC,UAAUA;;;;;;;iBAaVC,cAAcA;;;;;;iBCxFdC,KAAKA;;;;;iBA2BLC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgNPC,OAAOA;;;;;;iBCgMDC,IAAIA;;;;;;iBAwBVC,OAAOA;;;;;;;;;;;;;;iBAqNPC,OAAOA;MC5tBXC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCqBFC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;kBCtDNC,eAAeA;;;;;;;;kBAQfC,UAAUA;;;;;;;;;;iBCGXC,IAAIA;;;;;;;;;;;;;;;;kBCLHC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;iBCsBXC,mBAAmBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WJHlBN,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBKnCPM,OAAOA;;;;;;iBA2CPC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsGbC,IAAIA;;;;kBClKHC,SAASA;;;;;;;;;;;;;;;;;;;;;;;aAuBdC,kBAAkBA;;;;;;;;;;;;;;aAclBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;kBAsBPC,iBAAiBA;;;;;;;;kBCjDjBC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAsCbC,OAAOA;;kBAEPC,YAAYA;;MAEjBC,aAAaA;;;;;;;kBAWRC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAmIdC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC1KzBC,SAASA;;kBASJC,GAAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBC6SUC,UAAUA;;;;;;cC3U3BC,OAAOA;;;;;;iBCqHJC,OAAOA;;;;;;;;;;;;;;;;WCzHNC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCOLC,MAAMA;;iBAQNC,SAASA;;iBAUTC,MAAMA;;iBASNC,OAAOA;;iBASPC,SAASA;;iBAqBTC,WAAWA;;iBAQXC,QAAQA;;iBAQRC,SAASA;;iBASTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBASRC,YAAYA;;iBAaZC,SAASA;;iBAQTC,UAAUA;;iBAQVC,SAASA;;iBAYTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,SAASA;;iBAWTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,UAAUA;;iBASVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,SAASA;;iBAQTC,MAAMA;;iBAUNC,OAAOA;;;;;;;;;;;;;iBC7PPC,oBAAoBA;;;;;;;;;iBAkBpBC,gBAAgBA;;;;;;iBA2IhBC,GAAGA;;;;;iBAuBHC,QAAQA;;;;;iBAqCRC,aAAaA;;;;aAxLkKC,mBAAmBA;;;;;;;;iBCrDlMC,OAAOA;;;;;iBAgBPC,IAAIA;;;;;iBAiBJC,eAAeA;;;;;iBAefC,IAAIA;;;;;iBAkBJC,wBAAwBA;;;;;iBAexBC,cAAcA;;;;;iBAedC,OAAOA;;;;;iBAcPC,UAAUA;;;;;;;;;;;kBClFbC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAANA,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4CFC,OAAOA;;;;;MCjFZC,UAAUA;;;MAGVC,YAAYA;;;WAoBPC,QAAQA;;;;;;;;WCbRC,UAAUA;;;;;;WAMVC,gBAAgBA;;;;;;;;;;;;;;;;;;;MAmBrBC,OAAOA;;WAEFC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCTlBC,oBAAoBA;;;;;;iBCsCjBC,MAAMA;;;;;;iBCsBNC,OAAOA;;;;;;;;;;;;;;;;;cAyFVC,KAAKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCzILC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCKVC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCMTC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCXTC,SAASA;;;;OCnCTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;cA4BPC,qBAAqBA;;;;;;;;;;;;;;;;;;;;;;;cCErBC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCiBPC,gBAAgBA;OChDnBC,aAAaA;;;;;;;;;;;;;;;cCMbC,OAAOA;;;;;cASPC,OAAOA;;;;;cASPC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cAuBVC,SAASA;;;;;cAuBTC,MAAMA;;;;;;;cAmBNC,gBAAgBA;;;OD7HhBV,aAAaA;;;;;;;;;;;;;;;;iBEEVW,MAAMA;;;;;;;;;;;;;;;;;;;;;;WCSLC,gBAAgBA;;;;;;;;;MASrBC,YAAYA;;;;;;;afxBZhC,UAAUA;;;aAGVC,YAAYA;;;aAGZI,OAAOA;;;;;;;;;;;aAWP4B,iBAAiBA;;;;;;kBAMZ/B,QAAQA;;;;;;;;;;kBAURgC,QAAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBgBfTC,QAAQA;;;;;;iBAcRC,QAAQA;;;;;;;;;;;;;;;;;;iBA4JRC,QAAQA;;;;;iBAcRC,GAAGA;;;;;;;;;;;;aC3MPC,cAAcA;;kBAETC,gBAAgBA;;;;;;;;kBAQhBC,UAAUA;;;;;;;;kBAQVC,UAAUA;;;;;;kBAMVC,SAASA;;;;;;;;;kBASTC,WAAWA;;;;;;;kBAOXC,WAAWA;;;;;;;;kBAQXC,UAAUA;;;;;;;kBAOVC,eAAeA;;;;;;;;;iBClBhBC,IAAIA;;;;;iBAwBJC,IAAIA;;;;;iBAiBJC,GAAGA;;;;;iBA6BHC,KAAKA;;;;;iBAmDLC,KAAKA;;;;;iBA2BLC,IAAIA;;;;;;;iBA+CJC,SAASA;;;;;;;;;;;;;;;;;;;iBCrLTC,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;;a9BzBNrH,kBAAkBA;;aAclBC,YAAYA;;aAsBPC,iBAAiBA;;aA3DjBH,SAASA;;aAuETuH,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aCRlB/G,cAAcA;;aAfdH,OAAOA;;;MAIZE,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA8IRE,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC1KzBC,SAASA",
264
+ "mappings": "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",
265
265
  "ignoreList": []
266
266
  }