easy-email-pro-editor 1.26.2 → 1.26.3
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/lib/index.js +766 -759
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var F = (e, u, a) => (Vi(e, typeof u != "symbol" ? u + "" : u, a), a);
|
|
|
23
23
|
import E, { createContext as gs, useEffect as St, useContext as ps, useRef as Tn, useCallback as Au, useState as Vu, useMemo as Eu, createElement as An } from "react";
|
|
24
24
|
import { withHistory as tl } from "slate-history";
|
|
25
25
|
import { ReactEditor as Qe, useSlate as gu, withReact as ul, Slate as mg, useSelected as bg, useSlateStatic as Tg, Editable as Dg } from "slate-react";
|
|
26
|
-
import { Editor as
|
|
26
|
+
import { Editor as Ae, Node as xt, Transforms as Be, Path as je, Text as $r, Range as rl } from "slate";
|
|
27
27
|
import { cloneDeep as Yr, get as vt, sum as Cg, isEqual as En, escapeRegExp as Nl, some as _g, find as Ng, reduce as ms, isEmpty as Ig, map as yg, uniqueId as Il, merge as Bg, memoize as yl, omitBy as xg, isNil as Bl, camelCase as Ru, isString as ea, identity as Rg, min as vg, each as Lg, omit as bs, debounce as Sg } from "lodash";
|
|
28
28
|
import { BlockManager as fe, NodeUtils as z, ElementCategory as Ar, ElementType as ne, StandardType as hr, mergeBlock as Dn, EditorCore as Gu, EditorAuth as Ts, t as xl, PluginManager as Ji, ElementAllowAttributes as ut, PageTestingCss as Og, SLATE_NODE_PLACEHOLDER_CLASSNAME as kg, I18nManager as Fg } from "easy-email-pro-core";
|
|
29
29
|
import { createPortal as Rl } from "react-dom";
|
|
@@ -41,64 +41,64 @@ const Pg = () => {
|
|
|
41
41
|
isVoid: N,
|
|
42
42
|
apply: x,
|
|
43
43
|
isInline: v,
|
|
44
|
-
insertText:
|
|
44
|
+
insertText: Q,
|
|
45
45
|
isElementReadOnly: P,
|
|
46
46
|
isSelectable: U
|
|
47
47
|
} = e;
|
|
48
48
|
return e.isInline = (_) => {
|
|
49
|
-
const
|
|
50
|
-
return
|
|
49
|
+
const B = fe.getBlockByType(_.type);
|
|
50
|
+
return B ? z.isHTMLNodeElement(_) && ["img"].includes(_.data.tagName) ? !0 : !!B.inlineElement : v(_);
|
|
51
51
|
}, e.isElementReadOnly = (_) => fe.getBlockByType(_.type) && z.isHTMLNodeElement(_) && ["img"].includes(_.data.tagName) ? !0 : P(_), e.isSelectable = (_) => fe.getBlockByType(_.type) && z.isHTMLNodeElement(_) && ["img"].includes(_.data.tagName) ? !1 : U(_), e.isVoid = (_) => {
|
|
52
|
-
const
|
|
53
|
-
(
|
|
54
|
-
),
|
|
52
|
+
const B = fe.getBlockByType(_.type), q = [Ar.IMAGE].some(
|
|
53
|
+
(w) => B.category.includes(w)
|
|
54
|
+
), V = [
|
|
55
55
|
ne.LINE_BREAK
|
|
56
56
|
].includes(_.type);
|
|
57
|
-
return
|
|
57
|
+
return q || V ? !0 : N(_);
|
|
58
58
|
}, e.getSelectionRect = () => {
|
|
59
59
|
const _ = Qe.getWindow(e).getSelection();
|
|
60
60
|
if (!_)
|
|
61
61
|
return null;
|
|
62
62
|
try {
|
|
63
63
|
return _.getRangeAt(0).getBoundingClientRect();
|
|
64
|
-
} catch (
|
|
64
|
+
} catch (B) {
|
|
65
65
|
}
|
|
66
66
|
return null;
|
|
67
67
|
}, e.getSelectedBlockElement = () => {
|
|
68
|
-
var
|
|
69
|
-
const [_] =
|
|
70
|
-
at: (
|
|
68
|
+
var B;
|
|
69
|
+
const [_] = Ae.nodes(e, {
|
|
70
|
+
at: (B = e.selection) == null ? void 0 : B.anchor.path,
|
|
71
71
|
match: z.isBlockElement,
|
|
72
72
|
mode: "lowest"
|
|
73
73
|
});
|
|
74
74
|
return _;
|
|
75
75
|
}, e.getSelectedContentElement = () => {
|
|
76
|
-
var
|
|
77
|
-
const [_] =
|
|
78
|
-
at: (
|
|
76
|
+
var B;
|
|
77
|
+
const [_] = Ae.nodes(e, {
|
|
78
|
+
at: (B = e.selection) == null ? void 0 : B.anchor.path,
|
|
79
79
|
match: z.isContentElement,
|
|
80
80
|
mode: "lowest"
|
|
81
81
|
});
|
|
82
82
|
return _;
|
|
83
83
|
}, e.insertText = (_) => {
|
|
84
|
-
|
|
84
|
+
Q(_);
|
|
85
85
|
}, e.deleteBackward = (_) => {
|
|
86
86
|
a(_);
|
|
87
87
|
}, e.deleteForward = (_) => {
|
|
88
88
|
s(_);
|
|
89
89
|
}, e.insertNewLine = (_) => {
|
|
90
|
-
let
|
|
91
|
-
if (_ != null && _.path && (
|
|
92
|
-
const
|
|
93
|
-
match(
|
|
94
|
-
return z.isElement(
|
|
90
|
+
let B = null;
|
|
91
|
+
if (_ != null && _.path && (B = xt.get(e, _.path)), !B) {
|
|
92
|
+
const q = Ae.above(e, {
|
|
93
|
+
match(V, w) {
|
|
94
|
+
return z.isElement(V);
|
|
95
95
|
},
|
|
96
96
|
mode: "lowest",
|
|
97
97
|
at: _ == null ? void 0 : _.path
|
|
98
98
|
});
|
|
99
|
-
|
|
99
|
+
B = q == null ? void 0 : q[0];
|
|
100
100
|
}
|
|
101
|
-
if (
|
|
101
|
+
if (B && z.isContentElement(B) && (Be.insertNodes(
|
|
102
102
|
e,
|
|
103
103
|
{
|
|
104
104
|
type: hr.STANDARD_PARAGRAPH,
|
|
@@ -108,33 +108,33 @@ const Pg = () => {
|
|
|
108
108
|
},
|
|
109
109
|
{ at: _ == null ? void 0 : _.path }
|
|
110
110
|
), _ != null && _.path)) {
|
|
111
|
-
Be.select(e,
|
|
112
|
-
const
|
|
113
|
-
Be.setSelection(e, { anchor:
|
|
111
|
+
Be.select(e, Ae.end(e, _.path));
|
|
112
|
+
const q = Ae.end(e, _.path);
|
|
113
|
+
Be.setSelection(e, { anchor: q, focus: q });
|
|
114
114
|
}
|
|
115
115
|
}, e.insertNewRow = (_) => {
|
|
116
|
-
const
|
|
117
|
-
match(
|
|
118
|
-
return z.isSectionElement(
|
|
116
|
+
const B = Ae.above(e, {
|
|
117
|
+
match(w, W) {
|
|
118
|
+
return z.isSectionElement(w);
|
|
119
119
|
},
|
|
120
120
|
mode: "lowest",
|
|
121
121
|
at: _ == null ? void 0 : _.path
|
|
122
122
|
});
|
|
123
|
-
if (!(
|
|
123
|
+
if (!(B == null ? void 0 : B[0]))
|
|
124
124
|
return;
|
|
125
|
-
let
|
|
126
|
-
if (!
|
|
127
|
-
const
|
|
128
|
-
match(
|
|
129
|
-
return z.isBlockElement(
|
|
125
|
+
let V = B == null ? void 0 : B[1];
|
|
126
|
+
if (!V) {
|
|
127
|
+
const w = Ae.above(e, {
|
|
128
|
+
match(W) {
|
|
129
|
+
return z.isBlockElement(W) && z.isSectionElement(W);
|
|
130
130
|
}
|
|
131
131
|
});
|
|
132
|
-
|
|
132
|
+
w && (V = w[1]);
|
|
133
133
|
}
|
|
134
|
-
if (
|
|
135
|
-
|
|
134
|
+
if (V) {
|
|
135
|
+
V = je.next(V), x({
|
|
136
136
|
type: "insert_node",
|
|
137
|
-
path:
|
|
137
|
+
path: V,
|
|
138
138
|
node: {
|
|
139
139
|
type: hr.STANDARD_SECTION,
|
|
140
140
|
attributes: {},
|
|
@@ -156,21 +156,21 @@ const Pg = () => {
|
|
|
156
156
|
]
|
|
157
157
|
}
|
|
158
158
|
});
|
|
159
|
-
const
|
|
159
|
+
const w = Ae.end(e, V);
|
|
160
160
|
setTimeout(() => {
|
|
161
|
-
Be.select(e,
|
|
161
|
+
Be.select(e, w);
|
|
162
162
|
}, 200);
|
|
163
163
|
}
|
|
164
164
|
}, e.insertBreak = () => {
|
|
165
|
-
const _ =
|
|
166
|
-
match(
|
|
167
|
-
return z.isElement(
|
|
165
|
+
const _ = Ae.above(e, {
|
|
166
|
+
match(B, q) {
|
|
167
|
+
return z.isElement(B);
|
|
168
168
|
},
|
|
169
169
|
mode: "lowest"
|
|
170
170
|
});
|
|
171
171
|
if (u.newLineWithBr && _ && !z.isTextListItemElement(_[0])) {
|
|
172
|
-
const
|
|
173
|
-
if (
|
|
172
|
+
const B = _ == null ? void 0 : _[0];
|
|
173
|
+
if (B && z.isTextElement(B)) {
|
|
174
174
|
Be.insertNodes(e, {
|
|
175
175
|
type: ne.LINE_BREAK,
|
|
176
176
|
children: [{ text: "" }],
|
|
@@ -182,19 +182,19 @@ const Pg = () => {
|
|
|
182
182
|
}
|
|
183
183
|
d();
|
|
184
184
|
}, e.splitColumns = (_) => {
|
|
185
|
-
const [
|
|
185
|
+
const [B] = Ae.nodes(e, {
|
|
186
186
|
at: _.path,
|
|
187
187
|
match: z.isColumnElement
|
|
188
|
-
}),
|
|
189
|
-
if (!z.isElement(
|
|
188
|
+
}), q = B[0];
|
|
189
|
+
if (!z.isElement(q))
|
|
190
190
|
return;
|
|
191
|
-
const
|
|
191
|
+
const w = Ae.parent(e, B[1])[0].children.filter(
|
|
192
192
|
(ge) => z.isElement(ge) && ge.type !== "raw"
|
|
193
193
|
);
|
|
194
|
-
if (
|
|
195
|
-
const ge =
|
|
194
|
+
if (w.length >= 2) {
|
|
195
|
+
const ge = Ae.end(
|
|
196
196
|
e,
|
|
197
|
-
Qe.findPath(e,
|
|
197
|
+
Qe.findPath(e, w[w.length - 1])
|
|
198
198
|
);
|
|
199
199
|
Be.setSelection(e, {
|
|
200
200
|
anchor: ge,
|
|
@@ -202,24 +202,24 @@ const Pg = () => {
|
|
|
202
202
|
});
|
|
203
203
|
return;
|
|
204
204
|
}
|
|
205
|
-
const
|
|
205
|
+
const W = Ae.end(e, _.path);
|
|
206
206
|
Be.setSelection(e, {
|
|
207
|
-
anchor:
|
|
208
|
-
focus:
|
|
207
|
+
anchor: W,
|
|
208
|
+
focus: W
|
|
209
209
|
}), Be.splitNodes(e, {
|
|
210
|
-
at:
|
|
210
|
+
at: Ae.end(e, _.path),
|
|
211
211
|
match: z.isSectionElement
|
|
212
212
|
});
|
|
213
|
-
const
|
|
214
|
-
|
|
215
|
-
at:
|
|
213
|
+
const le = Ae.before(e, _.path);
|
|
214
|
+
le && Be.splitNodes(e, {
|
|
215
|
+
at: Ae.end(e, le),
|
|
216
216
|
match: z.isSectionElement
|
|
217
217
|
});
|
|
218
|
-
const he = `${
|
|
218
|
+
const he = `${w.length / 2 * 100}%`;
|
|
219
219
|
Be.setNodes(
|
|
220
220
|
e,
|
|
221
221
|
{
|
|
222
|
-
attributes: J(D({},
|
|
222
|
+
attributes: J(D({}, q.attributes), { width: he })
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
match: z.isColumnElement
|
|
@@ -229,7 +229,7 @@ const Pg = () => {
|
|
|
229
229
|
{
|
|
230
230
|
type: hr.STANDARD_COLUMN,
|
|
231
231
|
data: {},
|
|
232
|
-
attributes: J(D({},
|
|
232
|
+
attributes: J(D({}, q.attributes), { width: he }),
|
|
233
233
|
children: [
|
|
234
234
|
{
|
|
235
235
|
type: hr.STANDARD_PARAGRAPH,
|
|
@@ -243,7 +243,7 @@ const Pg = () => {
|
|
|
243
243
|
}
|
|
244
244
|
);
|
|
245
245
|
}, e.moveNode = (_) => {
|
|
246
|
-
|
|
246
|
+
Ae.withoutNormalizing(e, () => {
|
|
247
247
|
x({
|
|
248
248
|
type: "move_node",
|
|
249
249
|
path: _.at,
|
|
@@ -252,63 +252,63 @@ const Pg = () => {
|
|
|
252
252
|
});
|
|
253
253
|
}, e.splitNodesByCategoryType = ({
|
|
254
254
|
path: _,
|
|
255
|
-
targetCategoryType:
|
|
256
|
-
insertElement:
|
|
255
|
+
targetCategoryType: B,
|
|
256
|
+
insertElement: q
|
|
257
257
|
}) => {
|
|
258
|
-
let
|
|
259
|
-
for (;
|
|
260
|
-
|
|
261
|
-
const ee =
|
|
262
|
-
if (
|
|
263
|
-
children:
|
|
264
|
-
}), fe.getBlockByType(ee.type).category ===
|
|
258
|
+
let V = _, w = null;
|
|
259
|
+
for (; xt.get(e, V); ) {
|
|
260
|
+
V = je.parent(V);
|
|
261
|
+
const ee = xt.get(e, V);
|
|
262
|
+
if (w = J(D({}, ee), {
|
|
263
|
+
children: w ? [w] : []
|
|
264
|
+
}), fe.getBlockByType(ee.type).category === B)
|
|
265
265
|
break;
|
|
266
266
|
}
|
|
267
|
-
if (!
|
|
267
|
+
if (!w)
|
|
268
268
|
return;
|
|
269
|
-
const
|
|
270
|
-
let he = Yr(
|
|
271
|
-
const ge = Yr(
|
|
269
|
+
const W = _[_.length - 1], le = Yr(w);
|
|
270
|
+
let he = Yr(w);
|
|
271
|
+
const ge = Yr(w), j = xt.get(e, je.parent(_)), Ee = _.length - V.length, pe = new Array(Ee).fill(!0).map(() => "children").join("[0].");
|
|
272
272
|
for (let ee = 0; ee < j.children.length; ee++) {
|
|
273
273
|
const re = j.children[ee];
|
|
274
|
-
ee <
|
|
274
|
+
ee < W ? vt(le, pe).push(re) : ee === W ? q ? he = q : vt(he, pe).push(re) : vt(ge, pe).push(re);
|
|
275
275
|
}
|
|
276
|
-
const oe =
|
|
276
|
+
const oe = W === 0 ? [he, ge] : [le, he, ge];
|
|
277
277
|
e.withoutNormalizing(() => {
|
|
278
|
-
e.delete({ at:
|
|
279
|
-
at:
|
|
278
|
+
e.delete({ at: V }), e.insertNodes(oe, {
|
|
279
|
+
at: V
|
|
280
280
|
});
|
|
281
281
|
});
|
|
282
282
|
}, e.insertData = (_) => {
|
|
283
|
-
|
|
284
|
-
const
|
|
283
|
+
Ae.withoutNormalizing(e, () => {
|
|
284
|
+
const B = _.getData("application/x-slate-fragment"), q = Ae.above(e, {
|
|
285
285
|
match: z.isVoidBlockElement
|
|
286
286
|
});
|
|
287
|
-
if (
|
|
288
|
-
const
|
|
289
|
-
e.insertFragment(
|
|
287
|
+
if (B && !q) {
|
|
288
|
+
const V = decodeURIComponent(window.atob(B)), w = JSON.parse(V), le = [...xt.nodes(w[0])].map((he) => he[0]).filter((he) => z.isTextNode(he));
|
|
289
|
+
e.insertFragment(le);
|
|
290
290
|
} else {
|
|
291
|
-
const
|
|
292
|
-
`),
|
|
293
|
-
|
|
294
|
-
|
|
291
|
+
const V = _.getData("text").split(`
|
|
292
|
+
`), w = [];
|
|
293
|
+
V.forEach((W, le) => {
|
|
294
|
+
w.push({ text: W }), le !== V.length - 1 && w.push({
|
|
295
295
|
type: ne.LINE_BREAK,
|
|
296
296
|
data: {},
|
|
297
297
|
attributes: {},
|
|
298
298
|
children: [{ text: "" }]
|
|
299
299
|
});
|
|
300
|
-
}), Be.insertNodes(e,
|
|
300
|
+
}), Be.insertNodes(e, w, {
|
|
301
301
|
match: $r.isText
|
|
302
302
|
});
|
|
303
303
|
}
|
|
304
304
|
});
|
|
305
305
|
}, e.insertMergetag = (_) => {
|
|
306
|
-
|
|
307
|
-
const [
|
|
308
|
-
match: (
|
|
306
|
+
Ae.withoutNormalizing(e, () => {
|
|
307
|
+
const [B] = Ae.nodes(e, {
|
|
308
|
+
match: (q) => z.isInlineElement(q) && q.type === ne.MERGETAG,
|
|
309
309
|
mode: "all"
|
|
310
310
|
});
|
|
311
|
-
|
|
311
|
+
B || Be.insertNodes(
|
|
312
312
|
e,
|
|
313
313
|
[
|
|
314
314
|
{
|
|
@@ -325,63 +325,63 @@ const Pg = () => {
|
|
|
325
325
|
);
|
|
326
326
|
});
|
|
327
327
|
}, e.normalizeNode = (_) => {
|
|
328
|
-
const [
|
|
329
|
-
if (!z.isElement(
|
|
328
|
+
const [B, q] = _;
|
|
329
|
+
if (!z.isElement(B)) {
|
|
330
330
|
g(_);
|
|
331
331
|
return;
|
|
332
332
|
}
|
|
333
|
-
const
|
|
334
|
-
if (
|
|
333
|
+
const V = fe.getBlockByType(B.type);
|
|
334
|
+
if (V.void) {
|
|
335
335
|
g(_);
|
|
336
336
|
return;
|
|
337
337
|
}
|
|
338
|
-
if (
|
|
339
|
-
const
|
|
338
|
+
if (B.children.length === 0) {
|
|
339
|
+
const le = fe.getBlockByType(
|
|
340
340
|
ne.STANDARD_SECTION
|
|
341
341
|
), he = fe.getBlockByType(
|
|
342
342
|
ne.STANDARD_COLUMN
|
|
343
343
|
);
|
|
344
|
-
|
|
344
|
+
V.category === Ar.PAGE ? Be.insertNodes(
|
|
345
345
|
e,
|
|
346
|
-
|
|
346
|
+
le.create({
|
|
347
347
|
children: [he.create({})]
|
|
348
348
|
}),
|
|
349
349
|
{
|
|
350
350
|
at: [0, 0]
|
|
351
351
|
}
|
|
352
|
-
) : z.isContentElement(
|
|
352
|
+
) : z.isContentElement(B) ? Be.insertNodes(
|
|
353
353
|
e,
|
|
354
354
|
{ text: "" },
|
|
355
355
|
{
|
|
356
|
-
at: [...
|
|
356
|
+
at: [...q, 0]
|
|
357
357
|
}
|
|
358
|
-
) : Be.removeNodes(e, { at:
|
|
358
|
+
) : Be.removeNodes(e, { at: q });
|
|
359
359
|
return;
|
|
360
360
|
}
|
|
361
|
-
if (
|
|
362
|
-
Be.removeNodes(e, { at:
|
|
361
|
+
if (B.type === ne.MERGETAG && B.children[0].text === "") {
|
|
362
|
+
Be.removeNodes(e, { at: q });
|
|
363
363
|
return;
|
|
364
364
|
}
|
|
365
|
-
const
|
|
366
|
-
if ((
|
|
367
|
-
const he =
|
|
365
|
+
const w = V.category.includes(Ar.SECTION), W = V.category.includes(Ar.GROUP);
|
|
366
|
+
if ((w || W) && !(B.children.length === 1)) {
|
|
367
|
+
const he = B.children.filter(
|
|
368
368
|
(j) => !j.attributes.width
|
|
369
|
-
), ge =
|
|
369
|
+
), ge = B.children.filter(
|
|
370
370
|
(j) => j.attributes.width
|
|
371
371
|
);
|
|
372
372
|
if (he.length > 0 && ge.every(
|
|
373
373
|
(j) => {
|
|
374
|
-
var
|
|
375
|
-
return (
|
|
374
|
+
var Ee;
|
|
375
|
+
return (Ee = j.attributes.width) == null ? void 0 : Ee.includes("%");
|
|
376
376
|
}
|
|
377
377
|
)) {
|
|
378
378
|
const j = (100 - Cg(
|
|
379
379
|
ge.map(
|
|
380
|
-
(
|
|
380
|
+
(Ee) => parseFloat(Ee.attributes.width)
|
|
381
381
|
)
|
|
382
382
|
)) / he.length;
|
|
383
|
-
|
|
384
|
-
z.isColumnElement(
|
|
383
|
+
B.children.forEach((Ee, pe) => {
|
|
384
|
+
z.isColumnElement(Ee) && !Ee.attributes.width && Be.setNodes(
|
|
385
385
|
e,
|
|
386
386
|
{
|
|
387
387
|
attributes: {
|
|
@@ -389,113 +389,120 @@ const Pg = () => {
|
|
|
389
389
|
}
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
|
-
at: [...
|
|
392
|
+
at: [...q, pe]
|
|
393
393
|
}
|
|
394
394
|
);
|
|
395
395
|
});
|
|
396
396
|
}
|
|
397
397
|
}
|
|
398
|
-
if (z.isElement(
|
|
399
|
-
Be.removeNodes(e, { at:
|
|
398
|
+
if (z.isElement(B) && B.children.length === 0) {
|
|
399
|
+
Be.removeNodes(e, { at: q });
|
|
400
400
|
return;
|
|
401
401
|
}
|
|
402
|
-
z.isColumnElement(
|
|
403
|
-
z.isPlaceholderElement(
|
|
404
|
-
at: [...
|
|
402
|
+
z.isColumnElement(B) && B.children.length > 1 && B.children.forEach((le, he) => {
|
|
403
|
+
z.isPlaceholderElement(le) && Be.removeNodes(e, {
|
|
404
|
+
at: [...q, he]
|
|
405
405
|
});
|
|
406
406
|
}), g(_);
|
|
407
407
|
}, e.replaceNode = (_) => {
|
|
408
|
-
|
|
409
|
-
const
|
|
408
|
+
Ae.withoutNormalizing(e, () => {
|
|
409
|
+
const B = _.path, q = xt.get(e, B);
|
|
410
410
|
x({
|
|
411
411
|
type: "insert_node",
|
|
412
|
-
path: je.next(
|
|
412
|
+
path: je.next(B),
|
|
413
413
|
node: _.node
|
|
414
414
|
}), x({
|
|
415
415
|
type: "remove_node",
|
|
416
|
-
path:
|
|
417
|
-
node:
|
|
416
|
+
path: B,
|
|
417
|
+
node: q
|
|
418
418
|
});
|
|
419
|
-
const
|
|
420
|
-
|
|
421
|
-
at:
|
|
419
|
+
const V = Ae.end(e, B);
|
|
420
|
+
Ae.above(e, {
|
|
421
|
+
at: V,
|
|
422
422
|
match: z.isUnsetElement
|
|
423
|
-
}) ? Be.deselect(e) : Be.setSelection(e, { anchor:
|
|
423
|
+
}) ? Be.deselect(e) : Be.setSelection(e, { anchor: V, focus: V });
|
|
424
424
|
});
|
|
425
425
|
}, e.removeNode = (_) => {
|
|
426
|
-
const
|
|
426
|
+
const B = _.path;
|
|
427
427
|
x({
|
|
428
428
|
type: "remove_node",
|
|
429
|
-
path:
|
|
430
|
-
node:
|
|
429
|
+
path: B,
|
|
430
|
+
node: xt.get(e, B)
|
|
431
431
|
});
|
|
432
432
|
}, e.findSelfOrAncestorNodeByCategory = (_) => {
|
|
433
433
|
try {
|
|
434
|
-
const
|
|
435
|
-
|
|
434
|
+
const [B] = Ae.nodes(e, {
|
|
435
|
+
match: z.isElement,
|
|
436
|
+
at: _.path,
|
|
437
|
+
mode: "lowest"
|
|
438
|
+
});
|
|
439
|
+
if (!B)
|
|
440
|
+
return null;
|
|
441
|
+
const q = B[0];
|
|
442
|
+
if (!q)
|
|
436
443
|
return null;
|
|
437
|
-
if (fe.getBlockByType(
|
|
438
|
-
return [
|
|
444
|
+
if (fe.getBlockByType(q.type).category === _.category)
|
|
445
|
+
return [q, Qe.findPath(e, q)];
|
|
439
446
|
{
|
|
440
|
-
const
|
|
441
|
-
at: Qe.findPath(e,
|
|
442
|
-
match: (
|
|
447
|
+
const w = Ae.above(e, {
|
|
448
|
+
at: Qe.findPath(e, q),
|
|
449
|
+
match: (W) => z.isElement(W) ? fe.getBlockByType(W.type).category === _.category : !1
|
|
443
450
|
});
|
|
444
|
-
return
|
|
451
|
+
return w ? [w[0], w[1]] : null;
|
|
445
452
|
}
|
|
446
|
-
} catch (
|
|
453
|
+
} catch (B) {
|
|
447
454
|
return null;
|
|
448
455
|
}
|
|
449
456
|
}, e.findSelfOrAncestorNodeByType = (_) => {
|
|
450
457
|
try {
|
|
451
|
-
const
|
|
452
|
-
if (!
|
|
458
|
+
const B = xt.get(e, _.path);
|
|
459
|
+
if (!B)
|
|
453
460
|
return null;
|
|
454
|
-
if (
|
|
455
|
-
return [
|
|
461
|
+
if (B.type === _.type)
|
|
462
|
+
return [B, Qe.findPath(e, B)];
|
|
456
463
|
{
|
|
457
|
-
const
|
|
458
|
-
at: Qe.findPath(e,
|
|
459
|
-
match: (
|
|
464
|
+
const q = Ae.above(e, {
|
|
465
|
+
at: Qe.findPath(e, B),
|
|
466
|
+
match: (V) => z.isElement(V) ? V.type === _.type : !1
|
|
460
467
|
});
|
|
461
|
-
return
|
|
468
|
+
return q ? [q[0], q[1]] : null;
|
|
462
469
|
}
|
|
463
|
-
} catch (
|
|
470
|
+
} catch (B) {
|
|
464
471
|
return null;
|
|
465
472
|
}
|
|
466
473
|
}, e.findSelfOrAncestorNode = (_) => {
|
|
467
474
|
try {
|
|
468
|
-
const
|
|
469
|
-
if (!
|
|
475
|
+
const B = xt.get(e, _.path);
|
|
476
|
+
if (!B)
|
|
470
477
|
return null;
|
|
471
|
-
if (_.match(
|
|
472
|
-
return [
|
|
478
|
+
if (_.match(B, _.path))
|
|
479
|
+
return [B, Qe.findPath(e, B)];
|
|
473
480
|
{
|
|
474
|
-
const
|
|
475
|
-
at: Qe.findPath(e,
|
|
476
|
-
match: (
|
|
481
|
+
const q = Ae.above(e, {
|
|
482
|
+
at: Qe.findPath(e, B),
|
|
483
|
+
match: (V, w) => _.match(V, w)
|
|
477
484
|
});
|
|
478
|
-
return
|
|
485
|
+
return q ? [q[0], q[1]] : null;
|
|
479
486
|
}
|
|
480
|
-
} catch (
|
|
487
|
+
} catch (B) {
|
|
481
488
|
return null;
|
|
482
489
|
}
|
|
483
|
-
}, e.writeHistory = (_,
|
|
484
|
-
var
|
|
490
|
+
}, e.writeHistory = (_, B) => {
|
|
491
|
+
var q, V, w, W, le, he, ge, j, Ee, pe, oe, ee, re, Ve;
|
|
485
492
|
if (_ === "undos") {
|
|
486
493
|
const Ce = $i;
|
|
487
|
-
if (((
|
|
488
|
-
const _e = e.history[_].slice(-1)[0], ft = (
|
|
489
|
-
if (((
|
|
490
|
-
const He = (ge = (he =
|
|
494
|
+
if (((q = B == null ? void 0 : B.operations) == null ? void 0 : q[0].type) === "set_node" && ($i = !0, Pg()), Ce) {
|
|
495
|
+
const _e = e.history[_].slice(-1)[0], ft = (w = (V = _e == null ? void 0 : _e.operations) == null ? void 0 : V[0]) == null ? void 0 : w.path;
|
|
496
|
+
if (((W = B == null ? void 0 : B.operations) == null ? void 0 : W[0].type) === "set_node" && ((le = _e == null ? void 0 : _e.operations) == null ? void 0 : le[0].type) === "set_node" && (B == null ? void 0 : B.operations.length) === 1) {
|
|
497
|
+
const He = (ge = (he = B == null ? void 0 : B.operations) == null ? void 0 : he[0]) == null ? void 0 : ge.path;
|
|
491
498
|
je.equals(ft, He) && e.history[_].pop();
|
|
492
|
-
const tu = (
|
|
499
|
+
const tu = (Ee = (j = _e == null ? void 0 : _e.operations) == null ? void 0 : j[0]) == null ? void 0 : Ee.properties, At = Dn(
|
|
493
500
|
(oe = (pe = _e == null ? void 0 : _e.operations) == null ? void 0 : pe[0]) == null ? void 0 : oe.newProperties,
|
|
494
|
-
(re = (ee =
|
|
501
|
+
(re = (ee = B == null ? void 0 : B.operations) == null ? void 0 : ee[0]) == null ? void 0 : re.newProperties
|
|
495
502
|
);
|
|
496
|
-
e.history[_].push(J(D({},
|
|
503
|
+
e.history[_].push(J(D({}, B), {
|
|
497
504
|
operations: [
|
|
498
|
-
J(D({}, (Ve =
|
|
505
|
+
J(D({}, (Ve = B == null ? void 0 : B.operations) == null ? void 0 : Ve[0]), {
|
|
499
506
|
properties: tu,
|
|
500
507
|
newProperties: At
|
|
501
508
|
})
|
|
@@ -505,57 +512,57 @@ const Pg = () => {
|
|
|
505
512
|
}
|
|
506
513
|
}
|
|
507
514
|
}
|
|
508
|
-
e.history[_].push(
|
|
515
|
+
e.history[_].push(B);
|
|
509
516
|
}, e.apply = (_) => {
|
|
510
|
-
var
|
|
517
|
+
var B, q, V;
|
|
511
518
|
if (!(_.type === "set_node" && En(_.newProperties, _.properties))) {
|
|
512
519
|
if (_.type === "remove_text") {
|
|
513
|
-
const [
|
|
514
|
-
match: (
|
|
520
|
+
const [w] = Ae.nodes(e, {
|
|
521
|
+
match: (W) => z.isElement(W) && W.type === ne.MERGETAG,
|
|
515
522
|
at: _.path
|
|
516
523
|
});
|
|
517
|
-
if (
|
|
518
|
-
Be.removeNodes(e, { at:
|
|
524
|
+
if (w) {
|
|
525
|
+
Be.removeNodes(e, { at: w[1] });
|
|
519
526
|
return;
|
|
520
527
|
}
|
|
521
528
|
}
|
|
522
529
|
if (_.type === "remove_node" || _.type === "merge_node") {
|
|
523
|
-
const
|
|
530
|
+
const w = Ae.above(e, {
|
|
524
531
|
at: _.path,
|
|
525
532
|
match: z.isBlockElement
|
|
526
533
|
});
|
|
527
|
-
if (
|
|
534
|
+
if (w && z.isVoidBlockElement(w[0]))
|
|
528
535
|
return;
|
|
529
536
|
}
|
|
530
537
|
if (_.type === "set_selection")
|
|
531
538
|
try {
|
|
532
|
-
if (_.newProperties && rl.isRange(_.newProperties) && rl.isCollapsed(_.newProperties) && !
|
|
539
|
+
if (_.newProperties && rl.isRange(_.newProperties) && rl.isCollapsed(_.newProperties) && !Ae.isEnd(
|
|
533
540
|
e,
|
|
534
|
-
(
|
|
535
|
-
(
|
|
541
|
+
(B = _.newProperties) == null ? void 0 : B.anchor,
|
|
542
|
+
(V = (q = _.newProperties) == null ? void 0 : q.anchor) == null ? void 0 : V.path
|
|
536
543
|
)) {
|
|
537
|
-
const
|
|
538
|
-
match: (
|
|
544
|
+
const w = Ae.above(e, {
|
|
545
|
+
match: (W) => z.isBlockElement(W),
|
|
539
546
|
at: _.newProperties.anchor.path,
|
|
540
547
|
mode: "lowest"
|
|
541
548
|
});
|
|
542
|
-
if (
|
|
543
|
-
const
|
|
549
|
+
if (w) {
|
|
550
|
+
const W = w[0], le = W.children.findIndex(
|
|
544
551
|
(ge) => z.isElement(ge) && ge.type === ne.MERGETAG
|
|
545
|
-
), he =
|
|
546
|
-
|
|
552
|
+
), he = W.children[W.children.length - 1];
|
|
553
|
+
le === W.children.length - 2 && z.isTextNode(he) && he.text === "" && Be.insertNodes(
|
|
547
554
|
e,
|
|
548
555
|
{ text: " " },
|
|
549
556
|
{
|
|
550
557
|
at: je.next([
|
|
551
|
-
...
|
|
552
|
-
|
|
558
|
+
...w[1],
|
|
559
|
+
W.children.length - 1
|
|
553
560
|
])
|
|
554
561
|
}
|
|
555
562
|
);
|
|
556
563
|
}
|
|
557
564
|
}
|
|
558
|
-
} catch (
|
|
565
|
+
} catch (w) {
|
|
559
566
|
}
|
|
560
567
|
return x(_);
|
|
561
568
|
}
|
|
@@ -566,9 +573,9 @@ var Ll = /* @__PURE__ */ ((e) => (e.MOBILE = "MOBILE", e.DESKTOP = "DESKTOP", e)
|
|
|
566
573
|
const Sl = gs({}), Hg = ({ children: e }) => {
|
|
567
574
|
const { localeData: u, readOnly: a } = Lu(), s = gu();
|
|
568
575
|
St(() => {
|
|
569
|
-
|
|
576
|
+
B([0]), B(void 0);
|
|
570
577
|
const oe = setTimeout(() => {
|
|
571
|
-
|
|
578
|
+
B(null);
|
|
572
579
|
}, 0);
|
|
573
580
|
return () => {
|
|
574
581
|
clearTimeout(oe);
|
|
@@ -576,18 +583,18 @@ const Sl = gs({}), Hg = ({ children: e }) => {
|
|
|
576
583
|
}, [s, u]);
|
|
577
584
|
const [d, g] = E.useState(!1), [N, x] = E.useState(
|
|
578
585
|
null
|
|
579
|
-
), [v,
|
|
586
|
+
), [v, Q] = E.useState(null), [P, U] = E.useState(null), [_, B] = E.useState(null), [q, V] = E.useState(
|
|
580
587
|
"DESKTOP"
|
|
581
588
|
/* DESKTOP */
|
|
582
|
-
), [
|
|
589
|
+
), [w, W] = E.useState(null), [le, he] = E.useState(
|
|
583
590
|
null
|
|
584
591
|
), ge = il((oe) => {
|
|
585
592
|
if (!a && !d) {
|
|
586
593
|
if (!oe)
|
|
587
594
|
Be.deselect(s);
|
|
588
595
|
else {
|
|
589
|
-
const ee =
|
|
590
|
-
if (
|
|
596
|
+
const ee = xt.get(s, oe), re = Ae.end(s, oe);
|
|
597
|
+
if (Ae.above(s, {
|
|
591
598
|
at: re,
|
|
592
599
|
match(Ce) {
|
|
593
600
|
return z.isUnsetElement(Ce);
|
|
@@ -605,44 +612,44 @@ const Sl = gs({}), Hg = ({ children: e }) => {
|
|
|
605
612
|
(...oe) => {
|
|
606
613
|
const ee = oe[0];
|
|
607
614
|
if (je.isPath(ee)) {
|
|
608
|
-
|
|
615
|
+
B((re) => re && je.equals(re, ee) ? re : ee);
|
|
609
616
|
return;
|
|
610
617
|
}
|
|
611
|
-
return
|
|
618
|
+
return B(...oe);
|
|
612
619
|
}
|
|
613
620
|
);
|
|
614
621
|
St(() => {
|
|
615
622
|
if (v) {
|
|
616
|
-
const oe =
|
|
623
|
+
const oe = xt.get(s, v);
|
|
617
624
|
U(Yr(oe));
|
|
618
625
|
} else
|
|
619
626
|
U(null);
|
|
620
627
|
}, [s, v]);
|
|
621
|
-
let
|
|
628
|
+
let Ee = null;
|
|
622
629
|
try {
|
|
623
|
-
|
|
630
|
+
Ee = N && xt.get(s, N);
|
|
624
631
|
} catch (oe) {
|
|
625
632
|
}
|
|
626
633
|
St(() => {
|
|
627
|
-
if (
|
|
628
|
-
const oe = fe.getBlockByType(
|
|
634
|
+
if (Ee && z.isElement(Ee)) {
|
|
635
|
+
const oe = fe.getBlockByType(Ee.type);
|
|
629
636
|
[Ar.UNSET].includes(oe.category) && x(null);
|
|
630
637
|
}
|
|
631
|
-
}, [
|
|
638
|
+
}, [Ee]);
|
|
632
639
|
const pe = E.useMemo(() => ({
|
|
633
640
|
universalElementEditing: !!v,
|
|
634
641
|
selectedNodePath: N,
|
|
635
642
|
hoverNodePath: _,
|
|
636
|
-
dragNodePath:
|
|
637
|
-
dragoverNodePath:
|
|
643
|
+
dragNodePath: w,
|
|
644
|
+
dragoverNodePath: le,
|
|
638
645
|
setDragoverNodePath: he,
|
|
639
646
|
setSelectedNodePath: ge,
|
|
640
647
|
setHoverNodePath: j,
|
|
641
|
-
setDragNodePath:
|
|
642
|
-
activeTab:
|
|
643
|
-
setActiveTab:
|
|
648
|
+
setDragNodePath: W,
|
|
649
|
+
activeTab: q,
|
|
650
|
+
setActiveTab: V,
|
|
644
651
|
universalElementPath: v,
|
|
645
|
-
setUniversalElementPath:
|
|
652
|
+
setUniversalElementPath: Q,
|
|
646
653
|
initialUniversalElement: P,
|
|
647
654
|
lock: d,
|
|
648
655
|
setLock: g
|
|
@@ -650,11 +657,11 @@ const Sl = gs({}), Hg = ({ children: e }) => {
|
|
|
650
657
|
v,
|
|
651
658
|
N,
|
|
652
659
|
_,
|
|
653
|
-
|
|
654
|
-
|
|
660
|
+
w,
|
|
661
|
+
le,
|
|
655
662
|
ge,
|
|
656
663
|
j,
|
|
657
|
-
|
|
664
|
+
q,
|
|
658
665
|
P,
|
|
659
666
|
d
|
|
660
667
|
]);
|
|
@@ -666,7 +673,7 @@ const Sl = gs({}), Hg = ({ children: e }) => {
|
|
|
666
673
|
if (!u)
|
|
667
674
|
return null;
|
|
668
675
|
try {
|
|
669
|
-
return
|
|
676
|
+
return xt.get(e, u);
|
|
670
677
|
} catch (d) {
|
|
671
678
|
return null;
|
|
672
679
|
}
|
|
@@ -708,28 +715,28 @@ const Lu = () => ps(vl), AT = () => {
|
|
|
708
715
|
<div>Please contact us: <a target="_blank" style="font-weight: bold;color: rgb(0, 120, 212);cursor:pointer;" href="mailto:ch.mao@qq.com">ch.mao@qq.com</a></div>
|
|
709
716
|
|
|
710
717
|
</div>`, ET = (e) => {
|
|
711
|
-
const { withEnhanceEditor: u, loadingElement: a } = e, [s, d] = Vu(!1), [g, N] = Vu(!1), x = Er(e), v = Tn(null),
|
|
712
|
-
const
|
|
718
|
+
const { withEnhanceEditor: u, loadingElement: a } = e, [s, d] = Vu(!1), [g, N] = Vu(!1), x = Er(e), v = Tn(null), Q = Eu(() => {
|
|
719
|
+
const W = x.current;
|
|
713
720
|
return u ? u(
|
|
714
|
-
nl(tl(ul(
|
|
715
|
-
|
|
716
|
-
) : nl(tl(ul(
|
|
721
|
+
nl(tl(ul(W.editor)), W),
|
|
722
|
+
W
|
|
723
|
+
) : nl(tl(ul(W.editor)), W);
|
|
717
724
|
}, [x, u]), P = Eu(() => {
|
|
718
725
|
if (v.current)
|
|
719
726
|
return v.current;
|
|
720
|
-
let
|
|
721
|
-
e.universalElementSetting && (
|
|
727
|
+
let W = e.initialValues.content;
|
|
728
|
+
e.universalElementSetting && (W = Gu.transformUniversalElements({
|
|
722
729
|
content: e.initialValues.content,
|
|
723
730
|
universalElements: e.universalElementSetting.elements
|
|
724
731
|
}));
|
|
725
|
-
const
|
|
726
|
-
return
|
|
727
|
-
}, [
|
|
732
|
+
const le = [W];
|
|
733
|
+
return Q.children = le, v.current = le, le;
|
|
734
|
+
}, [Q, e.initialValues.content, e.universalElementSetting]);
|
|
728
735
|
St(() => {
|
|
729
736
|
Gu.auth(e.clientId).then(() => {
|
|
730
737
|
d(!0);
|
|
731
|
-
}).catch((
|
|
732
|
-
if (vt(
|
|
738
|
+
}).catch((W) => {
|
|
739
|
+
if (vt(W, "response.status") === 401)
|
|
733
740
|
N(!0);
|
|
734
741
|
else {
|
|
735
742
|
const he = sl, ge = document.createElement("div");
|
|
@@ -738,24 +745,24 @@ const Lu = () => ps(vl), AT = () => {
|
|
|
738
745
|
});
|
|
739
746
|
}, [e.clientId]), St(() => {
|
|
740
747
|
if (s) {
|
|
741
|
-
const
|
|
742
|
-
if (e.mergetags && !
|
|
748
|
+
const W = Ts.getFeatureEnabled("DYNAMIC_RENDER");
|
|
749
|
+
if (e.mergetags && !W)
|
|
743
750
|
throw new Error("Current plan do not support mergetags");
|
|
744
751
|
}
|
|
745
752
|
}, [s, e.mergetags]);
|
|
746
|
-
const U = e.children, _ = e.footer,
|
|
747
|
-
(
|
|
748
|
-
const
|
|
749
|
-
|
|
753
|
+
const U = e.children, _ = e.footer, B = e.onPageChange, q = Au(
|
|
754
|
+
(W) => {
|
|
755
|
+
const le = W[0];
|
|
756
|
+
B == null || B(le, Q);
|
|
750
757
|
},
|
|
751
|
-
[
|
|
752
|
-
),
|
|
753
|
-
editor:
|
|
758
|
+
[B, Q]
|
|
759
|
+
), V = e.EnhanceProvider, w = Eu(() => ({
|
|
760
|
+
editor: Q,
|
|
754
761
|
value: P,
|
|
755
762
|
initialValue: P,
|
|
756
|
-
onChange:
|
|
757
|
-
}), [P,
|
|
758
|
-
return s ? g ? /* @__PURE__ */ E.createElement("div", { dangerouslySetInnerHTML: { __html: sl } }) : /* @__PURE__ */ E.createElement(mg, D({},
|
|
763
|
+
onChange: q
|
|
764
|
+
}), [P, Q, q]);
|
|
765
|
+
return s ? g ? /* @__PURE__ */ E.createElement("div", { dangerouslySetInnerHTML: { __html: sl } }) : /* @__PURE__ */ E.createElement(mg, D({}, w), /* @__PURE__ */ E.createElement(Mg, { value: e }, /* @__PURE__ */ E.createElement(Ug, null, /* @__PURE__ */ E.createElement(Hg, null, /* @__PURE__ */ E.createElement("style", null, wg), V ? /* @__PURE__ */ E.createElement(V, null, U, _) : /* @__PURE__ */ E.createElement(E.Fragment, null, U, _))), /* @__PURE__ */ E.createElement(qg, null))) : /* @__PURE__ */ E.createElement(E.Fragment, null, a) || null;
|
|
759
766
|
}, qg = () => {
|
|
760
767
|
const e = Lu(), u = gu();
|
|
761
768
|
return St(() => {
|
|
@@ -785,23 +792,23 @@ const Ds = (e) => {
|
|
|
785
792
|
return;
|
|
786
793
|
const U = Qe.findDocumentOrShadowRoot(d), _ = () => {
|
|
787
794
|
a(!0);
|
|
788
|
-
},
|
|
795
|
+
}, B = () => {
|
|
789
796
|
a(!1);
|
|
790
797
|
};
|
|
791
|
-
return U.addEventListener("compositionstart", _), U.addEventListener("compositionend",
|
|
792
|
-
U.removeEventListener("compositionstart", _), U.removeEventListener("compositionend",
|
|
798
|
+
return U.addEventListener("compositionstart", _), U.addEventListener("compositionend", B), () => {
|
|
799
|
+
U.removeEventListener("compositionstart", _), U.removeEventListener("compositionend", B);
|
|
793
800
|
};
|
|
794
801
|
}, [d, s]);
|
|
795
802
|
const x = e.text;
|
|
796
803
|
let v = e.children;
|
|
797
|
-
const
|
|
798
|
-
return x.bold && (v = /* @__PURE__ */ E.createElement("strong", null, v)), x.italic && (v = /* @__PURE__ */ E.createElement("em", null, v)), x.underline && (v = /* @__PURE__ */ E.createElement("u", null, v)), x.strikethrough && (v = /* @__PURE__ */ E.createElement("del", null, v)), x.link && (v = /* @__PURE__ */ E.createElement("a", { href: x.link.href, target: x.link.blank ? "_blank" : void 0 }, v)), x.color && (
|
|
804
|
+
const Q = { whiteSpace: "pre-wrap" };
|
|
805
|
+
return x.bold && (v = /* @__PURE__ */ E.createElement("strong", null, v)), x.italic && (v = /* @__PURE__ */ E.createElement("em", null, v)), x.underline && (v = /* @__PURE__ */ E.createElement("u", null, v)), x.strikethrough && (v = /* @__PURE__ */ E.createElement("del", null, v)), x.link && (v = /* @__PURE__ */ E.createElement("a", { href: x.link.href, target: x.link.blank ? "_blank" : void 0 }, v)), x.color && (Q.color = x.color), x.bgColor && (Q.backgroundColor = x.bgColor), x.fontSize && (Q.fontSize = x.fontSize), x.fontFamily && (Q.fontFamily = x.fontFamily), /* @__PURE__ */ E.createElement(
|
|
799
806
|
"span",
|
|
800
807
|
J(D({
|
|
801
808
|
contentEditable: e.contentUneditable ? !1 : void 0,
|
|
802
809
|
"data-placeholder": xl("Type '/' for commands")
|
|
803
810
|
}, e.attributes), {
|
|
804
|
-
style:
|
|
811
|
+
style: Q,
|
|
805
812
|
className: N
|
|
806
813
|
}),
|
|
807
814
|
v
|
|
@@ -821,14 +828,14 @@ const Vg = (d) => {
|
|
|
821
828
|
"title",
|
|
822
829
|
"windowRef"
|
|
823
830
|
]);
|
|
824
|
-
const [N, x] = Vu(null), v = (
|
|
825
|
-
var _,
|
|
826
|
-
const P = (_ =
|
|
831
|
+
const [N, x] = Vu(null), v = (Q) => {
|
|
832
|
+
var _, B;
|
|
833
|
+
const P = (_ = Q.target) == null ? void 0 : _.contentWindow;
|
|
827
834
|
if (!P)
|
|
828
835
|
return;
|
|
829
836
|
a == null || a(P);
|
|
830
837
|
const U = P.document.body;
|
|
831
|
-
x(U), (
|
|
838
|
+
x(U), (B = s.onLoad) == null || B.call(s, Q);
|
|
832
839
|
};
|
|
833
840
|
return /* @__PURE__ */ E.createElement(
|
|
834
841
|
"iframe",
|
|
@@ -894,25 +901,25 @@ const Vg = (d) => {
|
|
|
894
901
|
), {
|
|
895
902
|
selectedNodePath: x,
|
|
896
903
|
hoverNodePath: v,
|
|
897
|
-
dragNodePath:
|
|
904
|
+
dragNodePath: Q,
|
|
898
905
|
dragoverNodePath: P,
|
|
899
906
|
universalElementPath: U,
|
|
900
907
|
activeTab: _
|
|
901
908
|
} = ra(), {
|
|
902
|
-
ElementHover:
|
|
903
|
-
ElementSelected:
|
|
904
|
-
ElementPlaceholder:
|
|
905
|
-
ElementDragover:
|
|
906
|
-
} = Lu(),
|
|
909
|
+
ElementHover: B,
|
|
910
|
+
ElementSelected: q,
|
|
911
|
+
ElementPlaceholder: V,
|
|
912
|
+
ElementDragover: w
|
|
913
|
+
} = Lu(), W = Qe.findPath(d, u.element), le = W.join("-"), he = !!(x && je.equals(x, W)), ge = !!(v && je.equals(v, W)), j = !!(Q && je.equals(Q, W)), Ee = !!(P && je.equals(P, W)), pe = x == null ? void 0 : x.join("-").includes(le), oe = Eu(() => {
|
|
907
914
|
const re = D({}, u.attributes);
|
|
908
|
-
return re && (re["data-slate-selected"] = he || void 0, re["data-slate-hover"] = ge || void 0, re["data-slate-dragging"] = j || void 0, re["data-slate-dragover"] =
|
|
915
|
+
return re && (re["data-slate-selected"] = he || void 0, re["data-slate-hover"] = ge || void 0, re["data-slate-dragging"] = j || void 0, re["data-slate-dragover"] = Ee || void 0, re["data-slate-focus"] = pe || void 0, re["data-slate-universal-editing"] = U && je.equals(U, W) || void 0), re;
|
|
909
916
|
}, [
|
|
910
917
|
j,
|
|
911
|
-
|
|
918
|
+
Ee,
|
|
912
919
|
pe,
|
|
913
920
|
ge,
|
|
914
921
|
he,
|
|
915
|
-
|
|
922
|
+
W,
|
|
916
923
|
u.attributes,
|
|
917
924
|
U
|
|
918
925
|
]);
|
|
@@ -932,52 +939,52 @@ const Vg = (d) => {
|
|
|
932
939
|
e,
|
|
933
940
|
J(D({}, u), {
|
|
934
941
|
attributes: oe,
|
|
935
|
-
placeholder: /* @__PURE__ */ E.createElement(E.Fragment, null,
|
|
936
|
-
|
|
942
|
+
placeholder: /* @__PURE__ */ E.createElement(E.Fragment, null, V && g && /* @__PURE__ */ E.createElement(
|
|
943
|
+
V,
|
|
937
944
|
{
|
|
938
945
|
element: u.element,
|
|
939
946
|
isSelected: he,
|
|
940
947
|
isHover: ge,
|
|
941
948
|
nodeElement: g,
|
|
942
|
-
path:
|
|
949
|
+
path: W
|
|
943
950
|
}
|
|
944
|
-
),
|
|
945
|
-
|
|
951
|
+
), Ee && w && g && /* @__PURE__ */ E.createElement(
|
|
952
|
+
w,
|
|
946
953
|
{
|
|
947
954
|
element: u.element,
|
|
948
955
|
nodeElement: g,
|
|
949
|
-
path:
|
|
956
|
+
path: W
|
|
950
957
|
}
|
|
951
|
-
), ge &&
|
|
952
|
-
|
|
958
|
+
), ge && B && g && /* @__PURE__ */ E.createElement(
|
|
959
|
+
B,
|
|
953
960
|
{
|
|
954
961
|
element: u.element,
|
|
955
962
|
isSelected: he,
|
|
956
963
|
nodeElement: g,
|
|
957
|
-
path:
|
|
964
|
+
path: W
|
|
958
965
|
}
|
|
959
|
-
), he &&
|
|
960
|
-
|
|
966
|
+
), he && q && g && /* @__PURE__ */ E.createElement(
|
|
967
|
+
q,
|
|
961
968
|
{
|
|
962
969
|
element: u.element,
|
|
963
970
|
isHover: ge,
|
|
964
971
|
nodeElement: g,
|
|
965
|
-
path:
|
|
972
|
+
path: W
|
|
966
973
|
}
|
|
967
974
|
))
|
|
968
975
|
})
|
|
969
976
|
), [
|
|
970
977
|
u,
|
|
971
978
|
oe,
|
|
972
|
-
|
|
979
|
+
V,
|
|
973
980
|
g,
|
|
974
981
|
he,
|
|
975
982
|
ge,
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
983
|
+
W,
|
|
984
|
+
Ee,
|
|
985
|
+
w,
|
|
986
|
+
B,
|
|
987
|
+
q
|
|
981
988
|
]);
|
|
982
989
|
}, Xg = /[\d.,]*(\D*)$/;
|
|
983
990
|
function Lt(e, u = {}) {
|
|
@@ -998,7 +1005,7 @@ gn.exports;
|
|
|
998
1005
|
(function(a) {
|
|
999
1006
|
var s = u, d = e && e.exports == s && e, g = typeof xu == "object" && xu;
|
|
1000
1007
|
(g.global === g || g.window === g) && (a = g);
|
|
1001
|
-
var N = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, x = /[\x01-\x7F]/g, v = /[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, V = /<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g, P = { "": "shy", "": "zwnj", "": "zwj", "": "lrm", "": "ic", "": "it", "": "af", "": "rlm", "": "ZeroWidthSpace", "": "NoBreak", "̑": "DownBreve", "⃛": "tdot", "⃜": "DotDot", " ": "Tab", "\n": "NewLine", " ": "puncsp", " ": "MediumSpace", " ": "thinsp", " ": "hairsp", " ": "emsp13", " ": "ensp", " ": "emsp14", " ": "emsp", " ": "numsp", " ": "nbsp", " ": "ThickSpace", "‾": "oline", _: "lowbar", "‐": "dash", "–": "ndash", "—": "mdash", "―": "horbar", ",": "comma", ";": "semi", "⁏": "bsemi", ":": "colon", "⩴": "Colone", "!": "excl", "¡": "iexcl", "?": "quest", "¿": "iquest", ".": "period", "‥": "nldr", "…": "mldr", "·": "middot", "'": "apos", "‘": "lsquo", "’": "rsquo", "‚": "sbquo", "‹": "lsaquo", "›": "rsaquo", '"': "quot", "“": "ldquo", "”": "rdquo", "„": "bdquo", "«": "laquo", "»": "raquo", "(": "lpar", ")": "rpar", "[": "lsqb", "]": "rsqb", "{": "lcub", "}": "rcub", "⌈": "lceil", "⌉": "rceil", "⌊": "lfloor", "⌋": "rfloor", "⦅": "lopar", "⦆": "ropar", "⦋": "lbrke", "⦌": "rbrke", "⦍": "lbrkslu", "⦎": "rbrksld", "⦏": "lbrksld", "⦐": "rbrkslu", "⦑": "langd", "⦒": "rangd", "⦓": "lparlt", "⦔": "rpargt", "⦕": "gtlPar", "⦖": "ltrPar", "⟦": "lobrk", "⟧": "robrk", "⟨": "lang", "⟩": "rang", "⟪": "Lang", "⟫": "Rang", "⟬": "loang", "⟭": "roang", "❲": "lbbrk", "❳": "rbbrk", "‖": "Vert", "§": "sect", "¶": "para", "@": "commat", "*": "ast", "/": "sol", undefined: null, "&": "amp", "#": "num", "%": "percnt", "‰": "permil", "‱": "pertenk", "†": "dagger", "‡": "Dagger", "•": "bull", "⁃": "hybull", "′": "prime", "″": "Prime", "‴": "tprime", "⁗": "qprime", "‵": "bprime", "⁁": "caret", "`": "grave", "´": "acute", "˜": "tilde", "^": "Hat", "¯": "macr", "˘": "breve", "˙": "dot", "¨": "die", "˚": "ring", "˝": "dblac", "¸": "cedil", "˛": "ogon", "ˆ": "circ", "ˇ": "caron", "°": "deg", "©": "copy", "®": "reg", "℗": "copysr", "℘": "wp", "℞": "rx", "℧": "mho", "℩": "iiota", "←": "larr", "↚": "nlarr", "→": "rarr", "↛": "nrarr", "↑": "uarr", "↓": "darr", "↔": "harr", "↮": "nharr", "↕": "varr", "↖": "nwarr", "↗": "nearr", "↘": "searr", "↙": "swarr", "↝": "rarrw", "↝̸": "nrarrw", "↞": "Larr", "↟": "Uarr", "↠": "Rarr", "↡": "Darr", "↢": "larrtl", "↣": "rarrtl", "↤": "mapstoleft", "↥": "mapstoup", "↦": "map", "↧": "mapstodown", "↩": "larrhk", "↪": "rarrhk", "↫": "larrlp", "↬": "rarrlp", "↭": "harrw", "↰": "lsh", "↱": "rsh", "↲": "ldsh", "↳": "rdsh", "↵": "crarr", "↶": "cularr", "↷": "curarr", "↺": "olarr", "↻": "orarr", "↼": "lharu", "↽": "lhard", "↾": "uharr", "↿": "uharl", "⇀": "rharu", "⇁": "rhard", "⇂": "dharr", "⇃": "dharl", "⇄": "rlarr", "⇅": "udarr", "⇆": "lrarr", "⇇": "llarr", "⇈": "uuarr", "⇉": "rrarr", "⇊": "ddarr", "⇋": "lrhar", "⇌": "rlhar", "⇐": "lArr", "⇍": "nlArr", "⇑": "uArr", "⇒": "rArr", "⇏": "nrArr", "⇓": "dArr", "⇔": "iff", "⇎": "nhArr", "⇕": "vArr", "⇖": "nwArr", "⇗": "neArr", "⇘": "seArr", "⇙": "swArr", "⇚": "lAarr", "⇛": "rAarr", "⇝": "zigrarr", "⇤": "larrb", "⇥": "rarrb", "⇵": "duarr", "⇽": "loarr", "⇾": "roarr", "⇿": "hoarr", "∀": "forall", "∁": "comp", "∂": "part", "∂̸": "npart", "∃": "exist", "∄": "nexist", "∅": "empty", "∇": "Del", "∈": "in", "∉": "notin", "∋": "ni", "∌": "notni", "϶": "bepsi", "∏": "prod", "∐": "coprod", "∑": "sum", "+": "plus", "±": "pm", "÷": "div", "×": "times", "<": "lt", "≮": "nlt", "<⃒": "nvlt", "=": "equals", "≠": "ne", "=⃥": "bne", "⩵": "Equal", ">": "gt", "≯": "ngt", ">⃒": "nvgt", "¬": "not", "|": "vert", "¦": "brvbar", "−": "minus", "∓": "mp", "∔": "plusdo", "⁄": "frasl", "∖": "setmn", "∗": "lowast", "∘": "compfn", "√": "Sqrt", "∝": "prop", "∞": "infin", "∟": "angrt", "∠": "ang", "∠⃒": "nang", "∡": "angmsd", "∢": "angsph", "∣": "mid", "∤": "nmid", "∥": "par", "∦": "npar", "∧": "and", "∨": "or", "∩": "cap", "∩︀": "caps", "∪": "cup", "∪︀": "cups", "∫": "int", "∬": "Int", "∭": "tint", "⨌": "qint", "∮": "oint", "∯": "Conint", "∰": "Cconint", "∱": "cwint", "∲": "cwconint", "∳": "awconint", "∴": "there4", "∵": "becaus", "∶": "ratio", "∷": "Colon", "∸": "minusd", "∺": "mDDot", "∻": "homtht", "∼": "sim", "≁": "nsim", "∼⃒": "nvsim", "∽": "bsim", "∽̱": "race", "∾": "ac", "∾̳": "acE", "∿": "acd", "≀": "wr", "≂": "esim", "≂̸": "nesim", "≃": "sime", "≄": "nsime", "≅": "cong", "≇": "ncong", "≆": "simne", "≈": "ap", "≉": "nap", "≊": "ape", "≋": "apid", "≋̸": "napid", "≌": "bcong", "≍": "CupCap", "≭": "NotCupCap", "≍⃒": "nvap", "≎": "bump", "≎̸": "nbump", "≏": "bumpe", "≏̸": "nbumpe", "≐": "doteq", "≐̸": "nedot", "≑": "eDot", "≒": "efDot", "≓": "erDot", "≔": "colone", "≕": "ecolon", "≖": "ecir", "≗": "cire", "≙": "wedgeq", "≚": "veeeq", "≜": "trie", "≟": "equest", "≡": "equiv", "≢": "nequiv", "≡⃥": "bnequiv", "≤": "le", "≰": "nle", "≤⃒": "nvle", "≥": "ge", "≱": "nge", "≥⃒": "nvge", "≦": "lE", "≦̸": "nlE", "≧": "gE", "≧̸": "ngE", "≨︀": "lvnE", "≨": "lnE", "≩": "gnE", "≩︀": "gvnE", "≪": "ll", "≪̸": "nLtv", "≪⃒": "nLt", "≫": "gg", "≫̸": "nGtv", "≫⃒": "nGt", "≬": "twixt", "≲": "lsim", "≴": "nlsim", "≳": "gsim", "≵": "ngsim", "≶": "lg", "≸": "ntlg", "≷": "gl", "≹": "ntgl", "≺": "pr", "⊀": "npr", "≻": "sc", "⊁": "nsc", "≼": "prcue", "⋠": "nprcue", "≽": "sccue", "⋡": "nsccue", "≾": "prsim", "≿": "scsim", "≿̸": "NotSucceedsTilde", "⊂": "sub", "⊄": "nsub", "⊂⃒": "vnsub", "⊃": "sup", "⊅": "nsup", "⊃⃒": "vnsup", "⊆": "sube", "⊈": "nsube", "⊇": "supe", "⊉": "nsupe", "⊊︀": "vsubne", "⊊": "subne", "⊋︀": "vsupne", "⊋": "supne", "⊍": "cupdot", "⊎": "uplus", "⊏": "sqsub", "⊏̸": "NotSquareSubset", "⊐": "sqsup", "⊐̸": "NotSquareSuperset", "⊑": "sqsube", "⋢": "nsqsube", "⊒": "sqsupe", "⋣": "nsqsupe", "⊓": "sqcap", "⊓︀": "sqcaps", "⊔": "sqcup", "⊔︀": "sqcups", "⊕": "oplus", "⊖": "ominus", "⊗": "otimes", "⊘": "osol", "⊙": "odot", "⊚": "ocir", "⊛": "oast", "⊝": "odash", "⊞": "plusb", "⊟": "minusb", "⊠": "timesb", "⊡": "sdotb", "⊢": "vdash", "⊬": "nvdash", "⊣": "dashv", "⊤": "top", "⊥": "bot", "⊧": "models", "⊨": "vDash", "⊭": "nvDash", "⊩": "Vdash", "⊮": "nVdash", "⊪": "Vvdash", "⊫": "VDash", "⊯": "nVDash", "⊰": "prurel", "⊲": "vltri", "⋪": "nltri", "⊳": "vrtri", "⋫": "nrtri", "⊴": "ltrie", "⋬": "nltrie", "⊴⃒": "nvltrie", "⊵": "rtrie", "⋭": "nrtrie", "⊵⃒": "nvrtrie", "⊶": "origof", "⊷": "imof", "⊸": "mumap", "⊹": "hercon", "⊺": "intcal", "⊻": "veebar", "⊽": "barvee", "⊾": "angrtvb", "⊿": "lrtri", "⋀": "Wedge", "⋁": "Vee", "⋂": "xcap", "⋃": "xcup", "⋄": "diam", "⋅": "sdot", "⋆": "Star", "⋇": "divonx", "⋈": "bowtie", "⋉": "ltimes", "⋊": "rtimes", "⋋": "lthree", "⋌": "rthree", "⋍": "bsime", "⋎": "cuvee", "⋏": "cuwed", "⋐": "Sub", "⋑": "Sup", "⋒": "Cap", "⋓": "Cup", "⋔": "fork", "⋕": "epar", "⋖": "ltdot", "⋗": "gtdot", "⋘": "Ll", "⋘̸": "nLl", "⋙": "Gg", "⋙̸": "nGg", "⋚︀": "lesg", "⋚": "leg", "⋛": "gel", "⋛︀": "gesl", "⋞": "cuepr", "⋟": "cuesc", "⋦": "lnsim", "⋧": "gnsim", "⋨": "prnsim", "⋩": "scnsim", "⋮": "vellip", "⋯": "ctdot", "⋰": "utdot", "⋱": "dtdot", "⋲": "disin", "⋳": "isinsv", "⋴": "isins", "⋵": "isindot", "⋵̸": "notindot", "⋶": "notinvc", "⋷": "notinvb", "⋹": "isinE", "⋹̸": "notinE", "⋺": "nisd", "⋻": "xnis", "⋼": "nis", "⋽": "notnivc", "⋾": "notnivb", "⌅": "barwed", "⌆": "Barwed", "⌌": "drcrop", "⌍": "dlcrop", "⌎": "urcrop", "⌏": "ulcrop", "⌐": "bnot", "⌒": "profline", "⌓": "profsurf", "⌕": "telrec", "⌖": "target", "⌜": "ulcorn", "⌝": "urcorn", "⌞": "dlcorn", "⌟": "drcorn", "⌢": "frown", "⌣": "smile", "⌭": "cylcty", "⌮": "profalar", "⌶": "topbot", "⌽": "ovbar", "⌿": "solbar", "⍼": "angzarr", "⎰": "lmoust", "⎱": "rmoust", "⎴": "tbrk", "⎵": "bbrk", "⎶": "bbrktbrk", "⏜": "OverParenthesis", "⏝": "UnderParenthesis", "⏞": "OverBrace", "⏟": "UnderBrace", "⏢": "trpezium", "⏧": "elinters", "␣": "blank", "─": "boxh", "│": "boxv", "┌": "boxdr", "┐": "boxdl", "└": "boxur", "┘": "boxul", "├": "boxvr", "┤": "boxvl", "┬": "boxhd", "┴": "boxhu", "┼": "boxvh", "═": "boxH", "║": "boxV", "╒": "boxdR", "╓": "boxDr", "╔": "boxDR", "╕": "boxdL", "╖": "boxDl", "╗": "boxDL", "╘": "boxuR", "╙": "boxUr", "╚": "boxUR", "╛": "boxuL", "╜": "boxUl", "╝": "boxUL", "╞": "boxvR", "╟": "boxVr", "╠": "boxVR", "╡": "boxvL", "╢": "boxVl", "╣": "boxVL", "╤": "boxHd", "╥": "boxhD", "╦": "boxHD", "╧": "boxHu", "╨": "boxhU", "╩": "boxHU", "╪": "boxvH", "╫": "boxVh", "╬": "boxVH", "▀": "uhblk", "▄": "lhblk", "█": "block", "░": "blk14", "▒": "blk12", "▓": "blk34", "□": "squ", "▪": "squf", "▫": "EmptyVerySmallSquare", "▭": "rect", "▮": "marker", "▱": "fltns", "△": "xutri", "▴": "utrif", "▵": "utri", "▸": "rtrif", "▹": "rtri", "▽": "xdtri", "▾": "dtrif", "▿": "dtri", "◂": "ltrif", "◃": "ltri", "◊": "loz", "○": "cir", "◬": "tridot", "◯": "xcirc", "◸": "ultri", "◹": "urtri", "◺": "lltri", "◻": "EmptySmallSquare", "◼": "FilledSmallSquare", "★": "starf", "☆": "star", "☎": "phone", "♀": "female", "♂": "male", "♠": "spades", "♣": "clubs", "♥": "hearts", "♦": "diams", "♪": "sung", "✓": "check", "✗": "cross", "✠": "malt", "✶": "sext", "❘": "VerticalSeparator", "⟈": "bsolhsub", "⟉": "suphsol", "⟵": "xlarr", "⟶": "xrarr", "⟷": "xharr", "⟸": "xlArr", "⟹": "xrArr", "⟺": "xhArr", "⟼": "xmap", "⟿": "dzigrarr", "⤂": "nvlArr", "⤃": "nvrArr", "⤄": "nvHarr", "⤅": "Map", "⤌": "lbarr", "⤍": "rbarr", "⤎": "lBarr", "⤏": "rBarr", "⤐": "RBarr", "⤑": "DDotrahd", "⤒": "UpArrowBar", "⤓": "DownArrowBar", "⤖": "Rarrtl", "⤙": "latail", "⤚": "ratail", "⤛": "lAtail", "⤜": "rAtail", "⤝": "larrfs", "⤞": "rarrfs", "⤟": "larrbfs", "⤠": "rarrbfs", "⤣": "nwarhk", "⤤": "nearhk", "⤥": "searhk", "⤦": "swarhk", "⤧": "nwnear", "⤨": "toea", "⤩": "tosa", "⤪": "swnwar", "⤳": "rarrc", "⤳̸": "nrarrc", "⤵": "cudarrr", "⤶": "ldca", "⤷": "rdca", "⤸": "cudarrl", "⤹": "larrpl", "⤼": "curarrm", "⤽": "cularrp", "⥅": "rarrpl", "⥈": "harrcir", "⥉": "Uarrocir", "⥊": "lurdshar", "⥋": "ldrushar", "⥎": "LeftRightVector", "⥏": "RightUpDownVector", "⥐": "DownLeftRightVector", "⥑": "LeftUpDownVector", "⥒": "LeftVectorBar", "⥓": "RightVectorBar", "⥔": "RightUpVectorBar", "⥕": "RightDownVectorBar", "⥖": "DownLeftVectorBar", "⥗": "DownRightVectorBar", "⥘": "LeftUpVectorBar", "⥙": "LeftDownVectorBar", "⥚": "LeftTeeVector", "⥛": "RightTeeVector", "⥜": "RightUpTeeVector", "⥝": "RightDownTeeVector", "⥞": "DownLeftTeeVector", "⥟": "DownRightTeeVector", "⥠": "LeftUpTeeVector", "⥡": "LeftDownTeeVector", "⥢": "lHar", "⥣": "uHar", "⥤": "rHar", "⥥": "dHar", "⥦": "luruhar", "⥧": "ldrdhar", "⥨": "ruluhar", "⥩": "rdldhar", "⥪": "lharul", "⥫": "llhard", "⥬": "rharul", "⥭": "lrhard", "⥮": "udhar", "⥯": "duhar", "⥰": "RoundImplies", "⥱": "erarr", "⥲": "simrarr", "⥳": "larrsim", "⥴": "rarrsim", "⥵": "rarrap", "⥶": "ltlarr", "⥸": "gtrarr", "⥹": "subrarr", "⥻": "suplarr", "⥼": "lfisht", "⥽": "rfisht", "⥾": "ufisht", "⥿": "dfisht", "⦚": "vzigzag", "⦜": "vangrt", "⦝": "angrtvbd", "⦤": "ange", "⦥": "range", "⦦": "dwangle", "⦧": "uwangle", "⦨": "angmsdaa", "⦩": "angmsdab", "⦪": "angmsdac", "⦫": "angmsdad", "⦬": "angmsdae", "⦭": "angmsdaf", "⦮": "angmsdag", "⦯": "angmsdah", "⦰": "bemptyv", "⦱": "demptyv", "⦲": "cemptyv", "⦳": "raemptyv", "⦴": "laemptyv", "⦵": "ohbar", "⦶": "omid", "⦷": "opar", "⦹": "operp", "⦻": "olcross", "⦼": "odsold", "⦾": "olcir", "⦿": "ofcir", "⧀": "olt", "⧁": "ogt", "⧂": "cirscir", "⧃": "cirE", "⧄": "solb", "⧅": "bsolb", "⧉": "boxbox", "⧍": "trisb", "⧎": "rtriltri", "⧏": "LeftTriangleBar", "⧏̸": "NotLeftTriangleBar", "⧐": "RightTriangleBar", "⧐̸": "NotRightTriangleBar", "⧜": "iinfin", "⧝": "infintie", "⧞": "nvinfin", "⧣": "eparsl", "⧤": "smeparsl", "⧥": "eqvparsl", "⧫": "lozf", "⧴": "RuleDelayed", "⧶": "dsol", "⨀": "xodot", "⨁": "xoplus", "⨂": "xotime", "⨄": "xuplus", "⨆": "xsqcup", "⨍": "fpartint", "⨐": "cirfnint", "⨑": "awint", "⨒": "rppolint", "⨓": "scpolint", "⨔": "npolint", "⨕": "pointint", "⨖": "quatint", "⨗": "intlarhk", "⨢": "pluscir", "⨣": "plusacir", "⨤": "simplus", "⨥": "plusdu", "⨦": "plussim", "⨧": "plustwo", "⨩": "mcomma", "⨪": "minusdu", "⨭": "loplus", "⨮": "roplus", "⨯": "Cross", "⨰": "timesd", "⨱": "timesbar", "⨳": "smashp", "⨴": "lotimes", "⨵": "rotimes", "⨶": "otimesas", "⨷": "Otimes", "⨸": "odiv", "⨹": "triplus", "⨺": "triminus", "⨻": "tritime", "⨼": "iprod", "⨿": "amalg", "⩀": "capdot", "⩂": "ncup", "⩃": "ncap", "⩄": "capand", "⩅": "cupor", "⩆": "cupcap", "⩇": "capcup", "⩈": "cupbrcap", "⩉": "capbrcup", "⩊": "cupcup", "⩋": "capcap", "⩌": "ccups", "⩍": "ccaps", "⩐": "ccupssm", "⩓": "And", "⩔": "Or", "⩕": "andand", "⩖": "oror", "⩗": "orslope", "⩘": "andslope", "⩚": "andv", "⩛": "orv", "⩜": "andd", "⩝": "ord", "⩟": "wedbar", "⩦": "sdote", "⩪": "simdot", "⩭": "congdot", "⩭̸": "ncongdot", "⩮": "easter", "⩯": "apacir", "⩰": "apE", "⩰̸": "napE", "⩱": "eplus", "⩲": "pluse", "⩳": "Esim", "⩷": "eDDot", "⩸": "equivDD", "⩹": "ltcir", "⩺": "gtcir", "⩻": "ltquest", "⩼": "gtquest", "⩽": "les", "⩽̸": "nles", "⩾": "ges", "⩾̸": "nges", "⩿": "lesdot", "⪀": "gesdot", "⪁": "lesdoto", "⪂": "gesdoto", "⪃": "lesdotor", "⪄": "gesdotol", "⪅": "lap", "⪆": "gap", "⪇": "lne", "⪈": "gne", "⪉": "lnap", "⪊": "gnap", "⪋": "lEg", "⪌": "gEl", "⪍": "lsime", "⪎": "gsime", "⪏": "lsimg", "⪐": "gsiml", "⪑": "lgE", "⪒": "glE", "⪓": "lesges", "⪔": "gesles", "⪕": "els", "⪖": "egs", "⪗": "elsdot", "⪘": "egsdot", "⪙": "el", "⪚": "eg", "⪝": "siml", "⪞": "simg", "⪟": "simlE", "⪠": "simgE", "⪡": "LessLess", "⪡̸": "NotNestedLessLess", "⪢": "GreaterGreater", "⪢̸": "NotNestedGreaterGreater", "⪤": "glj", "⪥": "gla", "⪦": "ltcc", "⪧": "gtcc", "⪨": "lescc", "⪩": "gescc", "⪪": "smt", "⪫": "lat", "⪬": "smte", "⪬︀": "smtes", "⪭": "late", "⪭︀": "lates", "⪮": "bumpE", "⪯": "pre", "⪯̸": "npre", "⪰": "sce", "⪰̸": "nsce", "⪳": "prE", "⪴": "scE", "⪵": "prnE", "⪶": "scnE", "⪷": "prap", "⪸": "scap", "⪹": "prnap", "⪺": "scnap", "⪻": "Pr", "⪼": "Sc", "⪽": "subdot", "⪾": "supdot", "⪿": "subplus", "⫀": "supplus", "⫁": "submult", "⫂": "supmult", "⫃": "subedot", "⫄": "supedot", "⫅": "subE", "⫅̸": "nsubE", "⫆": "supE", "⫆̸": "nsupE", "⫇": "subsim", "⫈": "supsim", "⫋︀": "vsubnE", "⫋": "subnE", "⫌︀": "vsupnE", "⫌": "supnE", "⫏": "csub", "⫐": "csup", "⫑": "csube", "⫒": "csupe", "⫓": "subsup", "⫔": "supsub", "⫕": "subsub", "⫖": "supsup", "⫗": "suphsub", "⫘": "supdsub", "⫙": "forkv", "⫚": "topfork", "⫛": "mlcp", "⫤": "Dashv", "⫦": "Vdashl", "⫧": "Barv", "⫨": "vBar", "⫩": "vBarv", "⫫": "Vbar", "⫬": "Not", "⫭": "bNot", "⫮": "rnmid", "⫯": "cirmid", "⫰": "midcir", "⫱": "topcir", "⫲": "nhpar", "⫳": "parsim", "⫽": "parsl", "⫽⃥": "nparsl", "♭": "flat", "♮": "natur", "♯": "sharp", "¤": "curren", "¢": "cent", $: "dollar", "£": "pound", "¥": "yen", "€": "euro", "¹": "sup1", "½": "half", "⅓": "frac13", "¼": "frac14", "⅕": "frac15", "⅙": "frac16", "⅛": "frac18", "²": "sup2", "⅔": "frac23", "⅖": "frac25", "³": "sup3", "¾": "frac34", "⅗": "frac35", "⅜": "frac38", "⅘": "frac45", "⅚": "frac56", "⅝": "frac58", "⅞": "frac78", "𝒶": "ascr", "𝕒": "aopf", "𝔞": "afr", "𝔸": "Aopf", "𝔄": "Afr", "𝒜": "Ascr", ª: "ordf", á: "aacute", Á: "Aacute", à: "agrave", À: "Agrave", ă: "abreve", Ă: "Abreve", â: "acirc", Â: "Acirc", å: "aring", Å: "angst", ä: "auml", Ä: "Auml", ã: "atilde", Ã: "Atilde", ą: "aogon", Ą: "Aogon", ā: "amacr", Ā: "Amacr", æ: "aelig", Æ: "AElig", "𝒷": "bscr", "𝕓": "bopf", "𝔟": "bfr", "𝔹": "Bopf", ℬ: "Bscr", "𝔅": "Bfr", "𝔠": "cfr", "𝒸": "cscr", "𝕔": "copf", ℭ: "Cfr", "𝒞": "Cscr", ℂ: "Copf", ć: "cacute", Ć: "Cacute", ĉ: "ccirc", Ĉ: "Ccirc", č: "ccaron", Č: "Ccaron", ċ: "cdot", Ċ: "Cdot", ç: "ccedil", Ç: "Ccedil", "℅": "incare", "𝔡": "dfr", "ⅆ": "dd", "𝕕": "dopf", "𝒹": "dscr", "𝒟": "Dscr", "𝔇": "Dfr", "ⅅ": "DD", "𝔻": "Dopf", ď: "dcaron", Ď: "Dcaron", đ: "dstrok", Đ: "Dstrok", ð: "eth", Ð: "ETH", "ⅇ": "ee", ℯ: "escr", "𝔢": "efr", "𝕖": "eopf", ℰ: "Escr", "𝔈": "Efr", "𝔼": "Eopf", é: "eacute", É: "Eacute", è: "egrave", È: "Egrave", ê: "ecirc", Ê: "Ecirc", ě: "ecaron", Ě: "Ecaron", ë: "euml", Ë: "Euml", ė: "edot", Ė: "Edot", ę: "eogon", Ę: "Eogon", ē: "emacr", Ē: "Emacr", "𝔣": "ffr", "𝕗": "fopf", "𝒻": "fscr", "𝔉": "Ffr", "𝔽": "Fopf", ℱ: "Fscr", ff: "fflig", ffi: "ffilig", ffl: "ffllig", fi: "filig", fj: "fjlig", fl: "fllig", ƒ: "fnof", ℊ: "gscr", "𝕘": "gopf", "𝔤": "gfr", "𝒢": "Gscr", "𝔾": "Gopf", "𝔊": "Gfr", ǵ: "gacute", ğ: "gbreve", Ğ: "Gbreve", ĝ: "gcirc", Ĝ: "Gcirc", ġ: "gdot", Ġ: "Gdot", Ģ: "Gcedil", "𝔥": "hfr", ℎ: "planckh", "𝒽": "hscr", "𝕙": "hopf", ℋ: "Hscr", ℌ: "Hfr", ℍ: "Hopf", ĥ: "hcirc", Ĥ: "Hcirc", ℏ: "hbar", ħ: "hstrok", Ħ: "Hstrok", "𝕚": "iopf", "𝔦": "ifr", "𝒾": "iscr", "ⅈ": "ii", "𝕀": "Iopf", ℐ: "Iscr", ℑ: "Im", í: "iacute", Í: "Iacute", ì: "igrave", Ì: "Igrave", î: "icirc", Î: "Icirc", ï: "iuml", Ï: "Iuml", ĩ: "itilde", Ĩ: "Itilde", İ: "Idot", į: "iogon", Į: "Iogon", ī: "imacr", Ī: "Imacr", ij: "ijlig", IJ: "IJlig", ı: "imath", "𝒿": "jscr", "𝕛": "jopf", "𝔧": "jfr", "𝒥": "Jscr", "𝔍": "Jfr", "𝕁": "Jopf", ĵ: "jcirc", Ĵ: "Jcirc", "ȷ": "jmath", "𝕜": "kopf", "𝓀": "kscr", "𝔨": "kfr", "𝒦": "Kscr", "𝕂": "Kopf", "𝔎": "Kfr", ķ: "kcedil", Ķ: "Kcedil", "𝔩": "lfr", "𝓁": "lscr", ℓ: "ell", "𝕝": "lopf", ℒ: "Lscr", "𝔏": "Lfr", "𝕃": "Lopf", ĺ: "lacute", Ĺ: "Lacute", ľ: "lcaron", Ľ: "Lcaron", ļ: "lcedil", Ļ: "Lcedil", ł: "lstrok", Ł: "Lstrok", ŀ: "lmidot", Ŀ: "Lmidot", "𝔪": "mfr", "𝕞": "mopf", "𝓂": "mscr", "𝔐": "Mfr", "𝕄": "Mopf", ℳ: "Mscr", "𝔫": "nfr", "𝕟": "nopf", "𝓃": "nscr", ℕ: "Nopf", "𝒩": "Nscr", "𝔑": "Nfr", ń: "nacute", Ń: "Nacute", ň: "ncaron", Ň: "Ncaron", ñ: "ntilde", Ñ: "Ntilde", ņ: "ncedil", Ņ: "Ncedil", "№": "numero", ŋ: "eng", Ŋ: "ENG", "𝕠": "oopf", "𝔬": "ofr", ℴ: "oscr", "𝒪": "Oscr", "𝔒": "Ofr", "𝕆": "Oopf", º: "ordm", ó: "oacute", Ó: "Oacute", ò: "ograve", Ò: "Ograve", ô: "ocirc", Ô: "Ocirc", ö: "ouml", Ö: "Ouml", ő: "odblac", Ő: "Odblac", õ: "otilde", Õ: "Otilde", ø: "oslash", Ø: "Oslash", ō: "omacr", Ō: "Omacr", œ: "oelig", Œ: "OElig", "𝔭": "pfr", "𝓅": "pscr", "𝕡": "popf", ℙ: "Popf", "𝔓": "Pfr", "𝒫": "Pscr", "𝕢": "qopf", "𝔮": "qfr", "𝓆": "qscr", "𝒬": "Qscr", "𝔔": "Qfr", ℚ: "Qopf", ĸ: "kgreen", "𝔯": "rfr", "𝕣": "ropf", "𝓇": "rscr", ℛ: "Rscr", ℜ: "Re", ℝ: "Ropf", ŕ: "racute", Ŕ: "Racute", ř: "rcaron", Ř: "Rcaron", ŗ: "rcedil", Ŗ: "Rcedil", "𝕤": "sopf", "𝓈": "sscr", "𝔰": "sfr", "𝕊": "Sopf", "𝔖": "Sfr", "𝒮": "Sscr", "Ⓢ": "oS", ś: "sacute", Ś: "Sacute", ŝ: "scirc", Ŝ: "Scirc", š: "scaron", Š: "Scaron", ş: "scedil", Ş: "Scedil", ß: "szlig", "𝔱": "tfr", "𝓉": "tscr", "𝕥": "topf", "𝒯": "Tscr", "𝔗": "Tfr", "𝕋": "Topf", ť: "tcaron", Ť: "Tcaron", ţ: "tcedil", Ţ: "Tcedil", "™": "trade", ŧ: "tstrok", Ŧ: "Tstrok", "𝓊": "uscr", "𝕦": "uopf", "𝔲": "ufr", "𝕌": "Uopf", "𝔘": "Ufr", "𝒰": "Uscr", ú: "uacute", Ú: "Uacute", ù: "ugrave", Ù: "Ugrave", ŭ: "ubreve", Ŭ: "Ubreve", û: "ucirc", Û: "Ucirc", ů: "uring", Ů: "Uring", ü: "uuml", Ü: "Uuml", ű: "udblac", Ű: "Udblac", ũ: "utilde", Ũ: "Utilde", ų: "uogon", Ų: "Uogon", ū: "umacr", Ū: "Umacr", "𝔳": "vfr", "𝕧": "vopf", "𝓋": "vscr", "𝔙": "Vfr", "𝕍": "Vopf", "𝒱": "Vscr", "𝕨": "wopf", "𝓌": "wscr", "𝔴": "wfr", "𝒲": "Wscr", "𝕎": "Wopf", "𝔚": "Wfr", ŵ: "wcirc", Ŵ: "Wcirc", "𝔵": "xfr", "𝓍": "xscr", "𝕩": "xopf", "𝕏": "Xopf", "𝔛": "Xfr", "𝒳": "Xscr", "𝔶": "yfr", "𝓎": "yscr", "𝕪": "yopf", "𝒴": "Yscr", "𝔜": "Yfr", "𝕐": "Yopf", ý: "yacute", Ý: "Yacute", ŷ: "ycirc", Ŷ: "Ycirc", ÿ: "yuml", Ÿ: "Yuml", "𝓏": "zscr", "𝔷": "zfr", "𝕫": "zopf", ℨ: "Zfr", ℤ: "Zopf", "𝒵": "Zscr", ź: "zacute", Ź: "Zacute", ž: "zcaron", Ž: "Zcaron", ż: "zdot", Ż: "Zdot", Ƶ: "imped", þ: "thorn", Þ: "THORN", ʼn: "napos", α: "alpha", Α: "Alpha", β: "beta", Β: "Beta", γ: "gamma", Γ: "Gamma", δ: "delta", Δ: "Delta", ε: "epsi", "ϵ": "epsiv", Ε: "Epsilon", ϝ: "gammad", Ϝ: "Gammad", ζ: "zeta", Ζ: "Zeta", η: "eta", Η: "Eta", θ: "theta", ϑ: "thetav", Θ: "Theta", ι: "iota", Ι: "Iota", κ: "kappa", ϰ: "kappav", Κ: "Kappa", λ: "lambda", Λ: "Lambda", μ: "mu", µ: "micro", Μ: "Mu", ν: "nu", Ν: "Nu", ξ: "xi", Ξ: "Xi", ο: "omicron", Ο: "Omicron", π: "pi", ϖ: "piv", Π: "Pi", ρ: "rho", ϱ: "rhov", Ρ: "Rho", σ: "sigma", Σ: "Sigma", ς: "sigmaf", τ: "tau", Τ: "Tau", υ: "upsi", Υ: "Upsilon", ϒ: "Upsi", φ: "phi", ϕ: "phiv", Φ: "Phi", χ: "chi", Χ: "Chi", ψ: "psi", Ψ: "Psi", ω: "omega", Ω: "ohm", а: "acy", А: "Acy", б: "bcy", Б: "Bcy", в: "vcy", В: "Vcy", г: "gcy", Г: "Gcy", ѓ: "gjcy", Ѓ: "GJcy", д: "dcy", Д: "Dcy", ђ: "djcy", Ђ: "DJcy", е: "iecy", Е: "IEcy", ё: "iocy", Ё: "IOcy", є: "jukcy", Є: "Jukcy", ж: "zhcy", Ж: "ZHcy", з: "zcy", З: "Zcy", ѕ: "dscy", Ѕ: "DScy", и: "icy", И: "Icy", і: "iukcy", І: "Iukcy", ї: "yicy", Ї: "YIcy", й: "jcy", Й: "Jcy", ј: "jsercy", Ј: "Jsercy", к: "kcy", К: "Kcy", ќ: "kjcy", Ќ: "KJcy", л: "lcy", Л: "Lcy", љ: "ljcy", Љ: "LJcy", м: "mcy", М: "Mcy", н: "ncy", Н: "Ncy", њ: "njcy", Њ: "NJcy", о: "ocy", О: "Ocy", п: "pcy", П: "Pcy", р: "rcy", Р: "Rcy", с: "scy", С: "Scy", т: "tcy", Т: "Tcy", ћ: "tshcy", Ћ: "TSHcy", у: "ucy", У: "Ucy", ў: "ubrcy", Ў: "Ubrcy", ф: "fcy", Ф: "Fcy", х: "khcy", Х: "KHcy", ц: "tscy", Ц: "TScy", ч: "chcy", Ч: "CHcy", џ: "dzcy", Џ: "DZcy", ш: "shcy", Ш: "SHcy", щ: "shchcy", Щ: "SHCHcy", ъ: "hardcy", Ъ: "HARDcy", ы: "ycy", Ы: "Ycy", ь: "softcy", Ь: "SOFTcy", э: "ecy", Э: "Ecy", ю: "yucy", Ю: "YUcy", я: "yacy", Я: "YAcy", ℵ: "aleph", ℶ: "beth", ℷ: "gimel", ℸ: "daleth" }, U = /["&'<>`]/g, _ = {
|
|
1008
|
+
var N = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, x = /[\x01-\x7F]/g, v = /[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, Q = /<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g, P = { "": "shy", "": "zwnj", "": "zwj", "": "lrm", "": "ic", "": "it", "": "af", "": "rlm", "": "ZeroWidthSpace", "": "NoBreak", "̑": "DownBreve", "⃛": "tdot", "⃜": "DotDot", " ": "Tab", "\n": "NewLine", " ": "puncsp", " ": "MediumSpace", " ": "thinsp", " ": "hairsp", " ": "emsp13", " ": "ensp", " ": "emsp14", " ": "emsp", " ": "numsp", " ": "nbsp", " ": "ThickSpace", "‾": "oline", _: "lowbar", "‐": "dash", "–": "ndash", "—": "mdash", "―": "horbar", ",": "comma", ";": "semi", "⁏": "bsemi", ":": "colon", "⩴": "Colone", "!": "excl", "¡": "iexcl", "?": "quest", "¿": "iquest", ".": "period", "‥": "nldr", "…": "mldr", "·": "middot", "'": "apos", "‘": "lsquo", "’": "rsquo", "‚": "sbquo", "‹": "lsaquo", "›": "rsaquo", '"': "quot", "“": "ldquo", "”": "rdquo", "„": "bdquo", "«": "laquo", "»": "raquo", "(": "lpar", ")": "rpar", "[": "lsqb", "]": "rsqb", "{": "lcub", "}": "rcub", "⌈": "lceil", "⌉": "rceil", "⌊": "lfloor", "⌋": "rfloor", "⦅": "lopar", "⦆": "ropar", "⦋": "lbrke", "⦌": "rbrke", "⦍": "lbrkslu", "⦎": "rbrksld", "⦏": "lbrksld", "⦐": "rbrkslu", "⦑": "langd", "⦒": "rangd", "⦓": "lparlt", "⦔": "rpargt", "⦕": "gtlPar", "⦖": "ltrPar", "⟦": "lobrk", "⟧": "robrk", "⟨": "lang", "⟩": "rang", "⟪": "Lang", "⟫": "Rang", "⟬": "loang", "⟭": "roang", "❲": "lbbrk", "❳": "rbbrk", "‖": "Vert", "§": "sect", "¶": "para", "@": "commat", "*": "ast", "/": "sol", undefined: null, "&": "amp", "#": "num", "%": "percnt", "‰": "permil", "‱": "pertenk", "†": "dagger", "‡": "Dagger", "•": "bull", "⁃": "hybull", "′": "prime", "″": "Prime", "‴": "tprime", "⁗": "qprime", "‵": "bprime", "⁁": "caret", "`": "grave", "´": "acute", "˜": "tilde", "^": "Hat", "¯": "macr", "˘": "breve", "˙": "dot", "¨": "die", "˚": "ring", "˝": "dblac", "¸": "cedil", "˛": "ogon", "ˆ": "circ", "ˇ": "caron", "°": "deg", "©": "copy", "®": "reg", "℗": "copysr", "℘": "wp", "℞": "rx", "℧": "mho", "℩": "iiota", "←": "larr", "↚": "nlarr", "→": "rarr", "↛": "nrarr", "↑": "uarr", "↓": "darr", "↔": "harr", "↮": "nharr", "↕": "varr", "↖": "nwarr", "↗": "nearr", "↘": "searr", "↙": "swarr", "↝": "rarrw", "↝̸": "nrarrw", "↞": "Larr", "↟": "Uarr", "↠": "Rarr", "↡": "Darr", "↢": "larrtl", "↣": "rarrtl", "↤": "mapstoleft", "↥": "mapstoup", "↦": "map", "↧": "mapstodown", "↩": "larrhk", "↪": "rarrhk", "↫": "larrlp", "↬": "rarrlp", "↭": "harrw", "↰": "lsh", "↱": "rsh", "↲": "ldsh", "↳": "rdsh", "↵": "crarr", "↶": "cularr", "↷": "curarr", "↺": "olarr", "↻": "orarr", "↼": "lharu", "↽": "lhard", "↾": "uharr", "↿": "uharl", "⇀": "rharu", "⇁": "rhard", "⇂": "dharr", "⇃": "dharl", "⇄": "rlarr", "⇅": "udarr", "⇆": "lrarr", "⇇": "llarr", "⇈": "uuarr", "⇉": "rrarr", "⇊": "ddarr", "⇋": "lrhar", "⇌": "rlhar", "⇐": "lArr", "⇍": "nlArr", "⇑": "uArr", "⇒": "rArr", "⇏": "nrArr", "⇓": "dArr", "⇔": "iff", "⇎": "nhArr", "⇕": "vArr", "⇖": "nwArr", "⇗": "neArr", "⇘": "seArr", "⇙": "swArr", "⇚": "lAarr", "⇛": "rAarr", "⇝": "zigrarr", "⇤": "larrb", "⇥": "rarrb", "⇵": "duarr", "⇽": "loarr", "⇾": "roarr", "⇿": "hoarr", "∀": "forall", "∁": "comp", "∂": "part", "∂̸": "npart", "∃": "exist", "∄": "nexist", "∅": "empty", "∇": "Del", "∈": "in", "∉": "notin", "∋": "ni", "∌": "notni", "϶": "bepsi", "∏": "prod", "∐": "coprod", "∑": "sum", "+": "plus", "±": "pm", "÷": "div", "×": "times", "<": "lt", "≮": "nlt", "<⃒": "nvlt", "=": "equals", "≠": "ne", "=⃥": "bne", "⩵": "Equal", ">": "gt", "≯": "ngt", ">⃒": "nvgt", "¬": "not", "|": "vert", "¦": "brvbar", "−": "minus", "∓": "mp", "∔": "plusdo", "⁄": "frasl", "∖": "setmn", "∗": "lowast", "∘": "compfn", "√": "Sqrt", "∝": "prop", "∞": "infin", "∟": "angrt", "∠": "ang", "∠⃒": "nang", "∡": "angmsd", "∢": "angsph", "∣": "mid", "∤": "nmid", "∥": "par", "∦": "npar", "∧": "and", "∨": "or", "∩": "cap", "∩︀": "caps", "∪": "cup", "∪︀": "cups", "∫": "int", "∬": "Int", "∭": "tint", "⨌": "qint", "∮": "oint", "∯": "Conint", "∰": "Cconint", "∱": "cwint", "∲": "cwconint", "∳": "awconint", "∴": "there4", "∵": "becaus", "∶": "ratio", "∷": "Colon", "∸": "minusd", "∺": "mDDot", "∻": "homtht", "∼": "sim", "≁": "nsim", "∼⃒": "nvsim", "∽": "bsim", "∽̱": "race", "∾": "ac", "∾̳": "acE", "∿": "acd", "≀": "wr", "≂": "esim", "≂̸": "nesim", "≃": "sime", "≄": "nsime", "≅": "cong", "≇": "ncong", "≆": "simne", "≈": "ap", "≉": "nap", "≊": "ape", "≋": "apid", "≋̸": "napid", "≌": "bcong", "≍": "CupCap", "≭": "NotCupCap", "≍⃒": "nvap", "≎": "bump", "≎̸": "nbump", "≏": "bumpe", "≏̸": "nbumpe", "≐": "doteq", "≐̸": "nedot", "≑": "eDot", "≒": "efDot", "≓": "erDot", "≔": "colone", "≕": "ecolon", "≖": "ecir", "≗": "cire", "≙": "wedgeq", "≚": "veeeq", "≜": "trie", "≟": "equest", "≡": "equiv", "≢": "nequiv", "≡⃥": "bnequiv", "≤": "le", "≰": "nle", "≤⃒": "nvle", "≥": "ge", "≱": "nge", "≥⃒": "nvge", "≦": "lE", "≦̸": "nlE", "≧": "gE", "≧̸": "ngE", "≨︀": "lvnE", "≨": "lnE", "≩": "gnE", "≩︀": "gvnE", "≪": "ll", "≪̸": "nLtv", "≪⃒": "nLt", "≫": "gg", "≫̸": "nGtv", "≫⃒": "nGt", "≬": "twixt", "≲": "lsim", "≴": "nlsim", "≳": "gsim", "≵": "ngsim", "≶": "lg", "≸": "ntlg", "≷": "gl", "≹": "ntgl", "≺": "pr", "⊀": "npr", "≻": "sc", "⊁": "nsc", "≼": "prcue", "⋠": "nprcue", "≽": "sccue", "⋡": "nsccue", "≾": "prsim", "≿": "scsim", "≿̸": "NotSucceedsTilde", "⊂": "sub", "⊄": "nsub", "⊂⃒": "vnsub", "⊃": "sup", "⊅": "nsup", "⊃⃒": "vnsup", "⊆": "sube", "⊈": "nsube", "⊇": "supe", "⊉": "nsupe", "⊊︀": "vsubne", "⊊": "subne", "⊋︀": "vsupne", "⊋": "supne", "⊍": "cupdot", "⊎": "uplus", "⊏": "sqsub", "⊏̸": "NotSquareSubset", "⊐": "sqsup", "⊐̸": "NotSquareSuperset", "⊑": "sqsube", "⋢": "nsqsube", "⊒": "sqsupe", "⋣": "nsqsupe", "⊓": "sqcap", "⊓︀": "sqcaps", "⊔": "sqcup", "⊔︀": "sqcups", "⊕": "oplus", "⊖": "ominus", "⊗": "otimes", "⊘": "osol", "⊙": "odot", "⊚": "ocir", "⊛": "oast", "⊝": "odash", "⊞": "plusb", "⊟": "minusb", "⊠": "timesb", "⊡": "sdotb", "⊢": "vdash", "⊬": "nvdash", "⊣": "dashv", "⊤": "top", "⊥": "bot", "⊧": "models", "⊨": "vDash", "⊭": "nvDash", "⊩": "Vdash", "⊮": "nVdash", "⊪": "Vvdash", "⊫": "VDash", "⊯": "nVDash", "⊰": "prurel", "⊲": "vltri", "⋪": "nltri", "⊳": "vrtri", "⋫": "nrtri", "⊴": "ltrie", "⋬": "nltrie", "⊴⃒": "nvltrie", "⊵": "rtrie", "⋭": "nrtrie", "⊵⃒": "nvrtrie", "⊶": "origof", "⊷": "imof", "⊸": "mumap", "⊹": "hercon", "⊺": "intcal", "⊻": "veebar", "⊽": "barvee", "⊾": "angrtvb", "⊿": "lrtri", "⋀": "Wedge", "⋁": "Vee", "⋂": "xcap", "⋃": "xcup", "⋄": "diam", "⋅": "sdot", "⋆": "Star", "⋇": "divonx", "⋈": "bowtie", "⋉": "ltimes", "⋊": "rtimes", "⋋": "lthree", "⋌": "rthree", "⋍": "bsime", "⋎": "cuvee", "⋏": "cuwed", "⋐": "Sub", "⋑": "Sup", "⋒": "Cap", "⋓": "Cup", "⋔": "fork", "⋕": "epar", "⋖": "ltdot", "⋗": "gtdot", "⋘": "Ll", "⋘̸": "nLl", "⋙": "Gg", "⋙̸": "nGg", "⋚︀": "lesg", "⋚": "leg", "⋛": "gel", "⋛︀": "gesl", "⋞": "cuepr", "⋟": "cuesc", "⋦": "lnsim", "⋧": "gnsim", "⋨": "prnsim", "⋩": "scnsim", "⋮": "vellip", "⋯": "ctdot", "⋰": "utdot", "⋱": "dtdot", "⋲": "disin", "⋳": "isinsv", "⋴": "isins", "⋵": "isindot", "⋵̸": "notindot", "⋶": "notinvc", "⋷": "notinvb", "⋹": "isinE", "⋹̸": "notinE", "⋺": "nisd", "⋻": "xnis", "⋼": "nis", "⋽": "notnivc", "⋾": "notnivb", "⌅": "barwed", "⌆": "Barwed", "⌌": "drcrop", "⌍": "dlcrop", "⌎": "urcrop", "⌏": "ulcrop", "⌐": "bnot", "⌒": "profline", "⌓": "profsurf", "⌕": "telrec", "⌖": "target", "⌜": "ulcorn", "⌝": "urcorn", "⌞": "dlcorn", "⌟": "drcorn", "⌢": "frown", "⌣": "smile", "⌭": "cylcty", "⌮": "profalar", "⌶": "topbot", "⌽": "ovbar", "⌿": "solbar", "⍼": "angzarr", "⎰": "lmoust", "⎱": "rmoust", "⎴": "tbrk", "⎵": "bbrk", "⎶": "bbrktbrk", "⏜": "OverParenthesis", "⏝": "UnderParenthesis", "⏞": "OverBrace", "⏟": "UnderBrace", "⏢": "trpezium", "⏧": "elinters", "␣": "blank", "─": "boxh", "│": "boxv", "┌": "boxdr", "┐": "boxdl", "└": "boxur", "┘": "boxul", "├": "boxvr", "┤": "boxvl", "┬": "boxhd", "┴": "boxhu", "┼": "boxvh", "═": "boxH", "║": "boxV", "╒": "boxdR", "╓": "boxDr", "╔": "boxDR", "╕": "boxdL", "╖": "boxDl", "╗": "boxDL", "╘": "boxuR", "╙": "boxUr", "╚": "boxUR", "╛": "boxuL", "╜": "boxUl", "╝": "boxUL", "╞": "boxvR", "╟": "boxVr", "╠": "boxVR", "╡": "boxvL", "╢": "boxVl", "╣": "boxVL", "╤": "boxHd", "╥": "boxhD", "╦": "boxHD", "╧": "boxHu", "╨": "boxhU", "╩": "boxHU", "╪": "boxvH", "╫": "boxVh", "╬": "boxVH", "▀": "uhblk", "▄": "lhblk", "█": "block", "░": "blk14", "▒": "blk12", "▓": "blk34", "□": "squ", "▪": "squf", "▫": "EmptyVerySmallSquare", "▭": "rect", "▮": "marker", "▱": "fltns", "△": "xutri", "▴": "utrif", "▵": "utri", "▸": "rtrif", "▹": "rtri", "▽": "xdtri", "▾": "dtrif", "▿": "dtri", "◂": "ltrif", "◃": "ltri", "◊": "loz", "○": "cir", "◬": "tridot", "◯": "xcirc", "◸": "ultri", "◹": "urtri", "◺": "lltri", "◻": "EmptySmallSquare", "◼": "FilledSmallSquare", "★": "starf", "☆": "star", "☎": "phone", "♀": "female", "♂": "male", "♠": "spades", "♣": "clubs", "♥": "hearts", "♦": "diams", "♪": "sung", "✓": "check", "✗": "cross", "✠": "malt", "✶": "sext", "❘": "VerticalSeparator", "⟈": "bsolhsub", "⟉": "suphsol", "⟵": "xlarr", "⟶": "xrarr", "⟷": "xharr", "⟸": "xlArr", "⟹": "xrArr", "⟺": "xhArr", "⟼": "xmap", "⟿": "dzigrarr", "⤂": "nvlArr", "⤃": "nvrArr", "⤄": "nvHarr", "⤅": "Map", "⤌": "lbarr", "⤍": "rbarr", "⤎": "lBarr", "⤏": "rBarr", "⤐": "RBarr", "⤑": "DDotrahd", "⤒": "UpArrowBar", "⤓": "DownArrowBar", "⤖": "Rarrtl", "⤙": "latail", "⤚": "ratail", "⤛": "lAtail", "⤜": "rAtail", "⤝": "larrfs", "⤞": "rarrfs", "⤟": "larrbfs", "⤠": "rarrbfs", "⤣": "nwarhk", "⤤": "nearhk", "⤥": "searhk", "⤦": "swarhk", "⤧": "nwnear", "⤨": "toea", "⤩": "tosa", "⤪": "swnwar", "⤳": "rarrc", "⤳̸": "nrarrc", "⤵": "cudarrr", "⤶": "ldca", "⤷": "rdca", "⤸": "cudarrl", "⤹": "larrpl", "⤼": "curarrm", "⤽": "cularrp", "⥅": "rarrpl", "⥈": "harrcir", "⥉": "Uarrocir", "⥊": "lurdshar", "⥋": "ldrushar", "⥎": "LeftRightVector", "⥏": "RightUpDownVector", "⥐": "DownLeftRightVector", "⥑": "LeftUpDownVector", "⥒": "LeftVectorBar", "⥓": "RightVectorBar", "⥔": "RightUpVectorBar", "⥕": "RightDownVectorBar", "⥖": "DownLeftVectorBar", "⥗": "DownRightVectorBar", "⥘": "LeftUpVectorBar", "⥙": "LeftDownVectorBar", "⥚": "LeftTeeVector", "⥛": "RightTeeVector", "⥜": "RightUpTeeVector", "⥝": "RightDownTeeVector", "⥞": "DownLeftTeeVector", "⥟": "DownRightTeeVector", "⥠": "LeftUpTeeVector", "⥡": "LeftDownTeeVector", "⥢": "lHar", "⥣": "uHar", "⥤": "rHar", "⥥": "dHar", "⥦": "luruhar", "⥧": "ldrdhar", "⥨": "ruluhar", "⥩": "rdldhar", "⥪": "lharul", "⥫": "llhard", "⥬": "rharul", "⥭": "lrhard", "⥮": "udhar", "⥯": "duhar", "⥰": "RoundImplies", "⥱": "erarr", "⥲": "simrarr", "⥳": "larrsim", "⥴": "rarrsim", "⥵": "rarrap", "⥶": "ltlarr", "⥸": "gtrarr", "⥹": "subrarr", "⥻": "suplarr", "⥼": "lfisht", "⥽": "rfisht", "⥾": "ufisht", "⥿": "dfisht", "⦚": "vzigzag", "⦜": "vangrt", "⦝": "angrtvbd", "⦤": "ange", "⦥": "range", "⦦": "dwangle", "⦧": "uwangle", "⦨": "angmsdaa", "⦩": "angmsdab", "⦪": "angmsdac", "⦫": "angmsdad", "⦬": "angmsdae", "⦭": "angmsdaf", "⦮": "angmsdag", "⦯": "angmsdah", "⦰": "bemptyv", "⦱": "demptyv", "⦲": "cemptyv", "⦳": "raemptyv", "⦴": "laemptyv", "⦵": "ohbar", "⦶": "omid", "⦷": "opar", "⦹": "operp", "⦻": "olcross", "⦼": "odsold", "⦾": "olcir", "⦿": "ofcir", "⧀": "olt", "⧁": "ogt", "⧂": "cirscir", "⧃": "cirE", "⧄": "solb", "⧅": "bsolb", "⧉": "boxbox", "⧍": "trisb", "⧎": "rtriltri", "⧏": "LeftTriangleBar", "⧏̸": "NotLeftTriangleBar", "⧐": "RightTriangleBar", "⧐̸": "NotRightTriangleBar", "⧜": "iinfin", "⧝": "infintie", "⧞": "nvinfin", "⧣": "eparsl", "⧤": "smeparsl", "⧥": "eqvparsl", "⧫": "lozf", "⧴": "RuleDelayed", "⧶": "dsol", "⨀": "xodot", "⨁": "xoplus", "⨂": "xotime", "⨄": "xuplus", "⨆": "xsqcup", "⨍": "fpartint", "⨐": "cirfnint", "⨑": "awint", "⨒": "rppolint", "⨓": "scpolint", "⨔": "npolint", "⨕": "pointint", "⨖": "quatint", "⨗": "intlarhk", "⨢": "pluscir", "⨣": "plusacir", "⨤": "simplus", "⨥": "plusdu", "⨦": "plussim", "⨧": "plustwo", "⨩": "mcomma", "⨪": "minusdu", "⨭": "loplus", "⨮": "roplus", "⨯": "Cross", "⨰": "timesd", "⨱": "timesbar", "⨳": "smashp", "⨴": "lotimes", "⨵": "rotimes", "⨶": "otimesas", "⨷": "Otimes", "⨸": "odiv", "⨹": "triplus", "⨺": "triminus", "⨻": "tritime", "⨼": "iprod", "⨿": "amalg", "⩀": "capdot", "⩂": "ncup", "⩃": "ncap", "⩄": "capand", "⩅": "cupor", "⩆": "cupcap", "⩇": "capcup", "⩈": "cupbrcap", "⩉": "capbrcup", "⩊": "cupcup", "⩋": "capcap", "⩌": "ccups", "⩍": "ccaps", "⩐": "ccupssm", "⩓": "And", "⩔": "Or", "⩕": "andand", "⩖": "oror", "⩗": "orslope", "⩘": "andslope", "⩚": "andv", "⩛": "orv", "⩜": "andd", "⩝": "ord", "⩟": "wedbar", "⩦": "sdote", "⩪": "simdot", "⩭": "congdot", "⩭̸": "ncongdot", "⩮": "easter", "⩯": "apacir", "⩰": "apE", "⩰̸": "napE", "⩱": "eplus", "⩲": "pluse", "⩳": "Esim", "⩷": "eDDot", "⩸": "equivDD", "⩹": "ltcir", "⩺": "gtcir", "⩻": "ltquest", "⩼": "gtquest", "⩽": "les", "⩽̸": "nles", "⩾": "ges", "⩾̸": "nges", "⩿": "lesdot", "⪀": "gesdot", "⪁": "lesdoto", "⪂": "gesdoto", "⪃": "lesdotor", "⪄": "gesdotol", "⪅": "lap", "⪆": "gap", "⪇": "lne", "⪈": "gne", "⪉": "lnap", "⪊": "gnap", "⪋": "lEg", "⪌": "gEl", "⪍": "lsime", "⪎": "gsime", "⪏": "lsimg", "⪐": "gsiml", "⪑": "lgE", "⪒": "glE", "⪓": "lesges", "⪔": "gesles", "⪕": "els", "⪖": "egs", "⪗": "elsdot", "⪘": "egsdot", "⪙": "el", "⪚": "eg", "⪝": "siml", "⪞": "simg", "⪟": "simlE", "⪠": "simgE", "⪡": "LessLess", "⪡̸": "NotNestedLessLess", "⪢": "GreaterGreater", "⪢̸": "NotNestedGreaterGreater", "⪤": "glj", "⪥": "gla", "⪦": "ltcc", "⪧": "gtcc", "⪨": "lescc", "⪩": "gescc", "⪪": "smt", "⪫": "lat", "⪬": "smte", "⪬︀": "smtes", "⪭": "late", "⪭︀": "lates", "⪮": "bumpE", "⪯": "pre", "⪯̸": "npre", "⪰": "sce", "⪰̸": "nsce", "⪳": "prE", "⪴": "scE", "⪵": "prnE", "⪶": "scnE", "⪷": "prap", "⪸": "scap", "⪹": "prnap", "⪺": "scnap", "⪻": "Pr", "⪼": "Sc", "⪽": "subdot", "⪾": "supdot", "⪿": "subplus", "⫀": "supplus", "⫁": "submult", "⫂": "supmult", "⫃": "subedot", "⫄": "supedot", "⫅": "subE", "⫅̸": "nsubE", "⫆": "supE", "⫆̸": "nsupE", "⫇": "subsim", "⫈": "supsim", "⫋︀": "vsubnE", "⫋": "subnE", "⫌︀": "vsupnE", "⫌": "supnE", "⫏": "csub", "⫐": "csup", "⫑": "csube", "⫒": "csupe", "⫓": "subsup", "⫔": "supsub", "⫕": "subsub", "⫖": "supsup", "⫗": "suphsub", "⫘": "supdsub", "⫙": "forkv", "⫚": "topfork", "⫛": "mlcp", "⫤": "Dashv", "⫦": "Vdashl", "⫧": "Barv", "⫨": "vBar", "⫩": "vBarv", "⫫": "Vbar", "⫬": "Not", "⫭": "bNot", "⫮": "rnmid", "⫯": "cirmid", "⫰": "midcir", "⫱": "topcir", "⫲": "nhpar", "⫳": "parsim", "⫽": "parsl", "⫽⃥": "nparsl", "♭": "flat", "♮": "natur", "♯": "sharp", "¤": "curren", "¢": "cent", $: "dollar", "£": "pound", "¥": "yen", "€": "euro", "¹": "sup1", "½": "half", "⅓": "frac13", "¼": "frac14", "⅕": "frac15", "⅙": "frac16", "⅛": "frac18", "²": "sup2", "⅔": "frac23", "⅖": "frac25", "³": "sup3", "¾": "frac34", "⅗": "frac35", "⅜": "frac38", "⅘": "frac45", "⅚": "frac56", "⅝": "frac58", "⅞": "frac78", "𝒶": "ascr", "𝕒": "aopf", "𝔞": "afr", "𝔸": "Aopf", "𝔄": "Afr", "𝒜": "Ascr", ª: "ordf", á: "aacute", Á: "Aacute", à: "agrave", À: "Agrave", ă: "abreve", Ă: "Abreve", â: "acirc", Â: "Acirc", å: "aring", Å: "angst", ä: "auml", Ä: "Auml", ã: "atilde", Ã: "Atilde", ą: "aogon", Ą: "Aogon", ā: "amacr", Ā: "Amacr", æ: "aelig", Æ: "AElig", "𝒷": "bscr", "𝕓": "bopf", "𝔟": "bfr", "𝔹": "Bopf", ℬ: "Bscr", "𝔅": "Bfr", "𝔠": "cfr", "𝒸": "cscr", "𝕔": "copf", ℭ: "Cfr", "𝒞": "Cscr", ℂ: "Copf", ć: "cacute", Ć: "Cacute", ĉ: "ccirc", Ĉ: "Ccirc", č: "ccaron", Č: "Ccaron", ċ: "cdot", Ċ: "Cdot", ç: "ccedil", Ç: "Ccedil", "℅": "incare", "𝔡": "dfr", "ⅆ": "dd", "𝕕": "dopf", "𝒹": "dscr", "𝒟": "Dscr", "𝔇": "Dfr", "ⅅ": "DD", "𝔻": "Dopf", ď: "dcaron", Ď: "Dcaron", đ: "dstrok", Đ: "Dstrok", ð: "eth", Ð: "ETH", "ⅇ": "ee", ℯ: "escr", "𝔢": "efr", "𝕖": "eopf", ℰ: "Escr", "𝔈": "Efr", "𝔼": "Eopf", é: "eacute", É: "Eacute", è: "egrave", È: "Egrave", ê: "ecirc", Ê: "Ecirc", ě: "ecaron", Ě: "Ecaron", ë: "euml", Ë: "Euml", ė: "edot", Ė: "Edot", ę: "eogon", Ę: "Eogon", ē: "emacr", Ē: "Emacr", "𝔣": "ffr", "𝕗": "fopf", "𝒻": "fscr", "𝔉": "Ffr", "𝔽": "Fopf", ℱ: "Fscr", ff: "fflig", ffi: "ffilig", ffl: "ffllig", fi: "filig", fj: "fjlig", fl: "fllig", ƒ: "fnof", ℊ: "gscr", "𝕘": "gopf", "𝔤": "gfr", "𝒢": "Gscr", "𝔾": "Gopf", "𝔊": "Gfr", ǵ: "gacute", ğ: "gbreve", Ğ: "Gbreve", ĝ: "gcirc", Ĝ: "Gcirc", ġ: "gdot", Ġ: "Gdot", Ģ: "Gcedil", "𝔥": "hfr", ℎ: "planckh", "𝒽": "hscr", "𝕙": "hopf", ℋ: "Hscr", ℌ: "Hfr", ℍ: "Hopf", ĥ: "hcirc", Ĥ: "Hcirc", ℏ: "hbar", ħ: "hstrok", Ħ: "Hstrok", "𝕚": "iopf", "𝔦": "ifr", "𝒾": "iscr", "ⅈ": "ii", "𝕀": "Iopf", ℐ: "Iscr", ℑ: "Im", í: "iacute", Í: "Iacute", ì: "igrave", Ì: "Igrave", î: "icirc", Î: "Icirc", ï: "iuml", Ï: "Iuml", ĩ: "itilde", Ĩ: "Itilde", İ: "Idot", į: "iogon", Į: "Iogon", ī: "imacr", Ī: "Imacr", ij: "ijlig", IJ: "IJlig", ı: "imath", "𝒿": "jscr", "𝕛": "jopf", "𝔧": "jfr", "𝒥": "Jscr", "𝔍": "Jfr", "𝕁": "Jopf", ĵ: "jcirc", Ĵ: "Jcirc", "ȷ": "jmath", "𝕜": "kopf", "𝓀": "kscr", "𝔨": "kfr", "𝒦": "Kscr", "𝕂": "Kopf", "𝔎": "Kfr", ķ: "kcedil", Ķ: "Kcedil", "𝔩": "lfr", "𝓁": "lscr", ℓ: "ell", "𝕝": "lopf", ℒ: "Lscr", "𝔏": "Lfr", "𝕃": "Lopf", ĺ: "lacute", Ĺ: "Lacute", ľ: "lcaron", Ľ: "Lcaron", ļ: "lcedil", Ļ: "Lcedil", ł: "lstrok", Ł: "Lstrok", ŀ: "lmidot", Ŀ: "Lmidot", "𝔪": "mfr", "𝕞": "mopf", "𝓂": "mscr", "𝔐": "Mfr", "𝕄": "Mopf", ℳ: "Mscr", "𝔫": "nfr", "𝕟": "nopf", "𝓃": "nscr", ℕ: "Nopf", "𝒩": "Nscr", "𝔑": "Nfr", ń: "nacute", Ń: "Nacute", ň: "ncaron", Ň: "Ncaron", ñ: "ntilde", Ñ: "Ntilde", ņ: "ncedil", Ņ: "Ncedil", "№": "numero", ŋ: "eng", Ŋ: "ENG", "𝕠": "oopf", "𝔬": "ofr", ℴ: "oscr", "𝒪": "Oscr", "𝔒": "Ofr", "𝕆": "Oopf", º: "ordm", ó: "oacute", Ó: "Oacute", ò: "ograve", Ò: "Ograve", ô: "ocirc", Ô: "Ocirc", ö: "ouml", Ö: "Ouml", ő: "odblac", Ő: "Odblac", õ: "otilde", Õ: "Otilde", ø: "oslash", Ø: "Oslash", ō: "omacr", Ō: "Omacr", œ: "oelig", Œ: "OElig", "𝔭": "pfr", "𝓅": "pscr", "𝕡": "popf", ℙ: "Popf", "𝔓": "Pfr", "𝒫": "Pscr", "𝕢": "qopf", "𝔮": "qfr", "𝓆": "qscr", "𝒬": "Qscr", "𝔔": "Qfr", ℚ: "Qopf", ĸ: "kgreen", "𝔯": "rfr", "𝕣": "ropf", "𝓇": "rscr", ℛ: "Rscr", ℜ: "Re", ℝ: "Ropf", ŕ: "racute", Ŕ: "Racute", ř: "rcaron", Ř: "Rcaron", ŗ: "rcedil", Ŗ: "Rcedil", "𝕤": "sopf", "𝓈": "sscr", "𝔰": "sfr", "𝕊": "Sopf", "𝔖": "Sfr", "𝒮": "Sscr", "Ⓢ": "oS", ś: "sacute", Ś: "Sacute", ŝ: "scirc", Ŝ: "Scirc", š: "scaron", Š: "Scaron", ş: "scedil", Ş: "Scedil", ß: "szlig", "𝔱": "tfr", "𝓉": "tscr", "𝕥": "topf", "𝒯": "Tscr", "𝔗": "Tfr", "𝕋": "Topf", ť: "tcaron", Ť: "Tcaron", ţ: "tcedil", Ţ: "Tcedil", "™": "trade", ŧ: "tstrok", Ŧ: "Tstrok", "𝓊": "uscr", "𝕦": "uopf", "𝔲": "ufr", "𝕌": "Uopf", "𝔘": "Ufr", "𝒰": "Uscr", ú: "uacute", Ú: "Uacute", ù: "ugrave", Ù: "Ugrave", ŭ: "ubreve", Ŭ: "Ubreve", û: "ucirc", Û: "Ucirc", ů: "uring", Ů: "Uring", ü: "uuml", Ü: "Uuml", ű: "udblac", Ű: "Udblac", ũ: "utilde", Ũ: "Utilde", ų: "uogon", Ų: "Uogon", ū: "umacr", Ū: "Umacr", "𝔳": "vfr", "𝕧": "vopf", "𝓋": "vscr", "𝔙": "Vfr", "𝕍": "Vopf", "𝒱": "Vscr", "𝕨": "wopf", "𝓌": "wscr", "𝔴": "wfr", "𝒲": "Wscr", "𝕎": "Wopf", "𝔚": "Wfr", ŵ: "wcirc", Ŵ: "Wcirc", "𝔵": "xfr", "𝓍": "xscr", "𝕩": "xopf", "𝕏": "Xopf", "𝔛": "Xfr", "𝒳": "Xscr", "𝔶": "yfr", "𝓎": "yscr", "𝕪": "yopf", "𝒴": "Yscr", "𝔜": "Yfr", "𝕐": "Yopf", ý: "yacute", Ý: "Yacute", ŷ: "ycirc", Ŷ: "Ycirc", ÿ: "yuml", Ÿ: "Yuml", "𝓏": "zscr", "𝔷": "zfr", "𝕫": "zopf", ℨ: "Zfr", ℤ: "Zopf", "𝒵": "Zscr", ź: "zacute", Ź: "Zacute", ž: "zcaron", Ž: "Zcaron", ż: "zdot", Ż: "Zdot", Ƶ: "imped", þ: "thorn", Þ: "THORN", ʼn: "napos", α: "alpha", Α: "Alpha", β: "beta", Β: "Beta", γ: "gamma", Γ: "Gamma", δ: "delta", Δ: "Delta", ε: "epsi", "ϵ": "epsiv", Ε: "Epsilon", ϝ: "gammad", Ϝ: "Gammad", ζ: "zeta", Ζ: "Zeta", η: "eta", Η: "Eta", θ: "theta", ϑ: "thetav", Θ: "Theta", ι: "iota", Ι: "Iota", κ: "kappa", ϰ: "kappav", Κ: "Kappa", λ: "lambda", Λ: "Lambda", μ: "mu", µ: "micro", Μ: "Mu", ν: "nu", Ν: "Nu", ξ: "xi", Ξ: "Xi", ο: "omicron", Ο: "Omicron", π: "pi", ϖ: "piv", Π: "Pi", ρ: "rho", ϱ: "rhov", Ρ: "Rho", σ: "sigma", Σ: "Sigma", ς: "sigmaf", τ: "tau", Τ: "Tau", υ: "upsi", Υ: "Upsilon", ϒ: "Upsi", φ: "phi", ϕ: "phiv", Φ: "Phi", χ: "chi", Χ: "Chi", ψ: "psi", Ψ: "Psi", ω: "omega", Ω: "ohm", а: "acy", А: "Acy", б: "bcy", Б: "Bcy", в: "vcy", В: "Vcy", г: "gcy", Г: "Gcy", ѓ: "gjcy", Ѓ: "GJcy", д: "dcy", Д: "Dcy", ђ: "djcy", Ђ: "DJcy", е: "iecy", Е: "IEcy", ё: "iocy", Ё: "IOcy", є: "jukcy", Є: "Jukcy", ж: "zhcy", Ж: "ZHcy", з: "zcy", З: "Zcy", ѕ: "dscy", Ѕ: "DScy", и: "icy", И: "Icy", і: "iukcy", І: "Iukcy", ї: "yicy", Ї: "YIcy", й: "jcy", Й: "Jcy", ј: "jsercy", Ј: "Jsercy", к: "kcy", К: "Kcy", ќ: "kjcy", Ќ: "KJcy", л: "lcy", Л: "Lcy", љ: "ljcy", Љ: "LJcy", м: "mcy", М: "Mcy", н: "ncy", Н: "Ncy", њ: "njcy", Њ: "NJcy", о: "ocy", О: "Ocy", п: "pcy", П: "Pcy", р: "rcy", Р: "Rcy", с: "scy", С: "Scy", т: "tcy", Т: "Tcy", ћ: "tshcy", Ћ: "TSHcy", у: "ucy", У: "Ucy", ў: "ubrcy", Ў: "Ubrcy", ф: "fcy", Ф: "Fcy", х: "khcy", Х: "KHcy", ц: "tscy", Ц: "TScy", ч: "chcy", Ч: "CHcy", џ: "dzcy", Џ: "DZcy", ш: "shcy", Ш: "SHcy", щ: "shchcy", Щ: "SHCHcy", ъ: "hardcy", Ъ: "HARDcy", ы: "ycy", Ы: "Ycy", ь: "softcy", Ь: "SOFTcy", э: "ecy", Э: "Ecy", ю: "yucy", Ю: "YUcy", я: "yacy", Я: "YAcy", ℵ: "aleph", ℶ: "beth", ℷ: "gimel", ℸ: "daleth" }, U = /["&'<>`]/g, _ = {
|
|
1002
1009
|
'"': """,
|
|
1003
1010
|
"&": "&",
|
|
1004
1011
|
"'": "'",
|
|
@@ -1013,9 +1020,9 @@ gn.exports;
|
|
|
1013
1020
|
// See http://html5sec.org/#102, http://html5sec.org/#108, and
|
|
1014
1021
|
// http://html5sec.org/#133.
|
|
1015
1022
|
"`": "`"
|
|
1016
|
-
}, y = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/, W = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, Q = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g, M = { aacute: "á", Aacute: "Á", abreve: "ă", Abreve: "Ă", ac: "∾", acd: "∿", acE: "∾̳", acirc: "â", Acirc: "Â", acute: "´", acy: "а", Acy: "А", aelig: "æ", AElig: "Æ", af: "", afr: "𝔞", Afr: "𝔄", agrave: "à", Agrave: "À", alefsym: "ℵ", aleph: "ℵ", alpha: "α", Alpha: "Α", amacr: "ā", Amacr: "Ā", amalg: "⨿", amp: "&", AMP: "&", and: "∧", And: "⩓", andand: "⩕", andd: "⩜", andslope: "⩘", andv: "⩚", ang: "∠", ange: "⦤", angle: "∠", angmsd: "∡", angmsdaa: "⦨", angmsdab: "⦩", angmsdac: "⦪", angmsdad: "⦫", angmsdae: "⦬", angmsdaf: "⦭", angmsdag: "⦮", angmsdah: "⦯", angrt: "∟", angrtvb: "⊾", angrtvbd: "⦝", angsph: "∢", angst: "Å", angzarr: "⍼", aogon: "ą", Aogon: "Ą", aopf: "𝕒", Aopf: "𝔸", ap: "≈", apacir: "⩯", ape: "≊", apE: "⩰", apid: "≋", apos: "'", ApplyFunction: "", approx: "≈", approxeq: "≊", aring: "å", Aring: "Å", ascr: "𝒶", Ascr: "𝒜", Assign: "≔", ast: "*", asymp: "≈", asympeq: "≍", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", awconint: "∳", awint: "⨑", backcong: "≌", backepsilon: "϶", backprime: "‵", backsim: "∽", backsimeq: "⋍", Backslash: "∖", Barv: "⫧", barvee: "⊽", barwed: "⌅", Barwed: "⌆", barwedge: "⌅", bbrk: "⎵", bbrktbrk: "⎶", bcong: "≌", bcy: "б", Bcy: "Б", bdquo: "„", becaus: "∵", because: "∵", Because: "∵", bemptyv: "⦰", bepsi: "϶", bernou: "ℬ", Bernoullis: "ℬ", beta: "β", Beta: "Β", beth: "ℶ", between: "≬", bfr: "𝔟", 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: "⌐", bNot: "⫭", bopf: "𝕓", Bopf: "𝔹", bot: "⊥", bottom: "⊥", bowtie: "⋈", boxbox: "⧉", boxdl: "┐", boxdL: "╕", boxDl: "╖", boxDL: "╗", boxdr: "┌", boxdR: "╒", boxDr: "╓", boxDR: "╔", boxh: "─", boxH: "═", boxhd: "┬", boxhD: "╥", boxHd: "╤", boxHD: "╦", boxhu: "┴", boxhU: "╨", boxHu: "╧", boxHU: "╩", boxminus: "⊟", boxplus: "⊞", boxtimes: "⊠", boxul: "┘", boxuL: "╛", boxUl: "╜", boxUL: "╝", boxur: "└", boxuR: "╘", boxUr: "╙", boxUR: "╚", boxv: "│", boxV: "║", boxvh: "┼", boxvH: "╪", boxVh: "╫", boxVH: "╬", boxvl: "┤", boxvL: "╡", boxVl: "╢", boxVL: "╣", boxvr: "├", boxvR: "╞", boxVr: "╟", boxVR: "╠", bprime: "‵", breve: "˘", Breve: "˘", brvbar: "¦", bscr: "𝒷", Bscr: "ℬ", bsemi: "⁏", bsim: "∽", bsime: "⋍", bsol: "\\", bsolb: "⧅", bsolhsub: "⟈", bull: "•", bullet: "•", bump: "≎", bumpe: "≏", bumpE: "⪮", bumpeq: "≏", Bumpeq: "≎", cacute: "ć", Cacute: "Ć", cap: "∩", Cap: "⋒", capand: "⩄", capbrcup: "⩉", capcap: "⩋", capcup: "⩇", capdot: "⩀", CapitalDifferentialD: "ⅅ", caps: "∩︀", caret: "⁁", caron: "ˇ", Cayleys: "ℭ", ccaps: "⩍", ccaron: "č", Ccaron: "Č", ccedil: "ç", Ccedil: "Ç", ccirc: "ĉ", Ccirc: "Ĉ", Cconint: "∰", ccups: "⩌", ccupssm: "⩐", cdot: "ċ", Cdot: "Ċ", cedil: "¸", Cedilla: "¸", cemptyv: "⦲", cent: "¢", centerdot: "·", CenterDot: "·", cfr: "𝔠", Cfr: "ℭ", chcy: "ч", CHcy: "Ч", check: "✓", checkmark: "✓", chi: "χ", Chi: "Χ", cir: "○", circ: "ˆ", circeq: "≗", circlearrowleft: "↺", circlearrowright: "↻", circledast: "⊛", circledcirc: "⊚", circleddash: "⊝", CircleDot: "⊙", circledR: "®", circledS: "Ⓢ", CircleMinus: "⊖", CirclePlus: "⊕", CircleTimes: "⊗", cire: "≗", cirE: "⧃", cirfnint: "⨐", cirmid: "⫯", cirscir: "⧂", ClockwiseContourIntegral: "∲", CloseCurlyDoubleQuote: "”", CloseCurlyQuote: "’", clubs: "♣", clubsuit: "♣", colon: ":", Colon: "∷", colone: "≔", Colone: "⩴", coloneq: "≔", comma: ",", commat: "@", comp: "∁", compfn: "∘", complement: "∁", complexes: "ℂ", cong: "≅", congdot: "⩭", Congruent: "≡", conint: "∮", Conint: "∯", ContourIntegral: "∮", copf: "𝕔", Copf: "ℂ", coprod: "∐", Coproduct: "∐", copy: "©", COPY: "©", copysr: "℗", CounterClockwiseContourIntegral: "∳", crarr: "↵", cross: "✗", Cross: "⨯", cscr: "𝒸", Cscr: "𝒞", csub: "⫏", csube: "⫑", csup: "⫐", csupe: "⫒", ctdot: "⋯", cudarrl: "⤸", cudarrr: "⤵", cuepr: "⋞", cuesc: "⋟", cularr: "↶", cularrp: "⤽", cup: "∪", Cup: "⋓", cupbrcap: "⩈", cupcap: "⩆", CupCap: "≍", cupcup: "⩊", cupdot: "⊍", cupor: "⩅", cups: "∪︀", curarr: "↷", curarrm: "⤼", curlyeqprec: "⋞", curlyeqsucc: "⋟", curlyvee: "⋎", curlywedge: "⋏", curren: "¤", curvearrowleft: "↶", curvearrowright: "↷", cuvee: "⋎", cuwed: "⋏", cwconint: "∲", cwint: "∱", cylcty: "⌭", dagger: "†", Dagger: "‡", daleth: "ℸ", darr: "↓", dArr: "⇓", Darr: "↡", dash: "‐", dashv: "⊣", Dashv: "⫤", dbkarow: "⤏", dblac: "˝", dcaron: "ď", Dcaron: "Ď", dcy: "д", Dcy: "Д", dd: "ⅆ", DD: "ⅅ", ddagger: "‡", ddarr: "⇊", DDotrahd: "⤑", ddotseq: "⩷", deg: "°", Del: "∇", delta: "δ", Delta: "Δ", demptyv: "⦱", dfisht: "⥿", dfr: "𝔡", Dfr: "𝔇", dHar: "⥥", dharl: "⇃", dharr: "⇂", DiacriticalAcute: "´", DiacriticalDot: "˙", DiacriticalDoubleAcute: "˝", DiacriticalGrave: "`", DiacriticalTilde: "˜", diam: "⋄", diamond: "⋄", Diamond: "⋄", diamondsuit: "♦", diams: "♦", die: "¨", DifferentialD: "ⅆ", digamma: "ϝ", disin: "⋲", div: "÷", divide: "÷", divideontimes: "⋇", divonx: "⋇", djcy: "ђ", DJcy: "Ђ", dlcorn: "⌞", dlcrop: "⌍", dollar: "$", dopf: "𝕕", Dopf: "𝔻", dot: "˙", Dot: "¨", DotDot: "⃜", doteq: "≐", doteqdot: "≑", DotEqual: "≐", dotminus: "∸", dotplus: "∔", dotsquare: "⊡", doublebarwedge: "⌆", DoubleContourIntegral: "∯", DoubleDot: "¨", DoubleDownArrow: "⇓", DoubleLeftArrow: "⇐", DoubleLeftRightArrow: "⇔", DoubleLeftTee: "⫤", DoubleLongLeftArrow: "⟸", DoubleLongLeftRightArrow: "⟺", DoubleLongRightArrow: "⟹", DoubleRightArrow: "⇒", DoubleRightTee: "⊨", DoubleUpArrow: "⇑", DoubleUpDownArrow: "⇕", DoubleVerticalBar: "∥", downarrow: "↓", Downarrow: "⇓", DownArrow: "↓", DownArrowBar: "⤓", DownArrowUpArrow: "⇵", DownBreve: "̑", downdownarrows: "⇊", downharpoonleft: "⇃", downharpoonright: "⇂", DownLeftRightVector: "⥐", DownLeftTeeVector: "⥞", DownLeftVector: "↽", DownLeftVectorBar: "⥖", DownRightTeeVector: "⥟", DownRightVector: "⇁", DownRightVectorBar: "⥗", DownTee: "⊤", DownTeeArrow: "↧", drbkarow: "⤐", drcorn: "⌟", drcrop: "⌌", dscr: "𝒹", Dscr: "𝒟", dscy: "ѕ", DScy: "Ѕ", dsol: "⧶", dstrok: "đ", Dstrok: "Đ", dtdot: "⋱", dtri: "▿", dtrif: "▾", duarr: "⇵", duhar: "⥯", dwangle: "⦦", dzcy: "џ", DZcy: "Џ", dzigrarr: "⟿", eacute: "é", Eacute: "É", easter: "⩮", ecaron: "ě", Ecaron: "Ě", ecir: "≖", ecirc: "ê", Ecirc: "Ê", ecolon: "≕", ecy: "э", Ecy: "Э", eDDot: "⩷", edot: "ė", eDot: "≑", Edot: "Ė", ee: "ⅇ", efDot: "≒", efr: "𝔢", Efr: "𝔈", eg: "⪚", egrave: "è", Egrave: "È", egs: "⪖", egsdot: "⪘", el: "⪙", Element: "∈", elinters: "⏧", ell: "ℓ", els: "⪕", elsdot: "⪗", emacr: "ē", Emacr: "Ē", empty: "∅", emptyset: "∅", EmptySmallSquare: "◻", emptyv: "∅", EmptyVerySmallSquare: "▫", emsp: " ", emsp13: " ", emsp14: " ", eng: "ŋ", ENG: "Ŋ", ensp: " ", eogon: "ę", Eogon: "Ę", eopf: "𝕖", Eopf: "𝔼", epar: "⋕", eparsl: "⧣", eplus: "⩱", epsi: "ε", epsilon: "ε", Epsilon: "Ε", epsiv: "ϵ", eqcirc: "≖", eqcolon: "≕", eqsim: "≂", eqslantgtr: "⪖", eqslantless: "⪕", Equal: "⩵", equals: "=", EqualTilde: "≂", equest: "≟", Equilibrium: "⇌", equiv: "≡", equivDD: "⩸", eqvparsl: "⧥", erarr: "⥱", erDot: "≓", escr: "ℯ", Escr: "ℰ", esdot: "≐", esim: "≂", Esim: "⩳", eta: "η", Eta: "Η", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", euro: "€", excl: "!", exist: "∃", Exists: "∃", expectation: "ℰ", exponentiale: "ⅇ", ExponentialE: "ⅇ", fallingdotseq: "≒", fcy: "ф", Fcy: "Ф", female: "♀", ffilig: "ffi", fflig: "ff", ffllig: "ffl", ffr: "𝔣", Ffr: "𝔉", filig: "fi", FilledSmallSquare: "◼", FilledVerySmallSquare: "▪", fjlig: "fj", flat: "♭", fllig: "fl", fltns: "▱", fnof: "ƒ", fopf: "𝕗", Fopf: "𝔽", forall: "∀", ForAll: "∀", fork: "⋔", forkv: "⫙", Fouriertrf: "ℱ", fpartint: "⨍", frac12: "½", frac13: "⅓", frac14: "¼", frac15: "⅕", frac16: "⅙", frac18: "⅛", frac23: "⅔", frac25: "⅖", frac34: "¾", frac35: "⅗", frac38: "⅜", frac45: "⅘", frac56: "⅚", frac58: "⅝", frac78: "⅞", frasl: "⁄", frown: "⌢", fscr: "𝒻", Fscr: "ℱ", gacute: "ǵ", gamma: "γ", Gamma: "Γ", gammad: "ϝ", Gammad: "Ϝ", gap: "⪆", gbreve: "ğ", Gbreve: "Ğ", Gcedil: "Ģ", gcirc: "ĝ", Gcirc: "Ĝ", gcy: "г", Gcy: "Г", gdot: "ġ", Gdot: "Ġ", ge: "≥", gE: "≧", gel: "⋛", gEl: "⪌", geq: "≥", geqq: "≧", geqslant: "⩾", ges: "⩾", gescc: "⪩", gesdot: "⪀", gesdoto: "⪂", gesdotol: "⪄", gesl: "⋛︀", gesles: "⪔", gfr: "𝔤", Gfr: "𝔊", gg: "≫", Gg: "⋙", ggg: "⋙", gimel: "ℷ", gjcy: "ѓ", GJcy: "Ѓ", gl: "≷", gla: "⪥", glE: "⪒", glj: "⪤", gnap: "⪊", gnapprox: "⪊", gne: "⪈", gnE: "≩", gneq: "⪈", gneqq: "≩", gnsim: "⋧", gopf: "𝕘", Gopf: "𝔾", grave: "`", GreaterEqual: "≥", GreaterEqualLess: "⋛", GreaterFullEqual: "≧", GreaterGreater: "⪢", GreaterLess: "≷", GreaterSlantEqual: "⩾", GreaterTilde: "≳", gscr: "ℊ", Gscr: "𝒢", gsim: "≳", gsime: "⪎", gsiml: "⪐", gt: ">", Gt: "≫", GT: ">", gtcc: "⪧", gtcir: "⩺", gtdot: "⋗", gtlPar: "⦕", gtquest: "⩼", gtrapprox: "⪆", gtrarr: "⥸", gtrdot: "⋗", gtreqless: "⋛", gtreqqless: "⪌", gtrless: "≷", gtrsim: "≳", gvertneqq: "≩︀", gvnE: "≩︀", Hacek: "ˇ", hairsp: " ", half: "½", hamilt: "ℋ", hardcy: "ъ", HARDcy: "Ъ", harr: "↔", hArr: "⇔", harrcir: "⥈", harrw: "↭", Hat: "^", hbar: "ℏ", hcirc: "ĥ", Hcirc: "Ĥ", hearts: "♥", heartsuit: "♥", hellip: "…", hercon: "⊹", hfr: "𝔥", Hfr: "ℌ", HilbertSpace: "ℋ", hksearow: "⤥", hkswarow: "⤦", hoarr: "⇿", homtht: "∻", hookleftarrow: "↩", hookrightarrow: "↪", hopf: "𝕙", Hopf: "ℍ", horbar: "―", HorizontalLine: "─", hscr: "𝒽", Hscr: "ℋ", hslash: "ℏ", hstrok: "ħ", Hstrok: "Ħ", HumpDownHump: "≎", HumpEqual: "≏", hybull: "⁃", hyphen: "‐", iacute: "í", Iacute: "Í", ic: "", icirc: "î", Icirc: "Î", icy: "и", Icy: "И", Idot: "İ", iecy: "е", IEcy: "Е", iexcl: "¡", iff: "⇔", ifr: "𝔦", Ifr: "ℑ", igrave: "ì", Igrave: "Ì", ii: "ⅈ", iiiint: "⨌", iiint: "∭", iinfin: "⧜", iiota: "℩", ijlig: "ij", IJlig: "IJ", Im: "ℑ", imacr: "ī", Imacr: "Ī", image: "ℑ", ImaginaryI: "ⅈ", imagline: "ℐ", imagpart: "ℑ", imath: "ı", imof: "⊷", imped: "Ƶ", Implies: "⇒", in: "∈", incare: "℅", infin: "∞", infintie: "⧝", inodot: "ı", int: "∫", Int: "∬", intcal: "⊺", integers: "ℤ", Integral: "∫", intercal: "⊺", Intersection: "⋂", intlarhk: "⨗", intprod: "⨼", InvisibleComma: "", InvisibleTimes: "", iocy: "ё", IOcy: "Ё", iogon: "į", Iogon: "Į", iopf: "𝕚", Iopf: "𝕀", iota: "ι", Iota: "Ι", iprod: "⨼", iquest: "¿", iscr: "𝒾", Iscr: "ℐ", isin: "∈", isindot: "⋵", isinE: "⋹", isins: "⋴", isinsv: "⋳", isinv: "∈", it: "", itilde: "ĩ", Itilde: "Ĩ", iukcy: "і", Iukcy: "І", iuml: "ï", Iuml: "Ï", jcirc: "ĵ", Jcirc: "Ĵ", jcy: "й", Jcy: "Й", jfr: "𝔧", Jfr: "𝔍", jmath: "ȷ", jopf: "𝕛", Jopf: "𝕁", jscr: "𝒿", Jscr: "𝒥", jsercy: "ј", Jsercy: "Ј", jukcy: "є", Jukcy: "Є", kappa: "κ", Kappa: "Κ", kappav: "ϰ", kcedil: "ķ", Kcedil: "Ķ", kcy: "к", Kcy: "К", kfr: "𝔨", Kfr: "𝔎", kgreen: "ĸ", khcy: "х", KHcy: "Х", kjcy: "ќ", KJcy: "Ќ", kopf: "𝕜", Kopf: "𝕂", kscr: "𝓀", Kscr: "𝒦", lAarr: "⇚", lacute: "ĺ", Lacute: "Ĺ", laemptyv: "⦴", lagran: "ℒ", lambda: "λ", Lambda: "Λ", lang: "⟨", Lang: "⟪", langd: "⦑", langle: "⟨", lap: "⪅", Laplacetrf: "ℒ", laquo: "«", larr: "←", lArr: "⇐", Larr: "↞", larrb: "⇤", larrbfs: "⤟", larrfs: "⤝", larrhk: "↩", larrlp: "↫", larrpl: "⤹", larrsim: "⥳", larrtl: "↢", lat: "⪫", latail: "⤙", lAtail: "⤛", late: "⪭", lates: "⪭︀", lbarr: "⤌", lBarr: "⤎", lbbrk: "❲", lbrace: "{", lbrack: "[", lbrke: "⦋", lbrksld: "⦏", lbrkslu: "⦍", lcaron: "ľ", Lcaron: "Ľ", lcedil: "ļ", Lcedil: "Ļ", lceil: "⌈", lcub: "{", lcy: "л", Lcy: "Л", ldca: "⤶", ldquo: "“", ldquor: "„", ldrdhar: "⥧", ldrushar: "⥋", ldsh: "↲", le: "≤", lE: "≦", LeftAngleBracket: "⟨", leftarrow: "←", Leftarrow: "⇐", LeftArrow: "←", LeftArrowBar: "⇤", LeftArrowRightArrow: "⇆", leftarrowtail: "↢", LeftCeiling: "⌈", LeftDoubleBracket: "⟦", LeftDownTeeVector: "⥡", LeftDownVector: "⇃", LeftDownVectorBar: "⥙", LeftFloor: "⌊", leftharpoondown: "↽", leftharpoonup: "↼", leftleftarrows: "⇇", leftrightarrow: "↔", Leftrightarrow: "⇔", LeftRightArrow: "↔", leftrightarrows: "⇆", leftrightharpoons: "⇋", leftrightsquigarrow: "↭", LeftRightVector: "⥎", LeftTee: "⊣", LeftTeeArrow: "↤", LeftTeeVector: "⥚", leftthreetimes: "⋋", LeftTriangle: "⊲", LeftTriangleBar: "⧏", LeftTriangleEqual: "⊴", LeftUpDownVector: "⥑", LeftUpTeeVector: "⥠", LeftUpVector: "↿", LeftUpVectorBar: "⥘", LeftVector: "↼", LeftVectorBar: "⥒", leg: "⋚", lEg: "⪋", leq: "≤", leqq: "≦", leqslant: "⩽", les: "⩽", lescc: "⪨", lesdot: "⩿", lesdoto: "⪁", lesdotor: "⪃", lesg: "⋚︀", lesges: "⪓", lessapprox: "⪅", lessdot: "⋖", lesseqgtr: "⋚", lesseqqgtr: "⪋", LessEqualGreater: "⋚", LessFullEqual: "≦", LessGreater: "≶", lessgtr: "≶", LessLess: "⪡", lesssim: "≲", LessSlantEqual: "⩽", LessTilde: "≲", lfisht: "⥼", lfloor: "⌊", lfr: "𝔩", Lfr: "𝔏", lg: "≶", lgE: "⪑", lHar: "⥢", lhard: "↽", lharu: "↼", lharul: "⥪", lhblk: "▄", ljcy: "љ", LJcy: "Љ", ll: "≪", Ll: "⋘", llarr: "⇇", llcorner: "⌞", Lleftarrow: "⇚", llhard: "⥫", lltri: "◺", lmidot: "ŀ", Lmidot: "Ŀ", lmoust: "⎰", lmoustache: "⎰", lnap: "⪉", lnapprox: "⪉", lne: "⪇", lnE: "≨", lneq: "⪇", lneqq: "≨", lnsim: "⋦", loang: "⟬", loarr: "⇽", lobrk: "⟦", longleftarrow: "⟵", Longleftarrow: "⟸", LongLeftArrow: "⟵", longleftrightarrow: "⟷", Longleftrightarrow: "⟺", LongLeftRightArrow: "⟷", longmapsto: "⟼", longrightarrow: "⟶", Longrightarrow: "⟹", LongRightArrow: "⟶", looparrowleft: "↫", looparrowright: "↬", lopar: "⦅", lopf: "𝕝", Lopf: "𝕃", loplus: "⨭", lotimes: "⨴", lowast: "∗", lowbar: "_", LowerLeftArrow: "↙", LowerRightArrow: "↘", loz: "◊", lozenge: "◊", lozf: "⧫", lpar: "(", lparlt: "⦓", lrarr: "⇆", lrcorner: "⌟", lrhar: "⇋", lrhard: "⥭", lrm: "", lrtri: "⊿", lsaquo: "‹", lscr: "𝓁", Lscr: "ℒ", lsh: "↰", Lsh: "↰", lsim: "≲", lsime: "⪍", lsimg: "⪏", lsqb: "[", lsquo: "‘", lsquor: "‚", lstrok: "ł", Lstrok: "Ł", lt: "<", Lt: "≪", LT: "<", ltcc: "⪦", ltcir: "⩹", ltdot: "⋖", lthree: "⋋", ltimes: "⋉", ltlarr: "⥶", ltquest: "⩻", ltri: "◃", ltrie: "⊴", ltrif: "◂", ltrPar: "⦖", lurdshar: "⥊", luruhar: "⥦", lvertneqq: "≨︀", lvnE: "≨︀", macr: "¯", male: "♂", malt: "✠", maltese: "✠", map: "↦", Map: "⤅", mapsto: "↦", mapstodown: "↧", mapstoleft: "↤", mapstoup: "↥", marker: "▮", mcomma: "⨩", mcy: "м", Mcy: "М", mdash: "—", mDDot: "∺", measuredangle: "∡", MediumSpace: " ", Mellintrf: "ℳ", mfr: "𝔪", Mfr: "𝔐", mho: "℧", micro: "µ", mid: "∣", midast: "*", midcir: "⫰", middot: "·", minus: "−", minusb: "⊟", minusd: "∸", minusdu: "⨪", MinusPlus: "∓", mlcp: "⫛", mldr: "…", mnplus: "∓", models: "⊧", mopf: "𝕞", Mopf: "𝕄", mp: "∓", mscr: "𝓂", Mscr: "ℳ", mstpos: "∾", mu: "μ", Mu: "Μ", multimap: "⊸", mumap: "⊸", nabla: "∇", nacute: "ń", Nacute: "Ń", nang: "∠⃒", nap: "≉", napE: "⩰̸", napid: "≋̸", napos: "ʼn", napprox: "≉", natur: "♮", natural: "♮", naturals: "ℕ", nbsp: " ", nbump: "≎̸", nbumpe: "≏̸", ncap: "⩃", ncaron: "ň", Ncaron: "Ň", ncedil: "ņ", Ncedil: "Ņ", ncong: "≇", ncongdot: "⩭̸", ncup: "⩂", ncy: "н", Ncy: "Н", ndash: "–", ne: "≠", nearhk: "⤤", nearr: "↗", neArr: "⇗", nearrow: "↗", nedot: "≐̸", NegativeMediumSpace: "", NegativeThickSpace: "", NegativeThinSpace: "", NegativeVeryThinSpace: "", nequiv: "≢", nesear: "⤨", nesim: "≂̸", NestedGreaterGreater: "≫", NestedLessLess: "≪", NewLine: `
|
|
1017
|
-
`, nexist: "∄", nexists: "∄", nfr: "𝔫", Nfr: "𝔑", nge: "≱", ngE: "≧̸", ngeq: "≱", ngeqq: "≧̸", ngeqslant: "⩾̸", nges: "⩾̸", nGg: "⋙̸", ngsim: "≵", ngt: "≯", nGt: "≫⃒", ngtr: "≯", nGtv: "≫̸", nharr: "↮", nhArr: "⇎", nhpar: "⫲", ni: "∋", nis: "⋼", nisd: "⋺", niv: "∋", njcy: "њ", NJcy: "Њ", nlarr: "↚", nlArr: "⇍", nldr: "‥", nle: "≰", nlE: "≦̸", nleftarrow: "↚", nLeftarrow: "⇍", nleftrightarrow: "↮", nLeftrightarrow: "⇎", nleq: "≰", nleqq: "≦̸", nleqslant: "⩽̸", nles: "⩽̸", nless: "≮", nLl: "⋘̸", nlsim: "≴", nlt: "≮", nLt: "≪⃒", nltri: "⋪", nltrie: "⋬", nLtv: "≪̸", nmid: "∤", NoBreak: "", NonBreakingSpace: " ", nopf: "𝕟", Nopf: "ℕ", not: "¬", Not: "⫬", NotCongruent: "≢", NotCupCap: "≭", NotDoubleVerticalBar: "∦", NotElement: "∉", NotEqual: "≠", NotEqualTilde: "≂̸", NotExists: "∄", NotGreater: "≯", NotGreaterEqual: "≱", NotGreaterFullEqual: "≧̸", NotGreaterGreater: "≫̸", NotGreaterLess: "≹", NotGreaterSlantEqual: "⩾̸", NotGreaterTilde: "≵", NotHumpDownHump: "≎̸", NotHumpEqual: "≏̸", notin: "∉", notindot: "⋵̸", notinE: "⋹̸", notinva: "∉", notinvb: "⋷", notinvc: "⋶", NotLeftTriangle: "⋪", NotLeftTriangleBar: "⧏̸", NotLeftTriangleEqual: "⋬", NotLess: "≮", NotLessEqual: "≰", NotLessGreater: "≸", NotLessLess: "≪̸", NotLessSlantEqual: "⩽̸", NotLessTilde: "≴", NotNestedGreaterGreater: "⪢̸", NotNestedLessLess: "⪡̸", notni: "∌", notniva: "∌", notnivb: "⋾", notnivc: "⋽", NotPrecedes: "⊀", NotPrecedesEqual: "⪯̸", NotPrecedesSlantEqual: "⋠", NotReverseElement: "∌", NotRightTriangle: "⋫", NotRightTriangleBar: "⧐̸", NotRightTriangleEqual: "⋭", NotSquareSubset: "⊏̸", NotSquareSubsetEqual: "⋢", NotSquareSuperset: "⊐̸", NotSquareSupersetEqual: "⋣", NotSubset: "⊂⃒", NotSubsetEqual: "⊈", NotSucceeds: "⊁", NotSucceedsEqual: "⪰̸", NotSucceedsSlantEqual: "⋡", NotSucceedsTilde: "≿̸", NotSuperset: "⊃⃒", NotSupersetEqual: "⊉", NotTilde: "≁", NotTildeEqual: "≄", NotTildeFullEqual: "≇", NotTildeTilde: "≉", NotVerticalBar: "∤", npar: "∦", nparallel: "∦", nparsl: "⫽⃥", npart: "∂̸", npolint: "⨔", npr: "⊀", nprcue: "⋠", npre: "⪯̸", nprec: "⊀", npreceq: "⪯̸", nrarr: "↛", nrArr: "⇏", nrarrc: "⤳̸", nrarrw: "↝̸", nrightarrow: "↛", nRightarrow: "⇏", nrtri: "⋫", nrtrie: "⋭", nsc: "⊁", nsccue: "⋡", nsce: "⪰̸", nscr: "𝓃", 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: "ñ", Ntilde: "Ñ", ntlg: "≸", ntriangleleft: "⋪", ntrianglelefteq: "⋬", ntriangleright: "⋫", ntrianglerighteq: "⋭", nu: "ν", Nu: "Ν", num: "#", numero: "№", numsp: " ", nvap: "≍⃒", nvdash: "⊬", nvDash: "⊭", nVdash: "⊮", nVDash: "⊯", nvge: "≥⃒", nvgt: ">⃒", nvHarr: "⤄", nvinfin: "⧞", nvlArr: "⤂", nvle: "≤⃒", nvlt: "<⃒", nvltrie: "⊴⃒", nvrArr: "⤃", nvrtrie: "⊵⃒", nvsim: "∼⃒", nwarhk: "⤣", nwarr: "↖", nwArr: "⇖", nwarrow: "↖", nwnear: "⤧", oacute: "ó", Oacute: "Ó", oast: "⊛", ocir: "⊚", ocirc: "ô", Ocirc: "Ô", ocy: "о", Ocy: "О", odash: "⊝", odblac: "ő", Odblac: "Ő", odiv: "⨸", odot: "⊙", odsold: "⦼", oelig: "œ", OElig: "Œ", ofcir: "⦿", ofr: "𝔬", Ofr: "𝔒", ogon: "˛", ograve: "ò", Ograve: "Ò", ogt: "⧁", ohbar: "⦵", ohm: "Ω", oint: "∮", olarr: "↺", olcir: "⦾", olcross: "⦻", oline: "‾", olt: "⧀", omacr: "ō", Omacr: "Ō", omega: "ω", Omega: "Ω", omicron: "ο", Omicron: "Ο", omid: "⦶", ominus: "⊖", oopf: "𝕠", Oopf: "𝕆", opar: "⦷", OpenCurlyDoubleQuote: "“", OpenCurlyQuote: "‘", operp: "⦹", oplus: "⊕", or: "∨", Or: "⩔", orarr: "↻", ord: "⩝", order: "ℴ", orderof: "ℴ", ordf: "ª", ordm: "º", origof: "⊶", oror: "⩖", orslope: "⩗", orv: "⩛", oS: "Ⓢ", oscr: "ℴ", Oscr: "𝒪", oslash: "ø", Oslash: "Ø", osol: "⊘", otilde: "õ", Otilde: "Õ", otimes: "⊗", Otimes: "⨷", otimesas: "⨶", ouml: "ö", Ouml: "Ö", ovbar: "⌽", OverBar: "‾", OverBrace: "⏞", OverBracket: "⎴", OverParenthesis: "⏜", par: "∥", para: "¶", parallel: "∥", parsim: "⫳", parsl: "⫽", part: "∂", PartialD: "∂", pcy: "п", Pcy: "П", percnt: "%", period: ".", permil: "‰", perp: "⊥", pertenk: "‱", pfr: "𝔭", Pfr: "𝔓", phi: "φ", Phi: "Φ", phiv: "ϕ", phmmat: "ℳ", phone: "☎", pi: "π", Pi: "Π", pitchfork: "⋔", piv: "ϖ", planck: "ℏ", planckh: "ℎ", plankv: "ℏ", plus: "+", plusacir: "⨣", plusb: "⊞", pluscir: "⨢", plusdo: "∔", plusdu: "⨥", pluse: "⩲", PlusMinus: "±", plusmn: "±", plussim: "⨦", plustwo: "⨧", pm: "±", Poincareplane: "ℌ", pointint: "⨕", popf: "𝕡", Popf: "ℙ", pound: "£", pr: "≺", Pr: "⪻", prap: "⪷", prcue: "≼", pre: "⪯", prE: "⪳", prec: "≺", precapprox: "⪷", preccurlyeq: "≼", Precedes: "≺", PrecedesEqual: "⪯", PrecedesSlantEqual: "≼", PrecedesTilde: "≾", preceq: "⪯", precnapprox: "⪹", precneqq: "⪵", precnsim: "⋨", precsim: "≾", prime: "′", Prime: "″", primes: "ℙ", prnap: "⪹", prnE: "⪵", prnsim: "⋨", prod: "∏", Product: "∏", profalar: "⌮", profline: "⌒", profsurf: "⌓", prop: "∝", Proportion: "∷", Proportional: "∝", propto: "∝", prsim: "≾", prurel: "⊰", pscr: "𝓅", Pscr: "𝒫", psi: "ψ", Psi: "Ψ", puncsp: " ", qfr: "𝔮", Qfr: "𝔔", qint: "⨌", qopf: "𝕢", Qopf: "ℚ", qprime: "⁗", qscr: "𝓆", Qscr: "𝒬", quaternions: "ℍ", quatint: "⨖", quest: "?", questeq: "≟", quot: '"', QUOT: '"', rAarr: "⇛", race: "∽̱", racute: "ŕ", Racute: "Ŕ", radic: "√", raemptyv: "⦳", rang: "⟩", Rang: "⟫", rangd: "⦒", range: "⦥", rangle: "⟩", raquo: "»", rarr: "→", rArr: "⇒", Rarr: "↠", rarrap: "⥵", rarrb: "⇥", rarrbfs: "⤠", rarrc: "⤳", rarrfs: "⤞", rarrhk: "↪", rarrlp: "↬", rarrpl: "⥅", rarrsim: "⥴", rarrtl: "↣", Rarrtl: "⤖", rarrw: "↝", ratail: "⤚", rAtail: "⤜", ratio: "∶", rationals: "ℚ", rbarr: "⤍", rBarr: "⤏", RBarr: "⤐", rbbrk: "❳", rbrace: "}", rbrack: "]", rbrke: "⦌", rbrksld: "⦎", rbrkslu: "⦐", rcaron: "ř", Rcaron: "Ř", rcedil: "ŗ", Rcedil: "Ŗ", rceil: "⌉", rcub: "}", rcy: "р", Rcy: "Р", rdca: "⤷", rdldhar: "⥩", rdquo: "”", rdquor: "”", rdsh: "↳", Re: "ℜ", real: "ℜ", realine: "ℛ", realpart: "ℜ", reals: "ℝ", rect: "▭", reg: "®", REG: "®", ReverseElement: "∋", ReverseEquilibrium: "⇋", ReverseUpEquilibrium: "⥯", rfisht: "⥽", rfloor: "⌋", rfr: "𝔯", Rfr: "ℜ", rHar: "⥤", rhard: "⇁", rharu: "⇀", rharul: "⥬", rho: "ρ", Rho: "Ρ", rhov: "ϱ", RightAngleBracket: "⟩", rightarrow: "→", Rightarrow: "⇒", RightArrow: "→", RightArrowBar: "⇥", RightArrowLeftArrow: "⇄", rightarrowtail: "↣", RightCeiling: "⌉", RightDoubleBracket: "⟧", RightDownTeeVector: "⥝", RightDownVector: "⇂", RightDownVectorBar: "⥕", RightFloor: "⌋", rightharpoondown: "⇁", rightharpoonup: "⇀", rightleftarrows: "⇄", rightleftharpoons: "⇌", rightrightarrows: "⇉", rightsquigarrow: "↝", RightTee: "⊢", RightTeeArrow: "↦", RightTeeVector: "⥛", rightthreetimes: "⋌", RightTriangle: "⊳", RightTriangleBar: "⧐", RightTriangleEqual: "⊵", RightUpDownVector: "⥏", RightUpTeeVector: "⥜", RightUpVector: "↾", RightUpVectorBar: "⥔", RightVector: "⇀", RightVectorBar: "⥓", ring: "˚", risingdotseq: "≓", rlarr: "⇄", rlhar: "⇌", rlm: "", rmoust: "⎱", rmoustache: "⎱", rnmid: "⫮", roang: "⟭", roarr: "⇾", robrk: "⟧", ropar: "⦆", ropf: "𝕣", Ropf: "ℝ", roplus: "⨮", rotimes: "⨵", RoundImplies: "⥰", rpar: ")", rpargt: "⦔", rppolint: "⨒", rrarr: "⇉", Rrightarrow: "⇛", rsaquo: "›", rscr: "𝓇", Rscr: "ℛ", rsh: "↱", Rsh: "↱", rsqb: "]", rsquo: "’", rsquor: "’", rthree: "⋌", rtimes: "⋊", rtri: "▹", rtrie: "⊵", rtrif: "▸", rtriltri: "⧎", RuleDelayed: "⧴", ruluhar: "⥨", rx: "℞", sacute: "ś", Sacute: "Ś", sbquo: "‚", sc: "≻", Sc: "⪼", scap: "⪸", scaron: "š", Scaron: "Š", sccue: "≽", sce: "⪰", scE: "⪴", scedil: "ş", Scedil: "Ş", scirc: "ŝ", Scirc: "Ŝ", scnap: "⪺", scnE: "⪶", scnsim: "⋩", scpolint: "⨓", scsim: "≿", scy: "с", Scy: "С", sdot: "⋅", sdotb: "⊡", sdote: "⩦", searhk: "⤥", searr: "↘", seArr: "⇘", searrow: "↘", sect: "§", semi: ";", seswar: "⤩", setminus: "∖", setmn: "∖", sext: "✶", sfr: "𝔰", Sfr: "𝔖", sfrown: "⌢", sharp: "♯", shchcy: "щ", SHCHcy: "Щ", shcy: "ш", SHcy: "Ш", ShortDownArrow: "↓", ShortLeftArrow: "←", shortmid: "∣", shortparallel: "∥", ShortRightArrow: "→", ShortUpArrow: "↑", shy: "", sigma: "σ", Sigma: "Σ", sigmaf: "ς", sigmav: "ς", sim: "∼", simdot: "⩪", sime: "≃", simeq: "≃", simg: "⪞", simgE: "⪠", siml: "⪝", simlE: "⪟", simne: "≆", simplus: "⨤", simrarr: "⥲", slarr: "←", SmallCircle: "∘", smallsetminus: "∖", smashp: "⨳", smeparsl: "⧤", smid: "∣", smile: "⌣", smt: "⪪", smte: "⪬", smtes: "⪬︀", softcy: "ь", SOFTcy: "Ь", sol: "/", solb: "⧄", solbar: "⌿", sopf: "𝕤", Sopf: "𝕊", spades: "♠", spadesuit: "♠", spar: "∥", sqcap: "⊓", sqcaps: "⊓︀", sqcup: "⊔", sqcups: "⊔︀", Sqrt: "√", sqsub: "⊏", sqsube: "⊑", sqsubset: "⊏", sqsubseteq: "⊑", sqsup: "⊐", sqsupe: "⊒", sqsupset: "⊐", sqsupseteq: "⊒", squ: "□", square: "□", Square: "□", SquareIntersection: "⊓", SquareSubset: "⊏", SquareSubsetEqual: "⊑", SquareSuperset: "⊐", SquareSupersetEqual: "⊒", SquareUnion: "⊔", squarf: "▪", squf: "▪", srarr: "→", sscr: "𝓈", Sscr: "𝒮", ssetmn: "∖", ssmile: "⌣", sstarf: "⋆", star: "☆", Star: "⋆", starf: "★", straightepsilon: "ϵ", straightphi: "ϕ", strns: "¯", sub: "⊂", Sub: "⋐", subdot: "⪽", sube: "⊆", subE: "⫅", subedot: "⫃", submult: "⫁", subne: "⊊", subnE: "⫋", subplus: "⪿", subrarr: "⥹", subset: "⊂", Subset: "⋐", subseteq: "⊆", subseteqq: "⫅", SubsetEqual: "⊆", subsetneq: "⊊", subsetneqq: "⫋", subsim: "⫇", subsub: "⫕", subsup: "⫓", succ: "≻", succapprox: "⪸", succcurlyeq: "≽", Succeeds: "≻", SucceedsEqual: "⪰", SucceedsSlantEqual: "≽", SucceedsTilde: "≿", succeq: "⪰", succnapprox: "⪺", succneqq: "⪶", succnsim: "⋩", succsim: "≿", SuchThat: "∋", sum: "∑", Sum: "∑", sung: "♪", sup: "⊃", Sup: "⋑", sup1: "¹", sup2: "²", sup3: "³", supdot: "⪾", supdsub: "⫘", supe: "⊇", supE: "⫆", supedot: "⫄", Superset: "⊃", SupersetEqual: "⊇", suphsol: "⟉", suphsub: "⫗", suplarr: "⥻", supmult: "⫂", supne: "⊋", supnE: "⫌", supplus: "⫀", supset: "⊃", Supset: "⋑", supseteq: "⊇", supseteqq: "⫆", supsetneq: "⊋", supsetneqq: "⫌", supsim: "⫈", supsub: "⫔", supsup: "⫖", swarhk: "⤦", swarr: "↙", swArr: "⇙", swarrow: "↙", swnwar: "⤪", szlig: "ß", Tab: " ", target: "⌖", tau: "τ", Tau: "Τ", tbrk: "⎴", tcaron: "ť", Tcaron: "Ť", tcedil: "ţ", Tcedil: "Ţ", tcy: "т", Tcy: "Т", tdot: "⃛", telrec: "⌕", tfr: "𝔱", Tfr: "𝔗", there4: "∴", therefore: "∴", Therefore: "∴", theta: "θ", Theta: "Θ", thetasym: "ϑ", thetav: "ϑ", thickapprox: "≈", thicksim: "∼", ThickSpace: " ", thinsp: " ", ThinSpace: " ", thkap: "≈", thksim: "∼", thorn: "þ", THORN: "Þ", tilde: "˜", Tilde: "∼", TildeEqual: "≃", TildeFullEqual: "≅", TildeTilde: "≈", times: "×", timesb: "⊠", timesbar: "⨱", timesd: "⨰", tint: "∭", toea: "⤨", top: "⊤", topbot: "⌶", topcir: "⫱", topf: "𝕥", Topf: "𝕋", topfork: "⫚", tosa: "⤩", tprime: "‴", trade: "™", TRADE: "™", triangle: "▵", triangledown: "▿", triangleleft: "◃", trianglelefteq: "⊴", triangleq: "≜", triangleright: "▹", trianglerighteq: "⊵", tridot: "◬", trie: "≜", triminus: "⨺", TripleDot: "⃛", triplus: "⨹", trisb: "⧍", tritime: "⨻", trpezium: "⏢", tscr: "𝓉", Tscr: "𝒯", tscy: "ц", TScy: "Ц", tshcy: "ћ", TSHcy: "Ћ", tstrok: "ŧ", Tstrok: "Ŧ", twixt: "≬", twoheadleftarrow: "↞", twoheadrightarrow: "↠", uacute: "ú", Uacute: "Ú", uarr: "↑", uArr: "⇑", Uarr: "↟", Uarrocir: "⥉", ubrcy: "ў", Ubrcy: "Ў", ubreve: "ŭ", Ubreve: "Ŭ", ucirc: "û", Ucirc: "Û", ucy: "у", Ucy: "У", udarr: "⇅", udblac: "ű", Udblac: "Ű", udhar: "⥮", ufisht: "⥾", ufr: "𝔲", Ufr: "𝔘", ugrave: "ù", Ugrave: "Ù", uHar: "⥣", uharl: "↿", uharr: "↾", uhblk: "▀", ulcorn: "⌜", ulcorner: "⌜", ulcrop: "⌏", ultri: "◸", umacr: "ū", Umacr: "Ū", uml: "¨", UnderBar: "_", UnderBrace: "⏟", UnderBracket: "⎵", UnderParenthesis: "⏝", Union: "⋃", UnionPlus: "⊎", uogon: "ų", Uogon: "Ų", uopf: "𝕦", Uopf: "𝕌", uparrow: "↑", Uparrow: "⇑", UpArrow: "↑", UpArrowBar: "⤒", UpArrowDownArrow: "⇅", updownarrow: "↕", Updownarrow: "⇕", UpDownArrow: "↕", UpEquilibrium: "⥮", upharpoonleft: "↿", upharpoonright: "↾", uplus: "⊎", UpperLeftArrow: "↖", UpperRightArrow: "↗", upsi: "υ", Upsi: "ϒ", upsih: "ϒ", upsilon: "υ", Upsilon: "Υ", UpTee: "⊥", UpTeeArrow: "↥", upuparrows: "⇈", urcorn: "⌝", urcorner: "⌝", urcrop: "⌎", uring: "ů", Uring: "Ů", urtri: "◹", uscr: "𝓊", Uscr: "𝒰", utdot: "⋰", utilde: "ũ", Utilde: "Ũ", utri: "▵", utrif: "▴", uuarr: "⇈", uuml: "ü", Uuml: "Ü", uwangle: "⦧", vangrt: "⦜", varepsilon: "ϵ", varkappa: "ϰ", varnothing: "∅", varphi: "ϕ", varpi: "ϖ", varpropto: "∝", varr: "↕", vArr: "⇕", varrho: "ϱ", varsigma: "ς", varsubsetneq: "⊊︀", varsubsetneqq: "⫋︀", varsupsetneq: "⊋︀", varsupsetneqq: "⫌︀", vartheta: "ϑ", vartriangleleft: "⊲", vartriangleright: "⊳", vBar: "⫨", Vbar: "⫫", vBarv: "⫩", vcy: "в", Vcy: "В", vdash: "⊢", vDash: "⊨", Vdash: "⊩", VDash: "⊫", Vdashl: "⫦", vee: "∨", Vee: "⋁", veebar: "⊻", veeeq: "≚", vellip: "⋮", verbar: "|", Verbar: "‖", vert: "|", Vert: "‖", VerticalBar: "∣", VerticalLine: "|", VerticalSeparator: "❘", VerticalTilde: "≀", VeryThinSpace: " ", vfr: "𝔳", Vfr: "𝔙", vltri: "⊲", vnsub: "⊂⃒", vnsup: "⊃⃒", vopf: "𝕧", Vopf: "𝕍", vprop: "∝", vrtri: "⊳", vscr: "𝓋", Vscr: "𝒱", vsubne: "⊊︀", vsubnE: "⫋︀", vsupne: "⊋︀", vsupnE: "⫌︀", Vvdash: "⊪", vzigzag: "⦚", wcirc: "ŵ", Wcirc: "Ŵ", wedbar: "⩟", wedge: "∧", Wedge: "⋀", wedgeq: "≙", weierp: "℘", wfr: "𝔴", Wfr: "𝔚", wopf: "𝕨", Wopf: "𝕎", wp: "℘", wr: "≀", wreath: "≀", wscr: "𝓌", Wscr: "𝒲", xcap: "⋂", xcirc: "◯", xcup: "⋃", xdtri: "▽", xfr: "𝔵", Xfr: "𝔛", xharr: "⟷", xhArr: "⟺", xi: "ξ", Xi: "Ξ", xlarr: "⟵", xlArr: "⟸", xmap: "⟼", xnis: "⋻", xodot: "⨀", xopf: "𝕩", Xopf: "𝕏", xoplus: "⨁", xotime: "⨂", xrarr: "⟶", xrArr: "⟹", xscr: "𝓍", Xscr: "𝒳", xsqcup: "⨆", xuplus: "⨄", xutri: "△", xvee: "⋁", xwedge: "⋀", yacute: "ý", Yacute: "Ý", yacy: "я", YAcy: "Я", ycirc: "ŷ", Ycirc: "Ŷ", ycy: "ы", Ycy: "Ы", yen: "¥", yfr: "𝔶", Yfr: "𝔜", yicy: "ї", YIcy: "Ї", yopf: "𝕪", Yopf: "𝕐", yscr: "𝓎", Yscr: "𝒴", yucy: "ю", YUcy: "Ю", yuml: "ÿ", Yuml: "Ÿ", zacute: "ź", Zacute: "Ź", zcaron: "ž", Zcaron: "Ž", zcy: "з", Zcy: "З", zdot: "ż", Zdot: "Ż", zeetrf: "ℨ", ZeroWidthSpace: "", zeta: "ζ", Zeta: "Ζ", zfr: "𝔷", Zfr: "ℨ", zhcy: "ж", ZHcy: "Ж", zigrarr: "⇝", zopf: "𝕫", Zopf: "ℤ", zscr: "𝓏", Zscr: "𝒵", zwj: "", zwnj: "" }, q = { aacute: "á", Aacute: "Á", acirc: "â", Acirc: "Â", acute: "´", aelig: "æ", AElig: "Æ", agrave: "à", Agrave: "À", amp: "&", AMP: "&", aring: "å", Aring: "Å", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", brvbar: "¦", ccedil: "ç", Ccedil: "Ç", cedil: "¸", cent: "¢", copy: "©", COPY: "©", curren: "¤", deg: "°", divide: "÷", eacute: "é", Eacute: "É", ecirc: "ê", Ecirc: "Ê", egrave: "è", Egrave: "È", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", frac12: "½", frac14: "¼", frac34: "¾", gt: ">", GT: ">", iacute: "í", Iacute: "Í", icirc: "î", Icirc: "Î", iexcl: "¡", igrave: "ì", Igrave: "Ì", iquest: "¿", iuml: "ï", Iuml: "Ï", laquo: "«", lt: "<", LT: "<", macr: "¯", micro: "µ", middot: "·", nbsp: " ", not: "¬", ntilde: "ñ", Ntilde: "Ñ", oacute: "ó", Oacute: "Ó", ocirc: "ô", Ocirc: "Ô", ograve: "ò", Ograve: "Ò", ordf: "ª", ordm: "º", oslash: "ø", Oslash: "Ø", otilde: "õ", Otilde: "Õ", ouml: "ö", Ouml: "Ö", para: "¶", plusmn: "±", pound: "£", quot: '"', QUOT: '"', raquo: "»", reg: "®", REG: "®", sect: "§", shy: "", sup1: "¹", sup2: "²", sup3: "³", szlig: "ß", thorn: "þ", THORN: "Þ", times: "×", uacute: "ú", Uacute: "Ú", ucirc: "û", Ucirc: "Û", ugrave: "ù", Ugrave: "Ù", uml: "¨", uuml: "ü", Uuml: "Ü", yacute: "ý", Yacute: "Ý", yen: "¥", yuml: "ÿ" }, de = { 0: "�", 128: "€", 130: "‚", 131: "ƒ", 132: "„", 133: "…", 134: "†", 135: "‡", 136: "ˆ", 137: "‰", 138: "Š", 139: "‹", 140: "Œ", 142: "Ž", 145: "‘", 146: "’", 147: "“", 148: "”", 149: "•", 150: "–", 151: "—", 152: "˜", 153: "™", 154: "š", 155: "›", 156: "œ", 158: "ž", 159: "Ÿ" }, he = [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 64976, 64977, 64978, 64979, 64980, 64981, 64982, 64983, 64984, 64985, 64986, 64987, 64988, 64989, 64990, 64991, 64992, 64993, 64994, 64995, 64996, 64997, 64998, 64999, 65e3, 65001, 65002, 65003, 65004, 65005, 65006, 65007, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111], ge = String.fromCharCode, j = {}, Ae = j.hasOwnProperty, pe = function(ie, Re) {
|
|
1018
|
-
return
|
|
1023
|
+
}, B = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/, q = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, V = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g, w = { aacute: "á", Aacute: "Á", abreve: "ă", Abreve: "Ă", ac: "∾", acd: "∿", acE: "∾̳", acirc: "â", Acirc: "Â", acute: "´", acy: "а", Acy: "А", aelig: "æ", AElig: "Æ", af: "", afr: "𝔞", Afr: "𝔄", agrave: "à", Agrave: "À", alefsym: "ℵ", aleph: "ℵ", alpha: "α", Alpha: "Α", amacr: "ā", Amacr: "Ā", amalg: "⨿", amp: "&", AMP: "&", and: "∧", And: "⩓", andand: "⩕", andd: "⩜", andslope: "⩘", andv: "⩚", ang: "∠", ange: "⦤", angle: "∠", angmsd: "∡", angmsdaa: "⦨", angmsdab: "⦩", angmsdac: "⦪", angmsdad: "⦫", angmsdae: "⦬", angmsdaf: "⦭", angmsdag: "⦮", angmsdah: "⦯", angrt: "∟", angrtvb: "⊾", angrtvbd: "⦝", angsph: "∢", angst: "Å", angzarr: "⍼", aogon: "ą", Aogon: "Ą", aopf: "𝕒", Aopf: "𝔸", ap: "≈", apacir: "⩯", ape: "≊", apE: "⩰", apid: "≋", apos: "'", ApplyFunction: "", approx: "≈", approxeq: "≊", aring: "å", Aring: "Å", ascr: "𝒶", Ascr: "𝒜", Assign: "≔", ast: "*", asymp: "≈", asympeq: "≍", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", awconint: "∳", awint: "⨑", backcong: "≌", backepsilon: "϶", backprime: "‵", backsim: "∽", backsimeq: "⋍", Backslash: "∖", Barv: "⫧", barvee: "⊽", barwed: "⌅", Barwed: "⌆", barwedge: "⌅", bbrk: "⎵", bbrktbrk: "⎶", bcong: "≌", bcy: "б", Bcy: "Б", bdquo: "„", becaus: "∵", because: "∵", Because: "∵", bemptyv: "⦰", bepsi: "϶", bernou: "ℬ", Bernoullis: "ℬ", beta: "β", Beta: "Β", beth: "ℶ", between: "≬", bfr: "𝔟", 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: "⌐", bNot: "⫭", bopf: "𝕓", Bopf: "𝔹", bot: "⊥", bottom: "⊥", bowtie: "⋈", boxbox: "⧉", boxdl: "┐", boxdL: "╕", boxDl: "╖", boxDL: "╗", boxdr: "┌", boxdR: "╒", boxDr: "╓", boxDR: "╔", boxh: "─", boxH: "═", boxhd: "┬", boxhD: "╥", boxHd: "╤", boxHD: "╦", boxhu: "┴", boxhU: "╨", boxHu: "╧", boxHU: "╩", boxminus: "⊟", boxplus: "⊞", boxtimes: "⊠", boxul: "┘", boxuL: "╛", boxUl: "╜", boxUL: "╝", boxur: "└", boxuR: "╘", boxUr: "╙", boxUR: "╚", boxv: "│", boxV: "║", boxvh: "┼", boxvH: "╪", boxVh: "╫", boxVH: "╬", boxvl: "┤", boxvL: "╡", boxVl: "╢", boxVL: "╣", boxvr: "├", boxvR: "╞", boxVr: "╟", boxVR: "╠", bprime: "‵", breve: "˘", Breve: "˘", brvbar: "¦", bscr: "𝒷", Bscr: "ℬ", bsemi: "⁏", bsim: "∽", bsime: "⋍", bsol: "\\", bsolb: "⧅", bsolhsub: "⟈", bull: "•", bullet: "•", bump: "≎", bumpe: "≏", bumpE: "⪮", bumpeq: "≏", Bumpeq: "≎", cacute: "ć", Cacute: "Ć", cap: "∩", Cap: "⋒", capand: "⩄", capbrcup: "⩉", capcap: "⩋", capcup: "⩇", capdot: "⩀", CapitalDifferentialD: "ⅅ", caps: "∩︀", caret: "⁁", caron: "ˇ", Cayleys: "ℭ", ccaps: "⩍", ccaron: "č", Ccaron: "Č", ccedil: "ç", Ccedil: "Ç", ccirc: "ĉ", Ccirc: "Ĉ", Cconint: "∰", ccups: "⩌", ccupssm: "⩐", cdot: "ċ", Cdot: "Ċ", cedil: "¸", Cedilla: "¸", cemptyv: "⦲", cent: "¢", centerdot: "·", CenterDot: "·", cfr: "𝔠", Cfr: "ℭ", chcy: "ч", CHcy: "Ч", check: "✓", checkmark: "✓", chi: "χ", Chi: "Χ", cir: "○", circ: "ˆ", circeq: "≗", circlearrowleft: "↺", circlearrowright: "↻", circledast: "⊛", circledcirc: "⊚", circleddash: "⊝", CircleDot: "⊙", circledR: "®", circledS: "Ⓢ", CircleMinus: "⊖", CirclePlus: "⊕", CircleTimes: "⊗", cire: "≗", cirE: "⧃", cirfnint: "⨐", cirmid: "⫯", cirscir: "⧂", ClockwiseContourIntegral: "∲", CloseCurlyDoubleQuote: "”", CloseCurlyQuote: "’", clubs: "♣", clubsuit: "♣", colon: ":", Colon: "∷", colone: "≔", Colone: "⩴", coloneq: "≔", comma: ",", commat: "@", comp: "∁", compfn: "∘", complement: "∁", complexes: "ℂ", cong: "≅", congdot: "⩭", Congruent: "≡", conint: "∮", Conint: "∯", ContourIntegral: "∮", copf: "𝕔", Copf: "ℂ", coprod: "∐", Coproduct: "∐", copy: "©", COPY: "©", copysr: "℗", CounterClockwiseContourIntegral: "∳", crarr: "↵", cross: "✗", Cross: "⨯", cscr: "𝒸", Cscr: "𝒞", csub: "⫏", csube: "⫑", csup: "⫐", csupe: "⫒", ctdot: "⋯", cudarrl: "⤸", cudarrr: "⤵", cuepr: "⋞", cuesc: "⋟", cularr: "↶", cularrp: "⤽", cup: "∪", Cup: "⋓", cupbrcap: "⩈", cupcap: "⩆", CupCap: "≍", cupcup: "⩊", cupdot: "⊍", cupor: "⩅", cups: "∪︀", curarr: "↷", curarrm: "⤼", curlyeqprec: "⋞", curlyeqsucc: "⋟", curlyvee: "⋎", curlywedge: "⋏", curren: "¤", curvearrowleft: "↶", curvearrowright: "↷", cuvee: "⋎", cuwed: "⋏", cwconint: "∲", cwint: "∱", cylcty: "⌭", dagger: "†", Dagger: "‡", daleth: "ℸ", darr: "↓", dArr: "⇓", Darr: "↡", dash: "‐", dashv: "⊣", Dashv: "⫤", dbkarow: "⤏", dblac: "˝", dcaron: "ď", Dcaron: "Ď", dcy: "д", Dcy: "Д", dd: "ⅆ", DD: "ⅅ", ddagger: "‡", ddarr: "⇊", DDotrahd: "⤑", ddotseq: "⩷", deg: "°", Del: "∇", delta: "δ", Delta: "Δ", demptyv: "⦱", dfisht: "⥿", dfr: "𝔡", Dfr: "𝔇", dHar: "⥥", dharl: "⇃", dharr: "⇂", DiacriticalAcute: "´", DiacriticalDot: "˙", DiacriticalDoubleAcute: "˝", DiacriticalGrave: "`", DiacriticalTilde: "˜", diam: "⋄", diamond: "⋄", Diamond: "⋄", diamondsuit: "♦", diams: "♦", die: "¨", DifferentialD: "ⅆ", digamma: "ϝ", disin: "⋲", div: "÷", divide: "÷", divideontimes: "⋇", divonx: "⋇", djcy: "ђ", DJcy: "Ђ", dlcorn: "⌞", dlcrop: "⌍", dollar: "$", dopf: "𝕕", Dopf: "𝔻", dot: "˙", Dot: "¨", DotDot: "⃜", doteq: "≐", doteqdot: "≑", DotEqual: "≐", dotminus: "∸", dotplus: "∔", dotsquare: "⊡", doublebarwedge: "⌆", DoubleContourIntegral: "∯", DoubleDot: "¨", DoubleDownArrow: "⇓", DoubleLeftArrow: "⇐", DoubleLeftRightArrow: "⇔", DoubleLeftTee: "⫤", DoubleLongLeftArrow: "⟸", DoubleLongLeftRightArrow: "⟺", DoubleLongRightArrow: "⟹", DoubleRightArrow: "⇒", DoubleRightTee: "⊨", DoubleUpArrow: "⇑", DoubleUpDownArrow: "⇕", DoubleVerticalBar: "∥", downarrow: "↓", Downarrow: "⇓", DownArrow: "↓", DownArrowBar: "⤓", DownArrowUpArrow: "⇵", DownBreve: "̑", downdownarrows: "⇊", downharpoonleft: "⇃", downharpoonright: "⇂", DownLeftRightVector: "⥐", DownLeftTeeVector: "⥞", DownLeftVector: "↽", DownLeftVectorBar: "⥖", DownRightTeeVector: "⥟", DownRightVector: "⇁", DownRightVectorBar: "⥗", DownTee: "⊤", DownTeeArrow: "↧", drbkarow: "⤐", drcorn: "⌟", drcrop: "⌌", dscr: "𝒹", Dscr: "𝒟", dscy: "ѕ", DScy: "Ѕ", dsol: "⧶", dstrok: "đ", Dstrok: "Đ", dtdot: "⋱", dtri: "▿", dtrif: "▾", duarr: "⇵", duhar: "⥯", dwangle: "⦦", dzcy: "џ", DZcy: "Џ", dzigrarr: "⟿", eacute: "é", Eacute: "É", easter: "⩮", ecaron: "ě", Ecaron: "Ě", ecir: "≖", ecirc: "ê", Ecirc: "Ê", ecolon: "≕", ecy: "э", Ecy: "Э", eDDot: "⩷", edot: "ė", eDot: "≑", Edot: "Ė", ee: "ⅇ", efDot: "≒", efr: "𝔢", Efr: "𝔈", eg: "⪚", egrave: "è", Egrave: "È", egs: "⪖", egsdot: "⪘", el: "⪙", Element: "∈", elinters: "⏧", ell: "ℓ", els: "⪕", elsdot: "⪗", emacr: "ē", Emacr: "Ē", empty: "∅", emptyset: "∅", EmptySmallSquare: "◻", emptyv: "∅", EmptyVerySmallSquare: "▫", emsp: " ", emsp13: " ", emsp14: " ", eng: "ŋ", ENG: "Ŋ", ensp: " ", eogon: "ę", Eogon: "Ę", eopf: "𝕖", Eopf: "𝔼", epar: "⋕", eparsl: "⧣", eplus: "⩱", epsi: "ε", epsilon: "ε", Epsilon: "Ε", epsiv: "ϵ", eqcirc: "≖", eqcolon: "≕", eqsim: "≂", eqslantgtr: "⪖", eqslantless: "⪕", Equal: "⩵", equals: "=", EqualTilde: "≂", equest: "≟", Equilibrium: "⇌", equiv: "≡", equivDD: "⩸", eqvparsl: "⧥", erarr: "⥱", erDot: "≓", escr: "ℯ", Escr: "ℰ", esdot: "≐", esim: "≂", Esim: "⩳", eta: "η", Eta: "Η", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", euro: "€", excl: "!", exist: "∃", Exists: "∃", expectation: "ℰ", exponentiale: "ⅇ", ExponentialE: "ⅇ", fallingdotseq: "≒", fcy: "ф", Fcy: "Ф", female: "♀", ffilig: "ffi", fflig: "ff", ffllig: "ffl", ffr: "𝔣", Ffr: "𝔉", filig: "fi", FilledSmallSquare: "◼", FilledVerySmallSquare: "▪", fjlig: "fj", flat: "♭", fllig: "fl", fltns: "▱", fnof: "ƒ", fopf: "𝕗", Fopf: "𝔽", forall: "∀", ForAll: "∀", fork: "⋔", forkv: "⫙", Fouriertrf: "ℱ", fpartint: "⨍", frac12: "½", frac13: "⅓", frac14: "¼", frac15: "⅕", frac16: "⅙", frac18: "⅛", frac23: "⅔", frac25: "⅖", frac34: "¾", frac35: "⅗", frac38: "⅜", frac45: "⅘", frac56: "⅚", frac58: "⅝", frac78: "⅞", frasl: "⁄", frown: "⌢", fscr: "𝒻", Fscr: "ℱ", gacute: "ǵ", gamma: "γ", Gamma: "Γ", gammad: "ϝ", Gammad: "Ϝ", gap: "⪆", gbreve: "ğ", Gbreve: "Ğ", Gcedil: "Ģ", gcirc: "ĝ", Gcirc: "Ĝ", gcy: "г", Gcy: "Г", gdot: "ġ", Gdot: "Ġ", ge: "≥", gE: "≧", gel: "⋛", gEl: "⪌", geq: "≥", geqq: "≧", geqslant: "⩾", ges: "⩾", gescc: "⪩", gesdot: "⪀", gesdoto: "⪂", gesdotol: "⪄", gesl: "⋛︀", gesles: "⪔", gfr: "𝔤", Gfr: "𝔊", gg: "≫", Gg: "⋙", ggg: "⋙", gimel: "ℷ", gjcy: "ѓ", GJcy: "Ѓ", gl: "≷", gla: "⪥", glE: "⪒", glj: "⪤", gnap: "⪊", gnapprox: "⪊", gne: "⪈", gnE: "≩", gneq: "⪈", gneqq: "≩", gnsim: "⋧", gopf: "𝕘", Gopf: "𝔾", grave: "`", GreaterEqual: "≥", GreaterEqualLess: "⋛", GreaterFullEqual: "≧", GreaterGreater: "⪢", GreaterLess: "≷", GreaterSlantEqual: "⩾", GreaterTilde: "≳", gscr: "ℊ", Gscr: "𝒢", gsim: "≳", gsime: "⪎", gsiml: "⪐", gt: ">", Gt: "≫", GT: ">", gtcc: "⪧", gtcir: "⩺", gtdot: "⋗", gtlPar: "⦕", gtquest: "⩼", gtrapprox: "⪆", gtrarr: "⥸", gtrdot: "⋗", gtreqless: "⋛", gtreqqless: "⪌", gtrless: "≷", gtrsim: "≳", gvertneqq: "≩︀", gvnE: "≩︀", Hacek: "ˇ", hairsp: " ", half: "½", hamilt: "ℋ", hardcy: "ъ", HARDcy: "Ъ", harr: "↔", hArr: "⇔", harrcir: "⥈", harrw: "↭", Hat: "^", hbar: "ℏ", hcirc: "ĥ", Hcirc: "Ĥ", hearts: "♥", heartsuit: "♥", hellip: "…", hercon: "⊹", hfr: "𝔥", Hfr: "ℌ", HilbertSpace: "ℋ", hksearow: "⤥", hkswarow: "⤦", hoarr: "⇿", homtht: "∻", hookleftarrow: "↩", hookrightarrow: "↪", hopf: "𝕙", Hopf: "ℍ", horbar: "―", HorizontalLine: "─", hscr: "𝒽", Hscr: "ℋ", hslash: "ℏ", hstrok: "ħ", Hstrok: "Ħ", HumpDownHump: "≎", HumpEqual: "≏", hybull: "⁃", hyphen: "‐", iacute: "í", Iacute: "Í", ic: "", icirc: "î", Icirc: "Î", icy: "и", Icy: "И", Idot: "İ", iecy: "е", IEcy: "Е", iexcl: "¡", iff: "⇔", ifr: "𝔦", Ifr: "ℑ", igrave: "ì", Igrave: "Ì", ii: "ⅈ", iiiint: "⨌", iiint: "∭", iinfin: "⧜", iiota: "℩", ijlig: "ij", IJlig: "IJ", Im: "ℑ", imacr: "ī", Imacr: "Ī", image: "ℑ", ImaginaryI: "ⅈ", imagline: "ℐ", imagpart: "ℑ", imath: "ı", imof: "⊷", imped: "Ƶ", Implies: "⇒", in: "∈", incare: "℅", infin: "∞", infintie: "⧝", inodot: "ı", int: "∫", Int: "∬", intcal: "⊺", integers: "ℤ", Integral: "∫", intercal: "⊺", Intersection: "⋂", intlarhk: "⨗", intprod: "⨼", InvisibleComma: "", InvisibleTimes: "", iocy: "ё", IOcy: "Ё", iogon: "į", Iogon: "Į", iopf: "𝕚", Iopf: "𝕀", iota: "ι", Iota: "Ι", iprod: "⨼", iquest: "¿", iscr: "𝒾", Iscr: "ℐ", isin: "∈", isindot: "⋵", isinE: "⋹", isins: "⋴", isinsv: "⋳", isinv: "∈", it: "", itilde: "ĩ", Itilde: "Ĩ", iukcy: "і", Iukcy: "І", iuml: "ï", Iuml: "Ï", jcirc: "ĵ", Jcirc: "Ĵ", jcy: "й", Jcy: "Й", jfr: "𝔧", Jfr: "𝔍", jmath: "ȷ", jopf: "𝕛", Jopf: "𝕁", jscr: "𝒿", Jscr: "𝒥", jsercy: "ј", Jsercy: "Ј", jukcy: "є", Jukcy: "Є", kappa: "κ", Kappa: "Κ", kappav: "ϰ", kcedil: "ķ", Kcedil: "Ķ", kcy: "к", Kcy: "К", kfr: "𝔨", Kfr: "𝔎", kgreen: "ĸ", khcy: "х", KHcy: "Х", kjcy: "ќ", KJcy: "Ќ", kopf: "𝕜", Kopf: "𝕂", kscr: "𝓀", Kscr: "𝒦", lAarr: "⇚", lacute: "ĺ", Lacute: "Ĺ", laemptyv: "⦴", lagran: "ℒ", lambda: "λ", Lambda: "Λ", lang: "⟨", Lang: "⟪", langd: "⦑", langle: "⟨", lap: "⪅", Laplacetrf: "ℒ", laquo: "«", larr: "←", lArr: "⇐", Larr: "↞", larrb: "⇤", larrbfs: "⤟", larrfs: "⤝", larrhk: "↩", larrlp: "↫", larrpl: "⤹", larrsim: "⥳", larrtl: "↢", lat: "⪫", latail: "⤙", lAtail: "⤛", late: "⪭", lates: "⪭︀", lbarr: "⤌", lBarr: "⤎", lbbrk: "❲", lbrace: "{", lbrack: "[", lbrke: "⦋", lbrksld: "⦏", lbrkslu: "⦍", lcaron: "ľ", Lcaron: "Ľ", lcedil: "ļ", Lcedil: "Ļ", lceil: "⌈", lcub: "{", lcy: "л", Lcy: "Л", ldca: "⤶", ldquo: "“", ldquor: "„", ldrdhar: "⥧", ldrushar: "⥋", ldsh: "↲", le: "≤", lE: "≦", LeftAngleBracket: "⟨", leftarrow: "←", Leftarrow: "⇐", LeftArrow: "←", LeftArrowBar: "⇤", LeftArrowRightArrow: "⇆", leftarrowtail: "↢", LeftCeiling: "⌈", LeftDoubleBracket: "⟦", LeftDownTeeVector: "⥡", LeftDownVector: "⇃", LeftDownVectorBar: "⥙", LeftFloor: "⌊", leftharpoondown: "↽", leftharpoonup: "↼", leftleftarrows: "⇇", leftrightarrow: "↔", Leftrightarrow: "⇔", LeftRightArrow: "↔", leftrightarrows: "⇆", leftrightharpoons: "⇋", leftrightsquigarrow: "↭", LeftRightVector: "⥎", LeftTee: "⊣", LeftTeeArrow: "↤", LeftTeeVector: "⥚", leftthreetimes: "⋋", LeftTriangle: "⊲", LeftTriangleBar: "⧏", LeftTriangleEqual: "⊴", LeftUpDownVector: "⥑", LeftUpTeeVector: "⥠", LeftUpVector: "↿", LeftUpVectorBar: "⥘", LeftVector: "↼", LeftVectorBar: "⥒", leg: "⋚", lEg: "⪋", leq: "≤", leqq: "≦", leqslant: "⩽", les: "⩽", lescc: "⪨", lesdot: "⩿", lesdoto: "⪁", lesdotor: "⪃", lesg: "⋚︀", lesges: "⪓", lessapprox: "⪅", lessdot: "⋖", lesseqgtr: "⋚", lesseqqgtr: "⪋", LessEqualGreater: "⋚", LessFullEqual: "≦", LessGreater: "≶", lessgtr: "≶", LessLess: "⪡", lesssim: "≲", LessSlantEqual: "⩽", LessTilde: "≲", lfisht: "⥼", lfloor: "⌊", lfr: "𝔩", Lfr: "𝔏", lg: "≶", lgE: "⪑", lHar: "⥢", lhard: "↽", lharu: "↼", lharul: "⥪", lhblk: "▄", ljcy: "љ", LJcy: "Љ", ll: "≪", Ll: "⋘", llarr: "⇇", llcorner: "⌞", Lleftarrow: "⇚", llhard: "⥫", lltri: "◺", lmidot: "ŀ", Lmidot: "Ŀ", lmoust: "⎰", lmoustache: "⎰", lnap: "⪉", lnapprox: "⪉", lne: "⪇", lnE: "≨", lneq: "⪇", lneqq: "≨", lnsim: "⋦", loang: "⟬", loarr: "⇽", lobrk: "⟦", longleftarrow: "⟵", Longleftarrow: "⟸", LongLeftArrow: "⟵", longleftrightarrow: "⟷", Longleftrightarrow: "⟺", LongLeftRightArrow: "⟷", longmapsto: "⟼", longrightarrow: "⟶", Longrightarrow: "⟹", LongRightArrow: "⟶", looparrowleft: "↫", looparrowright: "↬", lopar: "⦅", lopf: "𝕝", Lopf: "𝕃", loplus: "⨭", lotimes: "⨴", lowast: "∗", lowbar: "_", LowerLeftArrow: "↙", LowerRightArrow: "↘", loz: "◊", lozenge: "◊", lozf: "⧫", lpar: "(", lparlt: "⦓", lrarr: "⇆", lrcorner: "⌟", lrhar: "⇋", lrhard: "⥭", lrm: "", lrtri: "⊿", lsaquo: "‹", lscr: "𝓁", Lscr: "ℒ", lsh: "↰", Lsh: "↰", lsim: "≲", lsime: "⪍", lsimg: "⪏", lsqb: "[", lsquo: "‘", lsquor: "‚", lstrok: "ł", Lstrok: "Ł", lt: "<", Lt: "≪", LT: "<", ltcc: "⪦", ltcir: "⩹", ltdot: "⋖", lthree: "⋋", ltimes: "⋉", ltlarr: "⥶", ltquest: "⩻", ltri: "◃", ltrie: "⊴", ltrif: "◂", ltrPar: "⦖", lurdshar: "⥊", luruhar: "⥦", lvertneqq: "≨︀", lvnE: "≨︀", macr: "¯", male: "♂", malt: "✠", maltese: "✠", map: "↦", Map: "⤅", mapsto: "↦", mapstodown: "↧", mapstoleft: "↤", mapstoup: "↥", marker: "▮", mcomma: "⨩", mcy: "м", Mcy: "М", mdash: "—", mDDot: "∺", measuredangle: "∡", MediumSpace: " ", Mellintrf: "ℳ", mfr: "𝔪", Mfr: "𝔐", mho: "℧", micro: "µ", mid: "∣", midast: "*", midcir: "⫰", middot: "·", minus: "−", minusb: "⊟", minusd: "∸", minusdu: "⨪", MinusPlus: "∓", mlcp: "⫛", mldr: "…", mnplus: "∓", models: "⊧", mopf: "𝕞", Mopf: "𝕄", mp: "∓", mscr: "𝓂", Mscr: "ℳ", mstpos: "∾", mu: "μ", Mu: "Μ", multimap: "⊸", mumap: "⊸", nabla: "∇", nacute: "ń", Nacute: "Ń", nang: "∠⃒", nap: "≉", napE: "⩰̸", napid: "≋̸", napos: "ʼn", napprox: "≉", natur: "♮", natural: "♮", naturals: "ℕ", nbsp: " ", nbump: "≎̸", nbumpe: "≏̸", ncap: "⩃", ncaron: "ň", Ncaron: "Ň", ncedil: "ņ", Ncedil: "Ņ", ncong: "≇", ncongdot: "⩭̸", ncup: "⩂", ncy: "н", Ncy: "Н", ndash: "–", ne: "≠", nearhk: "⤤", nearr: "↗", neArr: "⇗", nearrow: "↗", nedot: "≐̸", NegativeMediumSpace: "", NegativeThickSpace: "", NegativeThinSpace: "", NegativeVeryThinSpace: "", nequiv: "≢", nesear: "⤨", nesim: "≂̸", NestedGreaterGreater: "≫", NestedLessLess: "≪", NewLine: `
|
|
1024
|
+
`, nexist: "∄", nexists: "∄", nfr: "𝔫", Nfr: "𝔑", nge: "≱", ngE: "≧̸", ngeq: "≱", ngeqq: "≧̸", ngeqslant: "⩾̸", nges: "⩾̸", nGg: "⋙̸", ngsim: "≵", ngt: "≯", nGt: "≫⃒", ngtr: "≯", nGtv: "≫̸", nharr: "↮", nhArr: "⇎", nhpar: "⫲", ni: "∋", nis: "⋼", nisd: "⋺", niv: "∋", njcy: "њ", NJcy: "Њ", nlarr: "↚", nlArr: "⇍", nldr: "‥", nle: "≰", nlE: "≦̸", nleftarrow: "↚", nLeftarrow: "⇍", nleftrightarrow: "↮", nLeftrightarrow: "⇎", nleq: "≰", nleqq: "≦̸", nleqslant: "⩽̸", nles: "⩽̸", nless: "≮", nLl: "⋘̸", nlsim: "≴", nlt: "≮", nLt: "≪⃒", nltri: "⋪", nltrie: "⋬", nLtv: "≪̸", nmid: "∤", NoBreak: "", NonBreakingSpace: " ", nopf: "𝕟", Nopf: "ℕ", not: "¬", Not: "⫬", NotCongruent: "≢", NotCupCap: "≭", NotDoubleVerticalBar: "∦", NotElement: "∉", NotEqual: "≠", NotEqualTilde: "≂̸", NotExists: "∄", NotGreater: "≯", NotGreaterEqual: "≱", NotGreaterFullEqual: "≧̸", NotGreaterGreater: "≫̸", NotGreaterLess: "≹", NotGreaterSlantEqual: "⩾̸", NotGreaterTilde: "≵", NotHumpDownHump: "≎̸", NotHumpEqual: "≏̸", notin: "∉", notindot: "⋵̸", notinE: "⋹̸", notinva: "∉", notinvb: "⋷", notinvc: "⋶", NotLeftTriangle: "⋪", NotLeftTriangleBar: "⧏̸", NotLeftTriangleEqual: "⋬", NotLess: "≮", NotLessEqual: "≰", NotLessGreater: "≸", NotLessLess: "≪̸", NotLessSlantEqual: "⩽̸", NotLessTilde: "≴", NotNestedGreaterGreater: "⪢̸", NotNestedLessLess: "⪡̸", notni: "∌", notniva: "∌", notnivb: "⋾", notnivc: "⋽", NotPrecedes: "⊀", NotPrecedesEqual: "⪯̸", NotPrecedesSlantEqual: "⋠", NotReverseElement: "∌", NotRightTriangle: "⋫", NotRightTriangleBar: "⧐̸", NotRightTriangleEqual: "⋭", NotSquareSubset: "⊏̸", NotSquareSubsetEqual: "⋢", NotSquareSuperset: "⊐̸", NotSquareSupersetEqual: "⋣", NotSubset: "⊂⃒", NotSubsetEqual: "⊈", NotSucceeds: "⊁", NotSucceedsEqual: "⪰̸", NotSucceedsSlantEqual: "⋡", NotSucceedsTilde: "≿̸", NotSuperset: "⊃⃒", NotSupersetEqual: "⊉", NotTilde: "≁", NotTildeEqual: "≄", NotTildeFullEqual: "≇", NotTildeTilde: "≉", NotVerticalBar: "∤", npar: "∦", nparallel: "∦", nparsl: "⫽⃥", npart: "∂̸", npolint: "⨔", npr: "⊀", nprcue: "⋠", npre: "⪯̸", nprec: "⊀", npreceq: "⪯̸", nrarr: "↛", nrArr: "⇏", nrarrc: "⤳̸", nrarrw: "↝̸", nrightarrow: "↛", nRightarrow: "⇏", nrtri: "⋫", nrtrie: "⋭", nsc: "⊁", nsccue: "⋡", nsce: "⪰̸", nscr: "𝓃", 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: "ñ", Ntilde: "Ñ", ntlg: "≸", ntriangleleft: "⋪", ntrianglelefteq: "⋬", ntriangleright: "⋫", ntrianglerighteq: "⋭", nu: "ν", Nu: "Ν", num: "#", numero: "№", numsp: " ", nvap: "≍⃒", nvdash: "⊬", nvDash: "⊭", nVdash: "⊮", nVDash: "⊯", nvge: "≥⃒", nvgt: ">⃒", nvHarr: "⤄", nvinfin: "⧞", nvlArr: "⤂", nvle: "≤⃒", nvlt: "<⃒", nvltrie: "⊴⃒", nvrArr: "⤃", nvrtrie: "⊵⃒", nvsim: "∼⃒", nwarhk: "⤣", nwarr: "↖", nwArr: "⇖", nwarrow: "↖", nwnear: "⤧", oacute: "ó", Oacute: "Ó", oast: "⊛", ocir: "⊚", ocirc: "ô", Ocirc: "Ô", ocy: "о", Ocy: "О", odash: "⊝", odblac: "ő", Odblac: "Ő", odiv: "⨸", odot: "⊙", odsold: "⦼", oelig: "œ", OElig: "Œ", ofcir: "⦿", ofr: "𝔬", Ofr: "𝔒", ogon: "˛", ograve: "ò", Ograve: "Ò", ogt: "⧁", ohbar: "⦵", ohm: "Ω", oint: "∮", olarr: "↺", olcir: "⦾", olcross: "⦻", oline: "‾", olt: "⧀", omacr: "ō", Omacr: "Ō", omega: "ω", Omega: "Ω", omicron: "ο", Omicron: "Ο", omid: "⦶", ominus: "⊖", oopf: "𝕠", Oopf: "𝕆", opar: "⦷", OpenCurlyDoubleQuote: "“", OpenCurlyQuote: "‘", operp: "⦹", oplus: "⊕", or: "∨", Or: "⩔", orarr: "↻", ord: "⩝", order: "ℴ", orderof: "ℴ", ordf: "ª", ordm: "º", origof: "⊶", oror: "⩖", orslope: "⩗", orv: "⩛", oS: "Ⓢ", oscr: "ℴ", Oscr: "𝒪", oslash: "ø", Oslash: "Ø", osol: "⊘", otilde: "õ", Otilde: "Õ", otimes: "⊗", Otimes: "⨷", otimesas: "⨶", ouml: "ö", Ouml: "Ö", ovbar: "⌽", OverBar: "‾", OverBrace: "⏞", OverBracket: "⎴", OverParenthesis: "⏜", par: "∥", para: "¶", parallel: "∥", parsim: "⫳", parsl: "⫽", part: "∂", PartialD: "∂", pcy: "п", Pcy: "П", percnt: "%", period: ".", permil: "‰", perp: "⊥", pertenk: "‱", pfr: "𝔭", Pfr: "𝔓", phi: "φ", Phi: "Φ", phiv: "ϕ", phmmat: "ℳ", phone: "☎", pi: "π", Pi: "Π", pitchfork: "⋔", piv: "ϖ", planck: "ℏ", planckh: "ℎ", plankv: "ℏ", plus: "+", plusacir: "⨣", plusb: "⊞", pluscir: "⨢", plusdo: "∔", plusdu: "⨥", pluse: "⩲", PlusMinus: "±", plusmn: "±", plussim: "⨦", plustwo: "⨧", pm: "±", Poincareplane: "ℌ", pointint: "⨕", popf: "𝕡", Popf: "ℙ", pound: "£", pr: "≺", Pr: "⪻", prap: "⪷", prcue: "≼", pre: "⪯", prE: "⪳", prec: "≺", precapprox: "⪷", preccurlyeq: "≼", Precedes: "≺", PrecedesEqual: "⪯", PrecedesSlantEqual: "≼", PrecedesTilde: "≾", preceq: "⪯", precnapprox: "⪹", precneqq: "⪵", precnsim: "⋨", precsim: "≾", prime: "′", Prime: "″", primes: "ℙ", prnap: "⪹", prnE: "⪵", prnsim: "⋨", prod: "∏", Product: "∏", profalar: "⌮", profline: "⌒", profsurf: "⌓", prop: "∝", Proportion: "∷", Proportional: "∝", propto: "∝", prsim: "≾", prurel: "⊰", pscr: "𝓅", Pscr: "𝒫", psi: "ψ", Psi: "Ψ", puncsp: " ", qfr: "𝔮", Qfr: "𝔔", qint: "⨌", qopf: "𝕢", Qopf: "ℚ", qprime: "⁗", qscr: "𝓆", Qscr: "𝒬", quaternions: "ℍ", quatint: "⨖", quest: "?", questeq: "≟", quot: '"', QUOT: '"', rAarr: "⇛", race: "∽̱", racute: "ŕ", Racute: "Ŕ", radic: "√", raemptyv: "⦳", rang: "⟩", Rang: "⟫", rangd: "⦒", range: "⦥", rangle: "⟩", raquo: "»", rarr: "→", rArr: "⇒", Rarr: "↠", rarrap: "⥵", rarrb: "⇥", rarrbfs: "⤠", rarrc: "⤳", rarrfs: "⤞", rarrhk: "↪", rarrlp: "↬", rarrpl: "⥅", rarrsim: "⥴", rarrtl: "↣", Rarrtl: "⤖", rarrw: "↝", ratail: "⤚", rAtail: "⤜", ratio: "∶", rationals: "ℚ", rbarr: "⤍", rBarr: "⤏", RBarr: "⤐", rbbrk: "❳", rbrace: "}", rbrack: "]", rbrke: "⦌", rbrksld: "⦎", rbrkslu: "⦐", rcaron: "ř", Rcaron: "Ř", rcedil: "ŗ", Rcedil: "Ŗ", rceil: "⌉", rcub: "}", rcy: "р", Rcy: "Р", rdca: "⤷", rdldhar: "⥩", rdquo: "”", rdquor: "”", rdsh: "↳", Re: "ℜ", real: "ℜ", realine: "ℛ", realpart: "ℜ", reals: "ℝ", rect: "▭", reg: "®", REG: "®", ReverseElement: "∋", ReverseEquilibrium: "⇋", ReverseUpEquilibrium: "⥯", rfisht: "⥽", rfloor: "⌋", rfr: "𝔯", Rfr: "ℜ", rHar: "⥤", rhard: "⇁", rharu: "⇀", rharul: "⥬", rho: "ρ", Rho: "Ρ", rhov: "ϱ", RightAngleBracket: "⟩", rightarrow: "→", Rightarrow: "⇒", RightArrow: "→", RightArrowBar: "⇥", RightArrowLeftArrow: "⇄", rightarrowtail: "↣", RightCeiling: "⌉", RightDoubleBracket: "⟧", RightDownTeeVector: "⥝", RightDownVector: "⇂", RightDownVectorBar: "⥕", RightFloor: "⌋", rightharpoondown: "⇁", rightharpoonup: "⇀", rightleftarrows: "⇄", rightleftharpoons: "⇌", rightrightarrows: "⇉", rightsquigarrow: "↝", RightTee: "⊢", RightTeeArrow: "↦", RightTeeVector: "⥛", rightthreetimes: "⋌", RightTriangle: "⊳", RightTriangleBar: "⧐", RightTriangleEqual: "⊵", RightUpDownVector: "⥏", RightUpTeeVector: "⥜", RightUpVector: "↾", RightUpVectorBar: "⥔", RightVector: "⇀", RightVectorBar: "⥓", ring: "˚", risingdotseq: "≓", rlarr: "⇄", rlhar: "⇌", rlm: "", rmoust: "⎱", rmoustache: "⎱", rnmid: "⫮", roang: "⟭", roarr: "⇾", robrk: "⟧", ropar: "⦆", ropf: "𝕣", Ropf: "ℝ", roplus: "⨮", rotimes: "⨵", RoundImplies: "⥰", rpar: ")", rpargt: "⦔", rppolint: "⨒", rrarr: "⇉", Rrightarrow: "⇛", rsaquo: "›", rscr: "𝓇", Rscr: "ℛ", rsh: "↱", Rsh: "↱", rsqb: "]", rsquo: "’", rsquor: "’", rthree: "⋌", rtimes: "⋊", rtri: "▹", rtrie: "⊵", rtrif: "▸", rtriltri: "⧎", RuleDelayed: "⧴", ruluhar: "⥨", rx: "℞", sacute: "ś", Sacute: "Ś", sbquo: "‚", sc: "≻", Sc: "⪼", scap: "⪸", scaron: "š", Scaron: "Š", sccue: "≽", sce: "⪰", scE: "⪴", scedil: "ş", Scedil: "Ş", scirc: "ŝ", Scirc: "Ŝ", scnap: "⪺", scnE: "⪶", scnsim: "⋩", scpolint: "⨓", scsim: "≿", scy: "с", Scy: "С", sdot: "⋅", sdotb: "⊡", sdote: "⩦", searhk: "⤥", searr: "↘", seArr: "⇘", searrow: "↘", sect: "§", semi: ";", seswar: "⤩", setminus: "∖", setmn: "∖", sext: "✶", sfr: "𝔰", Sfr: "𝔖", sfrown: "⌢", sharp: "♯", shchcy: "щ", SHCHcy: "Щ", shcy: "ш", SHcy: "Ш", ShortDownArrow: "↓", ShortLeftArrow: "←", shortmid: "∣", shortparallel: "∥", ShortRightArrow: "→", ShortUpArrow: "↑", shy: "", sigma: "σ", Sigma: "Σ", sigmaf: "ς", sigmav: "ς", sim: "∼", simdot: "⩪", sime: "≃", simeq: "≃", simg: "⪞", simgE: "⪠", siml: "⪝", simlE: "⪟", simne: "≆", simplus: "⨤", simrarr: "⥲", slarr: "←", SmallCircle: "∘", smallsetminus: "∖", smashp: "⨳", smeparsl: "⧤", smid: "∣", smile: "⌣", smt: "⪪", smte: "⪬", smtes: "⪬︀", softcy: "ь", SOFTcy: "Ь", sol: "/", solb: "⧄", solbar: "⌿", sopf: "𝕤", Sopf: "𝕊", spades: "♠", spadesuit: "♠", spar: "∥", sqcap: "⊓", sqcaps: "⊓︀", sqcup: "⊔", sqcups: "⊔︀", Sqrt: "√", sqsub: "⊏", sqsube: "⊑", sqsubset: "⊏", sqsubseteq: "⊑", sqsup: "⊐", sqsupe: "⊒", sqsupset: "⊐", sqsupseteq: "⊒", squ: "□", square: "□", Square: "□", SquareIntersection: "⊓", SquareSubset: "⊏", SquareSubsetEqual: "⊑", SquareSuperset: "⊐", SquareSupersetEqual: "⊒", SquareUnion: "⊔", squarf: "▪", squf: "▪", srarr: "→", sscr: "𝓈", Sscr: "𝒮", ssetmn: "∖", ssmile: "⌣", sstarf: "⋆", star: "☆", Star: "⋆", starf: "★", straightepsilon: "ϵ", straightphi: "ϕ", strns: "¯", sub: "⊂", Sub: "⋐", subdot: "⪽", sube: "⊆", subE: "⫅", subedot: "⫃", submult: "⫁", subne: "⊊", subnE: "⫋", subplus: "⪿", subrarr: "⥹", subset: "⊂", Subset: "⋐", subseteq: "⊆", subseteqq: "⫅", SubsetEqual: "⊆", subsetneq: "⊊", subsetneqq: "⫋", subsim: "⫇", subsub: "⫕", subsup: "⫓", succ: "≻", succapprox: "⪸", succcurlyeq: "≽", Succeeds: "≻", SucceedsEqual: "⪰", SucceedsSlantEqual: "≽", SucceedsTilde: "≿", succeq: "⪰", succnapprox: "⪺", succneqq: "⪶", succnsim: "⋩", succsim: "≿", SuchThat: "∋", sum: "∑", Sum: "∑", sung: "♪", sup: "⊃", Sup: "⋑", sup1: "¹", sup2: "²", sup3: "³", supdot: "⪾", supdsub: "⫘", supe: "⊇", supE: "⫆", supedot: "⫄", Superset: "⊃", SupersetEqual: "⊇", suphsol: "⟉", suphsub: "⫗", suplarr: "⥻", supmult: "⫂", supne: "⊋", supnE: "⫌", supplus: "⫀", supset: "⊃", Supset: "⋑", supseteq: "⊇", supseteqq: "⫆", supsetneq: "⊋", supsetneqq: "⫌", supsim: "⫈", supsub: "⫔", supsup: "⫖", swarhk: "⤦", swarr: "↙", swArr: "⇙", swarrow: "↙", swnwar: "⤪", szlig: "ß", Tab: " ", target: "⌖", tau: "τ", Tau: "Τ", tbrk: "⎴", tcaron: "ť", Tcaron: "Ť", tcedil: "ţ", Tcedil: "Ţ", tcy: "т", Tcy: "Т", tdot: "⃛", telrec: "⌕", tfr: "𝔱", Tfr: "𝔗", there4: "∴", therefore: "∴", Therefore: "∴", theta: "θ", Theta: "Θ", thetasym: "ϑ", thetav: "ϑ", thickapprox: "≈", thicksim: "∼", ThickSpace: " ", thinsp: " ", ThinSpace: " ", thkap: "≈", thksim: "∼", thorn: "þ", THORN: "Þ", tilde: "˜", Tilde: "∼", TildeEqual: "≃", TildeFullEqual: "≅", TildeTilde: "≈", times: "×", timesb: "⊠", timesbar: "⨱", timesd: "⨰", tint: "∭", toea: "⤨", top: "⊤", topbot: "⌶", topcir: "⫱", topf: "𝕥", Topf: "𝕋", topfork: "⫚", tosa: "⤩", tprime: "‴", trade: "™", TRADE: "™", triangle: "▵", triangledown: "▿", triangleleft: "◃", trianglelefteq: "⊴", triangleq: "≜", triangleright: "▹", trianglerighteq: "⊵", tridot: "◬", trie: "≜", triminus: "⨺", TripleDot: "⃛", triplus: "⨹", trisb: "⧍", tritime: "⨻", trpezium: "⏢", tscr: "𝓉", Tscr: "𝒯", tscy: "ц", TScy: "Ц", tshcy: "ћ", TSHcy: "Ћ", tstrok: "ŧ", Tstrok: "Ŧ", twixt: "≬", twoheadleftarrow: "↞", twoheadrightarrow: "↠", uacute: "ú", Uacute: "Ú", uarr: "↑", uArr: "⇑", Uarr: "↟", Uarrocir: "⥉", ubrcy: "ў", Ubrcy: "Ў", ubreve: "ŭ", Ubreve: "Ŭ", ucirc: "û", Ucirc: "Û", ucy: "у", Ucy: "У", udarr: "⇅", udblac: "ű", Udblac: "Ű", udhar: "⥮", ufisht: "⥾", ufr: "𝔲", Ufr: "𝔘", ugrave: "ù", Ugrave: "Ù", uHar: "⥣", uharl: "↿", uharr: "↾", uhblk: "▀", ulcorn: "⌜", ulcorner: "⌜", ulcrop: "⌏", ultri: "◸", umacr: "ū", Umacr: "Ū", uml: "¨", UnderBar: "_", UnderBrace: "⏟", UnderBracket: "⎵", UnderParenthesis: "⏝", Union: "⋃", UnionPlus: "⊎", uogon: "ų", Uogon: "Ų", uopf: "𝕦", Uopf: "𝕌", uparrow: "↑", Uparrow: "⇑", UpArrow: "↑", UpArrowBar: "⤒", UpArrowDownArrow: "⇅", updownarrow: "↕", Updownarrow: "⇕", UpDownArrow: "↕", UpEquilibrium: "⥮", upharpoonleft: "↿", upharpoonright: "↾", uplus: "⊎", UpperLeftArrow: "↖", UpperRightArrow: "↗", upsi: "υ", Upsi: "ϒ", upsih: "ϒ", upsilon: "υ", Upsilon: "Υ", UpTee: "⊥", UpTeeArrow: "↥", upuparrows: "⇈", urcorn: "⌝", urcorner: "⌝", urcrop: "⌎", uring: "ů", Uring: "Ů", urtri: "◹", uscr: "𝓊", Uscr: "𝒰", utdot: "⋰", utilde: "ũ", Utilde: "Ũ", utri: "▵", utrif: "▴", uuarr: "⇈", uuml: "ü", Uuml: "Ü", uwangle: "⦧", vangrt: "⦜", varepsilon: "ϵ", varkappa: "ϰ", varnothing: "∅", varphi: "ϕ", varpi: "ϖ", varpropto: "∝", varr: "↕", vArr: "⇕", varrho: "ϱ", varsigma: "ς", varsubsetneq: "⊊︀", varsubsetneqq: "⫋︀", varsupsetneq: "⊋︀", varsupsetneqq: "⫌︀", vartheta: "ϑ", vartriangleleft: "⊲", vartriangleright: "⊳", vBar: "⫨", Vbar: "⫫", vBarv: "⫩", vcy: "в", Vcy: "В", vdash: "⊢", vDash: "⊨", Vdash: "⊩", VDash: "⊫", Vdashl: "⫦", vee: "∨", Vee: "⋁", veebar: "⊻", veeeq: "≚", vellip: "⋮", verbar: "|", Verbar: "‖", vert: "|", Vert: "‖", VerticalBar: "∣", VerticalLine: "|", VerticalSeparator: "❘", VerticalTilde: "≀", VeryThinSpace: " ", vfr: "𝔳", Vfr: "𝔙", vltri: "⊲", vnsub: "⊂⃒", vnsup: "⊃⃒", vopf: "𝕧", Vopf: "𝕍", vprop: "∝", vrtri: "⊳", vscr: "𝓋", Vscr: "𝒱", vsubne: "⊊︀", vsubnE: "⫋︀", vsupne: "⊋︀", vsupnE: "⫌︀", Vvdash: "⊪", vzigzag: "⦚", wcirc: "ŵ", Wcirc: "Ŵ", wedbar: "⩟", wedge: "∧", Wedge: "⋀", wedgeq: "≙", weierp: "℘", wfr: "𝔴", Wfr: "𝔚", wopf: "𝕨", Wopf: "𝕎", wp: "℘", wr: "≀", wreath: "≀", wscr: "𝓌", Wscr: "𝒲", xcap: "⋂", xcirc: "◯", xcup: "⋃", xdtri: "▽", xfr: "𝔵", Xfr: "𝔛", xharr: "⟷", xhArr: "⟺", xi: "ξ", Xi: "Ξ", xlarr: "⟵", xlArr: "⟸", xmap: "⟼", xnis: "⋻", xodot: "⨀", xopf: "𝕩", Xopf: "𝕏", xoplus: "⨁", xotime: "⨂", xrarr: "⟶", xrArr: "⟹", xscr: "𝓍", Xscr: "𝒳", xsqcup: "⨆", xuplus: "⨄", xutri: "△", xvee: "⋁", xwedge: "⋀", yacute: "ý", Yacute: "Ý", yacy: "я", YAcy: "Я", ycirc: "ŷ", Ycirc: "Ŷ", ycy: "ы", Ycy: "Ы", yen: "¥", yfr: "𝔶", Yfr: "𝔜", yicy: "ї", YIcy: "Ї", yopf: "𝕪", Yopf: "𝕐", yscr: "𝓎", Yscr: "𝒴", yucy: "ю", YUcy: "Ю", yuml: "ÿ", Yuml: "Ÿ", zacute: "ź", Zacute: "Ź", zcaron: "ž", Zcaron: "Ž", zcy: "з", Zcy: "З", zdot: "ż", Zdot: "Ż", zeetrf: "ℨ", ZeroWidthSpace: "", zeta: "ζ", Zeta: "Ζ", zfr: "𝔷", Zfr: "ℨ", zhcy: "ж", ZHcy: "Ж", zigrarr: "⇝", zopf: "𝕫", Zopf: "ℤ", zscr: "𝓏", Zscr: "𝒵", zwj: "", zwnj: "" }, W = { aacute: "á", Aacute: "Á", acirc: "â", Acirc: "Â", acute: "´", aelig: "æ", AElig: "Æ", agrave: "à", Agrave: "À", amp: "&", AMP: "&", aring: "å", Aring: "Å", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", brvbar: "¦", ccedil: "ç", Ccedil: "Ç", cedil: "¸", cent: "¢", copy: "©", COPY: "©", curren: "¤", deg: "°", divide: "÷", eacute: "é", Eacute: "É", ecirc: "ê", Ecirc: "Ê", egrave: "è", Egrave: "È", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", frac12: "½", frac14: "¼", frac34: "¾", gt: ">", GT: ">", iacute: "í", Iacute: "Í", icirc: "î", Icirc: "Î", iexcl: "¡", igrave: "ì", Igrave: "Ì", iquest: "¿", iuml: "ï", Iuml: "Ï", laquo: "«", lt: "<", LT: "<", macr: "¯", micro: "µ", middot: "·", nbsp: " ", not: "¬", ntilde: "ñ", Ntilde: "Ñ", oacute: "ó", Oacute: "Ó", ocirc: "ô", Ocirc: "Ô", ograve: "ò", Ograve: "Ò", ordf: "ª", ordm: "º", oslash: "ø", Oslash: "Ø", otilde: "õ", Otilde: "Õ", ouml: "ö", Ouml: "Ö", para: "¶", plusmn: "±", pound: "£", quot: '"', QUOT: '"', raquo: "»", reg: "®", REG: "®", sect: "§", shy: "", sup1: "¹", sup2: "²", sup3: "³", szlig: "ß", thorn: "þ", THORN: "Þ", times: "×", uacute: "ú", Uacute: "Ú", ucirc: "û", Ucirc: "Û", ugrave: "ù", Ugrave: "Ù", uml: "¨", uuml: "ü", Uuml: "Ü", yacute: "ý", Yacute: "Ý", yen: "¥", yuml: "ÿ" }, le = { 0: "�", 128: "€", 130: "‚", 131: "ƒ", 132: "„", 133: "…", 134: "†", 135: "‡", 136: "ˆ", 137: "‰", 138: "Š", 139: "‹", 140: "Œ", 142: "Ž", 145: "‘", 146: "’", 147: "“", 148: "”", 149: "•", 150: "–", 151: "—", 152: "˜", 153: "™", 154: "š", 155: "›", 156: "œ", 158: "ž", 159: "Ÿ" }, he = [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 64976, 64977, 64978, 64979, 64980, 64981, 64982, 64983, 64984, 64985, 64986, 64987, 64988, 64989, 64990, 64991, 64992, 64993, 64994, 64995, 64996, 64997, 64998, 64999, 65e3, 65001, 65002, 65003, 65004, 65005, 65006, 65007, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111], ge = String.fromCharCode, j = {}, Ee = j.hasOwnProperty, pe = function(ie, Re) {
|
|
1025
|
+
return Ee.call(ie, Re);
|
|
1019
1026
|
}, oe = function(ie, Re) {
|
|
1020
1027
|
for (var ke = -1, rt = ie.length; ++ke < rt; )
|
|
1021
1028
|
if (ie[ke] == Re)
|
|
@@ -1030,7 +1037,7 @@ gn.exports;
|
|
|
1030
1037
|
return ke;
|
|
1031
1038
|
}, re = function(ie, Re) {
|
|
1032
1039
|
var ke = "";
|
|
1033
|
-
return ie >= 55296 && ie <= 57343 || ie > 1114111 ? (Re && _e("character reference outside the permissible Unicode range"), "�") : pe(
|
|
1040
|
+
return ie >= 55296 && ie <= 57343 || ie > 1114111 ? (Re && _e("character reference outside the permissible Unicode range"), "�") : pe(le, ie) ? (Re && _e("disallowed character reference"), le[ie]) : (Re && oe(he, ie) && _e("disallowed character reference"), ie > 65535 && (ie -= 65536, ke += ge(ie >>> 10 & 1023 | 55296), ie = 56320 | ie & 1023), ke += ge(ie), ke);
|
|
1034
1041
|
}, Ve = function(ie) {
|
|
1035
1042
|
return "&#x" + ie.toString(16).toUpperCase() + ";";
|
|
1036
1043
|
}, Ce = function(ie) {
|
|
@@ -1040,19 +1047,19 @@ gn.exports;
|
|
|
1040
1047
|
}, ft = function(ie, Re) {
|
|
1041
1048
|
Re = ee(Re, ft.options);
|
|
1042
1049
|
var ke = Re.strict;
|
|
1043
|
-
ke &&
|
|
1044
|
-
var rt = Re.encodeEverything, Se = Re.useNamedReferences,
|
|
1050
|
+
ke && q.test(ie) && _e("forbidden code point");
|
|
1051
|
+
var rt = Re.encodeEverything, Se = Re.useNamedReferences, It = Re.allowUnsafeSymbols, te = Re.decimal ? Ce : Ve, Y = function(G) {
|
|
1045
1052
|
return te(G.charCodeAt(0));
|
|
1046
1053
|
};
|
|
1047
1054
|
return rt ? (ie = ie.replace(x, function(G) {
|
|
1048
1055
|
return Se && pe(P, G) ? "&" + P[G] + ";" : Y(G);
|
|
1049
|
-
}), Se && (ie = ie.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒").replace(/fj/g, "fj")), Se && (ie = ie.replace(
|
|
1056
|
+
}), Se && (ie = ie.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒").replace(/fj/g, "fj")), Se && (ie = ie.replace(Q, function(G) {
|
|
1050
1057
|
return "&" + P[G] + ";";
|
|
1051
|
-
}))) : Se ? (
|
|
1058
|
+
}))) : Se ? (It || (ie = ie.replace(U, function(G) {
|
|
1052
1059
|
return "&" + P[G] + ";";
|
|
1053
|
-
})), ie = ie.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒"), ie = ie.replace(
|
|
1060
|
+
})), ie = ie.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒"), ie = ie.replace(Q, function(G) {
|
|
1054
1061
|
return "&" + P[G] + ";";
|
|
1055
|
-
})) :
|
|
1062
|
+
})) : It || (ie = ie.replace(U, Y)), ie.replace(N, function(G) {
|
|
1056
1063
|
var ue = G.charCodeAt(0), me = G.charCodeAt(1), Ye = (ue - 55296) * 1024 + me - 56320 + 65536;
|
|
1057
1064
|
return te(Ye);
|
|
1058
1065
|
}).replace(v, Y);
|
|
@@ -1067,11 +1074,11 @@ gn.exports;
|
|
|
1067
1074
|
var He = function(ie, Re) {
|
|
1068
1075
|
Re = ee(Re, He.options);
|
|
1069
1076
|
var ke = Re.strict;
|
|
1070
|
-
return ke &&
|
|
1077
|
+
return ke && B.test(ie) && _e("malformed character reference"), ie.replace(V, function(rt, Se, It, te, Y, G, ue, me, Ye) {
|
|
1071
1078
|
var at, Xe, ze, nt, ru, zu;
|
|
1072
|
-
return Se ? (ru = Se,
|
|
1079
|
+
return Se ? (ru = Se, w[ru]) : It ? (ru = It, zu = te, zu && Re.isAttributeValue ? (ke && zu == "=" && _e("`&` did not start a character reference"), rt) : (ke && _e(
|
|
1073
1080
|
"named character reference was not terminated by a semicolon"
|
|
1074
|
-
),
|
|
1081
|
+
), W[ru] + (zu || ""))) : Y ? (ze = Y, Xe = G, ke && !Xe && _e("character reference was not terminated by a semicolon"), at = parseInt(ze, 10), re(at, ke)) : ue ? (nt = ue, Xe = me, ke && !Xe && _e("character reference was not terminated by a semicolon"), at = parseInt(nt, 16), re(at, ke)) : (ke && _e(
|
|
1075
1082
|
"named character reference was not terminated by a semicolon"
|
|
1076
1083
|
), rt);
|
|
1077
1084
|
});
|
|
@@ -1283,7 +1290,7 @@ const Kg = /^boolean/gim, Zg = () => class extends pr {
|
|
|
1283
1290
|
)}`), s;
|
|
1284
1291
|
}, ip = /^(unit|unitWithNegative)\(.*\)/gim, sp = (e) => {
|
|
1285
1292
|
var v;
|
|
1286
|
-
const u = /^unitWithNegative/.exec(e) ? "-|" : "", a = (v = /\(([^)]+)\)/.exec(e)) == null ? void 0 : v[1].split(","), s = /\{([^}]+)\}/.exec(e), d = s && s[1] && s[1].split(",") || ["1"], g = a.includes("auto") ? "|auto" : "", N = a.filter((
|
|
1293
|
+
const u = /^unitWithNegative/.exec(e) ? "-|" : "", a = (v = /\(([^)]+)\)/.exec(e)) == null ? void 0 : v[1].split(","), s = /\{([^}]+)\}/.exec(e), d = s && s[1] && s[1].split(",") || ["1"], g = a.includes("auto") ? "|auto" : "", N = a.filter((Q) => Q !== "auto"), x = a.join(", ");
|
|
1287
1294
|
return class extends pr {
|
|
1288
1295
|
constructor(U) {
|
|
1289
1296
|
super(U);
|
|
@@ -1399,10 +1406,10 @@ class we extends E.Component {
|
|
|
1399
1406
|
return ms(
|
|
1400
1407
|
xg(a, Bl),
|
|
1401
1408
|
(g, N, x) => {
|
|
1402
|
-
const
|
|
1409
|
+
const Q = (x === "style" ? s.style : s.default)(N);
|
|
1403
1410
|
let P = x;
|
|
1404
1411
|
return x === "class" && (P = "className"), x.startsWith("cell") && (P = Ru(x.replace(/^cell(.*)$/, "cell_$1"))), P = Ru(P), P === "verticalAlign" && (P = "verticalalign"), J(D({}, g), {
|
|
1405
|
-
[P]: ea(
|
|
1412
|
+
[P]: ea(Q) ? cl.decode(Q) : Q
|
|
1406
1413
|
});
|
|
1407
1414
|
},
|
|
1408
1415
|
{}
|
|
@@ -1446,35 +1453,35 @@ class we extends E.Component {
|
|
|
1446
1453
|
return {};
|
|
1447
1454
|
}
|
|
1448
1455
|
get attributes() {
|
|
1449
|
-
var U, _,
|
|
1456
|
+
var U, _, B, q, V, w, W;
|
|
1450
1457
|
const a = this.constructor, s = this.props.context.data, d = Fl(
|
|
1451
1458
|
(U = s == null ? void 0 : s.globalAttributes) == null ? void 0 : U["mj-class"],
|
|
1452
|
-
(
|
|
1459
|
+
(B = (_ = s == null ? void 0 : s.blockAttributes) == null ? void 0 : _[this.props.element.type]) == null ? void 0 : B["mj-class"],
|
|
1453
1460
|
this.props.elementAttributes["mj-class"]
|
|
1454
1461
|
), g = {};
|
|
1455
|
-
Object.keys((s == null ? void 0 : s.classAttributes) || {}).forEach((
|
|
1456
|
-
d.split(" ").map((ge) => ge.trim()).filter(Boolean).includes(
|
|
1462
|
+
Object.keys((s == null ? void 0 : s.classAttributes) || {}).forEach((le) => {
|
|
1463
|
+
d.split(" ").map((ge) => ge.trim()).filter(Boolean).includes(le) && Object.assign(g, vt(s == null ? void 0 : s.classAttributes, le));
|
|
1457
1464
|
});
|
|
1458
1465
|
const N = fe.getBlockByType(this.props.element.type), x = this.props.elementAttributes, v = a.defaultAttributes;
|
|
1459
|
-
(
|
|
1460
|
-
const
|
|
1466
|
+
(q = vt(x, "padding", "")) != null && q.trim() && (delete v["padding-top"], delete v["padding-bottom"], delete v["padding-left"], delete v["padding-right"]), (V = vt(x, "inner-padding", "")) != null && V.trim() && (delete v["inner-padding-top"], delete v["inner-padding-bottom"], delete v["inner-padding-left"], delete v["inner-padding-right"]);
|
|
1467
|
+
const Q = Bg(
|
|
1461
1468
|
{},
|
|
1462
1469
|
v,
|
|
1463
1470
|
s == null ? void 0 : s.globalAttributes,
|
|
1464
|
-
(
|
|
1465
|
-
(
|
|
1471
|
+
(w = s == null ? void 0 : s.categoryAttributes) == null ? void 0 : w[N.category],
|
|
1472
|
+
(W = s == null ? void 0 : s.blockAttributes) == null ? void 0 : W[this.props.element.type],
|
|
1466
1473
|
g,
|
|
1467
1474
|
x
|
|
1468
1475
|
), P = Ap(
|
|
1469
|
-
|
|
1476
|
+
Q,
|
|
1470
1477
|
a.allowedAttributes
|
|
1471
1478
|
);
|
|
1472
1479
|
if (this.props.context) {
|
|
1473
|
-
const
|
|
1480
|
+
const le = Gu.getPageDataVariables(
|
|
1474
1481
|
this.props.context,
|
|
1475
1482
|
this.props.attributesVariables || {}
|
|
1476
1483
|
);
|
|
1477
|
-
return Gu.renderWithPageVariables(P,
|
|
1484
|
+
return Gu.renderWithPageVariables(P, le);
|
|
1478
1485
|
}
|
|
1479
1486
|
return P;
|
|
1480
1487
|
}
|
|
@@ -1665,10 +1672,10 @@ let Cp = (un = class extends we {
|
|
|
1665
1672
|
get containerWidth() {
|
|
1666
1673
|
const { containerWidth: a } = this.parent, { nonRawSiblings: s } = this, { borders: d, paddings: g } = this.getBoxWidths(), N = this.getShorthandAttrValue("inner-border", "left") + this.getShorthandAttrValue("inner-border", "right"), x = g + d + N;
|
|
1667
1674
|
let v = this.getAttribute("width") || `${parseFloat(a) / s}px`;
|
|
1668
|
-
const { unit:
|
|
1675
|
+
const { unit: Q, parsedWidth: P } = Lt(v, {
|
|
1669
1676
|
parseFloatToInt: !1
|
|
1670
1677
|
});
|
|
1671
|
-
return
|
|
1678
|
+
return Q === "%" ? v = `${parseFloat(a) * P / 100 - x}px` : v = `${P - x}px`, v;
|
|
1672
1679
|
}
|
|
1673
1680
|
getStyles() {
|
|
1674
1681
|
const a = {
|
|
@@ -2143,22 +2150,22 @@ class rs extends we {
|
|
|
2143
2150
|
super(...arguments);
|
|
2144
2151
|
F(this, "componentType", "page");
|
|
2145
2152
|
F(this, "renderContent", () => {
|
|
2146
|
-
var
|
|
2153
|
+
var Q, P, U, _, B, q, V;
|
|
2147
2154
|
const a = {
|
|
2148
|
-
color: ((
|
|
2155
|
+
color: ((Q = this.attributes["link-color"]) == null ? void 0 : Q.trim()) || "inherit",
|
|
2149
2156
|
"font-weight": (P = this.attributes["link-font-weight"]) == null ? void 0 : P.trim(),
|
|
2150
2157
|
"text-decoration": ((U = this.attributes["link-text-decoration"]) == null ? void 0 : U.trim()) || "none",
|
|
2151
2158
|
"font-style": (_ = this.attributes["link-font-style"]) == null ? void 0 : _.trim()
|
|
2152
|
-
}, s = Object.keys(a).map((
|
|
2153
|
-
const
|
|
2154
|
-
return
|
|
2155
|
-
}).filter(Boolean).join(";"), d = `a {${s}} a:hover {${s}} a:active {${s}}`, g = ((
|
|
2156
|
-
`)) || "", N = ((
|
|
2157
|
-
`)) || "", x = (
|
|
2159
|
+
}, s = Object.keys(a).map((w) => {
|
|
2160
|
+
const W = a;
|
|
2161
|
+
return W[w] ? `${w}: ${W[w]}` : "";
|
|
2162
|
+
}).filter(Boolean).join(";"), d = `a {${s}} a:hover {${s}} a:active {${s}}`, g = ((B = this.props.element.data.headStyles) == null ? void 0 : B.filter((w) => w.inline).map((w) => w.content).join(`
|
|
2163
|
+
`)) || "", N = ((q = this.props.element.data.headStyles) == null ? void 0 : q.filter((w) => !w.inline).map((w) => w.content).join(`
|
|
2164
|
+
`)) || "", x = (V = this.props.element.data.fonts) == null ? void 0 : V.map((w, W) => /* @__PURE__ */ E.createElement(
|
|
2158
2165
|
"link",
|
|
2159
2166
|
{
|
|
2160
|
-
key:
|
|
2161
|
-
href:
|
|
2167
|
+
key: W,
|
|
2168
|
+
href: w.href,
|
|
2162
2169
|
rel: "stylesheet",
|
|
2163
2170
|
type: "text/css"
|
|
2164
2171
|
}
|
|
@@ -2367,7 +2374,7 @@ pn.exports;
|
|
|
2367
2374
|
function v(C, L) {
|
|
2368
2375
|
return !!(C != null && C.length) && he(C, L, 0) > -1;
|
|
2369
2376
|
}
|
|
2370
|
-
function
|
|
2377
|
+
function Q(C, L, c) {
|
|
2371
2378
|
for (var K = -1, ce = C == null ? 0 : C.length; ++K < ce; )
|
|
2372
2379
|
if (c(L, C[K]))
|
|
2373
2380
|
return !0;
|
|
@@ -2389,39 +2396,39 @@ pn.exports;
|
|
|
2389
2396
|
c = L(c, C[ce], ce, C);
|
|
2390
2397
|
return c;
|
|
2391
2398
|
}
|
|
2392
|
-
function
|
|
2399
|
+
function B(C, L, c, K) {
|
|
2393
2400
|
var ce = C == null ? 0 : C.length;
|
|
2394
2401
|
for (K && ce && (c = C[--ce]); ce--; )
|
|
2395
2402
|
c = L(c, C[ce], ce, C);
|
|
2396
2403
|
return c;
|
|
2397
2404
|
}
|
|
2398
|
-
function
|
|
2405
|
+
function q(C, L) {
|
|
2399
2406
|
for (var c = -1, K = C == null ? 0 : C.length; ++c < K; )
|
|
2400
2407
|
if (L(C[c], c, C))
|
|
2401
2408
|
return !0;
|
|
2402
2409
|
return !1;
|
|
2403
2410
|
}
|
|
2404
|
-
function
|
|
2411
|
+
function V(C) {
|
|
2405
2412
|
return C.split("");
|
|
2406
2413
|
}
|
|
2407
|
-
function
|
|
2414
|
+
function w(C) {
|
|
2408
2415
|
return C.match(p2) || [];
|
|
2409
2416
|
}
|
|
2410
|
-
function
|
|
2417
|
+
function W(C, L, c) {
|
|
2411
2418
|
var K;
|
|
2412
2419
|
return c(C, function(ce, Z, pt) {
|
|
2413
2420
|
if (L(ce, Z, pt))
|
|
2414
2421
|
return K = Z, !1;
|
|
2415
2422
|
}), K;
|
|
2416
2423
|
}
|
|
2417
|
-
function
|
|
2424
|
+
function le(C, L, c, K) {
|
|
2418
2425
|
for (var ce = C.length, Z = c + (K ? 1 : -1); K ? Z-- : ++Z < ce; )
|
|
2419
2426
|
if (L(C[Z], Z, C))
|
|
2420
2427
|
return Z;
|
|
2421
2428
|
return -1;
|
|
2422
2429
|
}
|
|
2423
2430
|
function he(C, L, c) {
|
|
2424
|
-
return L === L ? at(C, L, c) :
|
|
2431
|
+
return L === L ? at(C, L, c) : le(C, j, c);
|
|
2425
2432
|
}
|
|
2426
2433
|
function ge(C, L, c, K) {
|
|
2427
2434
|
for (var ce = c - 1, Z = C.length; ++ce < Z; )
|
|
@@ -2432,7 +2439,7 @@ pn.exports;
|
|
|
2432
2439
|
function j(C) {
|
|
2433
2440
|
return C !== C;
|
|
2434
2441
|
}
|
|
2435
|
-
function
|
|
2442
|
+
function Ee(C, L) {
|
|
2436
2443
|
var c = C == null ? 0 : C.length;
|
|
2437
2444
|
return c ? Ve(C, L) / c : sa;
|
|
2438
2445
|
}
|
|
@@ -2514,7 +2521,7 @@ pn.exports;
|
|
|
2514
2521
|
function Se(C) {
|
|
2515
2522
|
return z2.test(C);
|
|
2516
2523
|
}
|
|
2517
|
-
function
|
|
2524
|
+
function It(C) {
|
|
2518
2525
|
return j2.test(C);
|
|
2519
2526
|
}
|
|
2520
2527
|
function te(C) {
|
|
@@ -2568,7 +2575,7 @@ pn.exports;
|
|
|
2568
2575
|
return Se(C) ? zu(C) : ad(C);
|
|
2569
2576
|
}
|
|
2570
2577
|
function nt(C) {
|
|
2571
|
-
return Se(C) ? k0(C) :
|
|
2578
|
+
return Se(C) ? k0(C) : V(C);
|
|
2572
2579
|
}
|
|
2573
2580
|
function ru(C) {
|
|
2574
2581
|
for (var L = C.length; L-- && f2.test(C.charAt(L)); )
|
|
@@ -2818,14 +2825,14 @@ pn.exports;
|
|
|
2818
2825
|
return t;
|
|
2819
2826
|
}
|
|
2820
2827
|
function cd() {
|
|
2821
|
-
var t = this.__wrapped__.value(), r = this.__dir__, n = be(t), o = r < 0, l = n ? t.length : 0, f = mh(0, l, this.__views__), b = f.start, T = f.end, I = T - b, k = o ? T : b - 1, S = this.__iteratees__,
|
|
2828
|
+
var t = this.__wrapped__.value(), r = this.__dir__, n = be(t), o = r < 0, l = n ? t.length : 0, f = mh(0, l, this.__views__), b = f.start, T = f.end, I = T - b, k = o ? T : b - 1, S = this.__iteratees__, M = S.length, X = 0, $ = ot(I, this.__takeCount__);
|
|
2822
2829
|
if (!n || !o && l == I && $ == I)
|
|
2823
2830
|
return Ro(t, this.__actions__);
|
|
2824
2831
|
var ae = [];
|
|
2825
2832
|
e:
|
|
2826
2833
|
for (; I-- && X < $; ) {
|
|
2827
2834
|
k += r;
|
|
2828
|
-
for (var Te = -1, se = t[k]; ++Te <
|
|
2835
|
+
for (var Te = -1, se = t[k]; ++Te < M; ) {
|
|
2829
2836
|
var Ie = S[Te], ye = Ie.iteratee, lt = Ie.type, Ct = ye(se);
|
|
2830
2837
|
if (lt == V0)
|
|
2831
2838
|
se = Ct;
|
|
@@ -3017,16 +3024,16 @@ pn.exports;
|
|
|
3017
3024
|
if (b = Th(t), !T)
|
|
3018
3025
|
return mt(t, b);
|
|
3019
3026
|
} else {
|
|
3020
|
-
var
|
|
3027
|
+
var M = ct(t), X = M == la || M == vs;
|
|
3021
3028
|
if (Nu(t))
|
|
3022
3029
|
return Lo(t, T);
|
|
3023
|
-
if (
|
|
3030
|
+
if (M == nu || M == Ju || X && !l) {
|
|
3024
3031
|
if (b = I || X ? {} : Xo(t), !T)
|
|
3025
3032
|
return I ? lh(t, Fd(b, t)) : ch(t, lo(b, t));
|
|
3026
3033
|
} else {
|
|
3027
|
-
if (!Oe[
|
|
3034
|
+
if (!Oe[M])
|
|
3028
3035
|
return l ? t : {};
|
|
3029
|
-
b = Dh(t,
|
|
3036
|
+
b = Dh(t, M, T);
|
|
3030
3037
|
}
|
|
3031
3038
|
}
|
|
3032
3039
|
f || (f = new Vt());
|
|
@@ -3071,17 +3078,17 @@ pn.exports;
|
|
|
3071
3078
|
var l = -1, f = v, b = !0, T = t.length, I = [], k = r.length;
|
|
3072
3079
|
if (!T)
|
|
3073
3080
|
return I;
|
|
3074
|
-
n && (r = P(r, He(n))), o ? (f =
|
|
3081
|
+
n && (r = P(r, He(n))), o ? (f = Q, b = !1) : r.length >= Bn && (f = At, b = !1, r = new Pu(r));
|
|
3075
3082
|
e:
|
|
3076
3083
|
for (; ++l < T; ) {
|
|
3077
|
-
var S = t[l],
|
|
3078
|
-
if (S = o || S !== 0 ? S : 0, b &&
|
|
3084
|
+
var S = t[l], M = n == null ? S : n(S);
|
|
3085
|
+
if (S = o || S !== 0 ? S : 0, b && M === M) {
|
|
3079
3086
|
for (var X = k; X--; )
|
|
3080
|
-
if (r[X] ===
|
|
3087
|
+
if (r[X] === M)
|
|
3081
3088
|
continue e;
|
|
3082
3089
|
I.push(S);
|
|
3083
3090
|
} else
|
|
3084
|
-
f(r,
|
|
3091
|
+
f(r, M, o) || I.push(S);
|
|
3085
3092
|
}
|
|
3086
3093
|
return I;
|
|
3087
3094
|
}
|
|
@@ -3094,7 +3101,7 @@ pn.exports;
|
|
|
3094
3101
|
function ga(t, r, n) {
|
|
3095
3102
|
for (var o = -1, l = t.length; ++o < l; ) {
|
|
3096
3103
|
var f = t[o], b = r(f);
|
|
3097
|
-
if (b != null && (T === p ? b === b && !
|
|
3104
|
+
if (b != null && (T === p ? b === b && !Bt(b) : n(b, T)))
|
|
3098
3105
|
var T = b, I = f;
|
|
3099
3106
|
}
|
|
3100
3107
|
return I;
|
|
@@ -3156,15 +3163,15 @@ pn.exports;
|
|
|
3156
3163
|
return t >= ot(r, n) && t < Ze(r, n);
|
|
3157
3164
|
}
|
|
3158
3165
|
function $n(t, r, n) {
|
|
3159
|
-
for (var o = n ?
|
|
3166
|
+
for (var o = n ? Q : v, l = t[0].length, f = t.length, b = f, T = Ke(f), I = 1 / 0, k = []; b--; ) {
|
|
3160
3167
|
var S = t[b];
|
|
3161
3168
|
b && r && (S = P(S, He(r))), I = ot(S.length, I), T[b] = !n && (r || l >= 120 && S.length >= 120) ? new Pu(b && S) : p;
|
|
3162
3169
|
}
|
|
3163
3170
|
S = t[0];
|
|
3164
|
-
var
|
|
3171
|
+
var M = -1, X = T[0];
|
|
3165
3172
|
e:
|
|
3166
|
-
for (; ++
|
|
3167
|
-
var $ = S[
|
|
3173
|
+
for (; ++M < l && k.length < I; ) {
|
|
3174
|
+
var $ = S[M], ae = r ? r($) : $;
|
|
3168
3175
|
if ($ = n || $ !== 0 ? $ : 0, !(X ? At(X, ae) : o(k, ae, n))) {
|
|
3169
3176
|
for (b = f; --b; ) {
|
|
3170
3177
|
var Te = T[b];
|
|
@@ -3201,7 +3208,7 @@ pn.exports;
|
|
|
3201
3208
|
function Gd(t, r, n, o, l, f) {
|
|
3202
3209
|
var b = be(t), T = be(r), I = b ? oa : ct(t), k = T ? oa : ct(r);
|
|
3203
3210
|
I = I == Ju ? nu : I, k = k == Ju ? nu : k;
|
|
3204
|
-
var S = I == nu,
|
|
3211
|
+
var S = I == nu, M = k == nu, X = I == k;
|
|
3205
3212
|
if (X && Nu(t)) {
|
|
3206
3213
|
if (!Nu(r))
|
|
3207
3214
|
return !1;
|
|
@@ -3210,7 +3217,7 @@ pn.exports;
|
|
|
3210
3217
|
if (X && !S)
|
|
3211
3218
|
return f || (f = new Vt()), b || dr(t) ? zo(t, r, n, o, l, f) : Eh(t, r, I, n, o, l, f);
|
|
3212
3219
|
if (!(n & Xu)) {
|
|
3213
|
-
var $ = S && Le.call(t, "__wrapped__"), ae =
|
|
3220
|
+
var $ = S && Le.call(t, "__wrapped__"), ae = M && Le.call(r, "__wrapped__");
|
|
3214
3221
|
if ($ || ae) {
|
|
3215
3222
|
var Te = $ ? t.value() : t, se = ae ? r.value() : r;
|
|
3216
3223
|
return f || (f = new Vt()), l(Te, se, n, o, f);
|
|
@@ -3237,10 +3244,10 @@ pn.exports;
|
|
|
3237
3244
|
if (k === p && !(I in t))
|
|
3238
3245
|
return !1;
|
|
3239
3246
|
} else {
|
|
3240
|
-
var
|
|
3247
|
+
var M = new Vt();
|
|
3241
3248
|
if (o)
|
|
3242
|
-
var X = o(k, S, I, t, r,
|
|
3243
|
-
if (!(X === p ? Rr(S, k, Xu | ia, o,
|
|
3249
|
+
var X = o(k, S, I, t, r, M);
|
|
3250
|
+
if (!(X === p ? Rr(S, k, Xu | ia, o, M) : X))
|
|
3244
3251
|
return !1;
|
|
3245
3252
|
}
|
|
3246
3253
|
}
|
|
@@ -3312,12 +3319,12 @@ pn.exports;
|
|
|
3312
3319
|
var T = bi(t, n), I = bi(r, n), k = b.get(I);
|
|
3313
3320
|
if (k)
|
|
3314
3321
|
return Xn(t, n, k), p;
|
|
3315
|
-
var S = f ? f(T, I, n + "", t, r, b) : p,
|
|
3316
|
-
if (
|
|
3322
|
+
var S = f ? f(T, I, n + "", t, r, b) : p, M = S === p;
|
|
3323
|
+
if (M) {
|
|
3317
3324
|
var X = be(I), $ = !X && Nu(I), ae = !X && !$ && dr(I);
|
|
3318
|
-
S = I, X || $ || ae ? be(T) ? S = T : Ge(T) ? S = mt(T) : $ ? (
|
|
3325
|
+
S = I, X || $ || ae ? be(T) ? S = T : Ge(T) ? S = mt(T) : $ ? (M = !1, S = Lo(I, !0)) : ae ? (M = !1, S = So(I, !0)) : S = [] : Or(I) || Wu(I) ? (S = T, Wu(T) ? S = Dc(T) : Ue(T) && !hu(T) || (S = Xo(I))) : M = !1;
|
|
3319
3326
|
}
|
|
3320
|
-
|
|
3327
|
+
M && (b.set(I, S), l(S, I, o, f, b), b.delete(I)), Xn(t, n, S);
|
|
3321
3328
|
}
|
|
3322
3329
|
function Co(t, r) {
|
|
3323
3330
|
var n = t.length;
|
|
@@ -3331,7 +3338,7 @@ pn.exports;
|
|
|
3331
3338
|
} : l;
|
|
3332
3339
|
}) : [Dt];
|
|
3333
3340
|
var o = -1;
|
|
3334
|
-
return r = P(r, He(
|
|
3341
|
+
return r = P(r, He(de())), re(bo(t, function(l, f, b) {
|
|
3335
3342
|
return { criteria: P(r, function(T) {
|
|
3336
3343
|
return T(l);
|
|
3337
3344
|
}), index: ++o, value: l };
|
|
@@ -3437,7 +3444,7 @@ pn.exports;
|
|
|
3437
3444
|
if (typeof r == "number" && r === r && l <= j0) {
|
|
3438
3445
|
for (; o < l; ) {
|
|
3439
3446
|
var f = o + l >>> 1, b = t[f];
|
|
3440
|
-
b !== null && !
|
|
3447
|
+
b !== null && !Bt(b) && (n ? b <= r : b < r) ? o = f + 1 : l = f;
|
|
3441
3448
|
}
|
|
3442
3449
|
return l;
|
|
3443
3450
|
}
|
|
@@ -3448,12 +3455,12 @@ pn.exports;
|
|
|
3448
3455
|
if (f === 0)
|
|
3449
3456
|
return 0;
|
|
3450
3457
|
r = n(r);
|
|
3451
|
-
for (var b = r !== r, T = r === null, I =
|
|
3452
|
-
var S = Ya((l + f) / 2),
|
|
3458
|
+
for (var b = r !== r, T = r === null, I = Bt(r), k = r === p; l < f; ) {
|
|
3459
|
+
var S = Ya((l + f) / 2), M = n(t[S]), X = M !== p, $ = M === null, ae = M === M, Te = Bt(M);
|
|
3453
3460
|
if (b)
|
|
3454
3461
|
var se = o || ae;
|
|
3455
3462
|
else
|
|
3456
|
-
se = k ? ae && (o || X) : T ? ae && X && (o || !$) : I ? ae && X && !$ && (o || !Te) : !$ && !Te && (o ?
|
|
3463
|
+
se = k ? ae && (o || X) : T ? ae && X && (o || !$) : I ? ae && X && !$ && (o || !Te) : !$ && !Te && (o ? M <= r : M < r);
|
|
3457
3464
|
se ? l = S + 1 : f = S;
|
|
3458
3465
|
}
|
|
3459
3466
|
return ot(f, z0);
|
|
@@ -3469,14 +3476,14 @@ pn.exports;
|
|
|
3469
3476
|
return f;
|
|
3470
3477
|
}
|
|
3471
3478
|
function Bo(t) {
|
|
3472
|
-
return typeof t == "number" ? t :
|
|
3479
|
+
return typeof t == "number" ? t : Bt(t) ? sa : +t;
|
|
3473
3480
|
}
|
|
3474
|
-
function
|
|
3481
|
+
function yt(t) {
|
|
3475
3482
|
if (typeof t == "string")
|
|
3476
3483
|
return t;
|
|
3477
3484
|
if (be(t))
|
|
3478
|
-
return P(t,
|
|
3479
|
-
if (
|
|
3485
|
+
return P(t, yt) + "";
|
|
3486
|
+
if (Bt(t))
|
|
3480
3487
|
return Fc ? Fc.call(t) : "";
|
|
3481
3488
|
var r = t + "";
|
|
3482
3489
|
return r == "0" && 1 / t == -Ou ? "-0" : r;
|
|
@@ -3484,7 +3491,7 @@ pn.exports;
|
|
|
3484
3491
|
function bu(t, r, n) {
|
|
3485
3492
|
var o = -1, l = v, f = t.length, b = !0, T = [], I = T;
|
|
3486
3493
|
if (n)
|
|
3487
|
-
b = !1, l =
|
|
3494
|
+
b = !1, l = Q;
|
|
3488
3495
|
else if (f >= Bn) {
|
|
3489
3496
|
var k = r ? null : K1(t);
|
|
3490
3497
|
if (k)
|
|
@@ -3494,14 +3501,14 @@ pn.exports;
|
|
|
3494
3501
|
I = r ? [] : T;
|
|
3495
3502
|
e:
|
|
3496
3503
|
for (; ++o < f; ) {
|
|
3497
|
-
var S = t[o],
|
|
3498
|
-
if (S = n || S !== 0 ? S : 0, b &&
|
|
3504
|
+
var S = t[o], M = r ? r(S) : S;
|
|
3505
|
+
if (S = n || S !== 0 ? S : 0, b && M === M) {
|
|
3499
3506
|
for (var X = I.length; X--; )
|
|
3500
|
-
if (I[X] ===
|
|
3507
|
+
if (I[X] === M)
|
|
3501
3508
|
continue e;
|
|
3502
|
-
r && I.push(
|
|
3509
|
+
r && I.push(M), T.push(S);
|
|
3503
3510
|
} else
|
|
3504
|
-
l(I,
|
|
3511
|
+
l(I, M, n) || (I !== T && I.push(M), T.push(S));
|
|
3505
3512
|
}
|
|
3506
3513
|
return T;
|
|
3507
3514
|
}
|
|
@@ -3574,7 +3581,7 @@ pn.exports;
|
|
|
3574
3581
|
}
|
|
3575
3582
|
function Oo(t, r) {
|
|
3576
3583
|
if (t !== r) {
|
|
3577
|
-
var n = t !== p, o = t === null, l = t === t, f =
|
|
3584
|
+
var n = t !== p, o = t === null, l = t === t, f = Bt(t), b = r !== p, T = r === null, I = r === r, k = Bt(r);
|
|
3578
3585
|
if (!T && !k && !f && t > r || f && b && I && !T && !k || o && b && I || !n && I || !l)
|
|
3579
3586
|
return 1;
|
|
3580
3587
|
if (!o && !f && !k && t < r || k && n && l && !o && !f || T && n && l || !b && l || !I)
|
|
@@ -3591,22 +3598,22 @@ pn.exports;
|
|
|
3591
3598
|
return t.index - r.index;
|
|
3592
3599
|
}
|
|
3593
3600
|
function ko(t, r, n, o) {
|
|
3594
|
-
for (var l = -1, f = t.length, b = n.length, T = -1, I = r.length, k = Ze(f - b, 0), S = Ke(I + k),
|
|
3601
|
+
for (var l = -1, f = t.length, b = n.length, T = -1, I = r.length, k = Ze(f - b, 0), S = Ke(I + k), M = !o; ++T < I; )
|
|
3595
3602
|
S[T] = r[T];
|
|
3596
3603
|
for (; ++l < b; )
|
|
3597
|
-
(
|
|
3604
|
+
(M || l < f) && (S[n[l]] = t[l]);
|
|
3598
3605
|
for (; k--; )
|
|
3599
3606
|
S[T++] = t[l++];
|
|
3600
3607
|
return S;
|
|
3601
3608
|
}
|
|
3602
3609
|
function Fo(t, r, n, o) {
|
|
3603
|
-
for (var l = -1, f = t.length, b = -1, T = n.length, I = -1, k = r.length, S = Ze(f - T, 0),
|
|
3604
|
-
|
|
3610
|
+
for (var l = -1, f = t.length, b = -1, T = n.length, I = -1, k = r.length, S = Ze(f - T, 0), M = Ke(S + k), X = !o; ++l < S; )
|
|
3611
|
+
M[l] = t[l];
|
|
3605
3612
|
for (var $ = l; ++I < k; )
|
|
3606
|
-
|
|
3613
|
+
M[$ + I] = r[I];
|
|
3607
3614
|
for (; ++b < T; )
|
|
3608
|
-
(X || l < f) && (
|
|
3609
|
-
return
|
|
3615
|
+
(X || l < f) && (M[$ + n[b]] = t[l++]);
|
|
3616
|
+
return M;
|
|
3610
3617
|
}
|
|
3611
3618
|
function mt(t, r) {
|
|
3612
3619
|
var n = -1, o = t.length;
|
|
@@ -3632,7 +3639,7 @@ pn.exports;
|
|
|
3632
3639
|
function Da(t, r) {
|
|
3633
3640
|
return function(n, o) {
|
|
3634
3641
|
var l = be(n) ? s : kd, f = r ? r() : {};
|
|
3635
|
-
return l(n, t,
|
|
3642
|
+
return l(n, t, de(o, 2), f);
|
|
3636
3643
|
};
|
|
3637
3644
|
}
|
|
3638
3645
|
function ur(t) {
|
|
@@ -3724,7 +3731,7 @@ pn.exports;
|
|
|
3724
3731
|
return function(r, n, o) {
|
|
3725
3732
|
var l = Pe(r);
|
|
3726
3733
|
if (!bt(r)) {
|
|
3727
|
-
var f =
|
|
3734
|
+
var f = de(n, 3);
|
|
3728
3735
|
r = $e(r), n = function(T) {
|
|
3729
3736
|
return f(l[T], T, l);
|
|
3730
3737
|
};
|
|
@@ -3752,8 +3759,8 @@ pn.exports;
|
|
|
3752
3759
|
var k = arguments, S = k[0];
|
|
3753
3760
|
if (b && k.length == 1 && be(S))
|
|
3754
3761
|
return b.plant(S).value();
|
|
3755
|
-
for (var
|
|
3756
|
-
X = r[
|
|
3762
|
+
for (var M = 0, X = n ? r[M].apply(this, k) : S; ++M < n; )
|
|
3763
|
+
X = r[M].call(this, X);
|
|
3757
3764
|
return X;
|
|
3758
3765
|
};
|
|
3759
3766
|
});
|
|
@@ -3767,9 +3774,9 @@ pn.exports;
|
|
|
3767
3774
|
if (o && (ye = ko(ye, o, l, ae)), f && (ye = Fo(ye, f, b, ae)), Ie -= Iu, ae && Ie < k)
|
|
3768
3775
|
return Qo(t, r, Ca, S.placeholder, n, ye, ue(ye, Ct), T, I, k - Ie);
|
|
3769
3776
|
var We = X ? n : this, qt = $ ? We[t] : t;
|
|
3770
|
-
return Ie = ye.length, T ? ye = vh(ye, T) : Te && Ie > 1 && ye.reverse(),
|
|
3777
|
+
return Ie = ye.length, T ? ye = vh(ye, T) : Te && Ie > 1 && ye.reverse(), M && I < Ie && (ye.length = I), this && this !== it && this instanceof S && (qt = se || Lr(qt)), qt.apply(We, ye);
|
|
3771
3778
|
}
|
|
3772
|
-
var
|
|
3779
|
+
var M = r & au, X = r & kt, $ = r & Su, ae = r & (jt | Ku), Te = r & Rn, se = $ ? p : Lr(t);
|
|
3773
3780
|
return S;
|
|
3774
3781
|
}
|
|
3775
3782
|
function qo(t, r) {
|
|
@@ -3785,14 +3792,14 @@ pn.exports;
|
|
|
3785
3792
|
if (n !== p && (l = n), o !== p) {
|
|
3786
3793
|
if (l === p)
|
|
3787
3794
|
return o;
|
|
3788
|
-
typeof n == "string" || typeof o == "string" ? (n =
|
|
3795
|
+
typeof n == "string" || typeof o == "string" ? (n = yt(n), o = yt(o)) : (n = Bo(n), o = Bo(o)), l = t(n, o);
|
|
3789
3796
|
}
|
|
3790
3797
|
return l;
|
|
3791
3798
|
};
|
|
3792
3799
|
}
|
|
3793
3800
|
function hi(t) {
|
|
3794
3801
|
return lu(function(r) {
|
|
3795
|
-
return r = P(r, He(
|
|
3802
|
+
return r = P(r, He(de())), Ne(function(n) {
|
|
3796
3803
|
var o = this;
|
|
3797
3804
|
return t(r, function(l) {
|
|
3798
3805
|
return a(l, o, n);
|
|
@@ -3801,7 +3808,7 @@ pn.exports;
|
|
|
3801
3808
|
});
|
|
3802
3809
|
}
|
|
3803
3810
|
function Na(t, r) {
|
|
3804
|
-
r = r === p ? " " :
|
|
3811
|
+
r = r === p ? " " : yt(r);
|
|
3805
3812
|
var n = r.length;
|
|
3806
3813
|
if (n < 2)
|
|
3807
3814
|
return n ? ni(r, t) : r;
|
|
@@ -3810,11 +3817,11 @@ pn.exports;
|
|
|
3810
3817
|
}
|
|
3811
3818
|
function fh(t, r, n, o) {
|
|
3812
3819
|
function l() {
|
|
3813
|
-
for (var T = -1, I = arguments.length, k = -1, S = o.length,
|
|
3814
|
-
|
|
3820
|
+
for (var T = -1, I = arguments.length, k = -1, S = o.length, M = Ke(S + I), X = this && this !== it && this instanceof l ? b : t; ++k < S; )
|
|
3821
|
+
M[k] = o[k];
|
|
3815
3822
|
for (; I--; )
|
|
3816
|
-
|
|
3817
|
-
return a(X, f ? n : this,
|
|
3823
|
+
M[k++] = arguments[++T];
|
|
3824
|
+
return a(X, f ? n : this, M);
|
|
3818
3825
|
}
|
|
3819
3826
|
var f = r & kt, b = Lr(t);
|
|
3820
3827
|
return l;
|
|
@@ -3830,9 +3837,9 @@ pn.exports;
|
|
|
3830
3837
|
};
|
|
3831
3838
|
}
|
|
3832
3839
|
function Qo(t, r, n, o, l, f, b, T, I, k) {
|
|
3833
|
-
var S = r & jt,
|
|
3840
|
+
var S = r & jt, M = S ? b : p, X = S ? p : b, $ = S ? f : p, ae = S ? p : f;
|
|
3834
3841
|
r |= S ? Xt : Zu, r &= ~(S ? Zu : Xt), r & xs || (r &= ~(kt | Su));
|
|
3835
|
-
var Te = [t, r, l, $,
|
|
3842
|
+
var Te = [t, r, l, $, M, ae, X, T, I, k], se = n.apply(p, Te);
|
|
3836
3843
|
return mi(t) && qc(se, Te), se.placeholder = o, ec(se, t, r);
|
|
3837
3844
|
}
|
|
3838
3845
|
function fi(t) {
|
|
@@ -3857,10 +3864,10 @@ pn.exports;
|
|
|
3857
3864
|
throw new Ut(Ot);
|
|
3858
3865
|
var k = o ? o.length : 0;
|
|
3859
3866
|
if (k || (r &= ~(Xt | Zu), o = l = p), b = b === p ? b : Ze(De(b), 0), T = T === p ? T : De(T), k -= l ? l.length : 0, r & Zu) {
|
|
3860
|
-
var S = o,
|
|
3867
|
+
var S = o, M = l;
|
|
3861
3868
|
o = l = p;
|
|
3862
3869
|
}
|
|
3863
|
-
var X = I ? p : wi(t), $ = [t, r, n, o, l, S,
|
|
3870
|
+
var X = I ? p : wi(t), $ = [t, r, n, o, l, S, M, f, b, T];
|
|
3864
3871
|
if (X && Bh($, X), t = $[0], r = $[1], n = $[2], o = $[3], l = $[4], T = $[9] = $[9] === p ? I ? 0 : t.length : Ze($[9] - k, 0), !T && r & (jt | Ku) && (r &= ~(jt | Ku)), r && r != kt)
|
|
3865
3872
|
ae = r == jt || r == Ku ? hh(t, r, T) : r != Xt && r != (kt | Xt) || l.length ? Ca.apply(p, $) : fh(t, r, n, o);
|
|
3866
3873
|
else
|
|
@@ -3883,11 +3890,11 @@ pn.exports;
|
|
|
3883
3890
|
var k = f.get(t), S = f.get(r);
|
|
3884
3891
|
if (k && S)
|
|
3885
3892
|
return k == r && S == t;
|
|
3886
|
-
var
|
|
3887
|
-
for (f.set(t, r), f.set(r, t); ++
|
|
3888
|
-
var ae = t[
|
|
3893
|
+
var M = -1, X = !0, $ = n & ia ? new Pu() : p;
|
|
3894
|
+
for (f.set(t, r), f.set(r, t); ++M < T; ) {
|
|
3895
|
+
var ae = t[M], Te = r[M];
|
|
3889
3896
|
if (o)
|
|
3890
|
-
var se = b ? o(Te, ae,
|
|
3897
|
+
var se = b ? o(Te, ae, M, r, t, f) : o(ae, Te, M, t, r, f);
|
|
3891
3898
|
if (se !== p) {
|
|
3892
3899
|
if (se)
|
|
3893
3900
|
continue;
|
|
@@ -3895,7 +3902,7 @@ pn.exports;
|
|
|
3895
3902
|
break;
|
|
3896
3903
|
}
|
|
3897
3904
|
if ($) {
|
|
3898
|
-
if (!
|
|
3905
|
+
if (!q(r, function(Ie, ye) {
|
|
3899
3906
|
if (!At($, ye) && (ae === Ie || l(ae, Ie, n, o, f)))
|
|
3900
3907
|
return $.push(ye);
|
|
3901
3908
|
})) {
|
|
@@ -3953,9 +3960,9 @@ pn.exports;
|
|
|
3953
3960
|
if (!(b ? S in r : Le.call(r, S)))
|
|
3954
3961
|
return !1;
|
|
3955
3962
|
}
|
|
3956
|
-
var
|
|
3957
|
-
if (
|
|
3958
|
-
return
|
|
3963
|
+
var M = f.get(t), X = f.get(r);
|
|
3964
|
+
if (M && X)
|
|
3965
|
+
return M == r && X == t;
|
|
3959
3966
|
var $ = !0;
|
|
3960
3967
|
f.set(t, r), f.set(r, t);
|
|
3961
3968
|
for (var ae = b; ++k < I; ) {
|
|
@@ -3995,7 +4002,7 @@ pn.exports;
|
|
|
3995
4002
|
function ar(t) {
|
|
3996
4003
|
return (Le.call(c, "placeholder") ? c : t).placeholder;
|
|
3997
4004
|
}
|
|
3998
|
-
function
|
|
4005
|
+
function de() {
|
|
3999
4006
|
var t = c.iteratee || yi;
|
|
4000
4007
|
return t = t === yi ? mo : t, arguments.length ? t(arguments[0], arguments[1]) : t;
|
|
4001
4008
|
}
|
|
@@ -4123,7 +4130,7 @@ pn.exports;
|
|
|
4123
4130
|
if (be(t))
|
|
4124
4131
|
return !1;
|
|
4125
4132
|
var n = typeof t;
|
|
4126
|
-
return !(n != "number" && n != "symbol" && n != "boolean" && t != null && !
|
|
4133
|
+
return !(n != "number" && n != "symbol" && n != "boolean" && t != null && !Bt(t)) || l2.test(t) || !c2.test(t) || r != null && t in Pe(r);
|
|
4127
4134
|
}
|
|
4128
4135
|
function Nh(t) {
|
|
4129
4136
|
var r = typeof t;
|
|
@@ -4230,7 +4237,7 @@ pn.exports;
|
|
|
4230
4237
|
return t.length = r, t;
|
|
4231
4238
|
}
|
|
4232
4239
|
function $t(t) {
|
|
4233
|
-
if (typeof t == "string" ||
|
|
4240
|
+
if (typeof t == "string" || Bt(t))
|
|
4234
4241
|
return t;
|
|
4235
4242
|
var r = t + "";
|
|
4236
4243
|
return r == "0" && 1 / t == -Ou ? "-0" : r;
|
|
@@ -4293,10 +4300,10 @@ pn.exports;
|
|
|
4293
4300
|
return o ? (r = n || r === p ? 1 : De(r), r = o - r, wt(t, 0, r < 0 ? 0 : r)) : [];
|
|
4294
4301
|
}
|
|
4295
4302
|
function wh(t, r) {
|
|
4296
|
-
return t && t.length ? Ta(t,
|
|
4303
|
+
return t && t.length ? Ta(t, de(r, 3), !0, !0) : [];
|
|
4297
4304
|
}
|
|
4298
4305
|
function Mh(t, r) {
|
|
4299
|
-
return t && t.length ? Ta(t,
|
|
4306
|
+
return t && t.length ? Ta(t, de(r, 3), !0) : [];
|
|
4300
4307
|
}
|
|
4301
4308
|
function Hh(t, r, n, o) {
|
|
4302
4309
|
var l = t == null ? 0 : t.length;
|
|
@@ -4307,14 +4314,14 @@ pn.exports;
|
|
|
4307
4314
|
if (!o)
|
|
4308
4315
|
return -1;
|
|
4309
4316
|
var l = n == null ? 0 : De(n);
|
|
4310
|
-
return l < 0 && (l = Ze(o + l, 0)),
|
|
4317
|
+
return l < 0 && (l = Ze(o + l, 0)), le(t, de(r, 3), l);
|
|
4311
4318
|
}
|
|
4312
4319
|
function ac(t, r, n) {
|
|
4313
4320
|
var o = t == null ? 0 : t.length;
|
|
4314
4321
|
if (!o)
|
|
4315
4322
|
return -1;
|
|
4316
4323
|
var l = o - 1;
|
|
4317
|
-
return n !== p && (l = De(n), l = n < 0 ? Ze(o + l, 0) : ot(l, o - 1)),
|
|
4324
|
+
return n !== p && (l = De(n), l = n < 0 ? Ze(o + l, 0) : ot(l, o - 1)), le(t, de(r, 3), l, !0);
|
|
4318
4325
|
}
|
|
4319
4326
|
function nc(t) {
|
|
4320
4327
|
return t != null && t.length ? st(t, 1) : [];
|
|
@@ -4357,7 +4364,7 @@ pn.exports;
|
|
|
4357
4364
|
if (!o)
|
|
4358
4365
|
return -1;
|
|
4359
4366
|
var l = o;
|
|
4360
|
-
return n !== p && (l = De(n), l = l < 0 ? Ze(o + l, 0) : ot(l, o - 1)), r === r ? Xe(t, r, l) :
|
|
4367
|
+
return n !== p && (l = De(n), l = l < 0 ? Ze(o + l, 0) : ot(l, o - 1)), r === r ? Xe(t, r, l) : le(t, j, l, !0);
|
|
4361
4368
|
}
|
|
4362
4369
|
function zh(t, r) {
|
|
4363
4370
|
return t && t.length ? Co(t, De(r)) : p;
|
|
@@ -4366,7 +4373,7 @@ pn.exports;
|
|
|
4366
4373
|
return t && t.length && r && r.length ? ri(t, r) : t;
|
|
4367
4374
|
}
|
|
4368
4375
|
function jh(t, r, n) {
|
|
4369
|
-
return t && t.length && r && r.length ? ri(t, r,
|
|
4376
|
+
return t && t.length && r && r.length ? ri(t, r, de(n, 2)) : t;
|
|
4370
4377
|
}
|
|
4371
4378
|
function Xh(t, r, n) {
|
|
4372
4379
|
return t && t.length && r && r.length ? ri(t, r, p, n) : t;
|
|
@@ -4376,7 +4383,7 @@ pn.exports;
|
|
|
4376
4383
|
if (!t || !t.length)
|
|
4377
4384
|
return n;
|
|
4378
4385
|
var o = -1, l = [], f = t.length;
|
|
4379
|
-
for (r =
|
|
4386
|
+
for (r = de(r, 3); ++o < f; ) {
|
|
4380
4387
|
var b = t[o];
|
|
4381
4388
|
r(b, o, t) && (n.push(b), l.push(o));
|
|
4382
4389
|
}
|
|
@@ -4393,7 +4400,7 @@ pn.exports;
|
|
|
4393
4400
|
return ba(t, r);
|
|
4394
4401
|
}
|
|
4395
4402
|
function $h(t, r, n) {
|
|
4396
|
-
return ii(t, r,
|
|
4403
|
+
return ii(t, r, de(n, 2));
|
|
4397
4404
|
}
|
|
4398
4405
|
function ef(t, r) {
|
|
4399
4406
|
var n = t == null ? 0 : t.length;
|
|
@@ -4408,7 +4415,7 @@ pn.exports;
|
|
|
4408
4415
|
return ba(t, r, !0);
|
|
4409
4416
|
}
|
|
4410
4417
|
function uf(t, r, n) {
|
|
4411
|
-
return ii(t, r,
|
|
4418
|
+
return ii(t, r, de(n, 2), !0);
|
|
4412
4419
|
}
|
|
4413
4420
|
function rf(t, r) {
|
|
4414
4421
|
if (t != null && t.length) {
|
|
@@ -4422,7 +4429,7 @@ pn.exports;
|
|
|
4422
4429
|
return t && t.length ? yo(t) : [];
|
|
4423
4430
|
}
|
|
4424
4431
|
function nf(t, r) {
|
|
4425
|
-
return t && t.length ? yo(t,
|
|
4432
|
+
return t && t.length ? yo(t, de(r, 2)) : [];
|
|
4426
4433
|
}
|
|
4427
4434
|
function sf(t) {
|
|
4428
4435
|
var r = t == null ? 0 : t.length;
|
|
@@ -4436,16 +4443,16 @@ pn.exports;
|
|
|
4436
4443
|
return o ? (r = n || r === p ? 1 : De(r), r = o - r, wt(t, r < 0 ? 0 : r, o)) : [];
|
|
4437
4444
|
}
|
|
4438
4445
|
function lf(t, r) {
|
|
4439
|
-
return t && t.length ? Ta(t,
|
|
4446
|
+
return t && t.length ? Ta(t, de(r, 3), !1, !0) : [];
|
|
4440
4447
|
}
|
|
4441
4448
|
function df(t, r) {
|
|
4442
|
-
return t && t.length ? Ta(t,
|
|
4449
|
+
return t && t.length ? Ta(t, de(r, 3)) : [];
|
|
4443
4450
|
}
|
|
4444
4451
|
function hf(t) {
|
|
4445
4452
|
return t && t.length ? bu(t) : [];
|
|
4446
4453
|
}
|
|
4447
4454
|
function ff(t, r) {
|
|
4448
|
-
return t && t.length ? bu(t,
|
|
4455
|
+
return t && t.length ? bu(t, de(r, 2)) : [];
|
|
4449
4456
|
}
|
|
4450
4457
|
function Af(t, r) {
|
|
4451
4458
|
return r = typeof r == "function" ? r : p, t && t.length ? bu(t, p, r) : [];
|
|
@@ -4521,10 +4528,10 @@ pn.exports;
|
|
|
4521
4528
|
}
|
|
4522
4529
|
function If(t, r, n) {
|
|
4523
4530
|
var o = be(t) ? N : wd;
|
|
4524
|
-
return n && gt(t, r, n) && (r = p), o(t,
|
|
4531
|
+
return n && gt(t, r, n) && (r = p), o(t, de(r, 3));
|
|
4525
4532
|
}
|
|
4526
4533
|
function yf(t, r) {
|
|
4527
|
-
return (be(t) ? x : Ao)(t,
|
|
4534
|
+
return (be(t) ? x : Ao)(t, de(r, 3));
|
|
4528
4535
|
}
|
|
4529
4536
|
function Bf(t, r) {
|
|
4530
4537
|
return st(va(t, r), 1);
|
|
@@ -4536,10 +4543,10 @@ pn.exports;
|
|
|
4536
4543
|
return n = n === p ? 1 : De(n), st(va(t, r), n);
|
|
4537
4544
|
}
|
|
4538
4545
|
function lc(t, r) {
|
|
4539
|
-
return (be(t) ? d : _u)(t,
|
|
4546
|
+
return (be(t) ? d : _u)(t, de(r, 3));
|
|
4540
4547
|
}
|
|
4541
4548
|
function dc(t, r) {
|
|
4542
|
-
return (be(t) ? g : Pc)(t,
|
|
4549
|
+
return (be(t) ? g : Pc)(t, de(r, 3));
|
|
4543
4550
|
}
|
|
4544
4551
|
function vf(t, r, n, o) {
|
|
4545
4552
|
t = bt(t) ? t : nr(t), n = n && !o ? De(n) : 0;
|
|
@@ -4547,21 +4554,21 @@ pn.exports;
|
|
|
4547
4554
|
return n < 0 && (n = Ze(l + n, 0)), ka(t) ? n <= l && t.indexOf(r, n) > -1 : !!l && he(t, r, n) > -1;
|
|
4548
4555
|
}
|
|
4549
4556
|
function va(t, r) {
|
|
4550
|
-
return (be(t) ? P : bo)(t,
|
|
4557
|
+
return (be(t) ? P : bo)(t, de(r, 3));
|
|
4551
4558
|
}
|
|
4552
4559
|
function Lf(t, r, n, o) {
|
|
4553
4560
|
return t == null ? [] : (be(r) || (r = r == null ? [] : [r]), n = o ? p : n, be(n) || (n = n == null ? [] : [n]), _o(t, r, n));
|
|
4554
4561
|
}
|
|
4555
4562
|
function Sf(t, r, n) {
|
|
4556
4563
|
var o = be(t) ? _ : ee, l = arguments.length < 3;
|
|
4557
|
-
return o(t,
|
|
4564
|
+
return o(t, de(r, 4), n, l, _u);
|
|
4558
4565
|
}
|
|
4559
4566
|
function Of(t, r, n) {
|
|
4560
|
-
var o = be(t) ?
|
|
4561
|
-
return o(t,
|
|
4567
|
+
var o = be(t) ? B : ee, l = arguments.length < 3;
|
|
4568
|
+
return o(t, de(r, 4), n, l, Pc);
|
|
4562
4569
|
}
|
|
4563
4570
|
function kf(t, r) {
|
|
4564
|
-
return (be(t) ? x : Ao)(t, Sa(
|
|
4571
|
+
return (be(t) ? x : Ao)(t, Sa(de(r, 3)));
|
|
4565
4572
|
}
|
|
4566
4573
|
function Ff(t) {
|
|
4567
4574
|
return (be(t) ? co : th)(t);
|
|
@@ -4581,8 +4588,8 @@ pn.exports;
|
|
|
4581
4588
|
return r == Wt || r == Qt ? t.size : ti(t).length;
|
|
4582
4589
|
}
|
|
4583
4590
|
function Hf(t, r, n) {
|
|
4584
|
-
var o = be(t) ?
|
|
4585
|
-
return n && gt(t, r, n) && (r = p), o(t,
|
|
4591
|
+
var o = be(t) ? q : ah;
|
|
4592
|
+
return n && gt(t, r, n) && (r = p), o(t, de(r, 3));
|
|
4586
4593
|
}
|
|
4587
4594
|
function Uf(t, r) {
|
|
4588
4595
|
if (typeof r != "function")
|
|
@@ -4642,7 +4649,7 @@ pn.exports;
|
|
|
4642
4649
|
function S() {
|
|
4643
4650
|
return se === p ? Te : I(Xa());
|
|
4644
4651
|
}
|
|
4645
|
-
function
|
|
4652
|
+
function M() {
|
|
4646
4653
|
var We = Xa(), qt = b(We);
|
|
4647
4654
|
if (X = arguments, $ = this, Ie = We, qt) {
|
|
4648
4655
|
if (se === p)
|
|
@@ -4655,7 +4662,7 @@ pn.exports;
|
|
|
4655
4662
|
var X, $, ae, Te, se, Ie, ye = 0, lt = !1, Ct = !1, Iu = !0;
|
|
4656
4663
|
if (typeof t != "function")
|
|
4657
4664
|
throw new Ut(Ot);
|
|
4658
|
-
return r = Ht(r) || 0, Ue(n) && (lt = !!n.leading, Ct = "maxWait" in n, ae = Ct ? Ze(Ht(n.maxWait) || 0, r) : ae, Iu = "trailing" in n ? !!n.trailing : Iu),
|
|
4665
|
+
return r = Ht(r) || 0, Ue(n) && (lt = !!n.leading, Ct = "maxWait" in n, ae = Ct ? Ze(Ht(n.maxWait) || 0, r) : ae, Iu = "trailing" in n ? !!n.trailing : Iu), M.cancel = k, M.flush = S, M;
|
|
4659
4666
|
}
|
|
4660
4667
|
function qf(t) {
|
|
4661
4668
|
return cu(t, Rn);
|
|
@@ -4843,7 +4850,7 @@ pn.exports;
|
|
|
4843
4850
|
function ka(t) {
|
|
4844
4851
|
return typeof t == "string" || !be(t) && qe(t) && Et(t) == _r;
|
|
4845
4852
|
}
|
|
4846
|
-
function
|
|
4853
|
+
function Bt(t) {
|
|
4847
4854
|
return typeof t == "symbol" || qe(t) && Et(t) == da;
|
|
4848
4855
|
}
|
|
4849
4856
|
function fA(t) {
|
|
@@ -4878,7 +4885,7 @@ pn.exports;
|
|
|
4878
4885
|
function Ht(t) {
|
|
4879
4886
|
if (typeof t == "number")
|
|
4880
4887
|
return t;
|
|
4881
|
-
if (
|
|
4888
|
+
if (Bt(t))
|
|
4882
4889
|
return sa;
|
|
4883
4890
|
if (Ue(t)) {
|
|
4884
4891
|
var r = typeof t.valueOf == "function" ? t.valueOf() : t;
|
|
@@ -4897,29 +4904,29 @@ pn.exports;
|
|
|
4897
4904
|
return t ? wu(De(t), -mu, mu) : t === 0 ? t : 0;
|
|
4898
4905
|
}
|
|
4899
4906
|
function ve(t) {
|
|
4900
|
-
return t == null ? "" :
|
|
4907
|
+
return t == null ? "" : yt(t);
|
|
4901
4908
|
}
|
|
4902
4909
|
function pA(t, r) {
|
|
4903
4910
|
var n = lr(t);
|
|
4904
4911
|
return r == null ? n : lo(n, r);
|
|
4905
4912
|
}
|
|
4906
4913
|
function mA(t, r) {
|
|
4907
|
-
return
|
|
4914
|
+
return W(t, de(r, 3), Zt);
|
|
4908
4915
|
}
|
|
4909
4916
|
function bA(t, r) {
|
|
4910
|
-
return
|
|
4917
|
+
return W(t, de(r, 3), Zn);
|
|
4911
4918
|
}
|
|
4912
4919
|
function TA(t, r) {
|
|
4913
|
-
return t == null ? t : Pi(t,
|
|
4920
|
+
return t == null ? t : Pi(t, de(r, 3), Tt);
|
|
4914
4921
|
}
|
|
4915
4922
|
function DA(t, r) {
|
|
4916
|
-
return t == null ? t : wc(t,
|
|
4923
|
+
return t == null ? t : wc(t, de(r, 3), Tt);
|
|
4917
4924
|
}
|
|
4918
4925
|
function CA(t, r) {
|
|
4919
|
-
return t && Zt(t,
|
|
4926
|
+
return t && Zt(t, de(r, 3));
|
|
4920
4927
|
}
|
|
4921
4928
|
function _A(t, r) {
|
|
4922
|
-
return t && Zn(t,
|
|
4929
|
+
return t && Zn(t, de(r, 3));
|
|
4923
4930
|
}
|
|
4924
4931
|
function NA(t) {
|
|
4925
4932
|
return t == null ? [] : pa(t, $e(t));
|
|
@@ -4945,18 +4952,18 @@ pn.exports;
|
|
|
4945
4952
|
}
|
|
4946
4953
|
function BA(t, r) {
|
|
4947
4954
|
var n = {};
|
|
4948
|
-
return r =
|
|
4955
|
+
return r = de(r, 3), Zt(t, function(o, l, f) {
|
|
4949
4956
|
ou(n, r(o, l, f), o);
|
|
4950
4957
|
}), n;
|
|
4951
4958
|
}
|
|
4952
4959
|
function xA(t, r) {
|
|
4953
4960
|
var n = {};
|
|
4954
|
-
return r =
|
|
4961
|
+
return r = de(r, 3), Zt(t, function(o, l, f) {
|
|
4955
4962
|
ou(n, l, r(o, l, f));
|
|
4956
4963
|
}), n;
|
|
4957
4964
|
}
|
|
4958
4965
|
function RA(t, r) {
|
|
4959
|
-
return Cc(t, Sa(
|
|
4966
|
+
return Cc(t, Sa(de(r)));
|
|
4960
4967
|
}
|
|
4961
4968
|
function Cc(t, r) {
|
|
4962
4969
|
if (t == null)
|
|
@@ -4964,7 +4971,7 @@ pn.exports;
|
|
|
4964
4971
|
var n = P(Ei(t), function(o) {
|
|
4965
4972
|
return [o];
|
|
4966
4973
|
});
|
|
4967
|
-
return r =
|
|
4974
|
+
return r = de(r), No(t, n, function(o, l) {
|
|
4968
4975
|
return r(o, l[0]);
|
|
4969
4976
|
});
|
|
4970
4977
|
}
|
|
@@ -4985,7 +4992,7 @@ pn.exports;
|
|
|
4985
4992
|
}
|
|
4986
4993
|
function OA(t, r, n) {
|
|
4987
4994
|
var o = be(t), l = o || Nu(t) || dr(t);
|
|
4988
|
-
if (r =
|
|
4995
|
+
if (r = de(r, 4), n == null) {
|
|
4989
4996
|
var f = t && t.constructor;
|
|
4990
4997
|
n = l ? o ? new f() : [] : Ue(t) && hu(f) ? lr(Wa(t)) : {};
|
|
4991
4998
|
}
|
|
@@ -5032,7 +5039,7 @@ pn.exports;
|
|
|
5032
5039
|
return t = ve(t), t && t.replace(y2, nd).replace(G2, "");
|
|
5033
5040
|
}
|
|
5034
5041
|
function qA(t, r, n) {
|
|
5035
|
-
t = ve(t), r =
|
|
5042
|
+
t = ve(t), r = yt(r);
|
|
5036
5043
|
var o = t.length;
|
|
5037
5044
|
n = n === p ? o : wu(De(n), 0, o);
|
|
5038
5045
|
var l = n;
|
|
@@ -5073,46 +5080,46 @@ pn.exports;
|
|
|
5073
5080
|
return t.length < 3 ? r : r.replace(t[1], t[2]);
|
|
5074
5081
|
}
|
|
5075
5082
|
function KA(t, r, n) {
|
|
5076
|
-
return n && typeof n != "number" && gt(t, r, n) && (r = n = p), (n = n === p ? Kt : n >>> 0) ? (t = ve(t), t && (typeof r == "string" || r != null && !Wi(r)) && (r =
|
|
5083
|
+
return n && typeof n != "number" && gt(t, r, n) && (r = n = p), (n = n === p ? Kt : n >>> 0) ? (t = ve(t), t && (typeof r == "string" || r != null && !Wi(r)) && (r = yt(r), !r && Se(t)) ? Du(nt(t), 0, n) : t.split(r, n)) : [];
|
|
5077
5084
|
}
|
|
5078
5085
|
function ZA(t, r, n) {
|
|
5079
|
-
return t = ve(t), n = n == null ? 0 : wu(De(n), 0, t.length), r =
|
|
5086
|
+
return t = ve(t), n = n == null ? 0 : wu(De(n), 0, t.length), r = yt(r), t.slice(n, n + r.length) == r;
|
|
5080
5087
|
}
|
|
5081
5088
|
function JA(t, r, n) {
|
|
5082
5089
|
var o = c.templateSettings;
|
|
5083
5090
|
n && gt(t, r, n) && (r = p), t = ve(t), r = Ka({}, r, o, Go);
|
|
5084
|
-
var l, f, b = Ka({}, r.imports, o.imports, Go), T = $e(b), I = tu(b, T), k = 0, S = r.interpolate || ha,
|
|
5091
|
+
var l, f, b = Ka({}, r.imports, o.imports, Go), T = $e(b), I = tu(b, T), k = 0, S = r.interpolate || ha, M = "__p += '", X = Si((r.escape || ha).source + "|" + S.source + "|" + (S === ks ? T2 : ha).source + "|" + (r.evaluate || ha).source + "|$", "g"), $ = "//# sourceURL=" + (Le.call(r, "sourceURL") ? (r.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++K2 + "]") + `
|
|
5085
5092
|
`;
|
|
5086
5093
|
t.replace(X, function(se, Ie, ye, lt, Ct, Iu) {
|
|
5087
|
-
return ye || (ye = lt),
|
|
5094
|
+
return ye || (ye = lt), M += t.slice(k, Iu).replace(B2, ke), Ie && (l = !0, M += `' +
|
|
5088
5095
|
__e(` + Ie + `) +
|
|
5089
|
-
'`), Ct && (f = !0,
|
|
5096
|
+
'`), Ct && (f = !0, M += `';
|
|
5090
5097
|
` + Ct + `;
|
|
5091
|
-
__p += '`), ye && (
|
|
5098
|
+
__p += '`), ye && (M += `' +
|
|
5092
5099
|
((__t = (` + ye + `)) == null ? '' : __t) +
|
|
5093
5100
|
'`), k = Iu + se.length, se;
|
|
5094
|
-
}),
|
|
5101
|
+
}), M += `';
|
|
5095
5102
|
`;
|
|
5096
5103
|
var ae = Le.call(r, "variable") && r.variable;
|
|
5097
5104
|
if (ae) {
|
|
5098
5105
|
if (m2.test(ae))
|
|
5099
5106
|
throw new Li(M0);
|
|
5100
5107
|
} else
|
|
5101
|
-
|
|
5102
|
-
` +
|
|
5108
|
+
M = `with (obj) {
|
|
5109
|
+
` + M + `
|
|
5103
5110
|
}
|
|
5104
5111
|
`;
|
|
5105
|
-
|
|
5112
|
+
M = (f ? M.replace(u2, "") : M).replace(r2, "$1").replace(a2, "$1;"), M = "function(" + (ae || "obj") + `) {
|
|
5106
5113
|
` + (ae ? "" : `obj || (obj = {});
|
|
5107
5114
|
`) + "var __t, __p = ''" + (l ? ", __e = _.escape" : "") + (f ? `, __j = Array.prototype.join;
|
|
5108
5115
|
function print() { __p += __j.call(arguments, '') }
|
|
5109
5116
|
` : `;
|
|
5110
|
-
`) +
|
|
5117
|
+
`) + M + `return __p
|
|
5111
5118
|
}`;
|
|
5112
5119
|
var Te = Zc(function() {
|
|
5113
|
-
return Bc(T, $ + "return " +
|
|
5120
|
+
return Bc(T, $ + "return " + M).apply(p, I);
|
|
5114
5121
|
});
|
|
5115
|
-
if (Te.source =
|
|
5122
|
+
if (Te.source = M, Ci(Te))
|
|
5116
5123
|
throw Te;
|
|
5117
5124
|
return Te;
|
|
5118
5125
|
}
|
|
@@ -5125,7 +5132,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5125
5132
|
function t1(t, r, n) {
|
|
5126
5133
|
if (t = ve(t), t && (n || r === p))
|
|
5127
5134
|
return ft(t);
|
|
5128
|
-
if (!t || !(r =
|
|
5135
|
+
if (!t || !(r = yt(r)))
|
|
5129
5136
|
return t;
|
|
5130
5137
|
var o = nt(t), l = nt(r);
|
|
5131
5138
|
return Du(o, uu(o, l), ie(o, l) + 1).join("");
|
|
@@ -5133,7 +5140,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5133
5140
|
function u1(t, r, n) {
|
|
5134
5141
|
if (t = ve(t), t && (n || r === p))
|
|
5135
5142
|
return t.slice(0, ru(t) + 1);
|
|
5136
|
-
if (!t || !(r =
|
|
5143
|
+
if (!t || !(r = yt(r)))
|
|
5137
5144
|
return t;
|
|
5138
5145
|
var o = nt(t);
|
|
5139
5146
|
return Du(o, 0, ie(o, nt(r)) + 1).join("");
|
|
@@ -5141,7 +5148,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5141
5148
|
function r1(t, r, n) {
|
|
5142
5149
|
if (t = ve(t), t && (n || r === p))
|
|
5143
5150
|
return t.replace(Un, "");
|
|
5144
|
-
if (!t || !(r =
|
|
5151
|
+
if (!t || !(r = yt(r)))
|
|
5145
5152
|
return t;
|
|
5146
5153
|
var o = nt(t);
|
|
5147
5154
|
return Du(o, uu(o, nt(r))).join("");
|
|
@@ -5150,7 +5157,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5150
5157
|
var n = U0, o = q0;
|
|
5151
5158
|
if (Ue(r)) {
|
|
5152
5159
|
var l = "separator" in r ? r.separator : l;
|
|
5153
|
-
n = "length" in r ? De(r.length) : n, o = "omission" in r ?
|
|
5160
|
+
n = "length" in r ? De(r.length) : n, o = "omission" in r ? yt(r.omission) : o;
|
|
5154
5161
|
}
|
|
5155
5162
|
t = ve(t);
|
|
5156
5163
|
var f = t.length;
|
|
@@ -5170,10 +5177,10 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5170
5177
|
if (t.slice(T).search(l)) {
|
|
5171
5178
|
var k, S = I;
|
|
5172
5179
|
for (l.global || (l = Si(l.source, ve(Fs.exec(l)) + "g")), l.lastIndex = 0; k = l.exec(S); )
|
|
5173
|
-
var
|
|
5174
|
-
I = I.slice(0,
|
|
5180
|
+
var M = k.index;
|
|
5181
|
+
I = I.slice(0, M === p ? T : M);
|
|
5175
5182
|
}
|
|
5176
|
-
} else if (t.indexOf(
|
|
5183
|
+
} else if (t.indexOf(yt(l), T) != T) {
|
|
5177
5184
|
var X = I.lastIndexOf(l);
|
|
5178
5185
|
X > -1 && (I = I.slice(0, X));
|
|
5179
5186
|
}
|
|
@@ -5183,10 +5190,10 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5183
5190
|
return t = ve(t), t && n2.test(t) ? t.replace(Ss, sd) : t;
|
|
5184
5191
|
}
|
|
5185
5192
|
function Ic(t, r, n) {
|
|
5186
|
-
return t = ve(t), r = n ? p : r, r === p ?
|
|
5193
|
+
return t = ve(t), r = n ? p : r, r === p ? It(t) ? F0(t) : w(t) : t.match(r) || [];
|
|
5187
5194
|
}
|
|
5188
5195
|
function i1(t) {
|
|
5189
|
-
var r = t == null ? 0 : t.length, n =
|
|
5196
|
+
var r = t == null ? 0 : t.length, n = de();
|
|
5190
5197
|
return t = r ? P(t, function(o) {
|
|
5191
5198
|
if (typeof o[1] != "function")
|
|
5192
5199
|
throw new Ut(Ot);
|
|
@@ -5275,13 +5282,13 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5275
5282
|
if (t = De(t), t < 1 || t > mu)
|
|
5276
5283
|
return [];
|
|
5277
5284
|
var n = Kt, o = ot(t, Kt);
|
|
5278
|
-
r =
|
|
5285
|
+
r = de(r), t -= Kt;
|
|
5279
5286
|
for (var l = Ce(o, r); ++n < t; )
|
|
5280
5287
|
r(n);
|
|
5281
5288
|
return l;
|
|
5282
5289
|
}
|
|
5283
5290
|
function m1(t) {
|
|
5284
|
-
return be(t) ? P(t, $t) :
|
|
5291
|
+
return be(t) ? P(t, $t) : Bt(t) ? [t] : mt(Wc(ve(t)));
|
|
5285
5292
|
}
|
|
5286
5293
|
function b1(t) {
|
|
5287
5294
|
var r = ++v1;
|
|
@@ -5291,25 +5298,25 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5291
5298
|
return t && t.length ? ga(t, Dt, Jn) : p;
|
|
5292
5299
|
}
|
|
5293
5300
|
function D1(t, r) {
|
|
5294
|
-
return t && t.length ? ga(t,
|
|
5301
|
+
return t && t.length ? ga(t, de(r, 2), Jn) : p;
|
|
5295
5302
|
}
|
|
5296
5303
|
function C1(t) {
|
|
5297
|
-
return
|
|
5304
|
+
return Ee(t, Dt);
|
|
5298
5305
|
}
|
|
5299
5306
|
function _1(t, r) {
|
|
5300
|
-
return
|
|
5307
|
+
return Ee(t, de(r, 2));
|
|
5301
5308
|
}
|
|
5302
5309
|
function N1(t) {
|
|
5303
5310
|
return t && t.length ? ga(t, Dt, ui) : p;
|
|
5304
5311
|
}
|
|
5305
5312
|
function I1(t, r) {
|
|
5306
|
-
return t && t.length ? ga(t,
|
|
5313
|
+
return t && t.length ? ga(t, de(r, 2), ui) : p;
|
|
5307
5314
|
}
|
|
5308
5315
|
function y1(t) {
|
|
5309
5316
|
return t && t.length ? Ve(t, Dt) : 0;
|
|
5310
5317
|
}
|
|
5311
5318
|
function B1(t, r) {
|
|
5312
|
-
return t && t.length ? Ve(t,
|
|
5319
|
+
return t && t.length ? Ve(t, de(r, 2)) : 0;
|
|
5313
5320
|
}
|
|
5314
5321
|
L = L == null ? it : tr.defaults(it.Object(), L, tr.pick(it, X2));
|
|
5315
5322
|
var Ke = L.Array, Fa = L.Date, Li = L.Error, Bc = L.Function, ir = L.Math, Pe = L.Object, Si = L.RegExp, x1 = L.String, Ut = L.TypeError, Pa = Ke.prototype, R1 = Bc.prototype, sr = Pe.prototype, wa = L["__core-js_shared__"], Ma = R1.toString, Le = sr.hasOwnProperty, v1 = 0, xc = function() {
|
|
@@ -5387,7 +5394,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5387
5394
|
return Ge(t) ? Br(t, st(r, 1, Ge, !0)) : [];
|
|
5388
5395
|
}), $1 = Ne(function(t, r) {
|
|
5389
5396
|
var n = Mt(r);
|
|
5390
|
-
return Ge(n) && (n = p), Ge(t) ? Br(t, st(r, 1, Ge, !0),
|
|
5397
|
+
return Ge(n) && (n = p), Ge(t) ? Br(t, st(r, 1, Ge, !0), de(n, 2)) : [];
|
|
5391
5398
|
}), eE = Ne(function(t, r) {
|
|
5392
5399
|
var n = Mt(r);
|
|
5393
5400
|
return Ge(n) && (n = p), Ge(t) ? Br(t, st(r, 1, Ge, !0), p, n) : [];
|
|
@@ -5396,7 +5403,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5396
5403
|
return r.length && r[0] === t[0] ? $n(r) : [];
|
|
5397
5404
|
}), uE = Ne(function(t) {
|
|
5398
5405
|
var r = Mt(t), n = P(t, ci);
|
|
5399
|
-
return r === Mt(n) ? r = p : n.pop(), n.length && n[0] === t[0] ? $n(n,
|
|
5406
|
+
return r === Mt(n) ? r = p : n.pop(), n.length && n[0] === t[0] ? $n(n, de(r, 2)) : [];
|
|
5400
5407
|
}), rE = Ne(function(t) {
|
|
5401
5408
|
var r = Mt(t), n = P(t, ci);
|
|
5402
5409
|
return r = typeof r == "function" ? r : p, r && n.pop(), n.length && n[0] === t[0] ? $n(n, p, r) : [];
|
|
@@ -5409,7 +5416,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5409
5416
|
return bu(st(t, 1, Ge, !0));
|
|
5410
5417
|
}), sE = Ne(function(t) {
|
|
5411
5418
|
var r = Mt(t);
|
|
5412
|
-
return Ge(r) && (r = p), bu(st(t, 1, Ge, !0),
|
|
5419
|
+
return Ge(r) && (r = p), bu(st(t, 1, Ge, !0), de(r, 2));
|
|
5413
5420
|
}), oE = Ne(function(t) {
|
|
5414
5421
|
var r = Mt(t);
|
|
5415
5422
|
return r = typeof r == "function" ? r : p, bu(st(t, 1, Ge, !0), p, r);
|
|
@@ -5419,7 +5426,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5419
5426
|
return oi(x(t, Ge));
|
|
5420
5427
|
}), dE = Ne(function(t) {
|
|
5421
5428
|
var r = Mt(t);
|
|
5422
|
-
return Ge(r) && (r = p), oi(x(t, Ge),
|
|
5429
|
+
return Ge(r) && (r = p), oi(x(t, Ge), de(r, 2));
|
|
5423
5430
|
}), hE = Ne(function(t) {
|
|
5424
5431
|
var r = Mt(t);
|
|
5425
5432
|
return r = typeof r == "function" ? r : p, oi(x(t, Ge), p, r);
|
|
@@ -5476,7 +5483,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5476
5483
|
});
|
|
5477
5484
|
La.Cache = su;
|
|
5478
5485
|
var yE = X1(function(t, r) {
|
|
5479
|
-
r = r.length == 1 && be(r[0]) ? P(r[0], He(
|
|
5486
|
+
r = r.length == 1 && be(r[0]) ? P(r[0], He(de())) : P(st(r, 1), He(de()));
|
|
5480
5487
|
var n = r.length;
|
|
5481
5488
|
return Ne(function(o) {
|
|
5482
5489
|
for (var l = -1, f = ot(o.length, n); ++l < f; )
|
|
@@ -5523,7 +5530,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5523
5530
|
r != null && typeof r.toString != "function" && (r = Ha.call(r)), t[r] = n;
|
|
5524
5531
|
}, Ii(Dt)), UE = qo(function(t, r, n) {
|
|
5525
5532
|
r != null && typeof r.toString != "function" && (r = Ha.call(r)), Le.call(t, r) ? t[r].push(n) : t[r] = [n];
|
|
5526
|
-
},
|
|
5533
|
+
}, de), qE = Ne(xr), WE = ur(function(t, r, n) {
|
|
5527
5534
|
ma(t, r, n);
|
|
5528
5535
|
}), jc = ur(function(t, r, n, o) {
|
|
5529
5536
|
ma(t, r, n, o);
|
|
@@ -5570,7 +5577,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5570
5577
|
return function(n) {
|
|
5571
5578
|
return xr(t, n, r);
|
|
5572
5579
|
};
|
|
5573
|
-
}), rg = hi(P), ag = hi(N), ng = hi(
|
|
5580
|
+
}), rg = hi(P), ag = hi(N), ng = hi(q), ig = Wo(), sg = Wo(!0), og = _a(function(t, r) {
|
|
5574
5581
|
return t + r;
|
|
5575
5582
|
}, 0), cg = fi("ceil"), lg = _a(function(t, r) {
|
|
5576
5583
|
return t / r;
|
|
@@ -5579,7 +5586,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5579
5586
|
}, 1), fg = fi("round"), Ag = _a(function(t, r) {
|
|
5580
5587
|
return t - r;
|
|
5581
5588
|
}, 0);
|
|
5582
|
-
return c.after = Uf, c.ary = hc, c.assign = kE, c.assignIn = zc, c.assignInWith = Ka, c.assignWith = FE, c.at = PE, c.before = fc, c.bind = Ui, c.bindAll = JE, c.bindKey = Qc, c.castArray = jf, c.chain = cc, c.chunk = Sh, c.compact = Oh, c.concat = kh, c.cond = i1, c.conforms = s1, c.constant = Ii, c.countBy = gE, c.create = pA, c.curry = Ac, c.curryRight = Ec, c.debounce = gc, c.defaults = wE, c.defaultsDeep = ME, c.defer = NE, c.delay = IE, c.difference = J1, c.differenceBy = $1, c.differenceWith = eE, c.drop = Fh, c.dropRight = Ph, c.dropRightWhile = wh, c.dropWhile = Mh, c.fill = Hh, c.filter = yf, c.flatMap = Bf, c.flatMapDeep = xf, c.flatMapDepth = Rf, c.flatten = nc, c.flattenDeep = Uh, c.flattenDepth = qh, c.flip = qf, c.flow = $E, c.flowRight = eg, c.fromPairs = Wh, c.functions = NA, c.functionsIn = IA, c.groupBy = bE, c.initial = Vh, c.intersection = tE, c.intersectionBy = uE, c.intersectionWith = rE, c.invert = HE, c.invertBy = UE, c.invokeMap = TE, c.iteratee = yi, c.keyBy = DE, c.keys = $e, c.keysIn = Tt, c.map = va, c.mapKeys = BA, c.mapValues = xA, c.matches = c1, c.matchesProperty = l1, c.memoize = La, c.merge = WE, c.mergeWith = jc, c.method = tg, c.methodOf = ug, c.mixin = Bi, c.negate = Sa, c.nthArg = h1, c.omit = QE, c.omitBy = RA, c.once = Wf, c.orderBy = Lf, c.over = rg, c.overArgs = yE, c.overEvery = ag, c.overSome = ng, c.partial = qi, c.partialRight = Vc, c.partition = CE, c.pick = VE, c.pickBy = Cc, c.property = yc, c.propertyOf = f1, c.pull = aE, c.pullAll = sc, c.pullAllBy = jh, c.pullAllWith = Xh, c.pullAt = nE, c.range = ig, c.rangeRight = sg, c.rearg = BE, c.reject = kf, c.remove = Kh, c.rest = Qf, c.reverse = Ti, c.sampleSize = Pf, c.set = LA, c.setWith = SA, c.shuffle = wf, c.slice = Zh, c.sortBy = _E, c.sortedUniq = af, c.sortedUniqBy = nf, c.split = KA, c.spread = Vf, c.tail = sf, c.take = of, c.takeRight = cf, c.takeRightWhile = lf, c.takeWhile = df, c.tap = pf, c.throttle = Gf, c.thru = Ra, c.toArray = bc, c.toPairs = Xc, c.toPairsIn = Kc, c.toPath = m1, c.toPlainObject = Dc, c.transform = OA, c.unary = Yf, c.union = iE, c.unionBy = sE, c.unionWith = oE, c.uniq = hf, c.uniqBy = ff, c.uniqWith = Af, c.unset = kA, c.unzip = Di, c.unzipWith = oc, c.update = FA, c.updateWith = PA, c.values = nr, c.valuesIn = wA, c.without = cE, c.words = Ic, c.wrap = zf, c.xor = lE, c.xorBy = dE, c.xorWith = hE, c.zip = fE, c.zipObject = Ef, c.zipObjectDeep = gf, c.zipWith = AE, c.entries = Xc, c.entriesIn = Kc, c.extend = zc, c.extendWith = Ka, Bi(c, c), c.add = og, c.attempt = Zc, c.camelCase = GE, c.capitalize = _c, c.ceil = cg, c.clamp = MA, c.clone = Xf, c.cloneDeep = Zf, c.cloneDeepWith = Jf, c.cloneWith = Kf, c.conformsTo = $f, c.deburr = Nc, c.defaultTo = o1, c.divide = lg, c.endsWith = qA, c.eq = Gt, c.escape = WA, c.escapeRegExp = QA, c.every = If, c.find = pE, c.findIndex = rc, c.findKey = mA, c.findLast = mE, c.findLastIndex = ac, c.findLastKey = bA, c.floor = dg, c.forEach = lc, c.forEachRight = dc, c.forIn = TA, c.forInRight = DA, c.forOwn = CA, c.forOwnRight = _A, c.get = _i, c.gt = xE, c.gte = RE, c.has = yA, c.hasIn = Ni, c.head = ic, c.identity = Dt, c.includes = vf, c.indexOf = Qh, c.inRange = HA, c.invoke = qE, c.isArguments = Wu, c.isArray = be, c.isArrayBuffer = vE, c.isArrayLike = bt, c.isArrayLikeObject = Ge, c.isBoolean = eA, c.isBuffer = Nu, c.isDate = LE, c.isElement = tA, c.isEmpty = uA, c.isEqual = rA, c.isEqualWith = aA, c.isError = Ci, c.isFinite = nA, c.isFunction = hu, c.isInteger = pc, c.isLength = Oa, c.isMap = Gc, c.isMatch = iA, c.isMatchWith = sA, c.isNaN = oA, c.isNative = cA, c.isNil = dA, c.isNull = lA, c.isNumber = mc, c.isObject = Ue, c.isObjectLike = qe, c.isPlainObject = Or, c.isRegExp = Wi, c.isSafeInteger = hA, c.isSet = Yc, c.isString = ka, c.isSymbol =
|
|
5589
|
+
return c.after = Uf, c.ary = hc, c.assign = kE, c.assignIn = zc, c.assignInWith = Ka, c.assignWith = FE, c.at = PE, c.before = fc, c.bind = Ui, c.bindAll = JE, c.bindKey = Qc, c.castArray = jf, c.chain = cc, c.chunk = Sh, c.compact = Oh, c.concat = kh, c.cond = i1, c.conforms = s1, c.constant = Ii, c.countBy = gE, c.create = pA, c.curry = Ac, c.curryRight = Ec, c.debounce = gc, c.defaults = wE, c.defaultsDeep = ME, c.defer = NE, c.delay = IE, c.difference = J1, c.differenceBy = $1, c.differenceWith = eE, c.drop = Fh, c.dropRight = Ph, c.dropRightWhile = wh, c.dropWhile = Mh, c.fill = Hh, c.filter = yf, c.flatMap = Bf, c.flatMapDeep = xf, c.flatMapDepth = Rf, c.flatten = nc, c.flattenDeep = Uh, c.flattenDepth = qh, c.flip = qf, c.flow = $E, c.flowRight = eg, c.fromPairs = Wh, c.functions = NA, c.functionsIn = IA, c.groupBy = bE, c.initial = Vh, c.intersection = tE, c.intersectionBy = uE, c.intersectionWith = rE, c.invert = HE, c.invertBy = UE, c.invokeMap = TE, c.iteratee = yi, c.keyBy = DE, c.keys = $e, c.keysIn = Tt, c.map = va, c.mapKeys = BA, c.mapValues = xA, c.matches = c1, c.matchesProperty = l1, c.memoize = La, c.merge = WE, c.mergeWith = jc, c.method = tg, c.methodOf = ug, c.mixin = Bi, c.negate = Sa, c.nthArg = h1, c.omit = QE, c.omitBy = RA, c.once = Wf, c.orderBy = Lf, c.over = rg, c.overArgs = yE, c.overEvery = ag, c.overSome = ng, c.partial = qi, c.partialRight = Vc, c.partition = CE, c.pick = VE, c.pickBy = Cc, c.property = yc, c.propertyOf = f1, c.pull = aE, c.pullAll = sc, c.pullAllBy = jh, c.pullAllWith = Xh, c.pullAt = nE, c.range = ig, c.rangeRight = sg, c.rearg = BE, c.reject = kf, c.remove = Kh, c.rest = Qf, c.reverse = Ti, c.sampleSize = Pf, c.set = LA, c.setWith = SA, c.shuffle = wf, c.slice = Zh, c.sortBy = _E, c.sortedUniq = af, c.sortedUniqBy = nf, c.split = KA, c.spread = Vf, c.tail = sf, c.take = of, c.takeRight = cf, c.takeRightWhile = lf, c.takeWhile = df, c.tap = pf, c.throttle = Gf, c.thru = Ra, c.toArray = bc, c.toPairs = Xc, c.toPairsIn = Kc, c.toPath = m1, c.toPlainObject = Dc, c.transform = OA, c.unary = Yf, c.union = iE, c.unionBy = sE, c.unionWith = oE, c.uniq = hf, c.uniqBy = ff, c.uniqWith = Af, c.unset = kA, c.unzip = Di, c.unzipWith = oc, c.update = FA, c.updateWith = PA, c.values = nr, c.valuesIn = wA, c.without = cE, c.words = Ic, c.wrap = zf, c.xor = lE, c.xorBy = dE, c.xorWith = hE, c.zip = fE, c.zipObject = Ef, c.zipObjectDeep = gf, c.zipWith = AE, c.entries = Xc, c.entriesIn = Kc, c.extend = zc, c.extendWith = Ka, Bi(c, c), c.add = og, c.attempt = Zc, c.camelCase = GE, c.capitalize = _c, c.ceil = cg, c.clamp = MA, c.clone = Xf, c.cloneDeep = Zf, c.cloneDeepWith = Jf, c.cloneWith = Kf, c.conformsTo = $f, c.deburr = Nc, c.defaultTo = o1, c.divide = lg, c.endsWith = qA, c.eq = Gt, c.escape = WA, c.escapeRegExp = QA, c.every = If, c.find = pE, c.findIndex = rc, c.findKey = mA, c.findLast = mE, c.findLastIndex = ac, c.findLastKey = bA, c.floor = dg, c.forEach = lc, c.forEachRight = dc, c.forIn = TA, c.forInRight = DA, c.forOwn = CA, c.forOwnRight = _A, c.get = _i, c.gt = xE, c.gte = RE, c.has = yA, c.hasIn = Ni, c.head = ic, c.identity = Dt, c.includes = vf, c.indexOf = Qh, c.inRange = HA, c.invoke = qE, c.isArguments = Wu, c.isArray = be, c.isArrayBuffer = vE, c.isArrayLike = bt, c.isArrayLikeObject = Ge, c.isBoolean = eA, c.isBuffer = Nu, c.isDate = LE, c.isElement = tA, c.isEmpty = uA, c.isEqual = rA, c.isEqualWith = aA, c.isError = Ci, c.isFinite = nA, c.isFunction = hu, c.isInteger = pc, c.isLength = Oa, c.isMap = Gc, c.isMatch = iA, c.isMatchWith = sA, c.isNaN = oA, c.isNative = cA, c.isNil = dA, c.isNull = lA, c.isNumber = mc, c.isObject = Ue, c.isObjectLike = qe, c.isPlainObject = Or, c.isRegExp = Wi, c.isSafeInteger = hA, c.isSet = Yc, c.isString = ka, c.isSymbol = Bt, c.isTypedArray = dr, c.isUndefined = fA, c.isWeakMap = AA, c.isWeakSet = EA, c.join = Gh, c.kebabCase = YE, c.last = Mt, c.lastIndexOf = Yh, c.lowerCase = zE, c.lowerFirst = jE, c.lt = SE, c.lte = OE, c.max = T1, c.maxBy = D1, c.mean = C1, c.meanBy = _1, c.min = N1, c.minBy = I1, c.stubArray = Ri, c.stubFalse = vi, c.stubObject = A1, c.stubString = E1, c.stubTrue = g1, c.multiply = hg, c.nth = zh, c.noConflict = d1, c.noop = xi, c.now = Xa, c.pad = VA, c.padEnd = GA, c.padStart = YA, c.parseInt = zA, c.random = UA, c.reduce = Sf, c.reduceRight = Of, c.repeat = jA, c.replace = XA, c.result = vA, c.round = fg, c.runInContext = C, c.sample = Ff, c.size = Mf, c.snakeCase = XE, c.some = Hf, c.sortedIndex = Jh, c.sortedIndexBy = $h, c.sortedIndexOf = ef, c.sortedLastIndex = tf, c.sortedLastIndexBy = uf, c.sortedLastIndexOf = rf, c.startCase = KE, c.startsWith = ZA, c.subtract = Ag, c.sum = y1, c.sumBy = B1, c.template = JA, c.times = p1, c.toFinite = fu, c.toInteger = De, c.toLength = Tc, c.toLower = $A, c.toNumber = Ht, c.toSafeInteger = gA, c.toString = ve, c.toUpper = e1, c.trim = t1, c.trimEnd = u1, c.trimStart = r1, c.truncate = a1, c.unescape = n1, c.uniqueId = b1, c.upperCase = ZE, c.upperFirst = Qi, c.each = lc, c.eachRight = dc, c.first = ic, Bi(c, function() {
|
|
5583
5590
|
var t = {};
|
|
5584
5591
|
return Zt(c, function(r, n) {
|
|
5585
5592
|
Le.call(c.prototype, n) || (t[n] = r);
|
|
@@ -5598,7 +5605,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5598
5605
|
var n = r + 1, o = n == Rs || n == G0;
|
|
5599
5606
|
Z.prototype[t] = function(l) {
|
|
5600
5607
|
var f = this.clone();
|
|
5601
|
-
return f.__iteratees__.push({ iteratee:
|
|
5608
|
+
return f.__iteratees__.push({ iteratee: de(l, 3), type: n }), f.__filtered__ = f.__filtered__ || o, f;
|
|
5602
5609
|
};
|
|
5603
5610
|
}), d(["head", "last"], function(t, r) {
|
|
5604
5611
|
var n = "take" + (r ? "Right" : "");
|
|
@@ -5621,7 +5628,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5621
5628
|
return xr(n, t, r);
|
|
5622
5629
|
});
|
|
5623
5630
|
}), Z.prototype.reject = function(t) {
|
|
5624
|
-
return this.filter(Sa(
|
|
5631
|
+
return this.filter(Sa(de(t)));
|
|
5625
5632
|
}, Z.prototype.slice = function(t, r) {
|
|
5626
5633
|
t = De(t);
|
|
5627
5634
|
var n = this;
|
|
@@ -5633,7 +5640,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5633
5640
|
}, Zt(Z.prototype, function(t, r) {
|
|
5634
5641
|
var n = /^(?:filter|find|map|reject)|While$/.test(r), o = /^(?:head|last)$/.test(r), l = c[o ? "take" + (r == "last" ? "Right" : "") : r], f = o || /^find/.test(r);
|
|
5635
5642
|
l && (c.prototype[r] = function() {
|
|
5636
|
-
var b = this.__wrapped__, T = o ? [1] : arguments, I = b instanceof Z, k = T[0], S = I || be(b),
|
|
5643
|
+
var b = this.__wrapped__, T = o ? [1] : arguments, I = b instanceof Z, k = T[0], S = I || be(b), M = function(Ie) {
|
|
5637
5644
|
var ye = l.apply(c, U([Ie], T));
|
|
5638
5645
|
return o && X ? ye[0] : ye;
|
|
5639
5646
|
};
|
|
@@ -5642,9 +5649,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5642
5649
|
if (!f && S) {
|
|
5643
5650
|
b = Te ? b : new Z(this);
|
|
5644
5651
|
var se = t.apply(b, T);
|
|
5645
|
-
return se.__actions__.push({ func: Ra, args: [
|
|
5652
|
+
return se.__actions__.push({ func: Ra, args: [M], thisArg: p }), new ce(se, X);
|
|
5646
5653
|
}
|
|
5647
|
-
return ae && Te ? t.apply(this, T) : (se = this.thru(
|
|
5654
|
+
return ae && Te ? t.apply(this, T) : (se = this.thru(M), ae ? o ? se.value()[0] : se.value() : se);
|
|
5648
5655
|
});
|
|
5649
5656
|
}), d(["pop", "push", "shift", "sort", "splice", "unshift"], function(t) {
|
|
5650
5657
|
var r = Pa[t], n = /^(?:push|sort|unshift)$/.test(t) ? "tap" : "thru", o = /^(?:pop|shift)$/.test(t);
|
|
@@ -6228,7 +6235,7 @@ function as(e, u, a, s) {
|
|
|
6228
6235
|
fixed: "fixed" in s ? s.fixed : !0,
|
|
6229
6236
|
immutable: "immutable" in s ? s.immutable : !0,
|
|
6230
6237
|
rearg: "rearg" in s ? s.rearg : !0
|
|
6231
|
-
}, x = d ? a : Lp, v = "curry" in s && s.curry,
|
|
6238
|
+
}, x = d ? a : Lp, v = "curry" in s && s.curry, Q = "fixed" in s && s.fixed, P = "rearg" in s && s.rearg, U = d ? a.runInContext() : void 0, _ = d ? a : {
|
|
6232
6239
|
ary: e.ary,
|
|
6233
6240
|
assign: e.assign,
|
|
6234
6241
|
clone: e.clone,
|
|
@@ -6243,11 +6250,11 @@ function as(e, u, a, s) {
|
|
|
6243
6250
|
rearg: e.rearg,
|
|
6244
6251
|
toInteger: e.toInteger,
|
|
6245
6252
|
toPath: e.toPath
|
|
6246
|
-
},
|
|
6253
|
+
}, B = _.ary, q = _.assign, V = _.clone, w = _.curry, W = _.forEach, le = _.isArray, he = _.isError, ge = _.isFunction, j = _.isWeakMap, Ee = _.keys, pe = _.rearg, oe = _.toInteger, ee = _.toPath, re = Ee(Je.aryMethod), Ve = {
|
|
6247
6254
|
castArray: function(te) {
|
|
6248
6255
|
return function() {
|
|
6249
6256
|
var Y = arguments[0];
|
|
6250
|
-
return
|
|
6257
|
+
return le(Y) ? te(hl(Y)) : te.apply(void 0, arguments);
|
|
6251
6258
|
};
|
|
6252
6259
|
},
|
|
6253
6260
|
iteratee: function(te) {
|
|
@@ -6262,9 +6269,9 @@ function as(e, u, a, s) {
|
|
|
6262
6269
|
if (!ge(G))
|
|
6263
6270
|
return te(G, Object(Y));
|
|
6264
6271
|
var ue = [];
|
|
6265
|
-
return
|
|
6272
|
+
return W(Ee(Y), function(me) {
|
|
6266
6273
|
ge(Y[me]) && ue.push([me, G.prototype[me]]);
|
|
6267
|
-
}), te(G, Object(Y)),
|
|
6274
|
+
}), te(G, Object(Y)), W(ue, function(me) {
|
|
6268
6275
|
var Ye = me[1];
|
|
6269
6276
|
ge(Ye) ? G.prototype[me[0]] = Ye : delete G.prototype[me[0]];
|
|
6270
6277
|
}), G;
|
|
@@ -6273,13 +6280,13 @@ function as(e, u, a, s) {
|
|
|
6273
6280
|
nthArg: function(te) {
|
|
6274
6281
|
return function(Y) {
|
|
6275
6282
|
var G = Y < 0 ? 1 : oe(Y) + 1;
|
|
6276
|
-
return
|
|
6283
|
+
return w(te(Y), G);
|
|
6277
6284
|
};
|
|
6278
6285
|
},
|
|
6279
6286
|
rearg: function(te) {
|
|
6280
6287
|
return function(Y, G) {
|
|
6281
6288
|
var ue = G ? G.length : 0;
|
|
6282
|
-
return
|
|
6289
|
+
return w(te(Y, G), ue);
|
|
6283
6290
|
};
|
|
6284
6291
|
},
|
|
6285
6292
|
runInContext: function(te) {
|
|
@@ -6300,12 +6307,12 @@ function as(e, u, a, s) {
|
|
|
6300
6307
|
return Y;
|
|
6301
6308
|
}
|
|
6302
6309
|
function _e(te, Y, G) {
|
|
6303
|
-
return v || N.curry && G > 1 ?
|
|
6310
|
+
return v || N.curry && G > 1 ? w(Y, G) : Y;
|
|
6304
6311
|
}
|
|
6305
6312
|
function ft(te, Y, G) {
|
|
6306
|
-
if (N.fixed && (
|
|
6313
|
+
if (N.fixed && (Q || !Je.skipFixed[te])) {
|
|
6307
6314
|
var ue = Je.methodSpread[te], me = ue && ue.start;
|
|
6308
|
-
return me === void 0 ?
|
|
6315
|
+
return me === void 0 ? B(Y, G) : kp(Y, me);
|
|
6309
6316
|
}
|
|
6310
6317
|
return Y;
|
|
6311
6318
|
}
|
|
@@ -6314,9 +6321,9 @@ function as(e, u, a, s) {
|
|
|
6314
6321
|
}
|
|
6315
6322
|
function tu(te, Y) {
|
|
6316
6323
|
Y = ee(Y);
|
|
6317
|
-
for (var G = -1, ue = Y.length, me = ue - 1, Ye =
|
|
6324
|
+
for (var G = -1, ue = Y.length, me = ue - 1, Ye = V(Object(te)), at = Ye; at != null && ++G < ue; ) {
|
|
6318
6325
|
var Xe = Y[G], ze = at[Xe];
|
|
6319
|
-
ze != null && !(ge(ze) || he(ze) || j(ze)) && (at[Xe] =
|
|
6326
|
+
ze != null && !(ge(ze) || he(ze) || j(ze)) && (at[Xe] = V(G == me ? ze : Object(ze))), at = at[Xe];
|
|
6320
6327
|
}
|
|
6321
6328
|
return Ye;
|
|
6322
6329
|
}
|
|
@@ -6326,7 +6333,7 @@ function as(e, u, a, s) {
|
|
|
6326
6333
|
function uu(te, Y) {
|
|
6327
6334
|
var G = Je.aliasToReal[te] || te, ue = Je.remap[G] || G, me = s;
|
|
6328
6335
|
return function(Ye) {
|
|
6329
|
-
var at = d ? U : _, Xe = d ? U[ue] : Y, ze =
|
|
6336
|
+
var at = d ? U : _, Xe = d ? U[ue] : Y, ze = q(q({}, me), Ye);
|
|
6330
6337
|
return as(at, G, Xe, ze);
|
|
6331
6338
|
};
|
|
6332
6339
|
}
|
|
@@ -6354,37 +6361,37 @@ function as(e, u, a, s) {
|
|
|
6354
6361
|
}
|
|
6355
6362
|
function rt(te, Y, G) {
|
|
6356
6363
|
var ue, me = Je.aliasToReal[te] || te, Ye = Y, at = Ve[me];
|
|
6357
|
-
return at ? Ye = at(Y) : N.immutable && (Je.mutate.array[me] ? Ye = ji(Y, hl) : Je.mutate.object[me] ? Ye = ji(Y, Op(Y)) : Je.mutate.set[me] && (Ye = ji(Y, tu))),
|
|
6358
|
-
return
|
|
6364
|
+
return at ? Ye = at(Y) : N.immutable && (Je.mutate.array[me] ? Ye = ji(Y, hl) : Je.mutate.object[me] ? Ye = ji(Y, Op(Y)) : Je.mutate.set[me] && (Ye = ji(Y, tu))), W(re, function(Xe) {
|
|
6365
|
+
return W(Je.aryMethod[Xe], function(ze) {
|
|
6359
6366
|
if (me == ze) {
|
|
6360
6367
|
var nt = Je.methodSpread[me], ru = nt && nt.afterRearg;
|
|
6361
6368
|
return ue = ru ? ft(me, He(me, Ye, Xe), Xe) : He(me, ft(me, Ye, Xe), Xe), ue = Ce(me, ue), ue = _e(me, ue, Xe), !1;
|
|
6362
6369
|
}
|
|
6363
6370
|
}), !ue;
|
|
6364
|
-
}), ue || (ue = Ye), ue == Y && (ue = v ?
|
|
6371
|
+
}), ue || (ue = Ye), ue == Y && (ue = v ? w(ue, 1) : function() {
|
|
6365
6372
|
return Y.apply(this, arguments);
|
|
6366
6373
|
}), ue.convert = uu(me, Y), ue.placeholder = Y.placeholder = G, ue;
|
|
6367
6374
|
}
|
|
6368
6375
|
if (!g)
|
|
6369
6376
|
return rt(u, a, x);
|
|
6370
|
-
var Se = a,
|
|
6371
|
-
return
|
|
6372
|
-
|
|
6377
|
+
var Se = a, It = [];
|
|
6378
|
+
return W(re, function(te) {
|
|
6379
|
+
W(Je.aryMethod[te], function(Y) {
|
|
6373
6380
|
var G = Se[Je.remap[Y] || Y];
|
|
6374
|
-
G &&
|
|
6381
|
+
G && It.push([Y, rt(Y, G, Se)]);
|
|
6375
6382
|
});
|
|
6376
|
-
}),
|
|
6383
|
+
}), W(Ee(Se), function(te) {
|
|
6377
6384
|
var Y = Se[te];
|
|
6378
6385
|
if (typeof Y == "function") {
|
|
6379
|
-
for (var G =
|
|
6380
|
-
if (
|
|
6386
|
+
for (var G = It.length; G--; )
|
|
6387
|
+
if (It[G][0] == te)
|
|
6381
6388
|
return;
|
|
6382
|
-
Y.convert = uu(te, Y),
|
|
6389
|
+
Y.convert = uu(te, Y), It.push([te, Y]);
|
|
6383
6390
|
}
|
|
6384
|
-
}),
|
|
6391
|
+
}), W(It, function(te) {
|
|
6385
6392
|
Se[te[0]] = te[1];
|
|
6386
|
-
}), Se.convert = At, Se.placeholder = Se,
|
|
6387
|
-
|
|
6393
|
+
}), Se.convert = At, Se.placeholder = Se, W(Ee(Se), function(te) {
|
|
6394
|
+
W(Je.realToAlias[te] || [], function(Y) {
|
|
6388
6395
|
Se[Y] = Se[te];
|
|
6389
6396
|
});
|
|
6390
6397
|
}), Se;
|
|
@@ -6783,7 +6790,7 @@ class ln extends we {
|
|
|
6783
6790
|
}, d);
|
|
6784
6791
|
}
|
|
6785
6792
|
renderElement() {
|
|
6786
|
-
var
|
|
6793
|
+
var w;
|
|
6787
6794
|
const {
|
|
6788
6795
|
src: a,
|
|
6789
6796
|
srcset: s,
|
|
@@ -6791,7 +6798,7 @@ class ln extends we {
|
|
|
6791
6798
|
href: g,
|
|
6792
6799
|
"icon-size": N,
|
|
6793
6800
|
"icon-height": x
|
|
6794
|
-
} = this.getSocialAttributes(), v = !!this.getAttribute("href"),
|
|
6801
|
+
} = this.getSocialAttributes(), v = !!this.getAttribute("href"), Q = this.htmlAttributes({
|
|
6795
6802
|
alt: this.getAttribute("alt"),
|
|
6796
6803
|
title: this.getAttribute("title"),
|
|
6797
6804
|
height: parseInt(x || N, 10),
|
|
@@ -6810,19 +6817,19 @@ class ln extends we {
|
|
|
6810
6817
|
cellspacing: "0",
|
|
6811
6818
|
role: "presentation",
|
|
6812
6819
|
style: "table"
|
|
6813
|
-
}), _ = this.htmlAttributes({ style: "icon" }),
|
|
6820
|
+
}), _ = this.htmlAttributes({ style: "icon" }), B = this.htmlAttributes({ style: "tdText" }), q = (w = this.props.element.children[0]) == null ? void 0 : w.text.trim(), V = /* @__PURE__ */ E.createElement(
|
|
6814
6821
|
"tr",
|
|
6815
6822
|
D(D({}, this.props.attributes), this.htmlAttributes({
|
|
6816
6823
|
class: this.getAttribute("css-class")
|
|
6817
6824
|
})),
|
|
6818
|
-
/* @__PURE__ */ E.createElement("td", D({}, this.htmlAttributes({ style: "td" })), /* @__PURE__ */ E.createElement("table", D({}, U), /* @__PURE__ */ E.createElement("tbody", null, /* @__PURE__ */ E.createElement("tr", null, /* @__PURE__ */ E.createElement("td", D({}, _), v ? /* @__PURE__ */ E.createElement("a", D({}, P), /* @__PURE__ */ E.createElement("img", D({},
|
|
6825
|
+
/* @__PURE__ */ E.createElement("td", D({}, this.htmlAttributes({ style: "td" })), /* @__PURE__ */ E.createElement("table", D({}, U), /* @__PURE__ */ E.createElement("tbody", null, /* @__PURE__ */ E.createElement("tr", null, /* @__PURE__ */ E.createElement("td", D({}, _), v ? /* @__PURE__ */ E.createElement("a", D({}, P), /* @__PURE__ */ E.createElement("img", D({}, Q))) : /* @__PURE__ */ E.createElement("img", D({}, Q))))))),
|
|
6819
6826
|
/* @__PURE__ */ E.createElement(
|
|
6820
6827
|
"td",
|
|
6821
|
-
J(D({},
|
|
6822
|
-
style: J(D({},
|
|
6823
|
-
width:
|
|
6824
|
-
overflow:
|
|
6825
|
-
padding:
|
|
6828
|
+
J(D({}, B), {
|
|
6829
|
+
style: J(D({}, B.style || {}), {
|
|
6830
|
+
width: q ? void 0 : "0px",
|
|
6831
|
+
overflow: q ? void 0 : "hidden",
|
|
6832
|
+
padding: q ? void 0 : "0px"
|
|
6826
6833
|
})
|
|
6827
6834
|
}),
|
|
6828
6835
|
v ? /* @__PURE__ */ E.createElement(
|
|
@@ -6856,8 +6863,8 @@ class ln extends we {
|
|
|
6856
6863
|
display: "inline-table"
|
|
6857
6864
|
}
|
|
6858
6865
|
})),
|
|
6859
|
-
/* @__PURE__ */ E.createElement("tbody", null,
|
|
6860
|
-
) :
|
|
6866
|
+
/* @__PURE__ */ E.createElement("tbody", null, V)
|
|
6867
|
+
) : V;
|
|
6861
6868
|
}
|
|
6862
6869
|
}
|
|
6863
6870
|
F(ln, "endingTag", !0), F(ln, "allowedAttributes", ut.SocialElement), F(ln, "defaultAttributes", D({}, Hp.defaultData.attributes));
|
|
@@ -7781,16 +7788,16 @@ function Gl(e) {
|
|
|
7781
7788
|
let N = 0, x = 0;
|
|
7782
7789
|
for (; (x = d.indexOf("&", x)) >= 0; ) {
|
|
7783
7790
|
u += d.slice(N, x), a.startEntity(g);
|
|
7784
|
-
const
|
|
7791
|
+
const Q = a.write(
|
|
7785
7792
|
d,
|
|
7786
7793
|
// Skip the "&"
|
|
7787
7794
|
x + 1
|
|
7788
7795
|
);
|
|
7789
|
-
if (
|
|
7796
|
+
if (Q < 0) {
|
|
7790
7797
|
N = x + a.end();
|
|
7791
7798
|
break;
|
|
7792
7799
|
}
|
|
7793
|
-
N = x +
|
|
7800
|
+
N = x + Q, x = Q === 0 ? N + 1 : N;
|
|
7794
7801
|
}
|
|
7795
7802
|
const v = u + d.slice(N);
|
|
7796
7803
|
return u = "", v;
|
|
@@ -7806,10 +7813,10 @@ function Yl(e, u, a, s) {
|
|
|
7806
7813
|
}
|
|
7807
7814
|
let N = a, x = N + d - 1;
|
|
7808
7815
|
for (; N <= x; ) {
|
|
7809
|
-
const v = N + x >>> 1,
|
|
7810
|
-
if (
|
|
7816
|
+
const v = N + x >>> 1, Q = e[v];
|
|
7817
|
+
if (Q < s)
|
|
7811
7818
|
N = v + 1;
|
|
7812
|
-
else if (
|
|
7819
|
+
else if (Q > s)
|
|
7813
7820
|
x = v - 1;
|
|
7814
7821
|
else
|
|
7815
7822
|
return e[v + d];
|
|
@@ -7830,137 +7837,137 @@ var Rt;
|
|
|
7830
7837
|
(function(e) {
|
|
7831
7838
|
e.NO_QUIRKS = "no-quirks", e.QUIRKS = "quirks", e.LIMITED_QUIRKS = "limited-quirks";
|
|
7832
7839
|
})(Rt = Rt || (Rt = {}));
|
|
7833
|
-
var
|
|
7840
|
+
var y;
|
|
7834
7841
|
(function(e) {
|
|
7835
7842
|
e.A = "a", e.ADDRESS = "address", e.ANNOTATION_XML = "annotation-xml", e.APPLET = "applet", e.AREA = "area", e.ARTICLE = "article", e.ASIDE = "aside", e.B = "b", e.BASE = "base", e.BASEFONT = "basefont", e.BGSOUND = "bgsound", e.BIG = "big", e.BLOCKQUOTE = "blockquote", e.BODY = "body", e.BR = "br", e.BUTTON = "button", e.CAPTION = "caption", e.CENTER = "center", e.CODE = "code", e.COL = "col", e.COLGROUP = "colgroup", e.DD = "dd", e.DESC = "desc", e.DETAILS = "details", e.DIALOG = "dialog", e.DIR = "dir", e.DIV = "div", e.DL = "dl", e.DT = "dt", e.EM = "em", e.EMBED = "embed", e.FIELDSET = "fieldset", e.FIGCAPTION = "figcaption", e.FIGURE = "figure", e.FONT = "font", e.FOOTER = "footer", e.FOREIGN_OBJECT = "foreignObject", e.FORM = "form", e.FRAME = "frame", e.FRAMESET = "frameset", e.H1 = "h1", e.H2 = "h2", e.H3 = "h3", e.H4 = "h4", e.H5 = "h5", e.H6 = "h6", e.HEAD = "head", e.HEADER = "header", e.HGROUP = "hgroup", e.HR = "hr", e.HTML = "html", e.I = "i", e.IMG = "img", e.IMAGE = "image", e.INPUT = "input", e.IFRAME = "iframe", e.KEYGEN = "keygen", e.LABEL = "label", e.LI = "li", e.LINK = "link", e.LISTING = "listing", e.MAIN = "main", e.MALIGNMARK = "malignmark", e.MARQUEE = "marquee", e.MATH = "math", e.MENU = "menu", e.META = "meta", e.MGLYPH = "mglyph", e.MI = "mi", e.MO = "mo", e.MN = "mn", e.MS = "ms", e.MTEXT = "mtext", e.NAV = "nav", e.NOBR = "nobr", e.NOFRAMES = "noframes", e.NOEMBED = "noembed", e.NOSCRIPT = "noscript", e.OBJECT = "object", e.OL = "ol", e.OPTGROUP = "optgroup", e.OPTION = "option", e.P = "p", e.PARAM = "param", e.PLAINTEXT = "plaintext", e.PRE = "pre", e.RB = "rb", e.RP = "rp", e.RT = "rt", e.RTC = "rtc", e.RUBY = "ruby", e.S = "s", e.SCRIPT = "script", e.SECTION = "section", e.SELECT = "select", e.SOURCE = "source", e.SMALL = "small", e.SPAN = "span", e.STRIKE = "strike", e.STRONG = "strong", e.STYLE = "style", e.SUB = "sub", e.SUMMARY = "summary", e.SUP = "sup", e.TABLE = "table", e.TBODY = "tbody", e.TEMPLATE = "template", e.TEXTAREA = "textarea", e.TFOOT = "tfoot", e.TD = "td", e.TH = "th", e.THEAD = "thead", e.TITLE = "title", e.TR = "tr", e.TRACK = "track", e.TT = "tt", e.U = "u", e.UL = "ul", e.SVG = "svg", e.VAR = "var", e.WBR = "wbr", e.XMP = "xmp";
|
|
7836
|
-
})(
|
|
7843
|
+
})(y = y || (y = {}));
|
|
7837
7844
|
var i;
|
|
7838
7845
|
(function(e) {
|
|
7839
7846
|
e[e.UNKNOWN = 0] = "UNKNOWN", e[e.A = 1] = "A", e[e.ADDRESS = 2] = "ADDRESS", e[e.ANNOTATION_XML = 3] = "ANNOTATION_XML", e[e.APPLET = 4] = "APPLET", e[e.AREA = 5] = "AREA", e[e.ARTICLE = 6] = "ARTICLE", e[e.ASIDE = 7] = "ASIDE", e[e.B = 8] = "B", e[e.BASE = 9] = "BASE", e[e.BASEFONT = 10] = "BASEFONT", e[e.BGSOUND = 11] = "BGSOUND", e[e.BIG = 12] = "BIG", e[e.BLOCKQUOTE = 13] = "BLOCKQUOTE", e[e.BODY = 14] = "BODY", e[e.BR = 15] = "BR", e[e.BUTTON = 16] = "BUTTON", e[e.CAPTION = 17] = "CAPTION", e[e.CENTER = 18] = "CENTER", e[e.CODE = 19] = "CODE", e[e.COL = 20] = "COL", e[e.COLGROUP = 21] = "COLGROUP", e[e.DD = 22] = "DD", e[e.DESC = 23] = "DESC", e[e.DETAILS = 24] = "DETAILS", e[e.DIALOG = 25] = "DIALOG", e[e.DIR = 26] = "DIR", e[e.DIV = 27] = "DIV", e[e.DL = 28] = "DL", e[e.DT = 29] = "DT", e[e.EM = 30] = "EM", e[e.EMBED = 31] = "EMBED", e[e.FIELDSET = 32] = "FIELDSET", e[e.FIGCAPTION = 33] = "FIGCAPTION", e[e.FIGURE = 34] = "FIGURE", e[e.FONT = 35] = "FONT", e[e.FOOTER = 36] = "FOOTER", e[e.FOREIGN_OBJECT = 37] = "FOREIGN_OBJECT", e[e.FORM = 38] = "FORM", e[e.FRAME = 39] = "FRAME", e[e.FRAMESET = 40] = "FRAMESET", e[e.H1 = 41] = "H1", e[e.H2 = 42] = "H2", e[e.H3 = 43] = "H3", e[e.H4 = 44] = "H4", e[e.H5 = 45] = "H5", e[e.H6 = 46] = "H6", e[e.HEAD = 47] = "HEAD", e[e.HEADER = 48] = "HEADER", e[e.HGROUP = 49] = "HGROUP", e[e.HR = 50] = "HR", e[e.HTML = 51] = "HTML", e[e.I = 52] = "I", e[e.IMG = 53] = "IMG", e[e.IMAGE = 54] = "IMAGE", e[e.INPUT = 55] = "INPUT", e[e.IFRAME = 56] = "IFRAME", e[e.KEYGEN = 57] = "KEYGEN", e[e.LABEL = 58] = "LABEL", e[e.LI = 59] = "LI", e[e.LINK = 60] = "LINK", e[e.LISTING = 61] = "LISTING", e[e.MAIN = 62] = "MAIN", e[e.MALIGNMARK = 63] = "MALIGNMARK", e[e.MARQUEE = 64] = "MARQUEE", e[e.MATH = 65] = "MATH", e[e.MENU = 66] = "MENU", e[e.META = 67] = "META", e[e.MGLYPH = 68] = "MGLYPH", e[e.MI = 69] = "MI", e[e.MO = 70] = "MO", e[e.MN = 71] = "MN", e[e.MS = 72] = "MS", e[e.MTEXT = 73] = "MTEXT", e[e.NAV = 74] = "NAV", e[e.NOBR = 75] = "NOBR", e[e.NOFRAMES = 76] = "NOFRAMES", e[e.NOEMBED = 77] = "NOEMBED", e[e.NOSCRIPT = 78] = "NOSCRIPT", e[e.OBJECT = 79] = "OBJECT", e[e.OL = 80] = "OL", e[e.OPTGROUP = 81] = "OPTGROUP", e[e.OPTION = 82] = "OPTION", e[e.P = 83] = "P", e[e.PARAM = 84] = "PARAM", e[e.PLAINTEXT = 85] = "PLAINTEXT", e[e.PRE = 86] = "PRE", e[e.RB = 87] = "RB", e[e.RP = 88] = "RP", e[e.RT = 89] = "RT", e[e.RTC = 90] = "RTC", e[e.RUBY = 91] = "RUBY", e[e.S = 92] = "S", e[e.SCRIPT = 93] = "SCRIPT", e[e.SECTION = 94] = "SECTION", e[e.SELECT = 95] = "SELECT", e[e.SOURCE = 96] = "SOURCE", e[e.SMALL = 97] = "SMALL", e[e.SPAN = 98] = "SPAN", e[e.STRIKE = 99] = "STRIKE", e[e.STRONG = 100] = "STRONG", e[e.STYLE = 101] = "STYLE", e[e.SUB = 102] = "SUB", e[e.SUMMARY = 103] = "SUMMARY", e[e.SUP = 104] = "SUP", e[e.TABLE = 105] = "TABLE", e[e.TBODY = 106] = "TBODY", e[e.TEMPLATE = 107] = "TEMPLATE", e[e.TEXTAREA = 108] = "TEXTAREA", e[e.TFOOT = 109] = "TFOOT", e[e.TD = 110] = "TD", e[e.TH = 111] = "TH", e[e.THEAD = 112] = "THEAD", e[e.TITLE = 113] = "TITLE", e[e.TR = 114] = "TR", e[e.TRACK = 115] = "TRACK", e[e.TT = 116] = "TT", e[e.U = 117] = "U", e[e.UL = 118] = "UL", e[e.SVG = 119] = "SVG", e[e.VAR = 120] = "VAR", e[e.WBR = 121] = "WBR", e[e.XMP = 122] = "XMP";
|
|
7840
7847
|
})(i = i || (i = {}));
|
|
7841
7848
|
const lm = /* @__PURE__ */ new Map([
|
|
7842
|
-
[
|
|
7843
|
-
[
|
|
7844
|
-
[
|
|
7845
|
-
[
|
|
7846
|
-
[
|
|
7847
|
-
[
|
|
7848
|
-
[
|
|
7849
|
-
[
|
|
7850
|
-
[
|
|
7851
|
-
[
|
|
7852
|
-
[
|
|
7853
|
-
[
|
|
7854
|
-
[
|
|
7855
|
-
[
|
|
7856
|
-
[
|
|
7857
|
-
[
|
|
7858
|
-
[
|
|
7859
|
-
[
|
|
7860
|
-
[
|
|
7861
|
-
[
|
|
7862
|
-
[
|
|
7863
|
-
[
|
|
7864
|
-
[
|
|
7865
|
-
[
|
|
7866
|
-
[
|
|
7867
|
-
[
|
|
7868
|
-
[
|
|
7869
|
-
[
|
|
7870
|
-
[
|
|
7871
|
-
[
|
|
7872
|
-
[
|
|
7873
|
-
[
|
|
7874
|
-
[
|
|
7875
|
-
[
|
|
7876
|
-
[
|
|
7877
|
-
[
|
|
7878
|
-
[
|
|
7879
|
-
[
|
|
7880
|
-
[
|
|
7881
|
-
[
|
|
7882
|
-
[
|
|
7883
|
-
[
|
|
7884
|
-
[
|
|
7885
|
-
[
|
|
7886
|
-
[
|
|
7887
|
-
[
|
|
7888
|
-
[
|
|
7889
|
-
[
|
|
7890
|
-
[
|
|
7891
|
-
[
|
|
7892
|
-
[
|
|
7893
|
-
[
|
|
7894
|
-
[
|
|
7895
|
-
[
|
|
7896
|
-
[
|
|
7897
|
-
[
|
|
7898
|
-
[
|
|
7899
|
-
[
|
|
7900
|
-
[
|
|
7901
|
-
[
|
|
7902
|
-
[
|
|
7903
|
-
[
|
|
7904
|
-
[
|
|
7905
|
-
[
|
|
7906
|
-
[
|
|
7907
|
-
[
|
|
7908
|
-
[
|
|
7909
|
-
[
|
|
7910
|
-
[
|
|
7911
|
-
[
|
|
7912
|
-
[
|
|
7913
|
-
[
|
|
7914
|
-
[
|
|
7915
|
-
[
|
|
7916
|
-
[
|
|
7917
|
-
[
|
|
7918
|
-
[
|
|
7919
|
-
[
|
|
7920
|
-
[
|
|
7921
|
-
[
|
|
7922
|
-
[
|
|
7923
|
-
[
|
|
7924
|
-
[
|
|
7925
|
-
[
|
|
7926
|
-
[
|
|
7927
|
-
[
|
|
7928
|
-
[
|
|
7929
|
-
[
|
|
7930
|
-
[
|
|
7931
|
-
[
|
|
7932
|
-
[
|
|
7933
|
-
[
|
|
7934
|
-
[
|
|
7935
|
-
[
|
|
7936
|
-
[
|
|
7937
|
-
[
|
|
7938
|
-
[
|
|
7939
|
-
[
|
|
7940
|
-
[
|
|
7941
|
-
[
|
|
7942
|
-
[
|
|
7943
|
-
[
|
|
7944
|
-
[
|
|
7945
|
-
[
|
|
7946
|
-
[
|
|
7947
|
-
[
|
|
7948
|
-
[
|
|
7949
|
-
[
|
|
7950
|
-
[
|
|
7951
|
-
[
|
|
7952
|
-
[
|
|
7953
|
-
[
|
|
7954
|
-
[
|
|
7955
|
-
[
|
|
7956
|
-
[
|
|
7957
|
-
[
|
|
7958
|
-
[
|
|
7959
|
-
[
|
|
7960
|
-
[
|
|
7961
|
-
[
|
|
7962
|
-
[
|
|
7963
|
-
[
|
|
7849
|
+
[y.A, i.A],
|
|
7850
|
+
[y.ADDRESS, i.ADDRESS],
|
|
7851
|
+
[y.ANNOTATION_XML, i.ANNOTATION_XML],
|
|
7852
|
+
[y.APPLET, i.APPLET],
|
|
7853
|
+
[y.AREA, i.AREA],
|
|
7854
|
+
[y.ARTICLE, i.ARTICLE],
|
|
7855
|
+
[y.ASIDE, i.ASIDE],
|
|
7856
|
+
[y.B, i.B],
|
|
7857
|
+
[y.BASE, i.BASE],
|
|
7858
|
+
[y.BASEFONT, i.BASEFONT],
|
|
7859
|
+
[y.BGSOUND, i.BGSOUND],
|
|
7860
|
+
[y.BIG, i.BIG],
|
|
7861
|
+
[y.BLOCKQUOTE, i.BLOCKQUOTE],
|
|
7862
|
+
[y.BODY, i.BODY],
|
|
7863
|
+
[y.BR, i.BR],
|
|
7864
|
+
[y.BUTTON, i.BUTTON],
|
|
7865
|
+
[y.CAPTION, i.CAPTION],
|
|
7866
|
+
[y.CENTER, i.CENTER],
|
|
7867
|
+
[y.CODE, i.CODE],
|
|
7868
|
+
[y.COL, i.COL],
|
|
7869
|
+
[y.COLGROUP, i.COLGROUP],
|
|
7870
|
+
[y.DD, i.DD],
|
|
7871
|
+
[y.DESC, i.DESC],
|
|
7872
|
+
[y.DETAILS, i.DETAILS],
|
|
7873
|
+
[y.DIALOG, i.DIALOG],
|
|
7874
|
+
[y.DIR, i.DIR],
|
|
7875
|
+
[y.DIV, i.DIV],
|
|
7876
|
+
[y.DL, i.DL],
|
|
7877
|
+
[y.DT, i.DT],
|
|
7878
|
+
[y.EM, i.EM],
|
|
7879
|
+
[y.EMBED, i.EMBED],
|
|
7880
|
+
[y.FIELDSET, i.FIELDSET],
|
|
7881
|
+
[y.FIGCAPTION, i.FIGCAPTION],
|
|
7882
|
+
[y.FIGURE, i.FIGURE],
|
|
7883
|
+
[y.FONT, i.FONT],
|
|
7884
|
+
[y.FOOTER, i.FOOTER],
|
|
7885
|
+
[y.FOREIGN_OBJECT, i.FOREIGN_OBJECT],
|
|
7886
|
+
[y.FORM, i.FORM],
|
|
7887
|
+
[y.FRAME, i.FRAME],
|
|
7888
|
+
[y.FRAMESET, i.FRAMESET],
|
|
7889
|
+
[y.H1, i.H1],
|
|
7890
|
+
[y.H2, i.H2],
|
|
7891
|
+
[y.H3, i.H3],
|
|
7892
|
+
[y.H4, i.H4],
|
|
7893
|
+
[y.H5, i.H5],
|
|
7894
|
+
[y.H6, i.H6],
|
|
7895
|
+
[y.HEAD, i.HEAD],
|
|
7896
|
+
[y.HEADER, i.HEADER],
|
|
7897
|
+
[y.HGROUP, i.HGROUP],
|
|
7898
|
+
[y.HR, i.HR],
|
|
7899
|
+
[y.HTML, i.HTML],
|
|
7900
|
+
[y.I, i.I],
|
|
7901
|
+
[y.IMG, i.IMG],
|
|
7902
|
+
[y.IMAGE, i.IMAGE],
|
|
7903
|
+
[y.INPUT, i.INPUT],
|
|
7904
|
+
[y.IFRAME, i.IFRAME],
|
|
7905
|
+
[y.KEYGEN, i.KEYGEN],
|
|
7906
|
+
[y.LABEL, i.LABEL],
|
|
7907
|
+
[y.LI, i.LI],
|
|
7908
|
+
[y.LINK, i.LINK],
|
|
7909
|
+
[y.LISTING, i.LISTING],
|
|
7910
|
+
[y.MAIN, i.MAIN],
|
|
7911
|
+
[y.MALIGNMARK, i.MALIGNMARK],
|
|
7912
|
+
[y.MARQUEE, i.MARQUEE],
|
|
7913
|
+
[y.MATH, i.MATH],
|
|
7914
|
+
[y.MENU, i.MENU],
|
|
7915
|
+
[y.META, i.META],
|
|
7916
|
+
[y.MGLYPH, i.MGLYPH],
|
|
7917
|
+
[y.MI, i.MI],
|
|
7918
|
+
[y.MO, i.MO],
|
|
7919
|
+
[y.MN, i.MN],
|
|
7920
|
+
[y.MS, i.MS],
|
|
7921
|
+
[y.MTEXT, i.MTEXT],
|
|
7922
|
+
[y.NAV, i.NAV],
|
|
7923
|
+
[y.NOBR, i.NOBR],
|
|
7924
|
+
[y.NOFRAMES, i.NOFRAMES],
|
|
7925
|
+
[y.NOEMBED, i.NOEMBED],
|
|
7926
|
+
[y.NOSCRIPT, i.NOSCRIPT],
|
|
7927
|
+
[y.OBJECT, i.OBJECT],
|
|
7928
|
+
[y.OL, i.OL],
|
|
7929
|
+
[y.OPTGROUP, i.OPTGROUP],
|
|
7930
|
+
[y.OPTION, i.OPTION],
|
|
7931
|
+
[y.P, i.P],
|
|
7932
|
+
[y.PARAM, i.PARAM],
|
|
7933
|
+
[y.PLAINTEXT, i.PLAINTEXT],
|
|
7934
|
+
[y.PRE, i.PRE],
|
|
7935
|
+
[y.RB, i.RB],
|
|
7936
|
+
[y.RP, i.RP],
|
|
7937
|
+
[y.RT, i.RT],
|
|
7938
|
+
[y.RTC, i.RTC],
|
|
7939
|
+
[y.RUBY, i.RUBY],
|
|
7940
|
+
[y.S, i.S],
|
|
7941
|
+
[y.SCRIPT, i.SCRIPT],
|
|
7942
|
+
[y.SECTION, i.SECTION],
|
|
7943
|
+
[y.SELECT, i.SELECT],
|
|
7944
|
+
[y.SOURCE, i.SOURCE],
|
|
7945
|
+
[y.SMALL, i.SMALL],
|
|
7946
|
+
[y.SPAN, i.SPAN],
|
|
7947
|
+
[y.STRIKE, i.STRIKE],
|
|
7948
|
+
[y.STRONG, i.STRONG],
|
|
7949
|
+
[y.STYLE, i.STYLE],
|
|
7950
|
+
[y.SUB, i.SUB],
|
|
7951
|
+
[y.SUMMARY, i.SUMMARY],
|
|
7952
|
+
[y.SUP, i.SUP],
|
|
7953
|
+
[y.TABLE, i.TABLE],
|
|
7954
|
+
[y.TBODY, i.TBODY],
|
|
7955
|
+
[y.TEMPLATE, i.TEMPLATE],
|
|
7956
|
+
[y.TEXTAREA, i.TEXTAREA],
|
|
7957
|
+
[y.TFOOT, i.TFOOT],
|
|
7958
|
+
[y.TD, i.TD],
|
|
7959
|
+
[y.TH, i.TH],
|
|
7960
|
+
[y.THEAD, i.THEAD],
|
|
7961
|
+
[y.TITLE, i.TITLE],
|
|
7962
|
+
[y.TR, i.TR],
|
|
7963
|
+
[y.TRACK, i.TRACK],
|
|
7964
|
+
[y.TT, i.TT],
|
|
7965
|
+
[y.U, i.U],
|
|
7966
|
+
[y.UL, i.UL],
|
|
7967
|
+
[y.SVG, i.SVG],
|
|
7968
|
+
[y.VAR, i.VAR],
|
|
7969
|
+
[y.WBR, i.WBR],
|
|
7970
|
+
[y.XMP, i.XMP]
|
|
7964
7971
|
]);
|
|
7965
7972
|
function Cn(e) {
|
|
7966
7973
|
var u;
|
|
@@ -8059,7 +8066,7 @@ const H = i, dm = {
|
|
|
8059
8066
|
function zl(e) {
|
|
8060
8067
|
return e === H.H1 || e === H.H2 || e === H.H3 || e === H.H4 || e === H.H5 || e === H.H6;
|
|
8061
8068
|
}
|
|
8062
|
-
|
|
8069
|
+
y.STYLE, y.SCRIPT, y.XMP, y.IFRAME, y.NOEMBED, y.NOFRAMES, y.PLAINTEXT;
|
|
8063
8070
|
const hm = /* @__PURE__ */ new Map([
|
|
8064
8071
|
[128, 8364],
|
|
8065
8072
|
[130, 8218],
|
|
@@ -8093,7 +8100,7 @@ var A;
|
|
|
8093
8100
|
(function(e) {
|
|
8094
8101
|
e[e.DATA = 0] = "DATA", e[e.RCDATA = 1] = "RCDATA", e[e.RAWTEXT = 2] = "RAWTEXT", e[e.SCRIPT_DATA = 3] = "SCRIPT_DATA", e[e.PLAINTEXT = 4] = "PLAINTEXT", e[e.TAG_OPEN = 5] = "TAG_OPEN", e[e.END_TAG_OPEN = 6] = "END_TAG_OPEN", e[e.TAG_NAME = 7] = "TAG_NAME", e[e.RCDATA_LESS_THAN_SIGN = 8] = "RCDATA_LESS_THAN_SIGN", e[e.RCDATA_END_TAG_OPEN = 9] = "RCDATA_END_TAG_OPEN", e[e.RCDATA_END_TAG_NAME = 10] = "RCDATA_END_TAG_NAME", e[e.RAWTEXT_LESS_THAN_SIGN = 11] = "RAWTEXT_LESS_THAN_SIGN", e[e.RAWTEXT_END_TAG_OPEN = 12] = "RAWTEXT_END_TAG_OPEN", e[e.RAWTEXT_END_TAG_NAME = 13] = "RAWTEXT_END_TAG_NAME", e[e.SCRIPT_DATA_LESS_THAN_SIGN = 14] = "SCRIPT_DATA_LESS_THAN_SIGN", e[e.SCRIPT_DATA_END_TAG_OPEN = 15] = "SCRIPT_DATA_END_TAG_OPEN", e[e.SCRIPT_DATA_END_TAG_NAME = 16] = "SCRIPT_DATA_END_TAG_NAME", e[e.SCRIPT_DATA_ESCAPE_START = 17] = "SCRIPT_DATA_ESCAPE_START", e[e.SCRIPT_DATA_ESCAPE_START_DASH = 18] = "SCRIPT_DATA_ESCAPE_START_DASH", e[e.SCRIPT_DATA_ESCAPED = 19] = "SCRIPT_DATA_ESCAPED", e[e.SCRIPT_DATA_ESCAPED_DASH = 20] = "SCRIPT_DATA_ESCAPED_DASH", e[e.SCRIPT_DATA_ESCAPED_DASH_DASH = 21] = "SCRIPT_DATA_ESCAPED_DASH_DASH", e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN = 22] = "SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN", e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN = 23] = "SCRIPT_DATA_ESCAPED_END_TAG_OPEN", e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME = 24] = "SCRIPT_DATA_ESCAPED_END_TAG_NAME", e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START = 25] = "SCRIPT_DATA_DOUBLE_ESCAPE_START", e[e.SCRIPT_DATA_DOUBLE_ESCAPED = 26] = "SCRIPT_DATA_DOUBLE_ESCAPED", e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH = 27] = "SCRIPT_DATA_DOUBLE_ESCAPED_DASH", e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH = 28] = "SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH", e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN = 29] = "SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN", e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END = 30] = "SCRIPT_DATA_DOUBLE_ESCAPE_END", e[e.BEFORE_ATTRIBUTE_NAME = 31] = "BEFORE_ATTRIBUTE_NAME", e[e.ATTRIBUTE_NAME = 32] = "ATTRIBUTE_NAME", e[e.AFTER_ATTRIBUTE_NAME = 33] = "AFTER_ATTRIBUTE_NAME", e[e.BEFORE_ATTRIBUTE_VALUE = 34] = "BEFORE_ATTRIBUTE_VALUE", e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED = 35] = "ATTRIBUTE_VALUE_DOUBLE_QUOTED", e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED = 36] = "ATTRIBUTE_VALUE_SINGLE_QUOTED", e[e.ATTRIBUTE_VALUE_UNQUOTED = 37] = "ATTRIBUTE_VALUE_UNQUOTED", e[e.AFTER_ATTRIBUTE_VALUE_QUOTED = 38] = "AFTER_ATTRIBUTE_VALUE_QUOTED", e[e.SELF_CLOSING_START_TAG = 39] = "SELF_CLOSING_START_TAG", e[e.BOGUS_COMMENT = 40] = "BOGUS_COMMENT", e[e.MARKUP_DECLARATION_OPEN = 41] = "MARKUP_DECLARATION_OPEN", e[e.COMMENT_START = 42] = "COMMENT_START", e[e.COMMENT_START_DASH = 43] = "COMMENT_START_DASH", e[e.COMMENT = 44] = "COMMENT", e[e.COMMENT_LESS_THAN_SIGN = 45] = "COMMENT_LESS_THAN_SIGN", e[e.COMMENT_LESS_THAN_SIGN_BANG = 46] = "COMMENT_LESS_THAN_SIGN_BANG", e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH = 47] = "COMMENT_LESS_THAN_SIGN_BANG_DASH", e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH = 48] = "COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH", e[e.COMMENT_END_DASH = 49] = "COMMENT_END_DASH", e[e.COMMENT_END = 50] = "COMMENT_END", e[e.COMMENT_END_BANG = 51] = "COMMENT_END_BANG", e[e.DOCTYPE = 52] = "DOCTYPE", e[e.BEFORE_DOCTYPE_NAME = 53] = "BEFORE_DOCTYPE_NAME", e[e.DOCTYPE_NAME = 54] = "DOCTYPE_NAME", e[e.AFTER_DOCTYPE_NAME = 55] = "AFTER_DOCTYPE_NAME", e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD = 56] = "AFTER_DOCTYPE_PUBLIC_KEYWORD", e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER = 57] = "BEFORE_DOCTYPE_PUBLIC_IDENTIFIER", e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED = 58] = "DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED", e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED = 59] = "DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED", e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER = 60] = "AFTER_DOCTYPE_PUBLIC_IDENTIFIER", e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS = 61] = "BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS", e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD = 62] = "AFTER_DOCTYPE_SYSTEM_KEYWORD", e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER = 63] = "BEFORE_DOCTYPE_SYSTEM_IDENTIFIER", e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED = 64] = "DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED", e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED = 65] = "DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED", e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER = 66] = "AFTER_DOCTYPE_SYSTEM_IDENTIFIER", e[e.BOGUS_DOCTYPE = 67] = "BOGUS_DOCTYPE", e[e.CDATA_SECTION = 68] = "CDATA_SECTION", e[e.CDATA_SECTION_BRACKET = 69] = "CDATA_SECTION_BRACKET", e[e.CDATA_SECTION_END = 70] = "CDATA_SECTION_END", e[e.CHARACTER_REFERENCE = 71] = "CHARACTER_REFERENCE", e[e.NAMED_CHARACTER_REFERENCE = 72] = "NAMED_CHARACTER_REFERENCE", e[e.AMBIGUOUS_AMPERSAND = 73] = "AMBIGUOUS_AMPERSAND", e[e.NUMERIC_CHARACTER_REFERENCE = 74] = "NUMERIC_CHARACTER_REFERENCE", e[e.HEXADEMICAL_CHARACTER_REFERENCE_START = 75] = "HEXADEMICAL_CHARACTER_REFERENCE_START", e[e.HEXADEMICAL_CHARACTER_REFERENCE = 76] = "HEXADEMICAL_CHARACTER_REFERENCE", e[e.DECIMAL_CHARACTER_REFERENCE = 77] = "DECIMAL_CHARACTER_REFERENCE", e[e.NUMERIC_CHARACTER_REFERENCE_END = 78] = "NUMERIC_CHARACTER_REFERENCE_END";
|
|
8095
8102
|
})(A || (A = {}));
|
|
8096
|
-
const
|
|
8103
|
+
const Nt = {
|
|
8097
8104
|
DATA: A.DATA,
|
|
8098
8105
|
RCDATA: A.RCDATA,
|
|
8099
8106
|
RAWTEXT: A.RAWTEXT,
|
|
@@ -10342,9 +10349,9 @@ class _m {
|
|
|
10342
10349
|
const v = this.entries[x];
|
|
10343
10350
|
if (v.type === Yt.Marker)
|
|
10344
10351
|
break;
|
|
10345
|
-
const { element:
|
|
10346
|
-
if (this.treeAdapter.getTagName(
|
|
10347
|
-
const P = this.treeAdapter.getAttrList(
|
|
10352
|
+
const { element: Q } = v;
|
|
10353
|
+
if (this.treeAdapter.getTagName(Q) === g && this.treeAdapter.getNamespaceURI(Q) === N) {
|
|
10354
|
+
const P = this.treeAdapter.getAttrList(Q);
|
|
10348
10355
|
P.length === d && s.push({ idx: x, attrs: P });
|
|
10349
10356
|
}
|
|
10350
10357
|
}
|
|
@@ -10884,7 +10891,7 @@ class Ym {
|
|
|
10884
10891
|
}
|
|
10885
10892
|
static getFragmentParser(u, a) {
|
|
10886
10893
|
const s = D(D({}, Tl), a);
|
|
10887
|
-
u != null || (u = s.treeAdapter.createElement(
|
|
10894
|
+
u != null || (u = s.treeAdapter.createElement(y.TEMPLATE, O.HTML, []));
|
|
10888
10895
|
const d = s.treeAdapter.createElement("documentmock", O.HTML, []), g = new this(s, d, u);
|
|
10889
10896
|
return g.fragmentContextID === i.TEMPLATE && g.tmplInsertionModeStack.unshift(m.IN_TEMPLATE), g._initTokenizerForFragmentParsing(), g._insertFakeRootElement(), g._resetInsertionMode(), g._findFormInFragmentContext(), g;
|
|
10890
10897
|
}
|
|
@@ -10928,7 +10935,7 @@ class Ym {
|
|
|
10928
10935
|
this._insertElement(u, O.HTML), this.tokenizer.state = a, this.originalInsertionMode = this.insertionMode, this.insertionMode = m.TEXT;
|
|
10929
10936
|
}
|
|
10930
10937
|
switchToPlaintextParsing() {
|
|
10931
|
-
this.insertionMode = m.TEXT, this.originalInsertionMode = m.IN_BODY, this.tokenizer.state =
|
|
10938
|
+
this.insertionMode = m.TEXT, this.originalInsertionMode = m.IN_BODY, this.tokenizer.state = Nt.PLAINTEXT;
|
|
10932
10939
|
}
|
|
10933
10940
|
//Fragment parsing
|
|
10934
10941
|
_getAdjustedCurrentElement() {
|
|
@@ -10937,7 +10944,7 @@ class Ym {
|
|
|
10937
10944
|
_findFormInFragmentContext() {
|
|
10938
10945
|
let u = this.fragmentContext;
|
|
10939
10946
|
for (; u; ) {
|
|
10940
|
-
if (this.treeAdapter.getTagName(u) ===
|
|
10947
|
+
if (this.treeAdapter.getTagName(u) === y.FORM) {
|
|
10941
10948
|
this.formElement = u;
|
|
10942
10949
|
break;
|
|
10943
10950
|
}
|
|
@@ -10949,7 +10956,7 @@ class Ym {
|
|
|
10949
10956
|
switch (this.fragmentContextID) {
|
|
10950
10957
|
case i.TITLE:
|
|
10951
10958
|
case i.TEXTAREA: {
|
|
10952
|
-
this.tokenizer.state =
|
|
10959
|
+
this.tokenizer.state = Nt.RCDATA;
|
|
10953
10960
|
break;
|
|
10954
10961
|
}
|
|
10955
10962
|
case i.STYLE:
|
|
@@ -10958,15 +10965,15 @@ class Ym {
|
|
|
10958
10965
|
case i.NOEMBED:
|
|
10959
10966
|
case i.NOFRAMES:
|
|
10960
10967
|
case i.NOSCRIPT: {
|
|
10961
|
-
this.tokenizer.state =
|
|
10968
|
+
this.tokenizer.state = Nt.RAWTEXT;
|
|
10962
10969
|
break;
|
|
10963
10970
|
}
|
|
10964
10971
|
case i.SCRIPT: {
|
|
10965
|
-
this.tokenizer.state =
|
|
10972
|
+
this.tokenizer.state = Nt.SCRIPT_DATA;
|
|
10966
10973
|
break;
|
|
10967
10974
|
}
|
|
10968
10975
|
case i.PLAINTEXT: {
|
|
10969
|
-
this.tokenizer.state =
|
|
10976
|
+
this.tokenizer.state = Nt.PLAINTEXT;
|
|
10970
10977
|
break;
|
|
10971
10978
|
}
|
|
10972
10979
|
}
|
|
@@ -11010,7 +11017,7 @@ class Ym {
|
|
|
11010
11017
|
this.treeAdapter.setTemplateContent(a, s), this._attachElementToTree(a, u.location), this.openElements.push(a, u.tagID), this.options.sourceCodeLocationInfo && this.treeAdapter.setNodeSourceCodeLocation(s, null);
|
|
11011
11018
|
}
|
|
11012
11019
|
_insertFakeRootElement() {
|
|
11013
|
-
const u = this.treeAdapter.createElement(
|
|
11020
|
+
const u = this.treeAdapter.createElement(y.HTML, O.HTML, []);
|
|
11014
11021
|
this.options.sourceCodeLocationInfo && this.treeAdapter.setNodeSourceCodeLocation(u, null), this.treeAdapter.appendChild(this.openElements.current, u), this.openElements.push(u, i.HTML);
|
|
11015
11022
|
}
|
|
11016
11023
|
_appendCommentNode(u, a) {
|
|
@@ -11023,8 +11030,8 @@ class Ym {
|
|
|
11023
11030
|
return;
|
|
11024
11031
|
const d = this.treeAdapter.getChildNodes(a), g = s ? d.lastIndexOf(s) : d.length, N = d[g - 1];
|
|
11025
11032
|
if (this.treeAdapter.getNodeSourceCodeLocation(N)) {
|
|
11026
|
-
const { endLine: v, endCol:
|
|
11027
|
-
this.treeAdapter.updateNodeSourceCodeLocation(N, { endLine: v, endCol:
|
|
11033
|
+
const { endLine: v, endCol: Q, endOffset: P } = u.location;
|
|
11034
|
+
this.treeAdapter.updateNodeSourceCodeLocation(N, { endLine: v, endCol: Q, endOffset: P });
|
|
11028
11035
|
} else
|
|
11029
11036
|
this.options.sourceCodeLocationInfo && this.treeAdapter.setNodeSourceCodeLocation(N, u.location);
|
|
11030
11037
|
}
|
|
@@ -11056,7 +11063,7 @@ class Ym {
|
|
|
11056
11063
|
if (!this.currentNotInHTML)
|
|
11057
11064
|
return !1;
|
|
11058
11065
|
let a, s;
|
|
11059
|
-
return this.openElements.stackTop === 0 && this.fragmentContext ? (a = this.fragmentContext, s = this.fragmentContextID) : { current: a, currentTagId: s } = this.openElements, u.tagID === i.SVG && this.treeAdapter.getTagName(a) ===
|
|
11066
|
+
return this.openElements.stackTop === 0 && this.fragmentContext ? (a = this.fragmentContext, s = this.fragmentContextID) : { current: a, currentTagId: s } = this.openElements, u.tagID === i.SVG && this.treeAdapter.getTagName(a) === y.ANNOTATION_XML && this.treeAdapter.getNamespaceURI(a) === O.MATHML ? !1 : (
|
|
11060
11067
|
// Check that `current` is not an integration point for HTML or MathML elements.
|
|
11061
11068
|
this.tokenizer.inForeignNode || // If it _is_ an integration point, then we might have to check that it is not an HTML
|
|
11062
11069
|
// integration point.
|
|
@@ -11836,7 +11843,7 @@ function nb(e, u) {
|
|
|
11836
11843
|
a === i.HEAD || a === i.BODY || a === i.HTML || a === i.BR ? Xr(e, u) : e._err(u, R.endTagWithoutMatchingOpenElement);
|
|
11837
11844
|
}
|
|
11838
11845
|
function Xr(e, u) {
|
|
11839
|
-
e._insertFakeElement(
|
|
11846
|
+
e._insertFakeElement(y.HEAD, i.HEAD), e.headElement = e.openElements.current, e.insertionMode = m.IN_HEAD, e._processToken(u);
|
|
11840
11847
|
}
|
|
11841
11848
|
function zt(e, u) {
|
|
11842
11849
|
switch (u.tagID) {
|
|
@@ -11853,20 +11860,20 @@ function zt(e, u) {
|
|
|
11853
11860
|
break;
|
|
11854
11861
|
}
|
|
11855
11862
|
case i.TITLE: {
|
|
11856
|
-
e._switchToTextParsing(u,
|
|
11863
|
+
e._switchToTextParsing(u, Nt.RCDATA);
|
|
11857
11864
|
break;
|
|
11858
11865
|
}
|
|
11859
11866
|
case i.NOSCRIPT: {
|
|
11860
|
-
e.options.scriptingEnabled ? e._switchToTextParsing(u,
|
|
11867
|
+
e.options.scriptingEnabled ? e._switchToTextParsing(u, Nt.RAWTEXT) : (e._insertElement(u, O.HTML), e.insertionMode = m.IN_HEAD_NO_SCRIPT);
|
|
11861
11868
|
break;
|
|
11862
11869
|
}
|
|
11863
11870
|
case i.NOFRAMES:
|
|
11864
11871
|
case i.STYLE: {
|
|
11865
|
-
e._switchToTextParsing(u,
|
|
11872
|
+
e._switchToTextParsing(u, Nt.RAWTEXT);
|
|
11866
11873
|
break;
|
|
11867
11874
|
}
|
|
11868
11875
|
case i.SCRIPT: {
|
|
11869
|
-
e._switchToTextParsing(u,
|
|
11876
|
+
e._switchToTextParsing(u, Nt.SCRIPT_DATA);
|
|
11870
11877
|
break;
|
|
11871
11878
|
}
|
|
11872
11879
|
case i.TEMPLATE: {
|
|
@@ -12001,7 +12008,7 @@ function lb(e, u) {
|
|
|
12001
12008
|
}
|
|
12002
12009
|
}
|
|
12003
12010
|
function Jr(e, u) {
|
|
12004
|
-
e._insertFakeElement(
|
|
12011
|
+
e._insertFakeElement(y.BODY, i.BODY), e.insertionMode = m.IN_BODY, _n(e, u);
|
|
12005
12012
|
}
|
|
12006
12013
|
function _n(e, u) {
|
|
12007
12014
|
switch (u.type) {
|
|
@@ -12076,13 +12083,13 @@ function mb(e, u) {
|
|
|
12076
12083
|
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._insertElement(u, O.HTML);
|
|
12077
12084
|
}
|
|
12078
12085
|
function bb(e, u) {
|
|
12079
|
-
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._insertElement(u, O.HTML), e.tokenizer.state =
|
|
12086
|
+
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._insertElement(u, O.HTML), e.tokenizer.state = Nt.PLAINTEXT;
|
|
12080
12087
|
}
|
|
12081
12088
|
function Tb(e, u) {
|
|
12082
12089
|
e.openElements.hasInScope(i.BUTTON) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(i.BUTTON)), e._reconstructActiveFormattingElements(), e._insertElement(u, O.HTML), e.framesetOk = !1;
|
|
12083
12090
|
}
|
|
12084
12091
|
function Db(e, u) {
|
|
12085
|
-
const a = e.activeFormattingElements.getElementEntryInScopeWithTagName(
|
|
12092
|
+
const a = e.activeFormattingElements.getElementEntryInScopeWithTagName(y.A);
|
|
12086
12093
|
a && (_s(e, u), e.openElements.remove(a.element), e.activeFormattingElements.removeEntry(a)), e._reconstructActiveFormattingElements(), e._insertElement(u, O.HTML), e.activeFormattingElements.pushElement(e.openElements.current, u);
|
|
12087
12094
|
}
|
|
12088
12095
|
function Cb(e, u) {
|
|
@@ -12114,19 +12121,19 @@ function xb(e, u) {
|
|
|
12114
12121
|
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._appendElement(u, O.HTML), e.framesetOk = !1, u.ackSelfClosing = !0;
|
|
12115
12122
|
}
|
|
12116
12123
|
function Rb(e, u) {
|
|
12117
|
-
u.tagName =
|
|
12124
|
+
u.tagName = y.IMG, u.tagID = i.IMG, i0(e, u);
|
|
12118
12125
|
}
|
|
12119
12126
|
function vb(e, u) {
|
|
12120
|
-
e._insertElement(u, O.HTML), e.skipNextNewLine = !0, e.tokenizer.state =
|
|
12127
|
+
e._insertElement(u, O.HTML), e.skipNextNewLine = !0, e.tokenizer.state = Nt.RCDATA, e.originalInsertionMode = e.insertionMode, e.framesetOk = !1, e.insertionMode = m.TEXT;
|
|
12121
12128
|
}
|
|
12122
12129
|
function Lb(e, u) {
|
|
12123
|
-
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._reconstructActiveFormattingElements(), e.framesetOk = !1, e._switchToTextParsing(u,
|
|
12130
|
+
e.openElements.hasInButtonScope(i.P) && e._closePElement(), e._reconstructActiveFormattingElements(), e.framesetOk = !1, e._switchToTextParsing(u, Nt.RAWTEXT);
|
|
12124
12131
|
}
|
|
12125
12132
|
function Sb(e, u) {
|
|
12126
|
-
e.framesetOk = !1, e._switchToTextParsing(u,
|
|
12133
|
+
e.framesetOk = !1, e._switchToTextParsing(u, Nt.RAWTEXT);
|
|
12127
12134
|
}
|
|
12128
12135
|
function Dl(e, u) {
|
|
12129
|
-
e._switchToTextParsing(u,
|
|
12136
|
+
e._switchToTextParsing(u, Nt.RAWTEXT);
|
|
12130
12137
|
}
|
|
12131
12138
|
function Ob(e, u) {
|
|
12132
12139
|
e._reconstructActiveFormattingElements(), e._insertElement(u, O.HTML), e.framesetOk = !1, e.insertionMode = e.insertionMode === m.IN_TABLE || e.insertionMode === m.IN_CAPTION || e.insertionMode === m.IN_TABLE_BODY || e.insertionMode === m.IN_ROW || e.insertionMode === m.IN_CELL ? m.IN_SELECT_IN_TABLE : m.IN_SELECT;
|
|
@@ -12375,7 +12382,7 @@ function Wb(e) {
|
|
|
12375
12382
|
u || (e.formElement = null), (a || u) && e.openElements.hasInScope(i.FORM) && (e.openElements.generateImpliedEndTags(), u ? e.openElements.popUntilTagNamePopped(i.FORM) : a && e.openElements.remove(a));
|
|
12376
12383
|
}
|
|
12377
12384
|
function Qb(e) {
|
|
12378
|
-
e.openElements.hasInButtonScope(i.P) || e._insertFakeElement(
|
|
12385
|
+
e.openElements.hasInButtonScope(i.P) || e._insertFakeElement(y.P, i.P), e._closePElement();
|
|
12379
12386
|
}
|
|
12380
12387
|
function Vb(e) {
|
|
12381
12388
|
e.openElements.hasInListItemScope(i.LI) && (e.openElements.generateImpliedEndTagsWithExclusion(i.LI), e.openElements.popUntilTagNamePopped(i.LI));
|
|
@@ -12392,7 +12399,7 @@ function zb(e, u) {
|
|
|
12392
12399
|
e.openElements.hasInScope(a) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(a), e.activeFormattingElements.clearToLastMarker());
|
|
12393
12400
|
}
|
|
12394
12401
|
function jb(e) {
|
|
12395
|
-
e._reconstructActiveFormattingElements(), e._insertFakeElement(
|
|
12402
|
+
e._reconstructActiveFormattingElements(), e._insertFakeElement(y.BR, i.BR), e.openElements.pop(), e.framesetOk = !1;
|
|
12396
12403
|
}
|
|
12397
12404
|
function o0(e, u) {
|
|
12398
12405
|
const a = u.tagName, s = u.tagID;
|
|
@@ -12538,13 +12545,13 @@ function Jb(e, u) {
|
|
|
12538
12545
|
e.openElements.clearBackToTableContext(), e._insertElement(u, O.HTML), e.insertionMode = m.IN_COLUMN_GROUP;
|
|
12539
12546
|
}
|
|
12540
12547
|
function $b(e, u) {
|
|
12541
|
-
e.openElements.clearBackToTableContext(), e._insertFakeElement(
|
|
12548
|
+
e.openElements.clearBackToTableContext(), e._insertFakeElement(y.COLGROUP, i.COLGROUP), e.insertionMode = m.IN_COLUMN_GROUP, Is(e, u);
|
|
12542
12549
|
}
|
|
12543
12550
|
function e3(e, u) {
|
|
12544
12551
|
e.openElements.clearBackToTableContext(), e._insertElement(u, O.HTML), e.insertionMode = m.IN_TABLE_BODY;
|
|
12545
12552
|
}
|
|
12546
12553
|
function t3(e, u) {
|
|
12547
|
-
e.openElements.clearBackToTableContext(), e._insertFakeElement(
|
|
12554
|
+
e.openElements.clearBackToTableContext(), e._insertFakeElement(y.TBODY, i.TBODY), e.insertionMode = m.IN_TABLE_BODY, In(e, u);
|
|
12548
12555
|
}
|
|
12549
12556
|
function u3(e, u) {
|
|
12550
12557
|
e.openElements.hasInTableScope(i.TABLE) && (e.openElements.popUntilTagNamePopped(i.TABLE), e._resetInsertionMode(), e._processStartTag(u));
|
|
@@ -12722,7 +12729,7 @@ function In(e, u) {
|
|
|
12722
12729
|
}
|
|
12723
12730
|
case i.TH:
|
|
12724
12731
|
case i.TD: {
|
|
12725
|
-
e.openElements.clearBackToTableBodyContext(), e._insertFakeElement(
|
|
12732
|
+
e.openElements.clearBackToTableBodyContext(), e._insertFakeElement(y.TR, i.TR), e.insertionMode = m.IN_ROW, yn(e, u);
|
|
12726
12733
|
break;
|
|
12727
12734
|
}
|
|
12728
12735
|
case i.CAPTION:
|
|
@@ -13054,7 +13061,7 @@ function N3(e, u) {
|
|
|
13054
13061
|
}
|
|
13055
13062
|
}
|
|
13056
13063
|
}
|
|
13057
|
-
|
|
13064
|
+
y.AREA, y.BASE, y.BASEFONT, y.BGSOUND, y.BR, y.COL, y.EMBED, y.FRAME, y.HR, y.IMG, y.INPUT, y.KEYGEN, y.LINK, y.META, y.PARAM, y.SOURCE, y.TRACK, y.WBR;
|
|
13058
13065
|
function I3(e, u, a) {
|
|
13059
13066
|
typeof e == "string" && (a = u, u = e, e = null);
|
|
13060
13067
|
const s = Ym.getFragmentParser(e, a);
|
|
@@ -13671,20 +13678,20 @@ const ys = {
|
|
|
13671
13678
|
[ne.STANDARD_TEXT_LIST_ITEM]: W3,
|
|
13672
13679
|
[ne.STANDARD_BLOCK_QUOTE]: fs
|
|
13673
13680
|
}, Z3 = (e) => {
|
|
13674
|
-
var
|
|
13675
|
-
const { activeTab: u } = ra(), a = u === Ll.MOBILE, { attributesVariables: s, enabledResponsive: d = !0 } = Lu(), g = gu(), { mergetagsData: N } = kl(), x = (
|
|
13676
|
-
let
|
|
13681
|
+
var q;
|
|
13682
|
+
const { activeTab: u } = ra(), a = u === Ll.MOBILE, { attributesVariables: s, enabledResponsive: d = !0 } = Lu(), g = gu(), { mergetagsData: N } = kl(), x = (q = e.attributes) == null ? void 0 : q["data-slate-path"], v = x == null ? void 0 : x.split("-").map(Number);
|
|
13683
|
+
let Q = null;
|
|
13677
13684
|
try {
|
|
13678
|
-
|
|
13685
|
+
Q = Ae.above(g, {
|
|
13679
13686
|
at: v,
|
|
13680
|
-
match: (
|
|
13687
|
+
match: (V) => z.isWidgetElement(V)
|
|
13681
13688
|
});
|
|
13682
|
-
} catch (
|
|
13689
|
+
} catch (V) {
|
|
13683
13690
|
}
|
|
13684
|
-
const P =
|
|
13691
|
+
const P = Q ? Q[0] : null, U = Eu(() => P == null ? void 0 : P.data.input, [P == null ? void 0 : P.data.input]), _ = Eu(() => x && P ? Dn(s || {}, U) : s, [s, U, P, x]);
|
|
13685
13692
|
return Eu(() => {
|
|
13686
|
-
const { element:
|
|
13687
|
-
return
|
|
13693
|
+
const { element: V } = e;
|
|
13694
|
+
return V.visible === "desktop" && a || V.visible === "mobile" && !a ? null : /* @__PURE__ */ E.createElement(
|
|
13688
13695
|
J3,
|
|
13689
13696
|
J(D({}, e), {
|
|
13690
13697
|
enabledResponsive: d,
|
|
@@ -13695,9 +13702,9 @@ const ys = {
|
|
|
13695
13702
|
);
|
|
13696
13703
|
}, [e, a, d, N, _]);
|
|
13697
13704
|
}, J3 = (e) => {
|
|
13698
|
-
const { element: u, isMobileActive: a, enabledResponsive: s } = e, d = ys[u.type], g = gu(), N =
|
|
13705
|
+
const { element: u, isMobileActive: a, enabledResponsive: s } = e, d = ys[u.type], g = gu(), N = Ae.node(g, [0])[0];
|
|
13699
13706
|
N.data.breakpoint || (N.data.breakpoint = "600px");
|
|
13700
|
-
const x = s && Ts.getFeatureEnabled("RESPONSIVE_VIEW"), v = a && x ? Dn(u.attributes, u.mobileAttributes) : u.attributes,
|
|
13707
|
+
const x = s && Ts.getFeatureEnabled("RESPONSIVE_VIEW"), v = a && x ? Dn(u.attributes, u.mobileAttributes) : u.attributes, Q = J(D({}, N), {
|
|
13701
13708
|
data: J(D({}, N.data), {
|
|
13702
13709
|
breakpoint: a ? "99999px" : N.data.breakpoint
|
|
13703
13710
|
}),
|
|
@@ -13726,7 +13733,7 @@ const ys = {
|
|
|
13726
13733
|
atomElement: U,
|
|
13727
13734
|
editor: g,
|
|
13728
13735
|
elementAttributes: U.attributes,
|
|
13729
|
-
context:
|
|
13736
|
+
context: Q,
|
|
13730
13737
|
isMobileActive: a
|
|
13731
13738
|
})
|
|
13732
13739
|
);
|
|
@@ -13737,7 +13744,7 @@ const ys = {
|
|
|
13737
13744
|
elementType: u.type,
|
|
13738
13745
|
elementAttributes: v,
|
|
13739
13746
|
editor: g,
|
|
13740
|
-
context:
|
|
13747
|
+
context: Q,
|
|
13741
13748
|
isMobileActive: a
|
|
13742
13749
|
})
|
|
13743
13750
|
));
|
|
@@ -13752,8 +13759,8 @@ function $3(d) {
|
|
|
13752
13759
|
"editor",
|
|
13753
13760
|
"elementAttributes"
|
|
13754
13761
|
]);
|
|
13755
|
-
const { element: N, atomElement: x, attributes: v } = s,
|
|
13756
|
-
if (!
|
|
13762
|
+
const { element: N, atomElement: x, attributes: v } = s, Q = ys[x.type];
|
|
13763
|
+
if (!Q)
|
|
13757
13764
|
throw new Error("Invalid Com");
|
|
13758
13765
|
return fe.getBlockByType(N.type).void ? /* @__PURE__ */ E.createElement(E.Fragment, null, /* @__PURE__ */ E.createElement(
|
|
13759
13766
|
eT,
|
|
@@ -13767,7 +13774,7 @@ function $3(d) {
|
|
|
13767
13774
|
isMobileActive: s.isMobileActive
|
|
13768
13775
|
}
|
|
13769
13776
|
)) : /* @__PURE__ */ E.createElement(
|
|
13770
|
-
|
|
13777
|
+
Q,
|
|
13771
13778
|
J(D({}, s), {
|
|
13772
13779
|
attributes: v,
|
|
13773
13780
|
context: e,
|
|
@@ -13789,9 +13796,9 @@ const eT = ({
|
|
|
13789
13796
|
}) => {
|
|
13790
13797
|
const x = Tn(0);
|
|
13791
13798
|
x.current = 0;
|
|
13792
|
-
let v = !1,
|
|
13799
|
+
let v = !1, Q = !1;
|
|
13793
13800
|
const P = u, U = !!fe.getBlockByType(N.type).void;
|
|
13794
|
-
return z.isWidgetElement(N) ? N.data.contentEditable && (v = !0, a["data-slate-widget"] = !0) : U && ((s.children.every((
|
|
13801
|
+
return z.isWidgetElement(N) ? N.data.contentEditable && (v = !0, a["data-slate-widget"] = !0) : U && ((s.children.every((B) => z.isTextNode(B)) || s.children.length === 0 || z.isTextElement(s) || z.isTextListElement(s) || z.isButtonElement(s)) && (v = !0), N.children.length === 1 && z.isTextNode(N.children[0]) && N.children[0].text.trim() === "" && (Q = !0)), /* @__PURE__ */ E.createElement(E.Fragment, null, /* @__PURE__ */ E.createElement(
|
|
13795
13802
|
O0,
|
|
13796
13803
|
{
|
|
13797
13804
|
attributes: a,
|
|
@@ -13803,7 +13810,7 @@ const eT = ({
|
|
|
13803
13810
|
isMobileActive: g,
|
|
13804
13811
|
isEmptyChildren: v,
|
|
13805
13812
|
isVoidElementRoot: U,
|
|
13806
|
-
isEmptyTextNode:
|
|
13813
|
+
isEmptyTextNode: Q
|
|
13807
13814
|
}
|
|
13808
13815
|
));
|
|
13809
13816
|
};
|
|
@@ -13817,7 +13824,7 @@ function O0({
|
|
|
13817
13824
|
isMobileActive: N,
|
|
13818
13825
|
isEmptyChildren: x,
|
|
13819
13826
|
isVoidElementRoot: v,
|
|
13820
|
-
isEmptyTextNode:
|
|
13827
|
+
isEmptyTextNode: Q
|
|
13821
13828
|
}) {
|
|
13822
13829
|
const P = ys[e.type], U = gu();
|
|
13823
13830
|
return /* @__PURE__ */ E.createElement(
|
|
@@ -13831,16 +13838,16 @@ function O0({
|
|
|
13831
13838
|
attributes: s,
|
|
13832
13839
|
placeholder: g
|
|
13833
13840
|
},
|
|
13834
|
-
!x && /* @__PURE__ */ E.createElement(E.Fragment, null, e.children.map((_,
|
|
13835
|
-
var
|
|
13836
|
-
if (z.isElement(_) && ((
|
|
13841
|
+
!x && /* @__PURE__ */ E.createElement(E.Fragment, null, e.children.map((_, B) => {
|
|
13842
|
+
var q;
|
|
13843
|
+
if (z.isElement(_) && ((q = _.attributes["css-class"]) == null ? void 0 : q.includes(
|
|
13837
13844
|
kg
|
|
13838
13845
|
))) {
|
|
13839
|
-
const
|
|
13840
|
-
if (
|
|
13841
|
-
return /* @__PURE__ */ E.createElement(E.Fragment, { key:
|
|
13846
|
+
const w = Array.isArray(a) ? a == null ? void 0 : a[d.current++] : a;
|
|
13847
|
+
if (w)
|
|
13848
|
+
return /* @__PURE__ */ E.createElement(E.Fragment, { key: B }, w, d.current);
|
|
13842
13849
|
}
|
|
13843
|
-
return z.isTextNode(_) ? /* @__PURE__ */ E.createElement(Ds, { key:
|
|
13850
|
+
return z.isTextNode(_) ? /* @__PURE__ */ E.createElement(Ds, { key: B, leaf: _, text: _, contentUneditable: !0 }, _.text) : /* @__PURE__ */ E.createElement(E.Fragment, { key: B }, /* @__PURE__ */ E.createElement(
|
|
13844
13851
|
O0,
|
|
13845
13852
|
{
|
|
13846
13853
|
isEmptyChildren: x,
|
|
@@ -13852,12 +13859,12 @@ function O0({
|
|
|
13852
13859
|
isMobileActive: N
|
|
13853
13860
|
}
|
|
13854
13861
|
));
|
|
13855
|
-
}), v &&
|
|
13862
|
+
}), v && Q && d.current === 0 && /* @__PURE__ */ E.createElement(E.Fragment, null, a)),
|
|
13856
13863
|
x && a
|
|
13857
13864
|
);
|
|
13858
13865
|
}
|
|
13859
13866
|
const tT = (e, u) => {
|
|
13860
|
-
const [a] =
|
|
13867
|
+
const [a] = Ae.nodes(e, {
|
|
13861
13868
|
match: (s) => $r.isText(s) && !!s[u],
|
|
13862
13869
|
mode: "all"
|
|
13863
13870
|
});
|
|
@@ -13900,35 +13907,35 @@ const tT = (e, u) => {
|
|
|
13900
13907
|
universalElementPath: d,
|
|
13901
13908
|
lock: g,
|
|
13902
13909
|
selectedNodePath: N
|
|
13903
|
-
} = ra(), x = Er(s), v = Er(d),
|
|
13904
|
-
let
|
|
13910
|
+
} = ra(), x = Er(s), v = Er(d), Q = Er(N), P = Lu(), U = gu(), _ = Er(g);
|
|
13911
|
+
let B = null;
|
|
13905
13912
|
try {
|
|
13906
|
-
|
|
13913
|
+
B = Qe.getWindow(U);
|
|
13907
13914
|
} catch (j) {
|
|
13908
13915
|
}
|
|
13909
|
-
const
|
|
13916
|
+
const q = Au((j) => /* @__PURE__ */ E.createElement(uT, D({}, j)), []), V = Au((j) => /* @__PURE__ */ E.createElement(Ds, D({}, j)), []), w = Au(
|
|
13910
13917
|
(j) => {
|
|
13911
13918
|
if (!j.target)
|
|
13912
13919
|
return;
|
|
13913
|
-
const
|
|
13920
|
+
const Ee = j.type === "pointerdown", pe = v.current;
|
|
13914
13921
|
try {
|
|
13915
13922
|
let oe = Qe.toSlateNode(U, j.target), ee = Qe.findPath(U, oe);
|
|
13916
|
-
if (_.current &&
|
|
13923
|
+
if (_.current && Ee && !(Q.current && (je.equals(ee, Q.current) || je.isAncestor(Q.current, ee)))) {
|
|
13917
13924
|
j.preventDefault();
|
|
13918
13925
|
return;
|
|
13919
13926
|
}
|
|
13920
13927
|
if (x.current && pe && !je.isAncestor(pe, ee) && !je.equals(ee, pe))
|
|
13921
13928
|
return null;
|
|
13922
13929
|
let re;
|
|
13923
|
-
const Ve = !!
|
|
13930
|
+
const Ve = !!Ae.above(U, {
|
|
13924
13931
|
at: ee,
|
|
13925
13932
|
match: (Ce) => z.isUnsetElement(Ce)
|
|
13926
13933
|
});
|
|
13927
|
-
if (z.isUniversalElement(oe) || z.isVoidBlockElement(oe) ? re = [oe, ee] : re =
|
|
13934
|
+
if (z.isUniversalElement(oe) || z.isVoidBlockElement(oe) ? re = [oe, ee] : re = Ae.above(U, {
|
|
13928
13935
|
at: ee,
|
|
13929
13936
|
match: (Ce) => x.current ? z.isVoidBlockElement(Ce) : z.isUniversalElement(Ce) || z.isVoidBlockElement(Ce)
|
|
13930
13937
|
}), re) {
|
|
13931
|
-
const Ce =
|
|
13938
|
+
const Ce = Ae.above(U, {
|
|
13932
13939
|
at: re[1],
|
|
13933
13940
|
match(_e, ft) {
|
|
13934
13941
|
return z.isVoidBlockElement(_e);
|
|
@@ -13936,7 +13943,7 @@ const tT = (e, u) => {
|
|
|
13936
13943
|
});
|
|
13937
13944
|
oe = (Ce == null ? void 0 : Ce[0]) || re[0], ee = (Ce == null ? void 0 : Ce[1]) || re[1];
|
|
13938
13945
|
} else {
|
|
13939
|
-
const [Ce] =
|
|
13946
|
+
const [Ce] = Ae.nodes(U, {
|
|
13940
13947
|
at: ee,
|
|
13941
13948
|
match: (_e, ft) => !(!je.equals(ft, ee) && !je.isAncestor(ft, ee) || !z.isBlockElement(_e) || z.isUnsetElement(_e) || z.isTextListItemElement(_e) || z.isColumnElement(_e) || z.isGroupElement(_e)),
|
|
13942
13949
|
mode: "lowest"
|
|
@@ -13946,7 +13953,7 @@ const tT = (e, u) => {
|
|
|
13946
13953
|
oe = Ce[0], ee = Ce[1];
|
|
13947
13954
|
}
|
|
13948
13955
|
if (z.isContentElement(oe)) {
|
|
13949
|
-
if ((fe.getBlockByType(oe.type).void || re || Ve) &&
|
|
13956
|
+
if ((fe.getBlockByType(oe.type).void || re || Ve) && Ee) {
|
|
13950
13957
|
let _e = null;
|
|
13951
13958
|
ol(j.target) && (j.target.getAttribute("data-slate-node") === "text" || j.target.getAttribute("data-slate-string") === "true" ? _e = j.target : _e = j.target.querySelector(
|
|
13952
13959
|
"[data-slate-node=text], [data-slate-string=true]"
|
|
@@ -13954,7 +13961,7 @@ const tT = (e, u) => {
|
|
|
13954
13961
|
Be.deselect(U);
|
|
13955
13962
|
}, 0));
|
|
13956
13963
|
}
|
|
13957
|
-
} else if (
|
|
13964
|
+
} else if (Ee) {
|
|
13958
13965
|
let Ce = null;
|
|
13959
13966
|
ol(j.target) && (j.target.getAttribute("data-slate-node") === "text" || j.target.getAttribute("data-slate-string") === "true" ? Ce = j.target : Ce = j.target.querySelector(
|
|
13960
13967
|
"[data-slate-node=text], [data-slate-string=true]"
|
|
@@ -13968,7 +13975,7 @@ const tT = (e, u) => {
|
|
|
13968
13975
|
[
|
|
13969
13976
|
U,
|
|
13970
13977
|
_,
|
|
13971
|
-
|
|
13978
|
+
Q,
|
|
13972
13979
|
x,
|
|
13973
13980
|
v
|
|
13974
13981
|
]
|
|
@@ -13981,52 +13988,52 @@ const tT = (e, u) => {
|
|
|
13981
13988
|
window.removeEventListener("mouseout", j);
|
|
13982
13989
|
};
|
|
13983
13990
|
}, [u]);
|
|
13984
|
-
const
|
|
13991
|
+
const W = U.getSelectedBlockElement();
|
|
13985
13992
|
St(() => {
|
|
13986
13993
|
var oe, ee, re;
|
|
13987
|
-
if (!
|
|
13994
|
+
if (!B || !((oe = U.selection) != null && oe.anchor.path))
|
|
13988
13995
|
return;
|
|
13989
|
-
const j =
|
|
13996
|
+
const j = Ae.above(U, {
|
|
13990
13997
|
at: (ee = U.selection) == null ? void 0 : ee.anchor.path
|
|
13991
|
-
}),
|
|
13992
|
-
if (
|
|
13993
|
-
const Ve =
|
|
13998
|
+
}), Ee = j == null ? void 0 : j[0], pe = (re = Ae.next(U)) == null ? void 0 : re[1];
|
|
13999
|
+
if (Ee && Ee.type === ne.LINE_BREAK && pe) {
|
|
14000
|
+
const Ve = Ae.start(U, pe);
|
|
13994
14001
|
Be.select(U, Ve);
|
|
13995
14002
|
}
|
|
13996
|
-
}, [
|
|
13997
|
-
const
|
|
14003
|
+
}, [B, U, W]);
|
|
14004
|
+
const le = Au(
|
|
13998
14005
|
(j) => {
|
|
13999
14006
|
if (P.readOnly)
|
|
14000
14007
|
return;
|
|
14001
|
-
const
|
|
14002
|
-
|
|
14008
|
+
const Ee = w(j);
|
|
14009
|
+
Ee && a(Ee);
|
|
14003
14010
|
},
|
|
14004
|
-
[P.readOnly,
|
|
14011
|
+
[P.readOnly, w, a]
|
|
14005
14012
|
), he = Au(
|
|
14006
14013
|
(j) => {
|
|
14007
14014
|
if (P.readOnly)
|
|
14008
14015
|
return;
|
|
14009
|
-
const
|
|
14010
|
-
|
|
14016
|
+
const Ee = w(j);
|
|
14017
|
+
Ee && u(Ee);
|
|
14011
14018
|
},
|
|
14012
|
-
[P.readOnly,
|
|
14019
|
+
[P.readOnly, w, u]
|
|
14013
14020
|
), ge = Au(
|
|
14014
14021
|
(j) => {
|
|
14015
14022
|
if (j.detail >= 3) {
|
|
14016
|
-
if (j.preventDefault(), j.stopPropagation(),
|
|
14023
|
+
if (j.preventDefault(), j.stopPropagation(), B && es(j.target) && j.target !== B.document.documentElement)
|
|
14017
14024
|
try {
|
|
14018
14025
|
let pe = Qe.toSlateNode(U, j.target);
|
|
14019
14026
|
if (!z.isBlockElement(pe)) {
|
|
14020
14027
|
const oe = Qe.findPath(U, pe);
|
|
14021
|
-
let ee =
|
|
14028
|
+
let ee = Ae.parent(U, oe);
|
|
14022
14029
|
for (; ee; )
|
|
14023
|
-
z.isBlockElement(ee[0]) ? (pe = ee[0], ee = void 0) : ee =
|
|
14030
|
+
z.isBlockElement(ee[0]) ? (pe = ee[0], ee = void 0) : ee = Ae.parent(
|
|
14024
14031
|
U,
|
|
14025
14032
|
ee[1]
|
|
14026
14033
|
);
|
|
14027
14034
|
}
|
|
14028
14035
|
if (z.isTextElement(pe) || z.isButtonElement(pe)) {
|
|
14029
|
-
const oe = Qe.findPath(U, pe), ee =
|
|
14036
|
+
const oe = Qe.findPath(U, pe), ee = Ae.range(U, oe);
|
|
14030
14037
|
Be.select(U, ee);
|
|
14031
14038
|
}
|
|
14032
14039
|
} catch (pe) {
|
|
@@ -14034,7 +14041,7 @@ const tT = (e, u) => {
|
|
|
14034
14041
|
}
|
|
14035
14042
|
return;
|
|
14036
14043
|
}
|
|
14037
|
-
if (j.preventDefault(),
|
|
14044
|
+
if (j.preventDefault(), B && es(j.target) && j.target !== B.document.documentElement)
|
|
14038
14045
|
try {
|
|
14039
14046
|
const pe = Qe.toSlateNode(U, j.target), oe = Qe.findPath(U, pe);
|
|
14040
14047
|
if (z.isMergetagElement(pe))
|
|
@@ -14050,7 +14057,7 @@ const tT = (e, u) => {
|
|
|
14050
14057
|
).getSelection();
|
|
14051
14058
|
U.deselect(), Ce && (Ce.empty(), Ce.removeAllRanges());
|
|
14052
14059
|
} else {
|
|
14053
|
-
const Ve =
|
|
14060
|
+
const Ve = Ae.above(U, {
|
|
14054
14061
|
at: oe,
|
|
14055
14062
|
match: z.isMergetagElement
|
|
14056
14063
|
});
|
|
@@ -14061,7 +14068,7 @@ const tT = (e, u) => {
|
|
|
14061
14068
|
}
|
|
14062
14069
|
window.dispatchEvent(new Event(Pl.EDITOR_CLICK));
|
|
14063
14070
|
},
|
|
14064
|
-
[U,
|
|
14071
|
+
[U, B]
|
|
14065
14072
|
);
|
|
14066
14073
|
return P.localeData && Fg.setLocaleData(P.localeData), Eu(() => /* @__PURE__ */ E.createElement(E.Fragment, null, /* @__PURE__ */ E.createElement(
|
|
14067
14074
|
Vg,
|
|
@@ -14078,12 +14085,12 @@ const tT = (e, u) => {
|
|
|
14078
14085
|
/* @__PURE__ */ E.createElement("div", { id: "easy-email-pro-editor" }, /* @__PURE__ */ E.createElement(
|
|
14079
14086
|
Dg,
|
|
14080
14087
|
{
|
|
14081
|
-
onPointerDown:
|
|
14088
|
+
onPointerDown: le,
|
|
14082
14089
|
onMouseMove: he,
|
|
14083
14090
|
onClick: ge,
|
|
14084
14091
|
autoFocus: !1,
|
|
14085
|
-
renderElement:
|
|
14086
|
-
renderLeaf:
|
|
14092
|
+
renderElement: q,
|
|
14093
|
+
renderLeaf: V,
|
|
14087
14094
|
onDragStart: () => !0,
|
|
14088
14095
|
onDrop: () => !0,
|
|
14089
14096
|
onDragOver: () => !0,
|
|
@@ -14103,9 +14110,9 @@ const tT = (e, u) => {
|
|
|
14103
14110
|
P.readOnly,
|
|
14104
14111
|
ge,
|
|
14105
14112
|
he,
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
|
|
14113
|
+
le,
|
|
14114
|
+
q,
|
|
14115
|
+
V
|
|
14109
14116
|
]);
|
|
14110
14117
|
}, LT = ({
|
|
14111
14118
|
children: e
|