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