@savvy-web/silk 3.15.2 → 3.15.3

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.
@@ -2930,7 +2930,7 @@ const DependencyTableRowSchema = effect.Schema.Struct({
2930
2930
  */
2931
2931
  const DependencyTableSchema = effect.Schema.Array(DependencyTableRowSchema).check(effect.Schema.isMinLength(1));
2932
2932
  //#endregion
2933
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/MarkdownNode.js
2933
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/MarkdownNode.js
2934
2934
  /**
2935
2935
  * A single point in a source document: 1-based `line` and `column`, 0-based
2936
2936
  * `offset`.
@@ -3731,7 +3731,7 @@ effect.Schema.suspend(() => effect.Schema.Union([
3731
3731
  TableContent
3732
3732
  ]));
3733
3733
  //#endregion
3734
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/frontmatter.js
3734
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/frontmatter.js
3735
3735
  const FENCES = /* @__PURE__ */ new Map([
3736
3736
  ["---", {
3737
3737
  format: "yaml",
@@ -3785,7 +3785,7 @@ const scanFrontmatter = (lines, text) => {
3785
3785
  return null;
3786
3786
  };
3787
3787
  //#endregion
3788
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncNode.js
3788
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/JsoncNode.js
3789
3789
  /**
3790
3790
  * Discriminator values for JSONC AST node types: the JSON value types
3791
3791
  * (`string`/`number`/`boolean`/`null`), the structural types
@@ -3960,7 +3960,7 @@ function evaluateNode(node, depth) {
3960
3960
  }
3961
3961
  }
3962
3962
  //#endregion
3963
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/scanner.js
3963
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/internal/scanner.js
3964
3964
  const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
3965
3965
  const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
3966
3966
  const isDigit$2 = (ch) => ch >= 48 && ch <= 57;
@@ -4261,7 +4261,7 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
4261
4261
  };
4262
4262
  };
4263
4263
  //#endregion
4264
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/skip.js
4264
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/internal/skip.js
4265
4265
  /**
4266
4266
  * Iteratively consume the value beginning at the cursor's current token and
4267
4267
  * return its tight end offset (excludes trailing whitespace/comments).
@@ -4291,7 +4291,7 @@ const skipBalancedValue = (cursor) => {
4291
4291
  return end;
4292
4292
  };
4293
4293
  //#endregion
4294
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/parser.js
4294
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/internal/parser.js
4295
4295
  /**
4296
4296
  * The public parse-error code vocabulary. The facade builds its `@public`
4297
4297
  * `JsoncParseErrorCode` schema from this array; the parser produces these codes
@@ -4704,7 +4704,7 @@ const parseTree$2 = (text, flags) => {
4704
4704
  };
4705
4705
  };
4706
4706
  //#endregion
4707
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/Jsonc.js
4707
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/Jsonc.js
4708
4708
  /**
4709
4709
  * The single public parse-error code vocabulary, appearing as the `code` field
4710
4710
  * of {@link JsoncParseErrorDetail}.
@@ -5164,7 +5164,7 @@ var Jsonc = class Jsonc {
5164
5164
  */
5165
5165
  static fromString(options) {
5166
5166
  const flags = toFlags(options);
5167
- return effect.Schema.String.pipe(effect.Schema.decodeTo(effect.Schema.Unknown, effect.SchemaTransformation.transformOrFail({
5167
+ return effect.Schema.String.pipe(effect.Schema.decodeTo(effect.Schema.Unknown, effect.SchemaTransformation.transformEffect({
5168
5168
  decode: (input) => {
5169
5169
  const { value, errors } = parseValue(input, flags);
5170
5170
  if (errors.length > 0) {
@@ -5308,7 +5308,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
5308
5308
  }
5309
5309
  };
5310
5310
  //#endregion
5311
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/navigate.js
5311
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/internal/navigate.js
5312
5312
  /**
5313
5313
  * Resolve `path` against `text`, returning where the target is (or where it
5314
5314
  * would be inserted). `path` must be non-empty — the whole-document case is
@@ -5435,7 +5435,7 @@ function navigate(text, path) {
5435
5435
  return { _tag: "NoOp" };
5436
5436
  }
5437
5437
  //#endregion
5438
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncModifier.js
5438
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.11.0_effect@4.0.0-rc.115/node_modules/@effected/jsonc/JsoncModifier.js
5439
5439
  /**
5440
5440
  * Raised when `JsoncModifier.modify` cannot navigate the requested path: the
5441
5441
  * value at `depth` is not the container kind (`expected`) the next path segment
@@ -5563,7 +5563,7 @@ var JsoncModifier = class {
5563
5563
  });
5564
5564
  };
5565
5565
  //#endregion
5566
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/carriers.js
5566
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/carriers.js
5567
5567
  /**
5568
5568
  * P1's error-code vocabulary. Widens as later phases add parse-error kinds;
5569
5569
  * P1 registers exactly one, the hardening-guard trip.
@@ -5603,7 +5603,7 @@ var GuardExceeded$1 = class extends Error {
5603
5603
  /** Narrows `unknown` to {@link GuardExceeded}; never a bare `instanceof` at a call site. */
5604
5604
  const isGuardExceeded$1 = (u) => u instanceof GuardExceeded$1;
5605
5605
  //#endregion
5606
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/MarkdownDiagnostic.js
5606
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/MarkdownDiagnostic.js
5607
5607
  /**
5608
5608
  * Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
5609
5609
  * registers exactly the hardening-guard trip; later phases widen the union
@@ -5683,7 +5683,7 @@ function lineChar(text, offset) {
5683
5683
  };
5684
5684
  }
5685
5685
  //#endregion
5686
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blockTypes.js
5686
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockTypes.js
5687
5687
  /** Narrow materialized children to the flow content most constructs contain. */
5688
5688
  const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
5689
5689
  /** Narrow materialized children to the list items a list contains. */
@@ -5708,7 +5708,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
5708
5708
  data: {}
5709
5709
  });
5710
5710
  //#endregion
5711
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/preprocess.js
5711
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/preprocess.js
5712
5712
  /**
5713
5713
  * Split `text` into lines, preserving each line's absolute start offset.
5714
5714
  *
@@ -5762,7 +5762,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
5762
5762
  */
5763
5763
  const columnsToNextTabStop = (column) => 4 - column % 4;
5764
5764
  //#endregion
5765
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/htmlTags.js
5765
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/htmlTags.js
5766
5766
  const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
5767
5767
  /** An opening tag, with any attributes and an optional self-closing slash. */
5768
5768
  const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
@@ -5773,7 +5773,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
5773
5773
  /** {@link HTMLTAG}, anchored for matching at a cursor. */
5774
5774
  const reHtmlTag = new RegExp(`^${HTMLTAG}`);
5775
5775
  //#endregion
5776
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
5776
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
5777
5777
  const C_LESSTHAN$3 = 60;
5778
5778
  const reHtmlBlockOpen = [
5779
5779
  /./,
@@ -5839,7 +5839,7 @@ const htmlBlockStart = {
5839
5839
  }
5840
5840
  };
5841
5841
  //#endregion
5842
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/atxHeading.js
5842
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/atxHeading.js
5843
5843
  const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
5844
5844
  const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
5845
5845
  const reClosingHashes = /[ \t]+#+[ \t]*$/;
@@ -5889,7 +5889,7 @@ const atxHeadingStart = {
5889
5889
  }
5890
5890
  };
5891
5891
  //#endregion
5892
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/blockquote.js
5892
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/blockquote.js
5893
5893
  const C_GREATERTHAN = 62;
5894
5894
  /** Blockquote: continues while each line carries its `>` marker. */
5895
5895
  const blockquoteConstruct = {
@@ -5923,11 +5923,11 @@ const blockquoteStart = {
5923
5923
  }
5924
5924
  };
5925
5925
  //#endregion
5926
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/entityMap.js
5926
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/entityMap.js
5927
5927
  /** The HTML5 named character references, keyed without `&` or `;`. */
5928
5928
  const ENTITY_MAP = new Map(JSON.parse("[[\"AElig\",\"Æ\"],[\"AMP\",\"&\"],[\"Aacute\",\"Á\"],[\"Abreve\",\"Ă\"],[\"Acirc\",\"Â\"],[\"Acy\",\"А\"],[\"Afr\",\"𝔄\"],[\"Agrave\",\"À\"],[\"Alpha\",\"Α\"],[\"Amacr\",\"Ā\"],[\"And\",\"⩓\"],[\"Aogon\",\"Ą\"],[\"Aopf\",\"𝔸\"],[\"ApplyFunction\",\"⁡\"],[\"Aring\",\"Å\"],[\"Ascr\",\"𝒜\"],[\"Assign\",\"≔\"],[\"Atilde\",\"Ã\"],[\"Auml\",\"Ä\"],[\"Backslash\",\"∖\"],[\"Barv\",\"⫧\"],[\"Barwed\",\"⌆\"],[\"Bcy\",\"Б\"],[\"Because\",\"∵\"],[\"Bernoullis\",\"ℬ\"],[\"Beta\",\"Β\"],[\"Bfr\",\"𝔅\"],[\"Bopf\",\"𝔹\"],[\"Breve\",\"˘\"],[\"Bscr\",\"ℬ\"],[\"Bumpeq\",\"≎\"],[\"CHcy\",\"Ч\"],[\"COPY\",\"©\"],[\"Cacute\",\"Ć\"],[\"Cap\",\"⋒\"],[\"CapitalDifferentialD\",\"ⅅ\"],[\"Cayleys\",\"ℭ\"],[\"Ccaron\",\"Č\"],[\"Ccedil\",\"Ç\"],[\"Ccirc\",\"Ĉ\"],[\"Cconint\",\"∰\"],[\"Cdot\",\"Ċ\"],[\"Cedilla\",\"¸\"],[\"CenterDot\",\"·\"],[\"Cfr\",\"ℭ\"],[\"Chi\",\"Χ\"],[\"CircleDot\",\"⊙\"],[\"CircleMinus\",\"⊖\"],[\"CirclePlus\",\"⊕\"],[\"CircleTimes\",\"⊗\"],[\"ClockwiseContourIntegral\",\"∲\"],[\"CloseCurlyDoubleQuote\",\"”\"],[\"CloseCurlyQuote\",\"’\"],[\"Colon\",\"∷\"],[\"Colone\",\"⩴\"],[\"Congruent\",\"≡\"],[\"Conint\",\"∯\"],[\"ContourIntegral\",\"∮\"],[\"Copf\",\"ℂ\"],[\"Coproduct\",\"∐\"],[\"CounterClockwiseContourIntegral\",\"∳\"],[\"Cross\",\"⨯\"],[\"Cscr\",\"𝒞\"],[\"Cup\",\"⋓\"],[\"CupCap\",\"≍\"],[\"DD\",\"ⅅ\"],[\"DDotrahd\",\"⤑\"],[\"DJcy\",\"Ђ\"],[\"DScy\",\"Ѕ\"],[\"DZcy\",\"Џ\"],[\"Dagger\",\"‡\"],[\"Darr\",\"↡\"],[\"Dashv\",\"⫤\"],[\"Dcaron\",\"Ď\"],[\"Dcy\",\"Д\"],[\"Del\",\"∇\"],[\"Delta\",\"Δ\"],[\"Dfr\",\"𝔇\"],[\"DiacriticalAcute\",\"´\"],[\"DiacriticalDot\",\"˙\"],[\"DiacriticalDoubleAcute\",\"˝\"],[\"DiacriticalGrave\",\"`\"],[\"DiacriticalTilde\",\"˜\"],[\"Diamond\",\"⋄\"],[\"DifferentialD\",\"ⅆ\"],[\"Dopf\",\"𝔻\"],[\"Dot\",\"¨\"],[\"DotDot\",\"⃜\"],[\"DotEqual\",\"≐\"],[\"DoubleContourIntegral\",\"∯\"],[\"DoubleDot\",\"¨\"],[\"DoubleDownArrow\",\"⇓\"],[\"DoubleLeftArrow\",\"⇐\"],[\"DoubleLeftRightArrow\",\"⇔\"],[\"DoubleLeftTee\",\"⫤\"],[\"DoubleLongLeftArrow\",\"⟸\"],[\"DoubleLongLeftRightArrow\",\"⟺\"],[\"DoubleLongRightArrow\",\"⟹\"],[\"DoubleRightArrow\",\"⇒\"],[\"DoubleRightTee\",\"⊨\"],[\"DoubleUpArrow\",\"⇑\"],[\"DoubleUpDownArrow\",\"⇕\"],[\"DoubleVerticalBar\",\"∥\"],[\"DownArrow\",\"↓\"],[\"DownArrowBar\",\"⤓\"],[\"DownArrowUpArrow\",\"⇵\"],[\"DownBreve\",\"̑\"],[\"DownLeftRightVector\",\"⥐\"],[\"DownLeftTeeVector\",\"⥞\"],[\"DownLeftVector\",\"↽\"],[\"DownLeftVectorBar\",\"⥖\"],[\"DownRightTeeVector\",\"⥟\"],[\"DownRightVector\",\"⇁\"],[\"DownRightVectorBar\",\"⥗\"],[\"DownTee\",\"⊤\"],[\"DownTeeArrow\",\"↧\"],[\"Downarrow\",\"⇓\"],[\"Dscr\",\"𝒟\"],[\"Dstrok\",\"Đ\"],[\"ENG\",\"Ŋ\"],[\"ETH\",\"Ð\"],[\"Eacute\",\"É\"],[\"Ecaron\",\"Ě\"],[\"Ecirc\",\"Ê\"],[\"Ecy\",\"Э\"],[\"Edot\",\"Ė\"],[\"Efr\",\"𝔈\"],[\"Egrave\",\"È\"],[\"Element\",\"∈\"],[\"Emacr\",\"Ē\"],[\"EmptySmallSquare\",\"◻\"],[\"EmptyVerySmallSquare\",\"▫\"],[\"Eogon\",\"Ę\"],[\"Eopf\",\"𝔼\"],[\"Epsilon\",\"Ε\"],[\"Equal\",\"⩵\"],[\"EqualTilde\",\"≂\"],[\"Equilibrium\",\"⇌\"],[\"Escr\",\"ℰ\"],[\"Esim\",\"⩳\"],[\"Eta\",\"Η\"],[\"Euml\",\"Ë\"],[\"Exists\",\"∃\"],[\"ExponentialE\",\"ⅇ\"],[\"Fcy\",\"Ф\"],[\"Ffr\",\"𝔉\"],[\"FilledSmallSquare\",\"◼\"],[\"FilledVerySmallSquare\",\"▪\"],[\"Fopf\",\"𝔽\"],[\"ForAll\",\"∀\"],[\"Fouriertrf\",\"ℱ\"],[\"Fscr\",\"ℱ\"],[\"GJcy\",\"Ѓ\"],[\"GT\",\">\"],[\"Gamma\",\"Γ\"],[\"Gammad\",\"Ϝ\"],[\"Gbreve\",\"Ğ\"],[\"Gcedil\",\"Ģ\"],[\"Gcirc\",\"Ĝ\"],[\"Gcy\",\"Г\"],[\"Gdot\",\"Ġ\"],[\"Gfr\",\"𝔊\"],[\"Gg\",\"⋙\"],[\"Gopf\",\"𝔾\"],[\"GreaterEqual\",\"≥\"],[\"GreaterEqualLess\",\"⋛\"],[\"GreaterFullEqual\",\"≧\"],[\"GreaterGreater\",\"⪢\"],[\"GreaterLess\",\"≷\"],[\"GreaterSlantEqual\",\"⩾\"],[\"GreaterTilde\",\"≳\"],[\"Gscr\",\"𝒢\"],[\"Gt\",\"≫\"],[\"HARDcy\",\"Ъ\"],[\"Hacek\",\"ˇ\"],[\"Hat\",\"^\"],[\"Hcirc\",\"Ĥ\"],[\"Hfr\",\"ℌ\"],[\"HilbertSpace\",\"ℋ\"],[\"Hopf\",\"ℍ\"],[\"HorizontalLine\",\"─\"],[\"Hscr\",\"ℋ\"],[\"Hstrok\",\"Ħ\"],[\"HumpDownHump\",\"≎\"],[\"HumpEqual\",\"≏\"],[\"IEcy\",\"Е\"],[\"IJlig\",\"IJ\"],[\"IOcy\",\"Ё\"],[\"Iacute\",\"Í\"],[\"Icirc\",\"Î\"],[\"Icy\",\"И\"],[\"Idot\",\"İ\"],[\"Ifr\",\"ℑ\"],[\"Igrave\",\"Ì\"],[\"Im\",\"ℑ\"],[\"Imacr\",\"Ī\"],[\"ImaginaryI\",\"ⅈ\"],[\"Implies\",\"⇒\"],[\"Int\",\"∬\"],[\"Integral\",\"∫\"],[\"Intersection\",\"⋂\"],[\"InvisibleComma\",\"⁣\"],[\"InvisibleTimes\",\"⁢\"],[\"Iogon\",\"Į\"],[\"Iopf\",\"𝕀\"],[\"Iota\",\"Ι\"],[\"Iscr\",\"ℐ\"],[\"Itilde\",\"Ĩ\"],[\"Iukcy\",\"І\"],[\"Iuml\",\"Ï\"],[\"Jcirc\",\"Ĵ\"],[\"Jcy\",\"Й\"],[\"Jfr\",\"𝔍\"],[\"Jopf\",\"𝕁\"],[\"Jscr\",\"𝒥\"],[\"Jsercy\",\"Ј\"],[\"Jukcy\",\"Є\"],[\"KHcy\",\"Х\"],[\"KJcy\",\"Ќ\"],[\"Kappa\",\"Κ\"],[\"Kcedil\",\"Ķ\"],[\"Kcy\",\"К\"],[\"Kfr\",\"𝔎\"],[\"Kopf\",\"𝕂\"],[\"Kscr\",\"𝒦\"],[\"LJcy\",\"Љ\"],[\"LT\",\"<\"],[\"Lacute\",\"Ĺ\"],[\"Lambda\",\"Λ\"],[\"Lang\",\"⟪\"],[\"Laplacetrf\",\"ℒ\"],[\"Larr\",\"↞\"],[\"Lcaron\",\"Ľ\"],[\"Lcedil\",\"Ļ\"],[\"Lcy\",\"Л\"],[\"LeftAngleBracket\",\"⟨\"],[\"LeftArrow\",\"←\"],[\"LeftArrowBar\",\"⇤\"],[\"LeftArrowRightArrow\",\"⇆\"],[\"LeftCeiling\",\"⌈\"],[\"LeftDoubleBracket\",\"⟦\"],[\"LeftDownTeeVector\",\"⥡\"],[\"LeftDownVector\",\"⇃\"],[\"LeftDownVectorBar\",\"⥙\"],[\"LeftFloor\",\"⌊\"],[\"LeftRightArrow\",\"↔\"],[\"LeftRightVector\",\"⥎\"],[\"LeftTee\",\"⊣\"],[\"LeftTeeArrow\",\"↤\"],[\"LeftTeeVector\",\"⥚\"],[\"LeftTriangle\",\"⊲\"],[\"LeftTriangleBar\",\"⧏\"],[\"LeftTriangleEqual\",\"⊴\"],[\"LeftUpDownVector\",\"⥑\"],[\"LeftUpTeeVector\",\"⥠\"],[\"LeftUpVector\",\"↿\"],[\"LeftUpVectorBar\",\"⥘\"],[\"LeftVector\",\"↼\"],[\"LeftVectorBar\",\"⥒\"],[\"Leftarrow\",\"⇐\"],[\"Leftrightarrow\",\"⇔\"],[\"LessEqualGreater\",\"⋚\"],[\"LessFullEqual\",\"≦\"],[\"LessGreater\",\"≶\"],[\"LessLess\",\"⪡\"],[\"LessSlantEqual\",\"⩽\"],[\"LessTilde\",\"≲\"],[\"Lfr\",\"𝔏\"],[\"Ll\",\"⋘\"],[\"Lleftarrow\",\"⇚\"],[\"Lmidot\",\"Ŀ\"],[\"LongLeftArrow\",\"⟵\"],[\"LongLeftRightArrow\",\"⟷\"],[\"LongRightArrow\",\"⟶\"],[\"Longleftarrow\",\"⟸\"],[\"Longleftrightarrow\",\"⟺\"],[\"Longrightarrow\",\"⟹\"],[\"Lopf\",\"𝕃\"],[\"LowerLeftArrow\",\"↙\"],[\"LowerRightArrow\",\"↘\"],[\"Lscr\",\"ℒ\"],[\"Lsh\",\"↰\"],[\"Lstrok\",\"Ł\"],[\"Lt\",\"≪\"],[\"Map\",\"⤅\"],[\"Mcy\",\"М\"],[\"MediumSpace\",\" \"],[\"Mellintrf\",\"ℳ\"],[\"Mfr\",\"𝔐\"],[\"MinusPlus\",\"∓\"],[\"Mopf\",\"𝕄\"],[\"Mscr\",\"ℳ\"],[\"Mu\",\"Μ\"],[\"NJcy\",\"Њ\"],[\"Nacute\",\"Ń\"],[\"Ncaron\",\"Ň\"],[\"Ncedil\",\"Ņ\"],[\"Ncy\",\"Н\"],[\"NegativeMediumSpace\",\"​\"],[\"NegativeThickSpace\",\"​\"],[\"NegativeThinSpace\",\"​\"],[\"NegativeVeryThinSpace\",\"​\"],[\"NestedGreaterGreater\",\"≫\"],[\"NestedLessLess\",\"≪\"],[\"NewLine\",\"\\n\"],[\"Nfr\",\"𝔑\"],[\"NoBreak\",\"⁠\"],[\"NonBreakingSpace\",\"\xA0\"],[\"Nopf\",\"ℕ\"],[\"Not\",\"⫬\"],[\"NotCongruent\",\"≢\"],[\"NotCupCap\",\"≭\"],[\"NotDoubleVerticalBar\",\"∦\"],[\"NotElement\",\"∉\"],[\"NotEqual\",\"≠\"],[\"NotEqualTilde\",\"≂̸\"],[\"NotExists\",\"∄\"],[\"NotGreater\",\"≯\"],[\"NotGreaterEqual\",\"≱\"],[\"NotGreaterFullEqual\",\"≧̸\"],[\"NotGreaterGreater\",\"≫̸\"],[\"NotGreaterLess\",\"≹\"],[\"NotGreaterSlantEqual\",\"⩾̸\"],[\"NotGreaterTilde\",\"≵\"],[\"NotHumpDownHump\",\"≎̸\"],[\"NotHumpEqual\",\"≏̸\"],[\"NotLeftTriangle\",\"⋪\"],[\"NotLeftTriangleBar\",\"⧏̸\"],[\"NotLeftTriangleEqual\",\"⋬\"],[\"NotLess\",\"≮\"],[\"NotLessEqual\",\"≰\"],[\"NotLessGreater\",\"≸\"],[\"NotLessLess\",\"≪̸\"],[\"NotLessSlantEqual\",\"⩽̸\"],[\"NotLessTilde\",\"≴\"],[\"NotNestedGreaterGreater\",\"⪢̸\"],[\"NotNestedLessLess\",\"⪡̸\"],[\"NotPrecedes\",\"⊀\"],[\"NotPrecedesEqual\",\"⪯̸\"],[\"NotPrecedesSlantEqual\",\"⋠\"],[\"NotReverseElement\",\"∌\"],[\"NotRightTriangle\",\"⋫\"],[\"NotRightTriangleBar\",\"⧐̸\"],[\"NotRightTriangleEqual\",\"⋭\"],[\"NotSquareSubset\",\"⊏̸\"],[\"NotSquareSubsetEqual\",\"⋢\"],[\"NotSquareSuperset\",\"⊐̸\"],[\"NotSquareSupersetEqual\",\"⋣\"],[\"NotSubset\",\"⊂⃒\"],[\"NotSubsetEqual\",\"⊈\"],[\"NotSucceeds\",\"⊁\"],[\"NotSucceedsEqual\",\"⪰̸\"],[\"NotSucceedsSlantEqual\",\"⋡\"],[\"NotSucceedsTilde\",\"≿̸\"],[\"NotSuperset\",\"⊃⃒\"],[\"NotSupersetEqual\",\"⊉\"],[\"NotTilde\",\"≁\"],[\"NotTildeEqual\",\"≄\"],[\"NotTildeFullEqual\",\"≇\"],[\"NotTildeTilde\",\"≉\"],[\"NotVerticalBar\",\"∤\"],[\"Nscr\",\"𝒩\"],[\"Ntilde\",\"Ñ\"],[\"Nu\",\"Ν\"],[\"OElig\",\"Œ\"],[\"Oacute\",\"Ó\"],[\"Ocirc\",\"Ô\"],[\"Ocy\",\"О\"],[\"Odblac\",\"Ő\"],[\"Ofr\",\"𝔒\"],[\"Ograve\",\"Ò\"],[\"Omacr\",\"Ō\"],[\"Omega\",\"Ω\"],[\"Omicron\",\"Ο\"],[\"Oopf\",\"𝕆\"],[\"OpenCurlyDoubleQuote\",\"“\"],[\"OpenCurlyQuote\",\"‘\"],[\"Or\",\"⩔\"],[\"Oscr\",\"𝒪\"],[\"Oslash\",\"Ø\"],[\"Otilde\",\"Õ\"],[\"Otimes\",\"⨷\"],[\"Ouml\",\"Ö\"],[\"OverBar\",\"‾\"],[\"OverBrace\",\"⏞\"],[\"OverBracket\",\"⎴\"],[\"OverParenthesis\",\"⏜\"],[\"PartialD\",\"∂\"],[\"Pcy\",\"П\"],[\"Pfr\",\"𝔓\"],[\"Phi\",\"Φ\"],[\"Pi\",\"Π\"],[\"PlusMinus\",\"±\"],[\"Poincareplane\",\"ℌ\"],[\"Popf\",\"ℙ\"],[\"Pr\",\"⪻\"],[\"Precedes\",\"≺\"],[\"PrecedesEqual\",\"⪯\"],[\"PrecedesSlantEqual\",\"≼\"],[\"PrecedesTilde\",\"≾\"],[\"Prime\",\"″\"],[\"Product\",\"∏\"],[\"Proportion\",\"∷\"],[\"Proportional\",\"∝\"],[\"Pscr\",\"𝒫\"],[\"Psi\",\"Ψ\"],[\"QUOT\",\"\\\"\"],[\"Qfr\",\"𝔔\"],[\"Qopf\",\"ℚ\"],[\"Qscr\",\"𝒬\"],[\"RBarr\",\"⤐\"],[\"REG\",\"®\"],[\"Racute\",\"Ŕ\"],[\"Rang\",\"⟫\"],[\"Rarr\",\"↠\"],[\"Rarrtl\",\"⤖\"],[\"Rcaron\",\"Ř\"],[\"Rcedil\",\"Ŗ\"],[\"Rcy\",\"Р\"],[\"Re\",\"ℜ\"],[\"ReverseElement\",\"∋\"],[\"ReverseEquilibrium\",\"⇋\"],[\"ReverseUpEquilibrium\",\"⥯\"],[\"Rfr\",\"ℜ\"],[\"Rho\",\"Ρ\"],[\"RightAngleBracket\",\"⟩\"],[\"RightArrow\",\"→\"],[\"RightArrowBar\",\"⇥\"],[\"RightArrowLeftArrow\",\"⇄\"],[\"RightCeiling\",\"⌉\"],[\"RightDoubleBracket\",\"⟧\"],[\"RightDownTeeVector\",\"⥝\"],[\"RightDownVector\",\"⇂\"],[\"RightDownVectorBar\",\"⥕\"],[\"RightFloor\",\"⌋\"],[\"RightTee\",\"⊢\"],[\"RightTeeArrow\",\"↦\"],[\"RightTeeVector\",\"⥛\"],[\"RightTriangle\",\"⊳\"],[\"RightTriangleBar\",\"⧐\"],[\"RightTriangleEqual\",\"⊵\"],[\"RightUpDownVector\",\"⥏\"],[\"RightUpTeeVector\",\"⥜\"],[\"RightUpVector\",\"↾\"],[\"RightUpVectorBar\",\"⥔\"],[\"RightVector\",\"⇀\"],[\"RightVectorBar\",\"⥓\"],[\"Rightarrow\",\"⇒\"],[\"Ropf\",\"ℝ\"],[\"RoundImplies\",\"⥰\"],[\"Rrightarrow\",\"⇛\"],[\"Rscr\",\"ℛ\"],[\"Rsh\",\"↱\"],[\"RuleDelayed\",\"⧴\"],[\"SHCHcy\",\"Щ\"],[\"SHcy\",\"Ш\"],[\"SOFTcy\",\"Ь\"],[\"Sacute\",\"Ś\"],[\"Sc\",\"⪼\"],[\"Scaron\",\"Š\"],[\"Scedil\",\"Ş\"],[\"Scirc\",\"Ŝ\"],[\"Scy\",\"С\"],[\"Sfr\",\"𝔖\"],[\"ShortDownArrow\",\"↓\"],[\"ShortLeftArrow\",\"←\"],[\"ShortRightArrow\",\"→\"],[\"ShortUpArrow\",\"↑\"],[\"Sigma\",\"Σ\"],[\"SmallCircle\",\"∘\"],[\"Sopf\",\"𝕊\"],[\"Sqrt\",\"√\"],[\"Square\",\"□\"],[\"SquareIntersection\",\"⊓\"],[\"SquareSubset\",\"⊏\"],[\"SquareSubsetEqual\",\"⊑\"],[\"SquareSuperset\",\"⊐\"],[\"SquareSupersetEqual\",\"⊒\"],[\"SquareUnion\",\"⊔\"],[\"Sscr\",\"𝒮\"],[\"Star\",\"⋆\"],[\"Sub\",\"⋐\"],[\"Subset\",\"⋐\"],[\"SubsetEqual\",\"⊆\"],[\"Succeeds\",\"≻\"],[\"SucceedsEqual\",\"⪰\"],[\"SucceedsSlantEqual\",\"≽\"],[\"SucceedsTilde\",\"≿\"],[\"SuchThat\",\"∋\"],[\"Sum\",\"∑\"],[\"Sup\",\"⋑\"],[\"Superset\",\"⊃\"],[\"SupersetEqual\",\"⊇\"],[\"Supset\",\"⋑\"],[\"THORN\",\"Þ\"],[\"TRADE\",\"™\"],[\"TSHcy\",\"Ћ\"],[\"TScy\",\"Ц\"],[\"Tab\",\"\\t\"],[\"Tau\",\"Τ\"],[\"Tcaron\",\"Ť\"],[\"Tcedil\",\"Ţ\"],[\"Tcy\",\"Т\"],[\"Tfr\",\"𝔗\"],[\"Therefore\",\"∴\"],[\"Theta\",\"Θ\"],[\"ThickSpace\",\"  \"],[\"ThinSpace\",\" \"],[\"Tilde\",\"∼\"],[\"TildeEqual\",\"≃\"],[\"TildeFullEqual\",\"≅\"],[\"TildeTilde\",\"≈\"],[\"Topf\",\"𝕋\"],[\"TripleDot\",\"⃛\"],[\"Tscr\",\"𝒯\"],[\"Tstrok\",\"Ŧ\"],[\"Uacute\",\"Ú\"],[\"Uarr\",\"↟\"],[\"Uarrocir\",\"⥉\"],[\"Ubrcy\",\"Ў\"],[\"Ubreve\",\"Ŭ\"],[\"Ucirc\",\"Û\"],[\"Ucy\",\"У\"],[\"Udblac\",\"Ű\"],[\"Ufr\",\"𝔘\"],[\"Ugrave\",\"Ù\"],[\"Umacr\",\"Ū\"],[\"UnderBar\",\"_\"],[\"UnderBrace\",\"⏟\"],[\"UnderBracket\",\"⎵\"],[\"UnderParenthesis\",\"⏝\"],[\"Union\",\"⋃\"],[\"UnionPlus\",\"⊎\"],[\"Uogon\",\"Ų\"],[\"Uopf\",\"𝕌\"],[\"UpArrow\",\"↑\"],[\"UpArrowBar\",\"⤒\"],[\"UpArrowDownArrow\",\"⇅\"],[\"UpDownArrow\",\"↕\"],[\"UpEquilibrium\",\"⥮\"],[\"UpTee\",\"⊥\"],[\"UpTeeArrow\",\"↥\"],[\"Uparrow\",\"⇑\"],[\"Updownarrow\",\"⇕\"],[\"UpperLeftArrow\",\"↖\"],[\"UpperRightArrow\",\"↗\"],[\"Upsi\",\"ϒ\"],[\"Upsilon\",\"Υ\"],[\"Uring\",\"Ů\"],[\"Uscr\",\"𝒰\"],[\"Utilde\",\"Ũ\"],[\"Uuml\",\"Ü\"],[\"VDash\",\"⊫\"],[\"Vbar\",\"⫫\"],[\"Vcy\",\"В\"],[\"Vdash\",\"⊩\"],[\"Vdashl\",\"⫦\"],[\"Vee\",\"⋁\"],[\"Verbar\",\"‖\"],[\"Vert\",\"‖\"],[\"VerticalBar\",\"∣\"],[\"VerticalLine\",\"|\"],[\"VerticalSeparator\",\"❘\"],[\"VerticalTilde\",\"≀\"],[\"VeryThinSpace\",\" \"],[\"Vfr\",\"𝔙\"],[\"Vopf\",\"𝕍\"],[\"Vscr\",\"𝒱\"],[\"Vvdash\",\"⊪\"],[\"Wcirc\",\"Ŵ\"],[\"Wedge\",\"⋀\"],[\"Wfr\",\"𝔚\"],[\"Wopf\",\"𝕎\"],[\"Wscr\",\"𝒲\"],[\"Xfr\",\"𝔛\"],[\"Xi\",\"Ξ\"],[\"Xopf\",\"𝕏\"],[\"Xscr\",\"𝒳\"],[\"YAcy\",\"Я\"],[\"YIcy\",\"Ї\"],[\"YUcy\",\"Ю\"],[\"Yacute\",\"Ý\"],[\"Ycirc\",\"Ŷ\"],[\"Ycy\",\"Ы\"],[\"Yfr\",\"𝔜\"],[\"Yopf\",\"𝕐\"],[\"Yscr\",\"𝒴\"],[\"Yuml\",\"Ÿ\"],[\"ZHcy\",\"Ж\"],[\"Zacute\",\"Ź\"],[\"Zcaron\",\"Ž\"],[\"Zcy\",\"З\"],[\"Zdot\",\"Ż\"],[\"ZeroWidthSpace\",\"​\"],[\"Zeta\",\"Ζ\"],[\"Zfr\",\"ℨ\"],[\"Zopf\",\"ℤ\"],[\"Zscr\",\"𝒵\"],[\"aacute\",\"á\"],[\"abreve\",\"ă\"],[\"ac\",\"∾\"],[\"acE\",\"∾̳\"],[\"acd\",\"∿\"],[\"acirc\",\"â\"],[\"acute\",\"´\"],[\"acy\",\"а\"],[\"aelig\",\"æ\"],[\"af\",\"⁡\"],[\"afr\",\"𝔞\"],[\"agrave\",\"à\"],[\"alefsym\",\"ℵ\"],[\"aleph\",\"ℵ\"],[\"alpha\",\"α\"],[\"amacr\",\"ā\"],[\"amalg\",\"⨿\"],[\"amp\",\"&\"],[\"and\",\"∧\"],[\"andand\",\"⩕\"],[\"andd\",\"⩜\"],[\"andslope\",\"⩘\"],[\"andv\",\"⩚\"],[\"ang\",\"∠\"],[\"ange\",\"⦤\"],[\"angle\",\"∠\"],[\"angmsd\",\"∡\"],[\"angmsdaa\",\"⦨\"],[\"angmsdab\",\"⦩\"],[\"angmsdac\",\"⦪\"],[\"angmsdad\",\"⦫\"],[\"angmsdae\",\"⦬\"],[\"angmsdaf\",\"⦭\"],[\"angmsdag\",\"⦮\"],[\"angmsdah\",\"⦯\"],[\"angrt\",\"∟\"],[\"angrtvb\",\"⊾\"],[\"angrtvbd\",\"⦝\"],[\"angsph\",\"∢\"],[\"angst\",\"Å\"],[\"angzarr\",\"⍼\"],[\"aogon\",\"ą\"],[\"aopf\",\"𝕒\"],[\"ap\",\"≈\"],[\"apE\",\"⩰\"],[\"apacir\",\"⩯\"],[\"ape\",\"≊\"],[\"apid\",\"≋\"],[\"apos\",\"'\"],[\"approx\",\"≈\"],[\"approxeq\",\"≊\"],[\"aring\",\"å\"],[\"ascr\",\"𝒶\"],[\"ast\",\"*\"],[\"asymp\",\"≈\"],[\"asympeq\",\"≍\"],[\"atilde\",\"ã\"],[\"auml\",\"ä\"],[\"awconint\",\"∳\"],[\"awint\",\"⨑\"],[\"bNot\",\"⫭\"],[\"backcong\",\"≌\"],[\"backepsilon\",\"϶\"],[\"backprime\",\"‵\"],[\"backsim\",\"∽\"],[\"backsimeq\",\"⋍\"],[\"barvee\",\"⊽\"],[\"barwed\",\"⌅\"],[\"barwedge\",\"⌅\"],[\"bbrk\",\"⎵\"],[\"bbrktbrk\",\"⎶\"],[\"bcong\",\"≌\"],[\"bcy\",\"б\"],[\"bdquo\",\"„\"],[\"becaus\",\"∵\"],[\"because\",\"∵\"],[\"bemptyv\",\"⦰\"],[\"bepsi\",\"϶\"],[\"bernou\",\"ℬ\"],[\"beta\",\"β\"],[\"beth\",\"ℶ\"],[\"between\",\"≬\"],[\"bfr\",\"𝔟\"],[\"bigcap\",\"⋂\"],[\"bigcirc\",\"◯\"],[\"bigcup\",\"⋃\"],[\"bigodot\",\"⨀\"],[\"bigoplus\",\"⨁\"],[\"bigotimes\",\"⨂\"],[\"bigsqcup\",\"⨆\"],[\"bigstar\",\"★\"],[\"bigtriangledown\",\"▽\"],[\"bigtriangleup\",\"△\"],[\"biguplus\",\"⨄\"],[\"bigvee\",\"⋁\"],[\"bigwedge\",\"⋀\"],[\"bkarow\",\"⤍\"],[\"blacklozenge\",\"⧫\"],[\"blacksquare\",\"▪\"],[\"blacktriangle\",\"▴\"],[\"blacktriangledown\",\"▾\"],[\"blacktriangleleft\",\"◂\"],[\"blacktriangleright\",\"▸\"],[\"blank\",\"␣\"],[\"blk12\",\"▒\"],[\"blk14\",\"░\"],[\"blk34\",\"▓\"],[\"block\",\"█\"],[\"bne\",\"=⃥\"],[\"bnequiv\",\"≡⃥\"],[\"bnot\",\"⌐\"],[\"bopf\",\"𝕓\"],[\"bot\",\"⊥\"],[\"bottom\",\"⊥\"],[\"bowtie\",\"⋈\"],[\"boxDL\",\"╗\"],[\"boxDR\",\"╔\"],[\"boxDl\",\"╖\"],[\"boxDr\",\"╓\"],[\"boxH\",\"═\"],[\"boxHD\",\"╦\"],[\"boxHU\",\"╩\"],[\"boxHd\",\"╤\"],[\"boxHu\",\"╧\"],[\"boxUL\",\"╝\"],[\"boxUR\",\"╚\"],[\"boxUl\",\"╜\"],[\"boxUr\",\"╙\"],[\"boxV\",\"║\"],[\"boxVH\",\"╬\"],[\"boxVL\",\"╣\"],[\"boxVR\",\"╠\"],[\"boxVh\",\"╫\"],[\"boxVl\",\"╢\"],[\"boxVr\",\"╟\"],[\"boxbox\",\"⧉\"],[\"boxdL\",\"╕\"],[\"boxdR\",\"╒\"],[\"boxdl\",\"┐\"],[\"boxdr\",\"┌\"],[\"boxh\",\"─\"],[\"boxhD\",\"╥\"],[\"boxhU\",\"╨\"],[\"boxhd\",\"┬\"],[\"boxhu\",\"┴\"],[\"boxminus\",\"⊟\"],[\"boxplus\",\"⊞\"],[\"boxtimes\",\"⊠\"],[\"boxuL\",\"╛\"],[\"boxuR\",\"╘\"],[\"boxul\",\"┘\"],[\"boxur\",\"└\"],[\"boxv\",\"│\"],[\"boxvH\",\"╪\"],[\"boxvL\",\"╡\"],[\"boxvR\",\"╞\"],[\"boxvh\",\"┼\"],[\"boxvl\",\"┤\"],[\"boxvr\",\"├\"],[\"bprime\",\"‵\"],[\"breve\",\"˘\"],[\"brvbar\",\"¦\"],[\"bscr\",\"𝒷\"],[\"bsemi\",\"⁏\"],[\"bsim\",\"∽\"],[\"bsime\",\"⋍\"],[\"bsol\",\"\\\\\"],[\"bsolb\",\"⧅\"],[\"bsolhsub\",\"⟈\"],[\"bull\",\"•\"],[\"bullet\",\"•\"],[\"bump\",\"≎\"],[\"bumpE\",\"⪮\"],[\"bumpe\",\"≏\"],[\"bumpeq\",\"≏\"],[\"cacute\",\"ć\"],[\"cap\",\"∩\"],[\"capand\",\"⩄\"],[\"capbrcup\",\"⩉\"],[\"capcap\",\"⩋\"],[\"capcup\",\"⩇\"],[\"capdot\",\"⩀\"],[\"caps\",\"∩︀\"],[\"caret\",\"⁁\"],[\"caron\",\"ˇ\"],[\"ccaps\",\"⩍\"],[\"ccaron\",\"č\"],[\"ccedil\",\"ç\"],[\"ccirc\",\"ĉ\"],[\"ccups\",\"⩌\"],[\"ccupssm\",\"⩐\"],[\"cdot\",\"ċ\"],[\"cedil\",\"¸\"],[\"cemptyv\",\"⦲\"],[\"cent\",\"¢\"],[\"centerdot\",\"·\"],[\"cfr\",\"𝔠\"],[\"chcy\",\"ч\"],[\"check\",\"✓\"],[\"checkmark\",\"✓\"],[\"chi\",\"χ\"],[\"cir\",\"○\"],[\"cirE\",\"⧃\"],[\"circ\",\"ˆ\"],[\"circeq\",\"≗\"],[\"circlearrowleft\",\"↺\"],[\"circlearrowright\",\"↻\"],[\"circledR\",\"®\"],[\"circledS\",\"Ⓢ\"],[\"circledast\",\"⊛\"],[\"circledcirc\",\"⊚\"],[\"circleddash\",\"⊝\"],[\"cire\",\"≗\"],[\"cirfnint\",\"⨐\"],[\"cirmid\",\"⫯\"],[\"cirscir\",\"⧂\"],[\"clubs\",\"♣\"],[\"clubsuit\",\"♣\"],[\"colon\",\":\"],[\"colone\",\"≔\"],[\"coloneq\",\"≔\"],[\"comma\",\",\"],[\"commat\",\"@\"],[\"comp\",\"∁\"],[\"compfn\",\"∘\"],[\"complement\",\"∁\"],[\"complexes\",\"ℂ\"],[\"cong\",\"≅\"],[\"congdot\",\"⩭\"],[\"conint\",\"∮\"],[\"copf\",\"𝕔\"],[\"coprod\",\"∐\"],[\"copy\",\"©\"],[\"copysr\",\"℗\"],[\"crarr\",\"↵\"],[\"cross\",\"✗\"],[\"cscr\",\"𝒸\"],[\"csub\",\"⫏\"],[\"csube\",\"⫑\"],[\"csup\",\"⫐\"],[\"csupe\",\"⫒\"],[\"ctdot\",\"⋯\"],[\"cudarrl\",\"⤸\"],[\"cudarrr\",\"⤵\"],[\"cuepr\",\"⋞\"],[\"cuesc\",\"⋟\"],[\"cularr\",\"↶\"],[\"cularrp\",\"⤽\"],[\"cup\",\"∪\"],[\"cupbrcap\",\"⩈\"],[\"cupcap\",\"⩆\"],[\"cupcup\",\"⩊\"],[\"cupdot\",\"⊍\"],[\"cupor\",\"⩅\"],[\"cups\",\"∪︀\"],[\"curarr\",\"↷\"],[\"curarrm\",\"⤼\"],[\"curlyeqprec\",\"⋞\"],[\"curlyeqsucc\",\"⋟\"],[\"curlyvee\",\"⋎\"],[\"curlywedge\",\"⋏\"],[\"curren\",\"¤\"],[\"curvearrowleft\",\"↶\"],[\"curvearrowright\",\"↷\"],[\"cuvee\",\"⋎\"],[\"cuwed\",\"⋏\"],[\"cwconint\",\"∲\"],[\"cwint\",\"∱\"],[\"cylcty\",\"⌭\"],[\"dArr\",\"⇓\"],[\"dHar\",\"⥥\"],[\"dagger\",\"†\"],[\"daleth\",\"ℸ\"],[\"darr\",\"↓\"],[\"dash\",\"‐\"],[\"dashv\",\"⊣\"],[\"dbkarow\",\"⤏\"],[\"dblac\",\"˝\"],[\"dcaron\",\"ď\"],[\"dcy\",\"д\"],[\"dd\",\"ⅆ\"],[\"ddagger\",\"‡\"],[\"ddarr\",\"⇊\"],[\"ddotseq\",\"⩷\"],[\"deg\",\"°\"],[\"delta\",\"δ\"],[\"demptyv\",\"⦱\"],[\"dfisht\",\"⥿\"],[\"dfr\",\"𝔡\"],[\"dharl\",\"⇃\"],[\"dharr\",\"⇂\"],[\"diam\",\"⋄\"],[\"diamond\",\"⋄\"],[\"diamondsuit\",\"♦\"],[\"diams\",\"♦\"],[\"die\",\"¨\"],[\"digamma\",\"ϝ\"],[\"disin\",\"⋲\"],[\"div\",\"÷\"],[\"divide\",\"÷\"],[\"divideontimes\",\"⋇\"],[\"divonx\",\"⋇\"],[\"djcy\",\"ђ\"],[\"dlcorn\",\"⌞\"],[\"dlcrop\",\"⌍\"],[\"dollar\",\"$\"],[\"dopf\",\"𝕕\"],[\"dot\",\"˙\"],[\"doteq\",\"≐\"],[\"doteqdot\",\"≑\"],[\"dotminus\",\"∸\"],[\"dotplus\",\"∔\"],[\"dotsquare\",\"⊡\"],[\"doublebarwedge\",\"⌆\"],[\"downarrow\",\"↓\"],[\"downdownarrows\",\"⇊\"],[\"downharpoonleft\",\"⇃\"],[\"downharpoonright\",\"⇂\"],[\"drbkarow\",\"⤐\"],[\"drcorn\",\"⌟\"],[\"drcrop\",\"⌌\"],[\"dscr\",\"𝒹\"],[\"dscy\",\"ѕ\"],[\"dsol\",\"⧶\"],[\"dstrok\",\"đ\"],[\"dtdot\",\"⋱\"],[\"dtri\",\"▿\"],[\"dtrif\",\"▾\"],[\"duarr\",\"⇵\"],[\"duhar\",\"⥯\"],[\"dwangle\",\"⦦\"],[\"dzcy\",\"џ\"],[\"dzigrarr\",\"⟿\"],[\"eDDot\",\"⩷\"],[\"eDot\",\"≑\"],[\"eacute\",\"é\"],[\"easter\",\"⩮\"],[\"ecaron\",\"ě\"],[\"ecir\",\"≖\"],[\"ecirc\",\"ê\"],[\"ecolon\",\"≕\"],[\"ecy\",\"э\"],[\"edot\",\"ė\"],[\"ee\",\"ⅇ\"],[\"efDot\",\"≒\"],[\"efr\",\"𝔢\"],[\"eg\",\"⪚\"],[\"egrave\",\"è\"],[\"egs\",\"⪖\"],[\"egsdot\",\"⪘\"],[\"el\",\"⪙\"],[\"elinters\",\"⏧\"],[\"ell\",\"ℓ\"],[\"els\",\"⪕\"],[\"elsdot\",\"⪗\"],[\"emacr\",\"ē\"],[\"empty\",\"∅\"],[\"emptyset\",\"∅\"],[\"emptyv\",\"∅\"],[\"emsp\",\" \"],[\"emsp13\",\" \"],[\"emsp14\",\" \"],[\"eng\",\"ŋ\"],[\"ensp\",\" \"],[\"eogon\",\"ę\"],[\"eopf\",\"𝕖\"],[\"epar\",\"⋕\"],[\"eparsl\",\"⧣\"],[\"eplus\",\"⩱\"],[\"epsi\",\"ε\"],[\"epsilon\",\"ε\"],[\"epsiv\",\"ϵ\"],[\"eqcirc\",\"≖\"],[\"eqcolon\",\"≕\"],[\"eqsim\",\"≂\"],[\"eqslantgtr\",\"⪖\"],[\"eqslantless\",\"⪕\"],[\"equals\",\"=\"],[\"equest\",\"≟\"],[\"equiv\",\"≡\"],[\"equivDD\",\"⩸\"],[\"eqvparsl\",\"⧥\"],[\"erDot\",\"≓\"],[\"erarr\",\"⥱\"],[\"escr\",\"ℯ\"],[\"esdot\",\"≐\"],[\"esim\",\"≂\"],[\"eta\",\"η\"],[\"eth\",\"ð\"],[\"euml\",\"ë\"],[\"euro\",\"€\"],[\"excl\",\"!\"],[\"exist\",\"∃\"],[\"expectation\",\"ℰ\"],[\"exponentiale\",\"ⅇ\"],[\"fallingdotseq\",\"≒\"],[\"fcy\",\"ф\"],[\"female\",\"♀\"],[\"ffilig\",\"ffi\"],[\"fflig\",\"ff\"],[\"ffllig\",\"ffl\"],[\"ffr\",\"𝔣\"],[\"filig\",\"fi\"],[\"fjlig\",\"fj\"],[\"flat\",\"♭\"],[\"fllig\",\"fl\"],[\"fltns\",\"▱\"],[\"fnof\",\"ƒ\"],[\"fopf\",\"𝕗\"],[\"forall\",\"∀\"],[\"fork\",\"⋔\"],[\"forkv\",\"⫙\"],[\"fpartint\",\"⨍\"],[\"frac12\",\"½\"],[\"frac13\",\"⅓\"],[\"frac14\",\"¼\"],[\"frac15\",\"⅕\"],[\"frac16\",\"⅙\"],[\"frac18\",\"⅛\"],[\"frac23\",\"⅔\"],[\"frac25\",\"⅖\"],[\"frac34\",\"¾\"],[\"frac35\",\"⅗\"],[\"frac38\",\"⅜\"],[\"frac45\",\"⅘\"],[\"frac56\",\"⅚\"],[\"frac58\",\"⅝\"],[\"frac78\",\"⅞\"],[\"frasl\",\"⁄\"],[\"frown\",\"⌢\"],[\"fscr\",\"𝒻\"],[\"gE\",\"≧\"],[\"gEl\",\"⪌\"],[\"gacute\",\"ǵ\"],[\"gamma\",\"γ\"],[\"gammad\",\"ϝ\"],[\"gap\",\"⪆\"],[\"gbreve\",\"ğ\"],[\"gcirc\",\"ĝ\"],[\"gcy\",\"г\"],[\"gdot\",\"ġ\"],[\"ge\",\"≥\"],[\"gel\",\"⋛\"],[\"geq\",\"≥\"],[\"geqq\",\"≧\"],[\"geqslant\",\"⩾\"],[\"ges\",\"⩾\"],[\"gescc\",\"⪩\"],[\"gesdot\",\"⪀\"],[\"gesdoto\",\"⪂\"],[\"gesdotol\",\"⪄\"],[\"gesl\",\"⋛︀\"],[\"gesles\",\"⪔\"],[\"gfr\",\"𝔤\"],[\"gg\",\"≫\"],[\"ggg\",\"⋙\"],[\"gimel\",\"ℷ\"],[\"gjcy\",\"ѓ\"],[\"gl\",\"≷\"],[\"glE\",\"⪒\"],[\"gla\",\"⪥\"],[\"glj\",\"⪤\"],[\"gnE\",\"≩\"],[\"gnap\",\"⪊\"],[\"gnapprox\",\"⪊\"],[\"gne\",\"⪈\"],[\"gneq\",\"⪈\"],[\"gneqq\",\"≩\"],[\"gnsim\",\"⋧\"],[\"gopf\",\"𝕘\"],[\"grave\",\"`\"],[\"gscr\",\"ℊ\"],[\"gsim\",\"≳\"],[\"gsime\",\"⪎\"],[\"gsiml\",\"⪐\"],[\"gt\",\">\"],[\"gtcc\",\"⪧\"],[\"gtcir\",\"⩺\"],[\"gtdot\",\"⋗\"],[\"gtlPar\",\"⦕\"],[\"gtquest\",\"⩼\"],[\"gtrapprox\",\"⪆\"],[\"gtrarr\",\"⥸\"],[\"gtrdot\",\"⋗\"],[\"gtreqless\",\"⋛\"],[\"gtreqqless\",\"⪌\"],[\"gtrless\",\"≷\"],[\"gtrsim\",\"≳\"],[\"gvertneqq\",\"≩︀\"],[\"gvnE\",\"≩︀\"],[\"hArr\",\"⇔\"],[\"hairsp\",\" \"],[\"half\",\"½\"],[\"hamilt\",\"ℋ\"],[\"hardcy\",\"ъ\"],[\"harr\",\"↔\"],[\"harrcir\",\"⥈\"],[\"harrw\",\"↭\"],[\"hbar\",\"ℏ\"],[\"hcirc\",\"ĥ\"],[\"hearts\",\"♥\"],[\"heartsuit\",\"♥\"],[\"hellip\",\"…\"],[\"hercon\",\"⊹\"],[\"hfr\",\"𝔥\"],[\"hksearow\",\"⤥\"],[\"hkswarow\",\"⤦\"],[\"hoarr\",\"⇿\"],[\"homtht\",\"∻\"],[\"hookleftarrow\",\"↩\"],[\"hookrightarrow\",\"↪\"],[\"hopf\",\"𝕙\"],[\"horbar\",\"―\"],[\"hscr\",\"𝒽\"],[\"hslash\",\"ℏ\"],[\"hstrok\",\"ħ\"],[\"hybull\",\"⁃\"],[\"hyphen\",\"‐\"],[\"iacute\",\"í\"],[\"ic\",\"⁣\"],[\"icirc\",\"î\"],[\"icy\",\"и\"],[\"iecy\",\"е\"],[\"iexcl\",\"¡\"],[\"iff\",\"⇔\"],[\"ifr\",\"𝔦\"],[\"igrave\",\"ì\"],[\"ii\",\"ⅈ\"],[\"iiiint\",\"⨌\"],[\"iiint\",\"∭\"],[\"iinfin\",\"⧜\"],[\"iiota\",\"℩\"],[\"ijlig\",\"ij\"],[\"imacr\",\"ī\"],[\"image\",\"ℑ\"],[\"imagline\",\"ℐ\"],[\"imagpart\",\"ℑ\"],[\"imath\",\"ı\"],[\"imof\",\"⊷\"],[\"imped\",\"Ƶ\"],[\"in\",\"∈\"],[\"incare\",\"℅\"],[\"infin\",\"∞\"],[\"infintie\",\"⧝\"],[\"inodot\",\"ı\"],[\"int\",\"∫\"],[\"intcal\",\"⊺\"],[\"integers\",\"ℤ\"],[\"intercal\",\"⊺\"],[\"intlarhk\",\"⨗\"],[\"intprod\",\"⨼\"],[\"iocy\",\"ё\"],[\"iogon\",\"į\"],[\"iopf\",\"𝕚\"],[\"iota\",\"ι\"],[\"iprod\",\"⨼\"],[\"iquest\",\"¿\"],[\"iscr\",\"𝒾\"],[\"isin\",\"∈\"],[\"isinE\",\"⋹\"],[\"isindot\",\"⋵\"],[\"isins\",\"⋴\"],[\"isinsv\",\"⋳\"],[\"isinv\",\"∈\"],[\"it\",\"⁢\"],[\"itilde\",\"ĩ\"],[\"iukcy\",\"і\"],[\"iuml\",\"ï\"],[\"jcirc\",\"ĵ\"],[\"jcy\",\"й\"],[\"jfr\",\"𝔧\"],[\"jmath\",\"ȷ\"],[\"jopf\",\"𝕛\"],[\"jscr\",\"𝒿\"],[\"jsercy\",\"ј\"],[\"jukcy\",\"є\"],[\"kappa\",\"κ\"],[\"kappav\",\"ϰ\"],[\"kcedil\",\"ķ\"],[\"kcy\",\"к\"],[\"kfr\",\"𝔨\"],[\"kgreen\",\"ĸ\"],[\"khcy\",\"х\"],[\"kjcy\",\"ќ\"],[\"kopf\",\"𝕜\"],[\"kscr\",\"𝓀\"],[\"lAarr\",\"⇚\"],[\"lArr\",\"⇐\"],[\"lAtail\",\"⤛\"],[\"lBarr\",\"⤎\"],[\"lE\",\"≦\"],[\"lEg\",\"⪋\"],[\"lHar\",\"⥢\"],[\"lacute\",\"ĺ\"],[\"laemptyv\",\"⦴\"],[\"lagran\",\"ℒ\"],[\"lambda\",\"λ\"],[\"lang\",\"⟨\"],[\"langd\",\"⦑\"],[\"langle\",\"⟨\"],[\"lap\",\"⪅\"],[\"laquo\",\"«\"],[\"larr\",\"←\"],[\"larrb\",\"⇤\"],[\"larrbfs\",\"⤟\"],[\"larrfs\",\"⤝\"],[\"larrhk\",\"↩\"],[\"larrlp\",\"↫\"],[\"larrpl\",\"⤹\"],[\"larrsim\",\"⥳\"],[\"larrtl\",\"↢\"],[\"lat\",\"⪫\"],[\"latail\",\"⤙\"],[\"late\",\"⪭\"],[\"lates\",\"⪭︀\"],[\"lbarr\",\"⤌\"],[\"lbbrk\",\"❲\"],[\"lbrace\",\"{\"],[\"lbrack\",\"[\"],[\"lbrke\",\"⦋\"],[\"lbrksld\",\"⦏\"],[\"lbrkslu\",\"⦍\"],[\"lcaron\",\"ľ\"],[\"lcedil\",\"ļ\"],[\"lceil\",\"⌈\"],[\"lcub\",\"{\"],[\"lcy\",\"л\"],[\"ldca\",\"⤶\"],[\"ldquo\",\"“\"],[\"ldquor\",\"„\"],[\"ldrdhar\",\"⥧\"],[\"ldrushar\",\"⥋\"],[\"ldsh\",\"↲\"],[\"le\",\"≤\"],[\"leftarrow\",\"←\"],[\"leftarrowtail\",\"↢\"],[\"leftharpoondown\",\"↽\"],[\"leftharpoonup\",\"↼\"],[\"leftleftarrows\",\"⇇\"],[\"leftrightarrow\",\"↔\"],[\"leftrightarrows\",\"⇆\"],[\"leftrightharpoons\",\"⇋\"],[\"leftrightsquigarrow\",\"↭\"],[\"leftthreetimes\",\"⋋\"],[\"leg\",\"⋚\"],[\"leq\",\"≤\"],[\"leqq\",\"≦\"],[\"leqslant\",\"⩽\"],[\"les\",\"⩽\"],[\"lescc\",\"⪨\"],[\"lesdot\",\"⩿\"],[\"lesdoto\",\"⪁\"],[\"lesdotor\",\"⪃\"],[\"lesg\",\"⋚︀\"],[\"lesges\",\"⪓\"],[\"lessapprox\",\"⪅\"],[\"lessdot\",\"⋖\"],[\"lesseqgtr\",\"⋚\"],[\"lesseqqgtr\",\"⪋\"],[\"lessgtr\",\"≶\"],[\"lesssim\",\"≲\"],[\"lfisht\",\"⥼\"],[\"lfloor\",\"⌊\"],[\"lfr\",\"𝔩\"],[\"lg\",\"≶\"],[\"lgE\",\"⪑\"],[\"lhard\",\"↽\"],[\"lharu\",\"↼\"],[\"lharul\",\"⥪\"],[\"lhblk\",\"▄\"],[\"ljcy\",\"љ\"],[\"ll\",\"≪\"],[\"llarr\",\"⇇\"],[\"llcorner\",\"⌞\"],[\"llhard\",\"⥫\"],[\"lltri\",\"◺\"],[\"lmidot\",\"ŀ\"],[\"lmoust\",\"⎰\"],[\"lmoustache\",\"⎰\"],[\"lnE\",\"≨\"],[\"lnap\",\"⪉\"],[\"lnapprox\",\"⪉\"],[\"lne\",\"⪇\"],[\"lneq\",\"⪇\"],[\"lneqq\",\"≨\"],[\"lnsim\",\"⋦\"],[\"loang\",\"⟬\"],[\"loarr\",\"⇽\"],[\"lobrk\",\"⟦\"],[\"longleftarrow\",\"⟵\"],[\"longleftrightarrow\",\"⟷\"],[\"longmapsto\",\"⟼\"],[\"longrightarrow\",\"⟶\"],[\"looparrowleft\",\"↫\"],[\"looparrowright\",\"↬\"],[\"lopar\",\"⦅\"],[\"lopf\",\"𝕝\"],[\"loplus\",\"⨭\"],[\"lotimes\",\"⨴\"],[\"lowast\",\"∗\"],[\"lowbar\",\"_\"],[\"loz\",\"◊\"],[\"lozenge\",\"◊\"],[\"lozf\",\"⧫\"],[\"lpar\",\"(\"],[\"lparlt\",\"⦓\"],[\"lrarr\",\"⇆\"],[\"lrcorner\",\"⌟\"],[\"lrhar\",\"⇋\"],[\"lrhard\",\"⥭\"],[\"lrm\",\"‎\"],[\"lrtri\",\"⊿\"],[\"lsaquo\",\"‹\"],[\"lscr\",\"𝓁\"],[\"lsh\",\"↰\"],[\"lsim\",\"≲\"],[\"lsime\",\"⪍\"],[\"lsimg\",\"⪏\"],[\"lsqb\",\"[\"],[\"lsquo\",\"‘\"],[\"lsquor\",\"‚\"],[\"lstrok\",\"ł\"],[\"lt\",\"<\"],[\"ltcc\",\"⪦\"],[\"ltcir\",\"⩹\"],[\"ltdot\",\"⋖\"],[\"lthree\",\"⋋\"],[\"ltimes\",\"⋉\"],[\"ltlarr\",\"⥶\"],[\"ltquest\",\"⩻\"],[\"ltrPar\",\"⦖\"],[\"ltri\",\"◃\"],[\"ltrie\",\"⊴\"],[\"ltrif\",\"◂\"],[\"lurdshar\",\"⥊\"],[\"luruhar\",\"⥦\"],[\"lvertneqq\",\"≨︀\"],[\"lvnE\",\"≨︀\"],[\"mDDot\",\"∺\"],[\"macr\",\"¯\"],[\"male\",\"♂\"],[\"malt\",\"✠\"],[\"maltese\",\"✠\"],[\"map\",\"↦\"],[\"mapsto\",\"↦\"],[\"mapstodown\",\"↧\"],[\"mapstoleft\",\"↤\"],[\"mapstoup\",\"↥\"],[\"marker\",\"▮\"],[\"mcomma\",\"⨩\"],[\"mcy\",\"м\"],[\"mdash\",\"—\"],[\"measuredangle\",\"∡\"],[\"mfr\",\"𝔪\"],[\"mho\",\"℧\"],[\"micro\",\"µ\"],[\"mid\",\"∣\"],[\"midast\",\"*\"],[\"midcir\",\"⫰\"],[\"middot\",\"·\"],[\"minus\",\"−\"],[\"minusb\",\"⊟\"],[\"minusd\",\"∸\"],[\"minusdu\",\"⨪\"],[\"mlcp\",\"⫛\"],[\"mldr\",\"…\"],[\"mnplus\",\"∓\"],[\"models\",\"⊧\"],[\"mopf\",\"𝕞\"],[\"mp\",\"∓\"],[\"mscr\",\"𝓂\"],[\"mstpos\",\"∾\"],[\"mu\",\"μ\"],[\"multimap\",\"⊸\"],[\"mumap\",\"⊸\"],[\"nGg\",\"⋙̸\"],[\"nGt\",\"≫⃒\"],[\"nGtv\",\"≫̸\"],[\"nLeftarrow\",\"⇍\"],[\"nLeftrightarrow\",\"⇎\"],[\"nLl\",\"⋘̸\"],[\"nLt\",\"≪⃒\"],[\"nLtv\",\"≪̸\"],[\"nRightarrow\",\"⇏\"],[\"nVDash\",\"⊯\"],[\"nVdash\",\"⊮\"],[\"nabla\",\"∇\"],[\"nacute\",\"ń\"],[\"nang\",\"∠⃒\"],[\"nap\",\"≉\"],[\"napE\",\"⩰̸\"],[\"napid\",\"≋̸\"],[\"napos\",\"ʼn\"],[\"napprox\",\"≉\"],[\"natur\",\"♮\"],[\"natural\",\"♮\"],[\"naturals\",\"ℕ\"],[\"nbsp\",\"\xA0\"],[\"nbump\",\"≎̸\"],[\"nbumpe\",\"≏̸\"],[\"ncap\",\"⩃\"],[\"ncaron\",\"ň\"],[\"ncedil\",\"ņ\"],[\"ncong\",\"≇\"],[\"ncongdot\",\"⩭̸\"],[\"ncup\",\"⩂\"],[\"ncy\",\"н\"],[\"ndash\",\"–\"],[\"ne\",\"≠\"],[\"neArr\",\"⇗\"],[\"nearhk\",\"⤤\"],[\"nearr\",\"↗\"],[\"nearrow\",\"↗\"],[\"nedot\",\"≐̸\"],[\"nequiv\",\"≢\"],[\"nesear\",\"⤨\"],[\"nesim\",\"≂̸\"],[\"nexist\",\"∄\"],[\"nexists\",\"∄\"],[\"nfr\",\"𝔫\"],[\"ngE\",\"≧̸\"],[\"nge\",\"≱\"],[\"ngeq\",\"≱\"],[\"ngeqq\",\"≧̸\"],[\"ngeqslant\",\"⩾̸\"],[\"nges\",\"⩾̸\"],[\"ngsim\",\"≵\"],[\"ngt\",\"≯\"],[\"ngtr\",\"≯\"],[\"nhArr\",\"⇎\"],[\"nharr\",\"↮\"],[\"nhpar\",\"⫲\"],[\"ni\",\"∋\"],[\"nis\",\"⋼\"],[\"nisd\",\"⋺\"],[\"niv\",\"∋\"],[\"njcy\",\"њ\"],[\"nlArr\",\"⇍\"],[\"nlE\",\"≦̸\"],[\"nlarr\",\"↚\"],[\"nldr\",\"‥\"],[\"nle\",\"≰\"],[\"nleftarrow\",\"↚\"],[\"nleftrightarrow\",\"↮\"],[\"nleq\",\"≰\"],[\"nleqq\",\"≦̸\"],[\"nleqslant\",\"⩽̸\"],[\"nles\",\"⩽̸\"],[\"nless\",\"≮\"],[\"nlsim\",\"≴\"],[\"nlt\",\"≮\"],[\"nltri\",\"⋪\"],[\"nltrie\",\"⋬\"],[\"nmid\",\"∤\"],[\"nopf\",\"𝕟\"],[\"not\",\"¬\"],[\"notin\",\"∉\"],[\"notinE\",\"⋹̸\"],[\"notindot\",\"⋵̸\"],[\"notinva\",\"∉\"],[\"notinvb\",\"⋷\"],[\"notinvc\",\"⋶\"],[\"notni\",\"∌\"],[\"notniva\",\"∌\"],[\"notnivb\",\"⋾\"],[\"notnivc\",\"⋽\"],[\"npar\",\"∦\"],[\"nparallel\",\"∦\"],[\"nparsl\",\"⫽⃥\"],[\"npart\",\"∂̸\"],[\"npolint\",\"⨔\"],[\"npr\",\"⊀\"],[\"nprcue\",\"⋠\"],[\"npre\",\"⪯̸\"],[\"nprec\",\"⊀\"],[\"npreceq\",\"⪯̸\"],[\"nrArr\",\"⇏\"],[\"nrarr\",\"↛\"],[\"nrarrc\",\"⤳̸\"],[\"nrarrw\",\"↝̸\"],[\"nrightarrow\",\"↛\"],[\"nrtri\",\"⋫\"],[\"nrtrie\",\"⋭\"],[\"nsc\",\"⊁\"],[\"nsccue\",\"⋡\"],[\"nsce\",\"⪰̸\"],[\"nscr\",\"𝓃\"],[\"nshortmid\",\"∤\"],[\"nshortparallel\",\"∦\"],[\"nsim\",\"≁\"],[\"nsime\",\"≄\"],[\"nsimeq\",\"≄\"],[\"nsmid\",\"∤\"],[\"nspar\",\"∦\"],[\"nsqsube\",\"⋢\"],[\"nsqsupe\",\"⋣\"],[\"nsub\",\"⊄\"],[\"nsubE\",\"⫅̸\"],[\"nsube\",\"⊈\"],[\"nsubset\",\"⊂⃒\"],[\"nsubseteq\",\"⊈\"],[\"nsubseteqq\",\"⫅̸\"],[\"nsucc\",\"⊁\"],[\"nsucceq\",\"⪰̸\"],[\"nsup\",\"⊅\"],[\"nsupE\",\"⫆̸\"],[\"nsupe\",\"⊉\"],[\"nsupset\",\"⊃⃒\"],[\"nsupseteq\",\"⊉\"],[\"nsupseteqq\",\"⫆̸\"],[\"ntgl\",\"≹\"],[\"ntilde\",\"ñ\"],[\"ntlg\",\"≸\"],[\"ntriangleleft\",\"⋪\"],[\"ntrianglelefteq\",\"⋬\"],[\"ntriangleright\",\"⋫\"],[\"ntrianglerighteq\",\"⋭\"],[\"nu\",\"ν\"],[\"num\",\"#\"],[\"numero\",\"№\"],[\"numsp\",\" \"],[\"nvDash\",\"⊭\"],[\"nvHarr\",\"⤄\"],[\"nvap\",\"≍⃒\"],[\"nvdash\",\"⊬\"],[\"nvge\",\"≥⃒\"],[\"nvgt\",\">⃒\"],[\"nvinfin\",\"⧞\"],[\"nvlArr\",\"⤂\"],[\"nvle\",\"≤⃒\"],[\"nvlt\",\"<⃒\"],[\"nvltrie\",\"⊴⃒\"],[\"nvrArr\",\"⤃\"],[\"nvrtrie\",\"⊵⃒\"],[\"nvsim\",\"∼⃒\"],[\"nwArr\",\"⇖\"],[\"nwarhk\",\"⤣\"],[\"nwarr\",\"↖\"],[\"nwarrow\",\"↖\"],[\"nwnear\",\"⤧\"],[\"oS\",\"Ⓢ\"],[\"oacute\",\"ó\"],[\"oast\",\"⊛\"],[\"ocir\",\"⊚\"],[\"ocirc\",\"ô\"],[\"ocy\",\"о\"],[\"odash\",\"⊝\"],[\"odblac\",\"ő\"],[\"odiv\",\"⨸\"],[\"odot\",\"⊙\"],[\"odsold\",\"⦼\"],[\"oelig\",\"œ\"],[\"ofcir\",\"⦿\"],[\"ofr\",\"𝔬\"],[\"ogon\",\"˛\"],[\"ograve\",\"ò\"],[\"ogt\",\"⧁\"],[\"ohbar\",\"⦵\"],[\"ohm\",\"Ω\"],[\"oint\",\"∮\"],[\"olarr\",\"↺\"],[\"olcir\",\"⦾\"],[\"olcross\",\"⦻\"],[\"oline\",\"‾\"],[\"olt\",\"⧀\"],[\"omacr\",\"ō\"],[\"omega\",\"ω\"],[\"omicron\",\"ο\"],[\"omid\",\"⦶\"],[\"ominus\",\"⊖\"],[\"oopf\",\"𝕠\"],[\"opar\",\"⦷\"],[\"operp\",\"⦹\"],[\"oplus\",\"⊕\"],[\"or\",\"∨\"],[\"orarr\",\"↻\"],[\"ord\",\"⩝\"],[\"order\",\"ℴ\"],[\"orderof\",\"ℴ\"],[\"ordf\",\"ª\"],[\"ordm\",\"º\"],[\"origof\",\"⊶\"],[\"oror\",\"⩖\"],[\"orslope\",\"⩗\"],[\"orv\",\"⩛\"],[\"oscr\",\"ℴ\"],[\"oslash\",\"ø\"],[\"osol\",\"⊘\"],[\"otilde\",\"õ\"],[\"otimes\",\"⊗\"],[\"otimesas\",\"⨶\"],[\"ouml\",\"ö\"],[\"ovbar\",\"⌽\"],[\"par\",\"∥\"],[\"para\",\"¶\"],[\"parallel\",\"∥\"],[\"parsim\",\"⫳\"],[\"parsl\",\"⫽\"],[\"part\",\"∂\"],[\"pcy\",\"п\"],[\"percnt\",\"%\"],[\"period\",\".\"],[\"permil\",\"‰\"],[\"perp\",\"⊥\"],[\"pertenk\",\"‱\"],[\"pfr\",\"𝔭\"],[\"phi\",\"φ\"],[\"phiv\",\"ϕ\"],[\"phmmat\",\"ℳ\"],[\"phone\",\"☎\"],[\"pi\",\"π\"],[\"pitchfork\",\"⋔\"],[\"piv\",\"ϖ\"],[\"planck\",\"ℏ\"],[\"planckh\",\"ℎ\"],[\"plankv\",\"ℏ\"],[\"plus\",\"+\"],[\"plusacir\",\"⨣\"],[\"plusb\",\"⊞\"],[\"pluscir\",\"⨢\"],[\"plusdo\",\"∔\"],[\"plusdu\",\"⨥\"],[\"pluse\",\"⩲\"],[\"plusmn\",\"±\"],[\"plussim\",\"⨦\"],[\"plustwo\",\"⨧\"],[\"pm\",\"±\"],[\"pointint\",\"⨕\"],[\"popf\",\"𝕡\"],[\"pound\",\"£\"],[\"pr\",\"≺\"],[\"prE\",\"⪳\"],[\"prap\",\"⪷\"],[\"prcue\",\"≼\"],[\"pre\",\"⪯\"],[\"prec\",\"≺\"],[\"precapprox\",\"⪷\"],[\"preccurlyeq\",\"≼\"],[\"preceq\",\"⪯\"],[\"precnapprox\",\"⪹\"],[\"precneqq\",\"⪵\"],[\"precnsim\",\"⋨\"],[\"precsim\",\"≾\"],[\"prime\",\"′\"],[\"primes\",\"ℙ\"],[\"prnE\",\"⪵\"],[\"prnap\",\"⪹\"],[\"prnsim\",\"⋨\"],[\"prod\",\"∏\"],[\"profalar\",\"⌮\"],[\"profline\",\"⌒\"],[\"profsurf\",\"⌓\"],[\"prop\",\"∝\"],[\"propto\",\"∝\"],[\"prsim\",\"≾\"],[\"prurel\",\"⊰\"],[\"pscr\",\"𝓅\"],[\"psi\",\"ψ\"],[\"puncsp\",\" \"],[\"qfr\",\"𝔮\"],[\"qint\",\"⨌\"],[\"qopf\",\"𝕢\"],[\"qprime\",\"⁗\"],[\"qscr\",\"𝓆\"],[\"quaternions\",\"ℍ\"],[\"quatint\",\"⨖\"],[\"quest\",\"?\"],[\"questeq\",\"≟\"],[\"quot\",\"\\\"\"],[\"rAarr\",\"⇛\"],[\"rArr\",\"⇒\"],[\"rAtail\",\"⤜\"],[\"rBarr\",\"⤏\"],[\"rHar\",\"⥤\"],[\"race\",\"∽̱\"],[\"racute\",\"ŕ\"],[\"radic\",\"√\"],[\"raemptyv\",\"⦳\"],[\"rang\",\"⟩\"],[\"rangd\",\"⦒\"],[\"range\",\"⦥\"],[\"rangle\",\"⟩\"],[\"raquo\",\"»\"],[\"rarr\",\"→\"],[\"rarrap\",\"⥵\"],[\"rarrb\",\"⇥\"],[\"rarrbfs\",\"⤠\"],[\"rarrc\",\"⤳\"],[\"rarrfs\",\"⤞\"],[\"rarrhk\",\"↪\"],[\"rarrlp\",\"↬\"],[\"rarrpl\",\"⥅\"],[\"rarrsim\",\"⥴\"],[\"rarrtl\",\"↣\"],[\"rarrw\",\"↝\"],[\"ratail\",\"⤚\"],[\"ratio\",\"∶\"],[\"rationals\",\"ℚ\"],[\"rbarr\",\"⤍\"],[\"rbbrk\",\"❳\"],[\"rbrace\",\"}\"],[\"rbrack\",\"]\"],[\"rbrke\",\"⦌\"],[\"rbrksld\",\"⦎\"],[\"rbrkslu\",\"⦐\"],[\"rcaron\",\"ř\"],[\"rcedil\",\"ŗ\"],[\"rceil\",\"⌉\"],[\"rcub\",\"}\"],[\"rcy\",\"р\"],[\"rdca\",\"⤷\"],[\"rdldhar\",\"⥩\"],[\"rdquo\",\"”\"],[\"rdquor\",\"”\"],[\"rdsh\",\"↳\"],[\"real\",\"ℜ\"],[\"realine\",\"ℛ\"],[\"realpart\",\"ℜ\"],[\"reals\",\"ℝ\"],[\"rect\",\"▭\"],[\"reg\",\"®\"],[\"rfisht\",\"⥽\"],[\"rfloor\",\"⌋\"],[\"rfr\",\"𝔯\"],[\"rhard\",\"⇁\"],[\"rharu\",\"⇀\"],[\"rharul\",\"⥬\"],[\"rho\",\"ρ\"],[\"rhov\",\"ϱ\"],[\"rightarrow\",\"→\"],[\"rightarrowtail\",\"↣\"],[\"rightharpoondown\",\"⇁\"],[\"rightharpoonup\",\"⇀\"],[\"rightleftarrows\",\"⇄\"],[\"rightleftharpoons\",\"⇌\"],[\"rightrightarrows\",\"⇉\"],[\"rightsquigarrow\",\"↝\"],[\"rightthreetimes\",\"⋌\"],[\"ring\",\"˚\"],[\"risingdotseq\",\"≓\"],[\"rlarr\",\"⇄\"],[\"rlhar\",\"⇌\"],[\"rlm\",\"‏\"],[\"rmoust\",\"⎱\"],[\"rmoustache\",\"⎱\"],[\"rnmid\",\"⫮\"],[\"roang\",\"⟭\"],[\"roarr\",\"⇾\"],[\"robrk\",\"⟧\"],[\"ropar\",\"⦆\"],[\"ropf\",\"𝕣\"],[\"roplus\",\"⨮\"],[\"rotimes\",\"⨵\"],[\"rpar\",\")\"],[\"rpargt\",\"⦔\"],[\"rppolint\",\"⨒\"],[\"rrarr\",\"⇉\"],[\"rsaquo\",\"›\"],[\"rscr\",\"𝓇\"],[\"rsh\",\"↱\"],[\"rsqb\",\"]\"],[\"rsquo\",\"’\"],[\"rsquor\",\"’\"],[\"rthree\",\"⋌\"],[\"rtimes\",\"⋊\"],[\"rtri\",\"▹\"],[\"rtrie\",\"⊵\"],[\"rtrif\",\"▸\"],[\"rtriltri\",\"⧎\"],[\"ruluhar\",\"⥨\"],[\"rx\",\"℞\"],[\"sacute\",\"ś\"],[\"sbquo\",\"‚\"],[\"sc\",\"≻\"],[\"scE\",\"⪴\"],[\"scap\",\"⪸\"],[\"scaron\",\"š\"],[\"sccue\",\"≽\"],[\"sce\",\"⪰\"],[\"scedil\",\"ş\"],[\"scirc\",\"ŝ\"],[\"scnE\",\"⪶\"],[\"scnap\",\"⪺\"],[\"scnsim\",\"⋩\"],[\"scpolint\",\"⨓\"],[\"scsim\",\"≿\"],[\"scy\",\"с\"],[\"sdot\",\"⋅\"],[\"sdotb\",\"⊡\"],[\"sdote\",\"⩦\"],[\"seArr\",\"⇘\"],[\"searhk\",\"⤥\"],[\"searr\",\"↘\"],[\"searrow\",\"↘\"],[\"sect\",\"§\"],[\"semi\",\";\"],[\"seswar\",\"⤩\"],[\"setminus\",\"∖\"],[\"setmn\",\"∖\"],[\"sext\",\"✶\"],[\"sfr\",\"𝔰\"],[\"sfrown\",\"⌢\"],[\"sharp\",\"♯\"],[\"shchcy\",\"щ\"],[\"shcy\",\"ш\"],[\"shortmid\",\"∣\"],[\"shortparallel\",\"∥\"],[\"shy\",\"­\"],[\"sigma\",\"σ\"],[\"sigmaf\",\"ς\"],[\"sigmav\",\"ς\"],[\"sim\",\"∼\"],[\"simdot\",\"⩪\"],[\"sime\",\"≃\"],[\"simeq\",\"≃\"],[\"simg\",\"⪞\"],[\"simgE\",\"⪠\"],[\"siml\",\"⪝\"],[\"simlE\",\"⪟\"],[\"simne\",\"≆\"],[\"simplus\",\"⨤\"],[\"simrarr\",\"⥲\"],[\"slarr\",\"←\"],[\"smallsetminus\",\"∖\"],[\"smashp\",\"⨳\"],[\"smeparsl\",\"⧤\"],[\"smid\",\"∣\"],[\"smile\",\"⌣\"],[\"smt\",\"⪪\"],[\"smte\",\"⪬\"],[\"smtes\",\"⪬︀\"],[\"softcy\",\"ь\"],[\"sol\",\"/\"],[\"solb\",\"⧄\"],[\"solbar\",\"⌿\"],[\"sopf\",\"𝕤\"],[\"spades\",\"♠\"],[\"spadesuit\",\"♠\"],[\"spar\",\"∥\"],[\"sqcap\",\"⊓\"],[\"sqcaps\",\"⊓︀\"],[\"sqcup\",\"⊔\"],[\"sqcups\",\"⊔︀\"],[\"sqsub\",\"⊏\"],[\"sqsube\",\"⊑\"],[\"sqsubset\",\"⊏\"],[\"sqsubseteq\",\"⊑\"],[\"sqsup\",\"⊐\"],[\"sqsupe\",\"⊒\"],[\"sqsupset\",\"⊐\"],[\"sqsupseteq\",\"⊒\"],[\"squ\",\"□\"],[\"square\",\"□\"],[\"squarf\",\"▪\"],[\"squf\",\"▪\"],[\"srarr\",\"→\"],[\"sscr\",\"𝓈\"],[\"ssetmn\",\"∖\"],[\"ssmile\",\"⌣\"],[\"sstarf\",\"⋆\"],[\"star\",\"☆\"],[\"starf\",\"★\"],[\"straightepsilon\",\"ϵ\"],[\"straightphi\",\"ϕ\"],[\"strns\",\"¯\"],[\"sub\",\"⊂\"],[\"subE\",\"⫅\"],[\"subdot\",\"⪽\"],[\"sube\",\"⊆\"],[\"subedot\",\"⫃\"],[\"submult\",\"⫁\"],[\"subnE\",\"⫋\"],[\"subne\",\"⊊\"],[\"subplus\",\"⪿\"],[\"subrarr\",\"⥹\"],[\"subset\",\"⊂\"],[\"subseteq\",\"⊆\"],[\"subseteqq\",\"⫅\"],[\"subsetneq\",\"⊊\"],[\"subsetneqq\",\"⫋\"],[\"subsim\",\"⫇\"],[\"subsub\",\"⫕\"],[\"subsup\",\"⫓\"],[\"succ\",\"≻\"],[\"succapprox\",\"⪸\"],[\"succcurlyeq\",\"≽\"],[\"succeq\",\"⪰\"],[\"succnapprox\",\"⪺\"],[\"succneqq\",\"⪶\"],[\"succnsim\",\"⋩\"],[\"succsim\",\"≿\"],[\"sum\",\"∑\"],[\"sung\",\"♪\"],[\"sup\",\"⊃\"],[\"sup1\",\"¹\"],[\"sup2\",\"²\"],[\"sup3\",\"³\"],[\"supE\",\"⫆\"],[\"supdot\",\"⪾\"],[\"supdsub\",\"⫘\"],[\"supe\",\"⊇\"],[\"supedot\",\"⫄\"],[\"suphsol\",\"⟉\"],[\"suphsub\",\"⫗\"],[\"suplarr\",\"⥻\"],[\"supmult\",\"⫂\"],[\"supnE\",\"⫌\"],[\"supne\",\"⊋\"],[\"supplus\",\"⫀\"],[\"supset\",\"⊃\"],[\"supseteq\",\"⊇\"],[\"supseteqq\",\"⫆\"],[\"supsetneq\",\"⊋\"],[\"supsetneqq\",\"⫌\"],[\"supsim\",\"⫈\"],[\"supsub\",\"⫔\"],[\"supsup\",\"⫖\"],[\"swArr\",\"⇙\"],[\"swarhk\",\"⤦\"],[\"swarr\",\"↙\"],[\"swarrow\",\"↙\"],[\"swnwar\",\"⤪\"],[\"szlig\",\"ß\"],[\"target\",\"⌖\"],[\"tau\",\"τ\"],[\"tbrk\",\"⎴\"],[\"tcaron\",\"ť\"],[\"tcedil\",\"ţ\"],[\"tcy\",\"т\"],[\"tdot\",\"⃛\"],[\"telrec\",\"⌕\"],[\"tfr\",\"𝔱\"],[\"there4\",\"∴\"],[\"therefore\",\"∴\"],[\"theta\",\"θ\"],[\"thetasym\",\"ϑ\"],[\"thetav\",\"ϑ\"],[\"thickapprox\",\"≈\"],[\"thicksim\",\"∼\"],[\"thinsp\",\" \"],[\"thkap\",\"≈\"],[\"thksim\",\"∼\"],[\"thorn\",\"þ\"],[\"tilde\",\"˜\"],[\"times\",\"×\"],[\"timesb\",\"⊠\"],[\"timesbar\",\"⨱\"],[\"timesd\",\"⨰\"],[\"tint\",\"∭\"],[\"toea\",\"⤨\"],[\"top\",\"⊤\"],[\"topbot\",\"⌶\"],[\"topcir\",\"⫱\"],[\"topf\",\"𝕥\"],[\"topfork\",\"⫚\"],[\"tosa\",\"⤩\"],[\"tprime\",\"‴\"],[\"trade\",\"™\"],[\"triangle\",\"▵\"],[\"triangledown\",\"▿\"],[\"triangleleft\",\"◃\"],[\"trianglelefteq\",\"⊴\"],[\"triangleq\",\"≜\"],[\"triangleright\",\"▹\"],[\"trianglerighteq\",\"⊵\"],[\"tridot\",\"◬\"],[\"trie\",\"≜\"],[\"triminus\",\"⨺\"],[\"triplus\",\"⨹\"],[\"trisb\",\"⧍\"],[\"tritime\",\"⨻\"],[\"trpezium\",\"⏢\"],[\"tscr\",\"𝓉\"],[\"tscy\",\"ц\"],[\"tshcy\",\"ћ\"],[\"tstrok\",\"ŧ\"],[\"twixt\",\"≬\"],[\"twoheadleftarrow\",\"↞\"],[\"twoheadrightarrow\",\"↠\"],[\"uArr\",\"⇑\"],[\"uHar\",\"⥣\"],[\"uacute\",\"ú\"],[\"uarr\",\"↑\"],[\"ubrcy\",\"ў\"],[\"ubreve\",\"ŭ\"],[\"ucirc\",\"û\"],[\"ucy\",\"у\"],[\"udarr\",\"⇅\"],[\"udblac\",\"ű\"],[\"udhar\",\"⥮\"],[\"ufisht\",\"⥾\"],[\"ufr\",\"𝔲\"],[\"ugrave\",\"ù\"],[\"uharl\",\"↿\"],[\"uharr\",\"↾\"],[\"uhblk\",\"▀\"],[\"ulcorn\",\"⌜\"],[\"ulcorner\",\"⌜\"],[\"ulcrop\",\"⌏\"],[\"ultri\",\"◸\"],[\"umacr\",\"ū\"],[\"uml\",\"¨\"],[\"uogon\",\"ų\"],[\"uopf\",\"𝕦\"],[\"uparrow\",\"↑\"],[\"updownarrow\",\"↕\"],[\"upharpoonleft\",\"↿\"],[\"upharpoonright\",\"↾\"],[\"uplus\",\"⊎\"],[\"upsi\",\"υ\"],[\"upsih\",\"ϒ\"],[\"upsilon\",\"υ\"],[\"upuparrows\",\"⇈\"],[\"urcorn\",\"⌝\"],[\"urcorner\",\"⌝\"],[\"urcrop\",\"⌎\"],[\"uring\",\"ů\"],[\"urtri\",\"◹\"],[\"uscr\",\"𝓊\"],[\"utdot\",\"⋰\"],[\"utilde\",\"ũ\"],[\"utri\",\"▵\"],[\"utrif\",\"▴\"],[\"uuarr\",\"⇈\"],[\"uuml\",\"ü\"],[\"uwangle\",\"⦧\"],[\"vArr\",\"⇕\"],[\"vBar\",\"⫨\"],[\"vBarv\",\"⫩\"],[\"vDash\",\"⊨\"],[\"vangrt\",\"⦜\"],[\"varepsilon\",\"ϵ\"],[\"varkappa\",\"ϰ\"],[\"varnothing\",\"∅\"],[\"varphi\",\"ϕ\"],[\"varpi\",\"ϖ\"],[\"varpropto\",\"∝\"],[\"varr\",\"↕\"],[\"varrho\",\"ϱ\"],[\"varsigma\",\"ς\"],[\"varsubsetneq\",\"⊊︀\"],[\"varsubsetneqq\",\"⫋︀\"],[\"varsupsetneq\",\"⊋︀\"],[\"varsupsetneqq\",\"⫌︀\"],[\"vartheta\",\"ϑ\"],[\"vartriangleleft\",\"⊲\"],[\"vartriangleright\",\"⊳\"],[\"vcy\",\"в\"],[\"vdash\",\"⊢\"],[\"vee\",\"∨\"],[\"veebar\",\"⊻\"],[\"veeeq\",\"≚\"],[\"vellip\",\"⋮\"],[\"verbar\",\"|\"],[\"vert\",\"|\"],[\"vfr\",\"𝔳\"],[\"vltri\",\"⊲\"],[\"vnsub\",\"⊂⃒\"],[\"vnsup\",\"⊃⃒\"],[\"vopf\",\"𝕧\"],[\"vprop\",\"∝\"],[\"vrtri\",\"⊳\"],[\"vscr\",\"𝓋\"],[\"vsubnE\",\"⫋︀\"],[\"vsubne\",\"⊊︀\"],[\"vsupnE\",\"⫌︀\"],[\"vsupne\",\"⊋︀\"],[\"vzigzag\",\"⦚\"],[\"wcirc\",\"ŵ\"],[\"wedbar\",\"⩟\"],[\"wedge\",\"∧\"],[\"wedgeq\",\"≙\"],[\"weierp\",\"℘\"],[\"wfr\",\"𝔴\"],[\"wopf\",\"𝕨\"],[\"wp\",\"℘\"],[\"wr\",\"≀\"],[\"wreath\",\"≀\"],[\"wscr\",\"𝓌\"],[\"xcap\",\"⋂\"],[\"xcirc\",\"◯\"],[\"xcup\",\"⋃\"],[\"xdtri\",\"▽\"],[\"xfr\",\"𝔵\"],[\"xhArr\",\"⟺\"],[\"xharr\",\"⟷\"],[\"xi\",\"ξ\"],[\"xlArr\",\"⟸\"],[\"xlarr\",\"⟵\"],[\"xmap\",\"⟼\"],[\"xnis\",\"⋻\"],[\"xodot\",\"⨀\"],[\"xopf\",\"𝕩\"],[\"xoplus\",\"⨁\"],[\"xotime\",\"⨂\"],[\"xrArr\",\"⟹\"],[\"xrarr\",\"⟶\"],[\"xscr\",\"𝓍\"],[\"xsqcup\",\"⨆\"],[\"xuplus\",\"⨄\"],[\"xutri\",\"△\"],[\"xvee\",\"⋁\"],[\"xwedge\",\"⋀\"],[\"yacute\",\"ý\"],[\"yacy\",\"я\"],[\"ycirc\",\"ŷ\"],[\"ycy\",\"ы\"],[\"yen\",\"¥\"],[\"yfr\",\"𝔶\"],[\"yicy\",\"ї\"],[\"yopf\",\"𝕪\"],[\"yscr\",\"𝓎\"],[\"yucy\",\"ю\"],[\"yuml\",\"ÿ\"],[\"zacute\",\"ź\"],[\"zcaron\",\"ž\"],[\"zcy\",\"з\"],[\"zdot\",\"ż\"],[\"zeetrf\",\"ℨ\"],[\"zeta\",\"ζ\"],[\"zfr\",\"𝔷\"],[\"zhcy\",\"ж\"],[\"zigrarr\",\"⇝\"],[\"zopf\",\"𝕫\"],[\"zscr\",\"𝓏\"],[\"zwj\",\"‍\"],[\"zwnj\",\"‌\"]]"));
5929
5929
  //#endregion
5930
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/entities.js
5930
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/entities.js
5931
5931
  /** The largest code point Unicode defines. */
5932
5932
  const MAX_CODE_POINT = 1114111;
5933
5933
  /**
@@ -5949,7 +5949,7 @@ const decodeEntity = (entity) => {
5949
5949
  return String.fromCodePoint(code);
5950
5950
  };
5951
5951
  //#endregion
5952
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/unescape.js
5952
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/unescape.js
5953
5953
  /** The punctuation set a backslash may escape, per the spec. */
5954
5954
  const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
5955
5955
  /** One entity, in any of the three spec forms. */
@@ -5963,7 +5963,7 @@ const unescapeChar = (source) => {
5963
5963
  /** Replace every backslash escape and character reference with its literal. */
5964
5964
  const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
5965
5965
  //#endregion
5966
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/code.js
5966
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/code.js
5967
5967
  const reBlankLine = /^[ \t]*$/;
5968
5968
  const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
5969
5969
  /**
@@ -6047,7 +6047,7 @@ const codeConstruct = {
6047
6047
  }
6048
6048
  };
6049
6049
  //#endregion
6050
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/document.js
6050
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/document.js
6051
6051
  /** The document root: contains everything except a bare list item. */
6052
6052
  const documentConstruct = {
6053
6053
  type: "document",
@@ -6060,7 +6060,7 @@ const documentConstruct = {
6060
6060
  })
6061
6061
  };
6062
6062
  //#endregion
6063
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/fencedCode.js
6063
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/fencedCode.js
6064
6064
  const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
6065
6065
  const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
6066
6066
  /** The fenced-code block start: three or more backticks or tildes. */
@@ -6084,7 +6084,7 @@ const fencedCodeStart = {
6084
6084
  }
6085
6085
  };
6086
6086
  //#endregion
6087
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/patterns.js
6087
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/patterns.js
6088
6088
  const stickyCache = /* @__PURE__ */ new WeakMap();
6089
6089
  const globalCache = /* @__PURE__ */ new WeakMap();
6090
6090
  const clone = (pattern, flag, dropCaret) => {
@@ -6108,7 +6108,7 @@ const globalOf = (pattern) => {
6108
6108
  return made;
6109
6109
  };
6110
6110
  //#endregion
6111
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/references.js
6111
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/references.js
6112
6112
  const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
6113
6113
  const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
6114
6114
  const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
@@ -6282,7 +6282,7 @@ const parseReference = (text) => {
6282
6282
  };
6283
6283
  };
6284
6284
  //#endregion
6285
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
6285
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
6286
6286
  /**
6287
6287
  * `_scan_footnote_definition` from `src/scanners.re`:
6288
6288
  *
@@ -6359,7 +6359,7 @@ const footnoteDefinitionStart = {
6359
6359
  }
6360
6360
  };
6361
6361
  //#endregion
6362
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/indentedCode.js
6362
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/indentedCode.js
6363
6363
  /** The indented-code block start: four columns of indentation. */
6364
6364
  const indentedCodeStart = {
6365
6365
  name: "indentedCode",
@@ -6373,7 +6373,7 @@ const indentedCodeStart = {
6373
6373
  }
6374
6374
  };
6375
6375
  //#endregion
6376
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/segments.js
6376
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/segments.js
6377
6377
  /**
6378
6378
  * The absolute source offset of `textIndex` within a segmented content run.
6379
6379
  *
@@ -6407,7 +6407,7 @@ const sliceWithSegments = (segments, from, to) => {
6407
6407
  return sliced;
6408
6408
  };
6409
6409
  //#endregion
6410
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
6410
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
6411
6411
  const C_OPEN_BRACKET$1 = 91;
6412
6412
  /**
6413
6413
  * Split every leading link reference definition out of `block`, inserting one
@@ -6472,7 +6472,7 @@ const definitionConstruct = {
6472
6472
  }
6473
6473
  };
6474
6474
  //#endregion
6475
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/list.js
6475
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/list.js
6476
6476
  const reBulletListMarker = /^[*+-]/;
6477
6477
  const reOrderedListMarker = /^(\d{1,9})([.)])/;
6478
6478
  const reNonSpace$1 = /[^ \t\f\v\r\n]/;
@@ -6625,7 +6625,7 @@ const listItemStart = {
6625
6625
  }
6626
6626
  };
6627
6627
  //#endregion
6628
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/paragraph.js
6628
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/paragraph.js
6629
6629
  /** Paragraph: absorbs lines until a blank one, and contains nothing. */
6630
6630
  const paragraphConstruct = {
6631
6631
  type: "paragraph",
@@ -6647,7 +6647,7 @@ const paragraphConstruct = {
6647
6647
  }
6648
6648
  };
6649
6649
  //#endregion
6650
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/setextHeading.js
6650
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/setextHeading.js
6651
6651
  const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
6652
6652
  /** The setext heading block start: a run of `=` or `-` under a paragraph. */
6653
6653
  const setextHeadingStart = {
@@ -6667,7 +6667,7 @@ const setextHeadingStart = {
6667
6667
  }
6668
6668
  };
6669
6669
  //#endregion
6670
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/table.js
6670
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/table.js
6671
6671
  /**
6672
6672
  * Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
6673
6673
  * invents to pad short rows, which is what stops a wide header followed by a
@@ -7038,7 +7038,7 @@ const tableCellConstruct = {
7038
7038
  }
7039
7039
  };
7040
7040
  //#endregion
7041
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/taskListItem.js
7041
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/taskListItem.js
7042
7042
  /**
7043
7043
  * `_scan_tasklist`, as the generated scanner accepts it.
7044
7044
  *
@@ -7072,7 +7072,7 @@ const taskListItemStart = {
7072
7072
  }
7073
7073
  };
7074
7074
  //#endregion
7075
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
7075
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
7076
7076
  const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
7077
7077
  const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
7078
7078
  /** Thematic break: one line, no children. */
@@ -7103,7 +7103,7 @@ const thematicBreakStart = {
7103
7103
  }
7104
7104
  };
7105
7105
  //#endregion
7106
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blockRegistry.js
7106
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockRegistry.js
7107
7107
  const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
7108
7108
  const commonmarkDialect$1 = {
7109
7109
  constructs: constructTable([
@@ -7175,7 +7175,7 @@ const blockDialect = (dialect) => {
7175
7175
  return found;
7176
7176
  };
7177
7177
  //#endregion
7178
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/lineIndex.js
7178
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/lineIndex.js
7179
7179
  /**
7180
7180
  * A precomputed index of line-start offsets over a fixed source text,
7181
7181
  * answering `positionAt(offset)` in `O(log n)` via binary search rather than
@@ -7249,7 +7249,7 @@ var LineIndex = class LineIndex {
7249
7249
  }
7250
7250
  };
7251
7251
  //#endregion
7252
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlineNode.js
7252
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineNode.js
7253
7253
  /** Open a node with no links. */
7254
7254
  const makeInlineNode = (type, start, end, value = "") => ({
7255
7255
  type,
@@ -7301,7 +7301,7 @@ const childrenOf = (node) => {
7301
7301
  return children;
7302
7302
  };
7303
7303
  //#endregion
7304
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/emphasis.js
7304
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/emphasis.js
7305
7305
  const C_ASTERISK$1 = 42;
7306
7306
  const C_UNDERSCORE$1 = 95;
7307
7307
  const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
@@ -7378,7 +7378,7 @@ const emphasisConstruct = {
7378
7378
  parse: (scanner) => handleDelim(scanner, scanner.peek())
7379
7379
  };
7380
7380
  //#endregion
7381
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/strikethrough.js
7381
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/strikethrough.js
7382
7382
  /**
7383
7383
  * Consume a `~` run as literal text and, when it is a viable one- or
7384
7384
  * two-tilde run, push it onto the shared delimiter stack.
@@ -7452,7 +7452,7 @@ const strikethroughConstruct = {
7452
7452
  parse: (scanner) => handleTilde(scanner)
7453
7453
  };
7454
7454
  //#endregion
7455
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/autolink.js
7455
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/autolink.js
7456
7456
  const C_LESSTHAN$1 = 60;
7457
7457
  const reEmailAutolink = /^<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/;
7458
7458
  const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
@@ -7484,7 +7484,7 @@ const autolinkConstruct = {
7484
7484
  }
7485
7485
  };
7486
7486
  //#endregion
7487
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
7487
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
7488
7488
  const C_LOWER_W = 119;
7489
7489
  const C_COLON = 58;
7490
7490
  /** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
@@ -7854,7 +7854,7 @@ const linkifyEmails = (root) => {
7854
7854
  }
7855
7855
  };
7856
7856
  //#endregion
7857
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/codeSpan.js
7857
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/codeSpan.js
7858
7858
  const C_BACKTICK$1 = 96;
7859
7859
  const reTicksHere = /^`+/;
7860
7860
  const reNewline = /\n/gm;
@@ -7882,7 +7882,7 @@ const codeSpanConstruct = {
7882
7882
  }
7883
7883
  };
7884
7884
  //#endregion
7885
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/entity.js
7885
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/entity.js
7886
7886
  const C_AMPERSAND = 38;
7887
7887
  const reEntityHere = new RegExp(`^${ENTITY}`, "i");
7888
7888
  /** A named, decimal or hexadecimal character reference. */
@@ -7898,7 +7898,7 @@ const entityConstruct = {
7898
7898
  }
7899
7899
  };
7900
7900
  //#endregion
7901
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/escape.js
7901
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/escape.js
7902
7902
  const C_BACKSLASH = 92;
7903
7903
  const C_NEWLINE$1 = 10;
7904
7904
  const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
@@ -7927,7 +7927,7 @@ const escapeConstruct = {
7927
7927
  }
7928
7928
  };
7929
7929
  //#endregion
7930
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/link.js
7930
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/link.js
7931
7931
  const C_BANG = 33;
7932
7932
  const C_CARET$1 = 94;
7933
7933
  const C_OPEN_BRACKET = 91;
@@ -8134,7 +8134,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
8134
8134
  /** `]` — closes a link or image, or stays literal. The CommonMark spelling. */
8135
8135
  const linkCloseConstruct = makeLinkCloseConstruct();
8136
8136
  //#endregion
8137
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
8137
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
8138
8138
  const C_CARET = 94;
8139
8139
  /**
8140
8140
  * Whether the bracket that just closed looks like `[^...]` with something
@@ -8191,7 +8191,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
8191
8191
  */
8192
8192
  const gfmImageOpenConstruct = makeImageOpenConstruct(false);
8193
8193
  //#endregion
8194
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/lineBreak.js
8194
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/lineBreak.js
8195
8195
  const C_NEWLINE = 10;
8196
8196
  const reInitialSpace = /^ */;
8197
8197
  /** A soft or hard line break. */
@@ -8212,7 +8212,7 @@ const lineBreakConstruct = {
8212
8212
  }
8213
8213
  };
8214
8214
  //#endregion
8215
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/rawHtml.js
8215
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/rawHtml.js
8216
8216
  const C_LESSTHAN = 60;
8217
8217
  /** The raw-HTML forms that scan forward for a fixed closing sequence. */
8218
8218
  const UNTERMINATED_FORMS = [
@@ -8234,7 +8234,7 @@ const rawHtmlConstruct = {
8234
8234
  }
8235
8235
  };
8236
8236
  //#endregion
8237
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlines/text.js
8237
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/text.js
8238
8238
  const reMain = /^[^\n`[\]\\!<&*_'"]+/;
8239
8239
  const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
8240
8240
  /** Consume a run of ordinary characters, stopping before any construct's. */
@@ -8254,7 +8254,7 @@ const textConstruct = runConstruct("text", reMain);
8254
8254
  /** Ordinary text under `gfm`, which has three more characters to yield to. */
8255
8255
  const gfmTextConstruct = runConstruct("text", reMainGfm);
8256
8256
  //#endregion
8257
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlineRegistry.js
8257
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineRegistry.js
8258
8258
  const triggerTable = (constructs) => {
8259
8259
  const table = /* @__PURE__ */ new Map();
8260
8260
  for (const construct of constructs) for (const trigger of construct.triggers) {
@@ -8307,7 +8307,7 @@ const inlineDialect = (dialect) => {
8307
8307
  return found;
8308
8308
  };
8309
8309
  //#endregion
8310
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/inlineParser.js
8310
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineParser.js
8311
8311
  const C_UNDERSCORE = 95;
8312
8312
  const C_ASTERISK = 42;
8313
8313
  const reTrailingSpaces = / +$/;
@@ -8701,7 +8701,7 @@ var InlineParser = class {
8701
8701
  */
8702
8702
  const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
8703
8703
  //#endregion
8704
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/rawInline.js
8704
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/rawInline.js
8705
8705
  const reWhitespace = /\s/;
8706
8706
  const reCmarkSpace = /[ \t\n\r]/;
8707
8707
  /**
@@ -8756,7 +8756,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
8756
8756
  };
8757
8757
  };
8758
8758
  //#endregion
8759
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/blockParser.js
8759
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockParser.js
8760
8760
  /** Upstream's cheap pre-filter: a line that cannot start any block. */
8761
8761
  const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
8762
8762
  var BlockParser = class {
@@ -9163,7 +9163,7 @@ var BlockParser = class {
9163
9163
  */
9164
9164
  const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
9165
9165
  //#endregion
9166
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/phrasing.js
9166
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/phrasing.js
9167
9167
  const EMPTY_REFMAP = /* @__PURE__ */ new Map();
9168
9168
  const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
9169
9169
  /**
@@ -9212,7 +9212,7 @@ const parsePhrasingText = (text, dialect) => {
9212
9212
  }, EMPTY_REFMAP, positionOf, dialect, EMPTY_FOOTNOTE_LABELS);
9213
9213
  };
9214
9214
  //#endregion
9215
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/internal/stringify.js
9215
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/stringify.js
9216
9216
  const FLOW_CONTEXT = {
9217
9217
  singleLine: false,
9218
9218
  inTable: false,
@@ -9908,7 +9908,7 @@ const stringifyTree = (root) => {
9908
9908
  return body === "" ? "" : `${body}\n`;
9909
9909
  };
9910
9910
  //#endregion
9911
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/Markdown.js
9911
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/Markdown.js
9912
9912
  /**
9913
9913
  * The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
9914
9914
  * 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
@@ -10272,7 +10272,7 @@ var Markdown = class Markdown {
10272
10272
  * @returns A `Schema.Codec<Root, string>`.
10273
10273
  */
10274
10274
  static fromString(options) {
10275
- return effect.Schema.String.pipe(effect.Schema.decodeTo(Root, effect.SchemaTransformation.transformOrFail({
10275
+ return effect.Schema.String.pipe(effect.Schema.decodeTo(Root, effect.SchemaTransformation.transformEffect({
10276
10276
  decode: (input) => effect.Effect.mapError(Markdown.parse(input, options), (error) => new effect.SchemaIssue.InvalidValue({ message: error.message }, input)),
10277
10277
  encode: (value) => effect.Effect.mapError(Markdown.stringify(value), (error) => new effect.SchemaIssue.InvalidValue({ message: error.message }, value))
10278
10278
  })));
@@ -10284,7 +10284,7 @@ var Markdown = class Markdown {
10284
10284
  static MarkdownFromString = Markdown.fromString();
10285
10285
  };
10286
10286
  //#endregion
10287
- //#region ../../node_modules/.pnpm/@effected+markdown@0.9.1_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.6._0ab5922234f3f49b1f06bf2c0ce581fc/node_modules/@effected/markdown/Mdast.js
10287
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/Mdast.js
10288
10288
  /**
10289
10289
  * The remark-ecosystem interop boundary: projection between this package's
10290
10290
  * node classes and plain mdast JSON.
@@ -24694,7 +24694,7 @@ function gfmStrikethrough(options) {
24694
24694
  }
24695
24695
  }
24696
24696
  //#endregion
24697
- //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js
24697
+ //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.2/node_modules/micromark-extension-gfm-table/lib/edit-map.js
24698
24698
  /**
24699
24699
  * @import {Event} from 'micromark-util-types'
24700
24700
  */
@@ -24716,14 +24716,25 @@ var EditMap = class {
24716
24716
  * @type {Array<Change>}
24717
24717
  */
24718
24718
  this.map = [];
24719
+ /**
24720
+ * Changes by index, so `add` does not scan `map` (quadratic on
24721
+ * table-heavy documents).
24722
+ *
24723
+ * @type {Map<number, Change>}
24724
+ */
24725
+ this.index = /* @__PURE__ */ new Map();
24719
24726
  }
24720
24727
  /**
24721
24728
  * Create an edit: a remove and/or add at a certain place.
24722
24729
  *
24723
24730
  * @param {number} index
24731
+ * Index at which to apply the edit.
24724
24732
  * @param {number} remove
24733
+ * Count of items to remove at the index.
24725
24734
  * @param {Array<Event>} add
24735
+ * Items to add at the index.
24726
24736
  * @returns {undefined}
24737
+ * Nothing.
24727
24738
  */
24728
24739
  add(index, remove, add) {
24729
24740
  addImplementation(this, index, remove, add);
@@ -24732,7 +24743,9 @@ var EditMap = class {
24732
24743
  * Done, change the events.
24733
24744
  *
24734
24745
  * @param {Array<Event>} events
24746
+ * List of events to apply the edits to.
24735
24747
  * @returns {undefined}
24748
+ * Nothing.
24736
24749
  */
24737
24750
  consume(events) {
24738
24751
  this.map.sort(function(a, b) {
@@ -24756,37 +24769,43 @@ var EditMap = class {
24756
24769
  slice = vecs.pop();
24757
24770
  }
24758
24771
  this.map.length = 0;
24772
+ this.index.clear();
24759
24773
  }
24760
24774
  };
24761
24775
  /**
24762
24776
  * Create an edit.
24763
24777
  *
24764
24778
  * @param {EditMap} editMap
24779
+ * Edit map to apply to.
24765
24780
  * @param {number} at
24781
+ * Index at which to apply the edit.
24766
24782
  * @param {number} remove
24783
+ * Count of items to remove at the index.
24767
24784
  * @param {Array<Event>} add
24785
+ * Items to add at the index.
24768
24786
  * @returns {undefined}
24787
+ * Nothing.
24769
24788
  */
24770
24789
  function addImplementation(editMap, at, remove, add) {
24771
- let index = 0;
24772
24790
  /* c8 ignore next 3 -- `resolve` is never called without tables, so without edits. */
24773
24791
  if (remove === 0 && add.length === 0) return;
24774
- while (index < editMap.map.length) {
24775
- if (editMap.map[index][0] === at) {
24776
- editMap.map[index][1] += remove;
24777
- editMap.map[index][2].push(...add);
24778
- return;
24779
- }
24780
- index += 1;
24792
+ const existing = editMap.index.get(at);
24793
+ if (existing) {
24794
+ existing[1] += remove;
24795
+ existing[2].push(...add);
24796
+ return;
24781
24797
  }
24782
- editMap.map.push([
24798
+ /** @type {Change} */
24799
+ const change = [
24783
24800
  at,
24784
24801
  remove,
24785
24802
  add
24786
- ]);
24803
+ ];
24804
+ editMap.map.push(change);
24805
+ editMap.index.set(at, change);
24787
24806
  }
24788
24807
  //#endregion
24789
- //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js
24808
+ //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.2/node_modules/micromark-extension-gfm-table/lib/infer.js
24790
24809
  /**
24791
24810
  * @import {Event} from 'micromark-util-types'
24792
24811
  */
@@ -24824,7 +24843,7 @@ function gfmTableAlign(events, index) {
24824
24843
  return align;
24825
24844
  }
24826
24845
  //#endregion
24827
- //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js
24846
+ //#region ../../node_modules/.pnpm/micromark-extension-gfm-table@2.1.2/node_modules/micromark-extension-gfm-table/lib/syntax.js
24828
24847
  /**
24829
24848
  * @import {Event, Extension, Point, Resolver, State, Token, TokenizeContext, Tokenizer} from 'micromark-util-types'
24830
24849
  */
@@ -24850,6 +24869,8 @@ function gfmTable() {
24850
24869
  } } };
24851
24870
  }
24852
24871
  /**
24872
+ * Tokenizer for GFM tables.
24873
+ *
24853
24874
  * @this {TokenizeContext}
24854
24875
  * @type {Tokenizer}
24855
24876
  */
@@ -24879,7 +24900,7 @@ function tokenizeTable(effects, ok, nok) {
24879
24900
  function start(code) {
24880
24901
  let index = self.events.length - 1;
24881
24902
  while (index > -1) {
24882
- const type = self.events[index][1].type;
24903
+ const { type } = self.events[index][1];
24883
24904
  if (type === "lineEnding" || type === "linePrefix") index--;
24884
24905
  else break;
24885
24906
  }
@@ -25408,12 +25429,19 @@ function resolveTable(events, context) {
25408
25429
  * Generate a cell.
25409
25430
  *
25410
25431
  * @param {EditMap} map
25432
+ * Edit map to apply to.
25411
25433
  * @param {Readonly<TokenizeContext>} context
25434
+ * Tokenize context.
25412
25435
  * @param {Readonly<Range>} range
25436
+ * Range of the cell within events.
25413
25437
  * @param {RowKind} rowKind
25438
+ * Type of row.
25414
25439
  * @param {number | undefined} rowEnd
25440
+ * Index of the end of the row, if known.
25415
25441
  * @param {Token | undefined} previousCell
25442
+ * Previous cell token, if any.
25416
25443
  * @returns {Token | undefined}
25444
+ * Current cell token after flushing, if any.
25417
25445
  */
25418
25446
  function flushCell(map, context, range, rowKind, rowEnd, previousCell) {
25419
25447
  const groupName = rowKind === 1 ? "tableHeader" : rowKind === 2 ? "tableDelimiter" : "tableData";
@@ -25484,10 +25512,17 @@ function flushCell(map, context, range, rowKind, rowEnd, previousCell) {
25484
25512
  * Generate table end (and table body end).
25485
25513
  *
25486
25514
  * @param {Readonly<EditMap>} map
25515
+ * Edit map to apply to.
25487
25516
  * @param {Readonly<TokenizeContext>} context
25517
+ * Tokenize context.
25488
25518
  * @param {number} index
25519
+ * Index within the events where the table end should be inserted.
25489
25520
  * @param {Token} table
25521
+ * Table token.
25490
25522
  * @param {Token | undefined} tableBody
25523
+ * Table body token, if any.
25524
+ * @returns {undefined}
25525
+ * Nothing.
25491
25526
  */
25492
25527
  function flushTableEnd(map, context, index, table, tableBody) {
25493
25528
  /** @type {Array<Event>} */
@@ -25510,9 +25545,14 @@ function flushTableEnd(map, context, index, table, tableBody) {
25510
25545
  map.add(index + 1, 0, exits);
25511
25546
  }
25512
25547
  /**
25548
+ * Get the point (start or end) for a given event in the list of events.
25549
+ *
25513
25550
  * @param {Readonly<Array<Event>>} events
25551
+ * List of events.
25514
25552
  * @param {number} index
25553
+ * Index of the event to get the point for.
25515
25554
  * @returns {Readonly<Point>}
25555
+ * Start point for enter and end point for exit.
25516
25556
  */
25517
25557
  function getPoint(events, index) {
25518
25558
  const event = events[index];
@@ -30940,7 +30980,7 @@ function parseCommitMessage(message) {
30940
30980
  return { description: message };
30941
30981
  }
30942
30982
  //#endregion
30943
- //#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/IssueReferences.js
30983
+ //#region ../../node_modules/.pnpm/@effected+github-references@0.3.0_effect@4.0.0-rc.115/node_modules/@effected/github-references/IssueReferences.js
30944
30984
  /**
30945
30985
  * GitHub's closing-keyword issue-reference grammar, as pure functions.
30946
30986
  *
@@ -30995,7 +31035,7 @@ const KEYWORDS = CLOSING_KEYWORDS.join("|");
30995
31035
  new RegExp(`\\b(${KEYWORDS})\\s+#(\\d+)`, "gi");
30996
31036
  new RegExp(`^(${KEYWORDS}):?[ \\t]+#(\\d+)$`, "i");
30997
31037
  //#endregion
30998
- //#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/ClosingList.js
31038
+ //#region ../../node_modules/.pnpm/@effected+github-references@0.3.0_effect@4.0.0-rc.115/node_modules/@effected/github-references/ClosingList.js
30999
31039
  /**
31000
31040
  * The closing-list dialect: one whole line naming several issues at once.
31001
31041
  *
@@ -31313,7 +31353,7 @@ const harvestReferenceLists = (text) => {
31313
31353
  return lists;
31314
31354
  };
31315
31355
  //#endregion
31316
- //#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/KeywordFamily.js
31356
+ //#region ../../node_modules/.pnpm/@effected+github-references@0.3.0_effect@4.0.0-rc.115/node_modules/@effected/github-references/KeywordFamily.js
31317
31357
  /**
31318
31358
  * The projection table IS the totality proof: `Record` over the union of
31319
31359
  * both keyword types makes a keyword added to either constant without an
@@ -33811,7 +33851,7 @@ _effected_templates.SectionId.make({
33811
33851
  commentStyle: _effected_templates.CommentStyle.hash
33812
33852
  });
33813
33853
  //#endregion
33814
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/limits.js
33854
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/limits.js
33815
33855
  /** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
33816
33856
  const MAX_PATTERN_LENGTH = 65536;
33817
33857
  /** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
@@ -33845,7 +33885,7 @@ const assertCap = (name, value) => {
33845
33885
  return value;
33846
33886
  };
33847
33887
  //#endregion
33848
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/unescape.js
33888
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/unescape.js
33849
33889
  /**
33850
33890
  * Un-escape a string that has been escaped with `escape`.
33851
33891
  *
@@ -33868,11 +33908,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
33868
33908
  return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
33869
33909
  };
33870
33910
  //#endregion
33871
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/types.js
33911
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/types.js
33872
33912
  /** The globstar marker in a compiled pattern set. */
33873
33913
  const GLOBSTAR = Symbol("globstar **");
33874
33914
  //#endregion
33875
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/escape.js
33915
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/escape.js
33876
33916
  /**
33877
33917
  * Escape all magic characters in a glob pattern.
33878
33918
  *
@@ -33890,13 +33930,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
33890
33930
  return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
33891
33931
  };
33892
33932
  //#endregion
33893
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/assertValidPattern.js
33933
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/assertValidPattern.js
33894
33934
  const assertValidPattern = (pattern) => {
33895
33935
  if (typeof pattern !== "string") throw new TypeError("invalid pattern");
33896
33936
  if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
33897
33937
  };
33898
33938
  //#endregion
33899
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpressions.js
33939
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/braceExpressions.js
33900
33940
  const posixClasses = {
33901
33941
  "[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
33902
33942
  "[:alpha:]": ["\\p{L}\\p{Nl}", true],
@@ -34019,7 +34059,7 @@ const parseClass = (glob, position) => {
34019
34059
  ];
34020
34060
  };
34021
34061
  //#endregion
34022
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/ast.js
34062
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/ast.js
34023
34063
  const types = /* @__PURE__ */ new Set([
34024
34064
  "!",
34025
34065
  "?",
@@ -34536,7 +34576,7 @@ var AST = class AST {
34536
34576
  }
34537
34577
  };
34538
34578
  //#endregion
34539
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/balancedMatch.js
34579
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/balancedMatch.js
34540
34580
  const maybeMatch = (reg, str) => {
34541
34581
  const m = str.match(reg);
34542
34582
  return m ? m[0] : null;
@@ -34594,7 +34634,7 @@ const range = (a, b, str) => {
34594
34634
  return result;
34595
34635
  };
34596
34636
  //#endregion
34597
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpansion.js
34637
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/braceExpansion.js
34598
34638
  const escSlash = `\0SLASH${Math.random()}\0`;
34599
34639
  const escOpen = `\0OPEN${Math.random()}\0`;
34600
34640
  const escClose = `\0CLOSE${Math.random()}\0`;
@@ -34741,7 +34781,7 @@ function expand_(str, max, isTopInput, depth) {
34741
34781
  }
34742
34782
  }
34743
34783
  //#endregion
34744
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/minimatch.js
34784
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/internal/minimatch.js
34745
34785
  const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
34746
34786
  const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
34747
34787
  const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
@@ -35314,7 +35354,7 @@ var Minimatch = class {
35314
35354
  }
35315
35355
  };
35316
35356
  //#endregion
35317
- //#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/GlobPattern.js
35357
+ //#region ../../node_modules/.pnpm/@effected+glob@0.6.0_effect@4.0.0-rc.115/node_modules/@effected/glob/GlobPattern.js
35318
35358
  /**
35319
35359
  * Typed failure raised when a glob pattern trips a compile-time guard:
35320
35360
  * over-length, brace-expansion budget exhaustion, or nesting past the depth
@@ -35593,7 +35633,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
35593
35633
  })));
35594
35634
  };
35595
35635
  //#endregion
35596
- //#region ../../node_modules/.pnpm/@effected+walker@0.7.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Descend.js
35636
+ //#region ../../node_modules/.pnpm/@effected+walker@0.8.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Descend.js
35597
35637
  /**
35598
35638
  * Typed failure raised by `descend`: a directory mid-walk was unreadable
35599
35639
  * (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
@@ -35711,7 +35751,7 @@ function descend(pattern, options) {
35711
35751
  return descendImpl(pattern, options);
35712
35752
  }
35713
35753
  //#endregion
35714
- //#region ../../node_modules/.pnpm/@effected+walker@0.7.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Expand.js
35754
+ //#region ../../node_modules/.pnpm/@effected+walker@0.8.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Expand.js
35715
35755
  /**
35716
35756
  * Typed failure raised by {@link compileAndExpand}: the single error the
35717
35757
  * compile+expand recipe fails with, so a caller catches one tag rather than