@savvy-web/silk 3.10.9 → 3.11.1
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.
|
@@ -2929,7 +2929,7 @@ const DependencyTableRowSchema = effect.Schema.Struct({
|
|
|
2929
2929
|
*/
|
|
2930
2930
|
const DependencyTableSchema = effect.Schema.Array(DependencyTableRowSchema).check(effect.Schema.isMinLength(1));
|
|
2931
2931
|
//#endregion
|
|
2932
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
2932
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/MarkdownNode.js
|
|
2933
2933
|
/**
|
|
2934
2934
|
* A single point in a source document: 1-based `line` and `column`, 0-based
|
|
2935
2935
|
* `offset`.
|
|
@@ -3730,7 +3730,7 @@ effect.Schema.suspend(() => effect.Schema.Union([
|
|
|
3730
3730
|
TableContent
|
|
3731
3731
|
]));
|
|
3732
3732
|
//#endregion
|
|
3733
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
3733
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/frontmatter.js
|
|
3734
3734
|
const FENCES = /* @__PURE__ */ new Map([
|
|
3735
3735
|
["---", {
|
|
3736
3736
|
format: "yaml",
|
|
@@ -3784,7 +3784,7 @@ const scanFrontmatter = (lines, text) => {
|
|
|
3784
3784
|
return null;
|
|
3785
3785
|
};
|
|
3786
3786
|
//#endregion
|
|
3787
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
3787
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncNode.js
|
|
3788
3788
|
/**
|
|
3789
3789
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
3790
3790
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -3959,7 +3959,7 @@ function evaluateNode(node, depth) {
|
|
|
3959
3959
|
}
|
|
3960
3960
|
}
|
|
3961
3961
|
//#endregion
|
|
3962
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
3962
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/scanner.js
|
|
3963
3963
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
3964
3964
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
3965
3965
|
const isDigit$2 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -3991,53 +3991,60 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
3991
3991
|
return value;
|
|
3992
3992
|
};
|
|
3993
3993
|
const scanString = () => {
|
|
3994
|
-
|
|
3994
|
+
const chunks = [];
|
|
3995
|
+
const finish = (end) => {
|
|
3996
|
+
const tail = text.substring(start, end);
|
|
3997
|
+
if (chunks.length === 0) return tail;
|
|
3998
|
+
if (tail.length > 0) chunks.push(tail);
|
|
3999
|
+
return chunks.join("");
|
|
4000
|
+
};
|
|
3995
4001
|
pos++;
|
|
3996
4002
|
let start = pos;
|
|
3997
4003
|
while (pos < len) {
|
|
3998
4004
|
const ch = text.charCodeAt(pos);
|
|
3999
4005
|
if (ch === 34) {
|
|
4000
|
-
|
|
4006
|
+
const value = finish(pos);
|
|
4001
4007
|
pos++;
|
|
4002
|
-
return
|
|
4008
|
+
return value;
|
|
4003
4009
|
}
|
|
4004
4010
|
if (ch === 92) {
|
|
4005
|
-
|
|
4011
|
+
if (start < pos) chunks.push(text.substring(start, pos));
|
|
4006
4012
|
pos++;
|
|
4007
4013
|
if (pos >= len) {
|
|
4008
4014
|
tokenError = "UnexpectedEndOfString";
|
|
4009
|
-
|
|
4015
|
+
start = pos;
|
|
4016
|
+
return finish(pos);
|
|
4010
4017
|
}
|
|
4011
4018
|
const escaped = text.charCodeAt(pos);
|
|
4012
4019
|
pos++;
|
|
4013
4020
|
switch (escaped) {
|
|
4014
4021
|
case 34:
|
|
4015
|
-
|
|
4022
|
+
chunks.push("\"");
|
|
4016
4023
|
break;
|
|
4017
4024
|
case 92:
|
|
4018
|
-
|
|
4025
|
+
chunks.push("\\");
|
|
4019
4026
|
break;
|
|
4020
4027
|
case 47:
|
|
4021
|
-
|
|
4028
|
+
chunks.push("/");
|
|
4022
4029
|
break;
|
|
4023
4030
|
case 98:
|
|
4024
|
-
|
|
4031
|
+
chunks.push("\b");
|
|
4025
4032
|
break;
|
|
4026
4033
|
case 102:
|
|
4027
|
-
|
|
4034
|
+
chunks.push("\f");
|
|
4028
4035
|
break;
|
|
4029
4036
|
case 110:
|
|
4030
|
-
|
|
4037
|
+
chunks.push("\n");
|
|
4031
4038
|
break;
|
|
4032
4039
|
case 114:
|
|
4033
|
-
|
|
4040
|
+
chunks.push("\r");
|
|
4034
4041
|
break;
|
|
4035
4042
|
case 116:
|
|
4036
|
-
|
|
4043
|
+
chunks.push(" ");
|
|
4037
4044
|
break;
|
|
4038
4045
|
case 117: {
|
|
4039
4046
|
const value = scanHexDigits(4);
|
|
4040
|
-
if (value >= 0)
|
|
4047
|
+
if (value >= 0) chunks.push(String.fromCharCode(value));
|
|
4041
4048
|
else tokenError = "InvalidUnicode";
|
|
4042
4049
|
break;
|
|
4043
4050
|
}
|
|
@@ -4046,14 +4053,14 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4046
4053
|
start = pos;
|
|
4047
4054
|
} else if (isLineBreak$1(ch)) {
|
|
4048
4055
|
tokenError = "UnexpectedEndOfString";
|
|
4049
|
-
return
|
|
4056
|
+
return finish(pos);
|
|
4050
4057
|
} else if (ch <= 31) {
|
|
4051
4058
|
tokenError = "InvalidCharacter";
|
|
4052
4059
|
pos++;
|
|
4053
4060
|
} else pos++;
|
|
4054
4061
|
}
|
|
4055
4062
|
tokenError = "UnexpectedEndOfString";
|
|
4056
|
-
return
|
|
4063
|
+
return finish(pos);
|
|
4057
4064
|
};
|
|
4058
4065
|
const scanNumber = () => {
|
|
4059
4066
|
const start = pos;
|
|
@@ -4253,7 +4260,7 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4253
4260
|
};
|
|
4254
4261
|
};
|
|
4255
4262
|
//#endregion
|
|
4256
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4263
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/skip.js
|
|
4257
4264
|
/**
|
|
4258
4265
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
4259
4266
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -4283,7 +4290,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
4283
4290
|
return end;
|
|
4284
4291
|
};
|
|
4285
4292
|
//#endregion
|
|
4286
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4293
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/parser.js
|
|
4287
4294
|
/**
|
|
4288
4295
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
4289
4296
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -4696,7 +4703,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
4696
4703
|
};
|
|
4697
4704
|
};
|
|
4698
4705
|
//#endregion
|
|
4699
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4706
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/Jsonc.js
|
|
4700
4707
|
/**
|
|
4701
4708
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
4702
4709
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -5300,7 +5307,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
5300
5307
|
}
|
|
5301
5308
|
};
|
|
5302
5309
|
//#endregion
|
|
5303
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
5310
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/navigate.js
|
|
5304
5311
|
/**
|
|
5305
5312
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
5306
5313
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -5427,7 +5434,7 @@ function navigate(text, path) {
|
|
|
5427
5434
|
return { _tag: "NoOp" };
|
|
5428
5435
|
}
|
|
5429
5436
|
//#endregion
|
|
5430
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
5437
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncModifier.js
|
|
5431
5438
|
/**
|
|
5432
5439
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
5433
5440
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -5555,7 +5562,7 @@ var JsoncModifier = class {
|
|
|
5555
5562
|
});
|
|
5556
5563
|
};
|
|
5557
5564
|
//#endregion
|
|
5558
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5565
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/carriers.js
|
|
5559
5566
|
/**
|
|
5560
5567
|
* P1's error-code vocabulary. Widens as later phases add parse-error kinds;
|
|
5561
5568
|
* P1 registers exactly one, the hardening-guard trip.
|
|
@@ -5595,7 +5602,7 @@ var GuardExceeded$1 = class extends Error {
|
|
|
5595
5602
|
/** Narrows `unknown` to {@link GuardExceeded}; never a bare `instanceof` at a call site. */
|
|
5596
5603
|
const isGuardExceeded$1 = (u) => u instanceof GuardExceeded$1;
|
|
5597
5604
|
//#endregion
|
|
5598
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5605
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/MarkdownDiagnostic.js
|
|
5599
5606
|
/**
|
|
5600
5607
|
* Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
|
|
5601
5608
|
* registers exactly the hardening-guard trip; later phases widen the union
|
|
@@ -5675,7 +5682,7 @@ function lineChar(text, offset) {
|
|
|
5675
5682
|
};
|
|
5676
5683
|
}
|
|
5677
5684
|
//#endregion
|
|
5678
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5685
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blockTypes.js
|
|
5679
5686
|
/** Narrow materialized children to the flow content most constructs contain. */
|
|
5680
5687
|
const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
|
|
5681
5688
|
/** Narrow materialized children to the list items a list contains. */
|
|
@@ -5700,7 +5707,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
|
|
|
5700
5707
|
data: {}
|
|
5701
5708
|
});
|
|
5702
5709
|
//#endregion
|
|
5703
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5710
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/preprocess.js
|
|
5704
5711
|
/**
|
|
5705
5712
|
* Split `text` into lines, preserving each line's absolute start offset.
|
|
5706
5713
|
*
|
|
@@ -5754,7 +5761,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
|
|
|
5754
5761
|
*/
|
|
5755
5762
|
const columnsToNextTabStop = (column) => 4 - column % 4;
|
|
5756
5763
|
//#endregion
|
|
5757
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5764
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/htmlTags.js
|
|
5758
5765
|
const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
|
|
5759
5766
|
/** An opening tag, with any attributes and an optional self-closing slash. */
|
|
5760
5767
|
const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
|
|
@@ -5765,7 +5772,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
|
|
|
5765
5772
|
/** {@link HTMLTAG}, anchored for matching at a cursor. */
|
|
5766
5773
|
const reHtmlTag = new RegExp(`^${HTMLTAG}`);
|
|
5767
5774
|
//#endregion
|
|
5768
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5775
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
|
|
5769
5776
|
const C_LESSTHAN$3 = 60;
|
|
5770
5777
|
const reHtmlBlockOpen = [
|
|
5771
5778
|
/./,
|
|
@@ -5831,7 +5838,7 @@ const htmlBlockStart = {
|
|
|
5831
5838
|
}
|
|
5832
5839
|
};
|
|
5833
5840
|
//#endregion
|
|
5834
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5841
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/atxHeading.js
|
|
5835
5842
|
const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
|
|
5836
5843
|
const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
|
|
5837
5844
|
const reClosingHashes = /[ \t]+#+[ \t]*$/;
|
|
@@ -5881,7 +5888,7 @@ const atxHeadingStart = {
|
|
|
5881
5888
|
}
|
|
5882
5889
|
};
|
|
5883
5890
|
//#endregion
|
|
5884
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5891
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/blockquote.js
|
|
5885
5892
|
const C_GREATERTHAN = 62;
|
|
5886
5893
|
/** Blockquote: continues while each line carries its `>` marker. */
|
|
5887
5894
|
const blockquoteConstruct = {
|
|
@@ -5915,11 +5922,11 @@ const blockquoteStart = {
|
|
|
5915
5922
|
}
|
|
5916
5923
|
};
|
|
5917
5924
|
//#endregion
|
|
5918
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5925
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/entityMap.js
|
|
5919
5926
|
/** The HTML5 named character references, keyed without `&` or `;`. */
|
|
5920
5927
|
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\",\"\"]]"));
|
|
5921
5928
|
//#endregion
|
|
5922
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5929
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/entities.js
|
|
5923
5930
|
/** The largest code point Unicode defines. */
|
|
5924
5931
|
const MAX_CODE_POINT = 1114111;
|
|
5925
5932
|
/**
|
|
@@ -5941,7 +5948,7 @@ const decodeEntity = (entity) => {
|
|
|
5941
5948
|
return String.fromCodePoint(code);
|
|
5942
5949
|
};
|
|
5943
5950
|
//#endregion
|
|
5944
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5951
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/unescape.js
|
|
5945
5952
|
/** The punctuation set a backslash may escape, per the spec. */
|
|
5946
5953
|
const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
5947
5954
|
/** One entity, in any of the three spec forms. */
|
|
@@ -5955,7 +5962,7 @@ const unescapeChar = (source) => {
|
|
|
5955
5962
|
/** Replace every backslash escape and character reference with its literal. */
|
|
5956
5963
|
const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
|
|
5957
5964
|
//#endregion
|
|
5958
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5965
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/code.js
|
|
5959
5966
|
const reBlankLine = /^[ \t]*$/;
|
|
5960
5967
|
const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
|
|
5961
5968
|
/**
|
|
@@ -6039,7 +6046,7 @@ const codeConstruct = {
|
|
|
6039
6046
|
}
|
|
6040
6047
|
};
|
|
6041
6048
|
//#endregion
|
|
6042
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6049
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/document.js
|
|
6043
6050
|
/** The document root: contains everything except a bare list item. */
|
|
6044
6051
|
const documentConstruct = {
|
|
6045
6052
|
type: "document",
|
|
@@ -6052,7 +6059,7 @@ const documentConstruct = {
|
|
|
6052
6059
|
})
|
|
6053
6060
|
};
|
|
6054
6061
|
//#endregion
|
|
6055
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6062
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/fencedCode.js
|
|
6056
6063
|
const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
|
|
6057
6064
|
const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
|
|
6058
6065
|
/** The fenced-code block start: three or more backticks or tildes. */
|
|
@@ -6076,7 +6083,7 @@ const fencedCodeStart = {
|
|
|
6076
6083
|
}
|
|
6077
6084
|
};
|
|
6078
6085
|
//#endregion
|
|
6079
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6086
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/patterns.js
|
|
6080
6087
|
const stickyCache = /* @__PURE__ */ new WeakMap();
|
|
6081
6088
|
const globalCache = /* @__PURE__ */ new WeakMap();
|
|
6082
6089
|
const clone = (pattern, flag, dropCaret) => {
|
|
@@ -6100,7 +6107,7 @@ const globalOf = (pattern) => {
|
|
|
6100
6107
|
return made;
|
|
6101
6108
|
};
|
|
6102
6109
|
//#endregion
|
|
6103
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6110
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/references.js
|
|
6104
6111
|
const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
6105
6112
|
const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
|
|
6106
6113
|
const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
|
|
@@ -6274,7 +6281,7 @@ const parseReference = (text) => {
|
|
|
6274
6281
|
};
|
|
6275
6282
|
};
|
|
6276
6283
|
//#endregion
|
|
6277
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6284
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
|
|
6278
6285
|
/**
|
|
6279
6286
|
* `_scan_footnote_definition` from `src/scanners.re`:
|
|
6280
6287
|
*
|
|
@@ -6351,7 +6358,7 @@ const footnoteDefinitionStart = {
|
|
|
6351
6358
|
}
|
|
6352
6359
|
};
|
|
6353
6360
|
//#endregion
|
|
6354
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6361
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/indentedCode.js
|
|
6355
6362
|
/** The indented-code block start: four columns of indentation. */
|
|
6356
6363
|
const indentedCodeStart = {
|
|
6357
6364
|
name: "indentedCode",
|
|
@@ -6365,7 +6372,7 @@ const indentedCodeStart = {
|
|
|
6365
6372
|
}
|
|
6366
6373
|
};
|
|
6367
6374
|
//#endregion
|
|
6368
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6375
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/segments.js
|
|
6369
6376
|
/**
|
|
6370
6377
|
* The absolute source offset of `textIndex` within a segmented content run.
|
|
6371
6378
|
*
|
|
@@ -6399,7 +6406,7 @@ const sliceWithSegments = (segments, from, to) => {
|
|
|
6399
6406
|
return sliced;
|
|
6400
6407
|
};
|
|
6401
6408
|
//#endregion
|
|
6402
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6409
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
|
|
6403
6410
|
const C_OPEN_BRACKET$1 = 91;
|
|
6404
6411
|
/**
|
|
6405
6412
|
* Split every leading link reference definition out of `block`, inserting one
|
|
@@ -6464,7 +6471,7 @@ const definitionConstruct = {
|
|
|
6464
6471
|
}
|
|
6465
6472
|
};
|
|
6466
6473
|
//#endregion
|
|
6467
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6474
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/list.js
|
|
6468
6475
|
const reBulletListMarker = /^[*+-]/;
|
|
6469
6476
|
const reOrderedListMarker = /^(\d{1,9})([.)])/;
|
|
6470
6477
|
const reNonSpace$1 = /[^ \t\f\v\r\n]/;
|
|
@@ -6617,7 +6624,7 @@ const listItemStart = {
|
|
|
6617
6624
|
}
|
|
6618
6625
|
};
|
|
6619
6626
|
//#endregion
|
|
6620
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6627
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/paragraph.js
|
|
6621
6628
|
/** Paragraph: absorbs lines until a blank one, and contains nothing. */
|
|
6622
6629
|
const paragraphConstruct = {
|
|
6623
6630
|
type: "paragraph",
|
|
@@ -6639,7 +6646,7 @@ const paragraphConstruct = {
|
|
|
6639
6646
|
}
|
|
6640
6647
|
};
|
|
6641
6648
|
//#endregion
|
|
6642
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6649
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/setextHeading.js
|
|
6643
6650
|
const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
|
|
6644
6651
|
/** The setext heading block start: a run of `=` or `-` under a paragraph. */
|
|
6645
6652
|
const setextHeadingStart = {
|
|
@@ -6659,7 +6666,7 @@ const setextHeadingStart = {
|
|
|
6659
6666
|
}
|
|
6660
6667
|
};
|
|
6661
6668
|
//#endregion
|
|
6662
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6669
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/table.js
|
|
6663
6670
|
/**
|
|
6664
6671
|
* Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
|
|
6665
6672
|
* invents to pad short rows, which is what stops a wide header followed by a
|
|
@@ -7030,7 +7037,7 @@ const tableCellConstruct = {
|
|
|
7030
7037
|
}
|
|
7031
7038
|
};
|
|
7032
7039
|
//#endregion
|
|
7033
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7040
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/taskListItem.js
|
|
7034
7041
|
/**
|
|
7035
7042
|
* `_scan_tasklist`, as the generated scanner accepts it.
|
|
7036
7043
|
*
|
|
@@ -7064,7 +7071,7 @@ const taskListItemStart = {
|
|
|
7064
7071
|
}
|
|
7065
7072
|
};
|
|
7066
7073
|
//#endregion
|
|
7067
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7074
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
|
|
7068
7075
|
const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
|
|
7069
7076
|
const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
|
|
7070
7077
|
/** Thematic break: one line, no children. */
|
|
@@ -7095,7 +7102,7 @@ const thematicBreakStart = {
|
|
|
7095
7102
|
}
|
|
7096
7103
|
};
|
|
7097
7104
|
//#endregion
|
|
7098
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7105
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blockRegistry.js
|
|
7099
7106
|
const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
|
|
7100
7107
|
const commonmarkDialect$1 = {
|
|
7101
7108
|
constructs: constructTable([
|
|
@@ -7167,7 +7174,7 @@ const blockDialect = (dialect) => {
|
|
|
7167
7174
|
return found;
|
|
7168
7175
|
};
|
|
7169
7176
|
//#endregion
|
|
7170
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7177
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/lineIndex.js
|
|
7171
7178
|
/**
|
|
7172
7179
|
* A precomputed index of line-start offsets over a fixed source text,
|
|
7173
7180
|
* answering `positionAt(offset)` in `O(log n)` via binary search rather than
|
|
@@ -7241,7 +7248,7 @@ var LineIndex = class LineIndex {
|
|
|
7241
7248
|
}
|
|
7242
7249
|
};
|
|
7243
7250
|
//#endregion
|
|
7244
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7251
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlineNode.js
|
|
7245
7252
|
/** Open a node with no links. */
|
|
7246
7253
|
const makeInlineNode = (type, start, end, value = "") => ({
|
|
7247
7254
|
type,
|
|
@@ -7293,7 +7300,7 @@ const childrenOf = (node) => {
|
|
|
7293
7300
|
return children;
|
|
7294
7301
|
};
|
|
7295
7302
|
//#endregion
|
|
7296
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7303
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/emphasis.js
|
|
7297
7304
|
const C_ASTERISK$1 = 42;
|
|
7298
7305
|
const C_UNDERSCORE$1 = 95;
|
|
7299
7306
|
const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
|
|
@@ -7370,7 +7377,7 @@ const emphasisConstruct = {
|
|
|
7370
7377
|
parse: (scanner) => handleDelim(scanner, scanner.peek())
|
|
7371
7378
|
};
|
|
7372
7379
|
//#endregion
|
|
7373
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7380
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/strikethrough.js
|
|
7374
7381
|
/**
|
|
7375
7382
|
* Consume a `~` run as literal text and, when it is a viable one- or
|
|
7376
7383
|
* two-tilde run, push it onto the shared delimiter stack.
|
|
@@ -7444,7 +7451,7 @@ const strikethroughConstruct = {
|
|
|
7444
7451
|
parse: (scanner) => handleTilde(scanner)
|
|
7445
7452
|
};
|
|
7446
7453
|
//#endregion
|
|
7447
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7454
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/autolink.js
|
|
7448
7455
|
const C_LESSTHAN$1 = 60;
|
|
7449
7456
|
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])?)*)>/;
|
|
7450
7457
|
const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
|
|
@@ -7476,7 +7483,7 @@ const autolinkConstruct = {
|
|
|
7476
7483
|
}
|
|
7477
7484
|
};
|
|
7478
7485
|
//#endregion
|
|
7479
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7486
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
|
|
7480
7487
|
const C_LOWER_W = 119;
|
|
7481
7488
|
const C_COLON = 58;
|
|
7482
7489
|
/** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
|
|
@@ -7846,7 +7853,7 @@ const linkifyEmails = (root) => {
|
|
|
7846
7853
|
}
|
|
7847
7854
|
};
|
|
7848
7855
|
//#endregion
|
|
7849
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7856
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/codeSpan.js
|
|
7850
7857
|
const C_BACKTICK$1 = 96;
|
|
7851
7858
|
const reTicksHere = /^`+/;
|
|
7852
7859
|
const reNewline = /\n/gm;
|
|
@@ -7874,7 +7881,7 @@ const codeSpanConstruct = {
|
|
|
7874
7881
|
}
|
|
7875
7882
|
};
|
|
7876
7883
|
//#endregion
|
|
7877
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7884
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/entity.js
|
|
7878
7885
|
const C_AMPERSAND = 38;
|
|
7879
7886
|
const reEntityHere = new RegExp(`^${ENTITY}`, "i");
|
|
7880
7887
|
/** A named, decimal or hexadecimal character reference. */
|
|
@@ -7890,7 +7897,7 @@ const entityConstruct = {
|
|
|
7890
7897
|
}
|
|
7891
7898
|
};
|
|
7892
7899
|
//#endregion
|
|
7893
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7900
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/escape.js
|
|
7894
7901
|
const C_BACKSLASH = 92;
|
|
7895
7902
|
const C_NEWLINE$1 = 10;
|
|
7896
7903
|
const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
|
|
@@ -7919,7 +7926,7 @@ const escapeConstruct = {
|
|
|
7919
7926
|
}
|
|
7920
7927
|
};
|
|
7921
7928
|
//#endregion
|
|
7922
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7929
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/link.js
|
|
7923
7930
|
const C_BANG = 33;
|
|
7924
7931
|
const C_CARET$1 = 94;
|
|
7925
7932
|
const C_OPEN_BRACKET = 91;
|
|
@@ -8126,7 +8133,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
|
|
|
8126
8133
|
/** `]` — closes a link or image, or stays literal. The CommonMark spelling. */
|
|
8127
8134
|
const linkCloseConstruct = makeLinkCloseConstruct();
|
|
8128
8135
|
//#endregion
|
|
8129
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8136
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
|
|
8130
8137
|
const C_CARET = 94;
|
|
8131
8138
|
/**
|
|
8132
8139
|
* Whether the bracket that just closed looks like `[^...]` with something
|
|
@@ -8183,7 +8190,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
|
|
|
8183
8190
|
*/
|
|
8184
8191
|
const gfmImageOpenConstruct = makeImageOpenConstruct(false);
|
|
8185
8192
|
//#endregion
|
|
8186
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8193
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/lineBreak.js
|
|
8187
8194
|
const C_NEWLINE = 10;
|
|
8188
8195
|
const reInitialSpace = /^ */;
|
|
8189
8196
|
/** A soft or hard line break. */
|
|
@@ -8204,7 +8211,7 @@ const lineBreakConstruct = {
|
|
|
8204
8211
|
}
|
|
8205
8212
|
};
|
|
8206
8213
|
//#endregion
|
|
8207
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8214
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/rawHtml.js
|
|
8208
8215
|
const C_LESSTHAN = 60;
|
|
8209
8216
|
/** The raw-HTML forms that scan forward for a fixed closing sequence. */
|
|
8210
8217
|
const UNTERMINATED_FORMS = [
|
|
@@ -8226,7 +8233,7 @@ const rawHtmlConstruct = {
|
|
|
8226
8233
|
}
|
|
8227
8234
|
};
|
|
8228
8235
|
//#endregion
|
|
8229
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8236
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlines/text.js
|
|
8230
8237
|
const reMain = /^[^\n`[\]\\!<&*_'"]+/;
|
|
8231
8238
|
const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
|
|
8232
8239
|
/** Consume a run of ordinary characters, stopping before any construct's. */
|
|
@@ -8246,7 +8253,7 @@ const textConstruct = runConstruct("text", reMain);
|
|
|
8246
8253
|
/** Ordinary text under `gfm`, which has three more characters to yield to. */
|
|
8247
8254
|
const gfmTextConstruct = runConstruct("text", reMainGfm);
|
|
8248
8255
|
//#endregion
|
|
8249
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8256
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlineRegistry.js
|
|
8250
8257
|
const triggerTable = (constructs) => {
|
|
8251
8258
|
const table = /* @__PURE__ */ new Map();
|
|
8252
8259
|
for (const construct of constructs) for (const trigger of construct.triggers) {
|
|
@@ -8299,7 +8306,7 @@ const inlineDialect = (dialect) => {
|
|
|
8299
8306
|
return found;
|
|
8300
8307
|
};
|
|
8301
8308
|
//#endregion
|
|
8302
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8309
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/inlineParser.js
|
|
8303
8310
|
const C_UNDERSCORE = 95;
|
|
8304
8311
|
const C_ASTERISK = 42;
|
|
8305
8312
|
const reTrailingSpaces = / +$/;
|
|
@@ -8693,7 +8700,7 @@ var InlineParser = class {
|
|
|
8693
8700
|
*/
|
|
8694
8701
|
const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
|
|
8695
8702
|
//#endregion
|
|
8696
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8703
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/rawInline.js
|
|
8697
8704
|
const reWhitespace = /\s/;
|
|
8698
8705
|
const reCmarkSpace = /[ \t\n\r]/;
|
|
8699
8706
|
/**
|
|
@@ -8748,7 +8755,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
|
|
|
8748
8755
|
};
|
|
8749
8756
|
};
|
|
8750
8757
|
//#endregion
|
|
8751
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8758
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/blockParser.js
|
|
8752
8759
|
/** Upstream's cheap pre-filter: a line that cannot start any block. */
|
|
8753
8760
|
const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
|
|
8754
8761
|
var BlockParser = class {
|
|
@@ -9155,7 +9162,7 @@ var BlockParser = class {
|
|
|
9155
9162
|
*/
|
|
9156
9163
|
const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
|
|
9157
9164
|
//#endregion
|
|
9158
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9165
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/phrasing.js
|
|
9159
9166
|
const EMPTY_REFMAP = /* @__PURE__ */ new Map();
|
|
9160
9167
|
const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
|
|
9161
9168
|
/**
|
|
@@ -9204,7 +9211,7 @@ const parsePhrasingText = (text, dialect) => {
|
|
|
9204
9211
|
}, EMPTY_REFMAP, positionOf, dialect, EMPTY_FOOTNOTE_LABELS);
|
|
9205
9212
|
};
|
|
9206
9213
|
//#endregion
|
|
9207
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9214
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/internal/stringify.js
|
|
9208
9215
|
const FLOW_CONTEXT = {
|
|
9209
9216
|
singleLine: false,
|
|
9210
9217
|
inTable: false,
|
|
@@ -9858,7 +9865,7 @@ const stringifyTree = (root) => {
|
|
|
9858
9865
|
return body === "" ? "" : `${body}\n`;
|
|
9859
9866
|
};
|
|
9860
9867
|
//#endregion
|
|
9861
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9868
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/Markdown.js
|
|
9862
9869
|
/**
|
|
9863
9870
|
* The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
|
|
9864
9871
|
* 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
|
|
@@ -10234,7 +10241,7 @@ var Markdown = class Markdown {
|
|
|
10234
10241
|
static MarkdownFromString = Markdown.fromString();
|
|
10235
10242
|
};
|
|
10236
10243
|
//#endregion
|
|
10237
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
10244
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.1_effect@4.0.0-rc.109__@effected+toml@0.5._d4d60850a9b268008efc9049a0b0565c/node_modules/@effected/markdown/Mdast.js
|
|
10238
10245
|
/**
|
|
10239
10246
|
* The remark-ecosystem interop boundary: projection between this package's
|
|
10240
10247
|
* node classes and plain mdast JSON.
|
|
@@ -53888,9 +53895,7 @@ function getHighestReleaseType(releases) {
|
|
|
53888
53895
|
case "minor":
|
|
53889
53896
|
highestReleaseType = "minor";
|
|
53890
53897
|
break;
|
|
53891
|
-
case "patch":
|
|
53892
|
-
if (highestReleaseType === "none") highestReleaseType = "patch";
|
|
53893
|
-
break;
|
|
53898
|
+
case "patch": if (highestReleaseType === "none") highestReleaseType = "patch";
|
|
53894
53899
|
}
|
|
53895
53900
|
return highestReleaseType;
|
|
53896
53901
|
}
|