entities 4.5.0 → 6.0.0
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/decode.js +3 -0
- package/{lib/decode_codepoint.d.ts → dist/commonjs/decode-codepoint.d.ts} +2 -2
- package/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/{lib/decode_codepoint.js → dist/commonjs/decode-codepoint.js} +14 -13
- package/dist/commonjs/decode-codepoint.js.map +1 -0
- package/{lib → dist/commonjs}/decode.d.ts +18 -20
- package/dist/commonjs/decode.d.ts.map +1 -0
- package/{lib → dist/commonjs}/decode.js +122 -147
- package/dist/commonjs/decode.js.map +1 -0
- package/{lib/esm → dist/commonjs}/encode.d.ts +2 -2
- package/dist/commonjs/encode.d.ts.map +1 -0
- package/{lib → dist/commonjs}/encode.js +31 -35
- package/dist/commonjs/encode.js.map +1 -0
- package/{lib/esm → dist/commonjs}/escape.d.ts +2 -2
- package/dist/commonjs/escape.d.ts.map +1 -0
- package/{lib → dist/commonjs}/escape.js +37 -38
- package/dist/commonjs/escape.js.map +1 -0
- package/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/dist/commonjs/generated/decode-data-html.js +10 -0
- package/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/dist/commonjs/generated/decode-data-xml.js +10 -0
- package/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/dist/commonjs/generated/encode-html.d.ts +8 -0
- package/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/dist/commonjs/generated/encode-html.js +13 -0
- package/dist/commonjs/generated/encode-html.js.map +1 -0
- package/{lib → dist/commonjs}/index.d.ts +6 -6
- package/dist/commonjs/index.d.ts.map +1 -0
- package/{lib → dist/commonjs}/index.js +44 -39
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/package.json +3 -0
- package/{lib/esm/decode_codepoint.d.ts → dist/esm/decode-codepoint.d.ts} +2 -2
- package/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/{lib/esm/decode_codepoint.js → dist/esm/decode-codepoint.js} +10 -9
- package/dist/esm/decode-codepoint.js.map +1 -0
- package/{lib → dist}/esm/decode.d.ts +18 -20
- package/dist/esm/decode.d.ts.map +1 -0
- package/{lib → dist}/esm/decode.js +76 -75
- package/dist/esm/decode.js.map +1 -0
- package/{lib → dist/esm}/encode.d.ts +2 -2
- package/dist/esm/encode.d.ts.map +1 -0
- package/{lib → dist}/esm/encode.js +25 -25
- package/dist/esm/encode.js.map +1 -0
- package/{lib → dist/esm}/escape.d.ts +2 -2
- package/dist/esm/escape.d.ts.map +1 -0
- package/{lib → dist}/esm/escape.js +31 -30
- package/dist/esm/escape.js.map +1 -0
- package/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/dist/esm/generated/decode-data-html.js +7 -0
- package/dist/esm/generated/decode-data-html.js.map +1 -0
- package/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/dist/esm/generated/decode-data-xml.js +7 -0
- package/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/dist/esm/generated/encode-html.d.ts +8 -0
- package/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/dist/esm/generated/encode-html.js +10 -0
- package/dist/esm/generated/encode-html.js.map +1 -0
- package/{lib → dist}/esm/index.d.ts +6 -6
- package/dist/esm/index.d.ts.map +1 -0
- package/{lib → dist}/esm/index.js +33 -25
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/escape.js +3 -0
- package/package.json +92 -66
- package/readme.md +19 -19
- package/src/decode-codepoint.ts +81 -0
- package/src/decode.spec.ts +320 -0
- package/src/decode.ts +620 -0
- package/src/encode.spec.ts +78 -0
- package/src/encode.ts +77 -0
- package/src/escape.spec.ts +14 -0
- package/src/escape.ts +148 -0
- package/src/generated/.eslintrc.json +10 -0
- package/src/generated/decode-data-html.ts +8 -0
- package/src/generated/decode-data-xml.ts +8 -0
- package/src/generated/encode-html.ts +17 -0
- package/src/index.spec.ts +125 -0
- package/src/index.ts +188 -0
- package/lib/decode.d.ts.map +0 -1
- package/lib/decode.js.map +0 -1
- package/lib/decode_codepoint.d.ts.map +0 -1
- package/lib/decode_codepoint.js.map +0 -1
- package/lib/encode.d.ts.map +0 -1
- package/lib/encode.js.map +0 -1
- package/lib/escape.d.ts.map +0 -1
- package/lib/escape.js.map +0 -1
- package/lib/esm/decode.d.ts.map +0 -1
- package/lib/esm/decode.js.map +0 -1
- package/lib/esm/decode_codepoint.d.ts.map +0 -1
- package/lib/esm/decode_codepoint.js.map +0 -1
- package/lib/esm/encode.d.ts.map +0 -1
- package/lib/esm/encode.js.map +0 -1
- package/lib/esm/escape.d.ts.map +0 -1
- package/lib/esm/escape.js.map +0 -1
- package/lib/esm/generated/decode-data-html.d.ts +0 -3
- package/lib/esm/generated/decode-data-html.d.ts.map +0 -1
- package/lib/esm/generated/decode-data-html.js +0 -7
- package/lib/esm/generated/decode-data-html.js.map +0 -1
- package/lib/esm/generated/decode-data-xml.d.ts +0 -3
- package/lib/esm/generated/decode-data-xml.d.ts.map +0 -1
- package/lib/esm/generated/decode-data-xml.js +0 -7
- package/lib/esm/generated/decode-data-xml.js.map +0 -1
- package/lib/esm/generated/encode-html.d.ts +0 -8
- package/lib/esm/generated/encode-html.d.ts.map +0 -1
- package/lib/esm/generated/encode-html.js +0 -10
- package/lib/esm/generated/encode-html.js.map +0 -1
- package/lib/esm/index.d.ts.map +0 -1
- package/lib/esm/index.js.map +0 -1
- package/lib/esm/package.json +0 -1
- package/lib/generated/decode-data-html.d.ts +0 -3
- package/lib/generated/decode-data-html.d.ts.map +0 -1
- package/lib/generated/decode-data-html.js +0 -9
- package/lib/generated/decode-data-html.js.map +0 -1
- package/lib/generated/decode-data-xml.d.ts +0 -3
- package/lib/generated/decode-data-xml.d.ts.map +0 -1
- package/lib/generated/decode-data-xml.js +0 -9
- package/lib/generated/decode-data-xml.js.map +0 -1
- package/lib/generated/encode-html.d.ts +0 -8
- package/lib/generated/encode-html.d.ts.map +0 -1
- package/lib/generated/encode-html.js +0 -12
- package/lib/generated/encode-html.js.map +0 -1
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
package/decode.js
ADDED
|
@@ -15,5 +15,5 @@ export declare function replaceCodePoint(codePoint: number): number;
|
|
|
15
15
|
* @param codePoint The code point to decode.
|
|
16
16
|
* @returns The decoded code point.
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
19
|
-
//# sourceMappingURL=
|
|
18
|
+
export declare function decodeCodePoint(codePoint: number): string;
|
|
19
|
+
//# sourceMappingURL=decode-codepoint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"decode-codepoint.d.ts","sourceRoot":"","sources":["../../src/decode-codepoint.ts"],"names":[],"mappings":"AAkCA;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,CAAC,GAAG,UAAU,EAAE,MAAM,EAAE,KAAK,MAgBpD,CAAC;AAEN;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAS1D;AAED;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEzD"}
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
// Adapted from https://github.com/mathiasbynens/he/blob/36afe179392226cf1b6ccdb16ebbb7a5a844d93a/src/he.js#L106-L134
|
|
3
3
|
var _a;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
|
|
5
|
+
exports.fromCodePoint = void 0;
|
|
6
|
+
exports.replaceCodePoint = replaceCodePoint;
|
|
7
|
+
exports.decodeCodePoint = decodeCodePoint;
|
|
8
|
+
const decodeMap = new Map([
|
|
7
9
|
[0, 65533],
|
|
8
10
|
// C1 Unicode control character reference replacements
|
|
9
11
|
[128, 8364],
|
|
@@ -38,13 +40,13 @@ var decodeMap = new Map([
|
|
|
38
40
|
* Polyfill for `String.fromCodePoint`. It is used to create a string from a Unicode code point.
|
|
39
41
|
*/
|
|
40
42
|
exports.fromCodePoint =
|
|
41
|
-
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition,
|
|
43
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, n/no-unsupported-features/es-builtins
|
|
42
44
|
(_a = String.fromCodePoint) !== null && _a !== void 0 ? _a : function (codePoint) {
|
|
43
|
-
|
|
44
|
-
if (codePoint >
|
|
45
|
-
codePoint -=
|
|
46
|
-
output += String.fromCharCode(((codePoint >>> 10) &
|
|
47
|
-
codePoint =
|
|
45
|
+
let output = "";
|
|
46
|
+
if (codePoint > 65535) {
|
|
47
|
+
codePoint -= 65536;
|
|
48
|
+
output += String.fromCharCode(((codePoint >>> 10) & 1023) | 55296);
|
|
49
|
+
codePoint = 56320 | (codePoint & 1023);
|
|
48
50
|
}
|
|
49
51
|
output += String.fromCharCode(codePoint);
|
|
50
52
|
return output;
|
|
@@ -56,12 +58,12 @@ exports.fromCodePoint =
|
|
|
56
58
|
*/
|
|
57
59
|
function replaceCodePoint(codePoint) {
|
|
58
60
|
var _a;
|
|
59
|
-
if ((codePoint >=
|
|
60
|
-
|
|
61
|
+
if ((codePoint >= 55296 && codePoint <= 57343) ||
|
|
62
|
+
codePoint > 1114111) {
|
|
63
|
+
return 65533;
|
|
61
64
|
}
|
|
62
65
|
return (_a = decodeMap.get(codePoint)) !== null && _a !== void 0 ? _a : codePoint;
|
|
63
66
|
}
|
|
64
|
-
exports.replaceCodePoint = replaceCodePoint;
|
|
65
67
|
/**
|
|
66
68
|
* Replace the code point if relevant, then convert it to a string.
|
|
67
69
|
*
|
|
@@ -72,5 +74,4 @@ exports.replaceCodePoint = replaceCodePoint;
|
|
|
72
74
|
function decodeCodePoint(codePoint) {
|
|
73
75
|
return (0, exports.fromCodePoint)(replaceCodePoint(codePoint));
|
|
74
76
|
}
|
|
75
|
-
|
|
76
|
-
//# sourceMappingURL=decode_codepoint.js.map
|
|
77
|
+
//# sourceMappingURL=decode-codepoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"decode-codepoint.js","sourceRoot":"","sources":["../../src/decode-codepoint.ts"],"names":[],"mappings":";AAAA,qHAAqH;;;;AA4DrH,4CASC;AASD,0CAEC;AA9ED,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC;IACtB,CAAC,CAAC,EAAE,KAAM,CAAC;IACX,sDAAsD;IACtD,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,GAAG,CAAC;IACV,CAAC,GAAG,EAAE,GAAG,CAAC;CACb,CAAC,CAAC;AAEH;;GAEG;AACU,QAAA,aAAa;AACtB,8GAA8G;AAC9G,MAAA,MAAM,CAAC,aAAa,mCACpB,UAAU,SAAiB;IACvB,IAAI,MAAM,GAAG,EAAE,CAAC;IAEhB,IAAI,SAAS,GAAG,KAAO,EAAE,CAAC;QACtB,SAAS,IAAI,KAAS,CAAC;QACvB,MAAM,IAAI,MAAM,CAAC,YAAY,CACzB,CAAC,CAAC,SAAS,KAAK,EAAE,CAAC,GAAG,IAAM,CAAC,GAAG,KAAO,CAC1C,CAAC;QACF,SAAS,GAAG,KAAO,GAAG,CAAC,SAAS,GAAG,IAAM,CAAC,CAAC;IAC/C,CAAC;IAED,MAAM,IAAI,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;IACzC,OAAO,MAAM,CAAC;AAClB,CAAC,CAAC;AAEN;;;;GAIG;AACH,SAAgB,gBAAgB,CAAC,SAAiB;;IAC9C,IACI,CAAC,SAAS,IAAI,KAAO,IAAI,SAAS,IAAI,KAAO,CAAC;QAC9C,SAAS,GAAG,OAAU,EACxB,CAAC;QACC,OAAO,KAAO,CAAC;IACnB,CAAC;IAED,OAAO,MAAA,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,mCAAI,SAAS,CAAC;AACjD,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,eAAe,CAAC,SAAiB;IAC7C,OAAO,IAAA,qBAAa,EAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,CAAC;AACtD,CAAC"}
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import htmlDecodeTree from "./generated/decode-data-html.js";
|
|
2
|
-
import xmlDecodeTree from "./generated/decode-data-xml.js";
|
|
3
|
-
import decodeCodePoint from "./decode_codepoint.js";
|
|
4
|
-
export { htmlDecodeTree, xmlDecodeTree, decodeCodePoint };
|
|
5
|
-
export { replaceCodePoint, fromCodePoint } from "./decode_codepoint.js";
|
|
6
1
|
export declare enum BinTrieFlags {
|
|
7
2
|
VALUE_LENGTH = 49152,
|
|
8
3
|
BRANCH_LENGTH = 16256,
|
|
@@ -83,17 +78,17 @@ export declare class EntityDecoder {
|
|
|
83
78
|
* Mirrors the implementation of `getDecoder`, but with the ability to stop decoding if the
|
|
84
79
|
* entity is incomplete, and resume when the next string is written.
|
|
85
80
|
*
|
|
86
|
-
* @param
|
|
81
|
+
* @param input The string containing the entity (or a continuation of the entity).
|
|
87
82
|
* @param offset The offset at which the entity begins. Should be 0 if this is not the first call.
|
|
88
83
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
89
84
|
*/
|
|
90
|
-
write(
|
|
85
|
+
write(input: string, offset: number): number;
|
|
91
86
|
/**
|
|
92
87
|
* Switches between the numeric decimal and hexadecimal states.
|
|
93
88
|
*
|
|
94
89
|
* Equivalent to the `Numeric character reference state` in the HTML spec.
|
|
95
90
|
*
|
|
96
|
-
* @param
|
|
91
|
+
* @param input The string containing the entity (or a continuation of the entity).
|
|
97
92
|
* @param offset The current offset.
|
|
98
93
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
99
94
|
*/
|
|
@@ -104,7 +99,7 @@ export declare class EntityDecoder {
|
|
|
104
99
|
*
|
|
105
100
|
* Equivalent to the `Hexademical character reference state` in the HTML spec.
|
|
106
101
|
*
|
|
107
|
-
* @param
|
|
102
|
+
* @param input The string containing the entity (or a continuation of the entity).
|
|
108
103
|
* @param offset The current offset.
|
|
109
104
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
110
105
|
*/
|
|
@@ -114,7 +109,7 @@ export declare class EntityDecoder {
|
|
|
114
109
|
*
|
|
115
110
|
* Equivalent to the `Decimal character reference state` in the HTML spec.
|
|
116
111
|
*
|
|
117
|
-
* @param
|
|
112
|
+
* @param input The string containing the entity (or a continuation of the entity).
|
|
118
113
|
* @param offset The current offset.
|
|
119
114
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
120
115
|
*/
|
|
@@ -138,7 +133,7 @@ export declare class EntityDecoder {
|
|
|
138
133
|
*
|
|
139
134
|
* Equivalent to the `Named character reference state` in the HTML spec.
|
|
140
135
|
*
|
|
141
|
-
* @param
|
|
136
|
+
* @param input The string containing the entity (or a continuation of the entity).
|
|
142
137
|
* @param offset The current offset.
|
|
143
138
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
144
139
|
*/
|
|
@@ -178,34 +173,37 @@ export declare class EntityDecoder {
|
|
|
178
173
|
* @param char The current character.
|
|
179
174
|
* @returns The index of the next node, or -1 if no branch is taken.
|
|
180
175
|
*/
|
|
181
|
-
export declare function determineBranch(decodeTree: Uint16Array, current: number,
|
|
176
|
+
export declare function determineBranch(decodeTree: Uint16Array, current: number, nodeIndex: number, char: number): number;
|
|
182
177
|
/**
|
|
183
178
|
* Decodes an HTML string.
|
|
184
179
|
*
|
|
185
|
-
* @param
|
|
180
|
+
* @param htmlString The string to decode.
|
|
186
181
|
* @param mode The decoding mode.
|
|
187
182
|
* @returns The decoded string.
|
|
188
183
|
*/
|
|
189
|
-
export declare function decodeHTML(
|
|
184
|
+
export declare function decodeHTML(htmlString: string, mode?: DecodingMode): string;
|
|
190
185
|
/**
|
|
191
186
|
* Decodes an HTML string in an attribute.
|
|
192
187
|
*
|
|
193
|
-
* @param
|
|
188
|
+
* @param htmlAttribute The string to decode.
|
|
194
189
|
* @returns The decoded string.
|
|
195
190
|
*/
|
|
196
|
-
export declare function decodeHTMLAttribute(
|
|
191
|
+
export declare function decodeHTMLAttribute(htmlAttribute: string): string;
|
|
197
192
|
/**
|
|
198
193
|
* Decodes an HTML string, requiring all entities to be terminated by a semicolon.
|
|
199
194
|
*
|
|
200
|
-
* @param
|
|
195
|
+
* @param htmlString The string to decode.
|
|
201
196
|
* @returns The decoded string.
|
|
202
197
|
*/
|
|
203
|
-
export declare function decodeHTMLStrict(
|
|
198
|
+
export declare function decodeHTMLStrict(htmlString: string): string;
|
|
204
199
|
/**
|
|
205
200
|
* Decodes an XML string, requiring all entities to be terminated by a semicolon.
|
|
206
201
|
*
|
|
207
|
-
* @param
|
|
202
|
+
* @param xmlString The string to decode.
|
|
208
203
|
* @returns The decoded string.
|
|
209
204
|
*/
|
|
210
|
-
export declare function decodeXML(
|
|
205
|
+
export declare function decodeXML(xmlString: string): string;
|
|
206
|
+
export { htmlDecodeTree } from "./generated/decode-data-html.js";
|
|
207
|
+
export { xmlDecodeTree } from "./generated/decode-data-xml.js";
|
|
208
|
+
export { decodeCodePoint, replaceCodePoint, fromCodePoint, } from "./decode-codepoint.js";
|
|
211
209
|
//# sourceMappingURL=decode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"decode.d.ts","sourceRoot":"","sources":["../../src/decode.ts"],"names":[],"mappings":"AAsBA,oBAAY,YAAY;IACpB,YAAY,QAAwB;IACpC,aAAa,QAAwB;IACrC,UAAU,MAAwB;CACrC;AAuCD,oBAAY,YAAY;IACpB,8DAA8D;IAC9D,MAAM,IAAI;IACV,uDAAuD;IACvD,MAAM,IAAI;IACV,oEAAoE;IACpE,SAAS,IAAI;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC,uCAAuC,IAAI,IAAI,CAAC;IAChD,0CAA0C,CACtC,kBAAkB,EAAE,MAAM,GAC3B,IAAI,CAAC;IACR,iCAAiC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CACzD;AAED;;GAEG;AACH,qBAAa,aAAa;IAElB,wCAAwC;IACxC,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B;;;;;;;;OAQG;IACH,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,gDAAgD;IAChD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC;;IAbxB,wCAAwC;IACvB,UAAU,EAAE,WAAW;IACxC;;;;;;;;OAQG;IACc,aAAa,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI;IACtE,gDAAgD;IAC/B,MAAM,CAAC,EAAE,mBAAmB,GAAG,SAAS;IAG7D,wCAAwC;IACxC,OAAO,CAAC,KAAK,CAAkC;IAC/C,6DAA6D;IAC7D,OAAO,CAAC,QAAQ,CAAK;IACrB;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAK;IAEnB,4CAA4C;IAC5C,OAAO,CAAC,SAAS,CAAK;IACtB,6DAA6D;IAC7D,OAAO,CAAC,MAAM,CAAK;IACnB,kDAAkD;IAClD,OAAO,CAAC,UAAU,CAAuB;IAEzC,+CAA+C;IAC/C,WAAW,CAAC,UAAU,EAAE,YAAY,GAAG,IAAI;IAS3C;;;;;;;;;;OAUG;IACH,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM;IA8B5C;;;;;;;;OAQG;IACH,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,kBAAkB;IAe1B;;;;;;;;OAQG;IACH,OAAO,CAAC,eAAe;IAkBvB;;;;;;;;OAQG;IACH,OAAO,CAAC,mBAAmB;IAkB3B;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,iBAAiB;IA6BzB;;;;;;;;OAQG;IACH,OAAO,CAAC,gBAAgB;IAsDxB;;;;OAIG;IACH,OAAO,CAAC,4BAA4B;IAYpC;;;;;;;;OAQG;IACH,OAAO,CAAC,mBAAmB;IAqB3B;;;;;;OAMG;IACH,GAAG,IAAI,MAAM;CA6BhB;AAoDD;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC3B,UAAU,EAAE,WAAW,EACvB,OAAO,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,MAAM,GACb,MAAM,CAsCR;AAKD;;;;;;GAMG;AACH,wBAAgB,UAAU,CACtB,UAAU,EAAE,MAAM,EAClB,IAAI,GAAE,YAAkC,GACzC,MAAM,CAER;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAEjE;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAE3D;AAED;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEnD;AAGD,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAE/D,OAAO,EACH,eAAe,EACf,gBAAgB,EAChB,aAAa,GAChB,MAAM,uBAAuB,CAAC"}
|