@vtj/parser 0.12.26 → 0.12.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +6 -6
- package/dist/index.mjs +263 -262
- package/package.json +6 -5
- package/types/version.d.ts +2 -2
package/dist/index.mjs
CHANGED
@@ -7,16 +7,17 @@ import { tsFormatter as Y } from "@vtj/coder";
|
|
7
7
|
import { NodeTypes as l } from "@vue/compiler-core";
|
8
8
|
import { upperFirstCamelCase as Mu, uid as Pu } from "@vtj/base";
|
9
9
|
import Uu from "postcss";
|
10
|
+
import * as $u from "sass";
|
10
11
|
/**!
|
11
12
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
12
13
|
* @name @vtj/parser
|
13
14
|
* @author CHC chenhuachun1549@dingtalk.com
|
14
|
-
* @version 0.12.
|
15
|
+
* @version 0.12.27
|
15
16
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
16
17
|
*/
|
17
|
-
const
|
18
|
+
const Q0 = "0.12.27";
|
18
19
|
function du(e) {
|
19
|
-
const { descriptor: u } = Bu(e), t = u.template?.content || "", a = (u.scriptSetup || u.script)?.content || "", i = u.styles.map((
|
20
|
+
const { descriptor: u } = Bu(e), t = u.template?.content || "", a = (u.scriptSetup || u.script)?.content || "", i = u.styles.map((s) => s.content);
|
20
21
|
return {
|
21
22
|
template: t,
|
22
23
|
script: a,
|
@@ -46,43 +47,43 @@ function L(e) {
|
|
46
47
|
function C(e) {
|
47
48
|
return e && e.type === "JSExpression";
|
48
49
|
}
|
49
|
-
function
|
50
|
+
function ju(e) {
|
50
51
|
return typeof e == "object" && e && e.type === "JSFunction";
|
51
52
|
}
|
52
53
|
function G(e) {
|
53
|
-
return C(e) ||
|
54
|
+
return C(e) || ju(e);
|
54
55
|
}
|
55
|
-
function
|
56
|
+
function Fu(e) {
|
56
57
|
return !!e && !C(e) && typeof e != "string";
|
57
58
|
}
|
58
|
-
function
|
59
|
+
function Z0(e) {
|
59
60
|
const u = du(e), t = fu(u.script), a = {};
|
60
61
|
return u.styles && (a.css = u.styles[0] || ""), ou(t, {
|
61
62
|
CallExpression(i) {
|
62
|
-
const
|
63
|
-
if (
|
64
|
-
const
|
65
|
-
|
63
|
+
const s = i.node.callee?.name;
|
64
|
+
if (s) {
|
65
|
+
const c = L(i.node.arguments[0]);
|
66
|
+
c && (a[s] = {
|
66
67
|
type: "JSFunction",
|
67
|
-
value:
|
68
|
+
value: c
|
68
69
|
});
|
69
70
|
}
|
70
71
|
}
|
71
72
|
}), a;
|
72
73
|
}
|
73
74
|
function O(e, u, t) {
|
74
|
-
const a = new RegExp(`${u}`, "g"), i = /(\@\_|\$|\.|\,|\w|\{\s)$/,
|
75
|
+
const a = new RegExp(`${u}`, "g"), i = /(\@\_|\$|\.|\,|\w|\{\s)$/, s = /^\w/, c = new RegExp(`^this.${u}$`, "g");
|
75
76
|
return e.replace(a, (d, f, h) => {
|
76
77
|
const b = h.substring(0, f), x = h.substring(f + u.length);
|
77
|
-
return i.test(b) ||
|
78
|
-
}).replace(
|
78
|
+
return i.test(b) || s.test(x.trim()) ? d : t;
|
79
|
+
}).replace(c, t);
|
79
80
|
}
|
80
81
|
function uu(e, u, t) {
|
81
82
|
const {
|
82
83
|
context: a = {},
|
83
84
|
computed: i = [],
|
84
|
-
libs:
|
85
|
-
members:
|
85
|
+
libs: s = {},
|
86
|
+
members: c = [],
|
86
87
|
platform: n
|
87
88
|
} = t || {}, d = Array.from(a[u || ""] || /* @__PURE__ */ new Set());
|
88
89
|
if (d)
|
@@ -90,9 +91,9 @@ function uu(e, u, t) {
|
|
90
91
|
e = O(e, f, `this.context.${f}`);
|
91
92
|
for (const f of i)
|
92
93
|
e = O(e, f, `this.${f}.value`);
|
93
|
-
for (const [f, h] of Object.entries(
|
94
|
+
for (const [f, h] of Object.entries(s))
|
94
95
|
e = O(e, f, `this.$libs.${h}.${f}`);
|
95
|
-
for (const f of
|
96
|
+
for (const f of c)
|
96
97
|
e = O(e, f, `this.${f}`);
|
97
98
|
if (n === "uniapp") {
|
98
99
|
const f = /\buni\./g;
|
@@ -112,7 +113,7 @@ function J(e) {
|
|
112
113
|
value: e
|
113
114
|
};
|
114
115
|
}
|
115
|
-
const
|
116
|
+
const Hu = [
|
116
117
|
"beforeCreate",
|
117
118
|
"created",
|
118
119
|
"beforeMount",
|
@@ -126,42 +127,42 @@ const Fu = [
|
|
126
127
|
"renderTriggered",
|
127
128
|
"activated",
|
128
129
|
"deactivated"
|
129
|
-
],
|
130
|
+
], Cu = "html,body,base,head,link,meta,style,title,address,article,aside,footer,header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot".split(
|
130
131
|
","
|
131
|
-
),
|
132
|
+
), Gu = "component,slot,template".split(","), Ju = "view,swiper,progress,icon,text,button,checkbox,editor,form,input,label,picker,radio,slider,switch,textarea,audio,camera,image,video,map,canvas".split(
|
132
133
|
","
|
133
134
|
);
|
134
|
-
function
|
135
|
-
return u === "uniapp" &&
|
135
|
+
function Xu(e, u = "web") {
|
136
|
+
return u === "uniapp" && Ju.includes(e);
|
136
137
|
}
|
137
138
|
function bu(e, u = "web") {
|
138
|
-
return (
|
139
|
+
return (Cu.includes(e) || Gu.includes(e)) && !Xu(e, u) ? e : Mu(e);
|
139
140
|
}
|
140
141
|
function lu(e) {
|
141
142
|
return e.replace(/\s+/g, " ").split(";").reduce((t, a) => {
|
142
|
-
const [i,
|
143
|
-
return i &&
|
143
|
+
const [i, s] = a.split(":").map((c) => c.trim());
|
144
|
+
return i && s && (t[i] = s), t;
|
144
145
|
}, {});
|
145
146
|
}
|
146
|
-
function
|
147
|
+
function zu(e) {
|
147
148
|
const u = [];
|
148
149
|
return /保持不变/g.test(e) && u.push("部分保持不变的代码需要完整输出"), u;
|
149
150
|
}
|
150
|
-
function
|
151
|
+
function Wu(e, u, t) {
|
151
152
|
if (t === "ObjectExpression")
|
152
153
|
return `(Object.assign({${e.split(" ").map((i) => `'${i}': true`).join(",")}}, ${u}))`;
|
153
154
|
if (t === "ArrayExpression")
|
154
155
|
return `([${e.split(" ").map((i) => `'${i}'`).join(",")}].concat(${u}))`;
|
155
156
|
}
|
156
|
-
const
|
157
|
+
const Qu = /* @__PURE__ */ new Uint16Array(
|
157
158
|
// prettier-ignore
|
158
159
|
/* @__PURE__ */ 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((e) => e.charCodeAt(0))
|
159
|
-
),
|
160
|
+
), Zu = /* @__PURE__ */ new Uint16Array(
|
160
161
|
// prettier-ignore
|
161
162
|
/* @__PURE__ */ "Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((e) => e.charCodeAt(0))
|
162
163
|
);
|
163
164
|
var U;
|
164
|
-
const
|
165
|
+
const Ku = /* @__PURE__ */ new Map([
|
165
166
|
[0, 65533],
|
166
167
|
// C1 Unicode control character reference replacements
|
167
168
|
[128, 8364],
|
@@ -198,15 +199,15 @@ const Zu = /* @__PURE__ */ new Map([
|
|
198
199
|
return e > 65535 && (e -= 65536, u += String.fromCharCode(e >>> 10 & 1023 | 55296), e = 56320 | e & 1023), u += String.fromCharCode(e), u;
|
199
200
|
}
|
200
201
|
);
|
201
|
-
function
|
202
|
+
function Yu(e) {
|
202
203
|
var u;
|
203
|
-
return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (u =
|
204
|
+
return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (u = Ku.get(e)) !== null && u !== void 0 ? u : e;
|
204
205
|
}
|
205
206
|
var E;
|
206
207
|
(function(e) {
|
207
208
|
e[e.NUM = 35] = "NUM", e[e.SEMI = 59] = "SEMI", e[e.EQUALS = 61] = "EQUALS", e[e.ZERO = 48] = "ZERO", e[e.NINE = 57] = "NINE", e[e.LOWER_A = 97] = "LOWER_A", e[e.LOWER_F = 102] = "LOWER_F", e[e.LOWER_X = 120] = "LOWER_X", e[e.LOWER_Z = 122] = "LOWER_Z", e[e.UPPER_A = 65] = "UPPER_A", e[e.UPPER_F = 70] = "UPPER_F", e[e.UPPER_Z = 90] = "UPPER_Z";
|
208
209
|
})(E || (E = {}));
|
209
|
-
const
|
210
|
+
const u0 = 32;
|
210
211
|
var N;
|
211
212
|
(function(e) {
|
212
213
|
e[e.VALUE_LENGTH = 49152] = "VALUE_LENGTH", e[e.BRANCH_LENGTH = 16256] = "BRANCH_LENGTH", e[e.JUMP_TABLE = 127] = "JUMP_TABLE";
|
@@ -214,14 +215,14 @@ var N;
|
|
214
215
|
function j(e) {
|
215
216
|
return e >= E.ZERO && e <= E.NINE;
|
216
217
|
}
|
217
|
-
function
|
218
|
+
function e0(e) {
|
218
219
|
return e >= E.UPPER_A && e <= E.UPPER_F || e >= E.LOWER_A && e <= E.LOWER_F;
|
219
220
|
}
|
220
|
-
function
|
221
|
+
function t0(e) {
|
221
222
|
return e >= E.UPPER_A && e <= E.UPPER_Z || e >= E.LOWER_A && e <= E.LOWER_Z || j(e);
|
222
223
|
}
|
223
|
-
function
|
224
|
-
return e === E.EQUALS ||
|
224
|
+
function a0(e) {
|
225
|
+
return e === E.EQUALS || t0(e);
|
225
226
|
}
|
226
227
|
var y;
|
227
228
|
(function(e) {
|
@@ -231,7 +232,7 @@ var A;
|
|
231
232
|
(function(e) {
|
232
233
|
e[e.Legacy = 0] = "Legacy", e[e.Strict = 1] = "Strict", e[e.Attribute = 2] = "Attribute";
|
233
234
|
})(A || (A = {}));
|
234
|
-
class
|
235
|
+
class i0 {
|
235
236
|
constructor(u, t, a) {
|
236
237
|
this.decodeTree = u, this.emitCodePoint = t, this.errors = a, this.state = y.EntityStart, this.consumed = 1, this.result = 0, this.treeIndex = 0, this.excess = 1, this.decodeMode = A.Strict;
|
237
238
|
}
|
@@ -274,12 +275,12 @@ class a0 {
|
|
274
275
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
275
276
|
*/
|
276
277
|
stateNumericStart(u, t) {
|
277
|
-
return t >= u.length ? -1 : (u.charCodeAt(t) |
|
278
|
+
return t >= u.length ? -1 : (u.charCodeAt(t) | u0) === E.LOWER_X ? (this.state = y.NumericHex, this.consumed += 1, this.stateNumericHex(u, t + 1)) : (this.state = y.NumericDecimal, this.stateNumericDecimal(u, t));
|
278
279
|
}
|
279
280
|
addToNumericResult(u, t, a, i) {
|
280
281
|
if (t !== a) {
|
281
|
-
const
|
282
|
-
this.result = this.result * Math.pow(i,
|
282
|
+
const s = a - t;
|
283
|
+
this.result = this.result * Math.pow(i, s) + Number.parseInt(u.substr(t, s), i), this.consumed += s;
|
283
284
|
}
|
284
285
|
}
|
285
286
|
/**
|
@@ -295,7 +296,7 @@ class a0 {
|
|
295
296
|
const a = t;
|
296
297
|
for (; t < u.length; ) {
|
297
298
|
const i = u.charCodeAt(t);
|
298
|
-
if (j(i) ||
|
299
|
+
if (j(i) || e0(i))
|
299
300
|
t += 1;
|
300
301
|
else
|
301
302
|
return this.addToNumericResult(u, a, t, 16), this.emitNumericEntity(i, 3);
|
@@ -343,7 +344,7 @@ class a0 {
|
|
343
344
|
this.consumed += 1;
|
344
345
|
else if (this.decodeMode === A.Strict)
|
345
346
|
return 0;
|
346
|
-
return this.emitCodePoint(
|
347
|
+
return this.emitCodePoint(Yu(this.result), this.consumed), this.errors && (u !== E.SEMI && this.errors.missingSemicolonAfterCharacterReference(), this.errors.validateNumericCharacterReference(this.result)), this.consumed;
|
347
348
|
}
|
348
349
|
/**
|
349
350
|
* Parses a named entity.
|
@@ -356,17 +357,17 @@ class a0 {
|
|
356
357
|
*/
|
357
358
|
stateNamedEntity(u, t) {
|
358
359
|
const { decodeTree: a } = this;
|
359
|
-
let i = a[this.treeIndex],
|
360
|
+
let i = a[this.treeIndex], s = (i & N.VALUE_LENGTH) >> 14;
|
360
361
|
for (; t < u.length; t++, this.excess++) {
|
361
|
-
const
|
362
|
-
if (this.treeIndex =
|
362
|
+
const c = u.charCodeAt(t);
|
363
|
+
if (this.treeIndex = s0(a, i, this.treeIndex + Math.max(1, s), c), this.treeIndex < 0)
|
363
364
|
return this.result === 0 || // If we are parsing an attribute
|
364
365
|
this.decodeMode === A.Attribute && // We shouldn't have consumed any characters after the entity,
|
365
|
-
(
|
366
|
-
|
367
|
-
if (i = a[this.treeIndex],
|
368
|
-
if (
|
369
|
-
return this.emitNamedEntityData(this.treeIndex,
|
366
|
+
(s === 0 || // And there should be no invalid characters.
|
367
|
+
a0(c)) ? 0 : this.emitNotTerminatedNamedEntity();
|
368
|
+
if (i = a[this.treeIndex], s = (i & N.VALUE_LENGTH) >> 14, s !== 0) {
|
369
|
+
if (c === E.SEMI)
|
370
|
+
return this.emitNamedEntityData(this.treeIndex, s, this.consumed + this.excess);
|
370
371
|
this.decodeMode !== A.Strict && (this.result = this.treeIndex, this.consumed += this.excess, this.excess = 0);
|
371
372
|
}
|
372
373
|
}
|
@@ -419,19 +420,19 @@ class a0 {
|
|
419
420
|
}
|
420
421
|
}
|
421
422
|
}
|
422
|
-
function
|
423
|
-
const i = (u & N.BRANCH_LENGTH) >> 7,
|
423
|
+
function s0(e, u, t, a) {
|
424
|
+
const i = (u & N.BRANCH_LENGTH) >> 7, s = u & N.JUMP_TABLE;
|
424
425
|
if (i === 0)
|
425
|
-
return
|
426
|
-
if (
|
427
|
-
const d = a -
|
426
|
+
return s !== 0 && a === s ? t : -1;
|
427
|
+
if (s) {
|
428
|
+
const d = a - s;
|
428
429
|
return d < 0 || d >= i ? -1 : e[t + d] - 1;
|
429
430
|
}
|
430
|
-
let
|
431
|
-
for (;
|
432
|
-
const d =
|
431
|
+
let c = t, n = c + i - 1;
|
432
|
+
for (; c <= n; ) {
|
433
|
+
const d = c + n >>> 1, f = e[d];
|
433
434
|
if (f < a)
|
434
|
-
|
435
|
+
c = d + 1;
|
435
436
|
else if (f > a)
|
436
437
|
n = d - 1;
|
437
438
|
else
|
@@ -489,9 +490,9 @@ const g = {
|
|
489
490
|
XmpEnd: new Uint8Array([60, 47, 120, 109, 112])
|
490
491
|
// `</xmp`
|
491
492
|
};
|
492
|
-
class
|
493
|
+
class r0 {
|
493
494
|
constructor({ xmlMode: u = !1, decodeEntities: t = !0 }, a) {
|
494
|
-
this.cbs = a, this.state = r.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = r.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode = u, this.decodeEntities = t, this.entityDecoder = new
|
495
|
+
this.cbs = a, this.state = r.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = r.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode = u, this.decodeEntities = t, this.entityDecoder = new i0(u ? Zu : Qu, (i, s) => this.emitCodePoint(i, s));
|
495
496
|
}
|
496
497
|
reset() {
|
497
498
|
this.state = r.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.baseState = r.Text, this.currentSequence = void 0, this.running = !0, this.offset = 0;
|
@@ -821,7 +822,7 @@ const k = /* @__PURE__ */ new Set([
|
|
821
822
|
"button",
|
822
823
|
"datalist",
|
823
824
|
"textarea"
|
824
|
-
]), p = /* @__PURE__ */ new Set(["p"]), tu = /* @__PURE__ */ new Set(["thead", "tbody"]), au = /* @__PURE__ */ new Set(["dd", "dt"]), iu = /* @__PURE__ */ new Set(["rt", "rp"]),
|
825
|
+
]), p = /* @__PURE__ */ new Set(["p"]), tu = /* @__PURE__ */ new Set(["thead", "tbody"]), au = /* @__PURE__ */ new Set(["dd", "dt"]), iu = /* @__PURE__ */ new Set(["rt", "rp"]), n0 = /* @__PURE__ */ new Map([
|
825
826
|
["tr", /* @__PURE__ */ new Set(["tr", "th", "td"])],
|
826
827
|
["th", /* @__PURE__ */ new Set(["th"])],
|
827
828
|
["td", /* @__PURE__ */ new Set(["thead", "th", "td"])],
|
@@ -869,7 +870,7 @@ const k = /* @__PURE__ */ new Set([
|
|
869
870
|
["rp", iu],
|
870
871
|
["tbody", tu],
|
871
872
|
["tfoot", tu]
|
872
|
-
]),
|
873
|
+
]), d0 = /* @__PURE__ */ new Set([
|
873
874
|
"area",
|
874
875
|
"base",
|
875
876
|
"basefont",
|
@@ -889,7 +890,7 @@ const k = /* @__PURE__ */ new Set([
|
|
889
890
|
"source",
|
890
891
|
"track",
|
891
892
|
"wbr"
|
892
|
-
]),
|
893
|
+
]), su = /* @__PURE__ */ new Set(["math", "svg"]), cu = /* @__PURE__ */ new Set([
|
893
894
|
"mi",
|
894
895
|
"mo",
|
895
896
|
"mn",
|
@@ -899,18 +900,18 @@ const k = /* @__PURE__ */ new Set([
|
|
899
900
|
"foreignobject",
|
900
901
|
"desc",
|
901
902
|
"title"
|
902
|
-
]),
|
903
|
-
class
|
903
|
+
]), f0 = /\s|\//;
|
904
|
+
class o0 {
|
904
905
|
constructor(u, t = {}) {
|
905
|
-
var a, i,
|
906
|
-
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = u ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (a = t.lowerCaseTags) !== null && a !== void 0 ? a : this.htmlMode, this.lowerCaseAttributeNames = (i = t.lowerCaseAttributeNames) !== null && i !== void 0 ? i : this.htmlMode, this.recognizeSelfClosing = (
|
906
|
+
var a, i, s, c, n, d;
|
907
|
+
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = u ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (a = t.lowerCaseTags) !== null && a !== void 0 ? a : this.htmlMode, this.lowerCaseAttributeNames = (i = t.lowerCaseAttributeNames) !== null && i !== void 0 ? i : this.htmlMode, this.recognizeSelfClosing = (s = t.recognizeSelfClosing) !== null && s !== void 0 ? s : !this.htmlMode, this.tokenizer = new ((c = t.Tokenizer) !== null && c !== void 0 ? c : r0)(this.options, this), this.foreignContext = [!this.htmlMode], (d = (n = this.cbs).onparserinit) === null || d === void 0 || d.call(n, this);
|
907
908
|
}
|
908
909
|
// Tokenizer event handlers
|
909
910
|
/** @internal */
|
910
911
|
ontext(u, t) {
|
911
912
|
var a, i;
|
912
|
-
const
|
913
|
-
this.endIndex = t - 1, (i = (a = this.cbs).ontext) === null || i === void 0 || i.call(a,
|
913
|
+
const s = this.getSlice(u, t);
|
914
|
+
this.endIndex = t - 1, (i = (a = this.cbs).ontext) === null || i === void 0 || i.call(a, s), this.startIndex = t;
|
914
915
|
}
|
915
916
|
/** @internal */
|
916
917
|
ontextentity(u, t) {
|
@@ -922,7 +923,7 @@ class f0 {
|
|
922
923
|
* to specify your own additional void elements.
|
923
924
|
*/
|
924
925
|
isVoidElement(u) {
|
925
|
-
return this.htmlMode &&
|
926
|
+
return this.htmlMode && d0.has(u);
|
926
927
|
}
|
927
928
|
/** @internal */
|
928
929
|
onopentagname(u, t) {
|
@@ -931,15 +932,15 @@ class f0 {
|
|
931
932
|
this.lowerCaseTagNames && (a = a.toLowerCase()), this.emitOpenTag(a);
|
932
933
|
}
|
933
934
|
emitOpenTag(u) {
|
934
|
-
var t, a, i,
|
935
|
+
var t, a, i, s;
|
935
936
|
this.openTagStart = this.startIndex, this.tagname = u;
|
936
|
-
const
|
937
|
-
if (
|
938
|
-
for (; this.stack.length > 0 &&
|
937
|
+
const c = this.htmlMode && n0.get(u);
|
938
|
+
if (c)
|
939
|
+
for (; this.stack.length > 0 && c.has(this.stack[0]); ) {
|
939
940
|
const n = this.stack.shift();
|
940
941
|
(a = (t = this.cbs).onclosetag) === null || a === void 0 || a.call(t, n, !0);
|
941
942
|
}
|
942
|
-
this.isVoidElement(u) || (this.stack.unshift(u), this.htmlMode && (
|
943
|
+
this.isVoidElement(u) || (this.stack.unshift(u), this.htmlMode && (su.has(u) ? this.foreignContext.unshift(!0) : cu.has(u) && this.foreignContext.unshift(!1))), (s = (i = this.cbs).onopentagname) === null || s === void 0 || s.call(i, u), this.cbs.onopentag && (this.attribs = {});
|
943
944
|
}
|
944
945
|
endOpenTag(u) {
|
945
946
|
var t, a;
|
@@ -951,11 +952,11 @@ class f0 {
|
|
951
952
|
}
|
952
953
|
/** @internal */
|
953
954
|
onclosetag(u, t) {
|
954
|
-
var a, i,
|
955
|
+
var a, i, s, c, n, d, f, h;
|
955
956
|
this.endIndex = t;
|
956
957
|
let b = this.getSlice(u, t);
|
957
|
-
if (this.lowerCaseTagNames && (b = b.toLowerCase()), this.htmlMode && (
|
958
|
-
this.htmlMode && b === "br" && ((
|
958
|
+
if (this.lowerCaseTagNames && (b = b.toLowerCase()), this.htmlMode && (su.has(b) || cu.has(b)) && this.foreignContext.shift(), this.isVoidElement(b))
|
959
|
+
this.htmlMode && b === "br" && ((c = (s = this.cbs).onopentagname) === null || c === void 0 || c.call(s, "br"), (d = (n = this.cbs).onopentag) === null || d === void 0 || d.call(n, "br", {}, !0), (h = (f = this.cbs).onclosetag) === null || h === void 0 || h.call(f, "br", !1));
|
959
960
|
else {
|
960
961
|
const x = this.stack.indexOf(b);
|
961
962
|
if (x !== -1)
|
@@ -996,7 +997,7 @@ class f0 {
|
|
996
997
|
this.endIndex = t, (i = (a = this.cbs).onattribute) === null || i === void 0 || i.call(a, this.attribname, this.attribvalue, u === T.Double ? '"' : u === T.Single ? "'" : u === T.NoValue ? void 0 : null), this.attribs && !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname) && (this.attribs[this.attribname] = this.attribvalue), this.attribvalue = "";
|
997
998
|
}
|
998
999
|
getInstructionName(u) {
|
999
|
-
const t = u.search(
|
1000
|
+
const t = u.search(f0);
|
1000
1001
|
let a = t < 0 ? u : u.substr(0, t);
|
1001
1002
|
return this.lowerCaseTagNames && (a = a.toLowerCase()), a;
|
1002
1003
|
}
|
@@ -1022,15 +1023,15 @@ class f0 {
|
|
1022
1023
|
}
|
1023
1024
|
/** @internal */
|
1024
1025
|
oncomment(u, t, a) {
|
1025
|
-
var i,
|
1026
|
-
this.endIndex = t, (
|
1026
|
+
var i, s, c, n;
|
1027
|
+
this.endIndex = t, (s = (i = this.cbs).oncomment) === null || s === void 0 || s.call(i, this.getSlice(u, t - a)), (n = (c = this.cbs).oncommentend) === null || n === void 0 || n.call(c), this.startIndex = t + 1;
|
1027
1028
|
}
|
1028
1029
|
/** @internal */
|
1029
1030
|
oncdata(u, t, a) {
|
1030
|
-
var i,
|
1031
|
+
var i, s, c, n, d, f, h, b, x, m;
|
1031
1032
|
this.endIndex = t;
|
1032
1033
|
const v = this.getSlice(u, t - a);
|
1033
|
-
!this.htmlMode || this.options.recognizeCDATA ? ((
|
1034
|
+
!this.htmlMode || this.options.recognizeCDATA ? ((s = (i = this.cbs).oncdatastart) === null || s === void 0 || s.call(i), (n = (c = this.cbs).ontext) === null || n === void 0 || n.call(c, v), (f = (d = this.cbs).oncdataend) === null || f === void 0 || f.call(d)) : ((b = (h = this.cbs).oncomment) === null || b === void 0 || b.call(h, `[CDATA[${v}]]`), (m = (x = this.cbs).oncommentend) === null || m === void 0 || m.call(x)), this.startIndex = t + 1;
|
1034
1035
|
}
|
1035
1036
|
/** @internal */
|
1036
1037
|
onend() {
|
@@ -1131,9 +1132,9 @@ class f0 {
|
|
1131
1132
|
function ru(e, u = "web") {
|
1132
1133
|
const t = { name: "", children: [] }, a = [t];
|
1133
1134
|
let i = "";
|
1134
|
-
const
|
1135
|
+
const s = new o0(
|
1135
1136
|
{
|
1136
|
-
onopentag: (
|
1137
|
+
onopentag: (c, n, d) => {
|
1137
1138
|
const f = a[a.length - 1];
|
1138
1139
|
i.trim() && (Array.isArray(f.children) ? f.children.push({
|
1139
1140
|
name: "span",
|
@@ -1148,7 +1149,7 @@ function ru(e, u = "web") {
|
|
1148
1149
|
);
|
1149
1150
|
h.style && (h.style = lu(h.style));
|
1150
1151
|
const b = {
|
1151
|
-
name: bu(
|
1152
|
+
name: bu(c, u),
|
1152
1153
|
props: h
|
1153
1154
|
};
|
1154
1155
|
Array.isArray(f.children) ? f.children.push(b) : f.children ? f.children = [
|
@@ -1159,33 +1160,33 @@ function ru(e, u = "web") {
|
|
1159
1160
|
b
|
1160
1161
|
] : f.children = [b], d || a.push(b);
|
1161
1162
|
},
|
1162
|
-
ontext: (
|
1163
|
-
const n =
|
1163
|
+
ontext: (c) => {
|
1164
|
+
const n = c.trim();
|
1164
1165
|
n && n !== '"' && (i += n);
|
1165
1166
|
},
|
1166
1167
|
onclosetag: () => {
|
1167
|
-
const
|
1168
|
-
i.trim() && (Array.isArray(
|
1168
|
+
const c = a.pop();
|
1169
|
+
i.trim() && (Array.isArray(c?.children) ? c.children.push({
|
1169
1170
|
name: "span",
|
1170
1171
|
children: i.trim()
|
1171
|
-
}) :
|
1172
|
+
}) : c && (c.children = i.trim()), i = "");
|
1172
1173
|
}
|
1173
1174
|
},
|
1174
1175
|
{ decodeEntities: !0 }
|
1175
1176
|
);
|
1176
|
-
return
|
1177
|
+
return s.write(e.replace(/\\"/g, '"')), s.end(), t.children || [];
|
1177
1178
|
}
|
1178
|
-
function
|
1179
|
+
function b0(e, u) {
|
1179
1180
|
const a = {
|
1180
|
-
imports:
|
1181
|
+
imports: l0(e),
|
1181
1182
|
emits: [],
|
1182
1183
|
errors: []
|
1183
1184
|
}, i = fu(e);
|
1184
1185
|
return ou(i, {
|
1185
|
-
ExportDefaultDeclaration(
|
1186
|
-
const
|
1187
|
-
if (
|
1188
|
-
const n =
|
1186
|
+
ExportDefaultDeclaration(s) {
|
1187
|
+
const c = s.node.declaration;
|
1188
|
+
if (c.type !== "CallExpression") return;
|
1189
|
+
const n = c.arguments[0];
|
1189
1190
|
if (n?.type !== "ObjectExpression") return;
|
1190
1191
|
const d = n.properties.filter(
|
1191
1192
|
(b) => b.type === "ObjectProperty"
|
@@ -1194,60 +1195,60 @@ function o0(e, u) {
|
|
1194
1195
|
), h = d.find(
|
1195
1196
|
(b) => b.key.name === "computed"
|
1196
1197
|
);
|
1197
|
-
h && (a.computed = hu(h.value), a.watchers =
|
1198
|
+
h && (a.computed = hu(h.value), a.watchers = y0(h.value));
|
1198
1199
|
for (const b of d)
|
1199
1200
|
switch (b.key.name) {
|
1200
1201
|
case "name":
|
1201
1202
|
a.name = b.value.value;
|
1202
1203
|
break;
|
1203
1204
|
case "methods":
|
1204
|
-
a.handlers =
|
1205
|
+
a.handlers = g0(b.value), a.methods = x0(b.value), a.dataSources = m0(
|
1205
1206
|
b.value,
|
1206
1207
|
u
|
1207
1208
|
);
|
1208
1209
|
break;
|
1209
1210
|
case "watch":
|
1210
|
-
a.watch =
|
1211
|
+
a.watch = E0(
|
1211
1212
|
b.value,
|
1212
1213
|
a.watchers
|
1213
1214
|
);
|
1214
1215
|
break;
|
1215
1216
|
case "props":
|
1216
|
-
a.props =
|
1217
|
+
a.props = w0(b.value);
|
1217
1218
|
break;
|
1218
1219
|
case "inject":
|
1219
|
-
a.inject =
|
1220
|
+
a.inject = T0(b.value);
|
1220
1221
|
break;
|
1221
1222
|
}
|
1222
1223
|
for (const b of f)
|
1223
1224
|
switch (b.key.name) {
|
1224
1225
|
case "setup":
|
1225
|
-
a.state =
|
1226
|
+
a.state = p0(b.body);
|
1226
1227
|
break;
|
1227
1228
|
}
|
1228
|
-
a.lifeCycles =
|
1229
|
+
a.lifeCycles = S0(f);
|
1229
1230
|
},
|
1230
|
-
CallExpression(
|
1231
|
-
const
|
1232
|
-
if (
|
1233
|
-
for (let n of
|
1231
|
+
CallExpression(s) {
|
1232
|
+
const c = A0(s.node);
|
1233
|
+
if (c.length)
|
1234
|
+
for (let n of c)
|
1234
1235
|
a.emits?.find((f) => f.name === n.name) || a.emits?.push(n);
|
1235
1236
|
}
|
1236
1237
|
}), a;
|
1237
1238
|
}
|
1238
|
-
function
|
1239
|
+
function l0(e) {
|
1239
1240
|
const u = /import\s+{(.+?)}\s+from\s+['"](.+?)['"]/g, t = /import\s+(.+?)\s+from\s+['"](.+?)['"]/g, a = /^{(.+?)}$/, i = [];
|
1240
|
-
let
|
1241
|
-
const
|
1242
|
-
for (; (
|
1243
|
-
const n =
|
1241
|
+
let s;
|
1242
|
+
const c = e.replace(/\n/g, " ");
|
1243
|
+
for (; (s = u.exec(c)) !== null; ) {
|
1244
|
+
const n = s[2] === "@element-plus/icons-vue" ? "@vtj/icons" : s[2];
|
1244
1245
|
i.push({
|
1245
1246
|
from: n,
|
1246
|
-
imports:
|
1247
|
+
imports: s[1].split(",").map((d) => d.trim())
|
1247
1248
|
});
|
1248
1249
|
}
|
1249
|
-
for (; (
|
1250
|
-
const n =
|
1250
|
+
for (; (s = t.exec(c)) !== null; ) {
|
1251
|
+
const n = s[1], d = s[2];
|
1251
1252
|
n && !a.test(n) && i.push({
|
1252
1253
|
from: d,
|
1253
1254
|
imports: n
|
@@ -1255,7 +1256,7 @@ function b0(e) {
|
|
1255
1256
|
}
|
1256
1257
|
return i;
|
1257
1258
|
}
|
1258
|
-
function
|
1259
|
+
function h0(e) {
|
1259
1260
|
for (const u of e.body)
|
1260
1261
|
if (u.type === "VariableDeclaration" && u.kind == "const") {
|
1261
1262
|
const { id: t, init: a } = u.declarations[0];
|
@@ -1264,23 +1265,23 @@ function l0(e) {
|
|
1264
1265
|
}
|
1265
1266
|
return null;
|
1266
1267
|
}
|
1267
|
-
function
|
1268
|
-
const u =
|
1268
|
+
function p0(e) {
|
1269
|
+
const u = h0(e);
|
1269
1270
|
if (!u) return {};
|
1270
1271
|
const t = {};
|
1271
1272
|
for (const a of u.properties) {
|
1272
|
-
const { key: i, value:
|
1273
|
+
const { key: i, value: s } = a;
|
1273
1274
|
if (i.type === "Identifier") {
|
1274
|
-
const
|
1275
|
-
t[i.name] = S(
|
1275
|
+
const c = L(s);
|
1276
|
+
t[i.name] = S(c);
|
1276
1277
|
}
|
1277
1278
|
}
|
1278
1279
|
return t;
|
1279
1280
|
}
|
1280
1281
|
function q(e) {
|
1281
|
-
const { key: u, async: t, params: a, body: i } = e,
|
1282
|
+
const { key: u, async: t, params: a, body: i } = e, s = a?.map((c) => c.type === "ObjectPattern" ? `{${c.properties.map((d) => d.key?.name || d.name).join(",")}}` : c.name).join(", ");
|
1282
1283
|
if (u.type === "Identifier") {
|
1283
|
-
const
|
1284
|
+
const c = u.name;
|
1284
1285
|
let n = "{}";
|
1285
1286
|
i && (n = L(i) || "{}");
|
1286
1287
|
const d = e.value;
|
@@ -1288,9 +1289,9 @@ function q(e) {
|
|
1288
1289
|
let x = L(d) || "";
|
1289
1290
|
x = x.replace("function () {", "() => {"), n = `{ return (${x})}`;
|
1290
1291
|
}
|
1291
|
-
const h = `${t ? "async " : ""}(${
|
1292
|
+
const h = `${t ? "async " : ""}(${s}) => ${n}`, b = c.startsWith("watcher_");
|
1292
1293
|
return {
|
1293
|
-
name:
|
1294
|
+
name: c,
|
1294
1295
|
watcher: b,
|
1295
1296
|
exp: J(h)
|
1296
1297
|
};
|
@@ -1305,18 +1306,18 @@ function hu(e) {
|
|
1305
1306
|
}
|
1306
1307
|
return u;
|
1307
1308
|
}
|
1308
|
-
function
|
1309
|
+
function m0(e, u) {
|
1309
1310
|
if (!e) return {};
|
1310
1311
|
const t = {}, a = /apis\[\'([\w]*)\'\]/, i = /\.then\(([\w\W]*)\)/;
|
1311
|
-
for (const
|
1312
|
-
const
|
1313
|
-
if (
|
1314
|
-
const d = (
|
1312
|
+
for (const s of e.properties) {
|
1313
|
+
const c = q(s);
|
1314
|
+
if (c && c.exp.value.includes("provider.apis")) {
|
1315
|
+
const d = (c.exp.value.match(a) || [])[1];
|
1315
1316
|
if (!d) continue;
|
1316
|
-
const f =
|
1317
|
+
const f = I0(u, d);
|
1317
1318
|
if (!f) continue;
|
1318
|
-
const h =
|
1319
|
-
t[
|
1319
|
+
const h = c.exp.value.match(i)?.[1];
|
1320
|
+
t[c.name] = {
|
1320
1321
|
ref: d,
|
1321
1322
|
name: f.name,
|
1322
1323
|
test: {
|
@@ -1339,13 +1340,13 @@ function p0(e, u) {
|
|
1339
1340
|
}
|
1340
1341
|
return t;
|
1341
1342
|
}
|
1342
|
-
function
|
1343
|
+
function x0(e) {
|
1343
1344
|
const u = hu(e), t = /\_([\w]{5,})$/, a = {};
|
1344
1345
|
for (const i of Object.keys(u))
|
1345
1346
|
t.test(i) || (a[i] = u[i]);
|
1346
1347
|
return a;
|
1347
1348
|
}
|
1348
|
-
function
|
1349
|
+
function g0(e) {
|
1349
1350
|
if (!e) return {};
|
1350
1351
|
const u = {}, t = /\_([\w]{5,})$/;
|
1351
1352
|
for (const a of e.properties) {
|
@@ -1353,19 +1354,19 @@ function x0(e) {
|
|
1353
1354
|
if (t.test(i))
|
1354
1355
|
try {
|
1355
1356
|
if (a.body.body[0]?.argument) {
|
1356
|
-
const
|
1357
|
+
const s = L(
|
1357
1358
|
a.body.body[0].argument.callee.object
|
1358
1359
|
);
|
1359
|
-
u[i] = J(
|
1360
|
+
u[i] = J(s);
|
1360
1361
|
} else
|
1361
1362
|
u[i] = q(a)?.exp;
|
1362
|
-
} catch (
|
1363
|
-
console.warn(
|
1363
|
+
} catch (s) {
|
1364
|
+
console.warn(s);
|
1364
1365
|
}
|
1365
1366
|
}
|
1366
1367
|
return u;
|
1367
1368
|
}
|
1368
|
-
function
|
1369
|
+
function y0(e) {
|
1369
1370
|
if (!e) return {};
|
1370
1371
|
const u = {};
|
1371
1372
|
for (const t of e.properties) {
|
@@ -1389,14 +1390,14 @@ function nu(e, u) {
|
|
1389
1390
|
if (t)
|
1390
1391
|
return q(t)?.exp;
|
1391
1392
|
}
|
1392
|
-
function
|
1393
|
+
function E0(e, u = {}) {
|
1393
1394
|
const t = [];
|
1394
1395
|
for (const a of e.properties) {
|
1395
|
-
const { key: i, value:
|
1396
|
-
if (u[
|
1397
|
-
const n =
|
1396
|
+
const { key: i, value: s } = a, c = i.value || i.name || "";
|
1397
|
+
if (u[c]) {
|
1398
|
+
const n = s.properties;
|
1398
1399
|
t.push({
|
1399
|
-
source: u[
|
1400
|
+
source: u[c],
|
1400
1401
|
deep: R(n, "deep"),
|
1401
1402
|
immediate: R(n, "immediate"),
|
1402
1403
|
handler: nu(n, "handler")
|
@@ -1405,18 +1406,18 @@ function y0(e, u = {}) {
|
|
1405
1406
|
// todo: 处理上下文
|
1406
1407
|
source: {
|
1407
1408
|
type: "JSFunction",
|
1408
|
-
value: `this.${
|
1409
|
+
value: `this.${c}`
|
1409
1410
|
},
|
1410
1411
|
deep: !1,
|
1411
1412
|
immediate: !1,
|
1412
1413
|
handler: q(a)?.exp
|
1413
1414
|
}), a.type === "ObjectProperty") {
|
1414
|
-
const n =
|
1415
|
+
const n = s.properties;
|
1415
1416
|
t.push({
|
1416
1417
|
// todo: 处理上下文
|
1417
1418
|
source: {
|
1418
1419
|
type: "JSFunction",
|
1419
|
-
value: `this.${
|
1420
|
+
value: `this.${c}`
|
1420
1421
|
},
|
1421
1422
|
deep: R(n, "deep"),
|
1422
1423
|
immediate: R(n, "immediate"),
|
@@ -1426,18 +1427,18 @@ function y0(e, u = {}) {
|
|
1426
1427
|
}
|
1427
1428
|
return t;
|
1428
1429
|
}
|
1429
|
-
function
|
1430
|
+
function S0(e) {
|
1430
1431
|
const u = {};
|
1431
1432
|
for (const t of e) {
|
1432
1433
|
const a = t.key.name;
|
1433
|
-
if (
|
1434
|
+
if (Hu.includes(a)) {
|
1434
1435
|
const i = q(t);
|
1435
1436
|
i && (u[i.name] = i.exp);
|
1436
1437
|
}
|
1437
1438
|
}
|
1438
1439
|
return u;
|
1439
1440
|
}
|
1440
|
-
function
|
1441
|
+
function v0(e) {
|
1441
1442
|
const u = e.find(
|
1442
1443
|
(t) => t.key?.name === "type"
|
1443
1444
|
);
|
@@ -1451,24 +1452,24 @@ function mu(e) {
|
|
1451
1452
|
if (u)
|
1452
1453
|
return S(L(u.value));
|
1453
1454
|
}
|
1454
|
-
function
|
1455
|
+
function w0(e) {
|
1455
1456
|
if (!e) return [];
|
1456
1457
|
let u = [];
|
1457
1458
|
return e.type === "ArrayExpression" ? u = e.elements.map((t) => t.value) : e.type === "ObjectExpression" && (u = e.properties.map((t) => {
|
1458
|
-
const { key: a, value: i } = t,
|
1459
|
+
const { key: a, value: i } = t, s = i.properties || [];
|
1459
1460
|
return {
|
1460
1461
|
name: a.name,
|
1461
|
-
required: R(
|
1462
|
-
type:
|
1463
|
-
default: mu(
|
1462
|
+
required: R(s, "required"),
|
1463
|
+
type: v0(s),
|
1464
|
+
default: mu(s)
|
1464
1465
|
};
|
1465
1466
|
})), u;
|
1466
1467
|
}
|
1467
|
-
function
|
1468
|
+
function A0(e) {
|
1468
1469
|
const u = [];
|
1469
1470
|
if (e.callee.type === "MemberExpression" && e.callee.property?.name === "$emit") {
|
1470
1471
|
const [a, ...i] = (e.arguments || []).map(
|
1471
|
-
(
|
1472
|
+
(s) => s.value || s.name
|
1472
1473
|
);
|
1473
1474
|
a && u.push({
|
1474
1475
|
name: a,
|
@@ -1477,22 +1478,22 @@ function w0(e) {
|
|
1477
1478
|
}
|
1478
1479
|
return u;
|
1479
1480
|
}
|
1480
|
-
function
|
1481
|
+
function T0(e) {
|
1481
1482
|
let u = [];
|
1482
1483
|
return e.type === "ObjectExpression" && (u = e.properties.map((t) => {
|
1483
|
-
const { key: a, value: i } = t,
|
1484
|
+
const { key: a, value: i } = t, s = i.properties, c = a.name, n = pu(s, "from"), d = mu(s);
|
1484
1485
|
return {
|
1485
|
-
name:
|
1486
|
-
from: n ||
|
1486
|
+
name: c,
|
1487
|
+
from: n || c,
|
1487
1488
|
default: d
|
1488
1489
|
};
|
1489
1490
|
})), u;
|
1490
1491
|
}
|
1491
|
-
function
|
1492
|
+
function I0(e, u) {
|
1492
1493
|
return (e.apis || []).find((t) => t.id === u);
|
1493
1494
|
}
|
1494
1495
|
let F = [], M = {}, xu = {}, gu = {}, P = "web", yu = [];
|
1495
|
-
function
|
1496
|
+
function N0(e, u, t = "", a) {
|
1496
1497
|
return F = [], M = {}, xu = a?.handlers || {}, gu = a?.styles || {}, P = a?.platform || "web", yu = a?.imports || [], {
|
1497
1498
|
nodes: (Ru({
|
1498
1499
|
id: e,
|
@@ -1505,7 +1506,7 @@ function I0(e, u, t = "", a) {
|
|
1505
1506
|
context: M
|
1506
1507
|
};
|
1507
1508
|
}
|
1508
|
-
function
|
1509
|
+
function q0(e) {
|
1509
1510
|
if (e.name === "slot") {
|
1510
1511
|
let u = "default";
|
1511
1512
|
const t = [];
|
@@ -1517,13 +1518,13 @@ function N0(e) {
|
|
1517
1518
|
});
|
1518
1519
|
}
|
1519
1520
|
}
|
1520
|
-
function
|
1521
|
+
function k0(e) {
|
1521
1522
|
const u = {};
|
1522
1523
|
for (const t of e) {
|
1523
1524
|
if (t.type === l.ATTRIBUTE)
|
1524
1525
|
if (t.name === "class") {
|
1525
|
-
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/,
|
1526
|
-
n && (u.style = n),
|
1526
|
+
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/, s = a.match(i)?.[0] || "", c = a.split(" ").filter((d) => d !== s), n = gu[`.${s}`];
|
1527
|
+
n && (u.style = n), c.length && (u.class = c.join(" "));
|
1527
1528
|
} else if (t.name === "style") {
|
1528
1529
|
const a = t.value?.content || "";
|
1529
1530
|
a && (u.style = lu(a));
|
@@ -1531,7 +1532,7 @@ function q0(e) {
|
|
1531
1532
|
u[t.name] = t.value?.content || "";
|
1532
1533
|
if (t.type === l.DIRECTIVE && t.name === "bind" && (t.exp?.type === l.SIMPLE_EXPRESSION && t.arg?.type === l.SIMPLE_EXPRESSION && (u[t.arg.content] = S(`(${t.exp.content})`)), t.exp?.type === l.COMPOUND_EXPRESSION && t.arg?.type === l.SIMPLE_EXPRESSION))
|
1533
1534
|
if (t.arg.content === "class" && u.class) {
|
1534
|
-
const a = t.exp.ast.type, i =
|
1535
|
+
const a = t.exp.ast.type, i = Wu(
|
1535
1536
|
u.class,
|
1536
1537
|
t.exp.loc.source,
|
1537
1538
|
a
|
@@ -1544,7 +1545,7 @@ function q0(e) {
|
|
1544
1545
|
}
|
1545
1546
|
return u;
|
1546
1547
|
}
|
1547
|
-
function
|
1548
|
+
function _0(e, u = {}) {
|
1548
1549
|
const t = {};
|
1549
1550
|
for (const a of e)
|
1550
1551
|
if (a.type === l.DIRECTIVE && a.name === "on" && a.arg?.type === l.SIMPLE_EXPRESSION) {
|
@@ -1552,9 +1553,9 @@ function k0(e, u = {}) {
|
|
1552
1553
|
(h, b) => (h[b.content] = !0, h),
|
1553
1554
|
{}
|
1554
1555
|
);
|
1555
|
-
let
|
1556
|
-
/\)$/.test(
|
1557
|
-
const n = new RegExp(`${a.arg.content}_[\\w]{5,}`), d =
|
1556
|
+
let s = a.exp?.loc.source || "";
|
1557
|
+
/\)$/.test(s) && (s = `($event) => { ${s} } `);
|
1558
|
+
const n = new RegExp(`${a.arg.content}_[\\w]{5,}`), d = s.match(n)?.[0] || "", f = u[d];
|
1558
1559
|
if (d && f)
|
1559
1560
|
t[a.arg.content] = {
|
1560
1561
|
name: a.arg.content,
|
@@ -1565,21 +1566,21 @@ function k0(e, u = {}) {
|
|
1565
1566
|
const h = a.exp?.ast?.type === "AssignmentExpression";
|
1566
1567
|
t[a.arg.content] = {
|
1567
1568
|
name: a.arg.content,
|
1568
|
-
handler: J(h ? `()=> {${
|
1569
|
+
handler: J(h ? `()=> {${s}}` : `(${s})`),
|
1569
1570
|
modifiers: i
|
1570
1571
|
};
|
1571
1572
|
}
|
1572
1573
|
}
|
1573
1574
|
return t;
|
1574
1575
|
}
|
1575
|
-
function
|
1576
|
+
function L0(e, u) {
|
1576
1577
|
const t = [];
|
1577
1578
|
if (u && e.type === l.IF_BRANCH && u.forEach((a, i) => {
|
1578
1579
|
if (e === a) {
|
1579
|
-
const
|
1580
|
+
const s = i === 0 ? "vIf" : a.condition ? "vElseIf" : "vElse", c = a.condition?.loc.source || "";
|
1580
1581
|
t.push({
|
1581
|
-
name:
|
1582
|
-
value:
|
1582
|
+
name: s,
|
1583
|
+
value: s === "vElse" ? !0 : S(c)
|
1583
1584
|
});
|
1584
1585
|
}
|
1585
1586
|
}), e.type === l.FOR && t.push({
|
@@ -1600,15 +1601,15 @@ function _0(e, u) {
|
|
1600
1601
|
value: S(d.exp?.loc.source || "")
|
1601
1602
|
});
|
1602
1603
|
});
|
1603
|
-
const
|
1604
|
-
|
1604
|
+
const s = a.find((d) => d.name === "show");
|
1605
|
+
s && t.push({
|
1605
1606
|
name: "vShow",
|
1606
|
-
value: S(
|
1607
|
+
value: S(s.exp?.loc.source || "")
|
1607
1608
|
});
|
1608
|
-
const
|
1609
|
-
|
1609
|
+
const c = a.find((d) => d.name === "bind" && !d.arg);
|
1610
|
+
c && t.push({
|
1610
1611
|
name: "vBind",
|
1611
|
-
value: S(
|
1612
|
+
value: S(c.exp?.loc.source || "")
|
1612
1613
|
});
|
1613
1614
|
const n = a.find((d) => d.name === "html");
|
1614
1615
|
n && t.push({
|
@@ -1620,18 +1621,18 @@ function _0(e, u) {
|
|
1620
1621
|
}
|
1621
1622
|
function Eu(e) {
|
1622
1623
|
let u = "";
|
1623
|
-
const { name: t, props: a, events: i = {} } = e,
|
1624
|
-
if (typeof
|
1625
|
-
const
|
1624
|
+
const { name: t, props: a, events: i = {} } = e, s = a?.class || "";
|
1625
|
+
if (typeof s == "string") {
|
1626
|
+
const c = new RegExp(`${t}_([\\w]+)`), n = s.match(c);
|
1626
1627
|
n && n[1] && (u = n[1]);
|
1627
1628
|
}
|
1628
|
-
for (const { name:
|
1629
|
-
const d = new RegExp(`${
|
1629
|
+
for (const { name: c, handler: n } of Object.values(i)) {
|
1630
|
+
const d = new RegExp(`${c}_([\\w]+)`), f = n.value.match(d);
|
1630
1631
|
f && f[1] && (u = f[1]);
|
1631
1632
|
}
|
1632
1633
|
return u || Pu();
|
1633
1634
|
}
|
1634
|
-
function
|
1635
|
+
function D0(e) {
|
1635
1636
|
const u = /\.\/(.+?)\.vue/;
|
1636
1637
|
for (const { from: t, imports: a } of yu) {
|
1637
1638
|
if (Array.isArray(a) && a.includes(e))
|
@@ -1647,15 +1648,15 @@ function L0(e) {
|
|
1647
1648
|
}
|
1648
1649
|
}
|
1649
1650
|
function H(e, u) {
|
1650
|
-
const t = new Set(u?.id ? M[u.id] : []), a = (e.directives || []).find((
|
1651
|
+
const t = new Set(u?.id ? M[u.id] : []), a = (e.directives || []).find((c) => c.name === "vFor");
|
1651
1652
|
let i = new Set(Array.from(t));
|
1652
1653
|
if (a) {
|
1653
|
-
const { item:
|
1654
|
-
i = /* @__PURE__ */ new Set([
|
1654
|
+
const { item: c = "item", index: n = "index" } = a.iterator || {};
|
1655
|
+
i = /* @__PURE__ */ new Set([c, n, ...Array.from(i)]);
|
1655
1656
|
}
|
1656
|
-
const
|
1657
|
-
if (
|
1658
|
-
const
|
1657
|
+
const s = e.slot;
|
1658
|
+
if (s) {
|
1659
|
+
const c = typeof s == "string" ? [] : s.params || [], n = c.length ? c : [`scope_${u?.id}`];
|
1659
1660
|
i = /* @__PURE__ */ new Set([...n, ...Array.from(i)]);
|
1660
1661
|
}
|
1661
1662
|
M[e.id] = i;
|
@@ -1663,23 +1664,23 @@ function H(e, u) {
|
|
1663
1664
|
function $(e, u, t, a) {
|
1664
1665
|
const i = {
|
1665
1666
|
name: bu(e.tag, P),
|
1666
|
-
from:
|
1667
|
-
props:
|
1668
|
-
events:
|
1669
|
-
directives:
|
1667
|
+
from: D0(e.tag),
|
1668
|
+
props: k0(e.props),
|
1669
|
+
events: _0(e.props, xu),
|
1670
|
+
directives: L0(t || e, a)
|
1670
1671
|
};
|
1671
1672
|
i.id = Eu(i), H(i, u);
|
1672
|
-
const
|
1673
|
-
return H(i, u),
|
1673
|
+
const s = O0(i, e.children);
|
1674
|
+
return H(i, u), q0(s), s;
|
1674
1675
|
}
|
1675
|
-
function
|
1676
|
+
function B0(e, u) {
|
1676
1677
|
return e.map((t) => _(t, u, e));
|
1677
1678
|
}
|
1678
1679
|
function _(e, u, t) {
|
1679
1680
|
if (e.type === l.ELEMENT)
|
1680
1681
|
return $(e, u);
|
1681
1682
|
if (!t && e.type === l.IF)
|
1682
|
-
return
|
1683
|
+
return B0(e.branches);
|
1683
1684
|
if (t && e.type === l.IF_BRANCH) {
|
1684
1685
|
const a = e.children.find((i) => i.type === l.ELEMENT);
|
1685
1686
|
if (a && a.type === l.ELEMENT)
|
@@ -1690,11 +1691,11 @@ function _(e, u, t) {
|
|
1690
1691
|
if (a.type === l.ELEMENT)
|
1691
1692
|
return $(a, u, e);
|
1692
1693
|
}
|
1693
|
-
return e.type === l.TEXT_CALL ? e.content.type == l.TEXT ? e.content.content : e.content.type === l.INTERPOLATION ? S(e.content.content.loc.source) : "" : e.type === l.TEXT ? e.content : e.type === l.INTERPOLATION && (e.content.type === l.SIMPLE_EXPRESSION || e.content.type === l.COMPOUND_EXPRESSION) ? S(e.content.loc.source) : e.type === l.COMPOUND_EXPRESSION ?
|
1694
|
+
return e.type === l.TEXT_CALL ? e.content.type == l.TEXT ? e.content.content : e.content.type === l.INTERPOLATION ? S(e.content.content.loc.source) : "" : e.type === l.TEXT ? e.content : e.type === l.INTERPOLATION && (e.content.type === l.SIMPLE_EXPRESSION || e.content.type === l.COMPOUND_EXPRESSION) ? S(e.content.loc.source) : e.type === l.COMPOUND_EXPRESSION ? R0(
|
1694
1695
|
e.children
|
1695
1696
|
) : (e.type === l.COMMENT || console.warn("未处理", e.type), null);
|
1696
1697
|
}
|
1697
|
-
function
|
1698
|
+
function R0(e = []) {
|
1698
1699
|
const u = e.filter((a) => typeof a != "string"), t = [];
|
1699
1700
|
for (const a of u)
|
1700
1701
|
t.push({
|
@@ -1706,24 +1707,24 @@ function B0(e = []) {
|
|
1706
1707
|
children: t
|
1707
1708
|
};
|
1708
1709
|
}
|
1709
|
-
function
|
1710
|
+
function O0(e, u = []) {
|
1710
1711
|
const t = [];
|
1711
1712
|
for (const a of u)
|
1712
1713
|
if (a.type === l.ELEMENT && a.codegenNode?.value?.arguments) {
|
1713
1714
|
const i = a.codegenNode.value.arguments[0];
|
1714
1715
|
if (i) {
|
1715
|
-
const
|
1716
|
-
t.push(...
|
1716
|
+
const s = ru(i, P);
|
1717
|
+
t.push(...s);
|
1717
1718
|
}
|
1718
1719
|
} else if (a.type === l.ELEMENT && a.tag === "template") {
|
1719
|
-
const i = a.props.find((
|
1720
|
-
for (const
|
1721
|
-
const
|
1720
|
+
const i = a.props.find((s) => s.name === "slot");
|
1721
|
+
for (const s of a.children) {
|
1722
|
+
const c = s.type === l.TEXT || s.type === l.TEXT_CALL ? {
|
1722
1723
|
name: "span",
|
1723
|
-
children: _(
|
1724
|
-
} : _(
|
1725
|
-
|
1726
|
-
|
1724
|
+
children: _(s, e)
|
1725
|
+
} : _(s, e);
|
1726
|
+
c && (Array.isArray(c) ? c : [c]).forEach((d) => {
|
1727
|
+
Fu(d) && i?.type === l.DIRECTIVE && (d.id = Eu(d), d.slot = {
|
1727
1728
|
name: i.arg?.content || "default",
|
1728
1729
|
params: i.exp?.identifiers || []
|
1729
1730
|
}, H(d, e)), t.push(d);
|
@@ -1732,8 +1733,8 @@ function R0(e, u = []) {
|
|
1732
1733
|
} else if (a.type === l.JS_CALL_EXPRESSION) {
|
1733
1734
|
const i = a.arguments?.[0];
|
1734
1735
|
if (i) {
|
1735
|
-
const
|
1736
|
-
t.push(...
|
1736
|
+
const s = ru(i, P);
|
1737
|
+
t.push(...s);
|
1737
1738
|
}
|
1738
1739
|
} else if (a.type === l.TEXT_CALL) {
|
1739
1740
|
const i = _(a, e);
|
@@ -1749,16 +1750,16 @@ function R0(e, u = []) {
|
|
1749
1750
|
e.children = t.map((a) => typeof a == "string" ? { name: "span", children: a } : a);
|
1750
1751
|
return e;
|
1751
1752
|
}
|
1752
|
-
function
|
1753
|
+
function V0(e) {
|
1753
1754
|
const u = [], t = {}, a = [];
|
1754
1755
|
try {
|
1755
|
-
const i = Uu.parse(
|
1756
|
-
for (const
|
1757
|
-
if (
|
1758
|
-
const
|
1759
|
-
c.test(
|
1760
|
-
|
1761
|
-
}), t[
|
1756
|
+
const i = $u.compileString(e)?.css || "", s = Uu.parse(i), c = /^.[\w]+_[\w]{5,}/;
|
1757
|
+
for (const n of s.nodes)
|
1758
|
+
if (n.type === "rule") {
|
1759
|
+
const d = {};
|
1760
|
+
c.test(n.selector) ? (n.nodes.forEach((f) => {
|
1761
|
+
f.type === "decl" && (d[f.prop] = f.value);
|
1762
|
+
}), t[n.selector] = d) : a.push(n.toString());
|
1762
1763
|
}
|
1763
1764
|
} catch (i) {
|
1764
1765
|
u.push(`css解析出错了,错误信息:[ ${i.message} ]
|
@@ -1771,15 +1772,15 @@ function O0(e) {
|
|
1771
1772
|
`)
|
1772
1773
|
};
|
1773
1774
|
}
|
1774
|
-
async function
|
1775
|
-
const { id: u, name: t, source: a, project: i } = e, { dependencies:
|
1775
|
+
async function K0(e) {
|
1776
|
+
const { id: u, name: t, source: a, project: i } = e, { dependencies: s = [], platform: c = "web" } = i || {}, n = zu(a);
|
1776
1777
|
if (n.length)
|
1777
1778
|
return Promise.reject(n);
|
1778
1779
|
const d = du(a), {
|
1779
1780
|
styles: f,
|
1780
1781
|
css: h,
|
1781
1782
|
errors: b
|
1782
|
-
} =
|
1783
|
+
} = V0(d.styles.join(`
|
1783
1784
|
`)), {
|
1784
1785
|
state: x,
|
1785
1786
|
watch: m,
|
@@ -1792,8 +1793,8 @@ async function Z0(e) {
|
|
1792
1793
|
handlers: Au,
|
1793
1794
|
imports: z,
|
1794
1795
|
dataSources: Tu
|
1795
|
-
} =
|
1796
|
-
platform:
|
1796
|
+
} = b0(d.script, i), { nodes: Iu, slots: Nu, context: qu } = N0(u, t, d.template, {
|
1797
|
+
platform: c,
|
1797
1798
|
handlers: Au,
|
1798
1799
|
styles: f,
|
1799
1800
|
imports: z
|
@@ -1829,17 +1830,17 @@ async function Z0(e) {
|
|
1829
1830
|
"$props",
|
1830
1831
|
"props",
|
1831
1832
|
...Object.keys(X || {})
|
1832
|
-
], { libs: Lu } =
|
1833
|
-
platform:
|
1833
|
+
], { libs: Lu } = U0(z, s), Q = {
|
1834
|
+
platform: c,
|
1834
1835
|
context: qu,
|
1835
1836
|
computed: ku,
|
1836
1837
|
libs: Lu,
|
1837
1838
|
members: _u
|
1838
1839
|
};
|
1839
|
-
return await
|
1840
|
+
return await M0(
|
1840
1841
|
W,
|
1841
1842
|
async (D) => {
|
1842
|
-
await
|
1843
|
+
await P0(D, async (B) => {
|
1843
1844
|
if (G(B)) {
|
1844
1845
|
const Du = await Y(B.value);
|
1845
1846
|
B.value = uu(Du, D.id, Q);
|
@@ -1852,7 +1853,7 @@ async function Z0(e) {
|
|
1852
1853
|
}
|
1853
1854
|
), n.push(...b), n.length ? Promise.reject(n) : new Vu(W).toDsl();
|
1854
1855
|
}
|
1855
|
-
async function
|
1856
|
+
async function M0(e, u, t) {
|
1856
1857
|
const a = async (m, v) => {
|
1857
1858
|
if (await u(m, v), Array.isArray(m.children))
|
1858
1859
|
for (const w of m.children)
|
@@ -1868,8 +1869,8 @@ async function V0(e, u, t) {
|
|
1868
1869
|
for (const w of v)
|
1869
1870
|
G(w) ? await t(w) : await i(w);
|
1870
1871
|
}, {
|
1871
|
-
state:
|
1872
|
-
watch:
|
1872
|
+
state: s,
|
1873
|
+
watch: c,
|
1873
1874
|
computed: n,
|
1874
1875
|
props: d,
|
1875
1876
|
dataSources: f,
|
@@ -1878,8 +1879,8 @@ async function V0(e, u, t) {
|
|
1878
1879
|
inject: x
|
1879
1880
|
} = e;
|
1880
1881
|
if (await i({
|
1881
|
-
state:
|
1882
|
-
watch:
|
1882
|
+
state: s,
|
1883
|
+
watch: c,
|
1883
1884
|
computed: n,
|
1884
1885
|
props: d,
|
1885
1886
|
dataSources: f,
|
@@ -1890,12 +1891,12 @@ async function V0(e, u, t) {
|
|
1890
1891
|
for (const m of e.nodes)
|
1891
1892
|
await a(m);
|
1892
1893
|
}
|
1893
|
-
async function
|
1894
|
+
async function P0(e, u) {
|
1894
1895
|
const t = async (a) => {
|
1895
1896
|
if (!a || typeof a != "object") return;
|
1896
1897
|
if (Array.isArray(a)) {
|
1897
|
-
for (let
|
1898
|
-
await u(
|
1898
|
+
for (let s of a)
|
1899
|
+
await u(s), await t(s);
|
1899
1900
|
return;
|
1900
1901
|
}
|
1901
1902
|
if (G(a)) {
|
@@ -1903,35 +1904,35 @@ async function M0(e, u) {
|
|
1903
1904
|
return;
|
1904
1905
|
}
|
1905
1906
|
const i = Object.values(a);
|
1906
|
-
for (const
|
1907
|
-
await u(
|
1907
|
+
for (const s of i)
|
1908
|
+
await u(s), await t(s);
|
1908
1909
|
};
|
1909
1910
|
await t(e);
|
1910
1911
|
}
|
1911
|
-
function
|
1912
|
+
function U0(e = [], u = []) {
|
1912
1913
|
const t = {}, a = u.reduce(
|
1913
|
-
(i,
|
1914
|
+
(i, s) => (i[s.package] = s.library, i),
|
1914
1915
|
{}
|
1915
1916
|
);
|
1916
|
-
for (const { from: i, imports:
|
1917
|
-
if (Array.isArray(
|
1918
|
-
|
1917
|
+
for (const { from: i, imports: s } of e)
|
1918
|
+
if (Array.isArray(s))
|
1919
|
+
s.forEach((c) => {
|
1919
1920
|
const n = a[i];
|
1920
|
-
n && (t[
|
1921
|
+
n && (t[c] = n);
|
1921
1922
|
});
|
1922
1923
|
else {
|
1923
|
-
const
|
1924
|
-
|
1924
|
+
const c = a[i];
|
1925
|
+
c && (t[s] = c);
|
1925
1926
|
}
|
1926
1927
|
return {
|
1927
1928
|
libs: t
|
1928
1929
|
};
|
1929
1930
|
}
|
1930
1931
|
export {
|
1931
|
-
|
1932
|
+
Q0 as VTJ_PARSER_VERSION,
|
1932
1933
|
ru as htmlToNodes,
|
1933
|
-
|
1934
|
-
|
1934
|
+
Z0 as parseUniApp,
|
1935
|
+
K0 as parseVue,
|
1935
1936
|
uu as patchCode,
|
1936
1937
|
O as replacer
|
1937
1938
|
};
|