@kong-ui-public/document-viewer 0.5.27 → 0.6.0

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.
@@ -64,7 +64,7 @@ var ke = {}, nr = {
64
64
  * @public
65
65
  */
66
66
  var r = function(n) {
67
- var o = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i, i = 0, a = {}, s = {
67
+ var o = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i, i = 0, l = {}, s = {
68
68
  /**
69
69
  * By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the
70
70
  * current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load
@@ -119,8 +119,8 @@ var ke = {}, nr = {
119
119
  * @memberof Prism
120
120
  */
121
121
  util: {
122
- encode: function u(m) {
123
- return m instanceof l ? new l(m.type, u(m.content), m.alias) : Array.isArray(m) ? m.map(u) : m.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/\u00a0/g, " ");
122
+ encode: function c(m) {
123
+ return m instanceof a ? new a(m.type, c(m.content), m.alias) : Array.isArray(m) ? m.map(c) : m.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/\u00a0/g, " ");
124
124
  },
125
125
  /**
126
126
  * Returns the name of the type of the given value.
@@ -138,8 +138,8 @@ var ke = {}, nr = {
138
138
  * type(String) === 'Function'
139
139
  * type(/abc+/) === 'RegExp'
140
140
  */
141
- type: function(u) {
142
- return Object.prototype.toString.call(u).slice(8, -1);
141
+ type: function(c) {
142
+ return Object.prototype.toString.call(c).slice(8, -1);
143
143
  },
144
144
  /**
145
145
  * Returns a unique number for the given object. Later calls will still return the same number.
@@ -147,8 +147,8 @@ var ke = {}, nr = {
147
147
  * @param {Object} obj
148
148
  * @returns {number}
149
149
  */
150
- objId: function(u) {
151
- return u.__id || Object.defineProperty(u, "__id", { value: ++i }), u.__id;
150
+ objId: function(c) {
151
+ return c.__id || Object.defineProperty(c, "__id", { value: ++i }), c.__id;
152
152
  },
153
153
  /**
154
154
  * Creates a deep clone of the given object.
@@ -160,7 +160,7 @@ var ke = {}, nr = {
160
160
  * @returns {T}
161
161
  * @template T
162
162
  */
163
- clone: function u(m, d) {
163
+ clone: function c(m, d) {
164
164
  d = d || {};
165
165
  var h, f;
166
166
  switch (s.util.type(m)) {
@@ -170,7 +170,7 @@ var ke = {}, nr = {
170
170
  h = /** @type {Record<string, any>} */
171
171
  {}, d[f] = h;
172
172
  for (var j in m)
173
- m.hasOwnProperty(j) && (h[j] = u(m[j], d));
173
+ m.hasOwnProperty(j) && (h[j] = c(m[j], d));
174
174
  return (
175
175
  /** @type {any} */
176
176
  h
@@ -179,7 +179,7 @@ var ke = {}, nr = {
179
179
  return f = s.util.objId(m), d[f] ? d[f] : (h = [], d[f] = h, /** @type {Array} */
180
180
  /** @type {any} */
181
181
  m.forEach(function(A, b) {
182
- h[b] = u(A, d);
182
+ h[b] = c(A, d);
183
183
  }), /** @type {any} */
184
184
  h);
185
185
  default:
@@ -194,12 +194,12 @@ var ke = {}, nr = {
194
194
  * @param {Element} element
195
195
  * @returns {string}
196
196
  */
197
- getLanguage: function(u) {
198
- for (; u; ) {
199
- var m = o.exec(u.className);
197
+ getLanguage: function(c) {
198
+ for (; c; ) {
199
+ var m = o.exec(c.className);
200
200
  if (m)
201
201
  return m[1].toLowerCase();
202
- u = u.parentElement;
202
+ c = c.parentElement;
203
203
  }
204
204
  return "none";
205
205
  },
@@ -210,8 +210,8 @@ var ke = {}, nr = {
210
210
  * @param {string} language
211
211
  * @returns {void}
212
212
  */
213
- setLanguage: function(u, m) {
214
- u.className = u.className.replace(RegExp(o, "gi"), ""), u.classList.add("language-" + m);
213
+ setLanguage: function(c, m) {
214
+ c.className = c.className.replace(RegExp(o, "gi"), ""), c.classList.add("language-" + m);
215
215
  },
216
216
  /**
217
217
  * Returns the script element that is currently executing.
@@ -231,11 +231,11 @@ var ke = {}, nr = {
231
231
  try {
232
232
  throw new Error();
233
233
  } catch (h) {
234
- var u = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(h.stack) || [])[1];
235
- if (u) {
234
+ var c = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(h.stack) || [])[1];
235
+ if (c) {
236
236
  var m = document.getElementsByTagName("script");
237
237
  for (var d in m)
238
- if (m[d].src == u)
238
+ if (m[d].src == c)
239
239
  return m[d];
240
240
  }
241
241
  return null;
@@ -260,14 +260,14 @@ var ke = {}, nr = {
260
260
  * @param {boolean} [defaultActivation=false]
261
261
  * @returns {boolean}
262
262
  */
263
- isActive: function(u, m, d) {
264
- for (var h = "no-" + m; u; ) {
265
- var f = u.classList;
263
+ isActive: function(c, m, d) {
264
+ for (var h = "no-" + m; c; ) {
265
+ var f = c.classList;
266
266
  if (f.contains(m))
267
267
  return !0;
268
268
  if (f.contains(h))
269
269
  return !1;
270
- u = u.parentElement;
270
+ c = c.parentElement;
271
271
  }
272
272
  return !!d;
273
273
  }
@@ -283,10 +283,10 @@ var ke = {}, nr = {
283
283
  /**
284
284
  * The grammar for plain, unformatted text.
285
285
  */
286
- plain: a,
287
- plaintext: a,
288
- text: a,
289
- txt: a,
286
+ plain: l,
287
+ plaintext: l,
288
+ text: l,
289
+ txt: l,
290
290
  /**
291
291
  * Creates a deep copy of the language with the given id and appends the given tokens.
292
292
  *
@@ -315,8 +315,8 @@ var ke = {}, nr = {
315
315
  * 'color': /\b(?:red|green|blue)\b/
316
316
  * });
317
317
  */
318
- extend: function(u, m) {
319
- var d = s.util.clone(s.languages[u]);
318
+ extend: function(c, m) {
319
+ var d = s.util.clone(s.languages[c]);
320
320
  for (var h in m)
321
321
  d[h] = m[h];
322
322
  return d;
@@ -396,10 +396,10 @@ var ke = {}, nr = {
396
396
  * @returns {Grammar} The new grammar object.
397
397
  * @public
398
398
  */
399
- insertBefore: function(u, m, d, h) {
399
+ insertBefore: function(c, m, d, h) {
400
400
  h = h || /** @type {any} */
401
401
  s.languages;
402
- var f = h[u], j = {};
402
+ var f = h[c], j = {};
403
403
  for (var A in f)
404
404
  if (f.hasOwnProperty(A)) {
405
405
  if (A == m)
@@ -407,20 +407,20 @@ var ke = {}, nr = {
407
407
  d.hasOwnProperty(b) && (j[b] = d[b]);
408
408
  d.hasOwnProperty(A) || (j[A] = f[A]);
409
409
  }
410
- var B = h[u];
411
- return h[u] = j, s.languages.DFS(s.languages, function(P, W) {
412
- W === B && P != u && (this[P] = j);
410
+ var B = h[c];
411
+ return h[c] = j, s.languages.DFS(s.languages, function(P, W) {
412
+ W === B && P != c && (this[P] = j);
413
413
  }), j;
414
414
  },
415
415
  // Traverse a language definition with Depth First Search
416
- DFS: function u(m, d, h, f) {
416
+ DFS: function c(m, d, h, f) {
417
417
  f = f || {};
418
418
  var j = s.util.objId;
419
419
  for (var A in m)
420
420
  if (m.hasOwnProperty(A)) {
421
421
  d.call(m, A, m[A], h || A);
422
422
  var b = m[A], B = s.util.type(b);
423
- B === "Object" && !f[j(b)] ? (f[j(b)] = !0, u(b, d, null, f)) : B === "Array" && !f[j(b)] && (f[j(b)] = !0, u(b, d, A, f));
423
+ B === "Object" && !f[j(b)] ? (f[j(b)] = !0, c(b, d, null, f)) : B === "Array" && !f[j(b)] && (f[j(b)] = !0, c(b, d, A, f));
424
424
  }
425
425
  }
426
426
  },
@@ -437,8 +437,8 @@ var ke = {}, nr = {
437
437
  * @memberof Prism
438
438
  * @public
439
439
  */
440
- highlightAll: function(u, m) {
441
- s.highlightAllUnder(document, u, m);
440
+ highlightAll: function(c, m) {
441
+ s.highlightAllUnder(document, c, m);
442
442
  },
443
443
  /**
444
444
  * Fetches all the descendants of `container` that have a `.language-xxxx` class and then calls
@@ -455,10 +455,10 @@ var ke = {}, nr = {
455
455
  * @memberof Prism
456
456
  * @public
457
457
  */
458
- highlightAllUnder: function(u, m, d) {
458
+ highlightAllUnder: function(c, m, d) {
459
459
  var h = {
460
460
  callback: d,
461
- container: u,
461
+ container: c,
462
462
  selector: 'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'
463
463
  };
464
464
  s.hooks.run("before-highlightall", h), h.elements = Array.prototype.slice.apply(h.container.querySelectorAll(h.selector)), s.hooks.run("before-all-elements-highlight", h);
@@ -493,13 +493,13 @@ var ke = {}, nr = {
493
493
  * @memberof Prism
494
494
  * @public
495
495
  */
496
- highlightElement: function(u, m, d) {
497
- var h = s.util.getLanguage(u), f = s.languages[h];
498
- s.util.setLanguage(u, h);
499
- var j = u.parentElement;
496
+ highlightElement: function(c, m, d) {
497
+ var h = s.util.getLanguage(c), f = s.languages[h];
498
+ s.util.setLanguage(c, h);
499
+ var j = c.parentElement;
500
500
  j && j.nodeName.toLowerCase() === "pre" && s.util.setLanguage(j, h);
501
- var A = u.textContent, b = {
502
- element: u,
501
+ var A = c.textContent, b = {
502
+ element: c,
503
503
  language: h,
504
504
  grammar: f,
505
505
  code: A
@@ -547,15 +547,15 @@ var ke = {}, nr = {
547
547
  * @example
548
548
  * Prism.highlight('var foo = true;', Prism.languages.javascript, 'javascript');
549
549
  */
550
- highlight: function(u, m, d) {
550
+ highlight: function(c, m, d) {
551
551
  var h = {
552
- code: u,
552
+ code: c,
553
553
  grammar: m,
554
554
  language: d
555
555
  };
556
556
  if (s.hooks.run("before-tokenize", h), !h.grammar)
557
557
  throw new Error('The language "' + h.language + '" has no grammar.');
558
- return h.tokens = s.tokenize(h.code, h.grammar), s.hooks.run("after-tokenize", h), l.stringify(s.util.encode(h.tokens), h.language);
558
+ return h.tokens = s.tokenize(h.code, h.grammar), s.hooks.run("after-tokenize", h), a.stringify(s.util.encode(h.tokens), h.language);
559
559
  },
560
560
  /**
561
561
  * This is the heart of Prism, and the most low-level function you can use. It accepts a string of text as input
@@ -581,7 +581,7 @@ var ke = {}, nr = {
581
581
  * }
582
582
  * });
583
583
  */
584
- tokenize: function(u, m) {
584
+ tokenize: function(c, m) {
585
585
  var d = m.rest;
586
586
  if (d) {
587
587
  for (var h in d)
@@ -589,7 +589,7 @@ var ke = {}, nr = {
589
589
  delete m.rest;
590
590
  }
591
591
  var f = new g();
592
- return _(f, f.head, u), c(u, f, m, f.head, 0), L(f);
592
+ return _(f, f.head, c), u(c, f, m, f.head, 0), L(f);
593
593
  },
594
594
  /**
595
595
  * @namespace
@@ -610,9 +610,9 @@ var ke = {}, nr = {
610
610
  * @param {HookCallback} callback The callback function which is given environment variables.
611
611
  * @public
612
612
  */
613
- add: function(u, m) {
613
+ add: function(c, m) {
614
614
  var d = s.hooks.all;
615
- d[u] = d[u] || [], d[u].push(m);
615
+ d[c] = d[c] || [], d[c].push(m);
616
616
  },
617
617
  /**
618
618
  * Runs a hook invoking all registered callbacks with the given environment variables.
@@ -623,31 +623,31 @@ var ke = {}, nr = {
623
623
  * @param {Object<string, any>} env The environment variables of the hook passed to all callbacks registered.
624
624
  * @public
625
625
  */
626
- run: function(u, m) {
627
- var d = s.hooks.all[u];
626
+ run: function(c, m) {
627
+ var d = s.hooks.all[c];
628
628
  if (!(!d || !d.length))
629
629
  for (var h = 0, f; f = d[h++]; )
630
630
  f(m);
631
631
  }
632
632
  },
633
- Token: l
633
+ Token: a
634
634
  };
635
635
  n.Prism = s;
636
- function l(u, m, d, h) {
637
- this.type = u, this.content = m, this.alias = d, this.length = (h || "").length | 0;
636
+ function a(c, m, d, h) {
637
+ this.type = c, this.content = m, this.alias = d, this.length = (h || "").length | 0;
638
638
  }
639
- l.stringify = function u(m, d) {
639
+ a.stringify = function c(m, d) {
640
640
  if (typeof m == "string")
641
641
  return m;
642
642
  if (Array.isArray(m)) {
643
643
  var h = "";
644
644
  return m.forEach(function(B) {
645
- h += u(B, d);
645
+ h += c(B, d);
646
646
  }), h;
647
647
  }
648
648
  var f = {
649
649
  type: m.type,
650
- content: u(m.content, d),
650
+ content: c(m.content, d),
651
651
  tag: "span",
652
652
  classes: ["token", m.type],
653
653
  attributes: {},
@@ -659,16 +659,16 @@ var ke = {}, nr = {
659
659
  A += " " + b + '="' + (f.attributes[b] || "").replace(/"/g, "&quot;") + '"';
660
660
  return "<" + f.tag + ' class="' + f.classes.join(" ") + '"' + A + ">" + f.content + "</" + f.tag + ">";
661
661
  };
662
- function p(u, m, d, h) {
663
- u.lastIndex = m;
664
- var f = u.exec(d);
662
+ function p(c, m, d, h) {
663
+ c.lastIndex = m;
664
+ var f = c.exec(d);
665
665
  if (f && h && f[1]) {
666
666
  var j = f[1].length;
667
667
  f.index += j, f[0] = f[0].slice(j);
668
668
  }
669
669
  return f;
670
670
  }
671
- function c(u, m, d, h, f, j) {
671
+ function u(c, m, d, h, f, j) {
672
672
  for (var A in d)
673
673
  if (!(!d.hasOwnProperty(A) || !d[A])) {
674
674
  var b = d[A];
@@ -683,34 +683,34 @@ var ke = {}, nr = {
683
683
  }
684
684
  for (var Me = P.pattern || P, D = h.next, U = f; D !== m.tail && !(j && U >= j.reach); U += D.value.length, D = D.next) {
685
685
  var re = D.value;
686
- if (m.length > u.length)
686
+ if (m.length > c.length)
687
687
  return;
688
- if (!(re instanceof l)) {
688
+ if (!(re instanceof a)) {
689
689
  var le = 1, M;
690
690
  if (Oe) {
691
- if (M = p(Me, U, u, Fe), !M || M.index >= u.length)
691
+ if (M = p(Me, U, c, Fe), !M || M.index >= c.length)
692
692
  break;
693
693
  var me = M.index, Nt = M.index + M[0].length, Z = U;
694
694
  for (Z += D.value.length; me >= Z; )
695
695
  D = D.next, Z += D.value.length;
696
- if (Z -= D.value.length, U = Z, D.value instanceof l)
696
+ if (Z -= D.value.length, U = Z, D.value instanceof a)
697
697
  continue;
698
698
  for (var oe = D; oe !== m.tail && (Z < Nt || typeof oe.value == "string"); oe = oe.next)
699
699
  le++, Z += oe.value.length;
700
- le--, re = u.slice(U, Z), M.index -= U;
700
+ le--, re = c.slice(U, Z), M.index -= U;
701
701
  } else if (M = p(Me, 0, re, Fe), !M)
702
702
  continue;
703
703
  var me = M.index, pe = M[0], je = re.slice(0, me), Ge = re.slice(me + pe.length), be = U + re.length;
704
704
  j && be > j.reach && (j.reach = be);
705
705
  var ue = D.prev;
706
706
  je && (ue = _(m, ue, je), U += je.length), E(m, ue, le);
707
- var xt = new l(A, W ? s.tokenize(pe, W) : pe, It, pe);
707
+ var xt = new a(A, W ? s.tokenize(pe, W) : pe, It, pe);
708
708
  if (D = _(m, ue, xt), Ge && _(m, D, Ge), le > 1) {
709
709
  var ye = {
710
710
  cause: A + "," + B,
711
711
  reach: be
712
712
  };
713
- c(u, m, d, D.prev, U, ye), j && ye.reach > j.reach && (j.reach = ye.reach);
713
+ u(c, m, d, D.prev, U, ye), j && ye.reach > j.reach && (j.reach = ye.reach);
714
714
  }
715
715
  }
716
716
  }
@@ -718,26 +718,26 @@ var ke = {}, nr = {
718
718
  }
719
719
  }
720
720
  function g() {
721
- var u = { value: null, prev: null, next: null }, m = { value: null, prev: u, next: null };
722
- u.next = m, this.head = u, this.tail = m, this.length = 0;
721
+ var c = { value: null, prev: null, next: null }, m = { value: null, prev: c, next: null };
722
+ c.next = m, this.head = c, this.tail = m, this.length = 0;
723
723
  }
724
- function _(u, m, d) {
724
+ function _(c, m, d) {
725
725
  var h = m.next, f = { value: d, prev: m, next: h };
726
- return m.next = f, h.prev = f, u.length++, f;
726
+ return m.next = f, h.prev = f, c.length++, f;
727
727
  }
728
- function E(u, m, d) {
729
- for (var h = m.next, f = 0; f < d && h !== u.tail; f++)
728
+ function E(c, m, d) {
729
+ for (var h = m.next, f = 0; f < d && h !== c.tail; f++)
730
730
  h = h.next;
731
- m.next = h, h.prev = m, u.length -= f;
731
+ m.next = h, h.prev = m, c.length -= f;
732
732
  }
733
- function L(u) {
734
- for (var m = [], d = u.head.next; d !== u.tail; )
733
+ function L(c) {
734
+ for (var m = [], d = c.head.next; d !== c.tail; )
735
735
  m.push(d.value), d = d.next;
736
736
  return m;
737
737
  }
738
738
  if (!n.document)
739
- return n.addEventListener && (s.disableWorkerMessageHandler || n.addEventListener("message", function(u) {
740
- var m = JSON.parse(u.data), d = m.language, h = m.code, f = m.immediateClose;
739
+ return n.addEventListener && (s.disableWorkerMessageHandler || n.addEventListener("message", function(c) {
740
+ var m = JSON.parse(c.data), d = m.language, h = m.code, f = m.immediateClose;
741
741
  n.postMessage(s.highlight(h, s.languages[d], d)), f && n.close();
742
742
  }, !1)), s;
743
743
  var y = s.util.currentScript();
@@ -843,31 +843,31 @@ var ke = {}, nr = {
843
843
  * addInlined('style', 'css');
844
844
  */
845
845
  value: function(o, i) {
846
- var a = {};
847
- a["language-" + i] = {
846
+ var l = {};
847
+ l["language-" + i] = {
848
848
  pattern: /(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,
849
849
  lookbehind: !0,
850
850
  inside: r.languages[i]
851
- }, a.cdata = /^<!\[CDATA\[|\]\]>$/i;
851
+ }, l.cdata = /^<!\[CDATA\[|\]\]>$/i;
852
852
  var s = {
853
853
  "included-cdata": {
854
854
  pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
855
- inside: a
855
+ inside: l
856
856
  }
857
857
  };
858
858
  s["language-" + i] = {
859
859
  pattern: /[\s\S]+/,
860
860
  inside: r.languages[i]
861
861
  };
862
- var l = {};
863
- l[o] = {
862
+ var a = {};
863
+ a[o] = {
864
864
  pattern: RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g, function() {
865
865
  return o;
866
866
  }), "i"),
867
867
  lookbehind: !0,
868
868
  greedy: !0,
869
869
  inside: s
870
- }, r.languages.insertBefore("markup", "cdata", l);
870
+ }, r.languages.insertBefore("markup", "cdata", a);
871
871
  }
872
872
  }), Object.defineProperty(r.languages.markup.tag, "addAttribute", {
873
873
  /**
@@ -1131,7 +1131,7 @@ var ke = {}, nr = {
1131
1131
  Element.prototype.matches || (Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector);
1132
1132
  var n = "Loading…", o = function(y, w) {
1133
1133
  return "✖ Error " + y + " while fetching file: " + w;
1134
- }, i = "✖ Error: File does not exist or is empty", a = {
1134
+ }, i = "✖ Error: File does not exist or is empty", l = {
1135
1135
  js: "javascript",
1136
1136
  py: "python",
1137
1137
  rb: "ruby",
@@ -1141,18 +1141,18 @@ var ke = {}, nr = {
1141
1141
  bat: "batch",
1142
1142
  h: "c",
1143
1143
  tex: "latex"
1144
- }, s = "data-src-status", l = "loading", p = "loaded", c = "failed", g = "pre[data-src]:not([" + s + '="' + p + '"]):not([' + s + '="' + l + '"])';
1144
+ }, s = "data-src-status", a = "loading", p = "loaded", u = "failed", g = "pre[data-src]:not([" + s + '="' + p + '"]):not([' + s + '="' + a + '"])';
1145
1145
  function _(y, w, T) {
1146
- var u = new XMLHttpRequest();
1147
- u.open("GET", y, !0), u.onreadystatechange = function() {
1148
- u.readyState == 4 && (u.status < 400 && u.responseText ? w(u.responseText) : u.status >= 400 ? T(o(u.status, u.statusText)) : T(i));
1149
- }, u.send(null);
1146
+ var c = new XMLHttpRequest();
1147
+ c.open("GET", y, !0), c.onreadystatechange = function() {
1148
+ c.readyState == 4 && (c.status < 400 && c.responseText ? w(c.responseText) : c.status >= 400 ? T(o(c.status, c.statusText)) : T(i));
1149
+ }, c.send(null);
1150
1150
  }
1151
1151
  function E(y) {
1152
1152
  var w = /^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(y || "");
1153
1153
  if (w) {
1154
- var T = Number(w[1]), u = w[2], m = w[3];
1155
- return u ? m ? [T, Number(m)] : [T, void 0] : [T, T];
1154
+ var T = Number(w[1]), c = w[2], m = w[3];
1155
+ return c ? m ? [T, Number(m)] : [T, void 0] : [T, T];
1156
1156
  }
1157
1157
  }
1158
1158
  r.hooks.add("before-highlightall", function(y) {
@@ -1163,18 +1163,18 @@ var ke = {}, nr = {
1163
1163
  y.element
1164
1164
  );
1165
1165
  if (w.matches(g)) {
1166
- y.code = "", w.setAttribute(s, l);
1166
+ y.code = "", w.setAttribute(s, a);
1167
1167
  var T = w.appendChild(document.createElement("CODE"));
1168
1168
  T.textContent = n;
1169
- var u = w.getAttribute("data-src"), m = y.language;
1169
+ var c = w.getAttribute("data-src"), m = y.language;
1170
1170
  if (m === "none") {
1171
- var d = (/\.(\w+)$/.exec(u) || [, "none"])[1];
1172
- m = a[d] || d;
1171
+ var d = (/\.(\w+)$/.exec(c) || [, "none"])[1];
1172
+ m = l[d] || d;
1173
1173
  }
1174
1174
  r.util.setLanguage(T, m), r.util.setLanguage(w, m);
1175
1175
  var h = r.plugins.autoloader;
1176
1176
  h && h.loadLanguages(m), _(
1177
- u,
1177
+ c,
1178
1178
  function(f) {
1179
1179
  w.setAttribute(s, p);
1180
1180
  var j = E(w.getAttribute("data-range"));
@@ -1186,7 +1186,7 @@ var ke = {}, nr = {
1186
1186
  T.textContent = f, r.highlightElement(T);
1187
1187
  },
1188
1188
  function(f) {
1189
- w.setAttribute(s, c), T.textContent = f;
1189
+ w.setAttribute(s, u), T.textContent = f;
1190
1190
  }
1191
1191
  );
1192
1192
  }
@@ -1199,7 +1199,7 @@ var ke = {}, nr = {
1199
1199
  * @param {ParentNode} [container=document]
1200
1200
  */
1201
1201
  highlight: function(w) {
1202
- for (var T = (w || document).querySelectorAll(g), u = 0, m; m = T[u++]; )
1202
+ for (var T = (w || document).querySelectorAll(g), c = 0, m; m = T[c++]; )
1203
1203
  r.highlightElement(m);
1204
1204
  }
1205
1205
  };
@@ -1233,30 +1233,30 @@ const or = /* @__PURE__ */ G({
1233
1233
  setup(e) {
1234
1234
  const t = e;
1235
1235
  ce.manual = !0;
1236
- const r = Ft(!1), n = Object.keys(_e.languages).reduce((l, p) => {
1237
- const c = _e.languages[p].alias || [];
1238
- return [...l, p, ...Array.isArray(c) ? c : [c]];
1236
+ const r = Ft(!1), n = Object.keys(_e.languages).reduce((a, p) => {
1237
+ const u = _e.languages[p].alias || [];
1238
+ return [...a, p, ...Array.isArray(u) ? u : [u]];
1239
1239
  }, []).sort();
1240
- function o(l) {
1241
- r.value = !0, ce.languages[l.language] || console.warn(`Prism: the language “${l.language}” isn’t enabled.`), l.preElement.classList.contains(`language-${l.language}`) || l.preElement.classList.add(`language-${l.language}`), l.codeElement.innerHTML = i(l.code), ce.highlightElement(l.codeElement), r.value = !1;
1240
+ function o(a) {
1241
+ r.value = !0, ce.languages[a.language] || console.warn(`Prism: the language “${a.language}” isn’t enabled.`), a.preElement.classList.contains(`language-${a.language}`) || a.preElement.classList.add(`language-${a.language}`), a.codeElement.innerHTML = i(a.code), ce.highlightElement(a.codeElement), r.value = !1;
1242
1242
  }
1243
- const i = (l) => l.replaceAll("<", "&lt;").replaceAll(">", "&gt;").replaceAll('"', "&quot;").replaceAll("'", "&#039;"), a = Se(() => `document-code-block-${t.codeBlockIndex}`), s = Se(() => {
1244
- const l = t.lines.flatMap((p) => p.text).join("");
1245
- return l.endsWith(`
1246
- `) && !t.isSingleLine ? l.slice(0, -1) : l;
1243
+ const i = (a) => a.replaceAll("<", "&lt;").replaceAll(">", "&gt;").replaceAll('"', "&quot;").replaceAll("'", "&#039;"), l = Se(() => `document-code-block-${t.codeBlockIndex}`), s = Se(() => {
1244
+ const a = t.lines.flatMap((p) => p.text).join("");
1245
+ return a.endsWith(`
1246
+ `) && !t.isSingleLine ? a.slice(0, -1) : a;
1247
1247
  });
1248
- return Ot(() => t.lang, async (l) => {
1249
- if (n.includes(l))
1248
+ return Ot(() => t.lang, async (a) => {
1249
+ if (n.includes(a))
1250
1250
  try {
1251
- await tr(/* @__PURE__ */ Object.assign({ "../../../node_modules/prismjs/components/prism-abap.min.js": () => import("./prism-abap.min-5dd8af1f.js"), "../../../node_modules/prismjs/components/prism-abnf.min.js": () => import("./prism-abnf.min-c3c3a9d9.js"), "../../../node_modules/prismjs/components/prism-actionscript.min.js": () => import("./prism-actionscript.min-bd2d6afb.js"), "../../../node_modules/prismjs/components/prism-ada.min.js": () => import("./prism-ada.min-316d6d00.js"), "../../../node_modules/prismjs/components/prism-agda.min.js": () => import("./prism-agda.min-a6b4d217.js"), "../../../node_modules/prismjs/components/prism-al.min.js": () => import("./prism-al.min-f12e9359.js"), "../../../node_modules/prismjs/components/prism-antlr4.min.js": () => import("./prism-antlr4.min-850b07d5.js"), "../../../node_modules/prismjs/components/prism-apacheconf.min.js": () => import("./prism-apacheconf.min-948db440.js"), "../../../node_modules/prismjs/components/prism-apex.min.js": () => import("./prism-apex.min-cb3fec7c.js"), "../../../node_modules/prismjs/components/prism-apl.min.js": () => import("./prism-apl.min-98159dbe.js"), "../../../node_modules/prismjs/components/prism-applescript.min.js": () => import("./prism-applescript.min-feb2957e.js"), "../../../node_modules/prismjs/components/prism-aql.min.js": () => import("./prism-aql.min-d24bd57a.js"), "../../../node_modules/prismjs/components/prism-arduino.min.js": () => import("./prism-arduino.min-497e5615.js"), "../../../node_modules/prismjs/components/prism-arff.min.js": () => import("./prism-arff.min-54f15f52.js"), "../../../node_modules/prismjs/components/prism-armasm.min.js": () => import("./prism-armasm.min-60c6ead7.js"), "../../../node_modules/prismjs/components/prism-arturo.min.js": () => import("./prism-arturo.min-699e210e.js"), "../../../node_modules/prismjs/components/prism-asciidoc.min.js": () => import("./prism-asciidoc.min-f4622897.js"), "../../../node_modules/prismjs/components/prism-asm6502.min.js": () => import("./prism-asm6502.min-d16ec8e7.js"), "../../../node_modules/prismjs/components/prism-asmatmel.min.js": () => import("./prism-asmatmel.min-ebb34761.js"), "../../../node_modules/prismjs/components/prism-aspnet.min.js": () => import("./prism-aspnet.min-02de9064.js"), "../../../node_modules/prismjs/components/prism-autohotkey.min.js": () => import("./prism-autohotkey.min-58278b6c.js"), "../../../node_modules/prismjs/components/prism-autoit.min.js": () => import("./prism-autoit.min-bb495ed7.js"), "../../../node_modules/prismjs/components/prism-avisynth.min.js": () => import("./prism-avisynth.min-21dd4dbf.js"), "../../../node_modules/prismjs/components/prism-avro-idl.min.js": () => import("./prism-avro-idl.min-37aa0190.js"), "../../../node_modules/prismjs/components/prism-awk.min.js": () => import("./prism-awk.min-8362995b.js"), "../../../node_modules/prismjs/components/prism-bash.min.js": () => import("./prism-bash.min-3a888b73.js"), "../../../node_modules/prismjs/components/prism-basic.min.js": () => import("./prism-basic.min-70837013.js"), "../../../node_modules/prismjs/components/prism-batch.min.js": () => import("./prism-batch.min-e22008b6.js"), "../../../node_modules/prismjs/components/prism-bbcode.min.js": () => import("./prism-bbcode.min-1be070b7.js"), "../../../node_modules/prismjs/components/prism-bbj.min.js": () => import("./prism-bbj.min-c8595d55.js"), "../../../node_modules/prismjs/components/prism-bicep.min.js": () => import("./prism-bicep.min-b958c50e.js"), "../../../node_modules/prismjs/components/prism-birb.min.js": () => import("./prism-birb.min-1790d3b7.js"), "../../../node_modules/prismjs/components/prism-bison.min.js": () => import("./prism-bison.min-58efa25c.js"), "../../../node_modules/prismjs/components/prism-bnf.min.js": () => import("./prism-bnf.min-8a47cccc.js"), "../../../node_modules/prismjs/components/prism-bqn.min.js": () => import("./prism-bqn.min-7536e012.js"), "../../../node_modules/prismjs/components/prism-brainfuck.min.js": () => import("./prism-brainfuck.min-c9364b5e.js"), "../../../node_modules/prismjs/components/prism-brightscript.min.js": () => import("./prism-brightscript.min-d8aa03cd.js"), "../../../node_modules/prismjs/components/prism-bro.min.js": () => import("./prism-bro.min-6e2db8a0.js"), "../../../node_modules/prismjs/components/prism-bsl.min.js": () => import("./prism-bsl.min-6da4b323.js"), "../../../node_modules/prismjs/components/prism-c.min.js": () => import("./prism-c.min-b845f634.js"), "../../../node_modules/prismjs/components/prism-cfscript.min.js": () => import("./prism-cfscript.min-e626d6e7.js"), "../../../node_modules/prismjs/components/prism-chaiscript.min.js": () => import("./prism-chaiscript.min-59cf3b38.js"), "../../../node_modules/prismjs/components/prism-cil.min.js": () => import("./prism-cil.min-60db77c1.js"), "../../../node_modules/prismjs/components/prism-cilkc.min.js": () => import("./prism-cilkc.min-4c71300b.js"), "../../../node_modules/prismjs/components/prism-cilkcpp.min.js": () => import("./prism-cilkcpp.min-3963bb02.js"), "../../../node_modules/prismjs/components/prism-clike.min.js": () => import("./prism-clike.min-7115c549.js"), "../../../node_modules/prismjs/components/prism-clojure.min.js": () => import("./prism-clojure.min-8aa86fbd.js"), "../../../node_modules/prismjs/components/prism-cmake.min.js": () => import("./prism-cmake.min-194d339e.js"), "../../../node_modules/prismjs/components/prism-cobol.min.js": () => import("./prism-cobol.min-4f11593e.js"), "../../../node_modules/prismjs/components/prism-coffeescript.min.js": () => import("./prism-coffeescript.min-c3968b8f.js"), "../../../node_modules/prismjs/components/prism-concurnas.min.js": () => import("./prism-concurnas.min-5073257b.js"), "../../../node_modules/prismjs/components/prism-cooklang.min.js": () => import("./prism-cooklang.min-39421cc9.js"), "../../../node_modules/prismjs/components/prism-coq.min.js": () => import("./prism-coq.min-b08d301c.js"), "../../../node_modules/prismjs/components/prism-core.min.js": () => import("./prism-core.min-57bbc1fe.js").then((p) => p.p), "../../../node_modules/prismjs/components/prism-cpp.min.js": () => import("./prism-cpp.min-ac230d87.js"), "../../../node_modules/prismjs/components/prism-crystal.min.js": () => import("./prism-crystal.min-13116708.js"), "../../../node_modules/prismjs/components/prism-csharp.min.js": () => import("./prism-csharp.min-2a7aa1d7.js"), "../../../node_modules/prismjs/components/prism-cshtml.min.js": () => import("./prism-cshtml.min-e0dea03d.js"), "../../../node_modules/prismjs/components/prism-csp.min.js": () => import("./prism-csp.min-9632aa13.js"), "../../../node_modules/prismjs/components/prism-css-extras.min.js": () => import("./prism-css-extras.min-b8bed0b9.js"), "../../../node_modules/prismjs/components/prism-css.min.js": () => import("./prism-css.min-e38589a9.js"), "../../../node_modules/prismjs/components/prism-csv.min.js": () => import("./prism-csv.min-59c9f7fe.js"), "../../../node_modules/prismjs/components/prism-cue.min.js": () => import("./prism-cue.min-a0471d75.js"), "../../../node_modules/prismjs/components/prism-cypher.min.js": () => import("./prism-cypher.min-c0e5a4ac.js"), "../../../node_modules/prismjs/components/prism-d.min.js": () => import("./prism-d.min-fe73d282.js"), "../../../node_modules/prismjs/components/prism-dart.min.js": () => import("./prism-dart.min-79822d61.js"), "../../../node_modules/prismjs/components/prism-dataweave.min.js": () => import("./prism-dataweave.min-ac7788bb.js"), "../../../node_modules/prismjs/components/prism-dax.min.js": () => import("./prism-dax.min-10526a78.js"), "../../../node_modules/prismjs/components/prism-dhall.min.js": () => import("./prism-dhall.min-1d8f852b.js"), "../../../node_modules/prismjs/components/prism-diff.min.js": () => import("./prism-diff.min-58a65b3c.js"), "../../../node_modules/prismjs/components/prism-django.min.js": () => import("./prism-django.min-966e5f65.js"), "../../../node_modules/prismjs/components/prism-dns-zone-file.min.js": () => import("./prism-dns-zone-file.min-6884205e.js"), "../../../node_modules/prismjs/components/prism-docker.min.js": () => import("./prism-docker.min-2330af65.js"), "../../../node_modules/prismjs/components/prism-dot.min.js": () => import("./prism-dot.min-b7040a53.js"), "../../../node_modules/prismjs/components/prism-ebnf.min.js": () => import("./prism-ebnf.min-72a1d666.js"), "../../../node_modules/prismjs/components/prism-editorconfig.min.js": () => import("./prism-editorconfig.min-f0a114f7.js"), "../../../node_modules/prismjs/components/prism-eiffel.min.js": () => import("./prism-eiffel.min-49594bdc.js"), "../../../node_modules/prismjs/components/prism-ejs.min.js": () => import("./prism-ejs.min-a2f2c9ea.js"), "../../../node_modules/prismjs/components/prism-elixir.min.js": () => import("./prism-elixir.min-ba69265c.js"), "../../../node_modules/prismjs/components/prism-elm.min.js": () => import("./prism-elm.min-3290c07f.js"), "../../../node_modules/prismjs/components/prism-erb.min.js": () => import("./prism-erb.min-51922f18.js"), "../../../node_modules/prismjs/components/prism-erlang.min.js": () => import("./prism-erlang.min-1847c6a7.js"), "../../../node_modules/prismjs/components/prism-etlua.min.js": () => import("./prism-etlua.min-d9358902.js"), "../../../node_modules/prismjs/components/prism-excel-formula.min.js": () => import("./prism-excel-formula.min-0e717178.js"), "../../../node_modules/prismjs/components/prism-factor.min.js": () => import("./prism-factor.min-0ea41495.js"), "../../../node_modules/prismjs/components/prism-false.min.js": () => import("./prism-false.min-d1e3e399.js"), "../../../node_modules/prismjs/components/prism-firestore-security-rules.min.js": () => import("./prism-firestore-security-rules.min-2230fbf2.js"), "../../../node_modules/prismjs/components/prism-flow.min.js": () => import("./prism-flow.min-4379ef1a.js"), "../../../node_modules/prismjs/components/prism-fortran.min.js": () => import("./prism-fortran.min-32dee11f.js"), "../../../node_modules/prismjs/components/prism-fsharp.min.js": () => import("./prism-fsharp.min-e4eccb74.js"), "../../../node_modules/prismjs/components/prism-ftl.min.js": () => import("./prism-ftl.min-cf603b01.js"), "../../../node_modules/prismjs/components/prism-gap.min.js": () => import("./prism-gap.min-3eca85c2.js"), "../../../node_modules/prismjs/components/prism-gcode.min.js": () => import("./prism-gcode.min-7be81032.js"), "../../../node_modules/prismjs/components/prism-gdscript.min.js": () => import("./prism-gdscript.min-a7d78975.js"), "../../../node_modules/prismjs/components/prism-gedcom.min.js": () => import("./prism-gedcom.min-364aaac3.js"), "../../../node_modules/prismjs/components/prism-gettext.min.js": () => import("./prism-gettext.min-d6e41f3f.js"), "../../../node_modules/prismjs/components/prism-gherkin.min.js": () => import("./prism-gherkin.min-b8bce925.js"), "../../../node_modules/prismjs/components/prism-git.min.js": () => import("./prism-git.min-d984e2ae.js"), "../../../node_modules/prismjs/components/prism-glsl.min.js": () => import("./prism-glsl.min-5a4d82d4.js"), "../../../node_modules/prismjs/components/prism-gml.min.js": () => import("./prism-gml.min-b91c603d.js"), "../../../node_modules/prismjs/components/prism-gn.min.js": () => import("./prism-gn.min-b37dd2cf.js"), "../../../node_modules/prismjs/components/prism-go-module.min.js": () => import("./prism-go-module.min-e9a704bf.js"), "../../../node_modules/prismjs/components/prism-go.min.js": () => import("./prism-go.min-c7322c64.js"), "../../../node_modules/prismjs/components/prism-gradle.min.js": () => import("./prism-gradle.min-1a828d06.js"), "../../../node_modules/prismjs/components/prism-graphql.min.js": () => import("./prism-graphql.min-e5fddf96.js"), "../../../node_modules/prismjs/components/prism-groovy.min.js": () => import("./prism-groovy.min-6999a453.js"), "../../../node_modules/prismjs/components/prism-haml.min.js": () => import("./prism-haml.min-06d636e1.js"), "../../../node_modules/prismjs/components/prism-handlebars.min.js": () => import("./prism-handlebars.min-d59c233b.js"), "../../../node_modules/prismjs/components/prism-haskell.min.js": () => import("./prism-haskell.min-2d474195.js"), "../../../node_modules/prismjs/components/prism-haxe.min.js": () => import("./prism-haxe.min-0b47bda7.js"), "../../../node_modules/prismjs/components/prism-hcl.min.js": () => import("./prism-hcl.min-dd93c4fa.js"), "../../../node_modules/prismjs/components/prism-hlsl.min.js": () => import("./prism-hlsl.min-90bc1513.js"), "../../../node_modules/prismjs/components/prism-hoon.min.js": () => import("./prism-hoon.min-5ac6535d.js"), "../../../node_modules/prismjs/components/prism-hpkp.min.js": () => import("./prism-hpkp.min-ccf08017.js"), "../../../node_modules/prismjs/components/prism-hsts.min.js": () => import("./prism-hsts.min-0dd9146f.js"), "../../../node_modules/prismjs/components/prism-http.min.js": () => import("./prism-http.min-10b32777.js"), "../../../node_modules/prismjs/components/prism-ichigojam.min.js": () => import("./prism-ichigojam.min-144f1b4b.js"), "../../../node_modules/prismjs/components/prism-icon.min.js": () => import("./prism-icon.min-22bb1195.js"), "../../../node_modules/prismjs/components/prism-icu-message-format.min.js": () => import("./prism-icu-message-format.min-b2ecdff3.js"), "../../../node_modules/prismjs/components/prism-idris.min.js": () => import("./prism-idris.min-920ad8df.js"), "../../../node_modules/prismjs/components/prism-iecst.min.js": () => import("./prism-iecst.min-d5ab1f6c.js"), "../../../node_modules/prismjs/components/prism-ignore.min.js": () => import("./prism-ignore.min-272b6ccf.js"), "../../../node_modules/prismjs/components/prism-inform7.min.js": () => import("./prism-inform7.min-22b438d7.js"), "../../../node_modules/prismjs/components/prism-ini.min.js": () => import("./prism-ini.min-b9585cc2.js"), "../../../node_modules/prismjs/components/prism-io.min.js": () => import("./prism-io.min-bc03d63b.js"), "../../../node_modules/prismjs/components/prism-j.min.js": () => import("./prism-j.min-2dc34683.js"), "../../../node_modules/prismjs/components/prism-java.min.js": () => import("./prism-java.min-2cfc90de.js"), "../../../node_modules/prismjs/components/prism-javadoc.min.js": () => import("./prism-javadoc.min-12ef12d8.js"), "../../../node_modules/prismjs/components/prism-javadoclike.min.js": () => import("./prism-javadoclike.min-e07933fc.js"), "../../../node_modules/prismjs/components/prism-javascript.min.js": () => import("./prism-javascript.min-03c8bcee.js"), "../../../node_modules/prismjs/components/prism-javastacktrace.min.js": () => import("./prism-javastacktrace.min-d3186b3e.js"), "../../../node_modules/prismjs/components/prism-jexl.min.js": () => import("./prism-jexl.min-084d69d8.js"), "../../../node_modules/prismjs/components/prism-jolie.min.js": () => import("./prism-jolie.min-466d4cf7.js"), "../../../node_modules/prismjs/components/prism-jq.min.js": () => import("./prism-jq.min-3daf478a.js"), "../../../node_modules/prismjs/components/prism-js-extras.min.js": () => import("./prism-js-extras.min-a225cee9.js"), "../../../node_modules/prismjs/components/prism-js-templates.min.js": () => import("./prism-js-templates.min-c950373d.js"), "../../../node_modules/prismjs/components/prism-jsdoc.min.js": () => import("./prism-jsdoc.min-02975619.js"), "../../../node_modules/prismjs/components/prism-json.min.js": () => import("./prism-json.min-fa2dced5.js"), "../../../node_modules/prismjs/components/prism-json5.min.js": () => import("./prism-json5.min-3917dd44.js"), "../../../node_modules/prismjs/components/prism-jsonp.min.js": () => import("./prism-jsonp.min-a0f4106e.js"), "../../../node_modules/prismjs/components/prism-jsstacktrace.min.js": () => import("./prism-jsstacktrace.min-bc3f3759.js"), "../../../node_modules/prismjs/components/prism-jsx.min.js": () => import("./prism-jsx.min-8af1efbf.js"), "../../../node_modules/prismjs/components/prism-julia.min.js": () => import("./prism-julia.min-cc71d15e.js"), "../../../node_modules/prismjs/components/prism-keepalived.min.js": () => import("./prism-keepalived.min-1428eb2f.js"), "../../../node_modules/prismjs/components/prism-keyman.min.js": () => import("./prism-keyman.min-3b419e70.js"), "../../../node_modules/prismjs/components/prism-kotlin.min.js": () => import("./prism-kotlin.min-ecbf8553.js"), "../../../node_modules/prismjs/components/prism-kumir.min.js": () => import("./prism-kumir.min-624860b6.js"), "../../../node_modules/prismjs/components/prism-kusto.min.js": () => import("./prism-kusto.min-67b0f58b.js"), "../../../node_modules/prismjs/components/prism-latex.min.js": () => import("./prism-latex.min-af145af5.js"), "../../../node_modules/prismjs/components/prism-latte.min.js": () => import("./prism-latte.min-b9a60122.js"), "../../../node_modules/prismjs/components/prism-less.min.js": () => import("./prism-less.min-3a3313ed.js"), "../../../node_modules/prismjs/components/prism-lilypond.min.js": () => import("./prism-lilypond.min-b0ed8db8.js"), "../../../node_modules/prismjs/components/prism-linker-script.min.js": () => import("./prism-linker-script.min-dc3fc5ad.js"), "../../../node_modules/prismjs/components/prism-liquid.min.js": () => import("./prism-liquid.min-86fa81e6.js"), "../../../node_modules/prismjs/components/prism-lisp.min.js": () => import("./prism-lisp.min-cae2f73f.js"), "../../../node_modules/prismjs/components/prism-livescript.min.js": () => import("./prism-livescript.min-b5d9d700.js"), "../../../node_modules/prismjs/components/prism-llvm.min.js": () => import("./prism-llvm.min-2b4a3e33.js"), "../../../node_modules/prismjs/components/prism-log.min.js": () => import("./prism-log.min-e9ba9fa2.js"), "../../../node_modules/prismjs/components/prism-lolcode.min.js": () => import("./prism-lolcode.min-1d0782a6.js"), "../../../node_modules/prismjs/components/prism-lua.min.js": () => import("./prism-lua.min-9c7e1242.js"), "../../../node_modules/prismjs/components/prism-magma.min.js": () => import("./prism-magma.min-6b08ba18.js"), "../../../node_modules/prismjs/components/prism-makefile.min.js": () => import("./prism-makefile.min-10c204c7.js"), "../../../node_modules/prismjs/components/prism-markdown.min.js": () => import("./prism-markdown.min-97e74eb9.js"), "../../../node_modules/prismjs/components/prism-markup-templating.min.js": () => import("./prism-markup-templating.min-c55d1b76.js"), "../../../node_modules/prismjs/components/prism-markup.min.js": () => import("./prism-markup.min-849389d5.js"), "../../../node_modules/prismjs/components/prism-mata.min.js": () => import("./prism-mata.min-1bbaed90.js"), "../../../node_modules/prismjs/components/prism-matlab.min.js": () => import("./prism-matlab.min-c787c897.js"), "../../../node_modules/prismjs/components/prism-maxscript.min.js": () => import("./prism-maxscript.min-8ff24836.js"), "../../../node_modules/prismjs/components/prism-mel.min.js": () => import("./prism-mel.min-e8ff632f.js"), "../../../node_modules/prismjs/components/prism-mermaid.min.js": () => import("./prism-mermaid.min-77fee473.js"), "../../../node_modules/prismjs/components/prism-metafont.min.js": () => import("./prism-metafont.min-94223e4b.js"), "../../../node_modules/prismjs/components/prism-mizar.min.js": () => import("./prism-mizar.min-50230be0.js"), "../../../node_modules/prismjs/components/prism-mongodb.min.js": () => import("./prism-mongodb.min-9790bcfd.js"), "../../../node_modules/prismjs/components/prism-monkey.min.js": () => import("./prism-monkey.min-5a1eb1ff.js"), "../../../node_modules/prismjs/components/prism-moonscript.min.js": () => import("./prism-moonscript.min-ed957c18.js"), "../../../node_modules/prismjs/components/prism-n1ql.min.js": () => import("./prism-n1ql.min-f3780067.js"), "../../../node_modules/prismjs/components/prism-n4js.min.js": () => import("./prism-n4js.min-d57fb90f.js"), "../../../node_modules/prismjs/components/prism-nand2tetris-hdl.min.js": () => import("./prism-nand2tetris-hdl.min-8228b246.js"), "../../../node_modules/prismjs/components/prism-naniscript.min.js": () => import("./prism-naniscript.min-a2fa6109.js"), "../../../node_modules/prismjs/components/prism-nasm.min.js": () => import("./prism-nasm.min-09906ffc.js"), "../../../node_modules/prismjs/components/prism-neon.min.js": () => import("./prism-neon.min-83c9b2c5.js"), "../../../node_modules/prismjs/components/prism-nevod.min.js": () => import("./prism-nevod.min-c2d107f2.js"), "../../../node_modules/prismjs/components/prism-nginx.min.js": () => import("./prism-nginx.min-01df8a32.js"), "../../../node_modules/prismjs/components/prism-nim.min.js": () => import("./prism-nim.min-dd447d6c.js"), "../../../node_modules/prismjs/components/prism-nix.min.js": () => import("./prism-nix.min-6430b249.js"), "../../../node_modules/prismjs/components/prism-nsis.min.js": () => import("./prism-nsis.min-dff25bf5.js"), "../../../node_modules/prismjs/components/prism-objectivec.min.js": () => import("./prism-objectivec.min-01ae0d96.js"), "../../../node_modules/prismjs/components/prism-ocaml.min.js": () => import("./prism-ocaml.min-20e838d9.js"), "../../../node_modules/prismjs/components/prism-odin.min.js": () => import("./prism-odin.min-b5d9183b.js"), "../../../node_modules/prismjs/components/prism-opencl.min.js": () => import("./prism-opencl.min-1d85e7cf.js"), "../../../node_modules/prismjs/components/prism-openqasm.min.js": () => import("./prism-openqasm.min-29eb40fe.js"), "../../../node_modules/prismjs/components/prism-oz.min.js": () => import("./prism-oz.min-c1f4ebd4.js"), "../../../node_modules/prismjs/components/prism-parigp.min.js": () => import("./prism-parigp.min-8bff0612.js"), "../../../node_modules/prismjs/components/prism-parser.min.js": () => import("./prism-parser.min-7722395f.js"), "../../../node_modules/prismjs/components/prism-pascal.min.js": () => import("./prism-pascal.min-ccf26fed.js"), "../../../node_modules/prismjs/components/prism-pascaligo.min.js": () => import("./prism-pascaligo.min-3aecb02c.js"), "../../../node_modules/prismjs/components/prism-pcaxis.min.js": () => import("./prism-pcaxis.min-c5e7a871.js"), "../../../node_modules/prismjs/components/prism-peoplecode.min.js": () => import("./prism-peoplecode.min-7c8ed2ef.js"), "../../../node_modules/prismjs/components/prism-perl.min.js": () => import("./prism-perl.min-108f825c.js"), "../../../node_modules/prismjs/components/prism-php-extras.min.js": () => import("./prism-php-extras.min-4b649f6b.js"), "../../../node_modules/prismjs/components/prism-php.min.js": () => import("./prism-php.min-b4bebbdb.js"), "../../../node_modules/prismjs/components/prism-phpdoc.min.js": () => import("./prism-phpdoc.min-71857b79.js"), "../../../node_modules/prismjs/components/prism-plant-uml.min.js": () => import("./prism-plant-uml.min-91d8fdec.js"), "../../../node_modules/prismjs/components/prism-plsql.min.js": () => import("./prism-plsql.min-8b0dd1ce.js"), "../../../node_modules/prismjs/components/prism-powerquery.min.js": () => import("./prism-powerquery.min-de7eda80.js"), "../../../node_modules/prismjs/components/prism-powershell.min.js": () => import("./prism-powershell.min-13582006.js"), "../../../node_modules/prismjs/components/prism-processing.min.js": () => import("./prism-processing.min-ddf61715.js"), "../../../node_modules/prismjs/components/prism-prolog.min.js": () => import("./prism-prolog.min-be61447f.js"), "../../../node_modules/prismjs/components/prism-promql.min.js": () => import("./prism-promql.min-b94dbbcb.js"), "../../../node_modules/prismjs/components/prism-properties.min.js": () => import("./prism-properties.min-4b65aff4.js"), "../../../node_modules/prismjs/components/prism-protobuf.min.js": () => import("./prism-protobuf.min-c7dd99a8.js"), "../../../node_modules/prismjs/components/prism-psl.min.js": () => import("./prism-psl.min-3cb6ca77.js"), "../../../node_modules/prismjs/components/prism-pug.min.js": () => import("./prism-pug.min-84ed48ec.js"), "../../../node_modules/prismjs/components/prism-puppet.min.js": () => import("./prism-puppet.min-c02bdf50.js"), "../../../node_modules/prismjs/components/prism-pure.min.js": () => import("./prism-pure.min-7b5eae7a.js"), "../../../node_modules/prismjs/components/prism-purebasic.min.js": () => import("./prism-purebasic.min-a62b63be.js"), "../../../node_modules/prismjs/components/prism-purescript.min.js": () => import("./prism-purescript.min-d7c49bf2.js"), "../../../node_modules/prismjs/components/prism-python.min.js": () => import("./prism-python.min-89935d5e.js"), "../../../node_modules/prismjs/components/prism-q.min.js": () => import("./prism-q.min-96d8fb1b.js"), "../../../node_modules/prismjs/components/prism-qml.min.js": () => import("./prism-qml.min-eb7c0dfc.js"), "../../../node_modules/prismjs/components/prism-qore.min.js": () => import("./prism-qore.min-ed8ddb5e.js"), "../../../node_modules/prismjs/components/prism-qsharp.min.js": () => import("./prism-qsharp.min-fb960bab.js"), "../../../node_modules/prismjs/components/prism-r.min.js": () => import("./prism-r.min-9fe1f3ed.js"), "../../../node_modules/prismjs/components/prism-racket.min.js": () => import("./prism-racket.min-e90ec309.js"), "../../../node_modules/prismjs/components/prism-reason.min.js": () => import("./prism-reason.min-63d1fa8a.js"), "../../../node_modules/prismjs/components/prism-regex.min.js": () => import("./prism-regex.min-96d0bc4f.js"), "../../../node_modules/prismjs/components/prism-rego.min.js": () => import("./prism-rego.min-281a02c1.js"), "../../../node_modules/prismjs/components/prism-renpy.min.js": () => import("./prism-renpy.min-2bef2655.js"), "../../../node_modules/prismjs/components/prism-rescript.min.js": () => import("./prism-rescript.min-2a3bda12.js"), "../../../node_modules/prismjs/components/prism-rest.min.js": () => import("./prism-rest.min-09260b93.js"), "../../../node_modules/prismjs/components/prism-rip.min.js": () => import("./prism-rip.min-c89fc679.js"), "../../../node_modules/prismjs/components/prism-roboconf.min.js": () => import("./prism-roboconf.min-362299cf.js"), "../../../node_modules/prismjs/components/prism-robotframework.min.js": () => import("./prism-robotframework.min-901bf739.js"), "../../../node_modules/prismjs/components/prism-ruby.min.js": () => import("./prism-ruby.min-6e459016.js"), "../../../node_modules/prismjs/components/prism-rust.min.js": () => import("./prism-rust.min-820420d0.js"), "../../../node_modules/prismjs/components/prism-sas.min.js": () => import("./prism-sas.min-920eaa09.js"), "../../../node_modules/prismjs/components/prism-sass.min.js": () => import("./prism-sass.min-4dc53bc5.js"), "../../../node_modules/prismjs/components/prism-scala.min.js": () => import("./prism-scala.min-83738843.js"), "../../../node_modules/prismjs/components/prism-scheme.min.js": () => import("./prism-scheme.min-1358e051.js"), "../../../node_modules/prismjs/components/prism-scss.min.js": () => import("./prism-scss.min-92aea743.js"), "../../../node_modules/prismjs/components/prism-shell-session.min.js": () => import("./prism-shell-session.min-2977ab53.js"), "../../../node_modules/prismjs/components/prism-smali.min.js": () => import("./prism-smali.min-e768ca38.js"), "../../../node_modules/prismjs/components/prism-smalltalk.min.js": () => import("./prism-smalltalk.min-139c1ee1.js"), "../../../node_modules/prismjs/components/prism-smarty.min.js": () => import("./prism-smarty.min-f8debf97.js"), "../../../node_modules/prismjs/components/prism-sml.min.js": () => import("./prism-sml.min-0c679316.js"), "../../../node_modules/prismjs/components/prism-solidity.min.js": () => import("./prism-solidity.min-83eb4a29.js"), "../../../node_modules/prismjs/components/prism-solution-file.min.js": () => import("./prism-solution-file.min-52546f1c.js"), "../../../node_modules/prismjs/components/prism-soy.min.js": () => import("./prism-soy.min-d2b3294e.js"), "../../../node_modules/prismjs/components/prism-sparql.min.js": () => import("./prism-sparql.min-b55f57a3.js"), "../../../node_modules/prismjs/components/prism-splunk-spl.min.js": () => import("./prism-splunk-spl.min-bd51901e.js"), "../../../node_modules/prismjs/components/prism-sqf.min.js": () => import("./prism-sqf.min-7796abe2.js"), "../../../node_modules/prismjs/components/prism-sql.min.js": () => import("./prism-sql.min-583eab97.js"), "../../../node_modules/prismjs/components/prism-squirrel.min.js": () => import("./prism-squirrel.min-6210cc27.js"), "../../../node_modules/prismjs/components/prism-stan.min.js": () => import("./prism-stan.min-0219161d.js"), "../../../node_modules/prismjs/components/prism-stata.min.js": () => import("./prism-stata.min-e8468e92.js"), "../../../node_modules/prismjs/components/prism-stylus.min.js": () => import("./prism-stylus.min-b4211725.js"), "../../../node_modules/prismjs/components/prism-supercollider.min.js": () => import("./prism-supercollider.min-a1e102ff.js"), "../../../node_modules/prismjs/components/prism-swift.min.js": () => import("./prism-swift.min-962aa7ba.js"), "../../../node_modules/prismjs/components/prism-systemd.min.js": () => import("./prism-systemd.min-6d49f69b.js"), "../../../node_modules/prismjs/components/prism-t4-cs.min.js": () => import("./prism-t4-cs.min-258a46d3.js"), "../../../node_modules/prismjs/components/prism-t4-templating.min.js": () => import("./prism-t4-templating.min-740d429f.js"), "../../../node_modules/prismjs/components/prism-t4-vb.min.js": () => import("./prism-t4-vb.min-c3ca6021.js"), "../../../node_modules/prismjs/components/prism-tap.min.js": () => import("./prism-tap.min-2d582f1c.js"), "../../../node_modules/prismjs/components/prism-tcl.min.js": () => import("./prism-tcl.min-3d421e58.js"), "../../../node_modules/prismjs/components/prism-textile.min.js": () => import("./prism-textile.min-bea9a185.js"), "../../../node_modules/prismjs/components/prism-toml.min.js": () => import("./prism-toml.min-ba409a46.js"), "../../../node_modules/prismjs/components/prism-tremor.min.js": () => import("./prism-tremor.min-cf11bafd.js"), "../../../node_modules/prismjs/components/prism-tsx.min.js": () => import("./prism-tsx.min-90ee8eaa.js"), "../../../node_modules/prismjs/components/prism-tt2.min.js": () => import("./prism-tt2.min-c7317371.js"), "../../../node_modules/prismjs/components/prism-turtle.min.js": () => import("./prism-turtle.min-d3f6c908.js"), "../../../node_modules/prismjs/components/prism-twig.min.js": () => import("./prism-twig.min-06667cf3.js"), "../../../node_modules/prismjs/components/prism-typescript.min.js": () => import("./prism-typescript.min-da950f4e.js"), "../../../node_modules/prismjs/components/prism-typoscript.min.js": () => import("./prism-typoscript.min-92ab2527.js"), "../../../node_modules/prismjs/components/prism-unrealscript.min.js": () => import("./prism-unrealscript.min-524c9821.js"), "../../../node_modules/prismjs/components/prism-uorazor.min.js": () => import("./prism-uorazor.min-8445afde.js"), "../../../node_modules/prismjs/components/prism-uri.min.js": () => import("./prism-uri.min-8d153620.js"), "../../../node_modules/prismjs/components/prism-v.min.js": () => import("./prism-v.min-f5dfa62f.js"), "../../../node_modules/prismjs/components/prism-vala.min.js": () => import("./prism-vala.min-8099e50d.js"), "../../../node_modules/prismjs/components/prism-vbnet.min.js": () => import("./prism-vbnet.min-c684e95c.js"), "../../../node_modules/prismjs/components/prism-velocity.min.js": () => import("./prism-velocity.min-ce8230ae.js"), "../../../node_modules/prismjs/components/prism-verilog.min.js": () => import("./prism-verilog.min-49879cf6.js"), "../../../node_modules/prismjs/components/prism-vhdl.min.js": () => import("./prism-vhdl.min-9c469192.js"), "../../../node_modules/prismjs/components/prism-vim.min.js": () => import("./prism-vim.min-753cf120.js"), "../../../node_modules/prismjs/components/prism-visual-basic.min.js": () => import("./prism-visual-basic.min-03026ad9.js"), "../../../node_modules/prismjs/components/prism-warpscript.min.js": () => import("./prism-warpscript.min-69ba95e0.js"), "../../../node_modules/prismjs/components/prism-wasm.min.js": () => import("./prism-wasm.min-a8aa80a7.js"), "../../../node_modules/prismjs/components/prism-web-idl.min.js": () => import("./prism-web-idl.min-502d10ad.js"), "../../../node_modules/prismjs/components/prism-wgsl.min.js": () => import("./prism-wgsl.min-674a5833.js"), "../../../node_modules/prismjs/components/prism-wiki.min.js": () => import("./prism-wiki.min-6aa23d83.js"), "../../../node_modules/prismjs/components/prism-wolfram.min.js": () => import("./prism-wolfram.min-5edca627.js"), "../../../node_modules/prismjs/components/prism-wren.min.js": () => import("./prism-wren.min-87e34869.js"), "../../../node_modules/prismjs/components/prism-xeora.min.js": () => import("./prism-xeora.min-39184a91.js"), "../../../node_modules/prismjs/components/prism-xml-doc.min.js": () => import("./prism-xml-doc.min-cd59a0d2.js"), "../../../node_modules/prismjs/components/prism-xojo.min.js": () => import("./prism-xojo.min-7d27c927.js"), "../../../node_modules/prismjs/components/prism-xquery.min.js": () => import("./prism-xquery.min-aebd2f79.js"), "../../../node_modules/prismjs/components/prism-yaml.min.js": () => import("./prism-yaml.min-971ccff8.js"), "../../../node_modules/prismjs/components/prism-yang.min.js": () => import("./prism-yang.min-39f14179.js"), "../../../node_modules/prismjs/components/prism-zig.min.js": () => import("./prism-zig.min-e777c275.js") }), `../../../node_modules/prismjs/components/prism-${l}.min.js`);
1251
+ await tr(/* @__PURE__ */ Object.assign({ "../../../node_modules/prismjs/components/prism-abap.min.js": () => import("./prism-abap.min-5dd8af1f.js"), "../../../node_modules/prismjs/components/prism-abnf.min.js": () => import("./prism-abnf.min-c3c3a9d9.js"), "../../../node_modules/prismjs/components/prism-actionscript.min.js": () => import("./prism-actionscript.min-bd2d6afb.js"), "../../../node_modules/prismjs/components/prism-ada.min.js": () => import("./prism-ada.min-316d6d00.js"), "../../../node_modules/prismjs/components/prism-agda.min.js": () => import("./prism-agda.min-a6b4d217.js"), "../../../node_modules/prismjs/components/prism-al.min.js": () => import("./prism-al.min-f12e9359.js"), "../../../node_modules/prismjs/components/prism-antlr4.min.js": () => import("./prism-antlr4.min-850b07d5.js"), "../../../node_modules/prismjs/components/prism-apacheconf.min.js": () => import("./prism-apacheconf.min-948db440.js"), "../../../node_modules/prismjs/components/prism-apex.min.js": () => import("./prism-apex.min-cb3fec7c.js"), "../../../node_modules/prismjs/components/prism-apl.min.js": () => import("./prism-apl.min-98159dbe.js"), "../../../node_modules/prismjs/components/prism-applescript.min.js": () => import("./prism-applescript.min-feb2957e.js"), "../../../node_modules/prismjs/components/prism-aql.min.js": () => import("./prism-aql.min-d24bd57a.js"), "../../../node_modules/prismjs/components/prism-arduino.min.js": () => import("./prism-arduino.min-497e5615.js"), "../../../node_modules/prismjs/components/prism-arff.min.js": () => import("./prism-arff.min-54f15f52.js"), "../../../node_modules/prismjs/components/prism-armasm.min.js": () => import("./prism-armasm.min-60c6ead7.js"), "../../../node_modules/prismjs/components/prism-arturo.min.js": () => import("./prism-arturo.min-699e210e.js"), "../../../node_modules/prismjs/components/prism-asciidoc.min.js": () => import("./prism-asciidoc.min-f4622897.js"), "../../../node_modules/prismjs/components/prism-asm6502.min.js": () => import("./prism-asm6502.min-d16ec8e7.js"), "../../../node_modules/prismjs/components/prism-asmatmel.min.js": () => import("./prism-asmatmel.min-ebb34761.js"), "../../../node_modules/prismjs/components/prism-aspnet.min.js": () => import("./prism-aspnet.min-02de9064.js"), "../../../node_modules/prismjs/components/prism-autohotkey.min.js": () => import("./prism-autohotkey.min-58278b6c.js"), "../../../node_modules/prismjs/components/prism-autoit.min.js": () => import("./prism-autoit.min-bb495ed7.js"), "../../../node_modules/prismjs/components/prism-avisynth.min.js": () => import("./prism-avisynth.min-21dd4dbf.js"), "../../../node_modules/prismjs/components/prism-avro-idl.min.js": () => import("./prism-avro-idl.min-37aa0190.js"), "../../../node_modules/prismjs/components/prism-awk.min.js": () => import("./prism-awk.min-8362995b.js"), "../../../node_modules/prismjs/components/prism-bash.min.js": () => import("./prism-bash.min-3a888b73.js"), "../../../node_modules/prismjs/components/prism-basic.min.js": () => import("./prism-basic.min-70837013.js"), "../../../node_modules/prismjs/components/prism-batch.min.js": () => import("./prism-batch.min-e22008b6.js"), "../../../node_modules/prismjs/components/prism-bbcode.min.js": () => import("./prism-bbcode.min-1be070b7.js"), "../../../node_modules/prismjs/components/prism-bbj.min.js": () => import("./prism-bbj.min-c8595d55.js"), "../../../node_modules/prismjs/components/prism-bicep.min.js": () => import("./prism-bicep.min-b958c50e.js"), "../../../node_modules/prismjs/components/prism-birb.min.js": () => import("./prism-birb.min-1790d3b7.js"), "../../../node_modules/prismjs/components/prism-bison.min.js": () => import("./prism-bison.min-58efa25c.js"), "../../../node_modules/prismjs/components/prism-bnf.min.js": () => import("./prism-bnf.min-8a47cccc.js"), "../../../node_modules/prismjs/components/prism-bqn.min.js": () => import("./prism-bqn.min-7536e012.js"), "../../../node_modules/prismjs/components/prism-brainfuck.min.js": () => import("./prism-brainfuck.min-c9364b5e.js"), "../../../node_modules/prismjs/components/prism-brightscript.min.js": () => import("./prism-brightscript.min-d8aa03cd.js"), "../../../node_modules/prismjs/components/prism-bro.min.js": () => import("./prism-bro.min-6e2db8a0.js"), "../../../node_modules/prismjs/components/prism-bsl.min.js": () => import("./prism-bsl.min-6da4b323.js"), "../../../node_modules/prismjs/components/prism-c.min.js": () => import("./prism-c.min-b845f634.js"), "../../../node_modules/prismjs/components/prism-cfscript.min.js": () => import("./prism-cfscript.min-e626d6e7.js"), "../../../node_modules/prismjs/components/prism-chaiscript.min.js": () => import("./prism-chaiscript.min-59cf3b38.js"), "../../../node_modules/prismjs/components/prism-cil.min.js": () => import("./prism-cil.min-60db77c1.js"), "../../../node_modules/prismjs/components/prism-cilkc.min.js": () => import("./prism-cilkc.min-4c71300b.js"), "../../../node_modules/prismjs/components/prism-cilkcpp.min.js": () => import("./prism-cilkcpp.min-3963bb02.js"), "../../../node_modules/prismjs/components/prism-clike.min.js": () => import("./prism-clike.min-7115c549.js"), "../../../node_modules/prismjs/components/prism-clojure.min.js": () => import("./prism-clojure.min-8aa86fbd.js"), "../../../node_modules/prismjs/components/prism-cmake.min.js": () => import("./prism-cmake.min-194d339e.js"), "../../../node_modules/prismjs/components/prism-cobol.min.js": () => import("./prism-cobol.min-4f11593e.js"), "../../../node_modules/prismjs/components/prism-coffeescript.min.js": () => import("./prism-coffeescript.min-c3968b8f.js"), "../../../node_modules/prismjs/components/prism-concurnas.min.js": () => import("./prism-concurnas.min-5073257b.js"), "../../../node_modules/prismjs/components/prism-cooklang.min.js": () => import("./prism-cooklang.min-39421cc9.js"), "../../../node_modules/prismjs/components/prism-coq.min.js": () => import("./prism-coq.min-b08d301c.js"), "../../../node_modules/prismjs/components/prism-core.min.js": () => import("./prism-core.min-68832768.js").then((p) => p.p), "../../../node_modules/prismjs/components/prism-cpp.min.js": () => import("./prism-cpp.min-ac230d87.js"), "../../../node_modules/prismjs/components/prism-crystal.min.js": () => import("./prism-crystal.min-13116708.js"), "../../../node_modules/prismjs/components/prism-csharp.min.js": () => import("./prism-csharp.min-2a7aa1d7.js"), "../../../node_modules/prismjs/components/prism-cshtml.min.js": () => import("./prism-cshtml.min-e0dea03d.js"), "../../../node_modules/prismjs/components/prism-csp.min.js": () => import("./prism-csp.min-9632aa13.js"), "../../../node_modules/prismjs/components/prism-css-extras.min.js": () => import("./prism-css-extras.min-b8bed0b9.js"), "../../../node_modules/prismjs/components/prism-css.min.js": () => import("./prism-css.min-e38589a9.js"), "../../../node_modules/prismjs/components/prism-csv.min.js": () => import("./prism-csv.min-59c9f7fe.js"), "../../../node_modules/prismjs/components/prism-cue.min.js": () => import("./prism-cue.min-a0471d75.js"), "../../../node_modules/prismjs/components/prism-cypher.min.js": () => import("./prism-cypher.min-c0e5a4ac.js"), "../../../node_modules/prismjs/components/prism-d.min.js": () => import("./prism-d.min-fe73d282.js"), "../../../node_modules/prismjs/components/prism-dart.min.js": () => import("./prism-dart.min-79822d61.js"), "../../../node_modules/prismjs/components/prism-dataweave.min.js": () => import("./prism-dataweave.min-ac7788bb.js"), "../../../node_modules/prismjs/components/prism-dax.min.js": () => import("./prism-dax.min-10526a78.js"), "../../../node_modules/prismjs/components/prism-dhall.min.js": () => import("./prism-dhall.min-1d8f852b.js"), "../../../node_modules/prismjs/components/prism-diff.min.js": () => import("./prism-diff.min-58a65b3c.js"), "../../../node_modules/prismjs/components/prism-django.min.js": () => import("./prism-django.min-966e5f65.js"), "../../../node_modules/prismjs/components/prism-dns-zone-file.min.js": () => import("./prism-dns-zone-file.min-6884205e.js"), "../../../node_modules/prismjs/components/prism-docker.min.js": () => import("./prism-docker.min-2330af65.js"), "../../../node_modules/prismjs/components/prism-dot.min.js": () => import("./prism-dot.min-b7040a53.js"), "../../../node_modules/prismjs/components/prism-ebnf.min.js": () => import("./prism-ebnf.min-72a1d666.js"), "../../../node_modules/prismjs/components/prism-editorconfig.min.js": () => import("./prism-editorconfig.min-f0a114f7.js"), "../../../node_modules/prismjs/components/prism-eiffel.min.js": () => import("./prism-eiffel.min-49594bdc.js"), "../../../node_modules/prismjs/components/prism-ejs.min.js": () => import("./prism-ejs.min-a2f2c9ea.js"), "../../../node_modules/prismjs/components/prism-elixir.min.js": () => import("./prism-elixir.min-ba69265c.js"), "../../../node_modules/prismjs/components/prism-elm.min.js": () => import("./prism-elm.min-3290c07f.js"), "../../../node_modules/prismjs/components/prism-erb.min.js": () => import("./prism-erb.min-51922f18.js"), "../../../node_modules/prismjs/components/prism-erlang.min.js": () => import("./prism-erlang.min-1847c6a7.js"), "../../../node_modules/prismjs/components/prism-etlua.min.js": () => import("./prism-etlua.min-d9358902.js"), "../../../node_modules/prismjs/components/prism-excel-formula.min.js": () => import("./prism-excel-formula.min-0e717178.js"), "../../../node_modules/prismjs/components/prism-factor.min.js": () => import("./prism-factor.min-0ea41495.js"), "../../../node_modules/prismjs/components/prism-false.min.js": () => import("./prism-false.min-d1e3e399.js"), "../../../node_modules/prismjs/components/prism-firestore-security-rules.min.js": () => import("./prism-firestore-security-rules.min-2230fbf2.js"), "../../../node_modules/prismjs/components/prism-flow.min.js": () => import("./prism-flow.min-4379ef1a.js"), "../../../node_modules/prismjs/components/prism-fortran.min.js": () => import("./prism-fortran.min-32dee11f.js"), "../../../node_modules/prismjs/components/prism-fsharp.min.js": () => import("./prism-fsharp.min-e4eccb74.js"), "../../../node_modules/prismjs/components/prism-ftl.min.js": () => import("./prism-ftl.min-cf603b01.js"), "../../../node_modules/prismjs/components/prism-gap.min.js": () => import("./prism-gap.min-3eca85c2.js"), "../../../node_modules/prismjs/components/prism-gcode.min.js": () => import("./prism-gcode.min-7be81032.js"), "../../../node_modules/prismjs/components/prism-gdscript.min.js": () => import("./prism-gdscript.min-a7d78975.js"), "../../../node_modules/prismjs/components/prism-gedcom.min.js": () => import("./prism-gedcom.min-364aaac3.js"), "../../../node_modules/prismjs/components/prism-gettext.min.js": () => import("./prism-gettext.min-d6e41f3f.js"), "../../../node_modules/prismjs/components/prism-gherkin.min.js": () => import("./prism-gherkin.min-b8bce925.js"), "../../../node_modules/prismjs/components/prism-git.min.js": () => import("./prism-git.min-d984e2ae.js"), "../../../node_modules/prismjs/components/prism-glsl.min.js": () => import("./prism-glsl.min-5a4d82d4.js"), "../../../node_modules/prismjs/components/prism-gml.min.js": () => import("./prism-gml.min-b91c603d.js"), "../../../node_modules/prismjs/components/prism-gn.min.js": () => import("./prism-gn.min-b37dd2cf.js"), "../../../node_modules/prismjs/components/prism-go-module.min.js": () => import("./prism-go-module.min-e9a704bf.js"), "../../../node_modules/prismjs/components/prism-go.min.js": () => import("./prism-go.min-c7322c64.js"), "../../../node_modules/prismjs/components/prism-gradle.min.js": () => import("./prism-gradle.min-1a828d06.js"), "../../../node_modules/prismjs/components/prism-graphql.min.js": () => import("./prism-graphql.min-e5fddf96.js"), "../../../node_modules/prismjs/components/prism-groovy.min.js": () => import("./prism-groovy.min-6999a453.js"), "../../../node_modules/prismjs/components/prism-haml.min.js": () => import("./prism-haml.min-06d636e1.js"), "../../../node_modules/prismjs/components/prism-handlebars.min.js": () => import("./prism-handlebars.min-d59c233b.js"), "../../../node_modules/prismjs/components/prism-haskell.min.js": () => import("./prism-haskell.min-2d474195.js"), "../../../node_modules/prismjs/components/prism-haxe.min.js": () => import("./prism-haxe.min-0b47bda7.js"), "../../../node_modules/prismjs/components/prism-hcl.min.js": () => import("./prism-hcl.min-dd93c4fa.js"), "../../../node_modules/prismjs/components/prism-hlsl.min.js": () => import("./prism-hlsl.min-90bc1513.js"), "../../../node_modules/prismjs/components/prism-hoon.min.js": () => import("./prism-hoon.min-5ac6535d.js"), "../../../node_modules/prismjs/components/prism-hpkp.min.js": () => import("./prism-hpkp.min-ccf08017.js"), "../../../node_modules/prismjs/components/prism-hsts.min.js": () => import("./prism-hsts.min-0dd9146f.js"), "../../../node_modules/prismjs/components/prism-http.min.js": () => import("./prism-http.min-10b32777.js"), "../../../node_modules/prismjs/components/prism-ichigojam.min.js": () => import("./prism-ichigojam.min-144f1b4b.js"), "../../../node_modules/prismjs/components/prism-icon.min.js": () => import("./prism-icon.min-22bb1195.js"), "../../../node_modules/prismjs/components/prism-icu-message-format.min.js": () => import("./prism-icu-message-format.min-b2ecdff3.js"), "../../../node_modules/prismjs/components/prism-idris.min.js": () => import("./prism-idris.min-920ad8df.js"), "../../../node_modules/prismjs/components/prism-iecst.min.js": () => import("./prism-iecst.min-d5ab1f6c.js"), "../../../node_modules/prismjs/components/prism-ignore.min.js": () => import("./prism-ignore.min-272b6ccf.js"), "../../../node_modules/prismjs/components/prism-inform7.min.js": () => import("./prism-inform7.min-22b438d7.js"), "../../../node_modules/prismjs/components/prism-ini.min.js": () => import("./prism-ini.min-b9585cc2.js"), "../../../node_modules/prismjs/components/prism-io.min.js": () => import("./prism-io.min-bc03d63b.js"), "../../../node_modules/prismjs/components/prism-j.min.js": () => import("./prism-j.min-2dc34683.js"), "../../../node_modules/prismjs/components/prism-java.min.js": () => import("./prism-java.min-2cfc90de.js"), "../../../node_modules/prismjs/components/prism-javadoc.min.js": () => import("./prism-javadoc.min-12ef12d8.js"), "../../../node_modules/prismjs/components/prism-javadoclike.min.js": () => import("./prism-javadoclike.min-e07933fc.js"), "../../../node_modules/prismjs/components/prism-javascript.min.js": () => import("./prism-javascript.min-03c8bcee.js"), "../../../node_modules/prismjs/components/prism-javastacktrace.min.js": () => import("./prism-javastacktrace.min-d3186b3e.js"), "../../../node_modules/prismjs/components/prism-jexl.min.js": () => import("./prism-jexl.min-084d69d8.js"), "../../../node_modules/prismjs/components/prism-jolie.min.js": () => import("./prism-jolie.min-466d4cf7.js"), "../../../node_modules/prismjs/components/prism-jq.min.js": () => import("./prism-jq.min-3daf478a.js"), "../../../node_modules/prismjs/components/prism-js-extras.min.js": () => import("./prism-js-extras.min-a225cee9.js"), "../../../node_modules/prismjs/components/prism-js-templates.min.js": () => import("./prism-js-templates.min-c950373d.js"), "../../../node_modules/prismjs/components/prism-jsdoc.min.js": () => import("./prism-jsdoc.min-02975619.js"), "../../../node_modules/prismjs/components/prism-json.min.js": () => import("./prism-json.min-fa2dced5.js"), "../../../node_modules/prismjs/components/prism-json5.min.js": () => import("./prism-json5.min-3917dd44.js"), "../../../node_modules/prismjs/components/prism-jsonp.min.js": () => import("./prism-jsonp.min-a0f4106e.js"), "../../../node_modules/prismjs/components/prism-jsstacktrace.min.js": () => import("./prism-jsstacktrace.min-bc3f3759.js"), "../../../node_modules/prismjs/components/prism-jsx.min.js": () => import("./prism-jsx.min-8af1efbf.js"), "../../../node_modules/prismjs/components/prism-julia.min.js": () => import("./prism-julia.min-cc71d15e.js"), "../../../node_modules/prismjs/components/prism-keepalived.min.js": () => import("./prism-keepalived.min-1428eb2f.js"), "../../../node_modules/prismjs/components/prism-keyman.min.js": () => import("./prism-keyman.min-3b419e70.js"), "../../../node_modules/prismjs/components/prism-kotlin.min.js": () => import("./prism-kotlin.min-ecbf8553.js"), "../../../node_modules/prismjs/components/prism-kumir.min.js": () => import("./prism-kumir.min-624860b6.js"), "../../../node_modules/prismjs/components/prism-kusto.min.js": () => import("./prism-kusto.min-67b0f58b.js"), "../../../node_modules/prismjs/components/prism-latex.min.js": () => import("./prism-latex.min-af145af5.js"), "../../../node_modules/prismjs/components/prism-latte.min.js": () => import("./prism-latte.min-b9a60122.js"), "../../../node_modules/prismjs/components/prism-less.min.js": () => import("./prism-less.min-3a3313ed.js"), "../../../node_modules/prismjs/components/prism-lilypond.min.js": () => import("./prism-lilypond.min-b0ed8db8.js"), "../../../node_modules/prismjs/components/prism-linker-script.min.js": () => import("./prism-linker-script.min-dc3fc5ad.js"), "../../../node_modules/prismjs/components/prism-liquid.min.js": () => import("./prism-liquid.min-86fa81e6.js"), "../../../node_modules/prismjs/components/prism-lisp.min.js": () => import("./prism-lisp.min-cae2f73f.js"), "../../../node_modules/prismjs/components/prism-livescript.min.js": () => import("./prism-livescript.min-b5d9d700.js"), "../../../node_modules/prismjs/components/prism-llvm.min.js": () => import("./prism-llvm.min-2b4a3e33.js"), "../../../node_modules/prismjs/components/prism-log.min.js": () => import("./prism-log.min-e9ba9fa2.js"), "../../../node_modules/prismjs/components/prism-lolcode.min.js": () => import("./prism-lolcode.min-1d0782a6.js"), "../../../node_modules/prismjs/components/prism-lua.min.js": () => import("./prism-lua.min-9c7e1242.js"), "../../../node_modules/prismjs/components/prism-magma.min.js": () => import("./prism-magma.min-6b08ba18.js"), "../../../node_modules/prismjs/components/prism-makefile.min.js": () => import("./prism-makefile.min-10c204c7.js"), "../../../node_modules/prismjs/components/prism-markdown.min.js": () => import("./prism-markdown.min-97e74eb9.js"), "../../../node_modules/prismjs/components/prism-markup-templating.min.js": () => import("./prism-markup-templating.min-c55d1b76.js"), "../../../node_modules/prismjs/components/prism-markup.min.js": () => import("./prism-markup.min-849389d5.js"), "../../../node_modules/prismjs/components/prism-mata.min.js": () => import("./prism-mata.min-1bbaed90.js"), "../../../node_modules/prismjs/components/prism-matlab.min.js": () => import("./prism-matlab.min-c787c897.js"), "../../../node_modules/prismjs/components/prism-maxscript.min.js": () => import("./prism-maxscript.min-8ff24836.js"), "../../../node_modules/prismjs/components/prism-mel.min.js": () => import("./prism-mel.min-e8ff632f.js"), "../../../node_modules/prismjs/components/prism-mermaid.min.js": () => import("./prism-mermaid.min-77fee473.js"), "../../../node_modules/prismjs/components/prism-metafont.min.js": () => import("./prism-metafont.min-94223e4b.js"), "../../../node_modules/prismjs/components/prism-mizar.min.js": () => import("./prism-mizar.min-50230be0.js"), "../../../node_modules/prismjs/components/prism-mongodb.min.js": () => import("./prism-mongodb.min-9790bcfd.js"), "../../../node_modules/prismjs/components/prism-monkey.min.js": () => import("./prism-monkey.min-5a1eb1ff.js"), "../../../node_modules/prismjs/components/prism-moonscript.min.js": () => import("./prism-moonscript.min-ed957c18.js"), "../../../node_modules/prismjs/components/prism-n1ql.min.js": () => import("./prism-n1ql.min-f3780067.js"), "../../../node_modules/prismjs/components/prism-n4js.min.js": () => import("./prism-n4js.min-d57fb90f.js"), "../../../node_modules/prismjs/components/prism-nand2tetris-hdl.min.js": () => import("./prism-nand2tetris-hdl.min-8228b246.js"), "../../../node_modules/prismjs/components/prism-naniscript.min.js": () => import("./prism-naniscript.min-a2fa6109.js"), "../../../node_modules/prismjs/components/prism-nasm.min.js": () => import("./prism-nasm.min-09906ffc.js"), "../../../node_modules/prismjs/components/prism-neon.min.js": () => import("./prism-neon.min-83c9b2c5.js"), "../../../node_modules/prismjs/components/prism-nevod.min.js": () => import("./prism-nevod.min-c2d107f2.js"), "../../../node_modules/prismjs/components/prism-nginx.min.js": () => import("./prism-nginx.min-01df8a32.js"), "../../../node_modules/prismjs/components/prism-nim.min.js": () => import("./prism-nim.min-dd447d6c.js"), "../../../node_modules/prismjs/components/prism-nix.min.js": () => import("./prism-nix.min-6430b249.js"), "../../../node_modules/prismjs/components/prism-nsis.min.js": () => import("./prism-nsis.min-dff25bf5.js"), "../../../node_modules/prismjs/components/prism-objectivec.min.js": () => import("./prism-objectivec.min-01ae0d96.js"), "../../../node_modules/prismjs/components/prism-ocaml.min.js": () => import("./prism-ocaml.min-20e838d9.js"), "../../../node_modules/prismjs/components/prism-odin.min.js": () => import("./prism-odin.min-b5d9183b.js"), "../../../node_modules/prismjs/components/prism-opencl.min.js": () => import("./prism-opencl.min-1d85e7cf.js"), "../../../node_modules/prismjs/components/prism-openqasm.min.js": () => import("./prism-openqasm.min-29eb40fe.js"), "../../../node_modules/prismjs/components/prism-oz.min.js": () => import("./prism-oz.min-c1f4ebd4.js"), "../../../node_modules/prismjs/components/prism-parigp.min.js": () => import("./prism-parigp.min-8bff0612.js"), "../../../node_modules/prismjs/components/prism-parser.min.js": () => import("./prism-parser.min-7722395f.js"), "../../../node_modules/prismjs/components/prism-pascal.min.js": () => import("./prism-pascal.min-ccf26fed.js"), "../../../node_modules/prismjs/components/prism-pascaligo.min.js": () => import("./prism-pascaligo.min-3aecb02c.js"), "../../../node_modules/prismjs/components/prism-pcaxis.min.js": () => import("./prism-pcaxis.min-c5e7a871.js"), "../../../node_modules/prismjs/components/prism-peoplecode.min.js": () => import("./prism-peoplecode.min-7c8ed2ef.js"), "../../../node_modules/prismjs/components/prism-perl.min.js": () => import("./prism-perl.min-108f825c.js"), "../../../node_modules/prismjs/components/prism-php-extras.min.js": () => import("./prism-php-extras.min-4b649f6b.js"), "../../../node_modules/prismjs/components/prism-php.min.js": () => import("./prism-php.min-b4bebbdb.js"), "../../../node_modules/prismjs/components/prism-phpdoc.min.js": () => import("./prism-phpdoc.min-71857b79.js"), "../../../node_modules/prismjs/components/prism-plant-uml.min.js": () => import("./prism-plant-uml.min-91d8fdec.js"), "../../../node_modules/prismjs/components/prism-plsql.min.js": () => import("./prism-plsql.min-8b0dd1ce.js"), "../../../node_modules/prismjs/components/prism-powerquery.min.js": () => import("./prism-powerquery.min-de7eda80.js"), "../../../node_modules/prismjs/components/prism-powershell.min.js": () => import("./prism-powershell.min-13582006.js"), "../../../node_modules/prismjs/components/prism-processing.min.js": () => import("./prism-processing.min-ddf61715.js"), "../../../node_modules/prismjs/components/prism-prolog.min.js": () => import("./prism-prolog.min-be61447f.js"), "../../../node_modules/prismjs/components/prism-promql.min.js": () => import("./prism-promql.min-b94dbbcb.js"), "../../../node_modules/prismjs/components/prism-properties.min.js": () => import("./prism-properties.min-4b65aff4.js"), "../../../node_modules/prismjs/components/prism-protobuf.min.js": () => import("./prism-protobuf.min-c7dd99a8.js"), "../../../node_modules/prismjs/components/prism-psl.min.js": () => import("./prism-psl.min-3cb6ca77.js"), "../../../node_modules/prismjs/components/prism-pug.min.js": () => import("./prism-pug.min-84ed48ec.js"), "../../../node_modules/prismjs/components/prism-puppet.min.js": () => import("./prism-puppet.min-c02bdf50.js"), "../../../node_modules/prismjs/components/prism-pure.min.js": () => import("./prism-pure.min-7b5eae7a.js"), "../../../node_modules/prismjs/components/prism-purebasic.min.js": () => import("./prism-purebasic.min-a62b63be.js"), "../../../node_modules/prismjs/components/prism-purescript.min.js": () => import("./prism-purescript.min-d7c49bf2.js"), "../../../node_modules/prismjs/components/prism-python.min.js": () => import("./prism-python.min-89935d5e.js"), "../../../node_modules/prismjs/components/prism-q.min.js": () => import("./prism-q.min-96d8fb1b.js"), "../../../node_modules/prismjs/components/prism-qml.min.js": () => import("./prism-qml.min-eb7c0dfc.js"), "../../../node_modules/prismjs/components/prism-qore.min.js": () => import("./prism-qore.min-ed8ddb5e.js"), "../../../node_modules/prismjs/components/prism-qsharp.min.js": () => import("./prism-qsharp.min-fb960bab.js"), "../../../node_modules/prismjs/components/prism-r.min.js": () => import("./prism-r.min-9fe1f3ed.js"), "../../../node_modules/prismjs/components/prism-racket.min.js": () => import("./prism-racket.min-e90ec309.js"), "../../../node_modules/prismjs/components/prism-reason.min.js": () => import("./prism-reason.min-63d1fa8a.js"), "../../../node_modules/prismjs/components/prism-regex.min.js": () => import("./prism-regex.min-96d0bc4f.js"), "../../../node_modules/prismjs/components/prism-rego.min.js": () => import("./prism-rego.min-281a02c1.js"), "../../../node_modules/prismjs/components/prism-renpy.min.js": () => import("./prism-renpy.min-2bef2655.js"), "../../../node_modules/prismjs/components/prism-rescript.min.js": () => import("./prism-rescript.min-2a3bda12.js"), "../../../node_modules/prismjs/components/prism-rest.min.js": () => import("./prism-rest.min-09260b93.js"), "../../../node_modules/prismjs/components/prism-rip.min.js": () => import("./prism-rip.min-c89fc679.js"), "../../../node_modules/prismjs/components/prism-roboconf.min.js": () => import("./prism-roboconf.min-362299cf.js"), "../../../node_modules/prismjs/components/prism-robotframework.min.js": () => import("./prism-robotframework.min-901bf739.js"), "../../../node_modules/prismjs/components/prism-ruby.min.js": () => import("./prism-ruby.min-6e459016.js"), "../../../node_modules/prismjs/components/prism-rust.min.js": () => import("./prism-rust.min-820420d0.js"), "../../../node_modules/prismjs/components/prism-sas.min.js": () => import("./prism-sas.min-920eaa09.js"), "../../../node_modules/prismjs/components/prism-sass.min.js": () => import("./prism-sass.min-4dc53bc5.js"), "../../../node_modules/prismjs/components/prism-scala.min.js": () => import("./prism-scala.min-83738843.js"), "../../../node_modules/prismjs/components/prism-scheme.min.js": () => import("./prism-scheme.min-1358e051.js"), "../../../node_modules/prismjs/components/prism-scss.min.js": () => import("./prism-scss.min-92aea743.js"), "../../../node_modules/prismjs/components/prism-shell-session.min.js": () => import("./prism-shell-session.min-2977ab53.js"), "../../../node_modules/prismjs/components/prism-smali.min.js": () => import("./prism-smali.min-e768ca38.js"), "../../../node_modules/prismjs/components/prism-smalltalk.min.js": () => import("./prism-smalltalk.min-139c1ee1.js"), "../../../node_modules/prismjs/components/prism-smarty.min.js": () => import("./prism-smarty.min-f8debf97.js"), "../../../node_modules/prismjs/components/prism-sml.min.js": () => import("./prism-sml.min-0c679316.js"), "../../../node_modules/prismjs/components/prism-solidity.min.js": () => import("./prism-solidity.min-83eb4a29.js"), "../../../node_modules/prismjs/components/prism-solution-file.min.js": () => import("./prism-solution-file.min-52546f1c.js"), "../../../node_modules/prismjs/components/prism-soy.min.js": () => import("./prism-soy.min-d2b3294e.js"), "../../../node_modules/prismjs/components/prism-sparql.min.js": () => import("./prism-sparql.min-b55f57a3.js"), "../../../node_modules/prismjs/components/prism-splunk-spl.min.js": () => import("./prism-splunk-spl.min-bd51901e.js"), "../../../node_modules/prismjs/components/prism-sqf.min.js": () => import("./prism-sqf.min-7796abe2.js"), "../../../node_modules/prismjs/components/prism-sql.min.js": () => import("./prism-sql.min-583eab97.js"), "../../../node_modules/prismjs/components/prism-squirrel.min.js": () => import("./prism-squirrel.min-6210cc27.js"), "../../../node_modules/prismjs/components/prism-stan.min.js": () => import("./prism-stan.min-0219161d.js"), "../../../node_modules/prismjs/components/prism-stata.min.js": () => import("./prism-stata.min-e8468e92.js"), "../../../node_modules/prismjs/components/prism-stylus.min.js": () => import("./prism-stylus.min-b4211725.js"), "../../../node_modules/prismjs/components/prism-supercollider.min.js": () => import("./prism-supercollider.min-a1e102ff.js"), "../../../node_modules/prismjs/components/prism-swift.min.js": () => import("./prism-swift.min-962aa7ba.js"), "../../../node_modules/prismjs/components/prism-systemd.min.js": () => import("./prism-systemd.min-6d49f69b.js"), "../../../node_modules/prismjs/components/prism-t4-cs.min.js": () => import("./prism-t4-cs.min-258a46d3.js"), "../../../node_modules/prismjs/components/prism-t4-templating.min.js": () => import("./prism-t4-templating.min-740d429f.js"), "../../../node_modules/prismjs/components/prism-t4-vb.min.js": () => import("./prism-t4-vb.min-c3ca6021.js"), "../../../node_modules/prismjs/components/prism-tap.min.js": () => import("./prism-tap.min-2d582f1c.js"), "../../../node_modules/prismjs/components/prism-tcl.min.js": () => import("./prism-tcl.min-3d421e58.js"), "../../../node_modules/prismjs/components/prism-textile.min.js": () => import("./prism-textile.min-bea9a185.js"), "../../../node_modules/prismjs/components/prism-toml.min.js": () => import("./prism-toml.min-ba409a46.js"), "../../../node_modules/prismjs/components/prism-tremor.min.js": () => import("./prism-tremor.min-cf11bafd.js"), "../../../node_modules/prismjs/components/prism-tsx.min.js": () => import("./prism-tsx.min-90ee8eaa.js"), "../../../node_modules/prismjs/components/prism-tt2.min.js": () => import("./prism-tt2.min-c7317371.js"), "../../../node_modules/prismjs/components/prism-turtle.min.js": () => import("./prism-turtle.min-d3f6c908.js"), "../../../node_modules/prismjs/components/prism-twig.min.js": () => import("./prism-twig.min-06667cf3.js"), "../../../node_modules/prismjs/components/prism-typescript.min.js": () => import("./prism-typescript.min-da950f4e.js"), "../../../node_modules/prismjs/components/prism-typoscript.min.js": () => import("./prism-typoscript.min-92ab2527.js"), "../../../node_modules/prismjs/components/prism-unrealscript.min.js": () => import("./prism-unrealscript.min-524c9821.js"), "../../../node_modules/prismjs/components/prism-uorazor.min.js": () => import("./prism-uorazor.min-8445afde.js"), "../../../node_modules/prismjs/components/prism-uri.min.js": () => import("./prism-uri.min-8d153620.js"), "../../../node_modules/prismjs/components/prism-v.min.js": () => import("./prism-v.min-f5dfa62f.js"), "../../../node_modules/prismjs/components/prism-vala.min.js": () => import("./prism-vala.min-8099e50d.js"), "../../../node_modules/prismjs/components/prism-vbnet.min.js": () => import("./prism-vbnet.min-c684e95c.js"), "../../../node_modules/prismjs/components/prism-velocity.min.js": () => import("./prism-velocity.min-ce8230ae.js"), "../../../node_modules/prismjs/components/prism-verilog.min.js": () => import("./prism-verilog.min-49879cf6.js"), "../../../node_modules/prismjs/components/prism-vhdl.min.js": () => import("./prism-vhdl.min-9c469192.js"), "../../../node_modules/prismjs/components/prism-vim.min.js": () => import("./prism-vim.min-753cf120.js"), "../../../node_modules/prismjs/components/prism-visual-basic.min.js": () => import("./prism-visual-basic.min-03026ad9.js"), "../../../node_modules/prismjs/components/prism-warpscript.min.js": () => import("./prism-warpscript.min-69ba95e0.js"), "../../../node_modules/prismjs/components/prism-wasm.min.js": () => import("./prism-wasm.min-a8aa80a7.js"), "../../../node_modules/prismjs/components/prism-web-idl.min.js": () => import("./prism-web-idl.min-502d10ad.js"), "../../../node_modules/prismjs/components/prism-wgsl.min.js": () => import("./prism-wgsl.min-674a5833.js"), "../../../node_modules/prismjs/components/prism-wiki.min.js": () => import("./prism-wiki.min-6aa23d83.js"), "../../../node_modules/prismjs/components/prism-wolfram.min.js": () => import("./prism-wolfram.min-5edca627.js"), "../../../node_modules/prismjs/components/prism-wren.min.js": () => import("./prism-wren.min-87e34869.js"), "../../../node_modules/prismjs/components/prism-xeora.min.js": () => import("./prism-xeora.min-39184a91.js"), "../../../node_modules/prismjs/components/prism-xml-doc.min.js": () => import("./prism-xml-doc.min-cd59a0d2.js"), "../../../node_modules/prismjs/components/prism-xojo.min.js": () => import("./prism-xojo.min-7d27c927.js"), "../../../node_modules/prismjs/components/prism-xquery.min.js": () => import("./prism-xquery.min-aebd2f79.js"), "../../../node_modules/prismjs/components/prism-yaml.min.js": () => import("./prism-yaml.min-971ccff8.js"), "../../../node_modules/prismjs/components/prism-yang.min.js": () => import("./prism-yang.min-39f14179.js"), "../../../node_modules/prismjs/components/prism-zig.min.js": () => import("./prism-zig.min-e777c275.js") }), `../../../node_modules/prismjs/components/prism-${a}.min.js`);
1252
1252
  } catch {
1253
- console.warn(`Prism does not have a language file for '${l}'`);
1253
+ console.warn(`Prism does not have a language file for '${a}'`);
1254
1254
  }
1255
1255
  ce.highlightAll();
1256
- }, { immediate: !0 }), (l, p) => {
1257
- const c = Mt("KCodeBlock");
1258
- return H(), ee(c, {
1259
- id: K(a),
1256
+ }, { immediate: !0 }), (a, p) => {
1257
+ const u = Mt("KCodeBlock");
1258
+ return H(), ee(u, {
1259
+ id: K(l),
1260
1260
  class: "document-code-block",
1261
1261
  code: K(s),
1262
1262
  "is-processing": r.value,
@@ -1398,7 +1398,7 @@ const ze = /* @__PURE__ */ C(yr, [["__scopeId", "data-v-ce6cbdb9"]]), wr = /* @_
1398
1398
  var o;
1399
1399
  const t = e, r = ((o = t.parent) == null ? void 0 : o.section) === Q.header ? "th" : "td";
1400
1400
  let n;
1401
- return t.alignment === fe.center ? n = "align-center" : t.alignment === fe.right && (n = "align-right"), (i, a) => (H(), ee(se(K(r)), {
1401
+ return t.alignment === fe.center ? n = "align-center" : t.alignment === fe.right && (n = "align-right"), (i, l) => (H(), ee(se(K(r)), {
1402
1402
  class: qt(K(n))
1403
1403
  }, {
1404
1404
  default: ae(() => [
@@ -1524,13 +1524,13 @@ function lt(e, t) {
1524
1524
  const {
1525
1525
  type: o,
1526
1526
  children: i,
1527
- ...a
1527
+ ...l
1528
1528
  } = r, s = qr[r.type];
1529
- return s ? (zt(r) && (r.section = Q.header), (r == null ? void 0 : r.type) === "code_block" ? Ue(s, $e(a, {
1529
+ return s ? (zt(r) && (r.section = Q.header), (r == null ? void 0 : r.type) === "code_block" ? Ue(s, $e(l, {
1530
1530
  lines: i,
1531
1531
  isSingleLine: (i == null ? void 0 : i.length) && i.length === 1,
1532
1532
  codeBlockIndex: n
1533
- }), null) : Ue(s, $e(a, {
1533
+ }), null) : Ue(s, $e(l, {
1534
1534
  parent: t
1535
1535
  }), {
1536
1536
  default: () => i && lt(i, r)
@@ -1723,15 +1723,15 @@ function Zr(e) {
1723
1723
  for (var t = e.split(Wr).filter(function(_) {
1724
1724
  return _.length > 0;
1725
1725
  }), r = [], n = 0, o = t; n < o.length; n++) {
1726
- var i = o[n], a = i.split("/");
1727
- if (a.length === 0)
1726
+ var i = o[n], l = i.split("/");
1727
+ if (l.length === 0)
1728
1728
  throw new Error("Invalid number skeleton");
1729
- for (var s = a[0], l = a.slice(1), p = 0, c = l; p < c.length; p++) {
1730
- var g = c[p];
1729
+ for (var s = l[0], a = l.slice(1), p = 0, u = a; p < u.length; p++) {
1730
+ var g = u[p];
1731
1731
  if (g.length === 0)
1732
1732
  throw new Error("Invalid number skeleton");
1733
1733
  }
1734
- r.push({ stem: s, options: l });
1734
+ r.push({ stem: s, options: a });
1735
1735
  }
1736
1736
  return r;
1737
1737
  }
@@ -1838,13 +1838,13 @@ function en(e) {
1838
1838
  t.notation = "compact", t.compactDisplay = "long";
1839
1839
  continue;
1840
1840
  case "scientific":
1841
- t = v(v(v({}, t), { notation: "scientific" }), o.options.reduce(function(l, p) {
1842
- return v(v({}, l), Je(p));
1841
+ t = v(v(v({}, t), { notation: "scientific" }), o.options.reduce(function(a, p) {
1842
+ return v(v({}, a), Je(p));
1843
1843
  }, {}));
1844
1844
  continue;
1845
1845
  case "engineering":
1846
- t = v(v(v({}, t), { notation: "engineering" }), o.options.reduce(function(l, p) {
1847
- return v(v({}, l), Je(p));
1846
+ t = v(v(v({}, t), { notation: "engineering" }), o.options.reduce(function(a, p) {
1847
+ return v(v({}, a), Je(p));
1848
1848
  }, {}));
1849
1849
  continue;
1850
1850
  case "notation-simple":
@@ -1868,9 +1868,9 @@ function en(e) {
1868
1868
  case "integer-width":
1869
1869
  if (o.options.length > 1)
1870
1870
  throw new RangeError("integer-width stems only accept a single optional option");
1871
- o.options[0].replace(Yr, function(l, p, c, g, _, E) {
1871
+ o.options[0].replace(Yr, function(a, p, u, g, _, E) {
1872
1872
  if (p)
1873
- t.minimumIntegerDigits = c.length;
1873
+ t.minimumIntegerDigits = u.length;
1874
1874
  else {
1875
1875
  if (g && _)
1876
1876
  throw new Error("We currently do not support maximum integer digits");
@@ -1888,8 +1888,8 @@ function en(e) {
1888
1888
  if (We.test(o.stem)) {
1889
1889
  if (o.options.length > 1)
1890
1890
  throw new RangeError("Fraction-precision stems only accept a single optional option");
1891
- o.stem.replace(We, function(l, p, c, g, _, E) {
1892
- return c === "*" ? t.minimumFractionDigits = p.length : g && g[0] === "#" ? t.maximumFractionDigits = g.length : _ && E ? (t.minimumFractionDigits = _.length, t.maximumFractionDigits = _.length + E.length) : (t.minimumFractionDigits = p.length, t.maximumFractionDigits = p.length), "";
1891
+ o.stem.replace(We, function(a, p, u, g, _, E) {
1892
+ return u === "*" ? t.minimumFractionDigits = p.length : g && g[0] === "#" ? t.maximumFractionDigits = g.length : _ && E ? (t.minimumFractionDigits = _.length, t.maximumFractionDigits = _.length + E.length) : (t.minimumFractionDigits = p.length, t.maximumFractionDigits = p.length), "";
1893
1893
  });
1894
1894
  var i = o.options[0];
1895
1895
  i === "w" ? t = v(v({}, t), { trailingZeroDisplay: "stripIfInteger" }) : i && (t = v(v({}, t), Ze(i)));
@@ -1899,8 +1899,8 @@ function en(e) {
1899
1899
  t = v(v({}, t), Ze(o.stem));
1900
1900
  continue;
1901
1901
  }
1902
- var a = jt(o.stem);
1903
- a && (t = v(v({}, t), a));
1902
+ var l = jt(o.stem);
1903
+ l && (t = v(v({}, t), l));
1904
1904
  var s = Qr(o.stem);
1905
1905
  s && (t = v(v({}, t), s));
1906
1906
  }
@@ -3249,10 +3249,10 @@ function tn(e, t) {
3249
3249
  if (o === "j") {
3250
3250
  for (var i = 0; n + 1 < e.length && e.charAt(n + 1) === o; )
3251
3251
  i++, n++;
3252
- var a = 1 + (i & 1), s = i < 2 ? 1 : 3 + (i >> 1), l = "a", p = rn(t);
3252
+ var l = 1 + (i & 1), s = i < 2 ? 1 : 3 + (i >> 1), a = "a", p = rn(t);
3253
3253
  for ((p == "H" || p == "k") && (s = 0); s-- > 0; )
3254
- r += l;
3255
- for (; a-- > 0; )
3254
+ r += a;
3255
+ for (; l-- > 0; )
3256
3256
  r = p + r;
3257
3257
  } else
3258
3258
  o === "J" ? r += "H" : r += o;
@@ -3322,8 +3322,8 @@ var Ye = sn ? (
3322
3322
  // Ponyfill
3323
3323
  function(e) {
3324
3324
  for (var t = {}, r = 0, n = e; r < n.length; r++) {
3325
- var o = n[r], i = o[0], a = o[1];
3326
- t[i] = a;
3325
+ var o = n[r], i = o[0], l = o[1];
3326
+ t[i] = l;
3327
3327
  }
3328
3328
  return t;
3329
3329
  }
@@ -3399,10 +3399,10 @@ var _n = (
3399
3399
  for (var o = []; !this.isEOF(); ) {
3400
3400
  var i = this.char();
3401
3401
  if (i === 123) {
3402
- var a = this.parseArgument(t, n);
3403
- if (a.err)
3404
- return a;
3405
- o.push(a.val);
3402
+ var l = this.parseArgument(t, n);
3403
+ if (l.err)
3404
+ return l;
3405
+ o.push(l.val);
3406
3406
  } else {
3407
3407
  if (i === 125 && t > 0)
3408
3408
  break;
@@ -3417,15 +3417,15 @@ var _n = (
3417
3417
  break;
3418
3418
  return this.error(S.UNMATCHED_CLOSING_TAG, k(this.clonePosition(), this.clonePosition()));
3419
3419
  } else if (i === 60 && !this.ignoreTag && Pe(this.peek() || 0)) {
3420
- var a = this.parseTag(t, r);
3421
- if (a.err)
3422
- return a;
3423
- o.push(a.val);
3420
+ var l = this.parseTag(t, r);
3421
+ if (l.err)
3422
+ return l;
3423
+ o.push(l.val);
3424
3424
  } else {
3425
- var a = this.parseLiteral(t, r);
3426
- if (a.err)
3427
- return a;
3428
- o.push(a.val);
3425
+ var l = this.parseLiteral(t, r);
3426
+ if (l.err)
3427
+ return l;
3428
+ o.push(l.val);
3429
3429
  }
3430
3430
  }
3431
3431
  }
@@ -3447,16 +3447,16 @@ var _n = (
3447
3447
  var i = this.parseMessage(t + 1, r, !0);
3448
3448
  if (i.err)
3449
3449
  return i;
3450
- var a = i.val, s = this.clonePosition();
3450
+ var l = i.val, s = this.clonePosition();
3451
3451
  if (this.bumpIf("</")) {
3452
3452
  if (this.isEOF() || !Pe(this.char()))
3453
3453
  return this.error(S.INVALID_TAG, k(s, this.clonePosition()));
3454
- var l = this.clonePosition(), p = this.parseTagName();
3455
- return o !== p ? this.error(S.UNMATCHED_CLOSING_TAG, k(l, this.clonePosition())) : (this.bumpSpace(), this.bumpIf(">") ? {
3454
+ var a = this.clonePosition(), p = this.parseTagName();
3455
+ return o !== p ? this.error(S.UNMATCHED_CLOSING_TAG, k(a, this.clonePosition())) : (this.bumpSpace(), this.bumpIf(">") ? {
3456
3456
  val: {
3457
3457
  type: R.tag,
3458
3458
  value: o,
3459
- children: a,
3459
+ children: l,
3460
3460
  location: k(n, this.clonePosition())
3461
3461
  },
3462
3462
  err: null
@@ -3477,9 +3477,9 @@ var _n = (
3477
3477
  o += i;
3478
3478
  continue;
3479
3479
  }
3480
- var a = this.tryParseUnquoted(t, r);
3481
- if (a) {
3482
- o += a;
3480
+ var l = this.tryParseUnquoted(t, r);
3481
+ if (l) {
3482
+ o += l;
3483
3483
  continue;
3484
3484
  }
3485
3485
  var s = this.tryParseLeftAngleBracket();
@@ -3489,9 +3489,9 @@ var _n = (
3489
3489
  }
3490
3490
  break;
3491
3491
  }
3492
- var l = k(n, this.clonePosition());
3492
+ var a = k(n, this.clonePosition());
3493
3493
  return {
3494
- val: { type: R.literal, value: o, location: l },
3494
+ val: { type: R.literal, value: o, location: a },
3495
3495
  err: null
3496
3496
  };
3497
3497
  }, e.prototype.tryParseLeftAngleBracket = function() {
@@ -3566,13 +3566,13 @@ var _n = (
3566
3566
  }, e.prototype.parseIdentifierIfPossible = function() {
3567
3567
  var t = this.clonePosition(), r = this.offset(), n = He(this.message, r), o = r + n.length;
3568
3568
  this.bumpTo(o);
3569
- var i = this.clonePosition(), a = k(t, i);
3570
- return { value: n, location: a };
3569
+ var i = this.clonePosition(), l = k(t, i);
3570
+ return { value: n, location: l };
3571
3571
  }, e.prototype.parseArgumentOptions = function(t, r, n, o) {
3572
- var i, a = this.clonePosition(), s = this.parseIdentifierIfPossible().value, l = this.clonePosition();
3572
+ var i, l = this.clonePosition(), s = this.parseIdentifierIfPossible().value, a = this.clonePosition();
3573
3573
  switch (s) {
3574
3574
  case "":
3575
- return this.error(S.EXPECT_ARGUMENT_TYPE, k(a, l));
3575
+ return this.error(S.EXPECT_ARGUMENT_TYPE, k(l, a));
3576
3576
  case "number":
3577
3577
  case "date":
3578
3578
  case "time": {
@@ -3580,13 +3580,13 @@ var _n = (
3580
3580
  var p = null;
3581
3581
  if (this.bumpIf(",")) {
3582
3582
  this.bumpSpace();
3583
- var c = this.clonePosition(), g = this.parseSimpleArgStyleIfPossible();
3583
+ var u = this.clonePosition(), g = this.parseSimpleArgStyleIfPossible();
3584
3584
  if (g.err)
3585
3585
  return g;
3586
3586
  var _ = gn(g.val);
3587
3587
  if (_.length === 0)
3588
3588
  return this.error(S.EXPECT_ARGUMENT_STYLE, k(this.clonePosition(), this.clonePosition()));
3589
- var E = k(c, this.clonePosition());
3589
+ var E = k(u, this.clonePosition());
3590
3590
  p = { style: _, styleLocation: E };
3591
3591
  }
3592
3592
  var L = this.tryParseArgumentClose(o);
@@ -3611,9 +3611,9 @@ var _n = (
3611
3611
  pattern: T,
3612
3612
  location: p.styleLocation,
3613
3613
  parsedOptions: this.shouldParseSkeletons ? Kr(T) : {}
3614
- }, u = s === "date" ? R.date : R.time;
3614
+ }, c = s === "date" ? R.date : R.time;
3615
3615
  return {
3616
- val: { type: u, value: n, location: y, style: _ },
3616
+ val: { type: c, value: n, location: y, style: _ },
3617
3617
  err: null
3618
3618
  };
3619
3619
  }
@@ -3673,7 +3673,7 @@ var _n = (
3673
3673
  };
3674
3674
  }
3675
3675
  default:
3676
- return this.error(S.INVALID_ARGUMENT_TYPE, k(a, l));
3676
+ return this.error(S.INVALID_ARGUMENT_TYPE, k(l, a));
3677
3677
  }
3678
3678
  }, e.prototype.tryParseArgumentClose = function(t) {
3679
3679
  return this.isEOF() || this.char() !== 125 ? this.error(S.EXPECT_ARGUMENT_CLOSING_BRACE, k(t, this.clonePosition())) : (this.bump(), { val: !0, err: null });
@@ -3729,20 +3729,20 @@ var _n = (
3729
3729
  err: null
3730
3730
  };
3731
3731
  }, e.prototype.tryParsePluralOrSelectOptions = function(t, r, n, o) {
3732
- for (var i, a = !1, s = [], l = /* @__PURE__ */ new Set(), p = o.value, c = o.location; ; ) {
3732
+ for (var i, l = !1, s = [], a = /* @__PURE__ */ new Set(), p = o.value, u = o.location; ; ) {
3733
3733
  if (p.length === 0) {
3734
3734
  var g = this.clonePosition();
3735
3735
  if (r !== "select" && this.bumpIf("=")) {
3736
3736
  var _ = this.tryParseDecimalInteger(S.EXPECT_PLURAL_ARGUMENT_SELECTOR, S.INVALID_PLURAL_ARGUMENT_SELECTOR);
3737
3737
  if (_.err)
3738
3738
  return _;
3739
- c = k(g, this.clonePosition()), p = this.message.slice(g.offset, this.offset());
3739
+ u = k(g, this.clonePosition()), p = this.message.slice(g.offset, this.offset());
3740
3740
  } else
3741
3741
  break;
3742
3742
  }
3743
- if (l.has(p))
3744
- return this.error(r === "select" ? S.DUPLICATE_SELECT_ARGUMENT_SELECTOR : S.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, c);
3745
- p === "other" && (a = !0), this.bumpSpace();
3743
+ if (a.has(p))
3744
+ return this.error(r === "select" ? S.DUPLICATE_SELECT_ARGUMENT_SELECTOR : S.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, u);
3745
+ p === "other" && (l = !0), this.bumpSpace();
3746
3746
  var E = this.clonePosition();
3747
3747
  if (!this.bumpIf("{"))
3748
3748
  return this.error(r === "select" ? S.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : S.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, k(this.clonePosition(), this.clonePosition()));
@@ -3758,21 +3758,21 @@ var _n = (
3758
3758
  value: L.val,
3759
3759
  location: k(E, this.clonePosition())
3760
3760
  }
3761
- ]), l.add(p), this.bumpSpace(), i = this.parseIdentifierIfPossible(), p = i.value, c = i.location;
3761
+ ]), a.add(p), this.bumpSpace(), i = this.parseIdentifierIfPossible(), p = i.value, u = i.location;
3762
3762
  }
3763
- return s.length === 0 ? this.error(r === "select" ? S.EXPECT_SELECT_ARGUMENT_SELECTOR : S.EXPECT_PLURAL_ARGUMENT_SELECTOR, k(this.clonePosition(), this.clonePosition())) : this.requiresOtherClause && !a ? this.error(S.MISSING_OTHER_CLAUSE, k(this.clonePosition(), this.clonePosition())) : { val: s, err: null };
3763
+ return s.length === 0 ? this.error(r === "select" ? S.EXPECT_SELECT_ARGUMENT_SELECTOR : S.EXPECT_PLURAL_ARGUMENT_SELECTOR, k(this.clonePosition(), this.clonePosition())) : this.requiresOtherClause && !l ? this.error(S.MISSING_OTHER_CLAUSE, k(this.clonePosition(), this.clonePosition())) : { val: s, err: null };
3764
3764
  }, e.prototype.tryParseDecimalInteger = function(t, r) {
3765
3765
  var n = 1, o = this.clonePosition();
3766
3766
  this.bumpIf("+") || this.bumpIf("-") && (n = -1);
3767
- for (var i = !1, a = 0; !this.isEOF(); ) {
3767
+ for (var i = !1, l = 0; !this.isEOF(); ) {
3768
3768
  var s = this.char();
3769
3769
  if (s >= 48 && s <= 57)
3770
- i = !0, a = a * 10 + (s - 48), this.bump();
3770
+ i = !0, l = l * 10 + (s - 48), this.bump();
3771
3771
  else
3772
3772
  break;
3773
3773
  }
3774
- var l = k(o, this.clonePosition());
3775
- return i ? (a *= n, dn(a) ? { val: a, err: null } : this.error(r, l)) : this.error(t, l);
3774
+ var a = k(o, this.clonePosition());
3775
+ return i ? (l *= n, dn(l) ? { val: l, err: null } : this.error(r, a)) : this.error(t, a);
3776
3776
  }, e.prototype.offset = function() {
3777
3777
  return this.position.offset;
3778
3778
  }, e.prototype.isEOF = function() {
@@ -3977,7 +3977,7 @@ function Bn(e) {
3977
3977
  function Hn(e) {
3978
3978
  return typeof e == "function";
3979
3979
  }
3980
- function ge(e, t, r, n, o, i, a) {
3980
+ function ge(e, t, r, n, o, i, l) {
3981
3981
  if (e.length === 1 && Ke(e[0]))
3982
3982
  return [
3983
3983
  {
@@ -3985,91 +3985,91 @@ function ge(e, t, r, n, o, i, a) {
3985
3985
  value: e[0].value
3986
3986
  }
3987
3987
  ];
3988
- for (var s = [], l = 0, p = e; l < p.length; l++) {
3989
- var c = p[l];
3990
- if (Ke(c)) {
3988
+ for (var s = [], a = 0, p = e; a < p.length; a++) {
3989
+ var u = p[a];
3990
+ if (Ke(u)) {
3991
3991
  s.push({
3992
3992
  type: N.literal,
3993
- value: c.value
3993
+ value: u.value
3994
3994
  });
3995
3995
  continue;
3996
3996
  }
3997
- if (zr(c)) {
3997
+ if (zr(u)) {
3998
3998
  typeof i == "number" && s.push({
3999
3999
  type: N.literal,
4000
4000
  value: r.getNumberFormat(t).format(i)
4001
4001
  });
4002
4002
  continue;
4003
4003
  }
4004
- var g = c.value;
4004
+ var g = u.value;
4005
4005
  if (!(o && g in o))
4006
- throw new Ln(g, a);
4006
+ throw new Ln(g, l);
4007
4007
  var _ = o[g];
4008
- if (Vr(c)) {
4008
+ if (Vr(u)) {
4009
4009
  (!_ || typeof _ == "string" || typeof _ == "number") && (_ = typeof _ == "string" || typeof _ == "number" ? String(_) : ""), s.push({
4010
4010
  type: typeof _ == "string" ? N.literal : N.object,
4011
4011
  value: _
4012
4012
  });
4013
4013
  continue;
4014
4014
  }
4015
- if (pt(c)) {
4016
- var E = typeof c.style == "string" ? n.date[c.style] : Re(c.style) ? c.style.parsedOptions : void 0;
4015
+ if (pt(u)) {
4016
+ var E = typeof u.style == "string" ? n.date[u.style] : Re(u.style) ? u.style.parsedOptions : void 0;
4017
4017
  s.push({
4018
4018
  type: N.literal,
4019
4019
  value: r.getDateTimeFormat(t, E).format(_)
4020
4020
  });
4021
4021
  continue;
4022
4022
  }
4023
- if (ut(c)) {
4024
- var E = typeof c.style == "string" ? n.time[c.style] : Re(c.style) ? c.style.parsedOptions : n.time.medium;
4023
+ if (ut(u)) {
4024
+ var E = typeof u.style == "string" ? n.time[u.style] : Re(u.style) ? u.style.parsedOptions : n.time.medium;
4025
4025
  s.push({
4026
4026
  type: N.literal,
4027
4027
  value: r.getDateTimeFormat(t, E).format(_)
4028
4028
  });
4029
4029
  continue;
4030
4030
  }
4031
- if (mt(c)) {
4032
- var E = typeof c.style == "string" ? n.number[c.style] : ft(c.style) ? c.style.parsedOptions : void 0;
4031
+ if (mt(u)) {
4032
+ var E = typeof u.style == "string" ? n.number[u.style] : ft(u.style) ? u.style.parsedOptions : void 0;
4033
4033
  E && E.scale && (_ = _ * (E.scale || 1)), s.push({
4034
4034
  type: N.literal,
4035
4035
  value: r.getNumberFormat(t, E).format(_)
4036
4036
  });
4037
4037
  continue;
4038
4038
  }
4039
- if (ht(c)) {
4040
- var L = c.children, y = c.value, w = o[y];
4039
+ if (ht(u)) {
4040
+ var L = u.children, y = u.value, w = o[y];
4041
4041
  if (!Hn(w))
4042
- throw new Rn(y, "function", a);
4043
- var T = ge(L, t, r, n, o, i), u = w(T.map(function(h) {
4042
+ throw new Rn(y, "function", l);
4043
+ var T = ge(L, t, r, n, o, i), c = w(T.map(function(h) {
4044
4044
  return h.value;
4045
4045
  }));
4046
- Array.isArray(u) || (u = [u]), s.push.apply(s, u.map(function(h) {
4046
+ Array.isArray(c) || (c = [c]), s.push.apply(s, c.map(function(h) {
4047
4047
  return {
4048
4048
  type: typeof h == "string" ? N.literal : N.object,
4049
4049
  value: h
4050
4050
  };
4051
4051
  }));
4052
4052
  }
4053
- if (ct(c)) {
4054
- var m = c.options[_] || c.options.other;
4053
+ if (ct(u)) {
4054
+ var m = u.options[_] || u.options.other;
4055
4055
  if (!m)
4056
- throw new tt(c.value, _, Object.keys(c.options), a);
4056
+ throw new tt(u.value, _, Object.keys(u.options), l);
4057
4057
  s.push.apply(s, ge(m.value, t, r, n, o));
4058
4058
  continue;
4059
4059
  }
4060
- if (dt(c)) {
4061
- var m = c.options["=".concat(_)];
4060
+ if (dt(u)) {
4061
+ var m = u.options["=".concat(_)];
4062
4062
  if (!m) {
4063
4063
  if (!Intl.PluralRules)
4064
4064
  throw new J(`Intl.PluralRules is not available in this environment.
4065
4065
  Try polyfilling it using "@formatjs/intl-pluralrules"
4066
- `, z.MISSING_INTL_API, a);
4067
- var d = r.getPluralRules(t, { type: c.pluralType }).select(_ - (c.offset || 0));
4068
- m = c.options[d] || c.options.other;
4066
+ `, z.MISSING_INTL_API, l);
4067
+ var d = r.getPluralRules(t, { type: u.pluralType }).select(_ - (u.offset || 0));
4068
+ m = u.options[d] || u.options.other;
4069
4069
  }
4070
4070
  if (!m)
4071
- throw new tt(c.value, _, Object.keys(c.options), a);
4072
- s.push.apply(s, ge(m.value, t, r, n, o, _ - (c.offset || 0)));
4071
+ throw new tt(u.value, _, Object.keys(u.options), l);
4072
+ s.push.apply(s, ge(m.value, t, r, n, o, _ - (u.offset || 0)));
4073
4073
  continue;
4074
4074
  }
4075
4075
  }
@@ -4141,29 +4141,29 @@ var St = (
4141
4141
  number: {},
4142
4142
  dateTime: {},
4143
4143
  pluralRules: {}
4144
- }, this.format = function(l) {
4145
- var p = i.formatToParts(l);
4144
+ }, this.format = function(a) {
4145
+ var p = i.formatToParts(a);
4146
4146
  if (p.length === 1)
4147
4147
  return p[0].value;
4148
- var c = p.reduce(function(g, _) {
4148
+ var u = p.reduce(function(g, _) {
4149
4149
  return !g.length || _.type !== N.literal || typeof g[g.length - 1] != "string" ? g.push(_.value) : g[g.length - 1] += _.value, g;
4150
4150
  }, []);
4151
- return c.length <= 1 ? c[0] || "" : c;
4152
- }, this.formatToParts = function(l) {
4153
- return ge(i.ast, i.locales, i.formatters, i.formats, l, void 0, i.message);
4151
+ return u.length <= 1 ? u[0] || "" : u;
4152
+ }, this.formatToParts = function(a) {
4153
+ return ge(i.ast, i.locales, i.formatters, i.formats, a, void 0, i.message);
4154
4154
  }, this.resolvedOptions = function() {
4155
- var l;
4155
+ var a;
4156
4156
  return {
4157
- locale: ((l = i.resolvedLocale) === null || l === void 0 ? void 0 : l.toString()) || Intl.NumberFormat.supportedLocalesOf(i.locales)[0]
4157
+ locale: ((a = i.resolvedLocale) === null || a === void 0 ? void 0 : a.toString()) || Intl.NumberFormat.supportedLocalesOf(i.locales)[0]
4158
4158
  };
4159
4159
  }, this.getAst = function() {
4160
4160
  return i.ast;
4161
4161
  }, this.locales = r, this.resolvedLocale = e.resolveLocale(r), typeof t == "string") {
4162
4162
  if (this.message = t, !e.__parse)
4163
4163
  throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
4164
- var a = o || {};
4165
- a.formatters;
4166
- var s = $r(a, ["formatters"]);
4164
+ var l = o || {};
4165
+ l.formatters;
4166
+ var s = $r(l, ["formatters"]);
4167
4167
  this.ast = e.__parse(t, v(v({}, s), { locale: this.resolvedLocale }));
4168
4168
  } else
4169
4169
  this.ast = t;
@@ -4251,11 +4251,11 @@ var F = (
4251
4251
  function(e) {
4252
4252
  q(t, e);
4253
4253
  function t(r, n, o) {
4254
- var i = this, a = o ? o instanceof Error ? o : new Error(String(o)) : void 0;
4254
+ var i = this, l = o ? o instanceof Error ? o : new Error(String(o)) : void 0;
4255
4255
  return i = e.call(this, "[@formatjs/intl Error ".concat(r, "] ").concat(n, `
4256
- `).concat(a ? `
4257
- `.concat(a.message, `
4258
- `).concat(a.stack) : "")) || this, i.code = r, typeof Error.captureStackTrace == "function" && Error.captureStackTrace(i, t), i;
4256
+ `).concat(l ? `
4257
+ `.concat(l.message, `
4258
+ `).concat(l.stack) : "")) || this, i.code = r, typeof Error.captureStackTrace == "function" && Error.captureStackTrace(i, t), i;
4259
4259
  }
4260
4260
  return t;
4261
4261
  }(Error)
@@ -4302,12 +4302,12 @@ Locale: `).concat(n, `
4302
4302
  function(e) {
4303
4303
  q(t, e);
4304
4304
  function t(r, n, o, i) {
4305
- var a = e.call(this, "".concat(r, `
4305
+ var l = e.call(this, "".concat(r, `
4306
4306
  MessageID: `).concat(o == null ? void 0 : o.id, `
4307
4307
  Default Message: `).concat(o == null ? void 0 : o.defaultMessage, `
4308
4308
  Description: `).concat(o == null ? void 0 : o.description, `
4309
4309
  `), n, i) || this;
4310
- return a.descriptor = o, a;
4310
+ return l.descriptor = o, l;
4311
4311
  }
4312
4312
  return t;
4313
4313
  }(Ne)
@@ -4317,8 +4317,8 @@ Description: `).concat(o == null ? void 0 : o.description, `
4317
4317
  q(t, e);
4318
4318
  function t(r, n) {
4319
4319
  var o = e.call(this, I.MISSING_TRANSLATION, 'Missing message: "'.concat(r.id, '" for locale "').concat(n, '", using ').concat(r.defaultMessage ? "default message (".concat(typeof r.defaultMessage == "string" ? r.defaultMessage : r.defaultMessage.map(function(i) {
4320
- var a;
4321
- return (a = i.value) !== null && a !== void 0 ? a : JSON.stringify(i);
4320
+ var l;
4321
+ return (l = i.value) !== null && l !== void 0 ? l : JSON.stringify(i);
4322
4322
  }).join(), ")") : "id", " as fallback.")) || this;
4323
4323
  return o.descriptor = r, o;
4324
4324
  }
@@ -4372,23 +4372,23 @@ function Y(e) {
4372
4372
  function Gn(e) {
4373
4373
  e === void 0 && (e = kt());
4374
4374
  var t = Intl.RelativeTimeFormat, r = Intl.ListFormat, n = Intl.DisplayNames, o = $(function() {
4375
- for (var s, l = [], p = 0; p < arguments.length; p++)
4376
- l[p] = arguments[p];
4377
- return new ((s = Intl.DateTimeFormat).bind.apply(s, X([void 0], l, !1)))();
4375
+ for (var s, a = [], p = 0; p < arguments.length; p++)
4376
+ a[p] = arguments[p];
4377
+ return new ((s = Intl.DateTimeFormat).bind.apply(s, X([void 0], a, !1)))();
4378
4378
  }, {
4379
4379
  cache: Y(e.dateTime),
4380
4380
  strategy: V.variadic
4381
4381
  }), i = $(function() {
4382
- for (var s, l = [], p = 0; p < arguments.length; p++)
4383
- l[p] = arguments[p];
4384
- return new ((s = Intl.NumberFormat).bind.apply(s, X([void 0], l, !1)))();
4382
+ for (var s, a = [], p = 0; p < arguments.length; p++)
4383
+ a[p] = arguments[p];
4384
+ return new ((s = Intl.NumberFormat).bind.apply(s, X([void 0], a, !1)))();
4385
4385
  }, {
4386
4386
  cache: Y(e.number),
4387
4387
  strategy: V.variadic
4388
- }), a = $(function() {
4389
- for (var s, l = [], p = 0; p < arguments.length; p++)
4390
- l[p] = arguments[p];
4391
- return new ((s = Intl.PluralRules).bind.apply(s, X([void 0], l, !1)))();
4388
+ }), l = $(function() {
4389
+ for (var s, a = [], p = 0; p < arguments.length; p++)
4390
+ a[p] = arguments[p];
4391
+ return new ((s = Intl.PluralRules).bind.apply(s, X([void 0], a, !1)))();
4392
4392
  }, {
4393
4393
  cache: Y(e.pluralRules),
4394
4394
  strategy: V.variadic
@@ -4396,36 +4396,36 @@ function Gn(e) {
4396
4396
  return {
4397
4397
  getDateTimeFormat: o,
4398
4398
  getNumberFormat: i,
4399
- getMessageFormat: $(function(s, l, p, c) {
4400
- return new St(s, l, p, v({ formatters: {
4399
+ getMessageFormat: $(function(s, a, p, u) {
4400
+ return new St(s, a, p, v({ formatters: {
4401
4401
  getNumberFormat: i,
4402
4402
  getDateTimeFormat: o,
4403
- getPluralRules: a
4404
- } }, c || {}));
4403
+ getPluralRules: l
4404
+ } }, u || {}));
4405
4405
  }, {
4406
4406
  cache: Y(e.message),
4407
4407
  strategy: V.variadic
4408
4408
  }),
4409
4409
  getRelativeTimeFormat: $(function() {
4410
- for (var s = [], l = 0; l < arguments.length; l++)
4411
- s[l] = arguments[l];
4410
+ for (var s = [], a = 0; a < arguments.length; a++)
4411
+ s[a] = arguments[a];
4412
4412
  return new (t.bind.apply(t, X([void 0], s, !1)))();
4413
4413
  }, {
4414
4414
  cache: Y(e.relativeTime),
4415
4415
  strategy: V.variadic
4416
4416
  }),
4417
- getPluralRules: a,
4417
+ getPluralRules: l,
4418
4418
  getListFormat: $(function() {
4419
- for (var s = [], l = 0; l < arguments.length; l++)
4420
- s[l] = arguments[l];
4419
+ for (var s = [], a = 0; a < arguments.length; a++)
4420
+ s[a] = arguments[a];
4421
4421
  return new (r.bind.apply(r, X([void 0], s, !1)))();
4422
4422
  }, {
4423
4423
  cache: Y(e.list),
4424
4424
  strategy: V.variadic
4425
4425
  }),
4426
4426
  getDisplayNames: $(function() {
4427
- for (var s = [], l = 0; l < arguments.length; l++)
4428
- s[l] = arguments[l];
4427
+ for (var s = [], a = 0; a < arguments.length; a++)
4428
+ s[a] = arguments[a];
4429
4429
  return new (n.bind.apply(n, X([void 0], s, !1)))();
4430
4430
  }, {
4431
4431
  cache: Y(e.displayNames),
@@ -4461,7 +4461,7 @@ function ot(e, t) {
4461
4461
  return v(v(v({}, r), e), { date: nt(he(r.date, t), he(e.date || {}, t)), time: nt(he(r.time, t), he(e.time || {}, t)) });
4462
4462
  }
4463
4463
  var it = function(e, t, r, n, o) {
4464
- var i = e.locale, a = e.formats, s = e.messages, l = e.defaultLocale, p = e.defaultFormats, c = e.fallbackOnEmptyString, g = e.onError, _ = e.timeZone, E = e.defaultRichTextElements;
4464
+ var i = e.locale, l = e.formats, s = e.messages, a = e.defaultLocale, p = e.defaultFormats, u = e.fallbackOnEmptyString, g = e.onError, _ = e.timeZone, E = e.defaultRichTextElements;
4465
4465
  r === void 0 && (r = { id: "" });
4466
4466
  var L = r.id, y = r.defaultMessage;
4467
4467
  qn(!!L, "[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");
@@ -4475,28 +4475,28 @@ var it = function(e, t, r, n, o) {
4475
4475
  return T[0].value;
4476
4476
  if (!n && T && typeof T == "string" && !E)
4477
4477
  return T.replace(/'\{(.*?)\}'/gi, "{$1}");
4478
- if (n = v(v({}, E), n || {}), a = ot(a, _), p = ot(p, _), !T) {
4479
- if (c === !1 && T === "")
4478
+ if (n = v(v({}, E), n || {}), l = ot(l, _), p = ot(p, _), !T) {
4479
+ if (u === !1 && T === "")
4480
4480
  return T;
4481
- if ((!y || i && i.toLowerCase() !== l.toLowerCase()) && g(new xn(r, i)), y)
4481
+ if ((!y || i && i.toLowerCase() !== a.toLowerCase()) && g(new xn(r, i)), y)
4482
4482
  try {
4483
- var u = t.getMessageFormat(y, l, p, o);
4484
- return u.format(n);
4483
+ var c = t.getMessageFormat(y, a, p, o);
4484
+ return c.format(n);
4485
4485
  } catch (m) {
4486
4486
  return g(new Te('Error formatting default message for: "'.concat(w, '", rendering default message verbatim'), i, r, m)), typeof y == "string" ? y : w;
4487
4487
  }
4488
4488
  return w;
4489
4489
  }
4490
4490
  try {
4491
- var u = t.getMessageFormat(T, i, a, v({ formatters: t }, o || {}));
4492
- return u.format(n);
4491
+ var c = t.getMessageFormat(T, i, l, v({ formatters: t }, o || {}));
4492
+ return c.format(n);
4493
4493
  } catch (m) {
4494
4494
  g(new Te('Error formatting message: "'.concat(w, '", using ').concat(y ? "default message" : "id", " as fallback."), i, r, m));
4495
4495
  }
4496
4496
  if (y)
4497
4497
  try {
4498
- var u = t.getMessageFormat(y, l, p, o);
4499
- return u.format(n);
4498
+ var c = t.getMessageFormat(y, a, p, o);
4499
+ return c.format(n);
4500
4500
  } catch (m) {
4501
4501
  g(new Te('Error formatting the default message for: "'.concat(w, '", rendering message verbatim'), i, r, m));
4502
4502
  }
@@ -4523,63 +4523,63 @@ var it = function(e, t, r, n, o) {
4523
4523
  "fractionalSecondDigits"
4524
4524
  ];
4525
4525
  function ve(e, t, r, n) {
4526
- var o = e.locale, i = e.formats, a = e.onError, s = e.timeZone;
4526
+ var o = e.locale, i = e.formats, l = e.onError, s = e.timeZone;
4527
4527
  n === void 0 && (n = {});
4528
- var l = n.format, p = v(v({}, s && { timeZone: s }), l && xe(i, t, l, a)), c = te(n, At, p);
4529
- return t === "time" && !c.hour && !c.minute && !c.second && !c.timeStyle && !c.dateStyle && (c = v(v({}, c), { hour: "numeric", minute: "numeric" })), r(o, c);
4528
+ var a = n.format, p = v(v({}, s && { timeZone: s }), a && xe(i, t, a, l)), u = te(n, At, p);
4529
+ return t === "time" && !u.hour && !u.minute && !u.second && !u.timeStyle && !u.dateStyle && (u = v(v({}, u), { hour: "numeric", minute: "numeric" })), r(o, u);
4530
4530
  }
4531
4531
  function Un(e, t) {
4532
4532
  for (var r = [], n = 2; n < arguments.length; n++)
4533
4533
  r[n - 2] = arguments[n];
4534
- var o = r[0], i = r[1], a = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4534
+ var o = r[0], i = r[1], l = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4535
4535
  try {
4536
- return ve(e, "date", t, a).format(s);
4537
- } catch (l) {
4538
- e.onError(new F(I.FORMAT_ERROR, "Error formatting date.", l));
4536
+ return ve(e, "date", t, l).format(s);
4537
+ } catch (a) {
4538
+ e.onError(new F(I.FORMAT_ERROR, "Error formatting date.", a));
4539
4539
  }
4540
4540
  return String(s);
4541
4541
  }
4542
4542
  function $n(e, t) {
4543
4543
  for (var r = [], n = 2; n < arguments.length; n++)
4544
4544
  r[n - 2] = arguments[n];
4545
- var o = r[0], i = r[1], a = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4545
+ var o = r[0], i = r[1], l = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4546
4546
  try {
4547
- return ve(e, "time", t, a).format(s);
4548
- } catch (l) {
4549
- e.onError(new F(I.FORMAT_ERROR, "Error formatting time.", l));
4547
+ return ve(e, "time", t, l).format(s);
4548
+ } catch (a) {
4549
+ e.onError(new F(I.FORMAT_ERROR, "Error formatting time.", a));
4550
4550
  }
4551
4551
  return String(s);
4552
4552
  }
4553
4553
  function Vn(e, t) {
4554
4554
  for (var r = [], n = 2; n < arguments.length; n++)
4555
4555
  r[n - 2] = arguments[n];
4556
- var o = r[0], i = r[1], a = r[2], s = a === void 0 ? {} : a, l = e.timeZone, p = e.locale, c = e.onError, g = te(s, At, l ? { timeZone: l } : {});
4556
+ var o = r[0], i = r[1], l = r[2], s = l === void 0 ? {} : l, a = e.timeZone, p = e.locale, u = e.onError, g = te(s, At, a ? { timeZone: a } : {});
4557
4557
  try {
4558
4558
  return t(p, g).formatRange(o, i);
4559
4559
  } catch (_) {
4560
- c(new F(I.FORMAT_ERROR, "Error formatting date time range.", _));
4560
+ u(new F(I.FORMAT_ERROR, "Error formatting date time range.", _));
4561
4561
  }
4562
4562
  return String(o);
4563
4563
  }
4564
4564
  function zn(e, t) {
4565
4565
  for (var r = [], n = 2; n < arguments.length; n++)
4566
4566
  r[n - 2] = arguments[n];
4567
- var o = r[0], i = r[1], a = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4567
+ var o = r[0], i = r[1], l = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4568
4568
  try {
4569
- return ve(e, "date", t, a).formatToParts(s);
4570
- } catch (l) {
4571
- e.onError(new F(I.FORMAT_ERROR, "Error formatting date.", l));
4569
+ return ve(e, "date", t, l).formatToParts(s);
4570
+ } catch (a) {
4571
+ e.onError(new F(I.FORMAT_ERROR, "Error formatting date.", a));
4572
4572
  }
4573
4573
  return [];
4574
4574
  }
4575
4575
  function Xn(e, t) {
4576
4576
  for (var r = [], n = 2; n < arguments.length; n++)
4577
4577
  r[n - 2] = arguments[n];
4578
- var o = r[0], i = r[1], a = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4578
+ var o = r[0], i = r[1], l = i === void 0 ? {} : i, s = typeof o == "string" ? new Date(o || 0) : o;
4579
4579
  try {
4580
- return ve(e, "time", t, a).formatToParts(s);
4581
- } catch (l) {
4582
- e.onError(new F(I.FORMAT_ERROR, "Error formatting time.", l));
4580
+ return ve(e, "time", t, l).formatToParts(s);
4581
+ } catch (a) {
4582
+ e.onError(new F(I.FORMAT_ERROR, "Error formatting time.", a));
4583
4583
  }
4584
4584
  return [];
4585
4585
  }
@@ -4590,15 +4590,15 @@ var Kn = [
4590
4590
  "languageDisplay"
4591
4591
  ];
4592
4592
  function Wn(e, t, r, n) {
4593
- var o = e.locale, i = e.onError, a = Intl.DisplayNames;
4594
- a || i(new J(`Intl.DisplayNames is not available in this environment.
4593
+ var o = e.locale, i = e.onError, l = Intl.DisplayNames;
4594
+ l || i(new J(`Intl.DisplayNames is not available in this environment.
4595
4595
  Try polyfilling it using "@formatjs/intl-displaynames"
4596
4596
  `, z.MISSING_INTL_API));
4597
4597
  var s = te(n, Kn);
4598
4598
  try {
4599
4599
  return t(o, s).of(r);
4600
- } catch (l) {
4601
- i(new F(I.FORMAT_ERROR, "Error formatting display name.", l));
4600
+ } catch (a) {
4601
+ i(new F(I.FORMAT_ERROR, "Error formatting display name.", a));
4602
4602
  }
4603
4603
  }
4604
4604
  var Zn = [
@@ -4610,8 +4610,8 @@ function Jn(e) {
4610
4610
  }
4611
4611
  function Yn(e, t, r, n) {
4612
4612
  n === void 0 && (n = {});
4613
- var o = Rt(e, t, r, n).reduce(function(i, a) {
4614
- var s = a.value;
4613
+ var o = Rt(e, t, r, n).reduce(function(i, l) {
4614
+ var s = l.value;
4615
4615
  return typeof s != "string" ? i.push(s) : typeof i[i.length - 1] == "string" ? i[i.length - 1] += s : i.push(s), i;
4616
4616
  }, []);
4617
4617
  return o.length === 1 ? o[0] : o.length === 0 ? "" : o;
@@ -4619,24 +4619,24 @@ function Yn(e, t, r, n) {
4619
4619
  function Rt(e, t, r, n) {
4620
4620
  var o = e.locale, i = e.onError;
4621
4621
  n === void 0 && (n = {});
4622
- var a = Intl.ListFormat;
4623
- a || i(new J(`Intl.ListFormat is not available in this environment.
4622
+ var l = Intl.ListFormat;
4623
+ l || i(new J(`Intl.ListFormat is not available in this environment.
4624
4624
  Try polyfilling it using "@formatjs/intl-listformat"
4625
4625
  `, z.MISSING_INTL_API));
4626
4626
  var s = te(n, Zn);
4627
4627
  try {
4628
- var l = {}, p = r.map(function(c, g) {
4629
- if (typeof c == "object") {
4628
+ var a = {}, p = r.map(function(u, g) {
4629
+ if (typeof u == "object") {
4630
4630
  var _ = Jn(g);
4631
- return l[_] = c, _;
4631
+ return a[_] = u, _;
4632
4632
  }
4633
- return String(c);
4633
+ return String(u);
4634
4634
  });
4635
- return t(o, s).formatToParts(p).map(function(c) {
4636
- return c.type === "literal" ? c : v(v({}, c), { value: l[c.value] || c.value });
4635
+ return t(o, s).formatToParts(p).map(function(u) {
4636
+ return u.type === "literal" ? u : v(v({}, u), { value: a[u.value] || u.value });
4637
4637
  });
4638
- } catch (c) {
4639
- i(new F(I.FORMAT_ERROR, "Error formatting list.", c));
4638
+ } catch (u) {
4639
+ i(new F(I.FORMAT_ERROR, "Error formatting list.", u));
4640
4640
  }
4641
4641
  return r;
4642
4642
  }
@@ -4646,9 +4646,9 @@ function eo(e, t, r, n) {
4646
4646
  n === void 0 && (n = {}), Intl.PluralRules || i(new J(`Intl.PluralRules is not available in this environment.
4647
4647
  Try polyfilling it using "@formatjs/intl-pluralrules"
4648
4648
  `, z.MISSING_INTL_API));
4649
- var a = te(n, Qn);
4649
+ var l = te(n, Qn);
4650
4650
  try {
4651
- return t(o, a).select(r);
4651
+ return t(o, l).select(r);
4652
4652
  } catch (s) {
4653
4653
  i(new Ne("Error formatting plural.", o, s));
4654
4654
  }
@@ -4658,8 +4658,8 @@ var to = ["numeric", "style"];
4658
4658
  function ro(e, t, r) {
4659
4659
  var n = e.locale, o = e.formats, i = e.onError;
4660
4660
  r === void 0 && (r = {});
4661
- var a = r.format, s = !!a && xe(o, "relative", a, i) || {}, l = te(r, to, s);
4662
- return t(n, l);
4661
+ var l = r.format, s = !!l && xe(o, "relative", l, i) || {}, a = te(r, to, s);
4662
+ return t(n, a);
4663
4663
  }
4664
4664
  function no(e, t, r, n, o) {
4665
4665
  o === void 0 && (o = {}), n || (n = "second");
@@ -4669,8 +4669,8 @@ Try polyfilling it using "@formatjs/intl-relativetimeformat"
4669
4669
  `, z.MISSING_INTL_API));
4670
4670
  try {
4671
4671
  return ro(e, t, o).format(r, n);
4672
- } catch (a) {
4673
- e.onError(new Ne("Error formatting relative time.", e.locale, a));
4672
+ } catch (l) {
4673
+ e.onError(new Ne("Error formatting relative time.", e.locale, l));
4674
4674
  }
4675
4675
  return String(r);
4676
4676
  }
@@ -4699,8 +4699,8 @@ var oo = [
4699
4699
  function Lt(e, t, r) {
4700
4700
  var n = e.locale, o = e.formats, i = e.onError;
4701
4701
  r === void 0 && (r = {});
4702
- var a = r.format, s = a && xe(o, "number", a, i) || {}, l = te(r, oo, s);
4703
- return t(n, l);
4702
+ var l = r.format, s = l && xe(o, "number", l, i) || {}, a = te(r, oo, s);
4703
+ return t(n, a);
4704
4704
  }
4705
4705
  function io(e, t, r, n) {
4706
4706
  n === void 0 && (n = {});
@@ -4730,8 +4730,8 @@ Please consider using "@formatjs/cli" to pre-compile your messages for performan
4730
4730
  For more details see https://formatjs.io/docs/getting-started/message-distribution`);
4731
4731
  }
4732
4732
  function mo(e, t) {
4733
- var r = Gn(t), n = v(v({}, Mn), e), o = n.locale, i = n.defaultLocale, a = n.onError;
4734
- return o ? !Intl.NumberFormat.supportedLocalesOf(o).length && a ? a(new rt('Missing locale data for locale: "'.concat(o, '" in Intl.NumberFormat. Using default locale: "').concat(i, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : !Intl.DateTimeFormat.supportedLocalesOf(o).length && a && a(new rt('Missing locale data for locale: "'.concat(o, '" in Intl.DateTimeFormat. Using default locale: "').concat(i, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : (a && a(new Nn('"locale" was not configured, using "'.concat(i, '" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))), n.locale = n.defaultLocale || "en"), lo(n), v(v({}, n), {
4733
+ var r = Gn(t), n = v(v({}, Mn), e), o = n.locale, i = n.defaultLocale, l = n.onError;
4734
+ return o ? !Intl.NumberFormat.supportedLocalesOf(o).length && l ? l(new rt('Missing locale data for locale: "'.concat(o, '" in Intl.NumberFormat. Using default locale: "').concat(i, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : !Intl.DateTimeFormat.supportedLocalesOf(o).length && l && l(new rt('Missing locale data for locale: "'.concat(o, '" in Intl.DateTimeFormat. Using default locale: "').concat(i, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) : (l && l(new Nn('"locale" was not configured, using "'.concat(i, '" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))), n.locale = n.defaultLocale || "en"), lo(n), v(v({}, n), {
4735
4735
  formatters: r,
4736
4736
  formatNumber: io.bind(null, n, r.getNumberFormat),
4737
4737
  formatNumberToParts: so.bind(null, n, r.getNumberFormat),
@@ -4763,32 +4763,32 @@ function Ht(e) {
4763
4763
  function ie(e, t) {
4764
4764
  t = t || {};
4765
4765
  const r = t.delimiter || ".", n = t.maxDepth, o = t.transformKey || Ht, i = {};
4766
- function a(s, l, p) {
4767
- p = p || 1, Object.keys(s).forEach(function(c) {
4768
- const g = s[c], _ = t.safe && Array.isArray(g), E = Object.prototype.toString.call(g), L = Bt(g), y = E === "[object Object]" || E === "[object Array]", w = l ? l + r + o(c) : o(c);
4766
+ function l(s, a, p) {
4767
+ p = p || 1, Object.keys(s).forEach(function(u) {
4768
+ const g = s[u], _ = t.safe && Array.isArray(g), E = Object.prototype.toString.call(g), L = Bt(g), y = E === "[object Object]" || E === "[object Array]", w = a ? a + r + o(u) : o(u);
4769
4769
  if (!_ && !L && y && Object.keys(g).length && (!t.maxDepth || p < n))
4770
- return a(g, w, p + 1);
4770
+ return l(g, w, p + 1);
4771
4771
  i[w] = g;
4772
4772
  });
4773
4773
  }
4774
- return a(e), i;
4774
+ return l(e), i;
4775
4775
  }
4776
4776
  function Pt(e, t) {
4777
4777
  t = t || {};
4778
4778
  const r = t.delimiter || ".", n = t.overwrite || !1, o = t.transformKey || Ht, i = {};
4779
4779
  if (Bt(e) || Object.prototype.toString.call(e) !== "[object Object]")
4780
4780
  return e;
4781
- function a(p) {
4782
- const c = Number(p);
4783
- return isNaN(c) || p.indexOf(".") !== -1 || t.object ? p : c;
4781
+ function l(p) {
4782
+ const u = Number(p);
4783
+ return isNaN(u) || p.indexOf(".") !== -1 || t.object ? p : u;
4784
4784
  }
4785
- function s(p, c, g) {
4785
+ function s(p, u, g) {
4786
4786
  return Object.keys(g).reduce(function(_, E) {
4787
4787
  return _[p + r + E] = g[E], _;
4788
- }, c);
4788
+ }, u);
4789
4789
  }
4790
- function l(p) {
4791
- const c = Object.prototype.toString.call(p), g = c === "[object Array]", _ = c === "[object Object]";
4790
+ function a(p) {
4791
+ const u = Object.prototype.toString.call(p), g = u === "[object Array]", _ = u === "[object Object]";
4792
4792
  if (p) {
4793
4793
  if (g)
4794
4794
  return !p.length;
@@ -4797,23 +4797,23 @@ function Pt(e, t) {
4797
4797
  } else
4798
4798
  return !0;
4799
4799
  }
4800
- return e = Object.keys(e).reduce(function(p, c) {
4801
- const g = Object.prototype.toString.call(e[c]);
4802
- return !(g === "[object Object]" || g === "[object Array]") || l(e[c]) ? (p[c] = e[c], p) : s(
4803
- c,
4800
+ return e = Object.keys(e).reduce(function(p, u) {
4801
+ const g = Object.prototype.toString.call(e[u]);
4802
+ return !(g === "[object Object]" || g === "[object Array]") || a(e[u]) ? (p[u] = e[u], p) : s(
4803
+ u,
4804
4804
  p,
4805
- ie(e[c], t)
4805
+ ie(e[u], t)
4806
4806
  );
4807
4807
  }, {}), Object.keys(e).forEach(function(p) {
4808
- const c = p.split(r).map(o);
4809
- let g = a(c.shift()), _ = a(c[0]), E = i;
4808
+ const u = p.split(r).map(o);
4809
+ let g = l(u.shift()), _ = l(u[0]), E = i;
4810
4810
  for (; _ !== void 0; ) {
4811
4811
  if (g === "__proto__")
4812
4812
  return;
4813
4813
  const L = Object.prototype.toString.call(E[g]), y = L === "[object Object]" || L === "[object Array]";
4814
4814
  if (!n && !y && typeof E[g] < "u")
4815
4815
  return;
4816
- (n && !y || !n && E[g] == null) && (E[g] = typeof _ == "number" && !t.object ? [] : {}), E = E[g], c.length > 0 && (g = a(c.shift()), _ = a(c[0]));
4816
+ (n && !y || !n && E[g] == null) && (E[g] = typeof _ == "number" && !t.object ? [] : {}), E = E[g], u.length > 0 && (g = l(u.shift()), _ = l(u[0]));
4817
4817
  }
4818
4818
  E[g] = Pt(e[p], t);
4819
4819
  }), i;
@@ -4828,12 +4828,12 @@ const uo = kt(), co = (e, t, r = !1) => {
4828
4828
  })
4829
4829
  },
4830
4830
  uo
4831
- );
4831
+ ), { $t: o, ...i } = n, l = i;
4832
4832
  return {
4833
- t: (i, a, s) => n.formatMessage({ id: i }, a, s),
4834
- te: (i) => !!n.messages[i],
4835
- tm: (i) => n.messages[i] || [],
4836
- ...n,
4833
+ t: (a, p, u) => l.formatMessage({ id: a }, p, u),
4834
+ te: (a) => !!l.messages[a],
4835
+ tm: (a) => l.messages[a] || [],
4836
+ ...l,
4837
4837
  source: t
4838
4838
  };
4839
4839
  }, ho = (e = null) => G({
@@ -4845,6 +4845,7 @@ const uo = kt(), co = (e, t, r = !1) => {
4845
4845
  },
4846
4846
  keypath: {
4847
4847
  type: String,
4848
+ // type: String as unknown as PropType<PathToDotNotation<MessageSource, string>>, // This breaks the type interface, enable to debug
4848
4849
  required: !0
4849
4850
  },
4850
4851
  tag: {
@@ -4861,13 +4862,13 @@ const uo = kt(), co = (e, t, r = !1) => {
4861
4862
  };
4862
4863
  return () => {
4863
4864
  const o = Object.keys(r).filter((s) => s !== "_"), i = (e || t.i18n).messages[t.keypath].toString();
4864
- let a = n(i);
4865
- return a = a.filter((s) => s !== ""), a.forEach((s, l) => {
4865
+ let l = n(i);
4866
+ return l = l.filter((s) => s !== ""), l.forEach((s, a) => {
4866
4867
  if (!s.startsWith("{") && !s.endsWith("}"))
4867
4868
  return;
4868
4869
  const p = s.replace(/[\{\}]/g, "");
4869
- p === "0" && r.default ? a[l] = r.default() : o.includes(p) && r[p] && (a[l] = r[p]());
4870
- }), Vt(t.tag, t, a);
4870
+ p === "0" && r.default ? l[a] = r.default() : o.includes(p) && r[p] && (l[a] = r[p]());
4871
+ }), Vt(t.tag, t, l);
4871
4872
  };
4872
4873
  }
4873
4874
  }), fo = {
@@ -4914,12 +4915,12 @@ function Dt(e, t = /* @__PURE__ */ new Map()) {
4914
4915
  }
4915
4916
  function wo(e, t, r = "doc-heading-") {
4916
4917
  var p;
4917
- const n = (p = e.children) == null ? void 0 : p[0], o = `level-${e.level}`, i = Xt(n) && n.text || o, a = t.get(i);
4918
- t.set(i, (a || 0) + 1);
4919
- const s = a && a > 1 ? `-${a}` : "", l = r + yo(i, s);
4918
+ const n = (p = e.children) == null ? void 0 : p[0], o = `level-${e.level}`, i = Xt(n) && n.text || o, l = t.get(i);
4919
+ t.set(i, (l || 0) + 1);
4920
+ const s = l && l > 1 ? `-${l}` : "", a = r + yo(i, s);
4920
4921
  return {
4921
4922
  ...e,
4922
- slug: l
4923
+ slug: a
4923
4924
  };
4924
4925
  }
4925
4926
  const Eo = {
@@ -4938,16 +4939,16 @@ const Eo = {
4938
4939
  },
4939
4940
  setup(e) {
4940
4941
  var s;
4941
- const t = e, { i18n: r } = bo.useI18n(), n = (l) => !l || Object.keys(l).length === 0 && l.constructor === Object, o = Se(() => !n(t.document)), i = Dt((s = t.document) == null ? void 0 : s.children), a = () => {
4942
- var l;
4943
- return (l = t.document) != null && l.children ? lt(i) : null;
4942
+ const t = e, { i18n: r } = bo.useI18n(), n = (a) => !a || Object.keys(a).length === 0 && a.constructor === Object, o = Se(() => !n(t.document)), i = Dt((s = t.document) == null ? void 0 : s.children), l = () => {
4943
+ var a;
4944
+ return (a = t.document) != null && a.children ? lt(i) : null;
4944
4945
  };
4945
- return (l, p) => (H(), x("div", Eo, [
4946
- K(o) ? (H(), ee(a, { key: 0 })) : (H(), x("div", To, at(K(r).t("docViewer.error")), 1))
4946
+ return (a, p) => (H(), x("div", Eo, [
4947
+ K(o) ? (H(), ee(l, { key: 0 })) : (H(), x("div", To, at(K(r).t("documentViewer.error")), 1))
4947
4948
  ]));
4948
4949
  }
4949
4950
  });
4950
- const Ao = /* @__PURE__ */ C(So, [["__scopeId", "data-v-c8c46db9"]]);
4951
+ const Ao = /* @__PURE__ */ C(So, [["__scopeId", "data-v-24740eee"]]);
4951
4952
  export {
4952
4953
  Ao as D,
4953
4954
  Q as T,
@@ -4960,4 +4961,4 @@ export {
4960
4961
  zt as i,
4961
4962
  yo as t
4962
4963
  };
4963
- //# sourceMappingURL=index-23fd1872.js.map
4964
+ //# sourceMappingURL=index-4ae56a72.js.map