@nine-lab/nine-util 0.6.0 β 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/nine-util.js
CHANGED
|
@@ -9,7 +9,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
9
9
|
var _name, _color, _enabled, _Trace_instances, autoConfig_fn, _timer, _queue, _delay, _TaskDebouncer_instances, flush_fn;
|
|
10
10
|
class Trace {
|
|
11
11
|
// π μ΄ μνκ°μ΄ κΈ°μ€μ΄ λ©λλ€.
|
|
12
|
-
constructor(name =
|
|
12
|
+
constructor(name = null, color = "green") {
|
|
13
13
|
__privateAdd(this, _Trace_instances);
|
|
14
14
|
__privateAdd(this, _name);
|
|
15
15
|
__privateAdd(this, _color);
|
|
@@ -26,15 +26,14 @@ class Trace {
|
|
|
26
26
|
log(...args) {
|
|
27
27
|
if (!__privateGet(this, _enabled)) return;
|
|
28
28
|
const style = `color: ${__privateGet(this, _color)}; font-weight: bold;`;
|
|
29
|
-
console.log(`%c[${__privateGet(this, _name)}]`, style, ...args);
|
|
29
|
+
__privateGet(this, _name) ? console.log(`%c[${__privateGet(this, _name)}]`, style, ...args) : console.log(...args);
|
|
30
30
|
}
|
|
31
31
|
warn(...args) {
|
|
32
32
|
if (!__privateGet(this, _enabled)) return;
|
|
33
|
-
console.warn(`%c[${__privateGet(this, _name)}]`, "color: cyan; font-weight: bold;", ...args);
|
|
33
|
+
__privateGet(this, _name) ? console.warn(`%c[${__privateGet(this, _name)}]`, "color: cyan; font-weight: bold;", ...args) : console.warn(...args);
|
|
34
34
|
}
|
|
35
35
|
error(...args) {
|
|
36
|
-
|
|
37
|
-
console.error(`%c[${__privateGet(this, _name)}]`, "color: red; font-weight: bold;", ...args);
|
|
36
|
+
__privateGet(this, _name) ? console.error(`%c[${__privateGet(this, _name)}]`, "color: red; font-weight: bold;", ...args) : console.error(...args);
|
|
38
37
|
}
|
|
39
38
|
enable() {
|
|
40
39
|
__privateSet(this, _enabled, true);
|
package/dist/nine-util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nine-util.js","sources":["../src/Trace.js","../src/TaskDebouncer.js"],"sourcesContent":["export class Trace {\r\n\t#name;\r\n\t#color;\r\n\t#enabled = true; // π μ΄ μνκ°μ΄ κΈ°μ€μ΄ λ©λλ€.\r\n\r\n\tconstructor(name =
|
|
1
|
+
{"version":3,"file":"nine-util.js","sources":["../src/Trace.js","../src/TaskDebouncer.js"],"sourcesContent":["export class Trace {\r\n\t#name;\r\n\t#color;\r\n\t#enabled = true; // π μ΄ μνκ°μ΄ κΈ°μ€μ΄ λ©λλ€.\r\n\r\n\tconstructor(name = null, color = \"green\") {\r\n\t\tthis.#name = name;\r\n\t\tthis.#color = color;\r\n\r\n\t\t// μΈμ€ν΄μ€κ° μμ±λ λ μλμΌλ‘ νκ²½μ 체ν¬ν΄μ λκ±°λ μΌλλ€.\r\n\t\tthis.#autoConfig();\r\n\t}\r\n\r\n\t#autoConfig() {\r\n\t\tif (typeof window === 'undefined') return;\r\n\r\n\t\tconst isLocal = window.location.hostname === 'localhost' ||\r\n\t\t\twindow.location.hostname === '127.0.0.1' ||\r\n\t\t\twindow.location.hostname.startsWith('192.168.'); // λ‘컬 IP μΆκ°\r\n\r\n\t\tif (isLocal) {\r\n\t\t\tthis.enable();\r\n\t\t\t// λ‘μ»¬μΌ λλ νμ λ©μμ§ (λ± ν λ²λ§ λμ€κ² νλ €λ©΄ ν΄λμ€ λ³μ νμ© κ°λ₯)\r\n\t\t} else {\r\n\t\t\tthis.disable();\r\n\t\t\t// μ΄μ νκ²½ μλ΄ λ©μμ§λ console.logλ‘ μ§μ μΆλ ₯\r\n\t\t\tconsole.log(\r\n\t\t\t\t`%c[${this.#name}]%c μ΄μ λͺ¨λ: λ‘κ·Έκ° λΉνμ±νλμμ΅λλ€. %ctrace.enable()%c λ‘ μΌ€ μ μμ΅λλ€.`,\r\n\t\t\t\t\"color: #4CAF50; font-weight: bold;\", \"\",\r\n\t\t\t\t\"background: #333; color: yellow; padding: 2px 5px;\", \"\"\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tinit(name, color = \"green\") {\r\n\t\tthis.#name = name;\r\n\t\tthis.#color = color;\r\n\t}\r\n\r\n\t// π΄ ν΅μ¬: ν¨μλ₯Ό κ°μλΌμ°μ§ μκ³ , νΈμΆλ λλ§λ€ μνλ₯Ό 체ν¬ν©λλ€.\r\n\tlog(...args) {\r\n\t\tif (!this.#enabled) return;\r\n\t\tconst style = `color: ${this.#color}; font-weight: bold;`;\r\n\t\t(this.#name) ? console.log(`%c[${this.#name}]`, style, ...args) : console.log(...args);\r\n\t}\r\n\r\n\twarn(...args) {\r\n\t\tif (!this.#enabled) return;\r\n\t\t(this.#name) ? console.warn(`%c[${this.#name}]`, \"color: cyan; font-weight: bold;\", ...args) : console.warn(...args);\r\n\t}\r\n\r\n\terror(...args) {\r\n\t\t//if (!this.#enabled) return;\r\n\t\t(this.#name) ? console.error(`%c[${this.#name}]`, \"color: red; font-weight: bold;\", ...args) : console.error(...args);\r\n\t}\r\n\r\n\tenable() { this.#enabled = true; }\r\n\tdisable() { this.#enabled = false; }\r\n}\r\n\r\nexport const trace = new Trace();\r\n\r\n// λΈλΌμ°μ μ½μμμ μ¦μ μ μ΄ν μ μλλ‘ windowμ μ°κ²°\r\nif (typeof window !== 'undefined') {\r\n\twindow.trace = trace;\r\n}","export class TaskDebouncer {\r\n\t#timer = null;\r\n\t#queue = [];\r\n\t#delay;\r\n\r\n\tconstructor(delay = 50) {\r\n\t\tthis.#delay = delay;\r\n\t}\r\n\r\n\t/**\r\n\t * @param {Function} func - μ€νν ν¨μ\r\n\t * @param {...any} args - ν¨μμ μ λ¬ν μμμ νλΌλ―Έν°λ€\r\n\t */\r\n\texec(func, ...args) {\r\n\t\t// 1. μ΄λ€ ν¨μμ μ΄λ€ μΈμλ€μ΄ λ€μ΄μλμ§ νμ μ μ₯\r\n\t\tthis.#queue.push({ func, args });\r\n\r\n\t\t// 2. λλ°μ΄μ€ νμ΄λ¨Έ μ€μ \r\n\t\tif (this.#timer) clearTimeout(this.#timer);\r\n\r\n\t\tthis.#timer = setTimeout(() => {\r\n\t\t\tthis.#flush();\r\n\t\t}, this.#delay);\r\n\t}\r\n\r\n\t#flush() {\r\n\t\tif (this.#queue.length === 0) return;\r\n\r\n\t\t// 3. νμ¬κΉμ§ μμΈ νλ₯Ό μ λΉΌμ΄\r\n\t\tconst tasks = this.#queue.splice(0, this.#queue.length);\r\n\t\tconst seen = new Set();\r\n\r\n\t\ttasks.forEach(task => {\r\n\t\t\t// 4. ν΅μ¬: ν¨μ μ΄λ¦κ³Ό μΈμλ€μ λ¬Έμμ΄λ‘ ν©μ³μ μ λν¬ ν€ μμ±\r\n\t\t\t// JSON.stringifyλ₯Ό ν΅ν΄ [1, {a:1}] κ°μ νλΌλ―Έν°λ λ¬Έμμ΄λ‘ λΉκ΅ κ°λ₯\r\n\t\t\tconst identifier = `${task.func.name}_${JSON.stringify(task.args)}`;\r\n\r\n\t\t\tif (!seen.has(identifier)) {\r\n\t\t\t\t// 5. μ€λ³΅μ΄ μλ λλ§ μλ μΈμλ€(...args) κ·Έλλ‘ μ€ν\r\n\t\t\t\ttask.func(...task.args);\r\n\t\t\t\tseen.add(identifier);\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tthis.#timer = null;\r\n\t}\r\n}"],"names":[],"mappings":";;;;;;;;AAAO;AAAA,MAAM,MAAM;AAAA;AAAA,EAKlB,YAAY,OAAO,MAAM,QAAQ,SAAS;AALpC;AACN;AACA;AACA,iCAAW;AAGV,uBAAK,OAAQ;AACb,uBAAK,QAAS;AAGd,0BAAK,iCAAL;AAAA,EACD;AAAA,EAuBA,KAAK,MAAM,QAAQ,SAAS;AAC3B,uBAAK,OAAQ;AACb,uBAAK,QAAS;AAAA,EACf;AAAA;AAAA,EAGA,OAAO,MAAM;AACZ,QAAI,CAAC,mBAAK,UAAU;AACpB,UAAM,QAAQ,UAAU,mBAAK,OAAM;AACnC,IAAC,mBAAK,SAAS,QAAQ,IAAI,MAAM,mBAAK,MAAK,KAAK,OAAO,GAAG,IAAI,IAAI,QAAQ,IAAI,GAAG,IAAI;AAAA,EACtF;AAAA,EAEA,QAAQ,MAAM;AACb,QAAI,CAAC,mBAAK,UAAU;AACpB,IAAC,mBAAK,SAAS,QAAQ,KAAK,MAAM,mBAAK,MAAK,KAAK,mCAAmC,GAAG,IAAI,IAAI,QAAQ,KAAK,GAAG,IAAI;AAAA,EACpH;AAAA,EAEA,SAAS,MAAM;AAEd,IAAC,mBAAK,SAAS,QAAQ,MAAM,MAAM,mBAAK,MAAK,KAAK,kCAAkC,GAAG,IAAI,IAAI,QAAQ,MAAM,GAAG,IAAI;AAAA,EACrH;AAAA,EAEA,SAAS;AAAE,uBAAK,UAAW;AAAA,EAAM;AAAA,EACjC,UAAU;AAAE,uBAAK,UAAW;AAAA,EAAO;AACpC;AAzDC;AACA;AACA;AAHM;AAaN,gBAAW,WAAG;AACb,MAAI,OAAO,WAAW,YAAa;AAEnC,QAAM,UAAU,OAAO,SAAS,aAAa,eAC5C,OAAO,SAAS,aAAa,eAC7B,OAAO,SAAS,SAAS,WAAW,UAAU;AAE/C,MAAI,SAAS;AACZ,SAAK,OAAM;AAAA,EAEZ,OAAO;AACN,SAAK,QAAO;AAEZ,YAAQ;AAAA,MACP,MAAM,mBAAK,MAAK;AAAA,MAChB;AAAA,MAAsC;AAAA,MACtC;AAAA,MAAsD;AAAA,IAC1D;AAAA,EACE;AACD;AA4BW,MAAC,QAAQ,IAAI,MAAK;AAG9B,IAAI,OAAO,WAAW,aAAa;AAClC,SAAO,QAAQ;AAChB;ACjEO,MAAM,cAAc;AAAA,EAK1B,YAAY,QAAQ,IAAI;AALlB;AACN,+BAAS;AACT,+BAAS,CAAA;AACT;AAGC,uBAAK,QAAS;AAAA,EACf;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,KAAK,SAAS,MAAM;AAEnB,uBAAK,QAAO,KAAK,EAAE,MAAM,KAAI,CAAE;AAG/B,QAAI,mBAAK,QAAQ,cAAa,mBAAK,OAAM;AAEzC,uBAAK,QAAS,WAAW,MAAM;AAC9B,4BAAK,oCAAL;AAAA,IACD,GAAG,mBAAK,OAAM;AAAA,EACf;AAuBD;AA7CC;AACA;AACA;AAHM;AAyBN,WAAM,WAAG;AACR,MAAI,mBAAK,QAAO,WAAW,EAAG;AAG9B,QAAM,QAAQ,mBAAK,QAAO,OAAO,GAAG,mBAAK,QAAO,MAAM;AACtD,QAAM,OAAO,oBAAI;AAEjB,QAAM,QAAQ,UAAQ;AAGrB,UAAM,aAAa,GAAG,KAAK,KAAK,IAAI,IAAI,KAAK,UAAU,KAAK,IAAI,CAAC;AAEjE,QAAI,CAAC,KAAK,IAAI,UAAU,GAAG;AAE1B,WAAK,KAAK,GAAG,KAAK,IAAI;AACtB,WAAK,IAAI,UAAU;AAAA,IACpB;AAAA,EACD,CAAC;AAED,qBAAK,QAAS;AACf;"}
|
package/dist/nine-util.umd.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).NineUtil={})}(this,function(e){"use strict";var t,
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).NineUtil={})}(this,function(e){"use strict";var t,o,n,i,s,a,l,r,c,h,d=e=>{throw TypeError(e)},f=(e,t,o)=>t.has(e)||d("Cannot "+o),w=(e,t,o)=>(f(e,t,"read from private field"),o?o.call(e):t.get(e)),u=(e,t,o)=>t.has(e)?d("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,o),p=(e,t,o,n)=>(f(e,t,"write to private field"),n?n.call(e,o):t.set(e,o),o),g=(e,t,o)=>(f(e,t,"access private method"),o);class b{constructor(e=null,a="green"){u(this,i),u(this,t),u(this,o),u(this,n,!0),p(this,t,e),p(this,o,a),g(this,i,s).call(this)}init(e,n="green"){p(this,t,e),p(this,o,n)}log(...e){if(!w(this,n))return;const i=`color: ${w(this,o)}; font-weight: bold;`;w(this,t)?console.log(`%c[${w(this,t)}]`,i,...e):console.log(...e)}warn(...e){w(this,n)&&(w(this,t)?console.warn(`%c[${w(this,t)}]`,"color: cyan; font-weight: bold;",...e):console.warn(...e))}error(...e){w(this,t)?console.error(`%c[${w(this,t)}]`,"color: red; font-weight: bold;",...e):console.error(...e)}enable(){p(this,n,!0)}disable(){p(this,n,!1)}}t=new WeakMap,o=new WeakMap,n=new WeakMap,i=new WeakSet,s=function(){if("undefined"==typeof window)return;"localhost"===window.location.hostname||"127.0.0.1"===window.location.hostname||window.location.hostname.startsWith("192.168.")?this.enable():(this.disable(),console.log(`%c[${w(this,t)}]%c μ΄μ λͺ¨λ: λ‘κ·Έκ° λΉνμ±νλμμ΅λλ€. %ctrace.enable()%c λ‘ μΌ€ μ μμ΅λλ€.`,"color: #4CAF50; font-weight: bold;","","background: #333; color: yellow; padding: 2px 5px;",""))};const m=new b;"undefined"!=typeof window&&(window.trace=m);a=new WeakMap,l=new WeakMap,r=new WeakMap,c=new WeakSet,h=function(){if(0===w(this,l).length)return;const e=w(this,l).splice(0,w(this,l).length),t=new Set;e.forEach(e=>{const o=`${e.func.name}_${JSON.stringify(e.args)}`;t.has(o)||(e.func(...e.args),t.add(o))}),p(this,a,null)},e.TaskDebouncer=class{constructor(e=50){u(this,c),u(this,a,null),u(this,l,[]),u(this,r),p(this,r,e)}exec(e,...t){w(this,l).push({func:e,args:t}),w(this,a)&&clearTimeout(w(this,a)),p(this,a,setTimeout(()=>{g(this,c,h).call(this)},w(this,r)))}},e.Trace=b,e.trace=m,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
|
2
2
|
//# sourceMappingURL=nine-util.umd.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nine-util.umd.cjs","sources":["../src/Trace.js","../src/TaskDebouncer.js"],"sourcesContent":["export class Trace {\r\n\t#name;\r\n\t#color;\r\n\t#enabled = true; // π μ΄ μνκ°μ΄ κΈ°μ€μ΄ λ©λλ€.\r\n\r\n\tconstructor(name =
|
|
1
|
+
{"version":3,"file":"nine-util.umd.cjs","sources":["../src/Trace.js","../src/TaskDebouncer.js"],"sourcesContent":["export class Trace {\r\n\t#name;\r\n\t#color;\r\n\t#enabled = true; // π μ΄ μνκ°μ΄ κΈ°μ€μ΄ λ©λλ€.\r\n\r\n\tconstructor(name = null, color = \"green\") {\r\n\t\tthis.#name = name;\r\n\t\tthis.#color = color;\r\n\r\n\t\t// μΈμ€ν΄μ€κ° μμ±λ λ μλμΌλ‘ νκ²½μ 체ν¬ν΄μ λκ±°λ μΌλλ€.\r\n\t\tthis.#autoConfig();\r\n\t}\r\n\r\n\t#autoConfig() {\r\n\t\tif (typeof window === 'undefined') return;\r\n\r\n\t\tconst isLocal = window.location.hostname === 'localhost' ||\r\n\t\t\twindow.location.hostname === '127.0.0.1' ||\r\n\t\t\twindow.location.hostname.startsWith('192.168.'); // λ‘컬 IP μΆκ°\r\n\r\n\t\tif (isLocal) {\r\n\t\t\tthis.enable();\r\n\t\t\t// λ‘μ»¬μΌ λλ νμ λ©μμ§ (λ± ν λ²λ§ λμ€κ² νλ €λ©΄ ν΄λμ€ λ³μ νμ© κ°λ₯)\r\n\t\t} else {\r\n\t\t\tthis.disable();\r\n\t\t\t// μ΄μ νκ²½ μλ΄ λ©μμ§λ console.logλ‘ μ§μ μΆλ ₯\r\n\t\t\tconsole.log(\r\n\t\t\t\t`%c[${this.#name}]%c μ΄μ λͺ¨λ: λ‘κ·Έκ° λΉνμ±νλμμ΅λλ€. %ctrace.enable()%c λ‘ μΌ€ μ μμ΅λλ€.`,\r\n\t\t\t\t\"color: #4CAF50; font-weight: bold;\", \"\",\r\n\t\t\t\t\"background: #333; color: yellow; padding: 2px 5px;\", \"\"\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tinit(name, color = \"green\") {\r\n\t\tthis.#name = name;\r\n\t\tthis.#color = color;\r\n\t}\r\n\r\n\t// π΄ ν΅μ¬: ν¨μλ₯Ό κ°μλΌμ°μ§ μκ³ , νΈμΆλ λλ§λ€ μνλ₯Ό 체ν¬ν©λλ€.\r\n\tlog(...args) {\r\n\t\tif (!this.#enabled) return;\r\n\t\tconst style = `color: ${this.#color}; font-weight: bold;`;\r\n\t\t(this.#name) ? console.log(`%c[${this.#name}]`, style, ...args) : console.log(...args);\r\n\t}\r\n\r\n\twarn(...args) {\r\n\t\tif (!this.#enabled) return;\r\n\t\t(this.#name) ? console.warn(`%c[${this.#name}]`, \"color: cyan; font-weight: bold;\", ...args) : console.warn(...args);\r\n\t}\r\n\r\n\terror(...args) {\r\n\t\t//if (!this.#enabled) return;\r\n\t\t(this.#name) ? console.error(`%c[${this.#name}]`, \"color: red; font-weight: bold;\", ...args) : console.error(...args);\r\n\t}\r\n\r\n\tenable() { this.#enabled = true; }\r\n\tdisable() { this.#enabled = false; }\r\n}\r\n\r\nexport const trace = new Trace();\r\n\r\n// λΈλΌμ°μ μ½μμμ μ¦μ μ μ΄ν μ μλλ‘ windowμ μ°κ²°\r\nif (typeof window !== 'undefined') {\r\n\twindow.trace = trace;\r\n}","export class TaskDebouncer {\r\n\t#timer = null;\r\n\t#queue = [];\r\n\t#delay;\r\n\r\n\tconstructor(delay = 50) {\r\n\t\tthis.#delay = delay;\r\n\t}\r\n\r\n\t/**\r\n\t * @param {Function} func - μ€νν ν¨μ\r\n\t * @param {...any} args - ν¨μμ μ λ¬ν μμμ νλΌλ―Έν°λ€\r\n\t */\r\n\texec(func, ...args) {\r\n\t\t// 1. μ΄λ€ ν¨μμ μ΄λ€ μΈμλ€μ΄ λ€μ΄μλμ§ νμ μ μ₯\r\n\t\tthis.#queue.push({ func, args });\r\n\r\n\t\t// 2. λλ°μ΄μ€ νμ΄λ¨Έ μ€μ \r\n\t\tif (this.#timer) clearTimeout(this.#timer);\r\n\r\n\t\tthis.#timer = setTimeout(() => {\r\n\t\t\tthis.#flush();\r\n\t\t}, this.#delay);\r\n\t}\r\n\r\n\t#flush() {\r\n\t\tif (this.#queue.length === 0) return;\r\n\r\n\t\t// 3. νμ¬κΉμ§ μμΈ νλ₯Ό μ λΉΌμ΄\r\n\t\tconst tasks = this.#queue.splice(0, this.#queue.length);\r\n\t\tconst seen = new Set();\r\n\r\n\t\ttasks.forEach(task => {\r\n\t\t\t// 4. ν΅μ¬: ν¨μ μ΄λ¦κ³Ό μΈμλ€μ λ¬Έμμ΄λ‘ ν©μ³μ μ λν¬ ν€ μμ±\r\n\t\t\t// JSON.stringifyλ₯Ό ν΅ν΄ [1, {a:1}] κ°μ νλΌλ―Έν°λ λ¬Έμμ΄λ‘ λΉκ΅ κ°λ₯\r\n\t\t\tconst identifier = `${task.func.name}_${JSON.stringify(task.args)}`;\r\n\r\n\t\t\tif (!seen.has(identifier)) {\r\n\t\t\t\t// 5. μ€λ³΅μ΄ μλ λλ§ μλ μΈμλ€(...args) κ·Έλλ‘ μ€ν\r\n\t\t\t\ttask.func(...task.args);\r\n\t\t\t\tseen.add(identifier);\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tthis.#timer = null;\r\n\t}\r\n}"],"names":["Trace","constructor","name","color","__privateAdd","this","_Trace_instances","_name","_color","_enabled","__privateSet","__privateMethod","autoConfig_fn","call","init","log","args","__privateGet","style","console","warn","error","enable","disable","WeakMap","WeakSet","window","location","hostname","startsWith","trace","_timer","_queue","_delay","_TaskDebouncer_instances","flush_fn","length","tasks","splice","seen","Set","forEach","task","identifier","func","JSON","stringify","has","add","delay","exec","push","clearTimeout","setTimeout"],"mappings":"onBAAO,MAAMA,EAKZ,WAAAC,CAAYC,EAAO,KAAMC,EAAQ,SAL3BC,EAAAC,KAAAC,GACNF,EAAAC,KAAAE,GACAH,EAAAC,KAAAG,GACAJ,EAAAC,KAAAI,GAAW,GAGVC,EAAAL,KAAKE,EAAQL,GACbQ,EAAAL,KAAKG,EAASL,GAGdQ,EAAAN,KAAKC,EAAAM,GAALC,KAAAR,KACD,CAuBA,IAAAS,CAAKZ,EAAMC,EAAQ,SAClBO,EAAAL,KAAKE,EAAQL,GACbQ,EAAAL,KAAKG,EAASL,EACf,CAGA,GAAAY,IAAOC,GACN,IAAKC,OAAKR,GAAU,OACpB,MAAMS,EAAQ,UAAUD,EAAAZ,KAAKG,yBAC5BS,EAAAZ,KAAKE,GAASY,QAAQJ,IAAI,MAAME,EAAAZ,KAAKE,MAAUW,KAAUF,GAAQG,QAAQJ,OAAOC,EAClF,CAEA,IAAAI,IAAQJ,GACFC,OAAKR,KACTQ,EAAAZ,KAAKE,GAASY,QAAQC,KAAK,MAAMH,EAAAZ,KAAKE,MAAU,qCAAsCS,GAAQG,QAAQC,QAAQJ,GAChH,CAEA,KAAAK,IAASL,GAEPC,EAAAZ,KAAKE,GAASY,QAAQE,MAAM,MAAMJ,EAAAZ,KAAKE,MAAU,oCAAqCS,GAAQG,QAAQE,SAASL,EACjH,CAEA,MAAAM,GAAWZ,EAAAL,KAAKI,GAAW,EAAM,CACjC,OAAAc,GAAYb,EAAAL,KAAKI,GAAW,EAAO,EAxDnCF,EAAA,IAAAiB,QACAhB,EAAA,IAAAgB,QACAf,EAAA,IAAAe,QAHMlB,EAAA,IAAAmB,QAaNb,EAAW,WACV,GAAsB,oBAAXc,OAAwB,OAEU,cAA7BA,OAAOC,SAASC,UACF,cAA7BF,OAAOC,SAASC,UAChBF,OAAOC,SAASC,SAASC,WAAW,YAGpCxB,KAAKiB,UAGLjB,KAAKkB,UAELJ,QAAQJ,IACP,MAAME,OAAKV,6DACX,qCAAsC,GACtC,qDAAsD,IAGzD,EA4BW,MAACuB,EAAQ,IAAI9B,EAGH,oBAAX0B,SACVA,OAAOI,MAAQA,GC/DfC,EAAA,IAAAP,QACAQ,EAAA,IAAAR,QACAS,EAAA,IAAAT,QAHMU,EAAA,IAAAT,QAyBNU,EAAM,WACL,GAA2B,IAAvBlB,EAAAZ,KAAK2B,GAAOI,OAAc,OAG9B,MAAMC,EAAQpB,EAAAZ,KAAK2B,GAAOM,OAAO,EAAGrB,EAAAZ,KAAK2B,GAAOI,QAC1CG,MAAWC,IAEjBH,EAAMI,QAAQC,IAGb,MAAMC,EAAa,GAAGD,EAAKE,KAAK1C,QAAQ2C,KAAKC,UAAUJ,EAAK1B,QAEvDuB,EAAKQ,IAAIJ,KAEbD,EAAKE,QAAQF,EAAK1B,MAClBuB,EAAKS,IAAIL,MAIXjC,EAAAL,KAAK0B,EAAS,KACf,kBA7CM,MAKN,WAAA9B,CAAYgD,EAAQ,IALd7C,EAAAC,KAAA6B,GACN9B,EAAAC,KAAA0B,EAAS,MACT3B,EAAAC,KAAA2B,EAAS,IACT5B,EAAAC,KAAA4B,GAGCvB,EAAAL,KAAK4B,EAASgB,EACf,CAMA,IAAAC,CAAKN,KAAS5B,GAEbC,EAAAZ,KAAK2B,GAAOmB,KAAK,CAAEP,OAAM5B,SAGrBC,EAAAZ,KAAK0B,IAAQqB,aAAanC,EAAAZ,KAAK0B,IAEnCrB,EAAAL,KAAK0B,EAASsB,WAAW,KACxB1C,EAAAN,KAAK6B,EAAAC,GAALtB,KAAAR,OACEY,OAAKgB,IACT"}
|