archgine 1.0.78 → 1.0.80

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.
@@ -1,4296 +1 @@
1
- var Ve = Object.defineProperty;
2
- var Ge = (u, e, r) => e in u ? Ve(u, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : u[e] = r;
3
- var ze = (u, e) => () => (e || u((e = { exports: {} }).exports, e), e.exports);
4
- var N = (u, e, r) => Ge(u, typeof e != "symbol" ? e + "" : e, r);
5
- var qu = (u, e, r) => new Promise((t, n) => {
6
- var i = (s) => {
7
- try {
8
- l(r.next(s));
9
- } catch (p) {
10
- n(p);
11
- }
12
- }, o = (s) => {
13
- try {
14
- l(r.throw(s));
15
- } catch (p) {
16
- n(p);
17
- }
18
- }, l = (s) => s.done ? t(s.value) : Promise.resolve(s.value).then(i, o);
19
- l((r = r.apply(u, e)).next());
20
- });
21
- var Ir = ze((Me) => {
22
- var He = {
23
- name: "TinyEngine",
24
- containerId: "tinyEngine",
25
- canvas: "tinyEngine",
26
- width: 0,
27
- height: 0,
28
- aspect: 1,
29
- dpr: 1,
30
- alpha: !1,
31
- color: "#232323",
32
- fps: 60,
33
- syncDelay: 800,
34
- animateDuration: 600,
35
- mergeRendering: !1,
36
- // 合并渲染,相同材质合并渲染;
37
- sliceRendering: !0,
38
- // 切片渲染
39
- sliceDuration: 15,
40
- // 切片渲染间隔:1 ~ 40
41
- usedCache: !1,
42
- // 开启缓存,相同 featureKey 的图形使用 texture,绘制时需先进行画布TRS
43
- separateCache: !1,
44
- // 独立缓存,对于需要TRS的,保存独立 texture,渲染时直接 drawImage
45
- debounceCache: !0,
46
- // 防抖缓存,交互过程中使用缓存渲染,最后一帧生成缓存
47
- dynamicLoading: !0,
48
- // 动态加载,处理大文件时,海量数据动态加入到 scene 中,避免loading时间超长
49
- svgLoadingType: 0,
50
- // svg加载方式: 默认:0:sax,1:DOMParser
51
- showPoints: !1,
52
- wireframe: !1,
53
- castShadow: !1,
54
- workerRender: !1,
55
- monitorDuration: 1e4,
56
- light: {
57
- color: "#f2f2f2",
58
- position: [-6, 6, 0],
59
- castShadow: !0,
60
- shadowBlur: 16
61
- },
62
- camera: {
63
- left: -1,
64
- right: 1,
65
- top: 1,
66
- bottom: -1,
67
- aspect: 1,
68
- eye: [0, 0, 0],
69
- up: [0, 0, 1],
70
- helperEnable: !0
71
- },
72
- controls: {
73
- target: [0, 0, 0],
74
- minDistance: 0.1,
75
- maxDistance: 1e3,
76
- enablePan: !0,
77
- enableRotate: !0,
78
- enableZoom: !0,
79
- focusMode: !0,
80
- autoRotate: !1,
81
- autoRotateSpeed: 0.5,
82
- enableDamping: !0,
83
- dampingFactor: 0.2
84
- },
85
- gridHelper: {
86
- fill: "#e3e3e3"
87
- },
88
- axesHelper: {},
89
- displayUnits: "",
90
- // 公制: metric、英制: imperial,默认空为metric
91
- tooltip: !0,
92
- // 鼠标悬停提示,显示当前资源标签文本
93
- assetType: "rm",
94
- // 当前显示、操作的资源类型,需按照配置隐藏冲突的图层,避免鼠标交互时由于图层重叠顺序获取不到
95
- zoomToSelectEnable: !1,
96
- // 按选区缩放相机位置
97
- selectEnable: !1,
98
- // 是否开启单选资源
99
- multiSelectEnable: !1,
100
- // 是否开启多选资源
101
- socialDistanceEnable: !1,
102
- // 是否开始安全距离显示
103
- socialDistance: {
104
- // colors: ['#45b787', '#F26666'], // 安全距离圆形描边默认绿色,有交叉时红色
105
- radius: 3
106
- // 安全距离半径
107
- }
108
- };
109
- function $u(u, e) {
110
- const r = u.x * Math.cos(e) - u.y * Math.sin(e), t = u.y * Math.cos(e) + u.x * Math.sin(e);
111
- u.x = r, u.y = t;
112
- }
113
- function je(u, e, r) {
114
- u.x += e, u.y += r;
115
- }
116
- function Xu(u, e) {
117
- u.x *= e, u.y *= e;
118
- }
119
- class au {
120
- constructor(e) {
121
- N(this, "commands");
122
- this.commands = [], e && e instanceof au ? this.commands.push(...e.commands) : e && (this.commands = Qe(e));
123
- }
124
- addPath(e) {
125
- e && e instanceof au && this.commands.push(...e.commands);
126
- }
127
- moveTo(e, r) {
128
- this.commands.push(["M", e, r]);
129
- }
130
- lineTo(e, r) {
131
- this.commands.push(["L", e, r]);
132
- }
133
- arc(e, r, t, n, i, o) {
134
- this.commands.push(["AC", e, r, t, n, i, !!o]);
135
- }
136
- arcTo(e, r, t, n, i) {
137
- this.commands.push(["AT", e, r, t, n, i]);
138
- }
139
- ellipse(e, r, t, n, i, o, l, s) {
140
- this.commands.push(["E", e, r, t, n, i, o, l, !!s]);
141
- }
142
- closePath() {
143
- this.commands.push(["Z"]);
144
- }
145
- bezierCurveTo(e, r, t, n, i, o) {
146
- this.commands.push(["C", e, r, t, n, i, o]);
147
- }
148
- quadraticCurveTo(e, r, t, n) {
149
- this.commands.push(["Q", e, r, t, n]);
150
- }
151
- rect(e, r, t, n) {
152
- this.commands.push(["R", e, r, t, n]);
153
- }
154
- roundRect(e, r, t, n, i) {
155
- typeof i == "undefined" ? this.commands.push(["RR", e, r, t, n, 0]) : this.commands.push(["RR", e, r, t, n, i]);
156
- }
157
- }
158
- function xu(u, e) {
159
- let r = 0, t = 0, n, i, o, l, s, p, c, D, f, d, v, C, A, h, y, b, F, T, x, V, J, g = null, R = null, m = null, S = null, G = null, k = null;
160
- u.beginPath();
161
- for (let w = 0; w < e.length; ++w) {
162
- T = e[w][0], T !== "S" && T !== "s" && T !== "C" && T !== "c" && (g = null, R = null), T !== "T" && T !== "t" && T !== "Q" && T !== "q" && (m = null, S = null);
163
- let a;
164
- switch (T) {
165
- case "m":
166
- case "M":
167
- a = e[w], T === "m" ? (r += a[1], t += a[2]) : (r = a[1], t = a[2]), (T === "M" || !G) && (G = { x: r, y: t }), u.moveTo(r, t);
168
- break;
169
- case "l":
170
- a = e[w], r += a[1], t += a[2], u.lineTo(r, t);
171
- break;
172
- case "L":
173
- a = e[w], r = a[1], t = a[2], u.lineTo(r, t);
174
- break;
175
- case "H":
176
- a = e[w], r = a[1], u.lineTo(r, t);
177
- break;
178
- case "h":
179
- a = e[w], r += a[1], u.lineTo(r, t);
180
- break;
181
- case "V":
182
- a = e[w], t = a[1], u.lineTo(r, t);
183
- break;
184
- case "v":
185
- a = e[w], t += a[1], u.lineTo(r, t);
186
- break;
187
- case "a":
188
- case "A":
189
- if (a = e[w], k === null)
190
- throw new Error("This should never happen");
191
- T === "a" ? (r += a[6], t += a[7]) : (r = a[6], t = a[7]), h = a[1], y = a[2], c = a[3] * Math.PI / 180, o = !!a[4], l = !!a[5], s = { x: r, y: t }, p = {
192
- x: (k.x - s.x) / 2,
193
- y: (k.y - s.y) / 2
194
- }, $u(p, -c), D = p.x * p.x / (h * h) + p.y * p.y / (y * y), D > 1 && (D = Math.sqrt(D), h *= D, y *= D), x = {
195
- x: h * p.y / y,
196
- y: -(y * p.x) / h
197
- }, f = h * h * y * y, d = h * h * p.y * p.y + y * y * p.x * p.x, l !== o ? Xu(x, Math.sqrt((f - d) / d) || 0) : Xu(x, -Math.sqrt((f - d) / d) || 0), i = Math.atan2((p.y - x.y) / y, (p.x - x.x) / h), n = Math.atan2(-(p.y + x.y) / y, -(p.x + x.x) / h), $u(x, c), je(x, (s.x + k.x) / 2, (s.y + k.y) / 2), u.save(), u.translate(x.x, x.y), u.rotate(c), u.scale(h, y), u.arc(0, 0, 1, i, n, !l), u.restore();
198
- break;
199
- case "C":
200
- a = e[w], g = a[3], R = a[4], r = a[5], t = a[6], u.bezierCurveTo(a[1], a[2], g, R, r, t);
201
- break;
202
- case "c":
203
- a = e[w], u.bezierCurveTo(a[1] + r, a[2] + t, a[3] + r, a[4] + t, a[5] + r, a[6] + t), g = a[3] + r, R = a[4] + t, r += a[5], t += a[6];
204
- break;
205
- case "S":
206
- a = e[w], (g === null || R === null) && (g = r, R = t), u.bezierCurveTo(2 * r - g, 2 * t - R, a[1], a[2], a[3], a[4]), g = a[1], R = a[2], r = a[3], t = a[4];
207
- break;
208
- case "s":
209
- a = e[w], (g === null || R === null) && (g = r, R = t), u.bezierCurveTo(2 * r - g, 2 * t - R, a[1] + r, a[2] + t, a[3] + r, a[4] + t), g = a[1] + r, R = a[2] + t, r += a[3], t += a[4];
210
- break;
211
- case "Q":
212
- a = e[w], m = a[1], S = a[2], r = a[3], t = a[4], u.quadraticCurveTo(m, S, r, t);
213
- break;
214
- case "q":
215
- a = e[w], m = a[1] + r, S = a[2] + t, r += a[3], t += a[4], u.quadraticCurveTo(m, S, r, t);
216
- break;
217
- case "T":
218
- a = e[w], (m === null || S === null) && (m = r, S = t), m = 2 * r - m, S = 2 * t - S, r = a[1], t = a[2], u.quadraticCurveTo(m, S, r, t);
219
- break;
220
- case "t":
221
- a = e[w], (m === null || S === null) && (m = r, S = t), m = 2 * r - m, S = 2 * t - S, r += a[1], t += a[2], u.quadraticCurveTo(m, S, r, t);
222
- break;
223
- case "z":
224
- case "Z":
225
- G && (r = G.x, t = G.y), G = null, u.closePath();
226
- break;
227
- case "AC":
228
- a = e[w], r = a[1], t = a[2], A = a[3], i = a[4], n = a[5], V = a[6], u.arc(r, t, A, i, n, V);
229
- break;
230
- case "AT":
231
- a = e[w], v = a[1], C = a[2], r = a[3], t = a[4], A = a[5], u.arcTo(v, C, r, t, A);
232
- break;
233
- case "E":
234
- a = e[w], r = a[1], t = a[2], h = a[3], y = a[4], c = a[5], i = a[6], n = a[7], V = a[8], u.save(), u.translate(r, t), u.rotate(c), u.scale(h, y), u.arc(0, 0, 1, i, n, V), u.restore();
235
- break;
236
- case "R":
237
- a = e[w], r = a[1], t = a[2], b = a[3], F = a[4], G = { x: r, y: t }, u.rect(r, t, b, F);
238
- break;
239
- case "RR":
240
- a = e[w], r = a[1], t = a[2], b = a[3], F = a[4], J = a[5], G = { x: r, y: t }, u.roundRect(r, t, b, F, J);
241
- break;
242
- }
243
- k ? (k.x = r, k.y = t) : k = { x: r, y: t };
244
- }
245
- }
246
- function $e(u) {
247
- if (!u || !u.CanvasRenderingContext2D || u.Path2D) return;
248
- const { CanvasRenderingContext2D: e } = u, r = e == null ? void 0 : e.prototype.fill, t = e == null ? void 0 : e.prototype.stroke, n = e == null ? void 0 : e.prototype.isPointInPath;
249
- e.prototype.fill = function(...o) {
250
- if (o[0] instanceof au) {
251
- const l = o[0], s = o[1] || "nonzero";
252
- xu(this, l.commands), r.apply(this, [s]);
253
- } else {
254
- const l = o[0] || "nonzero";
255
- return r.apply(this, [l]);
256
- }
257
- }, e.prototype.stroke = function(o) {
258
- o && xu(this, o.commands), t.apply(this);
259
- }, e.prototype.isPointInPath = function(...o) {
260
- if (o[0] instanceof au) {
261
- const l = o[0], s = o[1], p = o[2], c = o[3] || "nonzero";
262
- return xu(this, l.commands), n.apply(this, [s, p, c]);
263
- } else
264
- return n.apply(this, o);
265
- }, u.Path2D = au;
266
- }
267
- const cu = {
268
- a: 7,
269
- c: 6,
270
- h: 1,
271
- l: 2,
272
- m: 2,
273
- q: 4,
274
- s: 4,
275
- t: 2,
276
- v: 1,
277
- z: 0
278
- }, Xe = /([astvzqmhlc])([^astvzqmhlc]*)/gi, Ye = /-?[0-9]*\.?[0-9]+(?:e[-+]?\d+)?/gi;
279
- function We(u) {
280
- const e = u.match(Ye);
281
- return e ? e.map(Number) : [];
282
- }
283
- function Qe(u) {
284
- const e = [], r = String(u).trim();
285
- return r[0] !== "M" && r[0] !== "m" || r.replace(Xe, (t, n, i) => {
286
- const o = We(i);
287
- let l = n.toLowerCase(), s = n;
288
- if (l === "m" && o.length > 2 && (e.push([s, ...o.splice(0, 2)]), l = "l", s = s === "m" ? "l" : "L"), o.length < cu[l])
289
- return "";
290
- for (e.push([s, ...o.splice(0, cu[l])]); o.length >= cu[l] && o.length && cu[l]; )
291
- e.push([s, ...o.splice(0, cu[l])]);
292
- return "";
293
- }), e;
294
- }
295
- var Z = {}, W = {};
296
- function Ze(u, e, r) {
297
- if (r === void 0 && (r = Array.prototype), u && typeof r.find == "function")
298
- return r.find.call(u, e);
299
- for (var t = 0; t < u.length; t++)
300
- if (Object.prototype.hasOwnProperty.call(u, t)) {
301
- var n = u[t];
302
- if (e.call(void 0, n, t, u))
303
- return n;
304
- }
305
- }
306
- function _u(u, e) {
307
- return e === void 0 && (e = Object), e && typeof e.freeze == "function" ? e.freeze(u) : u;
308
- }
309
- function Je(u, e) {
310
- if (u === null || typeof u != "object")
311
- throw new TypeError("target is not an object");
312
- for (var r in e)
313
- Object.prototype.hasOwnProperty.call(e, r) && (u[r] = e[r]);
314
- return u;
315
- }
316
- var le = _u({
317
- /**
318
- * `text/html`, the only mime type that triggers treating an XML document as HTML.
319
- *
320
- * @see DOMParser.SupportedType.isHTML
321
- * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
322
- * @see https://en.wikipedia.org/wiki/HTML Wikipedia
323
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
324
- * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring WHATWG HTML Spec
325
- */
326
- HTML: "text/html",
327
- /**
328
- * Helper method to check a mime type if it indicates an HTML document
329
- *
330
- * @param {string} [value]
331
- * @returns {boolean}
332
- *
333
- * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
334
- * @see https://en.wikipedia.org/wiki/HTML Wikipedia
335
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
336
- * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring */
337
- isHTML: function(u) {
338
- return u === le.HTML;
339
- },
340
- /**
341
- * `application/xml`, the standard mime type for XML documents.
342
- *
343
- * @see https://www.iana.org/assignments/media-types/application/xml IANA MimeType registration
344
- * @see https://tools.ietf.org/html/rfc7303#section-9.1 RFC 7303
345
- * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
346
- */
347
- XML_APPLICATION: "application/xml",
348
- /**
349
- * `text/html`, an alias for `application/xml`.
350
- *
351
- * @see https://tools.ietf.org/html/rfc7303#section-9.2 RFC 7303
352
- * @see https://www.iana.org/assignments/media-types/text/xml IANA MimeType registration
353
- * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
354
- */
355
- XML_TEXT: "text/xml",
356
- /**
357
- * `application/xhtml+xml`, indicates an XML document that has the default HTML namespace,
358
- * but is parsed as an XML document.
359
- *
360
- * @see https://www.iana.org/assignments/media-types/application/xhtml+xml IANA MimeType registration
361
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument WHATWG DOM Spec
362
- * @see https://en.wikipedia.org/wiki/XHTML Wikipedia
363
- */
364
- XML_XHTML_APPLICATION: "application/xhtml+xml",
365
- /**
366
- * `image/svg+xml`,
367
- *
368
- * @see https://www.iana.org/assignments/media-types/image/svg+xml IANA MimeType registration
369
- * @see https://www.w3.org/TR/SVG11/ W3C SVG 1.1
370
- * @see https://en.wikipedia.org/wiki/Scalable_Vector_Graphics Wikipedia
371
- */
372
- XML_SVG_IMAGE: "image/svg+xml"
373
- }), ce = _u({
374
- /**
375
- * The XHTML namespace.
376
- *
377
- * @see http://www.w3.org/1999/xhtml
378
- */
379
- HTML: "http://www.w3.org/1999/xhtml",
380
- /**
381
- * Checks if `uri` equals `NAMESPACE.HTML`.
382
- *
383
- * @param {string} [uri]
384
- *
385
- * @see NAMESPACE.HTML
386
- */
387
- isHTML: function(u) {
388
- return u === ce.HTML;
389
- },
390
- /**
391
- * The SVG namespace.
392
- *
393
- * @see http://www.w3.org/2000/svg
394
- */
395
- SVG: "http://www.w3.org/2000/svg",
396
- /**
397
- * The `xml:` namespace.
398
- *
399
- * @see http://www.w3.org/XML/1998/namespace
400
- */
401
- XML: "http://www.w3.org/XML/1998/namespace",
402
- /**
403
- * The `xmlns:` namespace
404
- *
405
- * @see https://www.w3.org/2000/xmlns/
406
- */
407
- XMLNS: "http://www.w3.org/2000/xmlns/"
408
- });
409
- W.assign = Je;
410
- W.find = Ze;
411
- W.freeze = _u;
412
- W.MIME_TYPE = le;
413
- W.NAMESPACE = ce;
414
- var pe = W, z = pe.find, hu = pe.NAMESPACE;
415
- function Ke(u) {
416
- return u !== "";
417
- }
418
- function ur(u) {
419
- return u ? u.split(/[\t\n\f\r ]+/).filter(Ke) : [];
420
- }
421
- function er(u, e) {
422
- return u.hasOwnProperty(e) || (u[e] = !0), u;
423
- }
424
- function Yu(u) {
425
- if (!u) return [];
426
- var e = ur(u);
427
- return Object.keys(e.reduce(er, {}));
428
- }
429
- function rr(u) {
430
- return function(e) {
431
- return u && u.indexOf(e) !== -1;
432
- };
433
- }
434
- function Au(u, e) {
435
- for (var r in u)
436
- Object.prototype.hasOwnProperty.call(u, r) && (e[r] = u[r]);
437
- }
438
- function I(u, e) {
439
- var r = u.prototype;
440
- if (!(r instanceof e)) {
441
- let n = function() {
442
- };
443
- var t = n;
444
- n.prototype = e.prototype, n = new n(), Au(r, n), u.prototype = r = n;
445
- }
446
- r.constructor != u && (typeof u != "function" && console.error("unknown Class:" + u), r.constructor = u);
447
- }
448
- var _ = {}, U = _.ELEMENT_NODE = 1, iu = _.ATTRIBUTE_NODE = 2, wu = _.TEXT_NODE = 3, fe = _.CDATA_SECTION_NODE = 4, De = _.ENTITY_REFERENCE_NODE = 5, tr = _.ENTITY_NODE = 6, he = _.PROCESSING_INSTRUCTION_NODE = 7, de = _.COMMENT_NODE = 8, me = _.DOCUMENT_NODE = 9, Ae = _.DOCUMENT_TYPE_NODE = 10, X = _.DOCUMENT_FRAGMENT_NODE = 11, nr = _.NOTATION_NODE = 12, O = {}, q = {};
449
- O.INDEX_SIZE_ERR = (q[1] = "Index size error", 1);
450
- O.DOMSTRING_SIZE_ERR = (q[2] = "DOMString size error", 2);
451
- var L = O.HIERARCHY_REQUEST_ERR = (q[3] = "Hierarchy request error", 3);
452
- O.WRONG_DOCUMENT_ERR = (q[4] = "Wrong document", 4);
453
- O.INVALID_CHARACTER_ERR = (q[5] = "Invalid character", 5);
454
- O.NO_DATA_ALLOWED_ERR = (q[6] = "No data allowed", 6);
455
- O.NO_MODIFICATION_ALLOWED_ERR = (q[7] = "No modification allowed", 7);
456
- var ge = O.NOT_FOUND_ERR = (q[8] = "Not found", 8);
457
- O.NOT_SUPPORTED_ERR = (q[9] = "Not supported", 9);
458
- var Wu = O.INUSE_ATTRIBUTE_ERR = (q[10] = "Attribute in use", 10);
459
- O.INVALID_STATE_ERR = (q[11] = "Invalid state", 11);
460
- O.SYNTAX_ERR = (q[12] = "Syntax error", 12);
461
- O.INVALID_MODIFICATION_ERR = (q[13] = "Invalid modification", 13);
462
- O.NAMESPACE_ERR = (q[14] = "Invalid namespace", 14);
463
- O.INVALID_ACCESS_ERR = (q[15] = "Invalid access", 15);
464
- function B(u, e) {
465
- if (e instanceof Error)
466
- var r = e;
467
- else
468
- r = this, Error.call(this, q[u]), this.message = q[u], Error.captureStackTrace && Error.captureStackTrace(this, B);
469
- return r.code = u, e && (this.message = this.message + ": " + e), r;
470
- }
471
- B.prototype = Error.prototype;
472
- Au(O, B);
473
- function $() {
474
- }
475
- $.prototype = {
476
- /**
477
- * The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
478
- * @standard level1
479
- */
480
- length: 0,
481
- /**
482
- * Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.
483
- * @standard level1
484
- * @param index unsigned long
485
- * Index into the collection.
486
- * @return Node
487
- * The node at the indexth position in the NodeList, or null if that is not a valid index.
488
- */
489
- item: function(u) {
490
- return u >= 0 && u < this.length ? this[u] : null;
491
- },
492
- toString: function(u, e) {
493
- for (var r = [], t = 0; t < this.length; t++)
494
- nu(this[t], r, u, e);
495
- return r.join("");
496
- },
497
- /**
498
- * @private
499
- * @param {function (Node):boolean} predicate
500
- * @returns {Node[]}
501
- */
502
- filter: function(u) {
503
- return Array.prototype.filter.call(this, u);
504
- },
505
- /**
506
- * @private
507
- * @param {Node} item
508
- * @returns {number}
509
- */
510
- indexOf: function(u) {
511
- return Array.prototype.indexOf.call(this, u);
512
- }
513
- };
514
- function ou(u, e) {
515
- this._node = u, this._refresh = e, ku(this);
516
- }
517
- function ku(u) {
518
- var e = u._node._inc || u._node.ownerDocument._inc;
519
- if (u._inc !== e) {
520
- var r = u._refresh(u._node);
521
- if (qe(u, "length", r.length), !u.$$length || r.length < u.$$length)
522
- for (var t = r.length; t in u; t++)
523
- Object.prototype.hasOwnProperty.call(u, t) && delete u[t];
524
- Au(r, u), u._inc = e;
525
- }
526
- }
527
- ou.prototype.item = function(u) {
528
- return ku(this), this[u] || null;
529
- };
530
- I(ou, $);
531
- function yu() {
532
- }
533
- function Ee(u, e) {
534
- for (var r = u.length; r--; )
535
- if (u[r] === e)
536
- return r;
537
- }
538
- function Qu(u, e, r, t) {
539
- if (t ? e[Ee(e, t)] = r : e[e.length++] = r, u) {
540
- r.ownerElement = u;
541
- var n = u.ownerDocument;
542
- n && (t && be(n, u, t), ar(n, u, r));
543
- }
544
- }
545
- function Zu(u, e, r) {
546
- var t = Ee(e, r);
547
- if (t >= 0) {
548
- for (var n = e.length - 1; t < n; )
549
- e[t] = e[++t];
550
- if (e.length = n, u) {
551
- var i = u.ownerDocument;
552
- i && (be(i, u, r), r.ownerElement = null);
553
- }
554
- } else
555
- throw new B(ge, new Error(u.tagName + "@" + r));
556
- }
557
- yu.prototype = {
558
- length: 0,
559
- item: $.prototype.item,
560
- getNamedItem: function(u) {
561
- for (var e = this.length; e--; ) {
562
- var r = this[e];
563
- if (r.nodeName == u)
564
- return r;
565
- }
566
- },
567
- setNamedItem: function(u) {
568
- var e = u.ownerElement;
569
- if (e && e != this._ownerElement)
570
- throw new B(Wu);
571
- var r = this.getNamedItem(u.nodeName);
572
- return Qu(this._ownerElement, this, u, r), r;
573
- },
574
- /* returns Node */
575
- setNamedItemNS: function(u) {
576
- var e = u.ownerElement, r;
577
- if (e && e != this._ownerElement)
578
- throw new B(Wu);
579
- return r = this.getNamedItemNS(u.namespaceURI, u.localName), Qu(this._ownerElement, this, u, r), r;
580
- },
581
- /* returns Node */
582
- removeNamedItem: function(u) {
583
- var e = this.getNamedItem(u);
584
- return Zu(this._ownerElement, this, e), e;
585
- },
586
- // raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR
587
- //for level2
588
- removeNamedItemNS: function(u, e) {
589
- var r = this.getNamedItemNS(u, e);
590
- return Zu(this._ownerElement, this, r), r;
591
- },
592
- getNamedItemNS: function(u, e) {
593
- for (var r = this.length; r--; ) {
594
- var t = this[r];
595
- if (t.localName == e && t.namespaceURI == u)
596
- return t;
597
- }
598
- return null;
599
- }
600
- };
601
- function ve() {
602
- }
603
- ve.prototype = {
604
- /**
605
- * The DOMImplementation.hasFeature() method returns a Boolean flag indicating if a given feature is supported.
606
- * The different implementations fairly diverged in what kind of features were reported.
607
- * The latest version of the spec settled to force this method to always return true, where the functionality was accurate and in use.
608
- *
609
- * @deprecated It is deprecated and modern browsers return true in all cases.
610
- *
611
- * @param {string} feature
612
- * @param {string} [version]
613
- * @returns {boolean} always true
614
- *
615
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature MDN
616
- * @see https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-5CED94D7 DOM Level 1 Core
617
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-hasfeature DOM Living Standard
618
- */
619
- hasFeature: function(u, e) {
620
- return !0;
621
- },
622
- /**
623
- * Creates an XML Document object of the specified type with its document element.
624
- *
625
- * __It behaves slightly different from the description in the living standard__:
626
- * - There is no interface/class `XMLDocument`, it returns a `Document` instance.
627
- * - `contentType`, `encoding`, `mode`, `origin`, `url` fields are currently not declared.
628
- * - this implementation is not validating names or qualified names
629
- * (when parsing XML strings, the SAX parser takes care of that)
630
- *
631
- * @param {string|null} namespaceURI
632
- * @param {string} qualifiedName
633
- * @param {DocumentType=null} doctype
634
- * @returns {Document}
635
- *
636
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument MDN
637
- * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument DOM Level 2 Core (initial)
638
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument DOM Level 2 Core
639
- *
640
- * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
641
- * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
642
- * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
643
- */
644
- createDocument: function(u, e, r) {
645
- var t = new gu();
646
- if (t.implementation = this, t.childNodes = new $(), t.doctype = r || null, r && t.appendChild(r), e) {
647
- var n = t.createElementNS(u, e);
648
- t.appendChild(n);
649
- }
650
- return t;
651
- },
652
- /**
653
- * Returns a doctype, with the given `qualifiedName`, `publicId`, and `systemId`.
654
- *
655
- * __This behavior is slightly different from the in the specs__:
656
- * - this implementation is not validating names or qualified names
657
- * (when parsing XML strings, the SAX parser takes care of that)
658
- *
659
- * @param {string} qualifiedName
660
- * @param {string} [publicId]
661
- * @param {string} [systemId]
662
- * @returns {DocumentType} which can either be used with `DOMImplementation.createDocument` upon document creation
663
- * or can be put into the document via methods like `Node.insertBefore()` or `Node.replaceChild()`
664
- *
665
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType MDN
666
- * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocType DOM Level 2 Core
667
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype DOM Living Standard
668
- *
669
- * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
670
- * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
671
- * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
672
- */
673
- createDocumentType: function(u, e, r) {
674
- var t = new Nu();
675
- return t.name = u, t.nodeName = u, t.publicId = e || "", t.systemId = r || "", t;
676
- }
677
- };
678
- function E() {
679
- }
680
- E.prototype = {
681
- firstChild: null,
682
- lastChild: null,
683
- previousSibling: null,
684
- nextSibling: null,
685
- attributes: null,
686
- parentNode: null,
687
- childNodes: null,
688
- ownerDocument: null,
689
- nodeValue: null,
690
- namespaceURI: null,
691
- prefix: null,
692
- localName: null,
693
- // Modified in DOM Level 2:
694
- insertBefore: function(u, e) {
695
- return Bu(this, u, e);
696
- },
697
- replaceChild: function(u, e) {
698
- Bu(this, u, e, ye), e && this.removeChild(e);
699
- },
700
- removeChild: function(u) {
701
- return we(this, u);
702
- },
703
- appendChild: function(u) {
704
- return this.insertBefore(u, null);
705
- },
706
- hasChildNodes: function() {
707
- return this.firstChild != null;
708
- },
709
- cloneNode: function(u) {
710
- return Ou(this.ownerDocument || this, this, u);
711
- },
712
- // Modified in DOM Level 2:
713
- normalize: function() {
714
- for (var u = this.firstChild; u; ) {
715
- var e = u.nextSibling;
716
- e && e.nodeType == wu && u.nodeType == wu ? (this.removeChild(e), u.appendData(e.data)) : (u.normalize(), u = e);
717
- }
718
- },
719
- // Introduced in DOM Level 2:
720
- isSupported: function(u, e) {
721
- return this.ownerDocument.implementation.hasFeature(u, e);
722
- },
723
- // Introduced in DOM Level 2:
724
- hasAttributes: function() {
725
- return this.attributes.length > 0;
726
- },
727
- /**
728
- * Look up the prefix associated to the given namespace URI, starting from this node.
729
- * **The default namespace declarations are ignored by this method.**
730
- * See Namespace Prefix Lookup for details on the algorithm used by this method.
731
- *
732
- * _Note: The implementation seems to be incomplete when compared to the algorithm described in the specs._
733
- *
734
- * @param {string | null} namespaceURI
735
- * @returns {string | null}
736
- * @see https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespacePrefix
737
- * @see https://www.w3.org/TR/DOM-Level-3-Core/namespaces-algorithms.html#lookupNamespacePrefixAlgo
738
- * @see https://dom.spec.whatwg.org/#dom-node-lookupprefix
739
- * @see https://github.com/xmldom/xmldom/issues/322
740
- */
741
- lookupPrefix: function(u) {
742
- for (var e = this; e; ) {
743
- var r = e._nsMap;
744
- if (r) {
745
- for (var t in r)
746
- if (Object.prototype.hasOwnProperty.call(r, t) && r[t] === u)
747
- return t;
748
- }
749
- e = e.nodeType == iu ? e.ownerDocument : e.parentNode;
750
- }
751
- return null;
752
- },
753
- // Introduced in DOM Level 3:
754
- lookupNamespaceURI: function(u) {
755
- for (var e = this; e; ) {
756
- var r = e._nsMap;
757
- if (r && Object.prototype.hasOwnProperty.call(r, u))
758
- return r[u];
759
- e = e.nodeType == iu ? e.ownerDocument : e.parentNode;
760
- }
761
- return null;
762
- },
763
- // Introduced in DOM Level 3:
764
- isDefaultNamespace: function(u) {
765
- var e = this.lookupPrefix(u);
766
- return e == null;
767
- }
768
- };
769
- function Ce(u) {
770
- return u == "<" && "&lt;" || u == ">" && "&gt;" || u == "&" && "&amp;" || u == '"' && "&quot;" || "&#" + u.charCodeAt() + ";";
771
- }
772
- Au(_, E);
773
- Au(_, E.prototype);
774
- function du(u, e) {
775
- if (e(u))
776
- return !0;
777
- if (u = u.firstChild)
778
- do
779
- if (du(u, e))
780
- return !0;
781
- while (u = u.nextSibling);
782
- }
783
- function gu() {
784
- this.ownerDocument = this;
785
- }
786
- function ar(u, e, r) {
787
- u && u._inc++;
788
- var t = r.namespaceURI;
789
- t === hu.XMLNS && (e._nsMap[r.prefix ? r.localName : ""] = r.value);
790
- }
791
- function be(u, e, r, t) {
792
- u && u._inc++;
793
- var n = r.namespaceURI;
794
- n === hu.XMLNS && delete e._nsMap[r.prefix ? r.localName : ""];
795
- }
796
- function Pu(u, e, r) {
797
- if (u && u._inc) {
798
- u._inc++;
799
- var t = e.childNodes;
800
- if (r)
801
- t[t.length++] = r;
802
- else {
803
- for (var n = e.firstChild, i = 0; n; )
804
- t[i++] = n, n = n.nextSibling;
805
- t.length = i, delete t[t.length];
806
- }
807
- }
808
- }
809
- function we(u, e) {
810
- var r = e.previousSibling, t = e.nextSibling;
811
- return r ? r.nextSibling = t : u.firstChild = t, t ? t.previousSibling = r : u.lastChild = r, e.parentNode = null, e.previousSibling = null, e.nextSibling = null, Pu(u.ownerDocument, u), e;
812
- }
813
- function ir(u) {
814
- return u && (u.nodeType === E.DOCUMENT_NODE || u.nodeType === E.DOCUMENT_FRAGMENT_NODE || u.nodeType === E.ELEMENT_NODE);
815
- }
816
- function or(u) {
817
- return u && (H(u) || Mu(u) || Y(u) || u.nodeType === E.DOCUMENT_FRAGMENT_NODE || u.nodeType === E.COMMENT_NODE || u.nodeType === E.PROCESSING_INSTRUCTION_NODE);
818
- }
819
- function Y(u) {
820
- return u && u.nodeType === E.DOCUMENT_TYPE_NODE;
821
- }
822
- function H(u) {
823
- return u && u.nodeType === E.ELEMENT_NODE;
824
- }
825
- function Mu(u) {
826
- return u && u.nodeType === E.TEXT_NODE;
827
- }
828
- function Ju(u, e) {
829
- var r = u.childNodes || [];
830
- if (z(r, H) || Y(e))
831
- return !1;
832
- var t = z(r, Y);
833
- return !(e && t && r.indexOf(t) > r.indexOf(e));
834
- }
835
- function Ku(u, e) {
836
- var r = u.childNodes || [];
837
- function t(i) {
838
- return H(i) && i !== e;
839
- }
840
- if (z(r, t))
841
- return !1;
842
- var n = z(r, Y);
843
- return !(e && n && r.indexOf(n) > r.indexOf(e));
844
- }
845
- function sr(u, e, r) {
846
- if (!ir(u))
847
- throw new B(L, "Unexpected parent node type " + u.nodeType);
848
- if (r && r.parentNode !== u)
849
- throw new B(ge, "child not in parent");
850
- if (
851
- // 4. If `node` is not a DocumentFragment, DocumentType, Element, or CharacterData node, then throw a "HierarchyRequestError" DOMException.
852
- !or(e) || // 5. If either `node` is a Text node and `parent` is a document,
853
- // the sax parser currently adds top level text nodes, this will be fixed in 0.9.0
854
- // || (node.nodeType === Node.TEXT_NODE && parent.nodeType === Node.DOCUMENT_NODE)
855
- // or `node` is a doctype and `parent` is not a document, then throw a "HierarchyRequestError" DOMException.
856
- Y(e) && u.nodeType !== E.DOCUMENT_NODE
857
- )
858
- throw new B(
859
- L,
860
- "Unexpected node type " + e.nodeType + " for parent node type " + u.nodeType
861
- );
862
- }
863
- function lr(u, e, r) {
864
- var t = u.childNodes || [], n = e.childNodes || [];
865
- if (e.nodeType === E.DOCUMENT_FRAGMENT_NODE) {
866
- var i = n.filter(H);
867
- if (i.length > 1 || z(n, Mu))
868
- throw new B(L, "More than one element or text in fragment");
869
- if (i.length === 1 && !Ju(u, r))
870
- throw new B(L, "Element in fragment can not be inserted before doctype");
871
- }
872
- if (H(e) && !Ju(u, r))
873
- throw new B(L, "Only one element can be added and only after doctype");
874
- if (Y(e)) {
875
- if (z(t, Y))
876
- throw new B(L, "Only one doctype is allowed");
877
- var o = z(t, H);
878
- if (r && t.indexOf(o) < t.indexOf(r))
879
- throw new B(L, "Doctype can only be inserted before an element");
880
- if (!r && o)
881
- throw new B(L, "Doctype can not be appended since element is present");
882
- }
883
- }
884
- function ye(u, e, r) {
885
- var t = u.childNodes || [], n = e.childNodes || [];
886
- if (e.nodeType === E.DOCUMENT_FRAGMENT_NODE) {
887
- var i = n.filter(H);
888
- if (i.length > 1 || z(n, Mu))
889
- throw new B(L, "More than one element or text in fragment");
890
- if (i.length === 1 && !Ku(u, r))
891
- throw new B(L, "Element in fragment can not be inserted before doctype");
892
- }
893
- if (H(e) && !Ku(u, r))
894
- throw new B(L, "Only one element can be added and only after doctype");
895
- if (Y(e)) {
896
- let s = function(p) {
897
- return Y(p) && p !== r;
898
- };
899
- var l = s;
900
- if (z(t, s))
901
- throw new B(L, "Only one doctype is allowed");
902
- var o = z(t, H);
903
- if (r && t.indexOf(o) < t.indexOf(r))
904
- throw new B(L, "Doctype can only be inserted before an element");
905
- }
906
- }
907
- function Bu(u, e, r, t) {
908
- sr(u, e, r), u.nodeType === E.DOCUMENT_NODE && (t || lr)(u, e, r);
909
- var n = e.parentNode;
910
- if (n && n.removeChild(e), e.nodeType === X) {
911
- var i = e.firstChild;
912
- if (i == null)
913
- return e;
914
- var o = e.lastChild;
915
- } else
916
- i = o = e;
917
- var l = r ? r.previousSibling : u.lastChild;
918
- i.previousSibling = l, o.nextSibling = r, l ? l.nextSibling = i : u.firstChild = i, r == null ? u.lastChild = o : r.previousSibling = o;
919
- do
920
- i.parentNode = u;
921
- while (i !== o && (i = i.nextSibling));
922
- return Pu(u.ownerDocument || u, u), e.nodeType == X && (e.firstChild = e.lastChild = null), e;
923
- }
924
- function cr(u, e) {
925
- return e.parentNode && e.parentNode.removeChild(e), e.parentNode = u, e.previousSibling = u.lastChild, e.nextSibling = null, e.previousSibling ? e.previousSibling.nextSibling = e : u.firstChild = e, u.lastChild = e, Pu(u.ownerDocument, u, e), e;
926
- }
927
- gu.prototype = {
928
- //implementation : null,
929
- nodeName: "#document",
930
- nodeType: me,
931
- /**
932
- * The DocumentType node of the document.
933
- *
934
- * @readonly
935
- * @type DocumentType
936
- */
937
- doctype: null,
938
- documentElement: null,
939
- _inc: 1,
940
- insertBefore: function(u, e) {
941
- if (u.nodeType == X) {
942
- for (var r = u.firstChild; r; ) {
943
- var t = r.nextSibling;
944
- this.insertBefore(r, e), r = t;
945
- }
946
- return u;
947
- }
948
- return Bu(this, u, e), u.ownerDocument = this, this.documentElement === null && u.nodeType === U && (this.documentElement = u), u;
949
- },
950
- removeChild: function(u) {
951
- return this.documentElement == u && (this.documentElement = null), we(this, u);
952
- },
953
- replaceChild: function(u, e) {
954
- Bu(this, u, e, ye), u.ownerDocument = this, e && this.removeChild(e), H(u) && (this.documentElement = u);
955
- },
956
- // Introduced in DOM Level 2:
957
- importNode: function(u, e) {
958
- return Se(this, u, e);
959
- },
960
- // Introduced in DOM Level 2:
961
- getElementById: function(u) {
962
- var e = null;
963
- return du(this.documentElement, function(r) {
964
- if (r.nodeType == U && r.getAttribute("id") == u)
965
- return e = r, !0;
966
- }), e;
967
- },
968
- /**
969
- * The `getElementsByClassName` method of `Document` interface returns an array-like object
970
- * of all child elements which have **all** of the given class name(s).
971
- *
972
- * Returns an empty list if `classeNames` is an empty string or only contains HTML white space characters.
973
- *
974
- *
975
- * Warning: This is a live LiveNodeList.
976
- * Changes in the DOM will reflect in the array as the changes occur.
977
- * If an element selected by this array no longer qualifies for the selector,
978
- * it will automatically be removed. Be aware of this for iteration purposes.
979
- *
980
- * @param {string} classNames is a string representing the class name(s) to match; multiple class names are separated by (ASCII-)whitespace
981
- *
982
- * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementsByClassName
983
- * @see https://dom.spec.whatwg.org/#concept-getelementsbyclassname
984
- */
985
- getElementsByClassName: function(u) {
986
- var e = Yu(u);
987
- return new ou(this, function(r) {
988
- var t = [];
989
- return e.length > 0 && du(r.documentElement, function(n) {
990
- if (n !== r && n.nodeType === U) {
991
- var i = n.getAttribute("class");
992
- if (i) {
993
- var o = u === i;
994
- if (!o) {
995
- var l = Yu(i);
996
- o = e.every(rr(l));
997
- }
998
- o && t.push(n);
999
- }
1000
- }
1001
- }), t;
1002
- });
1003
- },
1004
- //document factory method:
1005
- createElement: function(u) {
1006
- var e = new K();
1007
- e.ownerDocument = this, e.nodeName = u, e.tagName = u, e.localName = u, e.childNodes = new $();
1008
- var r = e.attributes = new yu();
1009
- return r._ownerElement = e, e;
1010
- },
1011
- createDocumentFragment: function() {
1012
- var u = new Fu();
1013
- return u.ownerDocument = this, u.childNodes = new $(), u;
1014
- },
1015
- createTextNode: function(u) {
1016
- var e = new Uu();
1017
- return e.ownerDocument = this, e.appendData(u), e;
1018
- },
1019
- createComment: function(u) {
1020
- var e = new Vu();
1021
- return e.ownerDocument = this, e.appendData(u), e;
1022
- },
1023
- createCDATASection: function(u) {
1024
- var e = new Gu();
1025
- return e.ownerDocument = this, e.appendData(u), e;
1026
- },
1027
- createProcessingInstruction: function(u, e) {
1028
- var r = new Hu();
1029
- return r.ownerDocument = this, r.tagName = r.nodeName = r.target = u, r.nodeValue = r.data = e, r;
1030
- },
1031
- createAttribute: function(u) {
1032
- var e = new Tu();
1033
- return e.ownerDocument = this, e.name = u, e.nodeName = u, e.localName = u, e.specified = !0, e;
1034
- },
1035
- createEntityReference: function(u) {
1036
- var e = new zu();
1037
- return e.ownerDocument = this, e.nodeName = u, e;
1038
- },
1039
- // Introduced in DOM Level 2:
1040
- createElementNS: function(u, e) {
1041
- var r = new K(), t = e.split(":"), n = r.attributes = new yu();
1042
- return r.childNodes = new $(), r.ownerDocument = this, r.nodeName = e, r.tagName = e, r.namespaceURI = u, t.length == 2 ? (r.prefix = t[0], r.localName = t[1]) : r.localName = e, n._ownerElement = r, r;
1043
- },
1044
- // Introduced in DOM Level 2:
1045
- createAttributeNS: function(u, e) {
1046
- var r = new Tu(), t = e.split(":");
1047
- return r.ownerDocument = this, r.nodeName = e, r.name = e, r.namespaceURI = u, r.specified = !0, t.length == 2 ? (r.prefix = t[0], r.localName = t[1]) : r.localName = e, r;
1048
- }
1049
- };
1050
- I(gu, E);
1051
- function K() {
1052
- this._nsMap = {};
1053
- }
1054
- K.prototype = {
1055
- nodeType: U,
1056
- hasAttribute: function(u) {
1057
- return this.getAttributeNode(u) != null;
1058
- },
1059
- getAttribute: function(u) {
1060
- var e = this.getAttributeNode(u);
1061
- return e && e.value || "";
1062
- },
1063
- getAttributeNode: function(u) {
1064
- return this.attributes.getNamedItem(u);
1065
- },
1066
- setAttribute: function(u, e) {
1067
- var r = this.ownerDocument.createAttribute(u);
1068
- r.value = r.nodeValue = "" + e, this.setAttributeNode(r);
1069
- },
1070
- removeAttribute: function(u) {
1071
- var e = this.getAttributeNode(u);
1072
- e && this.removeAttributeNode(e);
1073
- },
1074
- //four real opeartion method
1075
- appendChild: function(u) {
1076
- return u.nodeType === X ? this.insertBefore(u, null) : cr(this, u);
1077
- },
1078
- setAttributeNode: function(u) {
1079
- return this.attributes.setNamedItem(u);
1080
- },
1081
- setAttributeNodeNS: function(u) {
1082
- return this.attributes.setNamedItemNS(u);
1083
- },
1084
- removeAttributeNode: function(u) {
1085
- return this.attributes.removeNamedItem(u.nodeName);
1086
- },
1087
- //get real attribute name,and remove it by removeAttributeNode
1088
- removeAttributeNS: function(u, e) {
1089
- var r = this.getAttributeNodeNS(u, e);
1090
- r && this.removeAttributeNode(r);
1091
- },
1092
- hasAttributeNS: function(u, e) {
1093
- return this.getAttributeNodeNS(u, e) != null;
1094
- },
1095
- getAttributeNS: function(u, e) {
1096
- var r = this.getAttributeNodeNS(u, e);
1097
- return r && r.value || "";
1098
- },
1099
- setAttributeNS: function(u, e, r) {
1100
- var t = this.ownerDocument.createAttributeNS(u, e);
1101
- t.value = t.nodeValue = "" + r, this.setAttributeNode(t);
1102
- },
1103
- getAttributeNodeNS: function(u, e) {
1104
- return this.attributes.getNamedItemNS(u, e);
1105
- },
1106
- getElementsByTagName: function(u) {
1107
- return new ou(this, function(e) {
1108
- var r = [];
1109
- return du(e, function(t) {
1110
- t !== e && t.nodeType == U && (u === "*" || t.tagName == u) && r.push(t);
1111
- }), r;
1112
- });
1113
- },
1114
- getElementsByTagNameNS: function(u, e) {
1115
- return new ou(this, function(r) {
1116
- var t = [];
1117
- return du(r, function(n) {
1118
- n !== r && n.nodeType === U && (u === "*" || n.namespaceURI === u) && (e === "*" || n.localName == e) && t.push(n);
1119
- }), t;
1120
- });
1121
- }
1122
- };
1123
- gu.prototype.getElementsByTagName = K.prototype.getElementsByTagName;
1124
- gu.prototype.getElementsByTagNameNS = K.prototype.getElementsByTagNameNS;
1125
- I(K, E);
1126
- function Tu() {
1127
- }
1128
- Tu.prototype.nodeType = iu;
1129
- I(Tu, E);
1130
- function Eu() {
1131
- }
1132
- Eu.prototype = {
1133
- data: "",
1134
- substringData: function(u, e) {
1135
- return this.data.substring(u, u + e);
1136
- },
1137
- appendData: function(u) {
1138
- u = this.data + u, this.nodeValue = this.data = u, this.length = u.length;
1139
- },
1140
- insertData: function(u, e) {
1141
- this.replaceData(u, 0, e);
1142
- },
1143
- appendChild: function(u) {
1144
- throw new Error(q[L]);
1145
- },
1146
- deleteData: function(u, e) {
1147
- this.replaceData(u, e, "");
1148
- },
1149
- replaceData: function(u, e, r) {
1150
- var t = this.data.substring(0, u), n = this.data.substring(u + e);
1151
- r = t + r + n, this.nodeValue = this.data = r, this.length = r.length;
1152
- }
1153
- };
1154
- I(Eu, E);
1155
- function Uu() {
1156
- }
1157
- Uu.prototype = {
1158
- nodeName: "#text",
1159
- nodeType: wu,
1160
- splitText: function(u) {
1161
- var e = this.data, r = e.substring(u);
1162
- e = e.substring(0, u), this.data = this.nodeValue = e, this.length = e.length;
1163
- var t = this.ownerDocument.createTextNode(r);
1164
- return this.parentNode && this.parentNode.insertBefore(t, this.nextSibling), t;
1165
- }
1166
- };
1167
- I(Uu, Eu);
1168
- function Vu() {
1169
- }
1170
- Vu.prototype = {
1171
- nodeName: "#comment",
1172
- nodeType: de
1173
- };
1174
- I(Vu, Eu);
1175
- function Gu() {
1176
- }
1177
- Gu.prototype = {
1178
- nodeName: "#cdata-section",
1179
- nodeType: fe
1180
- };
1181
- I(Gu, Eu);
1182
- function Nu() {
1183
- }
1184
- Nu.prototype.nodeType = Ae;
1185
- I(Nu, E);
1186
- function Be() {
1187
- }
1188
- Be.prototype.nodeType = nr;
1189
- I(Be, E);
1190
- function Te() {
1191
- }
1192
- Te.prototype.nodeType = tr;
1193
- I(Te, E);
1194
- function zu() {
1195
- }
1196
- zu.prototype.nodeType = De;
1197
- I(zu, E);
1198
- function Fu() {
1199
- }
1200
- Fu.prototype.nodeName = "#document-fragment";
1201
- Fu.prototype.nodeType = X;
1202
- I(Fu, E);
1203
- function Hu() {
1204
- }
1205
- Hu.prototype.nodeType = he;
1206
- I(Hu, E);
1207
- function Ne() {
1208
- }
1209
- Ne.prototype.serializeToString = function(u, e, r) {
1210
- return Fe.call(u, e, r);
1211
- };
1212
- E.prototype.toString = Fe;
1213
- function Fe(u, e) {
1214
- var r = [], t = this.nodeType == 9 && this.documentElement || this, n = t.prefix, i = t.namespaceURI;
1215
- if (i && n == null) {
1216
- var n = t.lookupPrefix(i);
1217
- if (n == null)
1218
- var o = [
1219
- { namespace: i, prefix: null }
1220
- //{namespace:uri,prefix:''}
1221
- ];
1222
- }
1223
- return nu(this, r, u, e, o), r.join("");
1224
- }
1225
- function ue(u, e, r) {
1226
- var t = u.prefix || "", n = u.namespaceURI;
1227
- if (!n || t === "xml" && n === hu.XML || n === hu.XMLNS)
1228
- return !1;
1229
- for (var i = r.length; i--; ) {
1230
- var o = r[i];
1231
- if (o.prefix === t)
1232
- return o.namespace !== n;
1233
- }
1234
- return !0;
1235
- }
1236
- function Ru(u, e, r) {
1237
- u.push(" ", e, '="', r.replace(/[<>&"\t\n\r]/g, Ce), '"');
1238
- }
1239
- function nu(u, e, r, t, n) {
1240
- if (n || (n = []), t)
1241
- if (u = t(u), u) {
1242
- if (typeof u == "string") {
1243
- e.push(u);
1244
- return;
1245
- }
1246
- } else
1247
- return;
1248
- switch (u.nodeType) {
1249
- case U:
1250
- var i = u.attributes, o = i.length, h = u.firstChild, l = u.tagName;
1251
- r = hu.isHTML(u.namespaceURI) || r;
1252
- var s = l;
1253
- if (!r && !u.prefix && u.namespaceURI) {
1254
- for (var p, c = 0; c < i.length; c++)
1255
- if (i.item(c).name === "xmlns") {
1256
- p = i.item(c).value;
1257
- break;
1258
- }
1259
- if (!p)
1260
- for (var D = n.length - 1; D >= 0; D--) {
1261
- var f = n[D];
1262
- if (f.prefix === "" && f.namespace === u.namespaceURI) {
1263
- p = f.namespace;
1264
- break;
1265
- }
1266
- }
1267
- if (p !== u.namespaceURI)
1268
- for (var D = n.length - 1; D >= 0; D--) {
1269
- var f = n[D];
1270
- if (f.namespace === u.namespaceURI) {
1271
- f.prefix && (s = f.prefix + ":" + l);
1272
- break;
1273
- }
1274
- }
1275
- }
1276
- e.push("<", s);
1277
- for (var d = 0; d < o; d++) {
1278
- var v = i.item(d);
1279
- v.prefix == "xmlns" ? n.push({ prefix: v.localName, namespace: v.value }) : v.nodeName == "xmlns" && n.push({ prefix: "", namespace: v.value });
1280
- }
1281
- for (var d = 0; d < o; d++) {
1282
- var v = i.item(d);
1283
- if (ue(v, r, n)) {
1284
- var C = v.prefix || "", A = v.namespaceURI;
1285
- Ru(e, C ? "xmlns:" + C : "xmlns", A), n.push({ prefix: C, namespace: A });
1286
- }
1287
- nu(v, e, r, t, n);
1288
- }
1289
- if (l === s && ue(u, r, n)) {
1290
- var C = u.prefix || "", A = u.namespaceURI;
1291
- Ru(e, C ? "xmlns:" + C : "xmlns", A), n.push({ prefix: C, namespace: A });
1292
- }
1293
- if (h || r && !/^(?:meta|link|img|br|hr|input)$/i.test(l)) {
1294
- if (e.push(">"), r && /^script$/i.test(l))
1295
- for (; h; )
1296
- h.data ? e.push(h.data) : nu(h, e, r, t, n.slice()), h = h.nextSibling;
1297
- else
1298
- for (; h; )
1299
- nu(h, e, r, t, n.slice()), h = h.nextSibling;
1300
- e.push("</", s, ">");
1301
- } else
1302
- e.push("/>");
1303
- return;
1304
- case me:
1305
- case X:
1306
- for (var h = u.firstChild; h; )
1307
- nu(h, e, r, t, n.slice()), h = h.nextSibling;
1308
- return;
1309
- case iu:
1310
- return Ru(e, u.name, u.value);
1311
- case wu:
1312
- return e.push(
1313
- u.data.replace(/[<&>]/g, Ce)
1314
- );
1315
- case fe:
1316
- return e.push("<![CDATA[", u.data, "]]>");
1317
- case de:
1318
- return e.push("<!--", u.data, "-->");
1319
- case Ae:
1320
- var y = u.publicId, b = u.systemId;
1321
- if (e.push("<!DOCTYPE ", u.name), y)
1322
- e.push(" PUBLIC ", y), b && b != "." && e.push(" ", b), e.push(">");
1323
- else if (b && b != ".")
1324
- e.push(" SYSTEM ", b, ">");
1325
- else {
1326
- var F = u.internalSubset;
1327
- F && e.push(" [", F, "]"), e.push(">");
1328
- }
1329
- return;
1330
- case he:
1331
- return e.push("<?", u.target, " ", u.data, "?>");
1332
- case De:
1333
- return e.push("&", u.nodeName, ";");
1334
- default:
1335
- e.push("??", u.nodeName);
1336
- }
1337
- }
1338
- function Se(u, e, r) {
1339
- var t;
1340
- switch (e.nodeType) {
1341
- case U:
1342
- t = e.cloneNode(!1), t.ownerDocument = u;
1343
- case X:
1344
- break;
1345
- case iu:
1346
- r = !0;
1347
- break;
1348
- }
1349
- if (t || (t = e.cloneNode(!1)), t.ownerDocument = u, t.parentNode = null, r)
1350
- for (var n = e.firstChild; n; )
1351
- t.appendChild(Se(u, n, r)), n = n.nextSibling;
1352
- return t;
1353
- }
1354
- function Ou(u, e, r) {
1355
- var t = new e.constructor();
1356
- for (var n in e)
1357
- if (Object.prototype.hasOwnProperty.call(e, n)) {
1358
- var i = e[n];
1359
- typeof i != "object" && i != t[n] && (t[n] = i);
1360
- }
1361
- switch (e.childNodes && (t.childNodes = new $()), t.ownerDocument = u, t.nodeType) {
1362
- case U:
1363
- var o = e.attributes, l = t.attributes = new yu(), s = o.length;
1364
- l._ownerElement = t;
1365
- for (var p = 0; p < s; p++)
1366
- t.setAttributeNode(Ou(u, o.item(p), !0));
1367
- break;
1368
- case iu:
1369
- r = !0;
1370
- }
1371
- if (r)
1372
- for (var c = e.firstChild; c; )
1373
- t.appendChild(Ou(u, c, r)), c = c.nextSibling;
1374
- return t;
1375
- }
1376
- function qe(u, e, r) {
1377
- u[e] = r;
1378
- }
1379
- try {
1380
- if (Object.defineProperty) {
1381
- let u = function(e) {
1382
- switch (e.nodeType) {
1383
- case U:
1384
- case X:
1385
- var r = [];
1386
- for (e = e.firstChild; e; )
1387
- e.nodeType !== 7 && e.nodeType !== 8 && r.push(u(e)), e = e.nextSibling;
1388
- return r.join("");
1389
- default:
1390
- return e.nodeValue;
1391
- }
1392
- };
1393
- var kr = u;
1394
- Object.defineProperty(ou.prototype, "length", {
1395
- get: function() {
1396
- return ku(this), this.$$length;
1397
- }
1398
- }), Object.defineProperty(E.prototype, "textContent", {
1399
- get: function() {
1400
- return u(this);
1401
- },
1402
- set: function(e) {
1403
- switch (this.nodeType) {
1404
- case U:
1405
- case X:
1406
- for (; this.firstChild; )
1407
- this.removeChild(this.firstChild);
1408
- (e || String(e)) && this.appendChild(this.ownerDocument.createTextNode(e));
1409
- break;
1410
- default:
1411
- this.data = e, this.value = e, this.nodeValue = e;
1412
- }
1413
- }
1414
- }), qe = function(e, r, t) {
1415
- e["$$" + r] = t;
1416
- };
1417
- }
1418
- } catch (u) {
1419
- }
1420
- Z.DocumentType = Nu;
1421
- Z.DOMException = B;
1422
- Z.DOMImplementation = ve;
1423
- Z.Element = K;
1424
- Z.Node = E;
1425
- Z.NodeList = $;
1426
- Z.XMLSerializer = Ne;
1427
- var Su = {}, xe = {};
1428
- (function(u) {
1429
- var e = W.freeze;
1430
- u.XML_ENTITIES = e({
1431
- amp: "&",
1432
- apos: "'",
1433
- gt: ">",
1434
- lt: "<",
1435
- quot: '"'
1436
- }), u.HTML_ENTITIES = e({
1437
- Aacute: "Á",
1438
- aacute: "á",
1439
- Abreve: "Ă",
1440
- abreve: "ă",
1441
- ac: "∾",
1442
- acd: "∿",
1443
- acE: "∾̳",
1444
- Acirc: "Â",
1445
- acirc: "â",
1446
- acute: "´",
1447
- Acy: "А",
1448
- acy: "а",
1449
- AElig: "Æ",
1450
- aelig: "æ",
1451
- af: "⁡",
1452
- Afr: "𝔄",
1453
- afr: "𝔞",
1454
- Agrave: "À",
1455
- agrave: "à",
1456
- alefsym: "ℵ",
1457
- aleph: "ℵ",
1458
- Alpha: "Α",
1459
- alpha: "α",
1460
- Amacr: "Ā",
1461
- amacr: "ā",
1462
- amalg: "⨿",
1463
- AMP: "&",
1464
- amp: "&",
1465
- And: "⩓",
1466
- and: "∧",
1467
- andand: "⩕",
1468
- andd: "⩜",
1469
- andslope: "⩘",
1470
- andv: "⩚",
1471
- ang: "∠",
1472
- ange: "⦤",
1473
- angle: "∠",
1474
- angmsd: "∡",
1475
- angmsdaa: "⦨",
1476
- angmsdab: "⦩",
1477
- angmsdac: "⦪",
1478
- angmsdad: "⦫",
1479
- angmsdae: "⦬",
1480
- angmsdaf: "⦭",
1481
- angmsdag: "⦮",
1482
- angmsdah: "⦯",
1483
- angrt: "∟",
1484
- angrtvb: "⊾",
1485
- angrtvbd: "⦝",
1486
- angsph: "∢",
1487
- angst: "Å",
1488
- angzarr: "⍼",
1489
- Aogon: "Ą",
1490
- aogon: "ą",
1491
- Aopf: "𝔸",
1492
- aopf: "𝕒",
1493
- ap: "≈",
1494
- apacir: "⩯",
1495
- apE: "⩰",
1496
- ape: "≊",
1497
- apid: "≋",
1498
- apos: "'",
1499
- ApplyFunction: "⁡",
1500
- approx: "≈",
1501
- approxeq: "≊",
1502
- Aring: "Å",
1503
- aring: "å",
1504
- Ascr: "𝒜",
1505
- ascr: "𝒶",
1506
- Assign: "≔",
1507
- ast: "*",
1508
- asymp: "≈",
1509
- asympeq: "≍",
1510
- Atilde: "Ã",
1511
- atilde: "ã",
1512
- Auml: "Ä",
1513
- auml: "ä",
1514
- awconint: "∳",
1515
- awint: "⨑",
1516
- backcong: "≌",
1517
- backepsilon: "϶",
1518
- backprime: "‵",
1519
- backsim: "∽",
1520
- backsimeq: "⋍",
1521
- Backslash: "∖",
1522
- Barv: "⫧",
1523
- barvee: "⊽",
1524
- Barwed: "⌆",
1525
- barwed: "⌅",
1526
- barwedge: "⌅",
1527
- bbrk: "⎵",
1528
- bbrktbrk: "⎶",
1529
- bcong: "≌",
1530
- Bcy: "Б",
1531
- bcy: "б",
1532
- bdquo: "„",
1533
- becaus: "∵",
1534
- Because: "∵",
1535
- because: "∵",
1536
- bemptyv: "⦰",
1537
- bepsi: "϶",
1538
- bernou: "ℬ",
1539
- Bernoullis: "ℬ",
1540
- Beta: "Β",
1541
- beta: "β",
1542
- beth: "ℶ",
1543
- between: "≬",
1544
- Bfr: "𝔅",
1545
- bfr: "𝔟",
1546
- bigcap: "⋂",
1547
- bigcirc: "◯",
1548
- bigcup: "⋃",
1549
- bigodot: "⨀",
1550
- bigoplus: "⨁",
1551
- bigotimes: "⨂",
1552
- bigsqcup: "⨆",
1553
- bigstar: "★",
1554
- bigtriangledown: "▽",
1555
- bigtriangleup: "△",
1556
- biguplus: "⨄",
1557
- bigvee: "⋁",
1558
- bigwedge: "⋀",
1559
- bkarow: "⤍",
1560
- blacklozenge: "⧫",
1561
- blacksquare: "▪",
1562
- blacktriangle: "▴",
1563
- blacktriangledown: "▾",
1564
- blacktriangleleft: "◂",
1565
- blacktriangleright: "▸",
1566
- blank: "␣",
1567
- blk12: "▒",
1568
- blk14: "░",
1569
- blk34: "▓",
1570
- block: "█",
1571
- bne: "=⃥",
1572
- bnequiv: "≡⃥",
1573
- bNot: "⫭",
1574
- bnot: "⌐",
1575
- Bopf: "𝔹",
1576
- bopf: "𝕓",
1577
- bot: "⊥",
1578
- bottom: "⊥",
1579
- bowtie: "⋈",
1580
- boxbox: "⧉",
1581
- boxDL: "╗",
1582
- boxDl: "╖",
1583
- boxdL: "╕",
1584
- boxdl: "┐",
1585
- boxDR: "╔",
1586
- boxDr: "╓",
1587
- boxdR: "╒",
1588
- boxdr: "┌",
1589
- boxH: "═",
1590
- boxh: "─",
1591
- boxHD: "╦",
1592
- boxHd: "╤",
1593
- boxhD: "╥",
1594
- boxhd: "┬",
1595
- boxHU: "╩",
1596
- boxHu: "╧",
1597
- boxhU: "╨",
1598
- boxhu: "┴",
1599
- boxminus: "⊟",
1600
- boxplus: "⊞",
1601
- boxtimes: "⊠",
1602
- boxUL: "╝",
1603
- boxUl: "╜",
1604
- boxuL: "╛",
1605
- boxul: "┘",
1606
- boxUR: "╚",
1607
- boxUr: "╙",
1608
- boxuR: "╘",
1609
- boxur: "└",
1610
- boxV: "║",
1611
- boxv: "│",
1612
- boxVH: "╬",
1613
- boxVh: "╫",
1614
- boxvH: "╪",
1615
- boxvh: "┼",
1616
- boxVL: "╣",
1617
- boxVl: "╢",
1618
- boxvL: "╡",
1619
- boxvl: "┤",
1620
- boxVR: "╠",
1621
- boxVr: "╟",
1622
- boxvR: "╞",
1623
- boxvr: "├",
1624
- bprime: "‵",
1625
- Breve: "˘",
1626
- breve: "˘",
1627
- brvbar: "¦",
1628
- Bscr: "ℬ",
1629
- bscr: "𝒷",
1630
- bsemi: "⁏",
1631
- bsim: "∽",
1632
- bsime: "⋍",
1633
- bsol: "\\",
1634
- bsolb: "⧅",
1635
- bsolhsub: "⟈",
1636
- bull: "•",
1637
- bullet: "•",
1638
- bump: "≎",
1639
- bumpE: "⪮",
1640
- bumpe: "≏",
1641
- Bumpeq: "≎",
1642
- bumpeq: "≏",
1643
- Cacute: "Ć",
1644
- cacute: "ć",
1645
- Cap: "⋒",
1646
- cap: "∩",
1647
- capand: "⩄",
1648
- capbrcup: "⩉",
1649
- capcap: "⩋",
1650
- capcup: "⩇",
1651
- capdot: "⩀",
1652
- CapitalDifferentialD: "ⅅ",
1653
- caps: "∩︀",
1654
- caret: "⁁",
1655
- caron: "ˇ",
1656
- Cayleys: "ℭ",
1657
- ccaps: "⩍",
1658
- Ccaron: "Č",
1659
- ccaron: "č",
1660
- Ccedil: "Ç",
1661
- ccedil: "ç",
1662
- Ccirc: "Ĉ",
1663
- ccirc: "ĉ",
1664
- Cconint: "∰",
1665
- ccups: "⩌",
1666
- ccupssm: "⩐",
1667
- Cdot: "Ċ",
1668
- cdot: "ċ",
1669
- cedil: "¸",
1670
- Cedilla: "¸",
1671
- cemptyv: "⦲",
1672
- cent: "¢",
1673
- CenterDot: "·",
1674
- centerdot: "·",
1675
- Cfr: "ℭ",
1676
- cfr: "𝔠",
1677
- CHcy: "Ч",
1678
- chcy: "ч",
1679
- check: "✓",
1680
- checkmark: "✓",
1681
- Chi: "Χ",
1682
- chi: "χ",
1683
- cir: "○",
1684
- circ: "ˆ",
1685
- circeq: "≗",
1686
- circlearrowleft: "↺",
1687
- circlearrowright: "↻",
1688
- circledast: "⊛",
1689
- circledcirc: "⊚",
1690
- circleddash: "⊝",
1691
- CircleDot: "⊙",
1692
- circledR: "®",
1693
- circledS: "Ⓢ",
1694
- CircleMinus: "⊖",
1695
- CirclePlus: "⊕",
1696
- CircleTimes: "⊗",
1697
- cirE: "⧃",
1698
- cire: "≗",
1699
- cirfnint: "⨐",
1700
- cirmid: "⫯",
1701
- cirscir: "⧂",
1702
- ClockwiseContourIntegral: "∲",
1703
- CloseCurlyDoubleQuote: "”",
1704
- CloseCurlyQuote: "’",
1705
- clubs: "♣",
1706
- clubsuit: "♣",
1707
- Colon: "∷",
1708
- colon: ":",
1709
- Colone: "⩴",
1710
- colone: "≔",
1711
- coloneq: "≔",
1712
- comma: ",",
1713
- commat: "@",
1714
- comp: "∁",
1715
- compfn: "∘",
1716
- complement: "∁",
1717
- complexes: "ℂ",
1718
- cong: "≅",
1719
- congdot: "⩭",
1720
- Congruent: "≡",
1721
- Conint: "∯",
1722
- conint: "∮",
1723
- ContourIntegral: "∮",
1724
- Copf: "ℂ",
1725
- copf: "𝕔",
1726
- coprod: "∐",
1727
- Coproduct: "∐",
1728
- COPY: "©",
1729
- copy: "©",
1730
- copysr: "℗",
1731
- CounterClockwiseContourIntegral: "∳",
1732
- crarr: "↵",
1733
- Cross: "⨯",
1734
- cross: "✗",
1735
- Cscr: "𝒞",
1736
- cscr: "𝒸",
1737
- csub: "⫏",
1738
- csube: "⫑",
1739
- csup: "⫐",
1740
- csupe: "⫒",
1741
- ctdot: "⋯",
1742
- cudarrl: "⤸",
1743
- cudarrr: "⤵",
1744
- cuepr: "⋞",
1745
- cuesc: "⋟",
1746
- cularr: "↶",
1747
- cularrp: "⤽",
1748
- Cup: "⋓",
1749
- cup: "∪",
1750
- cupbrcap: "⩈",
1751
- CupCap: "≍",
1752
- cupcap: "⩆",
1753
- cupcup: "⩊",
1754
- cupdot: "⊍",
1755
- cupor: "⩅",
1756
- cups: "∪︀",
1757
- curarr: "↷",
1758
- curarrm: "⤼",
1759
- curlyeqprec: "⋞",
1760
- curlyeqsucc: "⋟",
1761
- curlyvee: "⋎",
1762
- curlywedge: "⋏",
1763
- curren: "¤",
1764
- curvearrowleft: "↶",
1765
- curvearrowright: "↷",
1766
- cuvee: "⋎",
1767
- cuwed: "⋏",
1768
- cwconint: "∲",
1769
- cwint: "∱",
1770
- cylcty: "⌭",
1771
- Dagger: "‡",
1772
- dagger: "†",
1773
- daleth: "ℸ",
1774
- Darr: "↡",
1775
- dArr: "⇓",
1776
- darr: "↓",
1777
- dash: "‐",
1778
- Dashv: "⫤",
1779
- dashv: "⊣",
1780
- dbkarow: "⤏",
1781
- dblac: "˝",
1782
- Dcaron: "Ď",
1783
- dcaron: "ď",
1784
- Dcy: "Д",
1785
- dcy: "д",
1786
- DD: "ⅅ",
1787
- dd: "ⅆ",
1788
- ddagger: "‡",
1789
- ddarr: "⇊",
1790
- DDotrahd: "⤑",
1791
- ddotseq: "⩷",
1792
- deg: "°",
1793
- Del: "∇",
1794
- Delta: "Δ",
1795
- delta: "δ",
1796
- demptyv: "⦱",
1797
- dfisht: "⥿",
1798
- Dfr: "𝔇",
1799
- dfr: "𝔡",
1800
- dHar: "⥥",
1801
- dharl: "⇃",
1802
- dharr: "⇂",
1803
- DiacriticalAcute: "´",
1804
- DiacriticalDot: "˙",
1805
- DiacriticalDoubleAcute: "˝",
1806
- DiacriticalGrave: "`",
1807
- DiacriticalTilde: "˜",
1808
- diam: "⋄",
1809
- Diamond: "⋄",
1810
- diamond: "⋄",
1811
- diamondsuit: "♦",
1812
- diams: "♦",
1813
- die: "¨",
1814
- DifferentialD: "ⅆ",
1815
- digamma: "ϝ",
1816
- disin: "⋲",
1817
- div: "÷",
1818
- divide: "÷",
1819
- divideontimes: "⋇",
1820
- divonx: "⋇",
1821
- DJcy: "Ђ",
1822
- djcy: "ђ",
1823
- dlcorn: "⌞",
1824
- dlcrop: "⌍",
1825
- dollar: "$",
1826
- Dopf: "𝔻",
1827
- dopf: "𝕕",
1828
- Dot: "¨",
1829
- dot: "˙",
1830
- DotDot: "⃜",
1831
- doteq: "≐",
1832
- doteqdot: "≑",
1833
- DotEqual: "≐",
1834
- dotminus: "∸",
1835
- dotplus: "∔",
1836
- dotsquare: "⊡",
1837
- doublebarwedge: "⌆",
1838
- DoubleContourIntegral: "∯",
1839
- DoubleDot: "¨",
1840
- DoubleDownArrow: "⇓",
1841
- DoubleLeftArrow: "⇐",
1842
- DoubleLeftRightArrow: "⇔",
1843
- DoubleLeftTee: "⫤",
1844
- DoubleLongLeftArrow: "⟸",
1845
- DoubleLongLeftRightArrow: "⟺",
1846
- DoubleLongRightArrow: "⟹",
1847
- DoubleRightArrow: "⇒",
1848
- DoubleRightTee: "⊨",
1849
- DoubleUpArrow: "⇑",
1850
- DoubleUpDownArrow: "⇕",
1851
- DoubleVerticalBar: "∥",
1852
- DownArrow: "↓",
1853
- Downarrow: "⇓",
1854
- downarrow: "↓",
1855
- DownArrowBar: "⤓",
1856
- DownArrowUpArrow: "⇵",
1857
- DownBreve: "̑",
1858
- downdownarrows: "⇊",
1859
- downharpoonleft: "⇃",
1860
- downharpoonright: "⇂",
1861
- DownLeftRightVector: "⥐",
1862
- DownLeftTeeVector: "⥞",
1863
- DownLeftVector: "↽",
1864
- DownLeftVectorBar: "⥖",
1865
- DownRightTeeVector: "⥟",
1866
- DownRightVector: "⇁",
1867
- DownRightVectorBar: "⥗",
1868
- DownTee: "⊤",
1869
- DownTeeArrow: "↧",
1870
- drbkarow: "⤐",
1871
- drcorn: "⌟",
1872
- drcrop: "⌌",
1873
- Dscr: "𝒟",
1874
- dscr: "𝒹",
1875
- DScy: "Ѕ",
1876
- dscy: "ѕ",
1877
- dsol: "⧶",
1878
- Dstrok: "Đ",
1879
- dstrok: "đ",
1880
- dtdot: "⋱",
1881
- dtri: "▿",
1882
- dtrif: "▾",
1883
- duarr: "⇵",
1884
- duhar: "⥯",
1885
- dwangle: "⦦",
1886
- DZcy: "Џ",
1887
- dzcy: "џ",
1888
- dzigrarr: "⟿",
1889
- Eacute: "É",
1890
- eacute: "é",
1891
- easter: "⩮",
1892
- Ecaron: "Ě",
1893
- ecaron: "ě",
1894
- ecir: "≖",
1895
- Ecirc: "Ê",
1896
- ecirc: "ê",
1897
- ecolon: "≕",
1898
- Ecy: "Э",
1899
- ecy: "э",
1900
- eDDot: "⩷",
1901
- Edot: "Ė",
1902
- eDot: "≑",
1903
- edot: "ė",
1904
- ee: "ⅇ",
1905
- efDot: "≒",
1906
- Efr: "𝔈",
1907
- efr: "𝔢",
1908
- eg: "⪚",
1909
- Egrave: "È",
1910
- egrave: "è",
1911
- egs: "⪖",
1912
- egsdot: "⪘",
1913
- el: "⪙",
1914
- Element: "∈",
1915
- elinters: "⏧",
1916
- ell: "ℓ",
1917
- els: "⪕",
1918
- elsdot: "⪗",
1919
- Emacr: "Ē",
1920
- emacr: "ē",
1921
- empty: "∅",
1922
- emptyset: "∅",
1923
- EmptySmallSquare: "◻",
1924
- emptyv: "∅",
1925
- EmptyVerySmallSquare: "▫",
1926
- emsp: " ",
1927
- emsp13: " ",
1928
- emsp14: " ",
1929
- ENG: "Ŋ",
1930
- eng: "ŋ",
1931
- ensp: " ",
1932
- Eogon: "Ę",
1933
- eogon: "ę",
1934
- Eopf: "𝔼",
1935
- eopf: "𝕖",
1936
- epar: "⋕",
1937
- eparsl: "⧣",
1938
- eplus: "⩱",
1939
- epsi: "ε",
1940
- Epsilon: "Ε",
1941
- epsilon: "ε",
1942
- epsiv: "ϵ",
1943
- eqcirc: "≖",
1944
- eqcolon: "≕",
1945
- eqsim: "≂",
1946
- eqslantgtr: "⪖",
1947
- eqslantless: "⪕",
1948
- Equal: "⩵",
1949
- equals: "=",
1950
- EqualTilde: "≂",
1951
- equest: "≟",
1952
- Equilibrium: "⇌",
1953
- equiv: "≡",
1954
- equivDD: "⩸",
1955
- eqvparsl: "⧥",
1956
- erarr: "⥱",
1957
- erDot: "≓",
1958
- Escr: "ℰ",
1959
- escr: "ℯ",
1960
- esdot: "≐",
1961
- Esim: "⩳",
1962
- esim: "≂",
1963
- Eta: "Η",
1964
- eta: "η",
1965
- ETH: "Ð",
1966
- eth: "ð",
1967
- Euml: "Ë",
1968
- euml: "ë",
1969
- euro: "€",
1970
- excl: "!",
1971
- exist: "∃",
1972
- Exists: "∃",
1973
- expectation: "ℰ",
1974
- ExponentialE: "ⅇ",
1975
- exponentiale: "ⅇ",
1976
- fallingdotseq: "≒",
1977
- Fcy: "Ф",
1978
- fcy: "ф",
1979
- female: "♀",
1980
- ffilig: "ffi",
1981
- fflig: "ff",
1982
- ffllig: "ffl",
1983
- Ffr: "𝔉",
1984
- ffr: "𝔣",
1985
- filig: "fi",
1986
- FilledSmallSquare: "◼",
1987
- FilledVerySmallSquare: "▪",
1988
- fjlig: "fj",
1989
- flat: "♭",
1990
- fllig: "fl",
1991
- fltns: "▱",
1992
- fnof: "ƒ",
1993
- Fopf: "𝔽",
1994
- fopf: "𝕗",
1995
- ForAll: "∀",
1996
- forall: "∀",
1997
- fork: "⋔",
1998
- forkv: "⫙",
1999
- Fouriertrf: "ℱ",
2000
- fpartint: "⨍",
2001
- frac12: "½",
2002
- frac13: "⅓",
2003
- frac14: "¼",
2004
- frac15: "⅕",
2005
- frac16: "⅙",
2006
- frac18: "⅛",
2007
- frac23: "⅔",
2008
- frac25: "⅖",
2009
- frac34: "¾",
2010
- frac35: "⅗",
2011
- frac38: "⅜",
2012
- frac45: "⅘",
2013
- frac56: "⅚",
2014
- frac58: "⅝",
2015
- frac78: "⅞",
2016
- frasl: "⁄",
2017
- frown: "⌢",
2018
- Fscr: "ℱ",
2019
- fscr: "𝒻",
2020
- gacute: "ǵ",
2021
- Gamma: "Γ",
2022
- gamma: "γ",
2023
- Gammad: "Ϝ",
2024
- gammad: "ϝ",
2025
- gap: "⪆",
2026
- Gbreve: "Ğ",
2027
- gbreve: "ğ",
2028
- Gcedil: "Ģ",
2029
- Gcirc: "Ĝ",
2030
- gcirc: "ĝ",
2031
- Gcy: "Г",
2032
- gcy: "г",
2033
- Gdot: "Ġ",
2034
- gdot: "ġ",
2035
- gE: "≧",
2036
- ge: "≥",
2037
- gEl: "⪌",
2038
- gel: "⋛",
2039
- geq: "≥",
2040
- geqq: "≧",
2041
- geqslant: "⩾",
2042
- ges: "⩾",
2043
- gescc: "⪩",
2044
- gesdot: "⪀",
2045
- gesdoto: "⪂",
2046
- gesdotol: "⪄",
2047
- gesl: "⋛︀",
2048
- gesles: "⪔",
2049
- Gfr: "𝔊",
2050
- gfr: "𝔤",
2051
- Gg: "⋙",
2052
- gg: "≫",
2053
- ggg: "⋙",
2054
- gimel: "ℷ",
2055
- GJcy: "Ѓ",
2056
- gjcy: "ѓ",
2057
- gl: "≷",
2058
- gla: "⪥",
2059
- glE: "⪒",
2060
- glj: "⪤",
2061
- gnap: "⪊",
2062
- gnapprox: "⪊",
2063
- gnE: "≩",
2064
- gne: "⪈",
2065
- gneq: "⪈",
2066
- gneqq: "≩",
2067
- gnsim: "⋧",
2068
- Gopf: "𝔾",
2069
- gopf: "𝕘",
2070
- grave: "`",
2071
- GreaterEqual: "≥",
2072
- GreaterEqualLess: "⋛",
2073
- GreaterFullEqual: "≧",
2074
- GreaterGreater: "⪢",
2075
- GreaterLess: "≷",
2076
- GreaterSlantEqual: "⩾",
2077
- GreaterTilde: "≳",
2078
- Gscr: "𝒢",
2079
- gscr: "ℊ",
2080
- gsim: "≳",
2081
- gsime: "⪎",
2082
- gsiml: "⪐",
2083
- Gt: "≫",
2084
- GT: ">",
2085
- gt: ">",
2086
- gtcc: "⪧",
2087
- gtcir: "⩺",
2088
- gtdot: "⋗",
2089
- gtlPar: "⦕",
2090
- gtquest: "⩼",
2091
- gtrapprox: "⪆",
2092
- gtrarr: "⥸",
2093
- gtrdot: "⋗",
2094
- gtreqless: "⋛",
2095
- gtreqqless: "⪌",
2096
- gtrless: "≷",
2097
- gtrsim: "≳",
2098
- gvertneqq: "≩︀",
2099
- gvnE: "≩︀",
2100
- Hacek: "ˇ",
2101
- hairsp: " ",
2102
- half: "½",
2103
- hamilt: "ℋ",
2104
- HARDcy: "Ъ",
2105
- hardcy: "ъ",
2106
- hArr: "⇔",
2107
- harr: "↔",
2108
- harrcir: "⥈",
2109
- harrw: "↭",
2110
- Hat: "^",
2111
- hbar: "ℏ",
2112
- Hcirc: "Ĥ",
2113
- hcirc: "ĥ",
2114
- hearts: "♥",
2115
- heartsuit: "♥",
2116
- hellip: "…",
2117
- hercon: "⊹",
2118
- Hfr: "ℌ",
2119
- hfr: "𝔥",
2120
- HilbertSpace: "ℋ",
2121
- hksearow: "⤥",
2122
- hkswarow: "⤦",
2123
- hoarr: "⇿",
2124
- homtht: "∻",
2125
- hookleftarrow: "↩",
2126
- hookrightarrow: "↪",
2127
- Hopf: "ℍ",
2128
- hopf: "𝕙",
2129
- horbar: "―",
2130
- HorizontalLine: "─",
2131
- Hscr: "ℋ",
2132
- hscr: "𝒽",
2133
- hslash: "ℏ",
2134
- Hstrok: "Ħ",
2135
- hstrok: "ħ",
2136
- HumpDownHump: "≎",
2137
- HumpEqual: "≏",
2138
- hybull: "⁃",
2139
- hyphen: "‐",
2140
- Iacute: "Í",
2141
- iacute: "í",
2142
- ic: "⁣",
2143
- Icirc: "Î",
2144
- icirc: "î",
2145
- Icy: "И",
2146
- icy: "и",
2147
- Idot: "İ",
2148
- IEcy: "Е",
2149
- iecy: "е",
2150
- iexcl: "¡",
2151
- iff: "⇔",
2152
- Ifr: "ℑ",
2153
- ifr: "𝔦",
2154
- Igrave: "Ì",
2155
- igrave: "ì",
2156
- ii: "ⅈ",
2157
- iiiint: "⨌",
2158
- iiint: "∭",
2159
- iinfin: "⧜",
2160
- iiota: "℩",
2161
- IJlig: "IJ",
2162
- ijlig: "ij",
2163
- Im: "ℑ",
2164
- Imacr: "Ī",
2165
- imacr: "ī",
2166
- image: "ℑ",
2167
- ImaginaryI: "ⅈ",
2168
- imagline: "ℐ",
2169
- imagpart: "ℑ",
2170
- imath: "ı",
2171
- imof: "⊷",
2172
- imped: "Ƶ",
2173
- Implies: "⇒",
2174
- in: "∈",
2175
- incare: "℅",
2176
- infin: "∞",
2177
- infintie: "⧝",
2178
- inodot: "ı",
2179
- Int: "∬",
2180
- int: "∫",
2181
- intcal: "⊺",
2182
- integers: "ℤ",
2183
- Integral: "∫",
2184
- intercal: "⊺",
2185
- Intersection: "⋂",
2186
- intlarhk: "⨗",
2187
- intprod: "⨼",
2188
- InvisibleComma: "⁣",
2189
- InvisibleTimes: "⁢",
2190
- IOcy: "Ё",
2191
- iocy: "ё",
2192
- Iogon: "Į",
2193
- iogon: "į",
2194
- Iopf: "𝕀",
2195
- iopf: "𝕚",
2196
- Iota: "Ι",
2197
- iota: "ι",
2198
- iprod: "⨼",
2199
- iquest: "¿",
2200
- Iscr: "ℐ",
2201
- iscr: "𝒾",
2202
- isin: "∈",
2203
- isindot: "⋵",
2204
- isinE: "⋹",
2205
- isins: "⋴",
2206
- isinsv: "⋳",
2207
- isinv: "∈",
2208
- it: "⁢",
2209
- Itilde: "Ĩ",
2210
- itilde: "ĩ",
2211
- Iukcy: "І",
2212
- iukcy: "і",
2213
- Iuml: "Ï",
2214
- iuml: "ï",
2215
- Jcirc: "Ĵ",
2216
- jcirc: "ĵ",
2217
- Jcy: "Й",
2218
- jcy: "й",
2219
- Jfr: "𝔍",
2220
- jfr: "𝔧",
2221
- jmath: "ȷ",
2222
- Jopf: "𝕁",
2223
- jopf: "𝕛",
2224
- Jscr: "𝒥",
2225
- jscr: "𝒿",
2226
- Jsercy: "Ј",
2227
- jsercy: "ј",
2228
- Jukcy: "Є",
2229
- jukcy: "є",
2230
- Kappa: "Κ",
2231
- kappa: "κ",
2232
- kappav: "ϰ",
2233
- Kcedil: "Ķ",
2234
- kcedil: "ķ",
2235
- Kcy: "К",
2236
- kcy: "к",
2237
- Kfr: "𝔎",
2238
- kfr: "𝔨",
2239
- kgreen: "ĸ",
2240
- KHcy: "Х",
2241
- khcy: "х",
2242
- KJcy: "Ќ",
2243
- kjcy: "ќ",
2244
- Kopf: "𝕂",
2245
- kopf: "𝕜",
2246
- Kscr: "𝒦",
2247
- kscr: "𝓀",
2248
- lAarr: "⇚",
2249
- Lacute: "Ĺ",
2250
- lacute: "ĺ",
2251
- laemptyv: "⦴",
2252
- lagran: "ℒ",
2253
- Lambda: "Λ",
2254
- lambda: "λ",
2255
- Lang: "⟪",
2256
- lang: "⟨",
2257
- langd: "⦑",
2258
- langle: "⟨",
2259
- lap: "⪅",
2260
- Laplacetrf: "ℒ",
2261
- laquo: "«",
2262
- Larr: "↞",
2263
- lArr: "⇐",
2264
- larr: "←",
2265
- larrb: "⇤",
2266
- larrbfs: "⤟",
2267
- larrfs: "⤝",
2268
- larrhk: "↩",
2269
- larrlp: "↫",
2270
- larrpl: "⤹",
2271
- larrsim: "⥳",
2272
- larrtl: "↢",
2273
- lat: "⪫",
2274
- lAtail: "⤛",
2275
- latail: "⤙",
2276
- late: "⪭",
2277
- lates: "⪭︀",
2278
- lBarr: "⤎",
2279
- lbarr: "⤌",
2280
- lbbrk: "❲",
2281
- lbrace: "{",
2282
- lbrack: "[",
2283
- lbrke: "⦋",
2284
- lbrksld: "⦏",
2285
- lbrkslu: "⦍",
2286
- Lcaron: "Ľ",
2287
- lcaron: "ľ",
2288
- Lcedil: "Ļ",
2289
- lcedil: "ļ",
2290
- lceil: "⌈",
2291
- lcub: "{",
2292
- Lcy: "Л",
2293
- lcy: "л",
2294
- ldca: "⤶",
2295
- ldquo: "“",
2296
- ldquor: "„",
2297
- ldrdhar: "⥧",
2298
- ldrushar: "⥋",
2299
- ldsh: "↲",
2300
- lE: "≦",
2301
- le: "≤",
2302
- LeftAngleBracket: "⟨",
2303
- LeftArrow: "←",
2304
- Leftarrow: "⇐",
2305
- leftarrow: "←",
2306
- LeftArrowBar: "⇤",
2307
- LeftArrowRightArrow: "⇆",
2308
- leftarrowtail: "↢",
2309
- LeftCeiling: "⌈",
2310
- LeftDoubleBracket: "⟦",
2311
- LeftDownTeeVector: "⥡",
2312
- LeftDownVector: "⇃",
2313
- LeftDownVectorBar: "⥙",
2314
- LeftFloor: "⌊",
2315
- leftharpoondown: "↽",
2316
- leftharpoonup: "↼",
2317
- leftleftarrows: "⇇",
2318
- LeftRightArrow: "↔",
2319
- Leftrightarrow: "⇔",
2320
- leftrightarrow: "↔",
2321
- leftrightarrows: "⇆",
2322
- leftrightharpoons: "⇋",
2323
- leftrightsquigarrow: "↭",
2324
- LeftRightVector: "⥎",
2325
- LeftTee: "⊣",
2326
- LeftTeeArrow: "↤",
2327
- LeftTeeVector: "⥚",
2328
- leftthreetimes: "⋋",
2329
- LeftTriangle: "⊲",
2330
- LeftTriangleBar: "⧏",
2331
- LeftTriangleEqual: "⊴",
2332
- LeftUpDownVector: "⥑",
2333
- LeftUpTeeVector: "⥠",
2334
- LeftUpVector: "↿",
2335
- LeftUpVectorBar: "⥘",
2336
- LeftVector: "↼",
2337
- LeftVectorBar: "⥒",
2338
- lEg: "⪋",
2339
- leg: "⋚",
2340
- leq: "≤",
2341
- leqq: "≦",
2342
- leqslant: "⩽",
2343
- les: "⩽",
2344
- lescc: "⪨",
2345
- lesdot: "⩿",
2346
- lesdoto: "⪁",
2347
- lesdotor: "⪃",
2348
- lesg: "⋚︀",
2349
- lesges: "⪓",
2350
- lessapprox: "⪅",
2351
- lessdot: "⋖",
2352
- lesseqgtr: "⋚",
2353
- lesseqqgtr: "⪋",
2354
- LessEqualGreater: "⋚",
2355
- LessFullEqual: "≦",
2356
- LessGreater: "≶",
2357
- lessgtr: "≶",
2358
- LessLess: "⪡",
2359
- lesssim: "≲",
2360
- LessSlantEqual: "⩽",
2361
- LessTilde: "≲",
2362
- lfisht: "⥼",
2363
- lfloor: "⌊",
2364
- Lfr: "𝔏",
2365
- lfr: "𝔩",
2366
- lg: "≶",
2367
- lgE: "⪑",
2368
- lHar: "⥢",
2369
- lhard: "↽",
2370
- lharu: "↼",
2371
- lharul: "⥪",
2372
- lhblk: "▄",
2373
- LJcy: "Љ",
2374
- ljcy: "љ",
2375
- Ll: "⋘",
2376
- ll: "≪",
2377
- llarr: "⇇",
2378
- llcorner: "⌞",
2379
- Lleftarrow: "⇚",
2380
- llhard: "⥫",
2381
- lltri: "◺",
2382
- Lmidot: "Ŀ",
2383
- lmidot: "ŀ",
2384
- lmoust: "⎰",
2385
- lmoustache: "⎰",
2386
- lnap: "⪉",
2387
- lnapprox: "⪉",
2388
- lnE: "≨",
2389
- lne: "⪇",
2390
- lneq: "⪇",
2391
- lneqq: "≨",
2392
- lnsim: "⋦",
2393
- loang: "⟬",
2394
- loarr: "⇽",
2395
- lobrk: "⟦",
2396
- LongLeftArrow: "⟵",
2397
- Longleftarrow: "⟸",
2398
- longleftarrow: "⟵",
2399
- LongLeftRightArrow: "⟷",
2400
- Longleftrightarrow: "⟺",
2401
- longleftrightarrow: "⟷",
2402
- longmapsto: "⟼",
2403
- LongRightArrow: "⟶",
2404
- Longrightarrow: "⟹",
2405
- longrightarrow: "⟶",
2406
- looparrowleft: "↫",
2407
- looparrowright: "↬",
2408
- lopar: "⦅",
2409
- Lopf: "𝕃",
2410
- lopf: "𝕝",
2411
- loplus: "⨭",
2412
- lotimes: "⨴",
2413
- lowast: "∗",
2414
- lowbar: "_",
2415
- LowerLeftArrow: "↙",
2416
- LowerRightArrow: "↘",
2417
- loz: "◊",
2418
- lozenge: "◊",
2419
- lozf: "⧫",
2420
- lpar: "(",
2421
- lparlt: "⦓",
2422
- lrarr: "⇆",
2423
- lrcorner: "⌟",
2424
- lrhar: "⇋",
2425
- lrhard: "⥭",
2426
- lrm: "‎",
2427
- lrtri: "⊿",
2428
- lsaquo: "‹",
2429
- Lscr: "ℒ",
2430
- lscr: "𝓁",
2431
- Lsh: "↰",
2432
- lsh: "↰",
2433
- lsim: "≲",
2434
- lsime: "⪍",
2435
- lsimg: "⪏",
2436
- lsqb: "[",
2437
- lsquo: "‘",
2438
- lsquor: "‚",
2439
- Lstrok: "Ł",
2440
- lstrok: "ł",
2441
- Lt: "≪",
2442
- LT: "<",
2443
- lt: "<",
2444
- ltcc: "⪦",
2445
- ltcir: "⩹",
2446
- ltdot: "⋖",
2447
- lthree: "⋋",
2448
- ltimes: "⋉",
2449
- ltlarr: "⥶",
2450
- ltquest: "⩻",
2451
- ltri: "◃",
2452
- ltrie: "⊴",
2453
- ltrif: "◂",
2454
- ltrPar: "⦖",
2455
- lurdshar: "⥊",
2456
- luruhar: "⥦",
2457
- lvertneqq: "≨︀",
2458
- lvnE: "≨︀",
2459
- macr: "¯",
2460
- male: "♂",
2461
- malt: "✠",
2462
- maltese: "✠",
2463
- Map: "⤅",
2464
- map: "↦",
2465
- mapsto: "↦",
2466
- mapstodown: "↧",
2467
- mapstoleft: "↤",
2468
- mapstoup: "↥",
2469
- marker: "▮",
2470
- mcomma: "⨩",
2471
- Mcy: "М",
2472
- mcy: "м",
2473
- mdash: "—",
2474
- mDDot: "∺",
2475
- measuredangle: "∡",
2476
- MediumSpace: " ",
2477
- Mellintrf: "ℳ",
2478
- Mfr: "𝔐",
2479
- mfr: "𝔪",
2480
- mho: "℧",
2481
- micro: "µ",
2482
- mid: "∣",
2483
- midast: "*",
2484
- midcir: "⫰",
2485
- middot: "·",
2486
- minus: "−",
2487
- minusb: "⊟",
2488
- minusd: "∸",
2489
- minusdu: "⨪",
2490
- MinusPlus: "∓",
2491
- mlcp: "⫛",
2492
- mldr: "…",
2493
- mnplus: "∓",
2494
- models: "⊧",
2495
- Mopf: "𝕄",
2496
- mopf: "𝕞",
2497
- mp: "∓",
2498
- Mscr: "ℳ",
2499
- mscr: "𝓂",
2500
- mstpos: "∾",
2501
- Mu: "Μ",
2502
- mu: "μ",
2503
- multimap: "⊸",
2504
- mumap: "⊸",
2505
- nabla: "∇",
2506
- Nacute: "Ń",
2507
- nacute: "ń",
2508
- nang: "∠⃒",
2509
- nap: "≉",
2510
- napE: "⩰̸",
2511
- napid: "≋̸",
2512
- napos: "ʼn",
2513
- napprox: "≉",
2514
- natur: "♮",
2515
- natural: "♮",
2516
- naturals: "ℕ",
2517
- nbsp: " ",
2518
- nbump: "≎̸",
2519
- nbumpe: "≏̸",
2520
- ncap: "⩃",
2521
- Ncaron: "Ň",
2522
- ncaron: "ň",
2523
- Ncedil: "Ņ",
2524
- ncedil: "ņ",
2525
- ncong: "≇",
2526
- ncongdot: "⩭̸",
2527
- ncup: "⩂",
2528
- Ncy: "Н",
2529
- ncy: "н",
2530
- ndash: "–",
2531
- ne: "≠",
2532
- nearhk: "⤤",
2533
- neArr: "⇗",
2534
- nearr: "↗",
2535
- nearrow: "↗",
2536
- nedot: "≐̸",
2537
- NegativeMediumSpace: "​",
2538
- NegativeThickSpace: "​",
2539
- NegativeThinSpace: "​",
2540
- NegativeVeryThinSpace: "​",
2541
- nequiv: "≢",
2542
- nesear: "⤨",
2543
- nesim: "≂̸",
2544
- NestedGreaterGreater: "≫",
2545
- NestedLessLess: "≪",
2546
- NewLine: `
2547
- `,
2548
- nexist: "∄",
2549
- nexists: "∄",
2550
- Nfr: "𝔑",
2551
- nfr: "𝔫",
2552
- ngE: "≧̸",
2553
- nge: "≱",
2554
- ngeq: "≱",
2555
- ngeqq: "≧̸",
2556
- ngeqslant: "⩾̸",
2557
- nges: "⩾̸",
2558
- nGg: "⋙̸",
2559
- ngsim: "≵",
2560
- nGt: "≫⃒",
2561
- ngt: "≯",
2562
- ngtr: "≯",
2563
- nGtv: "≫̸",
2564
- nhArr: "⇎",
2565
- nharr: "↮",
2566
- nhpar: "⫲",
2567
- ni: "∋",
2568
- nis: "⋼",
2569
- nisd: "⋺",
2570
- niv: "∋",
2571
- NJcy: "Њ",
2572
- njcy: "њ",
2573
- nlArr: "⇍",
2574
- nlarr: "↚",
2575
- nldr: "‥",
2576
- nlE: "≦̸",
2577
- nle: "≰",
2578
- nLeftarrow: "⇍",
2579
- nleftarrow: "↚",
2580
- nLeftrightarrow: "⇎",
2581
- nleftrightarrow: "↮",
2582
- nleq: "≰",
2583
- nleqq: "≦̸",
2584
- nleqslant: "⩽̸",
2585
- nles: "⩽̸",
2586
- nless: "≮",
2587
- nLl: "⋘̸",
2588
- nlsim: "≴",
2589
- nLt: "≪⃒",
2590
- nlt: "≮",
2591
- nltri: "⋪",
2592
- nltrie: "⋬",
2593
- nLtv: "≪̸",
2594
- nmid: "∤",
2595
- NoBreak: "⁠",
2596
- NonBreakingSpace: " ",
2597
- Nopf: "ℕ",
2598
- nopf: "𝕟",
2599
- Not: "⫬",
2600
- not: "¬",
2601
- NotCongruent: "≢",
2602
- NotCupCap: "≭",
2603
- NotDoubleVerticalBar: "∦",
2604
- NotElement: "∉",
2605
- NotEqual: "≠",
2606
- NotEqualTilde: "≂̸",
2607
- NotExists: "∄",
2608
- NotGreater: "≯",
2609
- NotGreaterEqual: "≱",
2610
- NotGreaterFullEqual: "≧̸",
2611
- NotGreaterGreater: "≫̸",
2612
- NotGreaterLess: "≹",
2613
- NotGreaterSlantEqual: "⩾̸",
2614
- NotGreaterTilde: "≵",
2615
- NotHumpDownHump: "≎̸",
2616
- NotHumpEqual: "≏̸",
2617
- notin: "∉",
2618
- notindot: "⋵̸",
2619
- notinE: "⋹̸",
2620
- notinva: "∉",
2621
- notinvb: "⋷",
2622
- notinvc: "⋶",
2623
- NotLeftTriangle: "⋪",
2624
- NotLeftTriangleBar: "⧏̸",
2625
- NotLeftTriangleEqual: "⋬",
2626
- NotLess: "≮",
2627
- NotLessEqual: "≰",
2628
- NotLessGreater: "≸",
2629
- NotLessLess: "≪̸",
2630
- NotLessSlantEqual: "⩽̸",
2631
- NotLessTilde: "≴",
2632
- NotNestedGreaterGreater: "⪢̸",
2633
- NotNestedLessLess: "⪡̸",
2634
- notni: "∌",
2635
- notniva: "∌",
2636
- notnivb: "⋾",
2637
- notnivc: "⋽",
2638
- NotPrecedes: "⊀",
2639
- NotPrecedesEqual: "⪯̸",
2640
- NotPrecedesSlantEqual: "⋠",
2641
- NotReverseElement: "∌",
2642
- NotRightTriangle: "⋫",
2643
- NotRightTriangleBar: "⧐̸",
2644
- NotRightTriangleEqual: "⋭",
2645
- NotSquareSubset: "⊏̸",
2646
- NotSquareSubsetEqual: "⋢",
2647
- NotSquareSuperset: "⊐̸",
2648
- NotSquareSupersetEqual: "⋣",
2649
- NotSubset: "⊂⃒",
2650
- NotSubsetEqual: "⊈",
2651
- NotSucceeds: "⊁",
2652
- NotSucceedsEqual: "⪰̸",
2653
- NotSucceedsSlantEqual: "⋡",
2654
- NotSucceedsTilde: "≿̸",
2655
- NotSuperset: "⊃⃒",
2656
- NotSupersetEqual: "⊉",
2657
- NotTilde: "≁",
2658
- NotTildeEqual: "≄",
2659
- NotTildeFullEqual: "≇",
2660
- NotTildeTilde: "≉",
2661
- NotVerticalBar: "∤",
2662
- npar: "∦",
2663
- nparallel: "∦",
2664
- nparsl: "⫽⃥",
2665
- npart: "∂̸",
2666
- npolint: "⨔",
2667
- npr: "⊀",
2668
- nprcue: "⋠",
2669
- npre: "⪯̸",
2670
- nprec: "⊀",
2671
- npreceq: "⪯̸",
2672
- nrArr: "⇏",
2673
- nrarr: "↛",
2674
- nrarrc: "⤳̸",
2675
- nrarrw: "↝̸",
2676
- nRightarrow: "⇏",
2677
- nrightarrow: "↛",
2678
- nrtri: "⋫",
2679
- nrtrie: "⋭",
2680
- nsc: "⊁",
2681
- nsccue: "⋡",
2682
- nsce: "⪰̸",
2683
- Nscr: "𝒩",
2684
- nscr: "𝓃",
2685
- nshortmid: "∤",
2686
- nshortparallel: "∦",
2687
- nsim: "≁",
2688
- nsime: "≄",
2689
- nsimeq: "≄",
2690
- nsmid: "∤",
2691
- nspar: "∦",
2692
- nsqsube: "⋢",
2693
- nsqsupe: "⋣",
2694
- nsub: "⊄",
2695
- nsubE: "⫅̸",
2696
- nsube: "⊈",
2697
- nsubset: "⊂⃒",
2698
- nsubseteq: "⊈",
2699
- nsubseteqq: "⫅̸",
2700
- nsucc: "⊁",
2701
- nsucceq: "⪰̸",
2702
- nsup: "⊅",
2703
- nsupE: "⫆̸",
2704
- nsupe: "⊉",
2705
- nsupset: "⊃⃒",
2706
- nsupseteq: "⊉",
2707
- nsupseteqq: "⫆̸",
2708
- ntgl: "≹",
2709
- Ntilde: "Ñ",
2710
- ntilde: "ñ",
2711
- ntlg: "≸",
2712
- ntriangleleft: "⋪",
2713
- ntrianglelefteq: "⋬",
2714
- ntriangleright: "⋫",
2715
- ntrianglerighteq: "⋭",
2716
- Nu: "Ν",
2717
- nu: "ν",
2718
- num: "#",
2719
- numero: "№",
2720
- numsp: " ",
2721
- nvap: "≍⃒",
2722
- nVDash: "⊯",
2723
- nVdash: "⊮",
2724
- nvDash: "⊭",
2725
- nvdash: "⊬",
2726
- nvge: "≥⃒",
2727
- nvgt: ">⃒",
2728
- nvHarr: "⤄",
2729
- nvinfin: "⧞",
2730
- nvlArr: "⤂",
2731
- nvle: "≤⃒",
2732
- nvlt: "<⃒",
2733
- nvltrie: "⊴⃒",
2734
- nvrArr: "⤃",
2735
- nvrtrie: "⊵⃒",
2736
- nvsim: "∼⃒",
2737
- nwarhk: "⤣",
2738
- nwArr: "⇖",
2739
- nwarr: "↖",
2740
- nwarrow: "↖",
2741
- nwnear: "⤧",
2742
- Oacute: "Ó",
2743
- oacute: "ó",
2744
- oast: "⊛",
2745
- ocir: "⊚",
2746
- Ocirc: "Ô",
2747
- ocirc: "ô",
2748
- Ocy: "О",
2749
- ocy: "о",
2750
- odash: "⊝",
2751
- Odblac: "Ő",
2752
- odblac: "ő",
2753
- odiv: "⨸",
2754
- odot: "⊙",
2755
- odsold: "⦼",
2756
- OElig: "Œ",
2757
- oelig: "œ",
2758
- ofcir: "⦿",
2759
- Ofr: "𝔒",
2760
- ofr: "𝔬",
2761
- ogon: "˛",
2762
- Ograve: "Ò",
2763
- ograve: "ò",
2764
- ogt: "⧁",
2765
- ohbar: "⦵",
2766
- ohm: "Ω",
2767
- oint: "∮",
2768
- olarr: "↺",
2769
- olcir: "⦾",
2770
- olcross: "⦻",
2771
- oline: "‾",
2772
- olt: "⧀",
2773
- Omacr: "Ō",
2774
- omacr: "ō",
2775
- Omega: "Ω",
2776
- omega: "ω",
2777
- Omicron: "Ο",
2778
- omicron: "ο",
2779
- omid: "⦶",
2780
- ominus: "⊖",
2781
- Oopf: "𝕆",
2782
- oopf: "𝕠",
2783
- opar: "⦷",
2784
- OpenCurlyDoubleQuote: "“",
2785
- OpenCurlyQuote: "‘",
2786
- operp: "⦹",
2787
- oplus: "⊕",
2788
- Or: "⩔",
2789
- or: "∨",
2790
- orarr: "↻",
2791
- ord: "⩝",
2792
- order: "ℴ",
2793
- orderof: "ℴ",
2794
- ordf: "ª",
2795
- ordm: "º",
2796
- origof: "⊶",
2797
- oror: "⩖",
2798
- orslope: "⩗",
2799
- orv: "⩛",
2800
- oS: "Ⓢ",
2801
- Oscr: "𝒪",
2802
- oscr: "ℴ",
2803
- Oslash: "Ø",
2804
- oslash: "ø",
2805
- osol: "⊘",
2806
- Otilde: "Õ",
2807
- otilde: "õ",
2808
- Otimes: "⨷",
2809
- otimes: "⊗",
2810
- otimesas: "⨶",
2811
- Ouml: "Ö",
2812
- ouml: "ö",
2813
- ovbar: "⌽",
2814
- OverBar: "‾",
2815
- OverBrace: "⏞",
2816
- OverBracket: "⎴",
2817
- OverParenthesis: "⏜",
2818
- par: "∥",
2819
- para: "¶",
2820
- parallel: "∥",
2821
- parsim: "⫳",
2822
- parsl: "⫽",
2823
- part: "∂",
2824
- PartialD: "∂",
2825
- Pcy: "П",
2826
- pcy: "п",
2827
- percnt: "%",
2828
- period: ".",
2829
- permil: "‰",
2830
- perp: "⊥",
2831
- pertenk: "‱",
2832
- Pfr: "𝔓",
2833
- pfr: "𝔭",
2834
- Phi: "Φ",
2835
- phi: "φ",
2836
- phiv: "ϕ",
2837
- phmmat: "ℳ",
2838
- phone: "☎",
2839
- Pi: "Π",
2840
- pi: "π",
2841
- pitchfork: "⋔",
2842
- piv: "ϖ",
2843
- planck: "ℏ",
2844
- planckh: "ℎ",
2845
- plankv: "ℏ",
2846
- plus: "+",
2847
- plusacir: "⨣",
2848
- plusb: "⊞",
2849
- pluscir: "⨢",
2850
- plusdo: "∔",
2851
- plusdu: "⨥",
2852
- pluse: "⩲",
2853
- PlusMinus: "±",
2854
- plusmn: "±",
2855
- plussim: "⨦",
2856
- plustwo: "⨧",
2857
- pm: "±",
2858
- Poincareplane: "ℌ",
2859
- pointint: "⨕",
2860
- Popf: "ℙ",
2861
- popf: "𝕡",
2862
- pound: "£",
2863
- Pr: "⪻",
2864
- pr: "≺",
2865
- prap: "⪷",
2866
- prcue: "≼",
2867
- prE: "⪳",
2868
- pre: "⪯",
2869
- prec: "≺",
2870
- precapprox: "⪷",
2871
- preccurlyeq: "≼",
2872
- Precedes: "≺",
2873
- PrecedesEqual: "⪯",
2874
- PrecedesSlantEqual: "≼",
2875
- PrecedesTilde: "≾",
2876
- preceq: "⪯",
2877
- precnapprox: "⪹",
2878
- precneqq: "⪵",
2879
- precnsim: "⋨",
2880
- precsim: "≾",
2881
- Prime: "″",
2882
- prime: "′",
2883
- primes: "ℙ",
2884
- prnap: "⪹",
2885
- prnE: "⪵",
2886
- prnsim: "⋨",
2887
- prod: "∏",
2888
- Product: "∏",
2889
- profalar: "⌮",
2890
- profline: "⌒",
2891
- profsurf: "⌓",
2892
- prop: "∝",
2893
- Proportion: "∷",
2894
- Proportional: "∝",
2895
- propto: "∝",
2896
- prsim: "≾",
2897
- prurel: "⊰",
2898
- Pscr: "𝒫",
2899
- pscr: "𝓅",
2900
- Psi: "Ψ",
2901
- psi: "ψ",
2902
- puncsp: " ",
2903
- Qfr: "𝔔",
2904
- qfr: "𝔮",
2905
- qint: "⨌",
2906
- Qopf: "ℚ",
2907
- qopf: "𝕢",
2908
- qprime: "⁗",
2909
- Qscr: "𝒬",
2910
- qscr: "𝓆",
2911
- quaternions: "ℍ",
2912
- quatint: "⨖",
2913
- quest: "?",
2914
- questeq: "≟",
2915
- QUOT: '"',
2916
- quot: '"',
2917
- rAarr: "⇛",
2918
- race: "∽̱",
2919
- Racute: "Ŕ",
2920
- racute: "ŕ",
2921
- radic: "√",
2922
- raemptyv: "⦳",
2923
- Rang: "⟫",
2924
- rang: "⟩",
2925
- rangd: "⦒",
2926
- range: "⦥",
2927
- rangle: "⟩",
2928
- raquo: "»",
2929
- Rarr: "↠",
2930
- rArr: "⇒",
2931
- rarr: "→",
2932
- rarrap: "⥵",
2933
- rarrb: "⇥",
2934
- rarrbfs: "⤠",
2935
- rarrc: "⤳",
2936
- rarrfs: "⤞",
2937
- rarrhk: "↪",
2938
- rarrlp: "↬",
2939
- rarrpl: "⥅",
2940
- rarrsim: "⥴",
2941
- Rarrtl: "⤖",
2942
- rarrtl: "↣",
2943
- rarrw: "↝",
2944
- rAtail: "⤜",
2945
- ratail: "⤚",
2946
- ratio: "∶",
2947
- rationals: "ℚ",
2948
- RBarr: "⤐",
2949
- rBarr: "⤏",
2950
- rbarr: "⤍",
2951
- rbbrk: "❳",
2952
- rbrace: "}",
2953
- rbrack: "]",
2954
- rbrke: "⦌",
2955
- rbrksld: "⦎",
2956
- rbrkslu: "⦐",
2957
- Rcaron: "Ř",
2958
- rcaron: "ř",
2959
- Rcedil: "Ŗ",
2960
- rcedil: "ŗ",
2961
- rceil: "⌉",
2962
- rcub: "}",
2963
- Rcy: "Р",
2964
- rcy: "р",
2965
- rdca: "⤷",
2966
- rdldhar: "⥩",
2967
- rdquo: "”",
2968
- rdquor: "”",
2969
- rdsh: "↳",
2970
- Re: "ℜ",
2971
- real: "ℜ",
2972
- realine: "ℛ",
2973
- realpart: "ℜ",
2974
- reals: "ℝ",
2975
- rect: "▭",
2976
- REG: "®",
2977
- reg: "®",
2978
- ReverseElement: "∋",
2979
- ReverseEquilibrium: "⇋",
2980
- ReverseUpEquilibrium: "⥯",
2981
- rfisht: "⥽",
2982
- rfloor: "⌋",
2983
- Rfr: "ℜ",
2984
- rfr: "𝔯",
2985
- rHar: "⥤",
2986
- rhard: "⇁",
2987
- rharu: "⇀",
2988
- rharul: "⥬",
2989
- Rho: "Ρ",
2990
- rho: "ρ",
2991
- rhov: "ϱ",
2992
- RightAngleBracket: "⟩",
2993
- RightArrow: "→",
2994
- Rightarrow: "⇒",
2995
- rightarrow: "→",
2996
- RightArrowBar: "⇥",
2997
- RightArrowLeftArrow: "⇄",
2998
- rightarrowtail: "↣",
2999
- RightCeiling: "⌉",
3000
- RightDoubleBracket: "⟧",
3001
- RightDownTeeVector: "⥝",
3002
- RightDownVector: "⇂",
3003
- RightDownVectorBar: "⥕",
3004
- RightFloor: "⌋",
3005
- rightharpoondown: "⇁",
3006
- rightharpoonup: "⇀",
3007
- rightleftarrows: "⇄",
3008
- rightleftharpoons: "⇌",
3009
- rightrightarrows: "⇉",
3010
- rightsquigarrow: "↝",
3011
- RightTee: "⊢",
3012
- RightTeeArrow: "↦",
3013
- RightTeeVector: "⥛",
3014
- rightthreetimes: "⋌",
3015
- RightTriangle: "⊳",
3016
- RightTriangleBar: "⧐",
3017
- RightTriangleEqual: "⊵",
3018
- RightUpDownVector: "⥏",
3019
- RightUpTeeVector: "⥜",
3020
- RightUpVector: "↾",
3021
- RightUpVectorBar: "⥔",
3022
- RightVector: "⇀",
3023
- RightVectorBar: "⥓",
3024
- ring: "˚",
3025
- risingdotseq: "≓",
3026
- rlarr: "⇄",
3027
- rlhar: "⇌",
3028
- rlm: "‏",
3029
- rmoust: "⎱",
3030
- rmoustache: "⎱",
3031
- rnmid: "⫮",
3032
- roang: "⟭",
3033
- roarr: "⇾",
3034
- robrk: "⟧",
3035
- ropar: "⦆",
3036
- Ropf: "ℝ",
3037
- ropf: "𝕣",
3038
- roplus: "⨮",
3039
- rotimes: "⨵",
3040
- RoundImplies: "⥰",
3041
- rpar: ")",
3042
- rpargt: "⦔",
3043
- rppolint: "⨒",
3044
- rrarr: "⇉",
3045
- Rrightarrow: "⇛",
3046
- rsaquo: "›",
3047
- Rscr: "ℛ",
3048
- rscr: "𝓇",
3049
- Rsh: "↱",
3050
- rsh: "↱",
3051
- rsqb: "]",
3052
- rsquo: "’",
3053
- rsquor: "’",
3054
- rthree: "⋌",
3055
- rtimes: "⋊",
3056
- rtri: "▹",
3057
- rtrie: "⊵",
3058
- rtrif: "▸",
3059
- rtriltri: "⧎",
3060
- RuleDelayed: "⧴",
3061
- ruluhar: "⥨",
3062
- rx: "℞",
3063
- Sacute: "Ś",
3064
- sacute: "ś",
3065
- sbquo: "‚",
3066
- Sc: "⪼",
3067
- sc: "≻",
3068
- scap: "⪸",
3069
- Scaron: "Š",
3070
- scaron: "š",
3071
- sccue: "≽",
3072
- scE: "⪴",
3073
- sce: "⪰",
3074
- Scedil: "Ş",
3075
- scedil: "ş",
3076
- Scirc: "Ŝ",
3077
- scirc: "ŝ",
3078
- scnap: "⪺",
3079
- scnE: "⪶",
3080
- scnsim: "⋩",
3081
- scpolint: "⨓",
3082
- scsim: "≿",
3083
- Scy: "С",
3084
- scy: "с",
3085
- sdot: "⋅",
3086
- sdotb: "⊡",
3087
- sdote: "⩦",
3088
- searhk: "⤥",
3089
- seArr: "⇘",
3090
- searr: "↘",
3091
- searrow: "↘",
3092
- sect: "§",
3093
- semi: ";",
3094
- seswar: "⤩",
3095
- setminus: "∖",
3096
- setmn: "∖",
3097
- sext: "✶",
3098
- Sfr: "𝔖",
3099
- sfr: "𝔰",
3100
- sfrown: "⌢",
3101
- sharp: "♯",
3102
- SHCHcy: "Щ",
3103
- shchcy: "щ",
3104
- SHcy: "Ш",
3105
- shcy: "ш",
3106
- ShortDownArrow: "↓",
3107
- ShortLeftArrow: "←",
3108
- shortmid: "∣",
3109
- shortparallel: "∥",
3110
- ShortRightArrow: "→",
3111
- ShortUpArrow: "↑",
3112
- shy: "­",
3113
- Sigma: "Σ",
3114
- sigma: "σ",
3115
- sigmaf: "ς",
3116
- sigmav: "ς",
3117
- sim: "∼",
3118
- simdot: "⩪",
3119
- sime: "≃",
3120
- simeq: "≃",
3121
- simg: "⪞",
3122
- simgE: "⪠",
3123
- siml: "⪝",
3124
- simlE: "⪟",
3125
- simne: "≆",
3126
- simplus: "⨤",
3127
- simrarr: "⥲",
3128
- slarr: "←",
3129
- SmallCircle: "∘",
3130
- smallsetminus: "∖",
3131
- smashp: "⨳",
3132
- smeparsl: "⧤",
3133
- smid: "∣",
3134
- smile: "⌣",
3135
- smt: "⪪",
3136
- smte: "⪬",
3137
- smtes: "⪬︀",
3138
- SOFTcy: "Ь",
3139
- softcy: "ь",
3140
- sol: "/",
3141
- solb: "⧄",
3142
- solbar: "⌿",
3143
- Sopf: "𝕊",
3144
- sopf: "𝕤",
3145
- spades: "♠",
3146
- spadesuit: "♠",
3147
- spar: "∥",
3148
- sqcap: "⊓",
3149
- sqcaps: "⊓︀",
3150
- sqcup: "⊔",
3151
- sqcups: "⊔︀",
3152
- Sqrt: "√",
3153
- sqsub: "⊏",
3154
- sqsube: "⊑",
3155
- sqsubset: "⊏",
3156
- sqsubseteq: "⊑",
3157
- sqsup: "⊐",
3158
- sqsupe: "⊒",
3159
- sqsupset: "⊐",
3160
- sqsupseteq: "⊒",
3161
- squ: "□",
3162
- Square: "□",
3163
- square: "□",
3164
- SquareIntersection: "⊓",
3165
- SquareSubset: "⊏",
3166
- SquareSubsetEqual: "⊑",
3167
- SquareSuperset: "⊐",
3168
- SquareSupersetEqual: "⊒",
3169
- SquareUnion: "⊔",
3170
- squarf: "▪",
3171
- squf: "▪",
3172
- srarr: "→",
3173
- Sscr: "𝒮",
3174
- sscr: "𝓈",
3175
- ssetmn: "∖",
3176
- ssmile: "⌣",
3177
- sstarf: "⋆",
3178
- Star: "⋆",
3179
- star: "☆",
3180
- starf: "★",
3181
- straightepsilon: "ϵ",
3182
- straightphi: "ϕ",
3183
- strns: "¯",
3184
- Sub: "⋐",
3185
- sub: "⊂",
3186
- subdot: "⪽",
3187
- subE: "⫅",
3188
- sube: "⊆",
3189
- subedot: "⫃",
3190
- submult: "⫁",
3191
- subnE: "⫋",
3192
- subne: "⊊",
3193
- subplus: "⪿",
3194
- subrarr: "⥹",
3195
- Subset: "⋐",
3196
- subset: "⊂",
3197
- subseteq: "⊆",
3198
- subseteqq: "⫅",
3199
- SubsetEqual: "⊆",
3200
- subsetneq: "⊊",
3201
- subsetneqq: "⫋",
3202
- subsim: "⫇",
3203
- subsub: "⫕",
3204
- subsup: "⫓",
3205
- succ: "≻",
3206
- succapprox: "⪸",
3207
- succcurlyeq: "≽",
3208
- Succeeds: "≻",
3209
- SucceedsEqual: "⪰",
3210
- SucceedsSlantEqual: "≽",
3211
- SucceedsTilde: "≿",
3212
- succeq: "⪰",
3213
- succnapprox: "⪺",
3214
- succneqq: "⪶",
3215
- succnsim: "⋩",
3216
- succsim: "≿",
3217
- SuchThat: "∋",
3218
- Sum: "∑",
3219
- sum: "∑",
3220
- sung: "♪",
3221
- Sup: "⋑",
3222
- sup: "⊃",
3223
- sup1: "¹",
3224
- sup2: "²",
3225
- sup3: "³",
3226
- supdot: "⪾",
3227
- supdsub: "⫘",
3228
- supE: "⫆",
3229
- supe: "⊇",
3230
- supedot: "⫄",
3231
- Superset: "⊃",
3232
- SupersetEqual: "⊇",
3233
- suphsol: "⟉",
3234
- suphsub: "⫗",
3235
- suplarr: "⥻",
3236
- supmult: "⫂",
3237
- supnE: "⫌",
3238
- supne: "⊋",
3239
- supplus: "⫀",
3240
- Supset: "⋑",
3241
- supset: "⊃",
3242
- supseteq: "⊇",
3243
- supseteqq: "⫆",
3244
- supsetneq: "⊋",
3245
- supsetneqq: "⫌",
3246
- supsim: "⫈",
3247
- supsub: "⫔",
3248
- supsup: "⫖",
3249
- swarhk: "⤦",
3250
- swArr: "⇙",
3251
- swarr: "↙",
3252
- swarrow: "↙",
3253
- swnwar: "⤪",
3254
- szlig: "ß",
3255
- Tab: " ",
3256
- target: "⌖",
3257
- Tau: "Τ",
3258
- tau: "τ",
3259
- tbrk: "⎴",
3260
- Tcaron: "Ť",
3261
- tcaron: "ť",
3262
- Tcedil: "Ţ",
3263
- tcedil: "ţ",
3264
- Tcy: "Т",
3265
- tcy: "т",
3266
- tdot: "⃛",
3267
- telrec: "⌕",
3268
- Tfr: "𝔗",
3269
- tfr: "𝔱",
3270
- there4: "∴",
3271
- Therefore: "∴",
3272
- therefore: "∴",
3273
- Theta: "Θ",
3274
- theta: "θ",
3275
- thetasym: "ϑ",
3276
- thetav: "ϑ",
3277
- thickapprox: "≈",
3278
- thicksim: "∼",
3279
- ThickSpace: "  ",
3280
- thinsp: " ",
3281
- ThinSpace: " ",
3282
- thkap: "≈",
3283
- thksim: "∼",
3284
- THORN: "Þ",
3285
- thorn: "þ",
3286
- Tilde: "∼",
3287
- tilde: "˜",
3288
- TildeEqual: "≃",
3289
- TildeFullEqual: "≅",
3290
- TildeTilde: "≈",
3291
- times: "×",
3292
- timesb: "⊠",
3293
- timesbar: "⨱",
3294
- timesd: "⨰",
3295
- tint: "∭",
3296
- toea: "⤨",
3297
- top: "⊤",
3298
- topbot: "⌶",
3299
- topcir: "⫱",
3300
- Topf: "𝕋",
3301
- topf: "𝕥",
3302
- topfork: "⫚",
3303
- tosa: "⤩",
3304
- tprime: "‴",
3305
- TRADE: "™",
3306
- trade: "™",
3307
- triangle: "▵",
3308
- triangledown: "▿",
3309
- triangleleft: "◃",
3310
- trianglelefteq: "⊴",
3311
- triangleq: "≜",
3312
- triangleright: "▹",
3313
- trianglerighteq: "⊵",
3314
- tridot: "◬",
3315
- trie: "≜",
3316
- triminus: "⨺",
3317
- TripleDot: "⃛",
3318
- triplus: "⨹",
3319
- trisb: "⧍",
3320
- tritime: "⨻",
3321
- trpezium: "⏢",
3322
- Tscr: "𝒯",
3323
- tscr: "𝓉",
3324
- TScy: "Ц",
3325
- tscy: "ц",
3326
- TSHcy: "Ћ",
3327
- tshcy: "ћ",
3328
- Tstrok: "Ŧ",
3329
- tstrok: "ŧ",
3330
- twixt: "≬",
3331
- twoheadleftarrow: "↞",
3332
- twoheadrightarrow: "↠",
3333
- Uacute: "Ú",
3334
- uacute: "ú",
3335
- Uarr: "↟",
3336
- uArr: "⇑",
3337
- uarr: "↑",
3338
- Uarrocir: "⥉",
3339
- Ubrcy: "Ў",
3340
- ubrcy: "ў",
3341
- Ubreve: "Ŭ",
3342
- ubreve: "ŭ",
3343
- Ucirc: "Û",
3344
- ucirc: "û",
3345
- Ucy: "У",
3346
- ucy: "у",
3347
- udarr: "⇅",
3348
- Udblac: "Ű",
3349
- udblac: "ű",
3350
- udhar: "⥮",
3351
- ufisht: "⥾",
3352
- Ufr: "𝔘",
3353
- ufr: "𝔲",
3354
- Ugrave: "Ù",
3355
- ugrave: "ù",
3356
- uHar: "⥣",
3357
- uharl: "↿",
3358
- uharr: "↾",
3359
- uhblk: "▀",
3360
- ulcorn: "⌜",
3361
- ulcorner: "⌜",
3362
- ulcrop: "⌏",
3363
- ultri: "◸",
3364
- Umacr: "Ū",
3365
- umacr: "ū",
3366
- uml: "¨",
3367
- UnderBar: "_",
3368
- UnderBrace: "⏟",
3369
- UnderBracket: "⎵",
3370
- UnderParenthesis: "⏝",
3371
- Union: "⋃",
3372
- UnionPlus: "⊎",
3373
- Uogon: "Ų",
3374
- uogon: "ų",
3375
- Uopf: "𝕌",
3376
- uopf: "𝕦",
3377
- UpArrow: "↑",
3378
- Uparrow: "⇑",
3379
- uparrow: "↑",
3380
- UpArrowBar: "⤒",
3381
- UpArrowDownArrow: "⇅",
3382
- UpDownArrow: "↕",
3383
- Updownarrow: "⇕",
3384
- updownarrow: "↕",
3385
- UpEquilibrium: "⥮",
3386
- upharpoonleft: "↿",
3387
- upharpoonright: "↾",
3388
- uplus: "⊎",
3389
- UpperLeftArrow: "↖",
3390
- UpperRightArrow: "↗",
3391
- Upsi: "ϒ",
3392
- upsi: "υ",
3393
- upsih: "ϒ",
3394
- Upsilon: "Υ",
3395
- upsilon: "υ",
3396
- UpTee: "⊥",
3397
- UpTeeArrow: "↥",
3398
- upuparrows: "⇈",
3399
- urcorn: "⌝",
3400
- urcorner: "⌝",
3401
- urcrop: "⌎",
3402
- Uring: "Ů",
3403
- uring: "ů",
3404
- urtri: "◹",
3405
- Uscr: "𝒰",
3406
- uscr: "𝓊",
3407
- utdot: "⋰",
3408
- Utilde: "Ũ",
3409
- utilde: "ũ",
3410
- utri: "▵",
3411
- utrif: "▴",
3412
- uuarr: "⇈",
3413
- Uuml: "Ü",
3414
- uuml: "ü",
3415
- uwangle: "⦧",
3416
- vangrt: "⦜",
3417
- varepsilon: "ϵ",
3418
- varkappa: "ϰ",
3419
- varnothing: "∅",
3420
- varphi: "ϕ",
3421
- varpi: "ϖ",
3422
- varpropto: "∝",
3423
- vArr: "⇕",
3424
- varr: "↕",
3425
- varrho: "ϱ",
3426
- varsigma: "ς",
3427
- varsubsetneq: "⊊︀",
3428
- varsubsetneqq: "⫋︀",
3429
- varsupsetneq: "⊋︀",
3430
- varsupsetneqq: "⫌︀",
3431
- vartheta: "ϑ",
3432
- vartriangleleft: "⊲",
3433
- vartriangleright: "⊳",
3434
- Vbar: "⫫",
3435
- vBar: "⫨",
3436
- vBarv: "⫩",
3437
- Vcy: "В",
3438
- vcy: "в",
3439
- VDash: "⊫",
3440
- Vdash: "⊩",
3441
- vDash: "⊨",
3442
- vdash: "⊢",
3443
- Vdashl: "⫦",
3444
- Vee: "⋁",
3445
- vee: "∨",
3446
- veebar: "⊻",
3447
- veeeq: "≚",
3448
- vellip: "⋮",
3449
- Verbar: "‖",
3450
- verbar: "|",
3451
- Vert: "‖",
3452
- vert: "|",
3453
- VerticalBar: "∣",
3454
- VerticalLine: "|",
3455
- VerticalSeparator: "❘",
3456
- VerticalTilde: "≀",
3457
- VeryThinSpace: " ",
3458
- Vfr: "𝔙",
3459
- vfr: "𝔳",
3460
- vltri: "⊲",
3461
- vnsub: "⊂⃒",
3462
- vnsup: "⊃⃒",
3463
- Vopf: "𝕍",
3464
- vopf: "𝕧",
3465
- vprop: "∝",
3466
- vrtri: "⊳",
3467
- Vscr: "𝒱",
3468
- vscr: "𝓋",
3469
- vsubnE: "⫋︀",
3470
- vsubne: "⊊︀",
3471
- vsupnE: "⫌︀",
3472
- vsupne: "⊋︀",
3473
- Vvdash: "⊪",
3474
- vzigzag: "⦚",
3475
- Wcirc: "Ŵ",
3476
- wcirc: "ŵ",
3477
- wedbar: "⩟",
3478
- Wedge: "⋀",
3479
- wedge: "∧",
3480
- wedgeq: "≙",
3481
- weierp: "℘",
3482
- Wfr: "𝔚",
3483
- wfr: "𝔴",
3484
- Wopf: "𝕎",
3485
- wopf: "𝕨",
3486
- wp: "℘",
3487
- wr: "≀",
3488
- wreath: "≀",
3489
- Wscr: "𝒲",
3490
- wscr: "𝓌",
3491
- xcap: "⋂",
3492
- xcirc: "◯",
3493
- xcup: "⋃",
3494
- xdtri: "▽",
3495
- Xfr: "𝔛",
3496
- xfr: "𝔵",
3497
- xhArr: "⟺",
3498
- xharr: "⟷",
3499
- Xi: "Ξ",
3500
- xi: "ξ",
3501
- xlArr: "⟸",
3502
- xlarr: "⟵",
3503
- xmap: "⟼",
3504
- xnis: "⋻",
3505
- xodot: "⨀",
3506
- Xopf: "𝕏",
3507
- xopf: "𝕩",
3508
- xoplus: "⨁",
3509
- xotime: "⨂",
3510
- xrArr: "⟹",
3511
- xrarr: "⟶",
3512
- Xscr: "𝒳",
3513
- xscr: "𝓍",
3514
- xsqcup: "⨆",
3515
- xuplus: "⨄",
3516
- xutri: "△",
3517
- xvee: "⋁",
3518
- xwedge: "⋀",
3519
- Yacute: "Ý",
3520
- yacute: "ý",
3521
- YAcy: "Я",
3522
- yacy: "я",
3523
- Ycirc: "Ŷ",
3524
- ycirc: "ŷ",
3525
- Ycy: "Ы",
3526
- ycy: "ы",
3527
- yen: "¥",
3528
- Yfr: "𝔜",
3529
- yfr: "𝔶",
3530
- YIcy: "Ї",
3531
- yicy: "ї",
3532
- Yopf: "𝕐",
3533
- yopf: "𝕪",
3534
- Yscr: "𝒴",
3535
- yscr: "𝓎",
3536
- YUcy: "Ю",
3537
- yucy: "ю",
3538
- Yuml: "Ÿ",
3539
- yuml: "ÿ",
3540
- Zacute: "Ź",
3541
- zacute: "ź",
3542
- Zcaron: "Ž",
3543
- zcaron: "ž",
3544
- Zcy: "З",
3545
- zcy: "з",
3546
- Zdot: "Ż",
3547
- zdot: "ż",
3548
- zeetrf: "ℨ",
3549
- ZeroWidthSpace: "​",
3550
- Zeta: "Ζ",
3551
- zeta: "ζ",
3552
- Zfr: "ℨ",
3553
- zfr: "𝔷",
3554
- ZHcy: "Ж",
3555
- zhcy: "ж",
3556
- zigrarr: "⇝",
3557
- Zopf: "ℤ",
3558
- zopf: "𝕫",
3559
- Zscr: "𝒵",
3560
- zscr: "𝓏",
3561
- zwj: "‍",
3562
- zwnj: "‌"
3563
- }), u.entityMap = u.HTML_ENTITIES;
3564
- })(xe);
3565
- var ju = {}, mu = W.NAMESPACE, Lu = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/, ee = new RegExp("[\\-\\.0-9" + Lu.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"), re = new RegExp("^" + Lu.source + ee.source + "*(?::" + Lu.source + ee.source + "*)?$"), pu = 0, Q = 1, uu = 2, fu = 3, eu = 4, ru = 5, Du = 6, Cu = 7;
3566
- function su(u, e) {
3567
- this.message = u, this.locator = e, Error.captureStackTrace && Error.captureStackTrace(this, su);
3568
- }
3569
- su.prototype = new Error();
3570
- su.prototype.name = su.name;
3571
- function Re() {
3572
- }
3573
- Re.prototype = {
3574
- parse: function(u, e, r) {
3575
- var t = this.domBuilder;
3576
- t.startDocument(), Oe(e, e = {}), pr(
3577
- u,
3578
- e,
3579
- r,
3580
- t,
3581
- this.errorHandler
3582
- ), t.endDocument();
3583
- }
3584
- };
3585
- function pr(u, e, r, t, n) {
3586
- function i(a) {
3587
- if (a > 65535) {
3588
- a -= 65536;
3589
- var P = 55296 + (a >> 10), Ue = 56320 + (a & 1023);
3590
- return String.fromCharCode(P, Ue);
3591
- } else
3592
- return String.fromCharCode(a);
3593
- }
3594
- function o(a) {
3595
- var P = a.slice(1, -1);
3596
- return Object.hasOwnProperty.call(r, P) ? r[P] : P.charAt(0) === "#" ? i(parseInt(P.substr(1).replace("x", "0x"))) : (n.error("entity not found:" + a), a);
3597
- }
3598
- function l(a) {
3599
- if (a > C) {
3600
- var P = u.substring(C, a).replace(/&#?\w+;/g, o);
3601
- f && s(C), t.characters(P, 0, a - C), C = a;
3602
- }
3603
- }
3604
- function s(a, P) {
3605
- for (; a >= c && (P = D.exec(u)); )
3606
- p = P.index, c = p + P[0].length, f.lineNumber++;
3607
- f.columnNumber = a - p + 1;
3608
- }
3609
- for (var p = 0, c = 0, D = /.*(?:\r\n?|\n)|.*$/g, f = t.locator, d = [{ currentNSMap: e }], v = {}, C = 0; ; ) {
3610
- try {
3611
- var A = u.indexOf("<", C);
3612
- if (A < 0) {
3613
- if (!u.substr(C).match(/^\s*$/)) {
3614
- var h = t.doc, y = h.createTextNode(u.substr(C));
3615
- h.appendChild(y), t.currentElement = y;
3616
- }
3617
- return;
3618
- }
3619
- switch (A > C && l(A), u.charAt(A + 1)) {
3620
- case "/":
3621
- var m = u.indexOf(">", A + 3), b = u.substring(A + 2, m).replace(/[ \t\n\r]+$/g, ""), F = d.pop();
3622
- m < 0 ? (b = u.substring(A + 2).replace(/[\s<].*/, ""), n.error("end tag name: " + b + " is not complete:" + F.tagName), m = A + 1 + b.length) : b.match(/\s</) && (b = b.replace(/[\s<].*/, ""), n.error("end tag name: " + b + " maybe not complete"), m = A + 1 + b.length);
3623
- var T = F.localNSMap, x = F.tagName == b, V = x || F.tagName && F.tagName.toLowerCase() == b.toLowerCase();
3624
- if (V) {
3625
- if (t.endElement(F.uri, F.localName, b), T)
3626
- for (var J in T)
3627
- Object.prototype.hasOwnProperty.call(T, J) && t.endPrefixMapping(J);
3628
- x || n.fatalError("end tag name: " + b + " is not match the current start tagName:" + F.tagName);
3629
- } else
3630
- d.push(F);
3631
- m++;
3632
- break;
3633
- case "?":
3634
- f && s(A), m = mr(u, A, t);
3635
- break;
3636
- case "!":
3637
- f && s(A), m = dr(u, A, t, n);
3638
- break;
3639
- default:
3640
- f && s(A);
3641
- var g = new Le(), R = d[d.length - 1].currentNSMap, m = fr(u, A, g, R, o, n), S = g.length;
3642
- if (!g.closed && hr(u, m, g.tagName, v) && (g.closed = !0, r.nbsp || n.warning("unclosed xml attribute")), f && S) {
3643
- for (var G = te(f, {}), k = 0; k < S; k++) {
3644
- var w = g[k];
3645
- s(w.offset), w.locator = te(f, {});
3646
- }
3647
- t.locator = G, ne(g, t, R) && d.push(g), t.locator = f;
3648
- } else
3649
- ne(g, t, R) && d.push(g);
3650
- mu.isHTML(g.uri) && !g.closed ? m = Dr(u, m, g.tagName, o, t) : m++;
3651
- }
3652
- } catch (a) {
3653
- if (a instanceof su)
3654
- throw a;
3655
- n.error("element parse error: " + a), m = -1;
3656
- }
3657
- m > C ? C = m : l(Math.max(A, C) + 1);
3658
- }
3659
- }
3660
- function te(u, e) {
3661
- return e.lineNumber = u.lineNumber, e.columnNumber = u.columnNumber, e;
3662
- }
3663
- function fr(u, e, r, t, n, i) {
3664
- function o(f, d, v) {
3665
- r.attributeNames.hasOwnProperty(f) && i.fatalError("Attribute " + f + " redefined"), r.addValue(
3666
- f,
3667
- // @see https://www.w3.org/TR/xml/#AVNormalize
3668
- // since the xmldom sax parser does not "interpret" DTD the following is not implemented:
3669
- // - recursive replacement of (DTD) entity references
3670
- // - trimming and collapsing multiple spaces into a single one for attributes that are not of type CDATA
3671
- d.replace(/[\t\n\r]/g, " ").replace(/&#?\w+;/g, n),
3672
- v
3673
- );
3674
- }
3675
- for (var l, s, p = ++e, c = pu; ; ) {
3676
- var D = u.charAt(p);
3677
- switch (D) {
3678
- case "=":
3679
- if (c === Q)
3680
- l = u.slice(e, p), c = fu;
3681
- else if (c === uu)
3682
- c = fu;
3683
- else
3684
- throw new Error("attribute equal must after attrName");
3685
- break;
3686
- case "'":
3687
- case '"':
3688
- if (c === fu || c === Q)
3689
- if (c === Q && (i.warning('attribute value must after "="'), l = u.slice(e, p)), e = p + 1, p = u.indexOf(D, e), p > 0)
3690
- s = u.slice(e, p), o(l, s, e - 1), c = ru;
3691
- else
3692
- throw new Error("attribute value no end '" + D + "' match");
3693
- else if (c == eu)
3694
- s = u.slice(e, p), o(l, s, e), i.warning('attribute "' + l + '" missed start quot(' + D + ")!!"), e = p + 1, c = ru;
3695
- else
3696
- throw new Error('attribute value must after "="');
3697
- break;
3698
- case "/":
3699
- switch (c) {
3700
- case pu:
3701
- r.setTagName(u.slice(e, p));
3702
- case ru:
3703
- case Du:
3704
- case Cu:
3705
- c = Cu, r.closed = !0;
3706
- case eu:
3707
- case Q:
3708
- break;
3709
- case uu:
3710
- r.closed = !0;
3711
- break;
3712
- default:
3713
- throw new Error("attribute invalid close char('/')");
3714
- }
3715
- break;
3716
- case "":
3717
- return i.error("unexpected end of input"), c == pu && r.setTagName(u.slice(e, p)), p;
3718
- case ">":
3719
- switch (c) {
3720
- case pu:
3721
- r.setTagName(u.slice(e, p));
3722
- case ru:
3723
- case Du:
3724
- case Cu:
3725
- break;
3726
- case eu:
3727
- case Q:
3728
- s = u.slice(e, p), s.slice(-1) === "/" && (r.closed = !0, s = s.slice(0, -1));
3729
- case uu:
3730
- c === uu && (s = l), c == eu ? (i.warning('attribute "' + s + '" missed quot(")!'), o(l, s, e)) : ((!mu.isHTML(t[""]) || !s.match(/^(?:disabled|checked|selected)$/i)) && i.warning('attribute "' + s + '" missed value!! "' + s + '" instead!!'), o(s, s, e));
3731
- break;
3732
- case fu:
3733
- throw new Error("attribute value missed!!");
3734
- }
3735
- return p;
3736
- case "€":
3737
- D = " ";
3738
- default:
3739
- if (D <= " ")
3740
- switch (c) {
3741
- case pu:
3742
- r.setTagName(u.slice(e, p)), c = Du;
3743
- break;
3744
- case Q:
3745
- l = u.slice(e, p), c = uu;
3746
- break;
3747
- case eu:
3748
- var s = u.slice(e, p);
3749
- i.warning('attribute "' + s + '" missed quot(")!!'), o(l, s, e);
3750
- case ru:
3751
- c = Du;
3752
- break;
3753
- }
3754
- else
3755
- switch (c) {
3756
- case uu:
3757
- r.tagName, (!mu.isHTML(t[""]) || !l.match(/^(?:disabled|checked|selected)$/i)) && i.warning('attribute "' + l + '" missed value!! "' + l + '" instead2!!'), o(l, l, e), e = p, c = Q;
3758
- break;
3759
- case ru:
3760
- i.warning('attribute space is required"' + l + '"!!');
3761
- case Du:
3762
- c = Q, e = p;
3763
- break;
3764
- case fu:
3765
- c = eu, e = p;
3766
- break;
3767
- case Cu:
3768
- throw new Error("elements closed character '/' and '>' must be connected to");
3769
- }
3770
- }
3771
- p++;
3772
- }
3773
- }
3774
- function ne(u, e, r) {
3775
- for (var t = u.tagName, n = null, D = u.length; D--; ) {
3776
- var i = u[D], o = i.qName, l = i.value, f = o.indexOf(":");
3777
- if (f > 0)
3778
- var s = i.prefix = o.slice(0, f), p = o.slice(f + 1), c = s === "xmlns" && p;
3779
- else
3780
- p = o, s = null, c = o === "xmlns" && "";
3781
- i.localName = p, c !== !1 && (n == null && (n = {}, Oe(r, r = {})), r[c] = n[c] = l, i.uri = mu.XMLNS, e.startPrefixMapping(c, l));
3782
- }
3783
- for (var D = u.length; D--; ) {
3784
- i = u[D];
3785
- var s = i.prefix;
3786
- s && (s === "xml" && (i.uri = mu.XML), s !== "xmlns" && (i.uri = r[s || ""]));
3787
- }
3788
- var f = t.indexOf(":");
3789
- f > 0 ? (s = u.prefix = t.slice(0, f), p = u.localName = t.slice(f + 1)) : (s = null, p = u.localName = t);
3790
- var d = u.uri = r[s || ""];
3791
- if (e.startElement(d, p, t, u), u.closed) {
3792
- if (e.endElement(d, p, t), n)
3793
- for (s in n)
3794
- Object.prototype.hasOwnProperty.call(n, s) && e.endPrefixMapping(s);
3795
- } else
3796
- return u.currentNSMap = r, u.localNSMap = n, !0;
3797
- }
3798
- function Dr(u, e, r, t, n) {
3799
- if (/^(?:script|textarea)$/i.test(r)) {
3800
- var i = u.indexOf("</" + r + ">", e), o = u.substring(e + 1, i);
3801
- if (/[&<]/.test(o))
3802
- return /^script$/i.test(r) ? (n.characters(o, 0, o.length), i) : (o = o.replace(/&#?\w+;/g, t), n.characters(o, 0, o.length), i);
3803
- }
3804
- return e + 1;
3805
- }
3806
- function hr(u, e, r, t) {
3807
- var n = t[r];
3808
- return n == null && (n = u.lastIndexOf("</" + r + ">"), n < e && (n = u.lastIndexOf("</" + r)), t[r] = n), n < e;
3809
- }
3810
- function Oe(u, e) {
3811
- for (var r in u)
3812
- Object.prototype.hasOwnProperty.call(u, r) && (e[r] = u[r]);
3813
- }
3814
- function dr(u, e, r, t) {
3815
- var n = u.charAt(e + 2);
3816
- switch (n) {
3817
- case "-":
3818
- if (u.charAt(e + 3) === "-") {
3819
- var i = u.indexOf("-->", e + 4);
3820
- return i > e ? (r.comment(u, e + 4, i - e - 4), i + 3) : (t.error("Unclosed comment"), -1);
3821
- } else
3822
- return -1;
3823
- default:
3824
- if (u.substr(e + 3, 6) == "CDATA[") {
3825
- var i = u.indexOf("]]>", e + 9);
3826
- return r.startCDATA(), r.characters(u, e + 9, i - e - 9), r.endCDATA(), i + 3;
3827
- }
3828
- var o = Ar(u, e), l = o.length;
3829
- if (l > 1 && /!doctype/i.test(o[0][0])) {
3830
- var s = o[1][0], p = !1, c = !1;
3831
- l > 3 && (/^public$/i.test(o[2][0]) ? (p = o[3][0], c = l > 4 && o[4][0]) : /^system$/i.test(o[2][0]) && (c = o[3][0]));
3832
- var D = o[l - 1];
3833
- return r.startDTD(s, p, c), r.endDTD(), D.index + D[0].length;
3834
- }
3835
- }
3836
- return -1;
3837
- }
3838
- function mr(u, e, r) {
3839
- var t = u.indexOf("?>", e);
3840
- if (t) {
3841
- var n = u.substring(e, t).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
3842
- return n ? (n[0].length, r.processingInstruction(n[1], n[2]), t + 2) : -1;
3843
- }
3844
- return -1;
3845
- }
3846
- function Le() {
3847
- this.attributeNames = {};
3848
- }
3849
- Le.prototype = {
3850
- setTagName: function(u) {
3851
- if (!re.test(u))
3852
- throw new Error("invalid tagName:" + u);
3853
- this.tagName = u;
3854
- },
3855
- addValue: function(u, e, r) {
3856
- if (!re.test(u))
3857
- throw new Error("invalid attribute:" + u);
3858
- this.attributeNames[u] = this.length, this[this.length++] = { qName: u, value: e, offset: r };
3859
- },
3860
- length: 0,
3861
- getLocalName: function(u) {
3862
- return this[u].localName;
3863
- },
3864
- getLocator: function(u) {
3865
- return this[u].locator;
3866
- },
3867
- getQName: function(u) {
3868
- return this[u].qName;
3869
- },
3870
- getURI: function(u) {
3871
- return this[u].uri;
3872
- },
3873
- getValue: function(u) {
3874
- return this[u].value;
3875
- }
3876
- // ,getIndex:function(uri, localName)){
3877
- // if(localName){
3878
- //
3879
- // }else{
3880
- // var qName = uri
3881
- // }
3882
- // },
3883
- // getValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},
3884
- // getType:function(uri,localName){}
3885
- // getType:function(i){},
3886
- };
3887
- function Ar(u, e) {
3888
- var r, t = [], n = /'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;
3889
- for (n.lastIndex = e, n.exec(u); r = n.exec(u); )
3890
- if (t.push(r), r[1]) return t;
3891
- }
3892
- ju.XMLReader = Re;
3893
- ju.ParseError = su;
3894
- var gr = W, Er = Z, ae = xe, Ie = ju, vr = Er.DOMImplementation, ie = gr.NAMESPACE, Cr = Ie.ParseError, br = Ie.XMLReader;
3895
- function _e(u) {
3896
- return u.replace(/\r[\n\u0085]/g, `
3897
- `).replace(/[\r\u0085\u2028]/g, `
3898
- `);
3899
- }
3900
- function ke(u) {
3901
- this.options = u || { locator: {} };
3902
- }
3903
- ke.prototype.parseFromString = function(u, e) {
3904
- var r = this.options, t = new br(), n = r.domBuilder || new vu(), i = r.errorHandler, o = r.locator, l = r.xmlns || {}, s = /\/x?html?$/.test(e), p = s ? ae.HTML_ENTITIES : ae.XML_ENTITIES;
3905
- o && n.setDocumentLocator(o), t.errorHandler = wr(i, n, o), t.domBuilder = r.domBuilder || n, s && (l[""] = ie.HTML), l.xml = l.xml || ie.XML;
3906
- var c = r.normalizeLineEndings || _e;
3907
- return u && typeof u == "string" ? t.parse(
3908
- c(u),
3909
- l,
3910
- p
3911
- ) : t.errorHandler.error("invalid doc source"), n.doc;
3912
- };
3913
- function wr(u, e, r) {
3914
- if (!u) {
3915
- if (e instanceof vu)
3916
- return e;
3917
- u = e;
3918
- }
3919
- var t = {}, n = u instanceof Function;
3920
- r = r || {};
3921
- function i(o) {
3922
- var l = u[o];
3923
- !l && n && (l = u.length == 2 ? function(s) {
3924
- u(o, s);
3925
- } : u), t[o] = l && function(s) {
3926
- l("[xmldom " + o + "] " + s + Iu(r));
3927
- } || function() {
3928
- };
3929
- }
3930
- return i("warning"), i("error"), i("fatalError"), t;
3931
- }
3932
- function vu() {
3933
- this.cdata = !1;
3934
- }
3935
- function tu(u, e) {
3936
- e.lineNumber = u.lineNumber, e.columnNumber = u.columnNumber;
3937
- }
3938
- vu.prototype = {
3939
- startDocument: function() {
3940
- this.doc = new vr().createDocument(null, null, null), this.locator && (this.doc.documentURI = this.locator.systemId);
3941
- },
3942
- startElement: function(u, e, r, t) {
3943
- var n = this.doc, i = n.createElementNS(u, r || e), o = t.length;
3944
- bu(this, i), this.currentElement = i, this.locator && tu(this.locator, i);
3945
- for (var l = 0; l < o; l++) {
3946
- var u = t.getURI(l), s = t.getValue(l), r = t.getQName(l), p = n.createAttributeNS(u, r);
3947
- this.locator && tu(t.getLocator(l), p), p.value = p.nodeValue = s, i.setAttributeNode(p);
3948
- }
3949
- },
3950
- endElement: function(u, e, r) {
3951
- var t = this.currentElement;
3952
- t.tagName, this.currentElement = t.parentNode;
3953
- },
3954
- startPrefixMapping: function(u, e) {
3955
- },
3956
- endPrefixMapping: function(u) {
3957
- },
3958
- processingInstruction: function(u, e) {
3959
- var r = this.doc.createProcessingInstruction(u, e);
3960
- this.locator && tu(this.locator, r), bu(this, r);
3961
- },
3962
- ignorableWhitespace: function(u, e, r) {
3963
- },
3964
- characters: function(u, e, r) {
3965
- if (u = oe.apply(this, arguments), u) {
3966
- if (this.cdata)
3967
- var t = this.doc.createCDATASection(u);
3968
- else
3969
- var t = this.doc.createTextNode(u);
3970
- this.currentElement ? this.currentElement.appendChild(t) : /^\s*$/.test(u) && this.doc.appendChild(t), this.locator && tu(this.locator, t);
3971
- }
3972
- },
3973
- skippedEntity: function(u) {
3974
- },
3975
- endDocument: function() {
3976
- this.doc.normalize();
3977
- },
3978
- setDocumentLocator: function(u) {
3979
- (this.locator = u) && (u.lineNumber = 0);
3980
- },
3981
- //LexicalHandler
3982
- comment: function(u, e, r) {
3983
- u = oe.apply(this, arguments);
3984
- var t = this.doc.createComment(u);
3985
- this.locator && tu(this.locator, t), bu(this, t);
3986
- },
3987
- startCDATA: function() {
3988
- this.cdata = !0;
3989
- },
3990
- endCDATA: function() {
3991
- this.cdata = !1;
3992
- },
3993
- startDTD: function(u, e, r) {
3994
- var t = this.doc.implementation;
3995
- if (t && t.createDocumentType) {
3996
- var n = t.createDocumentType(u, e, r);
3997
- this.locator && tu(this.locator, n), bu(this, n), this.doc.doctype = n;
3998
- }
3999
- },
4000
- /**
4001
- * @see org.xml.sax.ErrorHandler
4002
- * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
4003
- */
4004
- warning: function(u) {
4005
- console.warn("[xmldom warning] " + u, Iu(this.locator));
4006
- },
4007
- error: function(u) {
4008
- console.error("[xmldom error] " + u, Iu(this.locator));
4009
- },
4010
- fatalError: function(u) {
4011
- throw new Cr(u, this.locator);
4012
- }
4013
- };
4014
- function Iu(u) {
4015
- if (u)
4016
- return `
4017
- @` + (u.systemId || "") + "#[line:" + u.lineNumber + ",col:" + u.columnNumber + "]";
4018
- }
4019
- function oe(u, e, r) {
4020
- return typeof u == "string" ? u.substr(e, r) : u.length >= e + r || e ? new java.lang.String(u, e, r) + "" : u;
4021
- }
4022
- "endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g, function(u) {
4023
- vu.prototype[u] = function() {
4024
- return null;
4025
- };
4026
- });
4027
- function bu(u, e) {
4028
- u.currentElement ? u.currentElement.appendChild(e) : u.doc.appendChild(e);
4029
- }
4030
- Su.__DOMHandler = vu;
4031
- Su.normalizeLineEndings = _e;
4032
- Su.DOMParser = ke;
4033
- var yr = Su.DOMParser;
4034
- const Br = "1.0.78";
4035
- function Tr() {
4036
- return typeof window != "undefined" && ({}.toString.call(window) === "[object Window]" || {}.toString.call(window) === "[object global]");
4037
- }
4038
- const lu = typeof window != "undefined" ? window : typeof WorkerGlobalScope != "undefined" ? self : { document: void 0, tinyEngine: void 0 };
4039
- lu.Path2D || $e(lu);
4040
- lu.DOMParser || (lu.DOMParser = yr);
4041
- const M = {
4042
- window: lu,
4043
- version: Br,
4044
- isBrowser: Tr(),
4045
- dpr: typeof window != "undefined" && window.devicePixelRatio || 1,
4046
- document: lu.document,
4047
- time: 0,
4048
- deltaTime: 0,
4049
- config: He
4050
- };
4051
- class Nr {
4052
- constructor(e, r, t) {
4053
- N(this, "isLoading", !1);
4054
- N(this, "itemsLoaded", 0);
4055
- N(this, "itemsTotal", 0);
4056
- N(this, "urlModifier");
4057
- N(this, "handlers", []);
4058
- N(this, "onStart");
4059
- N(this, "onLoad");
4060
- N(this, "onProgress");
4061
- N(this, "onError");
4062
- this.onLoad = e, this.onProgress = r, this.onError = t;
4063
- }
4064
- itemStart(e) {
4065
- this.itemsTotal++, this.isLoading || this.onStart !== void 0 && this.onStart(e, this.itemsLoaded, this.itemsTotal), this.isLoading = !0;
4066
- }
4067
- itemEnd(e) {
4068
- this.itemsLoaded++, this.onProgress !== void 0 && this.onProgress(e, this.itemsLoaded, this.itemsTotal), this.itemsLoaded === this.itemsTotal && (this.isLoading = !1, this.onLoad !== void 0 && this.onLoad());
4069
- }
4070
- itemError(e) {
4071
- this.onError !== void 0 && this.onError(e);
4072
- }
4073
- resolveURL(e) {
4074
- return this.urlModifier !== void 0 ? this.urlModifier(e) : e;
4075
- }
4076
- setURLModifier(e) {
4077
- return this.urlModifier = e, this;
4078
- }
4079
- addHandler(e, r) {
4080
- return this.handlers.push(e, r), this;
4081
- }
4082
- removeHandler(e) {
4083
- const r = this.handlers.indexOf(e);
4084
- return r !== -1 && this.handlers.splice(r, 2), this;
4085
- }
4086
- getHandler(e) {
4087
- for (let r = 0, t = this.handlers.length; r < t; r += 2) {
4088
- const n = this.handlers[r], i = this.handlers[r + 1];
4089
- if (n.global && (n.lastIndex = 0), n.test(e))
4090
- return i;
4091
- }
4092
- return null;
4093
- }
4094
- }
4095
- const se = {
4096
- enabled: !1,
4097
- files: {},
4098
- add: function(u, e) {
4099
- this.enabled && (this.files[u] = e);
4100
- },
4101
- get: function(u) {
4102
- if (this.enabled)
4103
- return this.files[u];
4104
- },
4105
- remove: function(u) {
4106
- delete this.files[u];
4107
- },
4108
- clear: function() {
4109
- this.files = {};
4110
- }
4111
- }, Fr = new Nr();
4112
- class Pe {
4113
- constructor(e = Fr) {
4114
- N(this, "manager");
4115
- N(this, "crossOrigin", "anonymous");
4116
- N(this, "withCredentials", !1);
4117
- N(this, "path", "");
4118
- N(this, "resourcePath", "");
4119
- N(this, "requestHeader", {});
4120
- this.manager = e;
4121
- }
4122
- loadAsync(e, r) {
4123
- const t = this;
4124
- return new Promise(function(n, i) {
4125
- t.load(e, n, r, i);
4126
- });
4127
- }
4128
- // abstract parse(): void;
4129
- setCrossOrigin(e) {
4130
- return this.crossOrigin = e, this;
4131
- }
4132
- setWithCredentials(e) {
4133
- return this.withCredentials = e, this;
4134
- }
4135
- setPath(e) {
4136
- return this.path = e, this;
4137
- }
4138
- setResourcePath(e) {
4139
- return this.resourcePath = e, this;
4140
- }
4141
- setRequestHeader(e) {
4142
- return this.requestHeader = e, this;
4143
- }
4144
- }
4145
- const j = {};
4146
- class Sr extends Error {
4147
- constructor(r, t) {
4148
- super(r);
4149
- N(this, "response");
4150
- this.response = t;
4151
- }
4152
- }
4153
- class qr extends Pe {
4154
- constructor(r) {
4155
- super(r);
4156
- N(this, "mimeType");
4157
- N(this, "responseType");
4158
- }
4159
- load(r, t, n, i) {
4160
- r === void 0 && (r = ""), this.path !== void 0 && (r = this.path + r), r = this.manager.resolveURL(r);
4161
- const o = se.get(r);
4162
- if (o !== void 0)
4163
- return this.manager.itemStart(r), setTimeout(() => {
4164
- t && t(o), this.manager.itemEnd(r);
4165
- }, 0), o;
4166
- if (j[r] !== void 0) {
4167
- j[r].push({ onLoad: t, onProgress: n, onError: i });
4168
- return;
4169
- }
4170
- j[r] = [], j[r].push({ onLoad: t, onProgress: n, onError: i });
4171
- const l = new M.window.Request(r, {
4172
- headers: new M.window.Headers(this.requestHeader),
4173
- credentials: this.withCredentials ? "include" : "same-origin"
4174
- }), s = this.mimeType, p = this.responseType;
4175
- fetch(l).then((c) => {
4176
- if (c.status === 200 || c.status === 0) {
4177
- if (c.status === 0 && console.warn("FileLoader: HTTP Status 0 received."), typeof ReadableStream == "undefined" || c.body === void 0 || c.body.getReader === void 0)
4178
- return c;
4179
- const D = j[r], f = c.body.getReader(), d = c.headers.get("Content-Length") || c.headers.get("X-File-Size"), v = d ? parseInt(d) : 0, C = v !== 0;
4180
- let A = 0;
4181
- const h = new ReadableStream({
4182
- start(y) {
4183
- b();
4184
- function b() {
4185
- f.read().then(({ done: F, value: T }) => {
4186
- if (F)
4187
- y.close();
4188
- else {
4189
- A += T.byteLength;
4190
- const x = new ProgressEvent("progress", { lengthComputable: C, loaded: A, total: v });
4191
- for (let V = 0, J = D.length; V < J; V++) {
4192
- const g = D[V];
4193
- g.onProgress && g.onProgress(x);
4194
- }
4195
- y.enqueue(T), b();
4196
- }
4197
- });
4198
- }
4199
- }
4200
- });
4201
- return new Response(h);
4202
- } else
4203
- throw new Sr(`fetch for "${c.url}" responded with ${c.status}: ${c.statusText}`, c);
4204
- }).then((c) => {
4205
- switch (p) {
4206
- case "arraybuffer":
4207
- return c.arrayBuffer();
4208
- case "blob":
4209
- return c.blob();
4210
- case "document":
4211
- return c.text().then((D) => new DOMParser().parseFromString(D, s));
4212
- case "json":
4213
- return c.json();
4214
- default:
4215
- if (s === void 0)
4216
- return c.text();
4217
- {
4218
- const f = /charset="?([^;"\s]*)"?/i.exec(s), d = f && f[1] ? f[1].toLowerCase() : void 0, v = new TextDecoder(d);
4219
- return c.arrayBuffer().then((C) => v.decode(C));
4220
- }
4221
- }
4222
- }).then((c) => {
4223
- se.add(r, c);
4224
- const D = j[r];
4225
- delete j[r];
4226
- for (let f = 0, d = D.length; f < d; f++) {
4227
- const v = D[f];
4228
- v.onLoad && v.onLoad(c);
4229
- }
4230
- }).catch((c) => {
4231
- const D = j[r];
4232
- if (D === void 0)
4233
- throw this.manager.itemError(r), c;
4234
- delete j[r];
4235
- for (let f = 0, d = D.length; f < d; f++) {
4236
- const v = D[f];
4237
- v.onError && v.onError(c);
4238
- }
4239
- this.manager.itemError(r);
4240
- }).finally(() => {
4241
- this.manager.itemEnd(r);
4242
- }), this.manager.itemStart(r);
4243
- }
4244
- setMimeType(r) {
4245
- return this.mimeType = r, this;
4246
- }
4247
- setResponseType(r) {
4248
- return this.responseType = r, this;
4249
- }
4250
- }
4251
- class xr extends Pe {
4252
- constructor(e) {
4253
- super(e);
4254
- }
4255
- load(e, r, t, n) {
4256
- const i = this, o = new qr(i.manager);
4257
- o.setPath(i.path), o.setRequestHeader(i.requestHeader), o.setWithCredentials(i.withCredentials), o.load(e, function(l) {
4258
- try {
4259
- r && r(l);
4260
- } catch (s) {
4261
- n ? n(s) : console.error(s), i.manager.itemError(e);
4262
- }
4263
- }, t, n);
4264
- }
4265
- }
4266
- onmessage = (u) => qu(Me, null, function* () {
4267
- u.data.cmd === "detection" && Rr(u.data.data);
4268
- });
4269
- function Rr(u) {
4270
- console.warn("【environment.worker】detection: ", u);
4271
- let e = "";
4272
- console.log("- Web Animation: ", !!M.window.Animation), console.log("- OffscreenCanvas: ", !!M.window.OffscreenCanvas), console.log("- Image: ", !!M.window.Image), Or(), Lr("../../examples/assets/nc05-02.svg"), e += "- Web Animation: " + !!M.window.Animation + `\r
4273
- `, e += "- OffscreenCanvas: " + !!M.window.OffscreenCanvas + `\r
4274
- `, e += "- DOMParser: " + !!M.window.DOMParser + `\r
4275
- `, postMessage({ cmd: "echo", data: { msg: e } });
4276
- }
4277
- function Or() {
4278
- console.log("- DOMParser: ", !!DOMParser, !!M.window.DOMParser);
4279
- const u = new M.window.DOMParser().parseFromString(
4280
- `<xml xmlns="a" xmlns:c="./lite">
4281
- <child>test</child>
4282
- <child></child>
4283
- <child/>
4284
- </xml>`,
4285
- "text/xml"
4286
- );
4287
- console.log("- DOMParser: ", u);
4288
- }
4289
- function Lr(u) {
4290
- return qu(this, null, function* () {
4291
- let e = yield new xr().loadAsync(u), r = new M.window.DOMParser().parseFromString(e, "image/svg+xml").documentElement;
4292
- console.warn("!!! ---> svgElement: ", r);
4293
- });
4294
- }
4295
- });
4296
- export default Ir();
1
+ var e,r,t=Object.defineProperty,n=Object.getOwnPropertyNames,a=(e,r,n)=>((e,r,n)=>r in e?t(e,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[r]=n)(e,"symbol"!=typeof r?r+"":r,n),o=(e,r,t)=>new Promise(((n,a)=>{var o=e=>{try{s(t.next(e))}catch(e){a(e)}},i=e=>{try{s(t.throw(e))}catch(e){a(e)}},s=e=>e.done?n(e.value):Promise.resolve(e.value).then(o,i);s((t=t.apply(e,r)).next())})),i=(e={"environment.worker.js"(e){function r(e,r){const t=e.x*Math.cos(r)-e.y*Math.sin(r),n=e.y*Math.cos(r)+e.x*Math.sin(r);e.x=t,e.y=n}function t(e,r){e.x*=r,e.y*=r}class n{constructor(e){a(this,"commands"),this.commands=[],e&&e instanceof n?this.commands.push(...e.commands):e&&(this.commands=function(e){const r=[],t=String(e).trim();return"M"!==t[0]&&"m"!==t[0]||t.replace(l,((e,t,n)=>{const a=function(e){const r=e.match(c);return r?r.map(Number):[]}(n);let o=t.toLowerCase(),i=t;if("m"===o&&a.length>2&&(r.push([i,...a.splice(0,2)]),o="l",i="m"===i?"l":"L"),a.length<s[o])return"";for(r.push([i,...a.splice(0,s[o])]);a.length>=s[o]&&a.length&&s[o];)r.push([i,...a.splice(0,s[o])]);return""})),r}(e))}addPath(e){e&&e instanceof n&&this.commands.push(...e.commands)}moveTo(e,r){this.commands.push(["M",e,r])}lineTo(e,r){this.commands.push(["L",e,r])}arc(e,r,t,n,a,o){this.commands.push(["AC",e,r,t,n,a,!!o])}arcTo(e,r,t,n,a){this.commands.push(["AT",e,r,t,n,a])}ellipse(e,r,t,n,a,o,i,s){this.commands.push(["E",e,r,t,n,a,o,i,!!s])}closePath(){this.commands.push(["Z"])}bezierCurveTo(e,r,t,n,a,o){this.commands.push(["C",e,r,t,n,a,o])}quadraticCurveTo(e,r,t,n){this.commands.push(["Q",e,r,t,n])}rect(e,r,t,n){this.commands.push(["R",e,r,t,n])}roundRect(e,r,t,n,a){void 0===a?this.commands.push(["RR",e,r,t,n,0]):this.commands.push(["RR",e,r,t,n,a])}}function i(e,n){let a,o,i,s,l,c,u,p,d,h,f,m,g,b,w,v,y,N,E,T,x,D=0,q=0,S=null,A=null,L=null,C=null,R=null,O=null;e.beginPath();for(let P=0;P<n.length;++P){let _;switch(N=n[P][0],"S"!==N&&"s"!==N&&"C"!==N&&"c"!==N&&(S=null,A=null),"T"!==N&&"t"!==N&&"Q"!==N&&"q"!==N&&(L=null,C=null),N){case"m":case"M":_=n[P],"m"===N?(D+=_[1],q+=_[2]):(D=_[1],q=_[2]),"M"!==N&&R||(R={x:D,y:q}),e.moveTo(D,q);break;case"l":_=n[P],D+=_[1],q+=_[2],e.lineTo(D,q);break;case"L":_=n[P],D=_[1],q=_[2],e.lineTo(D,q);break;case"H":_=n[P],D=_[1],e.lineTo(D,q);break;case"h":_=n[P],D+=_[1],e.lineTo(D,q);break;case"V":_=n[P],q=_[1],e.lineTo(D,q);break;case"v":_=n[P],q+=_[1],e.lineTo(D,q);break;case"a":case"A":if(_=n[P],null===O)throw new Error("This should never happen");"a"===N?(D+=_[6],q+=_[7]):(D=_[6],q=_[7]),b=_[1],w=_[2],u=_[3]*Math.PI/180,i=!!_[4],s=!!_[5],l={x:D,y:q},c={x:(O.x-l.x)/2,y:(O.y-l.y)/2},r(c,-u),p=c.x*c.x/(b*b)+c.y*c.y/(w*w),p>1&&(p=Math.sqrt(p),b*=p,w*=p),E={x:b*c.y/w,y:-w*c.x/b},d=b*b*w*w,h=b*b*c.y*c.y+w*w*c.x*c.x,t(E,s!==i?Math.sqrt((d-h)/h)||0:-Math.sqrt((d-h)/h)||0),o=Math.atan2((c.y-E.y)/w,(c.x-E.x)/b),a=Math.atan2(-(c.y+E.y)/w,-(c.x+E.x)/b),r(E,u),k=E,I=(l.x+O.x)/2,M=(l.y+O.y)/2,k.x+=I,k.y+=M,e.save(),e.translate(E.x,E.y),e.rotate(u),e.scale(b,w),e.arc(0,0,1,o,a,!s),e.restore();break;case"C":_=n[P],S=_[3],A=_[4],D=_[5],q=_[6],e.bezierCurveTo(_[1],_[2],S,A,D,q);break;case"c":_=n[P],e.bezierCurveTo(_[1]+D,_[2]+q,_[3]+D,_[4]+q,_[5]+D,_[6]+q),S=_[3]+D,A=_[4]+q,D+=_[5],q+=_[6];break;case"S":_=n[P],null!==S&&null!==A||(S=D,A=q),e.bezierCurveTo(2*D-S,2*q-A,_[1],_[2],_[3],_[4]),S=_[1],A=_[2],D=_[3],q=_[4];break;case"s":_=n[P],null!==S&&null!==A||(S=D,A=q),e.bezierCurveTo(2*D-S,2*q-A,_[1]+D,_[2]+q,_[3]+D,_[4]+q),S=_[1]+D,A=_[2]+q,D+=_[3],q+=_[4];break;case"Q":_=n[P],L=_[1],C=_[2],D=_[3],q=_[4],e.quadraticCurveTo(L,C,D,q);break;case"q":_=n[P],L=_[1]+D,C=_[2]+q,D+=_[3],q+=_[4],e.quadraticCurveTo(L,C,D,q);break;case"T":_=n[P],null!==L&&null!==C||(L=D,C=q),L=2*D-L,C=2*q-C,D=_[1],q=_[2],e.quadraticCurveTo(L,C,D,q);break;case"t":_=n[P],null!==L&&null!==C||(L=D,C=q),L=2*D-L,C=2*q-C,D+=_[1],q+=_[2],e.quadraticCurveTo(L,C,D,q);break;case"z":case"Z":R&&(D=R.x,q=R.y),R=null,e.closePath();break;case"AC":_=n[P],D=_[1],q=_[2],g=_[3],o=_[4],a=_[5],T=_[6],e.arc(D,q,g,o,a,T);break;case"AT":_=n[P],f=_[1],m=_[2],D=_[3],q=_[4],g=_[5],e.arcTo(f,m,D,q,g);break;case"E":_=n[P],D=_[1],q=_[2],b=_[3],w=_[4],u=_[5],o=_[6],a=_[7],T=_[8],e.save(),e.translate(D,q),e.rotate(u),e.scale(b,w),e.arc(0,0,1,o,a,T),e.restore();break;case"R":_=n[P],D=_[1],q=_[2],v=_[3],y=_[4],R={x:D,y:q},e.rect(D,q,v,y);break;case"RR":_=n[P],D=_[1],q=_[2],v=_[3],y=_[4],x=_[5],R={x:D,y:q},e.roundRect(D,q,v,y,x)}O?(O.x=D,O.y=q):O={x:D,y:q}}var k,I,M}const s={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},l=/([astvzqmhlc])([^astvzqmhlc]*)/gi,c=/-?[0-9]*\.?[0-9]+(?:e[-+]?\d+)?/gi;var u={},p={};function d(e,r){return void 0===r&&(r=Object),r&&"function"==typeof r.freeze?r.freeze(e):e}var h=d({HTML:"text/html",isHTML:function(e){return e===h.HTML},XML_APPLICATION:"application/xml",XML_TEXT:"text/xml",XML_XHTML_APPLICATION:"application/xhtml+xml",XML_SVG_IMAGE:"image/svg+xml"}),f=d({HTML:"http://www.w3.org/1999/xhtml",isHTML:function(e){return e===f.HTML},SVG:"http://www.w3.org/2000/svg",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"});p.assign=function(e,r){if(null===e||"object"!=typeof e)throw new TypeError("target is not an object");for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=r[t]);return e},p.find=function(e,r,t){if(void 0===t&&(t=Array.prototype),e&&"function"==typeof t.find)return t.find.call(e,r);for(var n=0;n<e.length;n++)if(Object.prototype.hasOwnProperty.call(e,n)){var a=e[n];if(r.call(void 0,a,n,e))return a}},p.freeze=d,p.MIME_TYPE=h,p.NAMESPACE=f;var m=p,g=m.find,b=m.NAMESPACE;function w(e){return""!==e}function v(e,r){return e.hasOwnProperty(r)||(e[r]=!0),e}function y(e){if(!e)return[];var r=function(e){return e?e.split(/[\t\n\f\r ]+/).filter(w):[]}(e);return Object.keys(r.reduce(v,{}))}function N(e,r){for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(r[t]=e[t])}function E(e,r){var t=e.prototype;if(!(t instanceof r)){let n=function(){};n.prototype=r.prototype,n=new n,N(t,n),e.prototype=t=n}t.constructor!=e&&(t.constructor=e)}var T={},x=T.ELEMENT_NODE=1,D=T.ATTRIBUTE_NODE=2,q=T.TEXT_NODE=3,S=T.CDATA_SECTION_NODE=4,A=T.ENTITY_REFERENCE_NODE=5,L=T.ENTITY_NODE=6,C=T.PROCESSING_INSTRUCTION_NODE=7,R=T.COMMENT_NODE=8,O=T.DOCUMENT_NODE=9,k=T.DOCUMENT_TYPE_NODE=10,I=T.DOCUMENT_FRAGMENT_NODE=11,M=T.NOTATION_NODE=12,P={},_={};P.INDEX_SIZE_ERR=(_[1]="Index size error",1),P.DOMSTRING_SIZE_ERR=(_[2]="DOMString size error",2);var U=P.HIERARCHY_REQUEST_ERR=(_[3]="Hierarchy request error",3);P.WRONG_DOCUMENT_ERR=(_[4]="Wrong document",4),P.INVALID_CHARACTER_ERR=(_[5]="Invalid character",5),P.NO_DATA_ALLOWED_ERR=(_[6]="No data allowed",6),P.NO_MODIFICATION_ALLOWED_ERR=(_[7]="No modification allowed",7);var V=P.NOT_FOUND_ERR=(_[8]="Not found",8);P.NOT_SUPPORTED_ERR=(_[9]="Not supported",9);var B=P.INUSE_ATTRIBUTE_ERR=(_[10]="Attribute in use",10);function H(e,r){if(r instanceof Error)var t=r;else t=this,Error.call(this,_[e]),this.message=_[e],Error.captureStackTrace&&Error.captureStackTrace(this,H);return t.code=e,r&&(this.message=this.message+": "+r),t}function F(){}function G(e,r){this._node=e,this._refresh=r,z(this)}function z(e){var r=e._node._inc||e._node.ownerDocument._inc;if(e._inc!==r){var t=e._refresh(e._node);if(Re(e,"length",t.length),!e.$$length||t.length<e.$$length)for(var n=t.length;n in e;n++)Object.prototype.hasOwnProperty.call(e,n)&&delete e[n];N(t,e),e._inc=r}}function j(){}function X(e,r){for(var t=e.length;t--;)if(e[t]===r)return t}function $(e,r,t,n){if(n?r[X(r,n)]=t:r[r.length++]=t,e){t.ownerElement=e;var a=e.ownerDocument;a&&(n&&ee(a,e,n),function(e,r,t){e&&e._inc++;var n=t.namespaceURI;n===b.XMLNS&&(r._nsMap[t.prefix?t.localName:""]=t.value)}(a,e,t))}}function Y(e,r,t){var n=X(r,t);if(!(n>=0))throw new H(V,new Error(e.tagName+"@"+t));for(var a=r.length-1;n<a;)r[n]=r[++n];if(r.length=a,e){var o=e.ownerDocument;o&&(ee(o,e,t),t.ownerElement=null)}}function W(){}function Z(){}function Q(e){return("<"==e?"&lt;":">"==e&&"&gt;")||"&"==e&&"&amp;"||'"'==e&&"&quot;"||"&#"+e.charCodeAt()+";"}function J(e,r){if(r(e))return!0;if(e=e.firstChild)do{if(J(e,r))return!0}while(e=e.nextSibling)}function K(){this.ownerDocument=this}function ee(e,r,t,n){e&&e._inc++,t.namespaceURI===b.XMLNS&&delete r._nsMap[t.prefix?t.localName:""]}function re(e,r,t){if(e&&e._inc){e._inc++;var n=r.childNodes;if(t)n[n.length++]=t;else{for(var a=r.firstChild,o=0;a;)n[o++]=a,a=a.nextSibling;n.length=o,delete n[n.length]}}}function te(e,r){var t=r.previousSibling,n=r.nextSibling;return t?t.nextSibling=n:e.firstChild=n,n?n.previousSibling=t:e.lastChild=t,r.parentNode=null,r.previousSibling=null,r.nextSibling=null,re(e.ownerDocument,e),r}function ne(e){return e&&e.nodeType===Z.DOCUMENT_TYPE_NODE}function ae(e){return e&&e.nodeType===Z.ELEMENT_NODE}function oe(e){return e&&e.nodeType===Z.TEXT_NODE}function ie(e,r){var t=e.childNodes||[];if(g(t,ae)||ne(r))return!1;var n=g(t,ne);return!(r&&n&&t.indexOf(n)>t.indexOf(r))}function se(e,r){var t=e.childNodes||[];if(g(t,(function(e){return ae(e)&&e!==r})))return!1;var n=g(t,ne);return!(r&&n&&t.indexOf(n)>t.indexOf(r))}function le(e,r,t){if(!function(e){return e&&(e.nodeType===Z.DOCUMENT_NODE||e.nodeType===Z.DOCUMENT_FRAGMENT_NODE||e.nodeType===Z.ELEMENT_NODE)}(e))throw new H(U,"Unexpected parent node type "+e.nodeType);if(t&&t.parentNode!==e)throw new H(V,"child not in parent");if(!function(e){return e&&(ae(e)||oe(e)||ne(e)||e.nodeType===Z.DOCUMENT_FRAGMENT_NODE||e.nodeType===Z.COMMENT_NODE||e.nodeType===Z.PROCESSING_INSTRUCTION_NODE)}(r)||ne(r)&&e.nodeType!==Z.DOCUMENT_NODE)throw new H(U,"Unexpected node type "+r.nodeType+" for parent node type "+e.nodeType)}function ce(e,r,t){var n=e.childNodes||[],a=r.childNodes||[];if(r.nodeType===Z.DOCUMENT_FRAGMENT_NODE){var o=a.filter(ae);if(o.length>1||g(a,oe))throw new H(U,"More than one element or text in fragment");if(1===o.length&&!ie(e,t))throw new H(U,"Element in fragment can not be inserted before doctype")}if(ae(r)&&!ie(e,t))throw new H(U,"Only one element can be added and only after doctype");if(ne(r)){if(g(n,ne))throw new H(U,"Only one doctype is allowed");var i=g(n,ae);if(t&&n.indexOf(i)<n.indexOf(t))throw new H(U,"Doctype can only be inserted before an element");if(!t&&i)throw new H(U,"Doctype can not be appended since element is present")}}function ue(e,r,t){var n=e.childNodes||[],a=r.childNodes||[];if(r.nodeType===Z.DOCUMENT_FRAGMENT_NODE){var o=a.filter(ae);if(o.length>1||g(a,oe))throw new H(U,"More than one element or text in fragment");if(1===o.length&&!se(e,t))throw new H(U,"Element in fragment can not be inserted before doctype")}if(ae(r)&&!se(e,t))throw new H(U,"Only one element can be added and only after doctype");if(ne(r)){let e=function(e){return ne(e)&&e!==t};if(g(n,e))throw new H(U,"Only one doctype is allowed");var i=g(n,ae);if(t&&n.indexOf(i)<n.indexOf(t))throw new H(U,"Doctype can only be inserted before an element")}}function pe(e,r,t,n){le(e,r,t),e.nodeType===Z.DOCUMENT_NODE&&(n||ce)(e,r,t);var a=r.parentNode;if(a&&a.removeChild(r),r.nodeType===I){var o=r.firstChild;if(null==o)return r;var i=r.lastChild}else o=i=r;var s=t?t.previousSibling:e.lastChild;o.previousSibling=s,i.nextSibling=t,s?s.nextSibling=o:e.firstChild=o,null==t?e.lastChild=i:t.previousSibling=i;do{o.parentNode=e}while(o!==i&&(o=o.nextSibling));return re(e.ownerDocument||e,e),r.nodeType==I&&(r.firstChild=r.lastChild=null),r}function de(){this._nsMap={}}function he(){}function fe(){}function me(){}function ge(){}function be(){}function we(){}function ve(){}function ye(){}function Ne(){}function Ee(){}function Te(){}function xe(){}function De(e,r){var t=[],n=9==this.nodeType&&this.documentElement||this,a=n.prefix,o=n.namespaceURI;if(o&&null==a&&null==(a=n.lookupPrefix(o)))var i=[{namespace:o,prefix:null}];return Ae(this,t,e,r,i),t.join("")}function qe(e,r,t){var n=e.prefix||"",a=e.namespaceURI;if(!a)return!1;if("xml"===n&&a===b.XML||a===b.XMLNS)return!1;for(var o=t.length;o--;){var i=t[o];if(i.prefix===n)return i.namespace!==a}return!0}function Se(e,r,t){e.push(" ",r,'="',t.replace(/[<>&"\t\n\r]/g,Q),'"')}function Ae(e,r,t,n,a){if(a||(a=[]),n){if(!(e=n(e)))return;if("string"==typeof e)return void r.push(e)}switch(e.nodeType){case x:var o=e.attributes,i=o.length,s=e.firstChild,l=e.tagName,c=l;if(!(t=b.isHTML(e.namespaceURI)||t)&&!e.prefix&&e.namespaceURI){for(var u,p=0;p<o.length;p++)if("xmlns"===o.item(p).name){u=o.item(p).value;break}if(!u)for(var d=a.length-1;d>=0;d--)if(""===(h=a[d]).prefix&&h.namespace===e.namespaceURI){u=h.namespace;break}if(u!==e.namespaceURI)for(d=a.length-1;d>=0;d--){var h;if((h=a[d]).namespace===e.namespaceURI){h.prefix&&(c=h.prefix+":"+l);break}}}r.push("<",c);for(var f=0;f<i;f++)"xmlns"==(m=o.item(f)).prefix?a.push({prefix:m.localName,namespace:m.value}):"xmlns"==m.nodeName&&a.push({prefix:"",namespace:m.value});for(f=0;f<i;f++){var m,g,w;qe(m=o.item(f),0,a)&&(Se(r,(g=m.prefix||"")?"xmlns:"+g:"xmlns",w=m.namespaceURI),a.push({prefix:g,namespace:w})),Ae(m,r,t,n,a)}if(l===c&&qe(e,0,a)&&(Se(r,(g=e.prefix||"")?"xmlns:"+g:"xmlns",w=e.namespaceURI),a.push({prefix:g,namespace:w})),s||t&&!/^(?:meta|link|img|br|hr|input)$/i.test(l)){if(r.push(">"),t&&/^script$/i.test(l))for(;s;)s.data?r.push(s.data):Ae(s,r,t,n,a.slice()),s=s.nextSibling;else for(;s;)Ae(s,r,t,n,a.slice()),s=s.nextSibling;r.push("</",c,">")}else r.push("/>");return;case O:case I:for(s=e.firstChild;s;)Ae(s,r,t,n,a.slice()),s=s.nextSibling;return;case D:return Se(r,e.name,e.value);case q:return r.push(e.data.replace(/[<&>]/g,Q));case S:return r.push("<![CDATA[",e.data,"]]>");case R:return r.push("\x3c!--",e.data,"--\x3e");case k:var v=e.publicId,y=e.systemId;if(r.push("<!DOCTYPE ",e.name),v)r.push(" PUBLIC ",v),y&&"."!=y&&r.push(" ",y),r.push(">");else if(y&&"."!=y)r.push(" SYSTEM ",y,">");else{var N=e.internalSubset;N&&r.push(" [",N,"]"),r.push(">")}return;case C:return r.push("<?",e.target," ",e.data,"?>");case A:return r.push("&",e.nodeName,";");default:r.push("??",e.nodeName)}}function Le(e,r,t){var n;switch(r.nodeType){case x:(n=r.cloneNode(!1)).ownerDocument=e;case I:break;case D:t=!0}if(n||(n=r.cloneNode(!1)),n.ownerDocument=e,n.parentNode=null,t)for(var a=r.firstChild;a;)n.appendChild(Le(e,a,t)),a=a.nextSibling;return n}function Ce(e,r,t){var n=new r.constructor;for(var a in r)if(Object.prototype.hasOwnProperty.call(r,a)){var o=r[a];"object"!=typeof o&&o!=n[a]&&(n[a]=o)}switch(r.childNodes&&(n.childNodes=new F),n.ownerDocument=e,n.nodeType){case x:var i=r.attributes,s=n.attributes=new j,l=i.length;s._ownerElement=n;for(var c=0;c<l;c++)n.setAttributeNode(Ce(e,i.item(c),!0));break;case D:t=!0}if(t)for(var u=r.firstChild;u;)n.appendChild(Ce(e,u,t)),u=u.nextSibling;return n}function Re(e,r,t){e[r]=t}P.INVALID_STATE_ERR=(_[11]="Invalid state",11),P.SYNTAX_ERR=(_[12]="Syntax error",12),P.INVALID_MODIFICATION_ERR=(_[13]="Invalid modification",13),P.NAMESPACE_ERR=(_[14]="Invalid namespace",14),P.INVALID_ACCESS_ERR=(_[15]="Invalid access",15),H.prototype=Error.prototype,N(P,H),F.prototype={length:0,item:function(e){return e>=0&&e<this.length?this[e]:null},toString:function(e,r){for(var t=[],n=0;n<this.length;n++)Ae(this[n],t,e,r);return t.join("")},filter:function(e){return Array.prototype.filter.call(this,e)},indexOf:function(e){return Array.prototype.indexOf.call(this,e)}},G.prototype.item=function(e){return z(this),this[e]||null},E(G,F),j.prototype={length:0,item:F.prototype.item,getNamedItem:function(e){for(var r=this.length;r--;){var t=this[r];if(t.nodeName==e)return t}},setNamedItem:function(e){var r=e.ownerElement;if(r&&r!=this._ownerElement)throw new H(B);var t=this.getNamedItem(e.nodeName);return $(this._ownerElement,this,e,t),t},setNamedItemNS:function(e){var r,t=e.ownerElement;if(t&&t!=this._ownerElement)throw new H(B);return r=this.getNamedItemNS(e.namespaceURI,e.localName),$(this._ownerElement,this,e,r),r},removeNamedItem:function(e){var r=this.getNamedItem(e);return Y(this._ownerElement,this,r),r},removeNamedItemNS:function(e,r){var t=this.getNamedItemNS(e,r);return Y(this._ownerElement,this,t),t},getNamedItemNS:function(e,r){for(var t=this.length;t--;){var n=this[t];if(n.localName==r&&n.namespaceURI==e)return n}return null}},W.prototype={hasFeature:function(e,r){return!0},createDocument:function(e,r,t){var n=new K;if(n.implementation=this,n.childNodes=new F,n.doctype=t||null,t&&n.appendChild(t),r){var a=n.createElementNS(e,r);n.appendChild(a)}return n},createDocumentType:function(e,r,t){var n=new we;return n.name=e,n.nodeName=e,n.publicId=r||"",n.systemId=t||"",n}},Z.prototype={firstChild:null,lastChild:null,previousSibling:null,nextSibling:null,attributes:null,parentNode:null,childNodes:null,ownerDocument:null,nodeValue:null,namespaceURI:null,prefix:null,localName:null,insertBefore:function(e,r){return pe(this,e,r)},replaceChild:function(e,r){pe(this,e,r,ue),r&&this.removeChild(r)},removeChild:function(e){return te(this,e)},appendChild:function(e){return this.insertBefore(e,null)},hasChildNodes:function(){return null!=this.firstChild},cloneNode:function(e){return Ce(this.ownerDocument||this,this,e)},normalize:function(){for(var e=this.firstChild;e;){var r=e.nextSibling;r&&r.nodeType==q&&e.nodeType==q?(this.removeChild(r),e.appendData(r.data)):(e.normalize(),e=r)}},isSupported:function(e,r){return this.ownerDocument.implementation.hasFeature(e,r)},hasAttributes:function(){return this.attributes.length>0},lookupPrefix:function(e){for(var r=this;r;){var t=r._nsMap;if(t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&t[n]===e)return n;r=r.nodeType==D?r.ownerDocument:r.parentNode}return null},lookupNamespaceURI:function(e){for(var r=this;r;){var t=r._nsMap;if(t&&Object.prototype.hasOwnProperty.call(t,e))return t[e];r=r.nodeType==D?r.ownerDocument:r.parentNode}return null},isDefaultNamespace:function(e){return null==this.lookupPrefix(e)}},N(T,Z),N(T,Z.prototype),K.prototype={nodeName:"#document",nodeType:O,doctype:null,documentElement:null,_inc:1,insertBefore:function(e,r){if(e.nodeType==I){for(var t=e.firstChild;t;){var n=t.nextSibling;this.insertBefore(t,r),t=n}return e}return pe(this,e,r),e.ownerDocument=this,null===this.documentElement&&e.nodeType===x&&(this.documentElement=e),e},removeChild:function(e){return this.documentElement==e&&(this.documentElement=null),te(this,e)},replaceChild:function(e,r){pe(this,e,r,ue),e.ownerDocument=this,r&&this.removeChild(r),ae(e)&&(this.documentElement=e)},importNode:function(e,r){return Le(this,e,r)},getElementById:function(e){var r=null;return J(this.documentElement,(function(t){if(t.nodeType==x&&t.getAttribute("id")==e)return r=t,!0})),r},getElementsByClassName:function(e){var r=y(e);return new G(this,(function(t){var n=[];return r.length>0&&J(t.documentElement,(function(a){if(a!==t&&a.nodeType===x){var o=a.getAttribute("class");if(o){var i=e===o;if(!i){var s=y(o);i=r.every((l=s,function(e){return l&&-1!==l.indexOf(e)}))}i&&n.push(a)}}var l})),n}))},createElement:function(e){var r=new de;return r.ownerDocument=this,r.nodeName=e,r.tagName=e,r.localName=e,r.childNodes=new F,(r.attributes=new j)._ownerElement=r,r},createDocumentFragment:function(){var e=new Ee;return e.ownerDocument=this,e.childNodes=new F,e},createTextNode:function(e){var r=new me;return r.ownerDocument=this,r.appendData(e),r},createComment:function(e){var r=new ge;return r.ownerDocument=this,r.appendData(e),r},createCDATASection:function(e){var r=new be;return r.ownerDocument=this,r.appendData(e),r},createProcessingInstruction:function(e,r){var t=new Te;return t.ownerDocument=this,t.tagName=t.nodeName=t.target=e,t.nodeValue=t.data=r,t},createAttribute:function(e){var r=new he;return r.ownerDocument=this,r.name=e,r.nodeName=e,r.localName=e,r.specified=!0,r},createEntityReference:function(e){var r=new Ne;return r.ownerDocument=this,r.nodeName=e,r},createElementNS:function(e,r){var t=new de,n=r.split(":"),a=t.attributes=new j;return t.childNodes=new F,t.ownerDocument=this,t.nodeName=r,t.tagName=r,t.namespaceURI=e,2==n.length?(t.prefix=n[0],t.localName=n[1]):t.localName=r,a._ownerElement=t,t},createAttributeNS:function(e,r){var t=new he,n=r.split(":");return t.ownerDocument=this,t.nodeName=r,t.name=r,t.namespaceURI=e,t.specified=!0,2==n.length?(t.prefix=n[0],t.localName=n[1]):t.localName=r,t}},E(K,Z),de.prototype={nodeType:x,hasAttribute:function(e){return null!=this.getAttributeNode(e)},getAttribute:function(e){var r=this.getAttributeNode(e);return r&&r.value||""},getAttributeNode:function(e){return this.attributes.getNamedItem(e)},setAttribute:function(e,r){var t=this.ownerDocument.createAttribute(e);t.value=t.nodeValue=""+r,this.setAttributeNode(t)},removeAttribute:function(e){var r=this.getAttributeNode(e);r&&this.removeAttributeNode(r)},appendChild:function(e){return e.nodeType===I?this.insertBefore(e,null):function(e,r){return r.parentNode&&r.parentNode.removeChild(r),r.parentNode=e,r.previousSibling=e.lastChild,r.nextSibling=null,r.previousSibling?r.previousSibling.nextSibling=r:e.firstChild=r,e.lastChild=r,re(e.ownerDocument,e,r),r}(this,e)},setAttributeNode:function(e){return this.attributes.setNamedItem(e)},setAttributeNodeNS:function(e){return this.attributes.setNamedItemNS(e)},removeAttributeNode:function(e){return this.attributes.removeNamedItem(e.nodeName)},removeAttributeNS:function(e,r){var t=this.getAttributeNodeNS(e,r);t&&this.removeAttributeNode(t)},hasAttributeNS:function(e,r){return null!=this.getAttributeNodeNS(e,r)},getAttributeNS:function(e,r){var t=this.getAttributeNodeNS(e,r);return t&&t.value||""},setAttributeNS:function(e,r,t){var n=this.ownerDocument.createAttributeNS(e,r);n.value=n.nodeValue=""+t,this.setAttributeNode(n)},getAttributeNodeNS:function(e,r){return this.attributes.getNamedItemNS(e,r)},getElementsByTagName:function(e){return new G(this,(function(r){var t=[];return J(r,(function(n){n===r||n.nodeType!=x||"*"!==e&&n.tagName!=e||t.push(n)})),t}))},getElementsByTagNameNS:function(e,r){return new G(this,(function(t){var n=[];return J(t,(function(a){a===t||a.nodeType!==x||"*"!==e&&a.namespaceURI!==e||"*"!==r&&a.localName!=r||n.push(a)})),n}))}},K.prototype.getElementsByTagName=de.prototype.getElementsByTagName,K.prototype.getElementsByTagNameNS=de.prototype.getElementsByTagNameNS,E(de,Z),he.prototype.nodeType=D,E(he,Z),fe.prototype={data:"",substringData:function(e,r){return this.data.substring(e,e+r)},appendData:function(e){e=this.data+e,this.nodeValue=this.data=e,this.length=e.length},insertData:function(e,r){this.replaceData(e,0,r)},appendChild:function(e){throw new Error(_[U])},deleteData:function(e,r){this.replaceData(e,r,"")},replaceData:function(e,r,t){t=this.data.substring(0,e)+t+this.data.substring(e+r),this.nodeValue=this.data=t,this.length=t.length}},E(fe,Z),me.prototype={nodeName:"#text",nodeType:q,splitText:function(e){var r=this.data,t=r.substring(e);r=r.substring(0,e),this.data=this.nodeValue=r,this.length=r.length;var n=this.ownerDocument.createTextNode(t);return this.parentNode&&this.parentNode.insertBefore(n,this.nextSibling),n}},E(me,fe),ge.prototype={nodeName:"#comment",nodeType:R},E(ge,fe),be.prototype={nodeName:"#cdata-section",nodeType:S},E(be,fe),we.prototype.nodeType=k,E(we,Z),ve.prototype.nodeType=M,E(ve,Z),ye.prototype.nodeType=L,E(ye,Z),Ne.prototype.nodeType=A,E(Ne,Z),Ee.prototype.nodeName="#document-fragment",Ee.prototype.nodeType=I,E(Ee,Z),Te.prototype.nodeType=C,E(Te,Z),xe.prototype.serializeToString=function(e,r,t){return De.call(e,r,t)},Z.prototype.toString=De;try{if(Object.defineProperty){let e=function(r){switch(r.nodeType){case x:case I:var t=[];for(r=r.firstChild;r;)7!==r.nodeType&&8!==r.nodeType&&t.push(e(r)),r=r.nextSibling;return t.join("");default:return r.nodeValue}};Object.defineProperty(G.prototype,"length",{get:function(){return z(this),this.$$length}}),Object.defineProperty(Z.prototype,"textContent",{get:function(){return e(this)},set:function(e){switch(this.nodeType){case x:case I:for(;this.firstChild;)this.removeChild(this.firstChild);(e||String(e))&&this.appendChild(this.ownerDocument.createTextNode(e));break;default:this.data=e,this.value=e,this.nodeValue=e}}}),Re=function(e,r,t){e["$$"+r]=t}}}catch(e){}u.DocumentType=we,u.DOMException=H,u.DOMImplementation=W,u.Element=de,u.Node=Z,u.NodeList=F,u.XMLSerializer=xe;var Oe,ke,Ie={},Me={};Oe=Me,ke=p.freeze,Oe.XML_ENTITIES=ke({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),Oe.HTML_ENTITIES=ke({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:"\n",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:"\t",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:"‌"}),Oe.entityMap=Oe.HTML_ENTITIES;var Pe={},_e=p.NAMESPACE,Ue=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,Ve=new RegExp("[\\-\\.0-9"+Ue.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),Be=new RegExp("^"+Ue.source+Ve.source+"*(?::"+Ue.source+Ve.source+"*)?$");function He(e,r){this.message=e,this.locator=r,Error.captureStackTrace&&Error.captureStackTrace(this,He)}function Fe(){}function Ge(e,r){return r.lineNumber=e.lineNumber,r.columnNumber=e.columnNumber,r}function ze(e,r,t,n,a,o){function i(e,r,n){t.attributeNames.hasOwnProperty(e)&&o.fatalError("Attribute "+e+" redefined"),t.addValue(e,r.replace(/[\t\n\r]/g," ").replace(/&#?\w+;/g,a),n)}for(var s,l=++r,c=0;;){var u=e.charAt(l);switch(u){case"=":if(1===c)s=e.slice(r,l),c=3;else{if(2!==c)throw new Error("attribute equal must after attrName");c=3}break;case"'":case'"':if(3===c||1===c){if(1===c&&(o.warning('attribute value must after "="'),s=e.slice(r,l)),r=l+1,!((l=e.indexOf(u,r))>0))throw new Error("attribute value no end '"+u+"' match");i(s,p=e.slice(r,l),r-1),c=5}else{if(4!=c)throw new Error('attribute value must after "="');i(s,p=e.slice(r,l),r),o.warning('attribute "'+s+'" missed start quot('+u+")!!"),r=l+1,c=5}break;case"/":switch(c){case 0:t.setTagName(e.slice(r,l));case 5:case 6:case 7:c=7,t.closed=!0;case 4:case 1:break;case 2:t.closed=!0;break;default:throw new Error("attribute invalid close char('/')")}break;case"":return o.error("unexpected end of input"),0==c&&t.setTagName(e.slice(r,l)),l;case">":switch(c){case 0:t.setTagName(e.slice(r,l));case 5:case 6:case 7:break;case 4:case 1:"/"===(p=e.slice(r,l)).slice(-1)&&(t.closed=!0,p=p.slice(0,-1));case 2:2===c&&(p=s),4==c?(o.warning('attribute "'+p+'" missed quot(")!'),i(s,p,r)):(_e.isHTML(n[""])&&p.match(/^(?:disabled|checked|selected)$/i)||o.warning('attribute "'+p+'" missed value!! "'+p+'" instead!!'),i(p,p,r));break;case 3:throw new Error("attribute value missed!!")}return l;case"€":u=" ";default:if(u<=" ")switch(c){case 0:t.setTagName(e.slice(r,l)),c=6;break;case 1:s=e.slice(r,l),c=2;break;case 4:var p=e.slice(r,l);o.warning('attribute "'+p+'" missed quot(")!!'),i(s,p,r);case 5:c=6}else switch(c){case 2:t.tagName,_e.isHTML(n[""])&&s.match(/^(?:disabled|checked|selected)$/i)||o.warning('attribute "'+s+'" missed value!! "'+s+'" instead2!!'),i(s,s,r),r=l,c=1;break;case 5:o.warning('attribute space is required"'+s+'"!!');case 6:c=1,r=l;break;case 3:c=4,r=l;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}l++}}function je(e,r,t){for(var n=e.tagName,a=null,o=e.length;o--;){var i=e[o],s=i.qName,l=i.value;if((d=s.indexOf(":"))>0)var c=i.prefix=s.slice(0,d),u=s.slice(d+1),p="xmlns"===c&&u;else u=s,c=null,p="xmlns"===s&&"";i.localName=u,!1!==p&&(null==a&&(a={},Ye(t,t={})),t[p]=a[p]=l,i.uri=_e.XMLNS,r.startPrefixMapping(p,l))}for(o=e.length;o--;)(c=(i=e[o]).prefix)&&("xml"===c&&(i.uri=_e.XML),"xmlns"!==c&&(i.uri=t[c||""]));var d;(d=n.indexOf(":"))>0?(c=e.prefix=n.slice(0,d),u=e.localName=n.slice(d+1)):(c=null,u=e.localName=n);var h=e.uri=t[c||""];if(r.startElement(h,u,n,e),!e.closed)return e.currentNSMap=t,e.localNSMap=a,!0;if(r.endElement(h,u,n),a)for(c in a)Object.prototype.hasOwnProperty.call(a,c)&&r.endPrefixMapping(c)}function Xe(e,r,t,n,a){if(/^(?:script|textarea)$/i.test(t)){var o=e.indexOf("</"+t+">",r),i=e.substring(r+1,o);if(/[&<]/.test(i))return/^script$/i.test(t)?(a.characters(i,0,i.length),o):(i=i.replace(/&#?\w+;/g,n),a.characters(i,0,i.length),o)}return r+1}function $e(e,r,t,n){var a=n[t];return null==a&&((a=e.lastIndexOf("</"+t+">"))<r&&(a=e.lastIndexOf("</"+t)),n[t]=a),a<r}function Ye(e,r){for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(r[t]=e[t])}function We(e,r,t,n){if("-"===e.charAt(r+2))return"-"===e.charAt(r+3)?(a=e.indexOf("--\x3e",r+4))>r?(t.comment(e,r+4,a-r-4),a+3):(n.error("Unclosed comment"),-1):-1;if("CDATA["==e.substr(r+3,6)){var a=e.indexOf("]]>",r+9);return t.startCDATA(),t.characters(e,r+9,a-r-9),t.endCDATA(),a+3}var o=function(e,r){var t,n=[],a=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(a.lastIndex=r,a.exec(e);t=a.exec(e);)if(n.push(t),t[1])return n}(e,r),i=o.length;if(i>1&&/!doctype/i.test(o[0][0])){var s=o[1][0],l=!1,c=!1;i>3&&(/^public$/i.test(o[2][0])?(l=o[3][0],c=i>4&&o[4][0]):/^system$/i.test(o[2][0])&&(c=o[3][0]));var u=o[i-1];return t.startDTD(s,l,c),t.endDTD(),u.index+u[0].length}return-1}function Ze(e,r,t){var n=e.indexOf("?>",r);if(n){var a=e.substring(r,n).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);return a?(a[0].length,t.processingInstruction(a[1],a[2]),n+2):-1}return-1}function Qe(){this.attributeNames={}}He.prototype=new Error,He.prototype.name=He.name,Fe.prototype={parse:function(e,r,t){var n=this.domBuilder;n.startDocument(),Ye(r,r={}),function(e,r,t,n,a){function o(e){if(e>65535){var r=55296+((e-=65536)>>10),t=56320+(1023&e);return String.fromCharCode(r,t)}return String.fromCharCode(e)}function i(e){var r=e.slice(1,-1);return Object.hasOwnProperty.call(t,r)?t[r]:"#"===r.charAt(0)?o(parseInt(r.substr(1).replace("x","0x"))):(a.error("entity not found:"+e),e)}function s(r){if(r>m){var t=e.substring(m,r).replace(/&#?\w+;/g,i);d&&l(m),n.characters(t,0,r-m),m=r}}function l(r,t){for(;r>=u&&(t=p.exec(e));)c=t.index,u=c+t[0].length,d.lineNumber++;d.columnNumber=r-c+1}for(var c=0,u=0,p=/.*(?:\r\n?|\n)|.*$/g,d=n.locator,h=[{currentNSMap:r}],f={},m=0;;){try{var g=e.indexOf("<",m);if(g<0){if(!e.substr(m).match(/^\s*$/)){var b=n.doc,w=b.createTextNode(e.substr(m));b.appendChild(w),n.currentElement=w}return}switch(g>m&&s(g),e.charAt(g+1)){case"/":var v=e.indexOf(">",g+3),y=e.substring(g+2,v).replace(/[ \t\n\r]+$/g,""),N=h.pop();v<0?(y=e.substring(g+2).replace(/[\s<].*/,""),a.error("end tag name: "+y+" is not complete:"+N.tagName),v=g+1+y.length):y.match(/\s</)&&(y=y.replace(/[\s<].*/,""),a.error("end tag name: "+y+" maybe not complete"),v=g+1+y.length);var E=N.localNSMap,T=N.tagName==y;if(T||N.tagName&&N.tagName.toLowerCase()==y.toLowerCase()){if(n.endElement(N.uri,N.localName,y),E)for(var x in E)Object.prototype.hasOwnProperty.call(E,x)&&n.endPrefixMapping(x);T||a.fatalError("end tag name: "+y+" is not match the current start tagName:"+N.tagName)}else h.push(N);v++;break;case"?":d&&l(g),v=Ze(e,g,n);break;case"!":d&&l(g),v=We(e,g,n,a);break;default:d&&l(g);var D=new Qe,q=h[h.length-1].currentNSMap,S=(v=ze(e,g,D,q,i,a),D.length);if(!D.closed&&$e(e,v,D.tagName,f)&&(D.closed=!0,t.nbsp||a.warning("unclosed xml attribute")),d&&S){for(var A=Ge(d,{}),L=0;L<S;L++){var C=D[L];l(C.offset),C.locator=Ge(d,{})}n.locator=A,je(D,n,q)&&h.push(D),n.locator=d}else je(D,n,q)&&h.push(D);_e.isHTML(D.uri)&&!D.closed?v=Xe(e,v,D.tagName,i,n):v++}}catch(e){if(e instanceof He)throw e;a.error("element parse error: "+e),v=-1}v>m?m=v:s(Math.max(g,m)+1)}}(e,r,t,n,this.errorHandler),n.endDocument()}},Qe.prototype={setTagName:function(e){if(!Be.test(e))throw new Error("invalid tagName:"+e);this.tagName=e},addValue:function(e,r,t){if(!Be.test(e))throw new Error("invalid attribute:"+e);this.attributeNames[e]=this.length,this[this.length++]={qName:e,value:r,offset:t}},length:0,getLocalName:function(e){return this[e].localName},getLocator:function(e){return this[e].locator},getQName:function(e){return this[e].qName},getURI:function(e){return this[e].uri},getValue:function(e){return this[e].value}},Pe.XMLReader=Fe,Pe.ParseError=He;var Je=p,Ke=Me,er=Pe,rr=u.DOMImplementation,tr=Je.NAMESPACE,nr=er.ParseError,ar=er.XMLReader;function or(e){return e.replace(/\r[\n\u0085]/g,"\n").replace(/[\r\u0085\u2028]/g,"\n")}function ir(e){this.options=e||{locator:{}}}function sr(){this.cdata=!1}function lr(e,r){r.lineNumber=e.lineNumber,r.columnNumber=e.columnNumber}function cr(e,r,t){return"string"==typeof e?e.substr(r,t):e.length>=r+t||r?new java.lang.String(e,r,t)+"":e}function ur(e,r){e.currentElement?e.currentElement.appendChild(r):e.doc.appendChild(r)}ir.prototype.parseFromString=function(e,r){var t=this.options,n=new ar,a=t.domBuilder||new sr,o=t.errorHandler,i=t.locator,s=t.xmlns||{},l=/\/x?html?$/.test(r),c=l?Ke.HTML_ENTITIES:Ke.XML_ENTITIES;i&&a.setDocumentLocator(i),n.errorHandler=function(e,r,t){if(!e){if(r instanceof sr)return r;e=r}var n={},a=e instanceof Function;function o(r){var o=e[r];!o&&a&&(o=2==e.length?function(t){e(r,t)}:e),n[r]=o&&function(e){o("[xmldom "+r+"]\t"+e+function(e){if(e)return"\n@"+(e.systemId||"")+"#[line:"+e.lineNumber+",col:"+e.columnNumber+"]"}(t))}||function(){}}return t=t||{},o("warning"),o("error"),o("fatalError"),n}(o,a,i),n.domBuilder=t.domBuilder||a,l&&(s[""]=tr.HTML),s.xml=s.xml||tr.XML;var u=t.normalizeLineEndings||or;return e&&"string"==typeof e?n.parse(u(e),s,c):n.errorHandler.error("invalid doc source"),a.doc},sr.prototype={startDocument:function(){this.doc=(new rr).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(e,r,t,n){var a=this.doc,o=a.createElementNS(e,t||r),i=n.length;ur(this,o),this.currentElement=o,this.locator&&lr(this.locator,o);for(var s=0;s<i;s++){e=n.getURI(s);var l=n.getValue(s),c=(t=n.getQName(s),a.createAttributeNS(e,t));this.locator&&lr(n.getLocator(s),c),c.value=c.nodeValue=l,o.setAttributeNode(c)}},endElement:function(e,r,t){var n=this.currentElement;n.tagName,this.currentElement=n.parentNode},startPrefixMapping:function(e,r){},endPrefixMapping:function(e){},processingInstruction:function(e,r){var t=this.doc.createProcessingInstruction(e,r);this.locator&&lr(this.locator,t),ur(this,t)},ignorableWhitespace:function(e,r,t){},characters:function(e,r,t){if(e=cr.apply(this,arguments)){if(this.cdata)var n=this.doc.createCDATASection(e);else n=this.doc.createTextNode(e);this.currentElement?this.currentElement.appendChild(n):/^\s*$/.test(e)&&this.doc.appendChild(n),this.locator&&lr(this.locator,n)}},skippedEntity:function(e){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(e){(this.locator=e)&&(e.lineNumber=0)},comment:function(e,r,t){e=cr.apply(this,arguments);var n=this.doc.createComment(e);this.locator&&lr(this.locator,n),ur(this,n)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(e,r,t){var n=this.doc.implementation;if(n&&n.createDocumentType){var a=n.createDocumentType(e,r,t);this.locator&&lr(this.locator,a),ur(this,a),this.doc.doctype=a}},warning:function(e){},error:function(e){},fatalError:function(e){throw new nr(e,this.locator)}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,(function(e){sr.prototype[e]=function(){return null}})),Ie.__DOMHandler=sr,Ie.normalizeLineEndings=or,Ie.DOMParser=ir;var pr=Ie.DOMParser;const dr="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope?self:{};dr.Path2D||function(e){if(!e||!e.CanvasRenderingContext2D||e.Path2D)return;const{CanvasRenderingContext2D:r}=e,t=null==r?void 0:r.prototype.fill,a=null==r?void 0:r.prototype.stroke,o=null==r?void 0:r.prototype.isPointInPath;r.prototype.fill=function(...e){if(!(e[0]instanceof n)){const r=e[0]||"nonzero";return t.apply(this,[r])}{const r=e[0],n=e[1]||"nonzero";i(this,r.commands),t.apply(this,[n])}},r.prototype.stroke=function(e){e&&i(this,e.commands),a.apply(this)},r.prototype.isPointInPath=function(...e){if(e[0]instanceof n){const r=e[0],t=e[1],n=e[2],a=e[3]||"nonzero";return i(this,r.commands),o.apply(this,[t,n,a])}return o.apply(this,e)},e.Path2D=n}(dr),dr.DOMParser||(dr.DOMParser=pr);const hr={window:dr,isBrowser:"undefined"!=typeof window&&("[object Window]"==={}.toString.call(window)||"[object global]"==={}.toString.call(window))},fr={enabled:!1,files:{},add:function(e,r){this.enabled&&(this.files[e]=r)},get:function(e){if(this.enabled)return this.files[e]},remove:function(e){delete this.files[e]},clear:function(){this.files={}}},mr=new class{constructor(e,r,t){a(this,"isLoading",!1),a(this,"itemsLoaded",0),a(this,"itemsTotal",0),a(this,"urlModifier"),a(this,"handlers",[]),a(this,"onStart"),a(this,"onLoad"),a(this,"onProgress"),a(this,"onError"),this.onLoad=e,this.onProgress=r,this.onError=t}itemStart(e){this.itemsTotal++,this.isLoading||void 0!==this.onStart&&this.onStart(e,this.itemsLoaded,this.itemsTotal),this.isLoading=!0}itemEnd(e){this.itemsLoaded++,void 0!==this.onProgress&&this.onProgress(e,this.itemsLoaded,this.itemsTotal),this.itemsLoaded===this.itemsTotal&&(this.isLoading=!1,void 0!==this.onLoad&&this.onLoad())}itemError(e){void 0!==this.onError&&this.onError(e)}resolveURL(e){return void 0!==this.urlModifier?this.urlModifier(e):e}setURLModifier(e){return this.urlModifier=e,this}addHandler(e,r){return this.handlers.push(e,r),this}removeHandler(e){const r=this.handlers.indexOf(e);return-1!==r&&this.handlers.splice(r,2),this}getHandler(e){for(let r=0,t=this.handlers.length;r<t;r+=2){const t=this.handlers[r],n=this.handlers[r+1];if(t.global&&(t.lastIndex=0),t.test(e))return n}return null}};class gr{constructor(e=mr){a(this,"manager"),a(this,"crossOrigin","anonymous"),a(this,"withCredentials",!1),a(this,"path",""),a(this,"resourcePath",""),a(this,"requestHeader",{}),this.manager=e}loadAsync(e,r){const t=this;return new Promise((function(n,a){t.load(e,n,r,a)}))}setCrossOrigin(e){return this.crossOrigin=e,this}setWithCredentials(e){return this.withCredentials=e,this}setPath(e){return this.path=e,this}setResourcePath(e){return this.resourcePath=e,this}setRequestHeader(e){return this.requestHeader=e,this}}const br={};class wr extends Error{constructor(e,r){super(e),a(this,"response"),this.response=r}}class vr extends gr{constructor(e){super(e),a(this,"mimeType"),a(this,"responseType")}load(e,r,t,n){void 0===e&&(e=""),void 0!==this.path&&(e=this.path+e),e=this.manager.resolveURL(e);const a=fr.get(e);if(void 0!==a)return this.manager.itemStart(e),setTimeout((()=>{r&&r(a),this.manager.itemEnd(e)}),0),a;if(void 0!==br[e])return void br[e].push({onLoad:r,onProgress:t,onError:n});br[e]=[],br[e].push({onLoad:r,onProgress:t,onError:n});const o=new hr.window.Request(e,{headers:new hr.window.Headers(this.requestHeader),credentials:this.withCredentials?"include":"same-origin"}),i=this.mimeType,s=this.responseType;fetch(o).then((r=>{if(200===r.status||0===r.status){if(r.status,"undefined"==typeof ReadableStream||void 0===r.body||void 0===r.body.getReader)return r;const t=br[e],n=r.body.getReader(),a=r.headers.get("Content-Length")||r.headers.get("X-File-Size"),o=a?parseInt(a):0,i=0!==o;let s=0;const l=new ReadableStream({start(e){!function r(){n.read().then((({done:n,value:a})=>{if(n)e.close();else{s+=a.byteLength;const n=new ProgressEvent("progress",{lengthComputable:i,loaded:s,total:o});for(let e=0,r=t.length;e<r;e++){const r=t[e];r.onProgress&&r.onProgress(n)}e.enqueue(a),r()}}))}()}});return new Response(l)}throw new wr(`fetch for "${r.url}" responded with ${r.status}: ${r.statusText}`,r)})).then((e=>{switch(s){case"arraybuffer":return e.arrayBuffer();case"blob":return e.blob();case"document":return e.text().then((e=>(new DOMParser).parseFromString(e,i)));case"json":return e.json();default:if(void 0===i)return e.text();{const r=/charset="?([^;"\s]*)"?/i.exec(i),t=r&&r[1]?r[1].toLowerCase():void 0,n=new TextDecoder(t);return e.arrayBuffer().then((e=>n.decode(e)))}}})).then((r=>{fr.add(e,r);const t=br[e];delete br[e];for(let e=0,n=t.length;e<n;e++){const n=t[e];n.onLoad&&n.onLoad(r)}})).catch((r=>{const t=br[e];if(void 0===t)throw this.manager.itemError(e),r;delete br[e];for(let e=0,n=t.length;e<n;e++){const n=t[e];n.onError&&n.onError(r)}this.manager.itemError(e)})).finally((()=>{this.manager.itemEnd(e)})),this.manager.itemStart(e)}setMimeType(e){return this.mimeType=e,this}setResponseType(e){return this.responseType=e,this}}class yr extends gr{constructor(e){super(e)}load(e,r,t,n){const a=this,o=new vr(a.manager);o.setPath(a.path),o.setRequestHeader(a.requestHeader),o.setWithCredentials(a.withCredentials),o.load(e,(function(t){try{r&&r(t)}catch(r){n&&n(r),a.manager.itemError(e)}}),t,n)}}onmessage=r=>o(e,null,(function*(){"detection"===r.data.cmd&&function(){let e="";(new hr.window.DOMParser).parseFromString('<xml xmlns="a" xmlns:c="./lite">\n\t<child>test</child>\n\t<child></child>\n\t<child/>\n</xml>',"text/xml"),function(e){o(this,null,(function*(){let r=yield(new yr).loadAsync(e);(new hr.window.DOMParser).parseFromString(r,"image/svg+xml").documentElement}))}("../../examples/assets/nc05-02.svg"),e+="- Web Animation: "+!!hr.window.Animation+"\r\n",e+="- OffscreenCanvas: "+!!hr.window.OffscreenCanvas+"\r\n",e+="- DOMParser: "+!!hr.window.DOMParser+"\r\n",postMessage({cmd:"echo",data:{msg:e}})}(r.data.data)}))}},function(){return r||(0,e[n(e)[0]])((r={exports:{}}).exports,r),r.exports});export default i();