@savvy-web/silk 3.12.0 → 3.13.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.
- package/changesets-changelog.cjs +105 -85
- package/changesets-changelog.d.cts +2 -2
- package/changesets-changelog.d.ts +2 -2
- package/changesets-changelog.js +106 -86
- package/changesets-markdownlint.cjs +105 -85
- package/changesets-markdownlint.d.cts +2 -2
- package/changesets-markdownlint.d.ts +2 -2
- package/changesets-markdownlint.js +106 -86
- package/package.json +9 -9
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
|
@@ -2042,7 +2042,7 @@ function validateChangesetOptions(input) {
|
|
|
2042
2042
|
})));
|
|
2043
2043
|
}
|
|
2044
2044
|
//#endregion
|
|
2045
|
-
//#region ../../node_modules/.pnpm/@changesets+get-github-info@1.0.
|
|
2045
|
+
//#region ../../node_modules/.pnpm/@changesets+get-github-info@1.0.1/node_modules/@changesets/get-github-info/dist/index.mjs
|
|
2046
2046
|
var import_dataloader = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Copyright (c) 2019-present, GraphQL Foundation
|
|
@@ -2272,7 +2272,12 @@ async function readEnv() {
|
|
|
2272
2272
|
GITHUB_TOKEN: process.env.GITHUB_TOKEN || (await readEnvFileCached()).GITHUB_TOKEN
|
|
2273
2273
|
};
|
|
2274
2274
|
}
|
|
2275
|
-
const GHDataLoader = new import_dataloader.default(batchLoad, {
|
|
2275
|
+
const GHDataLoader = new import_dataloader.default(batchLoad, {
|
|
2276
|
+
maxBatchSize: 50,
|
|
2277
|
+
cacheKeyFn(request) {
|
|
2278
|
+
return request.kind === "commit" ? `commit:${request.repo}:${request.commit}` : `pull:${request.repo}:${request.pull}`;
|
|
2279
|
+
}
|
|
2280
|
+
});
|
|
2276
2281
|
async function loadCommitData(options) {
|
|
2277
2282
|
return await GHDataLoader.load({
|
|
2278
2283
|
...options,
|
|
@@ -2929,7 +2934,7 @@ const DependencyTableRowSchema = effect.Schema.Struct({
|
|
|
2929
2934
|
*/
|
|
2930
2935
|
const DependencyTableSchema = effect.Schema.Array(DependencyTableRowSchema).check(effect.Schema.isMinLength(1));
|
|
2931
2936
|
//#endregion
|
|
2932
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
2937
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/MarkdownNode.js
|
|
2933
2938
|
/**
|
|
2934
2939
|
* A single point in a source document: 1-based `line` and `column`, 0-based
|
|
2935
2940
|
* `offset`.
|
|
@@ -3730,7 +3735,7 @@ effect.Schema.suspend(() => effect.Schema.Union([
|
|
|
3730
3735
|
TableContent
|
|
3731
3736
|
]));
|
|
3732
3737
|
//#endregion
|
|
3733
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
3738
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/frontmatter.js
|
|
3734
3739
|
const FENCES = /* @__PURE__ */ new Map([
|
|
3735
3740
|
["---", {
|
|
3736
3741
|
format: "yaml",
|
|
@@ -3784,7 +3789,7 @@ const scanFrontmatter = (lines, text) => {
|
|
|
3784
3789
|
return null;
|
|
3785
3790
|
};
|
|
3786
3791
|
//#endregion
|
|
3787
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
3792
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncNode.js
|
|
3788
3793
|
/**
|
|
3789
3794
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
3790
3795
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -3959,7 +3964,7 @@ function evaluateNode(node, depth) {
|
|
|
3959
3964
|
}
|
|
3960
3965
|
}
|
|
3961
3966
|
//#endregion
|
|
3962
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
3967
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/scanner.js
|
|
3963
3968
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
3964
3969
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
3965
3970
|
const isDigit$2 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -4260,7 +4265,7 @@ const createScanner$1 = (text, ignoreTrivia = false) => {
|
|
|
4260
4265
|
};
|
|
4261
4266
|
};
|
|
4262
4267
|
//#endregion
|
|
4263
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4268
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/skip.js
|
|
4264
4269
|
/**
|
|
4265
4270
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
4266
4271
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -4290,7 +4295,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
4290
4295
|
return end;
|
|
4291
4296
|
};
|
|
4292
4297
|
//#endregion
|
|
4293
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4298
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/parser.js
|
|
4294
4299
|
/**
|
|
4295
4300
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
4296
4301
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -4703,7 +4708,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
4703
4708
|
};
|
|
4704
4709
|
};
|
|
4705
4710
|
//#endregion
|
|
4706
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
4711
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/Jsonc.js
|
|
4707
4712
|
/**
|
|
4708
4713
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
4709
4714
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -5307,7 +5312,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
5307
5312
|
}
|
|
5308
5313
|
};
|
|
5309
5314
|
//#endregion
|
|
5310
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5315
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/internal/navigate.js
|
|
5311
5316
|
/**
|
|
5312
5317
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
5313
5318
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -5434,7 +5439,7 @@ function navigate(text, path) {
|
|
|
5434
5439
|
return { _tag: "NoOp" };
|
|
5435
5440
|
}
|
|
5436
5441
|
//#endregion
|
|
5437
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5442
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.9.0_effect@4.0.0-rc.112/node_modules/@effected/jsonc/JsoncModifier.js
|
|
5438
5443
|
/**
|
|
5439
5444
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
5440
5445
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -5562,7 +5567,7 @@ var JsoncModifier = class {
|
|
|
5562
5567
|
});
|
|
5563
5568
|
};
|
|
5564
5569
|
//#endregion
|
|
5565
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5570
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/carriers.js
|
|
5566
5571
|
/**
|
|
5567
5572
|
* P1's error-code vocabulary. Widens as later phases add parse-error kinds;
|
|
5568
5573
|
* P1 registers exactly one, the hardening-guard trip.
|
|
@@ -5602,7 +5607,7 @@ var GuardExceeded$1 = class extends Error {
|
|
|
5602
5607
|
/** Narrows `unknown` to {@link GuardExceeded}; never a bare `instanceof` at a call site. */
|
|
5603
5608
|
const isGuardExceeded$1 = (u) => u instanceof GuardExceeded$1;
|
|
5604
5609
|
//#endregion
|
|
5605
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5610
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/MarkdownDiagnostic.js
|
|
5606
5611
|
/**
|
|
5607
5612
|
* Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
|
|
5608
5613
|
* registers exactly the hardening-guard trip; later phases widen the union
|
|
@@ -5682,7 +5687,7 @@ function lineChar(text, offset) {
|
|
|
5682
5687
|
};
|
|
5683
5688
|
}
|
|
5684
5689
|
//#endregion
|
|
5685
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5690
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockTypes.js
|
|
5686
5691
|
/** Narrow materialized children to the flow content most constructs contain. */
|
|
5687
5692
|
const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
|
|
5688
5693
|
/** Narrow materialized children to the list items a list contains. */
|
|
@@ -5707,7 +5712,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
|
|
|
5707
5712
|
data: {}
|
|
5708
5713
|
});
|
|
5709
5714
|
//#endregion
|
|
5710
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5715
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/preprocess.js
|
|
5711
5716
|
/**
|
|
5712
5717
|
* Split `text` into lines, preserving each line's absolute start offset.
|
|
5713
5718
|
*
|
|
@@ -5761,7 +5766,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
|
|
|
5761
5766
|
*/
|
|
5762
5767
|
const columnsToNextTabStop = (column) => 4 - column % 4;
|
|
5763
5768
|
//#endregion
|
|
5764
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5769
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/htmlTags.js
|
|
5765
5770
|
const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
|
|
5766
5771
|
/** An opening tag, with any attributes and an optional self-closing slash. */
|
|
5767
5772
|
const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
|
|
@@ -5772,7 +5777,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
|
|
|
5772
5777
|
/** {@link HTMLTAG}, anchored for matching at a cursor. */
|
|
5773
5778
|
const reHtmlTag = new RegExp(`^${HTMLTAG}`);
|
|
5774
5779
|
//#endregion
|
|
5775
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5780
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
|
|
5776
5781
|
const C_LESSTHAN$3 = 60;
|
|
5777
5782
|
const reHtmlBlockOpen = [
|
|
5778
5783
|
/./,
|
|
@@ -5838,7 +5843,7 @@ const htmlBlockStart = {
|
|
|
5838
5843
|
}
|
|
5839
5844
|
};
|
|
5840
5845
|
//#endregion
|
|
5841
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5846
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/atxHeading.js
|
|
5842
5847
|
const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
|
|
5843
5848
|
const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
|
|
5844
5849
|
const reClosingHashes = /[ \t]+#+[ \t]*$/;
|
|
@@ -5888,7 +5893,7 @@ const atxHeadingStart = {
|
|
|
5888
5893
|
}
|
|
5889
5894
|
};
|
|
5890
5895
|
//#endregion
|
|
5891
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5896
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/blockquote.js
|
|
5892
5897
|
const C_GREATERTHAN = 62;
|
|
5893
5898
|
/** Blockquote: continues while each line carries its `>` marker. */
|
|
5894
5899
|
const blockquoteConstruct = {
|
|
@@ -5922,11 +5927,11 @@ const blockquoteStart = {
|
|
|
5922
5927
|
}
|
|
5923
5928
|
};
|
|
5924
5929
|
//#endregion
|
|
5925
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5930
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/entityMap.js
|
|
5926
5931
|
/** The HTML5 named character references, keyed without `&` or `;`. */
|
|
5927
5932
|
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\",\"\"]]"));
|
|
5928
5933
|
//#endregion
|
|
5929
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5934
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/entities.js
|
|
5930
5935
|
/** The largest code point Unicode defines. */
|
|
5931
5936
|
const MAX_CODE_POINT = 1114111;
|
|
5932
5937
|
/**
|
|
@@ -5948,7 +5953,7 @@ const decodeEntity = (entity) => {
|
|
|
5948
5953
|
return String.fromCodePoint(code);
|
|
5949
5954
|
};
|
|
5950
5955
|
//#endregion
|
|
5951
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5956
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/unescape.js
|
|
5952
5957
|
/** The punctuation set a backslash may escape, per the spec. */
|
|
5953
5958
|
const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
5954
5959
|
/** One entity, in any of the three spec forms. */
|
|
@@ -5962,7 +5967,7 @@ const unescapeChar = (source) => {
|
|
|
5962
5967
|
/** Replace every backslash escape and character reference with its literal. */
|
|
5963
5968
|
const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
|
|
5964
5969
|
//#endregion
|
|
5965
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
5970
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/code.js
|
|
5966
5971
|
const reBlankLine = /^[ \t]*$/;
|
|
5967
5972
|
const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
|
|
5968
5973
|
/**
|
|
@@ -6046,7 +6051,7 @@ const codeConstruct = {
|
|
|
6046
6051
|
}
|
|
6047
6052
|
};
|
|
6048
6053
|
//#endregion
|
|
6049
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6054
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/document.js
|
|
6050
6055
|
/** The document root: contains everything except a bare list item. */
|
|
6051
6056
|
const documentConstruct = {
|
|
6052
6057
|
type: "document",
|
|
@@ -6059,7 +6064,7 @@ const documentConstruct = {
|
|
|
6059
6064
|
})
|
|
6060
6065
|
};
|
|
6061
6066
|
//#endregion
|
|
6062
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6067
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/fencedCode.js
|
|
6063
6068
|
const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
|
|
6064
6069
|
const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
|
|
6065
6070
|
/** The fenced-code block start: three or more backticks or tildes. */
|
|
@@ -6083,7 +6088,7 @@ const fencedCodeStart = {
|
|
|
6083
6088
|
}
|
|
6084
6089
|
};
|
|
6085
6090
|
//#endregion
|
|
6086
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6091
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/patterns.js
|
|
6087
6092
|
const stickyCache = /* @__PURE__ */ new WeakMap();
|
|
6088
6093
|
const globalCache = /* @__PURE__ */ new WeakMap();
|
|
6089
6094
|
const clone = (pattern, flag, dropCaret) => {
|
|
@@ -6107,7 +6112,7 @@ const globalOf = (pattern) => {
|
|
|
6107
6112
|
return made;
|
|
6108
6113
|
};
|
|
6109
6114
|
//#endregion
|
|
6110
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6115
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/references.js
|
|
6111
6116
|
const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
6112
6117
|
const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
|
|
6113
6118
|
const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
|
|
@@ -6281,7 +6286,7 @@ const parseReference = (text) => {
|
|
|
6281
6286
|
};
|
|
6282
6287
|
};
|
|
6283
6288
|
//#endregion
|
|
6284
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6289
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
|
|
6285
6290
|
/**
|
|
6286
6291
|
* `_scan_footnote_definition` from `src/scanners.re`:
|
|
6287
6292
|
*
|
|
@@ -6358,7 +6363,7 @@ const footnoteDefinitionStart = {
|
|
|
6358
6363
|
}
|
|
6359
6364
|
};
|
|
6360
6365
|
//#endregion
|
|
6361
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6366
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/indentedCode.js
|
|
6362
6367
|
/** The indented-code block start: four columns of indentation. */
|
|
6363
6368
|
const indentedCodeStart = {
|
|
6364
6369
|
name: "indentedCode",
|
|
@@ -6372,7 +6377,7 @@ const indentedCodeStart = {
|
|
|
6372
6377
|
}
|
|
6373
6378
|
};
|
|
6374
6379
|
//#endregion
|
|
6375
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6380
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/segments.js
|
|
6376
6381
|
/**
|
|
6377
6382
|
* The absolute source offset of `textIndex` within a segmented content run.
|
|
6378
6383
|
*
|
|
@@ -6406,7 +6411,7 @@ const sliceWithSegments = (segments, from, to) => {
|
|
|
6406
6411
|
return sliced;
|
|
6407
6412
|
};
|
|
6408
6413
|
//#endregion
|
|
6409
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6414
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
|
|
6410
6415
|
const C_OPEN_BRACKET$1 = 91;
|
|
6411
6416
|
/**
|
|
6412
6417
|
* Split every leading link reference definition out of `block`, inserting one
|
|
@@ -6471,7 +6476,7 @@ const definitionConstruct = {
|
|
|
6471
6476
|
}
|
|
6472
6477
|
};
|
|
6473
6478
|
//#endregion
|
|
6474
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6479
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/list.js
|
|
6475
6480
|
const reBulletListMarker = /^[*+-]/;
|
|
6476
6481
|
const reOrderedListMarker = /^(\d{1,9})([.)])/;
|
|
6477
6482
|
const reNonSpace$1 = /[^ \t\f\v\r\n]/;
|
|
@@ -6624,7 +6629,7 @@ const listItemStart = {
|
|
|
6624
6629
|
}
|
|
6625
6630
|
};
|
|
6626
6631
|
//#endregion
|
|
6627
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6632
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/paragraph.js
|
|
6628
6633
|
/** Paragraph: absorbs lines until a blank one, and contains nothing. */
|
|
6629
6634
|
const paragraphConstruct = {
|
|
6630
6635
|
type: "paragraph",
|
|
@@ -6646,7 +6651,7 @@ const paragraphConstruct = {
|
|
|
6646
6651
|
}
|
|
6647
6652
|
};
|
|
6648
6653
|
//#endregion
|
|
6649
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6654
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/setextHeading.js
|
|
6650
6655
|
const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
|
|
6651
6656
|
/** The setext heading block start: a run of `=` or `-` under a paragraph. */
|
|
6652
6657
|
const setextHeadingStart = {
|
|
@@ -6666,7 +6671,7 @@ const setextHeadingStart = {
|
|
|
6666
6671
|
}
|
|
6667
6672
|
};
|
|
6668
6673
|
//#endregion
|
|
6669
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
6674
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/table.js
|
|
6670
6675
|
/**
|
|
6671
6676
|
* Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
|
|
6672
6677
|
* invents to pad short rows, which is what stops a wide header followed by a
|
|
@@ -7037,7 +7042,7 @@ const tableCellConstruct = {
|
|
|
7037
7042
|
}
|
|
7038
7043
|
};
|
|
7039
7044
|
//#endregion
|
|
7040
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7045
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/taskListItem.js
|
|
7041
7046
|
/**
|
|
7042
7047
|
* `_scan_tasklist`, as the generated scanner accepts it.
|
|
7043
7048
|
*
|
|
@@ -7071,7 +7076,7 @@ const taskListItemStart = {
|
|
|
7071
7076
|
}
|
|
7072
7077
|
};
|
|
7073
7078
|
//#endregion
|
|
7074
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7079
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
|
|
7075
7080
|
const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
|
|
7076
7081
|
const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
|
|
7077
7082
|
/** Thematic break: one line, no children. */
|
|
@@ -7102,7 +7107,7 @@ const thematicBreakStart = {
|
|
|
7102
7107
|
}
|
|
7103
7108
|
};
|
|
7104
7109
|
//#endregion
|
|
7105
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7110
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockRegistry.js
|
|
7106
7111
|
const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
|
|
7107
7112
|
const commonmarkDialect$1 = {
|
|
7108
7113
|
constructs: constructTable([
|
|
@@ -7174,7 +7179,7 @@ const blockDialect = (dialect) => {
|
|
|
7174
7179
|
return found;
|
|
7175
7180
|
};
|
|
7176
7181
|
//#endregion
|
|
7177
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7182
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/lineIndex.js
|
|
7178
7183
|
/**
|
|
7179
7184
|
* A precomputed index of line-start offsets over a fixed source text,
|
|
7180
7185
|
* answering `positionAt(offset)` in `O(log n)` via binary search rather than
|
|
@@ -7248,7 +7253,7 @@ var LineIndex = class LineIndex {
|
|
|
7248
7253
|
}
|
|
7249
7254
|
};
|
|
7250
7255
|
//#endregion
|
|
7251
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7256
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineNode.js
|
|
7252
7257
|
/** Open a node with no links. */
|
|
7253
7258
|
const makeInlineNode = (type, start, end, value = "") => ({
|
|
7254
7259
|
type,
|
|
@@ -7300,7 +7305,7 @@ const childrenOf = (node) => {
|
|
|
7300
7305
|
return children;
|
|
7301
7306
|
};
|
|
7302
7307
|
//#endregion
|
|
7303
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7308
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/emphasis.js
|
|
7304
7309
|
const C_ASTERISK$1 = 42;
|
|
7305
7310
|
const C_UNDERSCORE$1 = 95;
|
|
7306
7311
|
const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
|
|
@@ -7377,7 +7382,7 @@ const emphasisConstruct = {
|
|
|
7377
7382
|
parse: (scanner) => handleDelim(scanner, scanner.peek())
|
|
7378
7383
|
};
|
|
7379
7384
|
//#endregion
|
|
7380
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7385
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/strikethrough.js
|
|
7381
7386
|
/**
|
|
7382
7387
|
* Consume a `~` run as literal text and, when it is a viable one- or
|
|
7383
7388
|
* two-tilde run, push it onto the shared delimiter stack.
|
|
@@ -7451,7 +7456,7 @@ const strikethroughConstruct = {
|
|
|
7451
7456
|
parse: (scanner) => handleTilde(scanner)
|
|
7452
7457
|
};
|
|
7453
7458
|
//#endregion
|
|
7454
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7459
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/autolink.js
|
|
7455
7460
|
const C_LESSTHAN$1 = 60;
|
|
7456
7461
|
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])?)*)>/;
|
|
7457
7462
|
const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
|
|
@@ -7483,7 +7488,7 @@ const autolinkConstruct = {
|
|
|
7483
7488
|
}
|
|
7484
7489
|
};
|
|
7485
7490
|
//#endregion
|
|
7486
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7491
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
|
|
7487
7492
|
const C_LOWER_W = 119;
|
|
7488
7493
|
const C_COLON = 58;
|
|
7489
7494
|
/** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
|
|
@@ -7853,7 +7858,7 @@ const linkifyEmails = (root) => {
|
|
|
7853
7858
|
}
|
|
7854
7859
|
};
|
|
7855
7860
|
//#endregion
|
|
7856
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7861
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/codeSpan.js
|
|
7857
7862
|
const C_BACKTICK$1 = 96;
|
|
7858
7863
|
const reTicksHere = /^`+/;
|
|
7859
7864
|
const reNewline = /\n/gm;
|
|
@@ -7881,7 +7886,7 @@ const codeSpanConstruct = {
|
|
|
7881
7886
|
}
|
|
7882
7887
|
};
|
|
7883
7888
|
//#endregion
|
|
7884
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7889
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/entity.js
|
|
7885
7890
|
const C_AMPERSAND = 38;
|
|
7886
7891
|
const reEntityHere = new RegExp(`^${ENTITY}`, "i");
|
|
7887
7892
|
/** A named, decimal or hexadecimal character reference. */
|
|
@@ -7897,7 +7902,7 @@ const entityConstruct = {
|
|
|
7897
7902
|
}
|
|
7898
7903
|
};
|
|
7899
7904
|
//#endregion
|
|
7900
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7905
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/escape.js
|
|
7901
7906
|
const C_BACKSLASH = 92;
|
|
7902
7907
|
const C_NEWLINE$1 = 10;
|
|
7903
7908
|
const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
|
|
@@ -7926,7 +7931,7 @@ const escapeConstruct = {
|
|
|
7926
7931
|
}
|
|
7927
7932
|
};
|
|
7928
7933
|
//#endregion
|
|
7929
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
7934
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/link.js
|
|
7930
7935
|
const C_BANG = 33;
|
|
7931
7936
|
const C_CARET$1 = 94;
|
|
7932
7937
|
const C_OPEN_BRACKET = 91;
|
|
@@ -8133,7 +8138,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
|
|
|
8133
8138
|
/** `]` — closes a link or image, or stays literal. The CommonMark spelling. */
|
|
8134
8139
|
const linkCloseConstruct = makeLinkCloseConstruct();
|
|
8135
8140
|
//#endregion
|
|
8136
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8141
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
|
|
8137
8142
|
const C_CARET = 94;
|
|
8138
8143
|
/**
|
|
8139
8144
|
* Whether the bracket that just closed looks like `[^...]` with something
|
|
@@ -8190,7 +8195,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
|
|
|
8190
8195
|
*/
|
|
8191
8196
|
const gfmImageOpenConstruct = makeImageOpenConstruct(false);
|
|
8192
8197
|
//#endregion
|
|
8193
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8198
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/lineBreak.js
|
|
8194
8199
|
const C_NEWLINE = 10;
|
|
8195
8200
|
const reInitialSpace = /^ */;
|
|
8196
8201
|
/** A soft or hard line break. */
|
|
@@ -8211,7 +8216,7 @@ const lineBreakConstruct = {
|
|
|
8211
8216
|
}
|
|
8212
8217
|
};
|
|
8213
8218
|
//#endregion
|
|
8214
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8219
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/rawHtml.js
|
|
8215
8220
|
const C_LESSTHAN = 60;
|
|
8216
8221
|
/** The raw-HTML forms that scan forward for a fixed closing sequence. */
|
|
8217
8222
|
const UNTERMINATED_FORMS = [
|
|
@@ -8233,7 +8238,7 @@ const rawHtmlConstruct = {
|
|
|
8233
8238
|
}
|
|
8234
8239
|
};
|
|
8235
8240
|
//#endregion
|
|
8236
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8241
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlines/text.js
|
|
8237
8242
|
const reMain = /^[^\n`[\]\\!<&*_'"]+/;
|
|
8238
8243
|
const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
|
|
8239
8244
|
/** Consume a run of ordinary characters, stopping before any construct's. */
|
|
@@ -8253,7 +8258,7 @@ const textConstruct = runConstruct("text", reMain);
|
|
|
8253
8258
|
/** Ordinary text under `gfm`, which has three more characters to yield to. */
|
|
8254
8259
|
const gfmTextConstruct = runConstruct("text", reMainGfm);
|
|
8255
8260
|
//#endregion
|
|
8256
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8261
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineRegistry.js
|
|
8257
8262
|
const triggerTable = (constructs) => {
|
|
8258
8263
|
const table = /* @__PURE__ */ new Map();
|
|
8259
8264
|
for (const construct of constructs) for (const trigger of construct.triggers) {
|
|
@@ -8306,7 +8311,7 @@ const inlineDialect = (dialect) => {
|
|
|
8306
8311
|
return found;
|
|
8307
8312
|
};
|
|
8308
8313
|
//#endregion
|
|
8309
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8314
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/inlineParser.js
|
|
8310
8315
|
const C_UNDERSCORE = 95;
|
|
8311
8316
|
const C_ASTERISK = 42;
|
|
8312
8317
|
const reTrailingSpaces = / +$/;
|
|
@@ -8700,7 +8705,7 @@ var InlineParser = class {
|
|
|
8700
8705
|
*/
|
|
8701
8706
|
const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
|
|
8702
8707
|
//#endregion
|
|
8703
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8708
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/rawInline.js
|
|
8704
8709
|
const reWhitespace = /\s/;
|
|
8705
8710
|
const reCmarkSpace = /[ \t\n\r]/;
|
|
8706
8711
|
/**
|
|
@@ -8755,7 +8760,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
|
|
|
8755
8760
|
};
|
|
8756
8761
|
};
|
|
8757
8762
|
//#endregion
|
|
8758
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
8763
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/blockParser.js
|
|
8759
8764
|
/** Upstream's cheap pre-filter: a line that cannot start any block. */
|
|
8760
8765
|
const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
|
|
8761
8766
|
var BlockParser = class {
|
|
@@ -9162,7 +9167,7 @@ var BlockParser = class {
|
|
|
9162
9167
|
*/
|
|
9163
9168
|
const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
|
|
9164
9169
|
//#endregion
|
|
9165
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
9170
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/phrasing.js
|
|
9166
9171
|
const EMPTY_REFMAP = /* @__PURE__ */ new Map();
|
|
9167
9172
|
const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
|
|
9168
9173
|
/**
|
|
@@ -9211,7 +9216,7 @@ const parsePhrasingText = (text, dialect) => {
|
|
|
9211
9216
|
}, EMPTY_REFMAP, positionOf, dialect, EMPTY_FOOTNOTE_LABELS);
|
|
9212
9217
|
};
|
|
9213
9218
|
//#endregion
|
|
9214
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
9219
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/internal/stringify.js
|
|
9215
9220
|
const FLOW_CONTEXT = {
|
|
9216
9221
|
singleLine: false,
|
|
9217
9222
|
inTable: false,
|
|
@@ -9907,7 +9912,7 @@ const stringifyTree = (root) => {
|
|
|
9907
9912
|
return body === "" ? "" : `${body}\n`;
|
|
9908
9913
|
};
|
|
9909
9914
|
//#endregion
|
|
9910
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
9915
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/Markdown.js
|
|
9911
9916
|
/**
|
|
9912
9917
|
* The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
|
|
9913
9918
|
* 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
|
|
@@ -10283,7 +10288,7 @@ var Markdown = class Markdown {
|
|
|
10283
10288
|
static MarkdownFromString = Markdown.fromString();
|
|
10284
10289
|
};
|
|
10285
10290
|
//#endregion
|
|
10286
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.
|
|
10291
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.9.0_@effected+jsonc@0.9.0_effect@4.0.0-rc.112__@effected+toml@0.5._1278c643ab579762a4c5c51bf0d90317/node_modules/@effected/markdown/Mdast.js
|
|
10287
10292
|
/**
|
|
10288
10293
|
* The remark-ecosystem interop boundary: projection between this package's
|
|
10289
10294
|
* node classes and plain mdast JSON.
|
|
@@ -30939,7 +30944,7 @@ function parseCommitMessage(message) {
|
|
|
30939
30944
|
return { description: message };
|
|
30940
30945
|
}
|
|
30941
30946
|
//#endregion
|
|
30942
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
30947
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/IssueReferences.js
|
|
30943
30948
|
/**
|
|
30944
30949
|
* GitHub's closing-keyword issue-reference grammar, as pure functions.
|
|
30945
30950
|
*
|
|
@@ -30994,7 +30999,7 @@ const KEYWORDS = CLOSING_KEYWORDS.join("|");
|
|
|
30994
30999
|
new RegExp(`\\b(${KEYWORDS})\\s+#(\\d+)`, "gi");
|
|
30995
31000
|
new RegExp(`^(${KEYWORDS}):?[ \\t]+#(\\d+)$`, "i");
|
|
30996
31001
|
//#endregion
|
|
30997
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
31002
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/ClosingList.js
|
|
30998
31003
|
/**
|
|
30999
31004
|
* The closing-list dialect: one whole line naming several issues at once.
|
|
31000
31005
|
*
|
|
@@ -31312,7 +31317,7 @@ const harvestReferenceLists = (text) => {
|
|
|
31312
31317
|
return lists;
|
|
31313
31318
|
};
|
|
31314
31319
|
//#endregion
|
|
31315
|
-
//#region ../../node_modules/.pnpm/@effected+github-references@0.
|
|
31320
|
+
//#region ../../node_modules/.pnpm/@effected+github-references@0.2.0_effect@4.0.0-rc.112/node_modules/@effected/github-references/KeywordFamily.js
|
|
31316
31321
|
/**
|
|
31317
31322
|
* The projection table IS the totality proof: `Record` over the union of
|
|
31318
31323
|
* both keyword types makes a keyword added to either constant without an
|
|
@@ -33145,6 +33150,18 @@ const ContributorFootnotesPlugin = (options) => {
|
|
|
33145
33150
|
};
|
|
33146
33151
|
//#endregion
|
|
33147
33152
|
//#region ../silk-effects/dist/dev/pkg/changesets/remark/plugins/maintenance-note.js
|
|
33153
|
+
/**
|
|
33154
|
+
* Placeholder sentence `@changesets/apply-release-plan` (>= 8.1.0) emits as the
|
|
33155
|
+
* body of a version block that would otherwise render as a bare heading. Older
|
|
33156
|
+
* engine versions left such a block structurally empty.
|
|
33157
|
+
*/
|
|
33158
|
+
const ENGINE_PLACEHOLDER = "No changes in this release.";
|
|
33159
|
+
/** True when the block's only content is the engine's empty-release placeholder. */
|
|
33160
|
+
function isPlaceholderOnly(tree, block) {
|
|
33161
|
+
if (block.endIndex - block.startIndex !== 1) return false;
|
|
33162
|
+
const node = tree.children[block.startIndex];
|
|
33163
|
+
return node.type === "paragraph" && toString(node).trim() === ENGINE_PLACEHOLDER;
|
|
33164
|
+
}
|
|
33148
33165
|
function buildNoteChildren(reason) {
|
|
33149
33166
|
if (reason.kind === "unspecified" || reason.triggers.length === 0) return [{
|
|
33150
33167
|
type: "text",
|
|
@@ -33175,7 +33192,8 @@ const MaintenanceNotePlugin = (options) => {
|
|
|
33175
33192
|
return (tree) => {
|
|
33176
33193
|
const block = getVersionBlocks(tree).find((b) => getHeadingText$1(tree.children[b.headingIndex]) === options.version);
|
|
33177
33194
|
if (!block) return;
|
|
33178
|
-
|
|
33195
|
+
const placeholderOnly = isPlaceholderOnly(tree, block);
|
|
33196
|
+
if (block.endIndex > block.startIndex && !placeholderOnly) return;
|
|
33179
33197
|
const heading = {
|
|
33180
33198
|
type: "heading",
|
|
33181
33199
|
depth: 3,
|
|
@@ -33197,7 +33215,7 @@ const MaintenanceNotePlugin = (options) => {
|
|
|
33197
33215
|
}]
|
|
33198
33216
|
}]
|
|
33199
33217
|
};
|
|
33200
|
-
tree.children.splice(block.startIndex, 0, heading, list);
|
|
33218
|
+
tree.children.splice(block.startIndex, placeholderOnly ? 1 : 0, heading, list);
|
|
33201
33219
|
};
|
|
33202
33220
|
};
|
|
33203
33221
|
//#endregion
|
|
@@ -33797,7 +33815,7 @@ _effected_templates.SectionId.make({
|
|
|
33797
33815
|
commentStyle: _effected_templates.CommentStyle.hash
|
|
33798
33816
|
});
|
|
33799
33817
|
//#endregion
|
|
33800
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33818
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/limits.js
|
|
33801
33819
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
33802
33820
|
const MAX_PATTERN_LENGTH = 65536;
|
|
33803
33821
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -33831,7 +33849,7 @@ const assertCap = (name, value) => {
|
|
|
33831
33849
|
return value;
|
|
33832
33850
|
};
|
|
33833
33851
|
//#endregion
|
|
33834
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33852
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/unescape.js
|
|
33835
33853
|
/**
|
|
33836
33854
|
* Un-escape a string that has been escaped with `escape`.
|
|
33837
33855
|
*
|
|
@@ -33854,11 +33872,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
33854
33872
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
33855
33873
|
};
|
|
33856
33874
|
//#endregion
|
|
33857
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33875
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/types.js
|
|
33858
33876
|
/** The globstar marker in a compiled pattern set. */
|
|
33859
33877
|
const GLOBSTAR = Symbol("globstar **");
|
|
33860
33878
|
//#endregion
|
|
33861
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33879
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/escape.js
|
|
33862
33880
|
/**
|
|
33863
33881
|
* Escape all magic characters in a glob pattern.
|
|
33864
33882
|
*
|
|
@@ -33876,13 +33894,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
33876
33894
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
33877
33895
|
};
|
|
33878
33896
|
//#endregion
|
|
33879
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33897
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
33880
33898
|
const assertValidPattern = (pattern) => {
|
|
33881
33899
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
33882
33900
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
33883
33901
|
};
|
|
33884
33902
|
//#endregion
|
|
33885
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
33903
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpressions.js
|
|
33886
33904
|
const posixClasses = {
|
|
33887
33905
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
33888
33906
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -34005,7 +34023,7 @@ const parseClass = (glob, position) => {
|
|
|
34005
34023
|
];
|
|
34006
34024
|
};
|
|
34007
34025
|
//#endregion
|
|
34008
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34026
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/ast.js
|
|
34009
34027
|
const types = /* @__PURE__ */ new Set([
|
|
34010
34028
|
"!",
|
|
34011
34029
|
"?",
|
|
@@ -34522,7 +34540,7 @@ var AST = class AST {
|
|
|
34522
34540
|
}
|
|
34523
34541
|
};
|
|
34524
34542
|
//#endregion
|
|
34525
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34543
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/balancedMatch.js
|
|
34526
34544
|
const maybeMatch = (reg, str) => {
|
|
34527
34545
|
const m = str.match(reg);
|
|
34528
34546
|
return m ? m[0] : null;
|
|
@@ -34580,7 +34598,7 @@ const range = (a, b, str) => {
|
|
|
34580
34598
|
return result;
|
|
34581
34599
|
};
|
|
34582
34600
|
//#endregion
|
|
34583
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34601
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/braceExpansion.js
|
|
34584
34602
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
34585
34603
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
34586
34604
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -34727,7 +34745,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
34727
34745
|
}
|
|
34728
34746
|
}
|
|
34729
34747
|
//#endregion
|
|
34730
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
34748
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/internal/minimatch.js
|
|
34731
34749
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
34732
34750
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
34733
34751
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -35300,7 +35318,7 @@ var Minimatch = class {
|
|
|
35300
35318
|
}
|
|
35301
35319
|
};
|
|
35302
35320
|
//#endregion
|
|
35303
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
35321
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.5.0_effect@4.0.0-rc.112/node_modules/@effected/glob/GlobPattern.js
|
|
35304
35322
|
/**
|
|
35305
35323
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
35306
35324
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -35579,7 +35597,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
35579
35597
|
})));
|
|
35580
35598
|
};
|
|
35581
35599
|
//#endregion
|
|
35582
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
35600
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.6.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Descend.js
|
|
35583
35601
|
/**
|
|
35584
35602
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
35585
35603
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -35714,7 +35732,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
35714
35732
|
return results;
|
|
35715
35733
|
});
|
|
35716
35734
|
//#endregion
|
|
35717
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
35735
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.6.0_@effected+glob@0.5.0_effect@4.0.0-rc.112__effect@4.0.0-rc.112/node_modules/@effected/walker/Expand.js
|
|
35718
35736
|
/**
|
|
35719
35737
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
35720
35738
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -51431,7 +51449,7 @@ var InternalError = class extends Error {
|
|
|
51431
51449
|
}
|
|
51432
51450
|
};
|
|
51433
51451
|
//#endregion
|
|
51434
|
-
//#region ../../node_modules/.pnpm/@changesets+git@4.0.
|
|
51452
|
+
//#region ../../node_modules/.pnpm/@changesets+git@4.0.1/node_modules/@changesets/git/dist/index.mjs
|
|
51435
51453
|
async function getDivergedCommit(cwd, ref) {
|
|
51436
51454
|
const cmd = await exec("git", [
|
|
51437
51455
|
"merge-base",
|
|
@@ -51454,7 +51472,7 @@ async function getCommitsThatAddFiles(gitPaths, { cwd, short = false }) {
|
|
|
51454
51472
|
const commitInfos = await Promise.all(remaining.map(async (gitPath) => {
|
|
51455
51473
|
const [commitSha, parentSha] = (await exec("git", [
|
|
51456
51474
|
"log",
|
|
51457
|
-
"--diff-filter=
|
|
51475
|
+
"--diff-filter=AC",
|
|
51458
51476
|
"--follow",
|
|
51459
51477
|
"--max-count=1",
|
|
51460
51478
|
short ? "--pretty=format:%h:%p" : "--pretty=format:%H:%p",
|
|
@@ -53586,7 +53604,7 @@ function applyEdits(text, edits) {
|
|
|
53586
53604
|
return text;
|
|
53587
53605
|
}
|
|
53588
53606
|
//#endregion
|
|
53589
|
-
//#region ../../node_modules/.pnpm/@changesets+apply-release-plan@8.
|
|
53607
|
+
//#region ../../node_modules/.pnpm/@changesets+apply-release-plan@8.1.0/node_modules/@changesets/apply-release-plan/dist/index.mjs
|
|
53590
53608
|
/**
|
|
53591
53609
|
* A simple JSON editing utility that preserves formatting. They specified operation keys
|
|
53592
53610
|
* must exist in the JSON for this implementation.
|
|
@@ -53696,12 +53714,14 @@ async function getChangelogEntry(cwd, release, releases, changesets, changelogFu
|
|
|
53696
53714
|
minor: await Promise.all(changelogLines.minor),
|
|
53697
53715
|
patch: await Promise.all(changelogLines.patch)
|
|
53698
53716
|
};
|
|
53699
|
-
|
|
53717
|
+
const renderedLines = [
|
|
53700
53718
|
`## ${release.newVersion}`,
|
|
53701
53719
|
generateMarkdownForVersionType("major", resolvedChangelogLines.major),
|
|
53702
53720
|
generateMarkdownForVersionType("minor", resolvedChangelogLines.minor),
|
|
53703
53721
|
generateMarkdownForVersionType("patch", resolvedChangelogLines.patch)
|
|
53704
|
-
].filter((line) => line)
|
|
53722
|
+
].filter((line) => line);
|
|
53723
|
+
if (renderedLines.length === 1) renderedLines.push("No changes in this release.");
|
|
53724
|
+
return renderedLines.join("\n\n");
|
|
53705
53725
|
}
|
|
53706
53726
|
function generateMarkdownForVersionType(type, lines) {
|
|
53707
53727
|
const releaseLines = lines.filter((l) => l);
|
|
@@ -54371,7 +54391,7 @@ YAML error: ${e instanceof Error ? e.message : String(e)}\nFrontmatter content:\
|
|
|
54371
54391
|
};
|
|
54372
54392
|
}
|
|
54373
54393
|
//#endregion
|
|
54374
|
-
//#region ../../node_modules/.pnpm/@changesets+read@1.0.
|
|
54394
|
+
//#region ../../node_modules/.pnpm/@changesets+read@1.0.1/node_modules/@changesets/read/dist/index.mjs
|
|
54375
54395
|
const ignoredMdFiles = [
|
|
54376
54396
|
/^README\.md$/i,
|
|
54377
54397
|
"AGENTS.md",
|
|
@@ -54413,7 +54433,7 @@ async function readChangesets(rootDir, sinceRef) {
|
|
|
54413
54433
|
return await Promise.all(changesetContents);
|
|
54414
54434
|
}
|
|
54415
54435
|
//#endregion
|
|
54416
|
-
//#region ../../node_modules/.pnpm/@changesets+get-release-plan@5.0.
|
|
54436
|
+
//#region ../../node_modules/.pnpm/@changesets+get-release-plan@5.0.1/node_modules/@changesets/get-release-plan/dist/index.mjs
|
|
54417
54437
|
async function getReleasePlan(cwd, sinceRef, passedConfig) {
|
|
54418
54438
|
const packages = await getPackages(cwd);
|
|
54419
54439
|
const configResult = await readConfig(packages.rootDir, packages);
|