@savvy-web/silk 3.11.0 → 3.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changesets-changelog.cjs +165 -78
- package/changesets-changelog.d.cts +124 -72
- package/changesets-changelog.d.ts +124 -72
- package/changesets-changelog.js +167 -79
- package/changesets-markdownlint.cjs +165 -78
- package/changesets-markdownlint.d.cts +124 -72
- package/changesets-markdownlint.d.ts +124 -72
- package/changesets-markdownlint.js +167 -79
- package/package.json +4 -4
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
package/changesets-changelog.cjs
CHANGED
|
@@ -2925,7 +2925,7 @@ const DependencyTableRowSchema = effect.Schema.Struct({
|
|
|
2925
2925
|
*/
|
|
2926
2926
|
const DependencyTableSchema = effect.Schema.Array(DependencyTableRowSchema).check(effect.Schema.isMinLength(1));
|
|
2927
2927
|
//#endregion
|
|
2928
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
2928
|
+
//#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
|
|
2929
2929
|
/**
|
|
2930
2930
|
* A single point in a source document: 1-based `line` and `column`, 0-based
|
|
2931
2931
|
* `offset`.
|
|
@@ -3726,7 +3726,7 @@ effect.Schema.suspend(() => effect.Schema.Union([
|
|
|
3726
3726
|
TableContent
|
|
3727
3727
|
]));
|
|
3728
3728
|
//#endregion
|
|
3729
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
3729
|
+
//#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
|
|
3730
3730
|
const FENCES = /* @__PURE__ */ new Map([
|
|
3731
3731
|
["---", {
|
|
3732
3732
|
format: "yaml",
|
|
@@ -3780,7 +3780,7 @@ const scanFrontmatter = (lines, text) => {
|
|
|
3780
3780
|
return null;
|
|
3781
3781
|
};
|
|
3782
3782
|
//#endregion
|
|
3783
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
3783
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncNode.js
|
|
3784
3784
|
/**
|
|
3785
3785
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
3786
3786
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -3955,7 +3955,7 @@ function evaluateNode(node, depth) {
|
|
|
3955
3955
|
}
|
|
3956
3956
|
}
|
|
3957
3957
|
//#endregion
|
|
3958
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
3958
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/scanner.js
|
|
3959
3959
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
3960
3960
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
3961
3961
|
const isDigit$2 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -3987,53 +3987,60 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
3987
3987
|
return value;
|
|
3988
3988
|
};
|
|
3989
3989
|
const scanString = () => {
|
|
3990
|
-
|
|
3990
|
+
const chunks = [];
|
|
3991
|
+
const finish = (end) => {
|
|
3992
|
+
const tail = text.substring(start, end);
|
|
3993
|
+
if (chunks.length === 0) return tail;
|
|
3994
|
+
if (tail.length > 0) chunks.push(tail);
|
|
3995
|
+
return chunks.join("");
|
|
3996
|
+
};
|
|
3991
3997
|
pos++;
|
|
3992
3998
|
let start = pos;
|
|
3993
3999
|
while (pos < len) {
|
|
3994
4000
|
const ch = text.charCodeAt(pos);
|
|
3995
4001
|
if (ch === 34) {
|
|
3996
|
-
|
|
4002
|
+
const value = finish(pos);
|
|
3997
4003
|
pos++;
|
|
3998
|
-
return
|
|
4004
|
+
return value;
|
|
3999
4005
|
}
|
|
4000
4006
|
if (ch === 92) {
|
|
4001
|
-
|
|
4007
|
+
if (start < pos) chunks.push(text.substring(start, pos));
|
|
4002
4008
|
pos++;
|
|
4003
4009
|
if (pos >= len) {
|
|
4004
4010
|
tokenError = "UnexpectedEndOfString";
|
|
4005
|
-
|
|
4011
|
+
start = pos;
|
|
4012
|
+
return finish(pos);
|
|
4006
4013
|
}
|
|
4007
4014
|
const escaped = text.charCodeAt(pos);
|
|
4008
4015
|
pos++;
|
|
4009
4016
|
switch (escaped) {
|
|
4010
4017
|
case 34:
|
|
4011
|
-
|
|
4018
|
+
chunks.push("\"");
|
|
4012
4019
|
break;
|
|
4013
4020
|
case 92:
|
|
4014
|
-
|
|
4021
|
+
chunks.push("\\");
|
|
4015
4022
|
break;
|
|
4016
4023
|
case 47:
|
|
4017
|
-
|
|
4024
|
+
chunks.push("/");
|
|
4018
4025
|
break;
|
|
4019
4026
|
case 98:
|
|
4020
|
-
|
|
4027
|
+
chunks.push("\b");
|
|
4021
4028
|
break;
|
|
4022
4029
|
case 102:
|
|
4023
|
-
|
|
4030
|
+
chunks.push("\f");
|
|
4024
4031
|
break;
|
|
4025
4032
|
case 110:
|
|
4026
|
-
|
|
4033
|
+
chunks.push("\n");
|
|
4027
4034
|
break;
|
|
4028
4035
|
case 114:
|
|
4029
|
-
|
|
4036
|
+
chunks.push("\r");
|
|
4030
4037
|
break;
|
|
4031
4038
|
case 116:
|
|
4032
|
-
|
|
4039
|
+
chunks.push(" ");
|
|
4033
4040
|
break;
|
|
4034
4041
|
case 117: {
|
|
4035
4042
|
const value = scanHexDigits(4);
|
|
4036
|
-
if (value >= 0)
|
|
4043
|
+
if (value >= 0) chunks.push(String.fromCharCode(value));
|
|
4037
4044
|
else tokenError = "InvalidUnicode";
|
|
4038
4045
|
break;
|
|
4039
4046
|
}
|
|
@@ -4042,14 +4049,14 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4042
4049
|
start = pos;
|
|
4043
4050
|
} else if (isLineBreak$1(ch)) {
|
|
4044
4051
|
tokenError = "UnexpectedEndOfString";
|
|
4045
|
-
return
|
|
4052
|
+
return finish(pos);
|
|
4046
4053
|
} else if (ch <= 31) {
|
|
4047
4054
|
tokenError = "InvalidCharacter";
|
|
4048
4055
|
pos++;
|
|
4049
4056
|
} else pos++;
|
|
4050
4057
|
}
|
|
4051
4058
|
tokenError = "UnexpectedEndOfString";
|
|
4052
|
-
return
|
|
4059
|
+
return finish(pos);
|
|
4053
4060
|
};
|
|
4054
4061
|
const scanNumber = () => {
|
|
4055
4062
|
const start = pos;
|
|
@@ -4249,7 +4256,7 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4249
4256
|
};
|
|
4250
4257
|
};
|
|
4251
4258
|
//#endregion
|
|
4252
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4259
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/skip.js
|
|
4253
4260
|
/**
|
|
4254
4261
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
4255
4262
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -4279,7 +4286,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
4279
4286
|
return end;
|
|
4280
4287
|
};
|
|
4281
4288
|
//#endregion
|
|
4282
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4289
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/parser.js
|
|
4283
4290
|
/**
|
|
4284
4291
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
4285
4292
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -4692,7 +4699,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
4692
4699
|
};
|
|
4693
4700
|
};
|
|
4694
4701
|
//#endregion
|
|
4695
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
4702
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/Jsonc.js
|
|
4696
4703
|
/**
|
|
4697
4704
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
4698
4705
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -5296,7 +5303,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
5296
5303
|
}
|
|
5297
5304
|
};
|
|
5298
5305
|
//#endregion
|
|
5299
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
5306
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/navigate.js
|
|
5300
5307
|
/**
|
|
5301
5308
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
5302
5309
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -5423,7 +5430,7 @@ function navigate(text, path) {
|
|
|
5423
5430
|
return { _tag: "NoOp" };
|
|
5424
5431
|
}
|
|
5425
5432
|
//#endregion
|
|
5426
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.
|
|
5433
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.8.1_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncModifier.js
|
|
5427
5434
|
/**
|
|
5428
5435
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
5429
5436
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -5551,7 +5558,7 @@ var JsoncModifier = class {
|
|
|
5551
5558
|
});
|
|
5552
5559
|
};
|
|
5553
5560
|
//#endregion
|
|
5554
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5561
|
+
//#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
|
|
5555
5562
|
/**
|
|
5556
5563
|
* P1's error-code vocabulary. Widens as later phases add parse-error kinds;
|
|
5557
5564
|
* P1 registers exactly one, the hardening-guard trip.
|
|
@@ -5591,7 +5598,7 @@ var GuardExceeded$1 = class extends Error {
|
|
|
5591
5598
|
/** Narrows `unknown` to {@link GuardExceeded}; never a bare `instanceof` at a call site. */
|
|
5592
5599
|
const isGuardExceeded$1 = (u) => u instanceof GuardExceeded$1;
|
|
5593
5600
|
//#endregion
|
|
5594
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5601
|
+
//#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
|
|
5595
5602
|
/**
|
|
5596
5603
|
* Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
|
|
5597
5604
|
* registers exactly the hardening-guard trip; later phases widen the union
|
|
@@ -5671,7 +5678,7 @@ function lineChar(text, offset) {
|
|
|
5671
5678
|
};
|
|
5672
5679
|
}
|
|
5673
5680
|
//#endregion
|
|
5674
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5681
|
+
//#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
|
|
5675
5682
|
/** Narrow materialized children to the flow content most constructs contain. */
|
|
5676
5683
|
const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
|
|
5677
5684
|
/** Narrow materialized children to the list items a list contains. */
|
|
@@ -5696,7 +5703,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
|
|
|
5696
5703
|
data: {}
|
|
5697
5704
|
});
|
|
5698
5705
|
//#endregion
|
|
5699
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5706
|
+
//#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
|
|
5700
5707
|
/**
|
|
5701
5708
|
* Split `text` into lines, preserving each line's absolute start offset.
|
|
5702
5709
|
*
|
|
@@ -5750,7 +5757,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
|
|
|
5750
5757
|
*/
|
|
5751
5758
|
const columnsToNextTabStop = (column) => 4 - column % 4;
|
|
5752
5759
|
//#endregion
|
|
5753
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5760
|
+
//#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
|
|
5754
5761
|
const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
|
|
5755
5762
|
/** An opening tag, with any attributes and an optional self-closing slash. */
|
|
5756
5763
|
const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
|
|
@@ -5761,7 +5768,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
|
|
|
5761
5768
|
/** {@link HTMLTAG}, anchored for matching at a cursor. */
|
|
5762
5769
|
const reHtmlTag = new RegExp(`^${HTMLTAG}`);
|
|
5763
5770
|
//#endregion
|
|
5764
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5771
|
+
//#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
|
|
5765
5772
|
const C_LESSTHAN$3 = 60;
|
|
5766
5773
|
const reHtmlBlockOpen = [
|
|
5767
5774
|
/./,
|
|
@@ -5827,7 +5834,7 @@ const htmlBlockStart = {
|
|
|
5827
5834
|
}
|
|
5828
5835
|
};
|
|
5829
5836
|
//#endregion
|
|
5830
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5837
|
+
//#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
|
|
5831
5838
|
const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
|
|
5832
5839
|
const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
|
|
5833
5840
|
const reClosingHashes = /[ \t]+#+[ \t]*$/;
|
|
@@ -5877,7 +5884,7 @@ const atxHeadingStart = {
|
|
|
5877
5884
|
}
|
|
5878
5885
|
};
|
|
5879
5886
|
//#endregion
|
|
5880
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5887
|
+
//#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
|
|
5881
5888
|
const C_GREATERTHAN = 62;
|
|
5882
5889
|
/** Blockquote: continues while each line carries its `>` marker. */
|
|
5883
5890
|
const blockquoteConstruct = {
|
|
@@ -5911,11 +5918,11 @@ const blockquoteStart = {
|
|
|
5911
5918
|
}
|
|
5912
5919
|
};
|
|
5913
5920
|
//#endregion
|
|
5914
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5921
|
+
//#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
|
|
5915
5922
|
/** The HTML5 named character references, keyed without `&` or `;`. */
|
|
5916
5923
|
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\",\"\"]]"));
|
|
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/entities.js
|
|
5919
5926
|
/** The largest code point Unicode defines. */
|
|
5920
5927
|
const MAX_CODE_POINT = 1114111;
|
|
5921
5928
|
/**
|
|
@@ -5937,7 +5944,7 @@ const decodeEntity = (entity) => {
|
|
|
5937
5944
|
return String.fromCodePoint(code);
|
|
5938
5945
|
};
|
|
5939
5946
|
//#endregion
|
|
5940
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5947
|
+
//#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
|
|
5941
5948
|
/** The punctuation set a backslash may escape, per the spec. */
|
|
5942
5949
|
const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
5943
5950
|
/** One entity, in any of the three spec forms. */
|
|
@@ -5951,7 +5958,7 @@ const unescapeChar = (source) => {
|
|
|
5951
5958
|
/** Replace every backslash escape and character reference with its literal. */
|
|
5952
5959
|
const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
|
|
5953
5960
|
//#endregion
|
|
5954
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
5961
|
+
//#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
|
|
5955
5962
|
const reBlankLine = /^[ \t]*$/;
|
|
5956
5963
|
const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
|
|
5957
5964
|
/**
|
|
@@ -6035,7 +6042,7 @@ const codeConstruct = {
|
|
|
6035
6042
|
}
|
|
6036
6043
|
};
|
|
6037
6044
|
//#endregion
|
|
6038
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6045
|
+
//#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
|
|
6039
6046
|
/** The document root: contains everything except a bare list item. */
|
|
6040
6047
|
const documentConstruct = {
|
|
6041
6048
|
type: "document",
|
|
@@ -6048,7 +6055,7 @@ const documentConstruct = {
|
|
|
6048
6055
|
})
|
|
6049
6056
|
};
|
|
6050
6057
|
//#endregion
|
|
6051
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6058
|
+
//#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
|
|
6052
6059
|
const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
|
|
6053
6060
|
const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
|
|
6054
6061
|
/** The fenced-code block start: three or more backticks or tildes. */
|
|
@@ -6072,7 +6079,7 @@ const fencedCodeStart = {
|
|
|
6072
6079
|
}
|
|
6073
6080
|
};
|
|
6074
6081
|
//#endregion
|
|
6075
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6082
|
+
//#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
|
|
6076
6083
|
const stickyCache = /* @__PURE__ */ new WeakMap();
|
|
6077
6084
|
const globalCache = /* @__PURE__ */ new WeakMap();
|
|
6078
6085
|
const clone = (pattern, flag, dropCaret) => {
|
|
@@ -6096,7 +6103,7 @@ const globalOf = (pattern) => {
|
|
|
6096
6103
|
return made;
|
|
6097
6104
|
};
|
|
6098
6105
|
//#endregion
|
|
6099
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6106
|
+
//#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
|
|
6100
6107
|
const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
6101
6108
|
const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
|
|
6102
6109
|
const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
|
|
@@ -6270,7 +6277,7 @@ const parseReference = (text) => {
|
|
|
6270
6277
|
};
|
|
6271
6278
|
};
|
|
6272
6279
|
//#endregion
|
|
6273
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6280
|
+
//#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
|
|
6274
6281
|
/**
|
|
6275
6282
|
* `_scan_footnote_definition` from `src/scanners.re`:
|
|
6276
6283
|
*
|
|
@@ -6347,7 +6354,7 @@ const footnoteDefinitionStart = {
|
|
|
6347
6354
|
}
|
|
6348
6355
|
};
|
|
6349
6356
|
//#endregion
|
|
6350
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6357
|
+
//#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
|
|
6351
6358
|
/** The indented-code block start: four columns of indentation. */
|
|
6352
6359
|
const indentedCodeStart = {
|
|
6353
6360
|
name: "indentedCode",
|
|
@@ -6361,7 +6368,7 @@ const indentedCodeStart = {
|
|
|
6361
6368
|
}
|
|
6362
6369
|
};
|
|
6363
6370
|
//#endregion
|
|
6364
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6371
|
+
//#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
|
|
6365
6372
|
/**
|
|
6366
6373
|
* The absolute source offset of `textIndex` within a segmented content run.
|
|
6367
6374
|
*
|
|
@@ -6395,7 +6402,7 @@ const sliceWithSegments = (segments, from, to) => {
|
|
|
6395
6402
|
return sliced;
|
|
6396
6403
|
};
|
|
6397
6404
|
//#endregion
|
|
6398
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6405
|
+
//#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
|
|
6399
6406
|
const C_OPEN_BRACKET$1 = 91;
|
|
6400
6407
|
/**
|
|
6401
6408
|
* Split every leading link reference definition out of `block`, inserting one
|
|
@@ -6460,7 +6467,7 @@ const definitionConstruct = {
|
|
|
6460
6467
|
}
|
|
6461
6468
|
};
|
|
6462
6469
|
//#endregion
|
|
6463
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6470
|
+
//#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
|
|
6464
6471
|
const reBulletListMarker = /^[*+-]/;
|
|
6465
6472
|
const reOrderedListMarker = /^(\d{1,9})([.)])/;
|
|
6466
6473
|
const reNonSpace$1 = /[^ \t\f\v\r\n]/;
|
|
@@ -6613,7 +6620,7 @@ const listItemStart = {
|
|
|
6613
6620
|
}
|
|
6614
6621
|
};
|
|
6615
6622
|
//#endregion
|
|
6616
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6623
|
+
//#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
|
|
6617
6624
|
/** Paragraph: absorbs lines until a blank one, and contains nothing. */
|
|
6618
6625
|
const paragraphConstruct = {
|
|
6619
6626
|
type: "paragraph",
|
|
@@ -6635,7 +6642,7 @@ const paragraphConstruct = {
|
|
|
6635
6642
|
}
|
|
6636
6643
|
};
|
|
6637
6644
|
//#endregion
|
|
6638
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6645
|
+
//#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
|
|
6639
6646
|
const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
|
|
6640
6647
|
/** The setext heading block start: a run of `=` or `-` under a paragraph. */
|
|
6641
6648
|
const setextHeadingStart = {
|
|
@@ -6655,7 +6662,7 @@ const setextHeadingStart = {
|
|
|
6655
6662
|
}
|
|
6656
6663
|
};
|
|
6657
6664
|
//#endregion
|
|
6658
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
6665
|
+
//#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
|
|
6659
6666
|
/**
|
|
6660
6667
|
* Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
|
|
6661
6668
|
* invents to pad short rows, which is what stops a wide header followed by a
|
|
@@ -7026,7 +7033,7 @@ const tableCellConstruct = {
|
|
|
7026
7033
|
}
|
|
7027
7034
|
};
|
|
7028
7035
|
//#endregion
|
|
7029
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7036
|
+
//#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
|
|
7030
7037
|
/**
|
|
7031
7038
|
* `_scan_tasklist`, as the generated scanner accepts it.
|
|
7032
7039
|
*
|
|
@@ -7060,7 +7067,7 @@ const taskListItemStart = {
|
|
|
7060
7067
|
}
|
|
7061
7068
|
};
|
|
7062
7069
|
//#endregion
|
|
7063
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7070
|
+
//#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
|
|
7064
7071
|
const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
|
|
7065
7072
|
const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
|
|
7066
7073
|
/** Thematic break: one line, no children. */
|
|
@@ -7091,7 +7098,7 @@ const thematicBreakStart = {
|
|
|
7091
7098
|
}
|
|
7092
7099
|
};
|
|
7093
7100
|
//#endregion
|
|
7094
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7101
|
+
//#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
|
|
7095
7102
|
const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
|
|
7096
7103
|
const commonmarkDialect$1 = {
|
|
7097
7104
|
constructs: constructTable([
|
|
@@ -7163,7 +7170,7 @@ const blockDialect = (dialect) => {
|
|
|
7163
7170
|
return found;
|
|
7164
7171
|
};
|
|
7165
7172
|
//#endregion
|
|
7166
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7173
|
+
//#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
|
|
7167
7174
|
/**
|
|
7168
7175
|
* A precomputed index of line-start offsets over a fixed source text,
|
|
7169
7176
|
* answering `positionAt(offset)` in `O(log n)` via binary search rather than
|
|
@@ -7237,7 +7244,7 @@ var LineIndex = class LineIndex {
|
|
|
7237
7244
|
}
|
|
7238
7245
|
};
|
|
7239
7246
|
//#endregion
|
|
7240
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7247
|
+
//#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
|
|
7241
7248
|
/** Open a node with no links. */
|
|
7242
7249
|
const makeInlineNode = (type, start, end, value = "") => ({
|
|
7243
7250
|
type,
|
|
@@ -7289,7 +7296,7 @@ const childrenOf = (node) => {
|
|
|
7289
7296
|
return children;
|
|
7290
7297
|
};
|
|
7291
7298
|
//#endregion
|
|
7292
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7299
|
+
//#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
|
|
7293
7300
|
const C_ASTERISK$1 = 42;
|
|
7294
7301
|
const C_UNDERSCORE$1 = 95;
|
|
7295
7302
|
const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
|
|
@@ -7366,7 +7373,7 @@ const emphasisConstruct = {
|
|
|
7366
7373
|
parse: (scanner) => handleDelim(scanner, scanner.peek())
|
|
7367
7374
|
};
|
|
7368
7375
|
//#endregion
|
|
7369
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7376
|
+
//#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
|
|
7370
7377
|
/**
|
|
7371
7378
|
* Consume a `~` run as literal text and, when it is a viable one- or
|
|
7372
7379
|
* two-tilde run, push it onto the shared delimiter stack.
|
|
@@ -7440,7 +7447,7 @@ const strikethroughConstruct = {
|
|
|
7440
7447
|
parse: (scanner) => handleTilde(scanner)
|
|
7441
7448
|
};
|
|
7442
7449
|
//#endregion
|
|
7443
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7450
|
+
//#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
|
|
7444
7451
|
const C_LESSTHAN$1 = 60;
|
|
7445
7452
|
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])?)*)>/;
|
|
7446
7453
|
const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
|
|
@@ -7472,7 +7479,7 @@ const autolinkConstruct = {
|
|
|
7472
7479
|
}
|
|
7473
7480
|
};
|
|
7474
7481
|
//#endregion
|
|
7475
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7482
|
+
//#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
|
|
7476
7483
|
const C_LOWER_W = 119;
|
|
7477
7484
|
const C_COLON = 58;
|
|
7478
7485
|
/** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
|
|
@@ -7842,7 +7849,7 @@ const linkifyEmails = (root) => {
|
|
|
7842
7849
|
}
|
|
7843
7850
|
};
|
|
7844
7851
|
//#endregion
|
|
7845
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7852
|
+
//#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
|
|
7846
7853
|
const C_BACKTICK$1 = 96;
|
|
7847
7854
|
const reTicksHere = /^`+/;
|
|
7848
7855
|
const reNewline = /\n/gm;
|
|
@@ -7870,7 +7877,7 @@ const codeSpanConstruct = {
|
|
|
7870
7877
|
}
|
|
7871
7878
|
};
|
|
7872
7879
|
//#endregion
|
|
7873
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7880
|
+
//#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
|
|
7874
7881
|
const C_AMPERSAND = 38;
|
|
7875
7882
|
const reEntityHere = new RegExp(`^${ENTITY}`, "i");
|
|
7876
7883
|
/** A named, decimal or hexadecimal character reference. */
|
|
@@ -7886,7 +7893,7 @@ const entityConstruct = {
|
|
|
7886
7893
|
}
|
|
7887
7894
|
};
|
|
7888
7895
|
//#endregion
|
|
7889
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7896
|
+
//#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
|
|
7890
7897
|
const C_BACKSLASH = 92;
|
|
7891
7898
|
const C_NEWLINE$1 = 10;
|
|
7892
7899
|
const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
|
|
@@ -7915,7 +7922,7 @@ const escapeConstruct = {
|
|
|
7915
7922
|
}
|
|
7916
7923
|
};
|
|
7917
7924
|
//#endregion
|
|
7918
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
7925
|
+
//#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
|
|
7919
7926
|
const C_BANG = 33;
|
|
7920
7927
|
const C_CARET$1 = 94;
|
|
7921
7928
|
const C_OPEN_BRACKET = 91;
|
|
@@ -8122,7 +8129,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
|
|
|
8122
8129
|
/** `]` — closes a link or image, or stays literal. The CommonMark spelling. */
|
|
8123
8130
|
const linkCloseConstruct = makeLinkCloseConstruct();
|
|
8124
8131
|
//#endregion
|
|
8125
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8132
|
+
//#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
|
|
8126
8133
|
const C_CARET = 94;
|
|
8127
8134
|
/**
|
|
8128
8135
|
* Whether the bracket that just closed looks like `[^...]` with something
|
|
@@ -8179,7 +8186,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
|
|
|
8179
8186
|
*/
|
|
8180
8187
|
const gfmImageOpenConstruct = makeImageOpenConstruct(false);
|
|
8181
8188
|
//#endregion
|
|
8182
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8189
|
+
//#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
|
|
8183
8190
|
const C_NEWLINE = 10;
|
|
8184
8191
|
const reInitialSpace = /^ */;
|
|
8185
8192
|
/** A soft or hard line break. */
|
|
@@ -8200,7 +8207,7 @@ const lineBreakConstruct = {
|
|
|
8200
8207
|
}
|
|
8201
8208
|
};
|
|
8202
8209
|
//#endregion
|
|
8203
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8210
|
+
//#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
|
|
8204
8211
|
const C_LESSTHAN = 60;
|
|
8205
8212
|
/** The raw-HTML forms that scan forward for a fixed closing sequence. */
|
|
8206
8213
|
const UNTERMINATED_FORMS = [
|
|
@@ -8222,7 +8229,7 @@ const rawHtmlConstruct = {
|
|
|
8222
8229
|
}
|
|
8223
8230
|
};
|
|
8224
8231
|
//#endregion
|
|
8225
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8232
|
+
//#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
|
|
8226
8233
|
const reMain = /^[^\n`[\]\\!<&*_'"]+/;
|
|
8227
8234
|
const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
|
|
8228
8235
|
/** Consume a run of ordinary characters, stopping before any construct's. */
|
|
@@ -8242,7 +8249,7 @@ const textConstruct = runConstruct("text", reMain);
|
|
|
8242
8249
|
/** Ordinary text under `gfm`, which has three more characters to yield to. */
|
|
8243
8250
|
const gfmTextConstruct = runConstruct("text", reMainGfm);
|
|
8244
8251
|
//#endregion
|
|
8245
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8252
|
+
//#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
|
|
8246
8253
|
const triggerTable = (constructs) => {
|
|
8247
8254
|
const table = /* @__PURE__ */ new Map();
|
|
8248
8255
|
for (const construct of constructs) for (const trigger of construct.triggers) {
|
|
@@ -8295,7 +8302,7 @@ const inlineDialect = (dialect) => {
|
|
|
8295
8302
|
return found;
|
|
8296
8303
|
};
|
|
8297
8304
|
//#endregion
|
|
8298
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8305
|
+
//#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
|
|
8299
8306
|
const C_UNDERSCORE = 95;
|
|
8300
8307
|
const C_ASTERISK = 42;
|
|
8301
8308
|
const reTrailingSpaces = / +$/;
|
|
@@ -8689,7 +8696,7 @@ var InlineParser = class {
|
|
|
8689
8696
|
*/
|
|
8690
8697
|
const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
|
|
8691
8698
|
//#endregion
|
|
8692
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8699
|
+
//#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
|
|
8693
8700
|
const reWhitespace = /\s/;
|
|
8694
8701
|
const reCmarkSpace = /[ \t\n\r]/;
|
|
8695
8702
|
/**
|
|
@@ -8744,7 +8751,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
|
|
|
8744
8751
|
};
|
|
8745
8752
|
};
|
|
8746
8753
|
//#endregion
|
|
8747
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
8754
|
+
//#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
|
|
8748
8755
|
/** Upstream's cheap pre-filter: a line that cannot start any block. */
|
|
8749
8756
|
const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
|
|
8750
8757
|
var BlockParser = class {
|
|
@@ -9151,7 +9158,7 @@ var BlockParser = class {
|
|
|
9151
9158
|
*/
|
|
9152
9159
|
const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
|
|
9153
9160
|
//#endregion
|
|
9154
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9161
|
+
//#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
|
|
9155
9162
|
const EMPTY_REFMAP = /* @__PURE__ */ new Map();
|
|
9156
9163
|
const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
|
|
9157
9164
|
/**
|
|
@@ -9200,7 +9207,7 @@ const parsePhrasingText = (text, dialect) => {
|
|
|
9200
9207
|
}, EMPTY_REFMAP, positionOf, dialect, EMPTY_FOOTNOTE_LABELS);
|
|
9201
9208
|
};
|
|
9202
9209
|
//#endregion
|
|
9203
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9210
|
+
//#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
|
|
9204
9211
|
const FLOW_CONTEXT = {
|
|
9205
9212
|
singleLine: false,
|
|
9206
9213
|
inTable: false,
|
|
@@ -9854,7 +9861,7 @@ const stringifyTree = (root) => {
|
|
|
9854
9861
|
return body === "" ? "" : `${body}\n`;
|
|
9855
9862
|
};
|
|
9856
9863
|
//#endregion
|
|
9857
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
9864
|
+
//#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
|
|
9858
9865
|
/**
|
|
9859
9866
|
* The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
|
|
9860
9867
|
* 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
|
|
@@ -10230,7 +10237,7 @@ var Markdown = class Markdown {
|
|
|
10230
10237
|
static MarkdownFromString = Markdown.fromString();
|
|
10231
10238
|
};
|
|
10232
10239
|
//#endregion
|
|
10233
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.7.0_@effected+jsonc@0.8.
|
|
10240
|
+
//#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
|
|
10234
10241
|
/**
|
|
10235
10242
|
* The remark-ecosystem interop boundary: projection between this package's
|
|
10236
10243
|
* node classes and plain mdast JSON.
|
|
@@ -53884,9 +53891,7 @@ function getHighestReleaseType(releases) {
|
|
|
53884
53891
|
case "minor":
|
|
53885
53892
|
highestReleaseType = "minor";
|
|
53886
53893
|
break;
|
|
53887
|
-
case "patch":
|
|
53888
|
-
if (highestReleaseType === "none") highestReleaseType = "patch";
|
|
53889
|
-
break;
|
|
53894
|
+
case "patch": if (highestReleaseType === "none") highestReleaseType = "patch";
|
|
53890
53895
|
}
|
|
53891
53896
|
return highestReleaseType;
|
|
53892
53897
|
}
|
|
@@ -54451,6 +54456,8 @@ function makeReleasePlannerTest(fixed) {
|
|
|
54451
54456
|
* either shells out through `npx` (network) or to an ambient binary, so a
|
|
54452
54457
|
* fixture that names one passes or fails on what the machine happens to have
|
|
54453
54458
|
* installed rather than on this rewrite.
|
|
54459
|
+
*
|
|
54460
|
+
* @internal
|
|
54454
54461
|
*/
|
|
54455
54462
|
function withChangelogModules(config, changelogModules, phase) {
|
|
54456
54463
|
const unformatted = {
|
|
@@ -54471,7 +54478,11 @@ function withChangelogModules(config, changelogModules, phase) {
|
|
|
54471
54478
|
changelog: [changelogModules[configuredId], config.changelog[1]]
|
|
54472
54479
|
});
|
|
54473
54480
|
}
|
|
54474
|
-
/**
|
|
54481
|
+
/**
|
|
54482
|
+
* Extract the `## <version>` block (down to the next H2 or EOF) from a changelog.
|
|
54483
|
+
*
|
|
54484
|
+
* @internal
|
|
54485
|
+
*/
|
|
54475
54486
|
function extractVersionBlock(changelog, version) {
|
|
54476
54487
|
const lines = changelog.split("\n");
|
|
54477
54488
|
const start = lines.findIndex((l) => l.trim() === `## ${version}`);
|
|
@@ -55001,6 +55012,78 @@ const DependencyUpdateSchema = effect.Schema.Struct({
|
|
|
55001
55012
|
newVersion: effect.Schema.String
|
|
55002
55013
|
});
|
|
55003
55014
|
//#endregion
|
|
55015
|
+
//#region ../silk-effects/dist/dev/pkg/changesets/schemas/deps-regen.js
|
|
55016
|
+
/**
|
|
55017
|
+
* Result schemas for DepsRegen: the side-effect-free regen plan and the result
|
|
55018
|
+
* of applying it.
|
|
55019
|
+
*
|
|
55020
|
+
*/
|
|
55021
|
+
const RegenDeleteEntrySchema = effect.Schema.Struct({
|
|
55022
|
+
file: effect.Schema.String,
|
|
55023
|
+
package: effect.Schema.String
|
|
55024
|
+
}).annotate({ identifier: "RegenDeleteEntry" });
|
|
55025
|
+
/**
|
|
55026
|
+
* One dependency-diff row emitted by the deps-regen planner.
|
|
55027
|
+
*
|
|
55028
|
+
* @remarks
|
|
55029
|
+
* `computeWorkspaceDependencyDiffs` intentionally falls back to raw unresolved
|
|
55030
|
+
* specifier strings (`*`, `>=5.7.0`, `^1.2`, `latest`, etc.). This in-memory
|
|
55031
|
+
* plan schema therefore accepts any non-empty `from`/`to` cell instead of the
|
|
55032
|
+
* stricter changelog-table version pattern.
|
|
55033
|
+
*
|
|
55034
|
+
* @public
|
|
55035
|
+
*/
|
|
55036
|
+
const RegenDiffRowSchema = effect.Schema.Struct({
|
|
55037
|
+
dependency: NonEmptyString,
|
|
55038
|
+
type: DependencyTableTypeSchema,
|
|
55039
|
+
action: DependencyActionSchema,
|
|
55040
|
+
from: NonEmptyString,
|
|
55041
|
+
to: NonEmptyString
|
|
55042
|
+
}).annotate({ identifier: "RegenDiffRow" });
|
|
55043
|
+
const WorkspaceDependencyDiffPayloadSchema = effect.Schema.Struct({
|
|
55044
|
+
package: effect.Schema.String,
|
|
55045
|
+
relativePath: effect.Schema.String,
|
|
55046
|
+
rows: effect.Schema.Array(RegenDiffRowSchema).check(effect.Schema.isMinLength(1))
|
|
55047
|
+
}).annotate({ identifier: "WorkspaceDependencyDiffPayload" });
|
|
55048
|
+
const RegenWriteEntrySchema = effect.Schema.Struct({
|
|
55049
|
+
file: effect.Schema.String,
|
|
55050
|
+
package: effect.Schema.String,
|
|
55051
|
+
diff: WorkspaceDependencyDiffPayloadSchema
|
|
55052
|
+
}).annotate({ identifier: "RegenWriteEntry" });
|
|
55053
|
+
/**
|
|
55054
|
+
* A prose-only changeset that coexists with a deps-regen run (informational).
|
|
55055
|
+
*
|
|
55056
|
+
* @public
|
|
55057
|
+
*/
|
|
55058
|
+
const CoexistingChangesetSchema = effect.Schema.Struct({
|
|
55059
|
+
/** Absolute path of the untouched prose changeset. */
|
|
55060
|
+
file: effect.Schema.String,
|
|
55061
|
+
/** In-scope packages released by this changeset's frontmatter. */
|
|
55062
|
+
packages: effect.Schema.Array(effect.Schema.String)
|
|
55063
|
+
}).annotate({ identifier: "CoexistingChangeset" });
|
|
55064
|
+
/**
|
|
55065
|
+
* Complete side-effect-free deps-regen plan.
|
|
55066
|
+
*
|
|
55067
|
+
* @public
|
|
55068
|
+
*/
|
|
55069
|
+
const RegenPlanSchema = effect.Schema.Struct({
|
|
55070
|
+
toDelete: effect.Schema.Array(RegenDeleteEntrySchema),
|
|
55071
|
+
toWrite: effect.Schema.Array(RegenWriteEntrySchema),
|
|
55072
|
+
skippedMixed: effect.Schema.Array(effect.Schema.String),
|
|
55073
|
+
coexisting: effect.Schema.Array(CoexistingChangesetSchema)
|
|
55074
|
+
}).annotate({ identifier: "RegenPlan" });
|
|
55075
|
+
/**
|
|
55076
|
+
* Result of applying a {@link RegenPlan}.
|
|
55077
|
+
*
|
|
55078
|
+
* @public
|
|
55079
|
+
*/
|
|
55080
|
+
const RegenResultSchema = effect.Schema.Struct({
|
|
55081
|
+
deleted: effect.Schema.Array(effect.Schema.String),
|
|
55082
|
+
written: effect.Schema.Array(effect.Schema.String),
|
|
55083
|
+
skippedMixed: effect.Schema.Array(effect.Schema.String),
|
|
55084
|
+
coexisting: effect.Schema.Array(CoexistingChangesetSchema)
|
|
55085
|
+
}).annotate({ identifier: "RegenResult" });
|
|
55086
|
+
//#endregion
|
|
55004
55087
|
//#region ../silk-effects/dist/dev/pkg/changesets/schemas/release-plan.js
|
|
55005
55088
|
/**
|
|
55006
55089
|
* Result schemas for the {@link ReleasePlanner} service — the structured
|
|
@@ -55586,6 +55669,7 @@ const changelogFunctions = (/* @__PURE__ */ __exportAll({
|
|
|
55586
55669
|
ChangesetValidationError: () => ChangesetValidationError,
|
|
55587
55670
|
ClassificationReasonSchema: () => ClassificationReasonSchema,
|
|
55588
55671
|
ClassificationSchema: () => ClassificationSchema,
|
|
55672
|
+
CoexistingChangesetSchema: () => CoexistingChangesetSchema,
|
|
55589
55673
|
CommitHashSchema: () => CommitHashSchema,
|
|
55590
55674
|
ConfigInspector: () => ConfigInspector,
|
|
55591
55675
|
ConfigurationError: () => ConfigurationError,
|
|
@@ -55632,6 +55716,9 @@ const changelogFunctions = (/* @__PURE__ */ __exportAll({
|
|
|
55632
55716
|
PendingChangesetSchema: () => PendingChangesetSchema,
|
|
55633
55717
|
PositiveInteger: () => PositiveInteger,
|
|
55634
55718
|
PreviewReleaseSchema: () => PreviewReleaseSchema,
|
|
55719
|
+
RegenDiffRowSchema: () => RegenDiffRowSchema,
|
|
55720
|
+
RegenPlanSchema: () => RegenPlanSchema,
|
|
55721
|
+
RegenResultSchema: () => RegenResultSchema,
|
|
55635
55722
|
ReleasePlanError: () => ReleasePlanError,
|
|
55636
55723
|
ReleasePlanner: () => ReleasePlanner,
|
|
55637
55724
|
ReorderSectionsPlugin: () => ReorderSectionsPlugin,
|