opencommit 1.0.15 → 1.0.17

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.
Files changed (2) hide show
  1. package/out/cli.cjs +670 -475
  2. package/package.json +1 -1
package/out/cli.cjs CHANGED
@@ -73,7 +73,7 @@ var require_ini = __commonJS({
73
73
  var dotSplit = (str) => str.replace(/\1/g, "LITERAL\\1LITERAL").replace(/\\\./g, "").split(/\./).map((part) => part.replace(/\1/g, "\\.").replace(/\2LITERAL\\1LITERAL\2/g, ""));
74
74
  var decode = (str) => {
75
75
  const out = /* @__PURE__ */ Object.create(null);
76
- let p3 = out;
76
+ let p4 = out;
77
77
  let section = null;
78
78
  const re = /^\[([^\]]*)\]$|^([^=]+)(=(.*))?$/i;
79
79
  const lines = str.split(/[\r\n]+/g);
@@ -88,10 +88,10 @@ var require_ini = __commonJS({
88
88
  if (match[1] !== void 0) {
89
89
  section = unsafe(match[1]);
90
90
  if (section === "__proto__") {
91
- p3 = /* @__PURE__ */ Object.create(null);
91
+ p4 = /* @__PURE__ */ Object.create(null);
92
92
  continue;
93
93
  }
94
- p3 = out[section] = out[section] || /* @__PURE__ */ Object.create(null);
94
+ p4 = out[section] = out[section] || /* @__PURE__ */ Object.create(null);
95
95
  continue;
96
96
  }
97
97
  const keyRaw = unsafe(match[2]);
@@ -103,16 +103,16 @@ var require_ini = __commonJS({
103
103
  const valueRaw = match[3] ? unsafe(match[4]) : true;
104
104
  const value = valueRaw === "true" || valueRaw === "false" || valueRaw === "null" ? JSON.parse(valueRaw) : valueRaw;
105
105
  if (isArray) {
106
- if (!hasOwnProperty.call(p3, key)) {
107
- p3[key] = [];
108
- } else if (!Array.isArray(p3[key])) {
109
- p3[key] = [p3[key]];
106
+ if (!hasOwnProperty.call(p4, key)) {
107
+ p4[key] = [];
108
+ } else if (!Array.isArray(p4[key])) {
109
+ p4[key] = [p4[key]];
110
110
  }
111
111
  }
112
- if (Array.isArray(p3[key])) {
113
- p3[key].push(value);
112
+ if (Array.isArray(p4[key])) {
113
+ p4[key].push(value);
114
114
  } else {
115
- p3[key] = value;
115
+ p4[key] = value;
116
116
  }
117
117
  }
118
118
  const remove = [];
@@ -121,22 +121,22 @@ var require_ini = __commonJS({
121
121
  continue;
122
122
  }
123
123
  const parts = dotSplit(k6);
124
- p3 = out;
125
- const l2 = parts.pop();
126
- const nl = l2.replace(/\\\./g, ".");
124
+ p4 = out;
125
+ const l = parts.pop();
126
+ const nl = l.replace(/\\\./g, ".");
127
127
  for (const part of parts) {
128
128
  if (part === "__proto__") {
129
129
  continue;
130
130
  }
131
- if (!hasOwnProperty.call(p3, part) || typeof p3[part] !== "object") {
132
- p3[part] = /* @__PURE__ */ Object.create(null);
131
+ if (!hasOwnProperty.call(p4, part) || typeof p4[part] !== "object") {
132
+ p4[part] = /* @__PURE__ */ Object.create(null);
133
133
  }
134
- p3 = p3[part];
134
+ p4 = p4[part];
135
135
  }
136
- if (p3 === out && nl === l2) {
136
+ if (p4 === out && nl === l) {
137
137
  continue;
138
138
  }
139
- p3[nl] = out[k6];
139
+ p4[nl] = out[k6];
140
140
  remove.push(k6);
141
141
  }
142
142
  for (const del of remove) {
@@ -166,7 +166,7 @@ var require_ini = __commonJS({
166
166
  } else {
167
167
  let esc = false;
168
168
  let unesc = "";
169
- for (let i2 = 0, l2 = val.length; i2 < l2; i2++) {
169
+ for (let i2 = 0, l = val.length; i2 < l; i2++) {
170
170
  const c3 = val.charAt(i2);
171
171
  if (esc) {
172
172
  if ("\\;#".indexOf(c3) !== -1) {
@@ -327,8 +327,8 @@ var require_windows = __commonJS({
327
327
  return true;
328
328
  }
329
329
  for (var i2 = 0; i2 < pathext.length; i2++) {
330
- var p3 = pathext[i2].toLowerCase();
331
- if (p3 && path4.substr(-p3.length).toLowerCase() === p3) {
330
+ var p4 = pathext[i2].toLowerCase();
331
+ if (p4 && path4.substr(-p4.length).toLowerCase() === p4) {
332
332
  return true;
333
333
  }
334
334
  }
@@ -374,11 +374,11 @@ var require_mode = __commonJS({
374
374
  var gid = stat.gid;
375
375
  var myUid = options.uid !== void 0 ? options.uid : process.getuid && process.getuid();
376
376
  var myGid = options.gid !== void 0 ? options.gid : process.getgid && process.getgid();
377
- var u3 = parseInt("100", 8);
377
+ var u2 = parseInt("100", 8);
378
378
  var g3 = parseInt("010", 8);
379
379
  var o2 = parseInt("001", 8);
380
- var ug = u3 | g3;
381
- var ret = mod & o2 || mod & g3 && gid === myGid || mod & u3 && uid === myUid || mod & ug && myUid === 0;
380
+ var ug = u2 | g3;
381
+ var ret = mod & o2 || mod & g3 && gid === myGid || mod & u2 && uid === myUid || mod & ug && myUid === 0;
382
382
  return ret;
383
383
  }
384
384
  }
@@ -480,21 +480,21 @@ var require_which = __commonJS({
480
480
  const ppRaw = pathEnv[i2];
481
481
  const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
482
482
  const pCmd = path4.join(pathPart, cmd);
483
- const p3 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
484
- resolve(subStep(p3, i2, 0));
483
+ const p4 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
484
+ resolve(subStep(p4, i2, 0));
485
485
  });
486
- const subStep = (p3, i2, ii) => new Promise((resolve, reject) => {
486
+ const subStep = (p4, i2, ii) => new Promise((resolve, reject) => {
487
487
  if (ii === pathExt.length)
488
488
  return resolve(step(i2 + 1));
489
489
  const ext = pathExt[ii];
490
- isexe(p3 + ext, { pathExt: pathExtExe }, (er, is) => {
490
+ isexe(p4 + ext, { pathExt: pathExtExe }, (er, is) => {
491
491
  if (!er && is) {
492
492
  if (opt.all)
493
- found.push(p3 + ext);
493
+ found.push(p4 + ext);
494
494
  else
495
- return resolve(p3 + ext);
495
+ return resolve(p4 + ext);
496
496
  }
497
- return resolve(subStep(p3, i2, ii + 1));
497
+ return resolve(subStep(p4, i2, ii + 1));
498
498
  });
499
499
  });
500
500
  return cb ? step(0).then((res) => cb(null, res), cb) : step(0);
@@ -507,9 +507,9 @@ var require_which = __commonJS({
507
507
  const ppRaw = pathEnv[i2];
508
508
  const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
509
509
  const pCmd = path4.join(pathPart, cmd);
510
- const p3 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
511
- for (let j2 = 0; j2 < pathExt.length; j2++) {
512
- const cur = p3 + pathExt[j2];
510
+ const p4 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
511
+ for (let j3 = 0; j3 < pathExt.length; j3++) {
512
+ const cur = p4 + pathExt[j3];
513
513
  try {
514
514
  const is = isexe.sync(cur, { pathExt: pathExtExe });
515
515
  if (is) {
@@ -1235,7 +1235,7 @@ var require_utils = __commonJS({
1235
1235
  obj = [obj];
1236
1236
  }
1237
1237
  if (isArray(obj)) {
1238
- for (var i2 = 0, l2 = obj.length; i2 < l2; i2++) {
1238
+ for (var i2 = 0, l = obj.length; i2 < l; i2++) {
1239
1239
  fn.call(null, obj[i2], i2, obj);
1240
1240
  }
1241
1241
  } else {
@@ -1259,20 +1259,20 @@ var require_utils = __commonJS({
1259
1259
  result[key] = val;
1260
1260
  }
1261
1261
  }
1262
- for (var i2 = 0, l2 = arguments.length; i2 < l2; i2++) {
1262
+ for (var i2 = 0, l = arguments.length; i2 < l; i2++) {
1263
1263
  forEach(arguments[i2], assignValue);
1264
1264
  }
1265
1265
  return result;
1266
1266
  }
1267
- function extend(a3, b4, thisArg) {
1268
- forEach(b4, function assignValue(val, key) {
1267
+ function extend(a2, b5, thisArg) {
1268
+ forEach(b5, function assignValue(val, key) {
1269
1269
  if (thisArg && typeof val === "function") {
1270
- a3[key] = bind(val, thisArg);
1270
+ a2[key] = bind(val, thisArg);
1271
1271
  } else {
1272
- a3[key] = val;
1272
+ a2[key] = val;
1273
1273
  }
1274
1274
  });
1275
- return a3;
1275
+ return a2;
1276
1276
  }
1277
1277
  function stripBOM(content) {
1278
1278
  if (content.charCodeAt(0) === 65279) {
@@ -1831,7 +1831,7 @@ var require_ms = __commonJS({
1831
1831
  var m4 = s * 60;
1832
1832
  var h4 = m4 * 60;
1833
1833
  var d6 = h4 * 24;
1834
- var w5 = d6 * 7;
1834
+ var w6 = d6 * 7;
1835
1835
  var y5 = d6 * 365.25;
1836
1836
  module2.exports = function(val, options) {
1837
1837
  options = options || {};
@@ -1868,7 +1868,7 @@ var require_ms = __commonJS({
1868
1868
  case "weeks":
1869
1869
  case "week":
1870
1870
  case "w":
1871
- return n * w5;
1871
+ return n * w6;
1872
1872
  case "days":
1873
1873
  case "day":
1874
1874
  case "d":
@@ -2240,15 +2240,15 @@ var require_browser = __commonJS({
2240
2240
  }
2241
2241
  }
2242
2242
  function load() {
2243
- let r;
2243
+ let r2;
2244
2244
  try {
2245
- r = exports.storage.getItem("debug");
2245
+ r2 = exports.storage.getItem("debug");
2246
2246
  } catch (error) {
2247
2247
  }
2248
- if (!r && typeof process !== "undefined" && "env" in process) {
2249
- r = process.env.DEBUG;
2248
+ if (!r2 && typeof process !== "undefined" && "env" in process) {
2249
+ r2 = process.env.DEBUG;
2250
2250
  }
2251
- return r;
2251
+ return r2;
2252
2252
  }
2253
2253
  function localstorage() {
2254
2254
  try {
@@ -2487,7 +2487,7 @@ var require_node = __commonJS({
2487
2487
  exports.inspectOpts = Object.keys(process.env).filter((key) => {
2488
2488
  return /^debug_/i.test(key);
2489
2489
  }).reduce((obj, key) => {
2490
- const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_5, k6) => {
2490
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_6, k6) => {
2491
2491
  return k6.toUpperCase();
2492
2492
  });
2493
2493
  let val = process.env[key];
@@ -2757,8 +2757,8 @@ var require_follow_redirects = __commonJS({
2757
2757
  "setNoDelay",
2758
2758
  "setSocketKeepAlive"
2759
2759
  ].forEach(function(method) {
2760
- RedirectableRequest.prototype[method] = function(a3, b4) {
2761
- return this._currentRequest[method](a3, b4);
2760
+ RedirectableRequest.prototype[method] = function(a2, b5) {
2761
+ return this._currentRequest[method](a2, b5);
2762
2762
  };
2763
2763
  });
2764
2764
  ["aborted", "connection", "socket"].forEach(function(property) {
@@ -3825,8 +3825,8 @@ var require_CancelToken = __commonJS({
3825
3825
  if (!token._listeners)
3826
3826
  return;
3827
3827
  var i2;
3828
- var l2 = token._listeners.length;
3829
- for (i2 = 0; i2 < l2; i2++) {
3828
+ var l = token._listeners.length;
3829
+ for (i2 = 0; i2 < l; i2++) {
3830
3830
  token._listeners[i2](cancel);
3831
3831
  }
3832
3832
  token._listeners = null;
@@ -5254,9 +5254,9 @@ var require_delayed_stream = __commonJS({
5254
5254
  this._bufferedEvents = [];
5255
5255
  };
5256
5256
  DelayedStream.prototype.pipe = function() {
5257
- var r = Stream.prototype.pipe.apply(this, arguments);
5257
+ var r2 = Stream.prototype.pipe.apply(this, arguments);
5258
5258
  this.resume();
5259
- return r;
5259
+ return r2;
5260
5260
  };
5261
5261
  DelayedStream.prototype._handleEmit = function(args) {
5262
5262
  if (this._released) {
@@ -14177,8 +14177,8 @@ var require_state = __commonJS({
14177
14177
  size: isNamedList ? Object.keys(list).length : list.length
14178
14178
  };
14179
14179
  if (sortMethod) {
14180
- initState.keyedList.sort(isNamedList ? sortMethod : function(a3, b4) {
14181
- return sortMethod(list[a3], list[b4]);
14180
+ initState.keyedList.sort(isNamedList ? sortMethod : function(a2, b5) {
14181
+ return sortMethod(list[a2], list[b5]);
14182
14182
  });
14183
14183
  }
14184
14184
  return initState;
@@ -14255,11 +14255,11 @@ var require_serialOrdered = __commonJS({
14255
14255
  });
14256
14256
  return terminator.bind(state, callback);
14257
14257
  }
14258
- function ascending(a3, b4) {
14259
- return a3 < b4 ? -1 : a3 > b4 ? 1 : 0;
14258
+ function ascending(a2, b5) {
14259
+ return a2 < b5 ? -1 : a2 > b5 ? 1 : 0;
14260
14260
  }
14261
- function descending(a3, b4) {
14262
- return -1 * ascending(a3, b4);
14261
+ function descending(a2, b5) {
14262
+ return -1 * ascending(a2, b5);
14263
14263
  }
14264
14264
  }
14265
14265
  });
@@ -14664,9 +14664,9 @@ var require_dist = __commonJS({
14664
14664
  o2[k22] = m4[k6];
14665
14665
  });
14666
14666
  var __exportStar = exports && exports.__exportStar || function(m4, exports2) {
14667
- for (var p3 in m4)
14668
- if (p3 !== "default" && !exports2.hasOwnProperty(p3))
14669
- __createBinding(exports2, m4, p3);
14667
+ for (var p4 in m4)
14668
+ if (p4 !== "default" && !exports2.hasOwnProperty(p4))
14669
+ __createBinding(exports2, m4, p4);
14670
14670
  };
14671
14671
  Object.defineProperty(exports, "__esModule", { value: true });
14672
14672
  __exportStar(require_api(), exports);
@@ -14694,12 +14694,12 @@ var B = (t) => {
14694
14694
  throw new Error(`${n} cannot be empty`);
14695
14695
  if (t.length === 1)
14696
14696
  throw new Error(`${n} must be longer than a character`);
14697
- const r = t.match(R);
14698
- if (r)
14699
- throw new Error(`${n} cannot contain ${h(r?.[0])}`);
14697
+ const r2 = t.match(R);
14698
+ if (r2)
14699
+ throw new Error(`${n} cannot contain ${h(r2?.[0])}`);
14700
14700
  };
14701
14701
  var K = (t) => {
14702
- const n = {}, r = (e2, o2) => {
14702
+ const n = {}, r2 = (e2, o2) => {
14703
14703
  if (w(n, e2))
14704
14704
  throw new Error(`Duplicate flags named ${h(e2)}`);
14705
14705
  n[e2] = o2;
@@ -14709,32 +14709,32 @@ var K = (t) => {
14709
14709
  continue;
14710
14710
  B(e2);
14711
14711
  const o2 = t[e2], s = [[], ...b(o2), o2];
14712
- r(e2, s);
14712
+ r2(e2, s);
14713
14713
  const i2 = v(e2);
14714
- if (e2 !== i2 && r(i2, s), "alias" in o2 && typeof o2.alias == "string") {
14715
- const { alias: a3 } = o2, l2 = `Flag alias ${h(a3)} for flag ${h(e2)}`;
14716
- if (a3.length === 0)
14717
- throw new Error(`${l2} cannot be empty`);
14718
- if (a3.length > 1)
14719
- throw new Error(`${l2} must be a single character`);
14720
- r(a3, s);
14714
+ if (e2 !== i2 && r2(i2, s), "alias" in o2 && typeof o2.alias == "string") {
14715
+ const { alias: a2 } = o2, l = `Flag alias ${h(a2)} for flag ${h(e2)}`;
14716
+ if (a2.length === 0)
14717
+ throw new Error(`${l} cannot be empty`);
14718
+ if (a2.length > 1)
14719
+ throw new Error(`${l} must be a single character`);
14720
+ r2(a2, s);
14721
14721
  }
14722
14722
  }
14723
14723
  return n;
14724
14724
  };
14725
14725
  var _ = (t, n) => {
14726
- const r = {};
14726
+ const r2 = {};
14727
14727
  for (const e2 in t) {
14728
14728
  if (!w(t, e2))
14729
14729
  continue;
14730
14730
  const [o2, , s, i2] = n[e2];
14731
14731
  if (o2.length === 0 && "default" in i2) {
14732
- let { default: a3 } = i2;
14733
- typeof a3 == "function" && (a3 = a3()), r[e2] = a3;
14732
+ let { default: a2 } = i2;
14733
+ typeof a2 == "function" && (a2 = a2()), r2[e2] = a2;
14734
14734
  } else
14735
- r[e2] = s ? o2 : o2.pop();
14735
+ r2[e2] = s ? o2 : o2.pop();
14736
14736
  }
14737
- return r;
14737
+ return r2;
14738
14738
  };
14739
14739
  var F = "--";
14740
14740
  var G = /[.:=]/;
@@ -14743,15 +14743,15 @@ var N = (t) => {
14743
14743
  if (!T.test(t))
14744
14744
  return;
14745
14745
  const n = !t.startsWith(F);
14746
- let r = t.slice(n ? 1 : 2), e2;
14747
- const o2 = r.match(G);
14746
+ let r2 = t.slice(n ? 1 : 2), e2;
14747
+ const o2 = r2.match(G);
14748
14748
  if (o2) {
14749
14749
  const { index: s } = o2;
14750
- e2 = r.slice(s + 1), r = r.slice(0, s);
14750
+ e2 = r2.slice(s + 1), r2 = r2.slice(0, s);
14751
14751
  }
14752
- return [r, e2, n];
14752
+ return [r2, e2, n];
14753
14753
  };
14754
- var $ = (t, { onFlag: n, onArgument: r }) => {
14754
+ var $ = (t, { onFlag: n, onArgument: r2 }) => {
14755
14755
  let e2;
14756
14756
  const o2 = (s, i2) => {
14757
14757
  if (typeof e2 != "function")
@@ -14762,56 +14762,56 @@ var $ = (t, { onFlag: n, onArgument: r }) => {
14762
14762
  const i2 = t[s];
14763
14763
  if (i2 === F) {
14764
14764
  o2();
14765
- const l2 = t.slice(s + 1);
14766
- r?.(l2, [s], true);
14765
+ const l = t.slice(s + 1);
14766
+ r2?.(l, [s], true);
14767
14767
  break;
14768
14768
  }
14769
- const a3 = N(i2);
14770
- if (a3) {
14769
+ const a2 = N(i2);
14770
+ if (a2) {
14771
14771
  if (o2(), !n)
14772
14772
  continue;
14773
- const [l2, f3, g3] = a3;
14773
+ const [l, f3, g3] = a2;
14774
14774
  if (g3)
14775
- for (let c3 = 0; c3 < l2.length; c3 += 1) {
14775
+ for (let c3 = 0; c3 < l.length; c3 += 1) {
14776
14776
  o2();
14777
- const u3 = c3 === l2.length - 1;
14778
- e2 = n(l2[c3], u3 ? f3 : void 0, [s, c3 + 1, u3]);
14777
+ const u2 = c3 === l.length - 1;
14778
+ e2 = n(l[c3], u2 ? f3 : void 0, [s, c3 + 1, u2]);
14779
14779
  }
14780
14780
  else
14781
- e2 = n(l2, f3, [s]);
14781
+ e2 = n(l, f3, [s]);
14782
14782
  } else
14783
- o2(i2, [s]) && r?.([i2], [s]);
14783
+ o2(i2, [s]) && r2?.([i2], [s]);
14784
14784
  }
14785
14785
  o2();
14786
14786
  };
14787
14787
  var E = (t, n) => {
14788
- for (const [r, e2, o2] of n.reverse()) {
14788
+ for (const [r2, e2, o2] of n.reverse()) {
14789
14789
  if (e2) {
14790
- const s = t[r];
14790
+ const s = t[r2];
14791
14791
  let i2 = s.slice(0, e2);
14792
14792
  if (o2 || (i2 += s.slice(e2 + 1)), i2 !== "-") {
14793
- t[r] = i2;
14793
+ t[r2] = i2;
14794
14794
  continue;
14795
14795
  }
14796
14796
  }
14797
- t.splice(r, 1);
14797
+ t.splice(r2, 1);
14798
14798
  }
14799
14799
  };
14800
- var U = (t, n = process.argv.slice(2), { ignore: r } = {}) => {
14800
+ var U = (t, n = process.argv.slice(2), { ignore: r2 } = {}) => {
14801
14801
  const e2 = [], o2 = K(t), s = {}, i2 = [];
14802
- return i2[F] = [], $(n, { onFlag(a3, l2, f3) {
14803
- const g3 = w(o2, a3);
14804
- if (!r?.(g3 ? V : k, a3, l2)) {
14802
+ return i2[F] = [], $(n, { onFlag(a2, l, f3) {
14803
+ const g3 = w(o2, a2);
14804
+ if (!r2?.(g3 ? V : k, a2, l)) {
14805
14805
  if (g3) {
14806
- const [c3, u3] = o2[a3], y5 = d(u3, l2), p3 = (P3, A3) => {
14807
- e2.push(f3), A3 && e2.push(A3), c3.push(m(u3, P3 || ""));
14806
+ const [c3, u2] = o2[a2], y5 = d(u2, l), p4 = (P3, A3) => {
14807
+ e2.push(f3), A3 && e2.push(A3), c3.push(m(u2, P3 || ""));
14808
14808
  };
14809
- return y5 === void 0 ? p3 : p3(y5);
14809
+ return y5 === void 0 ? p4 : p4(y5);
14810
14810
  }
14811
- w(s, a3) || (s[a3] = []), s[a3].push(l2 === void 0 ? true : l2), e2.push(f3);
14811
+ w(s, a2) || (s[a2] = []), s[a2].push(l === void 0 ? true : l), e2.push(f3);
14812
14812
  }
14813
- }, onArgument(a3, l2, f3) {
14814
- r?.(C, n[l2[0]]) || (i2.push(...a3), f3 ? (i2[F] = a3, n.splice(l2[0])) : e2.push(l2));
14813
+ }, onArgument(a2, l, f3) {
14814
+ r2?.(C, n[l[0]]) || (i2.push(...a2), f3 ? (i2[F] = a2, n.splice(l[0])) : e2.push(l));
14815
14815
  } }), E(n, e2), { flags: _(t, o2), unknownFlags: s, _: i2 };
14816
14816
  };
14817
14817
 
@@ -14829,32 +14829,32 @@ var I = Object.getOwnPropertySymbols;
14829
14829
  var ED = Object.getPrototypeOf;
14830
14830
  var L2 = Object.prototype.hasOwnProperty;
14831
14831
  var eD = Object.prototype.propertyIsEnumerable;
14832
- var W = (D4, F4, u3) => F4 in D4 ? m2(D4, F4, { enumerable: true, configurable: true, writable: true, value: u3 }) : D4[F4] = u3;
14832
+ var W = (D4, F4, u2) => F4 in D4 ? m2(D4, F4, { enumerable: true, configurable: true, writable: true, value: u2 }) : D4[F4] = u2;
14833
14833
  var p = (D4, F4) => {
14834
- for (var u3 in F4 || (F4 = {}))
14835
- L2.call(F4, u3) && W(D4, u3, F4[u3]);
14834
+ for (var u2 in F4 || (F4 = {}))
14835
+ L2.call(F4, u2) && W(D4, u2, F4[u2]);
14836
14836
  if (I)
14837
- for (var u3 of I(F4))
14838
- eD.call(F4, u3) && W(D4, u3, F4[u3]);
14837
+ for (var u2 of I(F4))
14838
+ eD.call(F4, u2) && W(D4, u2, F4[u2]);
14839
14839
  return D4;
14840
14840
  };
14841
14841
  var c = (D4, F4) => uD(D4, CD(F4));
14842
14842
  var nD = (D4) => m2(D4, "__esModule", { value: true });
14843
14843
  var rD = (D4, F4) => () => (D4 && (F4 = D4(D4 = 0)), F4);
14844
14844
  var iD = (D4, F4) => () => (F4 || D4((F4 = { exports: {} }).exports, F4), F4.exports);
14845
- var oD = (D4, F4, u3, C5) => {
14845
+ var oD = (D4, F4, u2, C4) => {
14846
14846
  if (F4 && typeof F4 == "object" || typeof F4 == "function")
14847
14847
  for (let t of tD(F4))
14848
- !L2.call(D4, t) && (u3 || t !== "default") && m2(D4, t, { get: () => F4[t], enumerable: !(C5 = FD(F4, t)) || C5.enumerable });
14848
+ !L2.call(D4, t) && (u2 || t !== "default") && m2(D4, t, { get: () => F4[t], enumerable: !(C4 = FD(F4, t)) || C4.enumerable });
14849
14849
  return D4;
14850
14850
  };
14851
14851
  var BD = (D4, F4) => oD(nD(m2(D4 != null ? DD(ED(D4)) : {}, "default", !F4 && D4 && D4.__esModule ? { get: () => D4.default, enumerable: true } : { value: D4, enumerable: true })), D4);
14852
14852
  var i = rD(() => {
14853
14853
  });
14854
- var $2 = iD((LD, N4) => {
14854
+ var $2 = iD((LD, N5) => {
14855
14855
  "use strict";
14856
14856
  i();
14857
- N4.exports = function() {
14857
+ N5.exports = function() {
14858
14858
  return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
14859
14859
  };
14860
14860
  });
@@ -14862,9 +14862,9 @@ i();
14862
14862
  i();
14863
14863
  i();
14864
14864
  var v2 = (D4) => {
14865
- var u3, C5, t;
14866
- let F4 = (u3 = process.stdout.columns) != null ? u3 : Number.POSITIVE_INFINITY;
14867
- return typeof D4 == "function" && (D4 = D4(F4)), D4 || (D4 = {}), Array.isArray(D4) ? { columns: D4, stdoutColumns: F4 } : { columns: (C5 = D4.columns) != null ? C5 : [], stdoutColumns: (t = D4.stdoutColumns) != null ? t : F4 };
14865
+ var u2, C4, t;
14866
+ let F4 = (u2 = process.stdout.columns) != null ? u2 : Number.POSITIVE_INFINITY;
14867
+ return typeof D4 == "function" && (D4 = D4(F4)), D4 || (D4 = {}), Array.isArray(D4) ? { columns: D4, stdoutColumns: F4 } : { columns: (C4 = D4.columns) != null ? C4 : [], stdoutColumns: (t = D4.stdoutColumns) != null ? t : F4 };
14868
14868
  };
14869
14869
  i();
14870
14870
  i();
@@ -14890,9 +14890,9 @@ function g(D4) {
14890
14890
  return 0;
14891
14891
  D4 = D4.replace((0, j.default)(), " ");
14892
14892
  let F4 = 0;
14893
- for (let u3 = 0; u3 < D4.length; u3++) {
14894
- let C5 = D4.codePointAt(u3);
14895
- C5 <= 31 || C5 >= 127 && C5 <= 159 || C5 >= 768 && C5 <= 879 || (C5 > 65535 && u3++, F4 += y(C5) ? 2 : 1);
14893
+ for (let u2 = 0; u2 < D4.length; u2++) {
14894
+ let C4 = D4.codePointAt(u2);
14895
+ C4 <= 31 || C4 >= 127 && C4 <= 159 || C4 >= 768 && C4 <= 879 || (C4 > 65535 && u2++, F4 += y(C4) ? 2 : 1);
14896
14896
  }
14897
14897
  return F4;
14898
14898
  }
@@ -14900,12 +14900,12 @@ var b2 = (D4) => Math.max(...D4.split(`
14900
14900
  `).map(g));
14901
14901
  var k2 = (D4) => {
14902
14902
  let F4 = [];
14903
- for (let u3 of D4) {
14904
- let { length: C5 } = u3, t = C5 - F4.length;
14903
+ for (let u2 of D4) {
14904
+ let { length: C4 } = u2, t = C4 - F4.length;
14905
14905
  for (let E3 = 0; E3 < t; E3 += 1)
14906
14906
  F4.push(0);
14907
- for (let E3 = 0; E3 < C5; E3 += 1) {
14908
- let e2 = b2(u3[E3]);
14907
+ for (let E3 = 0; E3 < C4; E3 += 1) {
14908
+ let e2 = b2(u2[E3]);
14909
14909
  e2 > F4[E3] && (F4[E3] = e2);
14910
14910
  }
14911
14911
  }
@@ -14915,71 +14915,71 @@ i();
14915
14915
  var _2 = /^\d+%$/;
14916
14916
  var z = { width: "auto", align: "left", contentWidth: 0, paddingLeft: 0, paddingRight: 0, paddingTop: 0, paddingBottom: 0, horizontalPadding: 0, paddingLeftString: "", paddingRightString: "" };
14917
14917
  var sD = (D4, F4) => {
14918
- var C5;
14919
- let u3 = [];
14918
+ var C4;
14919
+ let u2 = [];
14920
14920
  for (let t = 0; t < D4.length; t += 1) {
14921
- let E3 = (C5 = F4[t]) != null ? C5 : "auto";
14921
+ let E3 = (C4 = F4[t]) != null ? C4 : "auto";
14922
14922
  if (typeof E3 == "number" || E3 === "auto" || E3 === "content-width" || typeof E3 == "string" && _2.test(E3)) {
14923
- u3.push(c(p({}, z), { width: E3, contentWidth: D4[t] }));
14923
+ u2.push(c(p({}, z), { width: E3, contentWidth: D4[t] }));
14924
14924
  continue;
14925
14925
  }
14926
14926
  if (E3 && typeof E3 == "object") {
14927
14927
  let e2 = c(p(p({}, z), E3), { contentWidth: D4[t] });
14928
- e2.horizontalPadding = e2.paddingLeft + e2.paddingRight, u3.push(e2);
14928
+ e2.horizontalPadding = e2.paddingLeft + e2.paddingRight, u2.push(e2);
14929
14929
  continue;
14930
14930
  }
14931
14931
  throw new Error(`Invalid column width: ${JSON.stringify(E3)}`);
14932
14932
  }
14933
- return u3;
14933
+ return u2;
14934
14934
  };
14935
14935
  function aD(D4, F4) {
14936
- for (let u3 of D4) {
14937
- let { width: C5 } = u3;
14938
- if (C5 === "content-width" && (u3.width = u3.contentWidth), C5 === "auto") {
14939
- let n = Math.min(20, u3.contentWidth);
14940
- u3.width = n, u3.autoOverflow = u3.contentWidth - n;
14936
+ for (let u2 of D4) {
14937
+ let { width: C4 } = u2;
14938
+ if (C4 === "content-width" && (u2.width = u2.contentWidth), C4 === "auto") {
14939
+ let n = Math.min(20, u2.contentWidth);
14940
+ u2.width = n, u2.autoOverflow = u2.contentWidth - n;
14941
14941
  }
14942
- if (typeof C5 == "string" && _2.test(C5)) {
14943
- let n = Number.parseFloat(C5.slice(0, -1)) / 100;
14944
- u3.width = Math.floor(F4 * n) - (u3.paddingLeft + u3.paddingRight);
14942
+ if (typeof C4 == "string" && _2.test(C4)) {
14943
+ let n = Number.parseFloat(C4.slice(0, -1)) / 100;
14944
+ u2.width = Math.floor(F4 * n) - (u2.paddingLeft + u2.paddingRight);
14945
14945
  }
14946
- let { horizontalPadding: t } = u3, E3 = 1, e2 = E3 + t;
14946
+ let { horizontalPadding: t } = u2, E3 = 1, e2 = E3 + t;
14947
14947
  if (e2 >= F4) {
14948
- let n = e2 - F4, o2 = Math.ceil(u3.paddingLeft / t * n), B2 = n - o2;
14949
- u3.paddingLeft -= o2, u3.paddingRight -= B2, u3.horizontalPadding = u3.paddingLeft + u3.paddingRight;
14948
+ let n = e2 - F4, o2 = Math.ceil(u2.paddingLeft / t * n), B2 = n - o2;
14949
+ u2.paddingLeft -= o2, u2.paddingRight -= B2, u2.horizontalPadding = u2.paddingLeft + u2.paddingRight;
14950
14950
  }
14951
- u3.paddingLeftString = u3.paddingLeft ? " ".repeat(u3.paddingLeft) : "", u3.paddingRightString = u3.paddingRight ? " ".repeat(u3.paddingRight) : "";
14952
- let r = F4 - u3.horizontalPadding;
14953
- u3.width = Math.max(Math.min(u3.width, r), E3);
14951
+ u2.paddingLeftString = u2.paddingLeft ? " ".repeat(u2.paddingLeft) : "", u2.paddingRightString = u2.paddingRight ? " ".repeat(u2.paddingRight) : "";
14952
+ let r2 = F4 - u2.horizontalPadding;
14953
+ u2.width = Math.max(Math.min(u2.width, r2), E3);
14954
14954
  }
14955
14955
  }
14956
14956
  var G2 = () => Object.assign([], { columns: 0 });
14957
14957
  function lD(D4, F4) {
14958
- let u3 = [G2()], [C5] = u3;
14958
+ let u2 = [G2()], [C4] = u2;
14959
14959
  for (let t of D4) {
14960
14960
  let E3 = t.width + t.horizontalPadding;
14961
- C5.columns + E3 > F4 && (C5 = G2(), u3.push(C5)), C5.push(t), C5.columns += E3;
14961
+ C4.columns + E3 > F4 && (C4 = G2(), u2.push(C4)), C4.push(t), C4.columns += E3;
14962
14962
  }
14963
- for (let t of u3) {
14964
- let E3 = t.reduce((s, l2) => s + l2.width + l2.horizontalPadding, 0), e2 = F4 - E3;
14963
+ for (let t of u2) {
14964
+ let E3 = t.reduce((s, l) => s + l.width + l.horizontalPadding, 0), e2 = F4 - E3;
14965
14965
  if (e2 === 0)
14966
14966
  continue;
14967
- let r = t.filter((s) => "autoOverflow" in s), n = r.filter((s) => s.autoOverflow > 0), o2 = n.reduce((s, l2) => s + l2.autoOverflow, 0), B2 = Math.min(o2, e2);
14967
+ let r2 = t.filter((s) => "autoOverflow" in s), n = r2.filter((s) => s.autoOverflow > 0), o2 = n.reduce((s, l) => s + l.autoOverflow, 0), B2 = Math.min(o2, e2);
14968
14968
  for (let s of n) {
14969
- let l2 = Math.floor(s.autoOverflow / o2 * B2);
14970
- s.width += l2, e2 -= l2;
14969
+ let l = Math.floor(s.autoOverflow / o2 * B2);
14970
+ s.width += l, e2 -= l;
14971
14971
  }
14972
- let a3 = Math.floor(e2 / r.length);
14973
- for (let s = 0; s < r.length; s += 1) {
14974
- let l2 = r[s];
14975
- s === r.length - 1 ? l2.width += e2 : l2.width += a3, e2 -= a3;
14972
+ let a2 = Math.floor(e2 / r2.length);
14973
+ for (let s = 0; s < r2.length; s += 1) {
14974
+ let l = r2[s];
14975
+ s === r2.length - 1 ? l.width += e2 : l.width += a2, e2 -= a2;
14976
14976
  }
14977
14977
  }
14978
- return u3;
14978
+ return u2;
14979
14979
  }
14980
- function Z(D4, F4, u3) {
14981
- let C5 = sD(u3, F4);
14982
- return aD(C5, D4), lD(C5, D4);
14980
+ function Z(D4, F4, u2) {
14981
+ let C4 = sD(u2, F4);
14982
+ return aD(C4, D4), lD(C4, D4);
14983
14983
  }
14984
14984
  i();
14985
14985
  i();
@@ -14987,42 +14987,42 @@ i();
14987
14987
  var O2 = 10;
14988
14988
  var U2 = (D4 = 0) => (F4) => `\x1B[${F4 + D4}m`;
14989
14989
  var V2 = (D4 = 0) => (F4) => `\x1B[${38 + D4};5;${F4}m`;
14990
- var Y = (D4 = 0) => (F4, u3, C5) => `\x1B[${38 + D4};2;${F4};${u3};${C5}m`;
14990
+ var Y = (D4 = 0) => (F4, u2, C4) => `\x1B[${38 + D4};2;${F4};${u2};${C4}m`;
14991
14991
  function AD() {
14992
14992
  let D4 = /* @__PURE__ */ new Map(), F4 = { modifier: { reset: [0, 0], bold: [1, 22], dim: [2, 22], italic: [3, 23], underline: [4, 24], overline: [53, 55], inverse: [7, 27], hidden: [8, 28], strikethrough: [9, 29] }, color: { black: [30, 39], red: [31, 39], green: [32, 39], yellow: [33, 39], blue: [34, 39], magenta: [35, 39], cyan: [36, 39], white: [37, 39], blackBright: [90, 39], redBright: [91, 39], greenBright: [92, 39], yellowBright: [93, 39], blueBright: [94, 39], magentaBright: [95, 39], cyanBright: [96, 39], whiteBright: [97, 39] }, bgColor: { bgBlack: [40, 49], bgRed: [41, 49], bgGreen: [42, 49], bgYellow: [43, 49], bgBlue: [44, 49], bgMagenta: [45, 49], bgCyan: [46, 49], bgWhite: [47, 49], bgBlackBright: [100, 49], bgRedBright: [101, 49], bgGreenBright: [102, 49], bgYellowBright: [103, 49], bgBlueBright: [104, 49], bgMagentaBright: [105, 49], bgCyanBright: [106, 49], bgWhiteBright: [107, 49] } };
14993
14993
  F4.color.gray = F4.color.blackBright, F4.bgColor.bgGray = F4.bgColor.bgBlackBright, F4.color.grey = F4.color.blackBright, F4.bgColor.bgGrey = F4.bgColor.bgBlackBright;
14994
- for (let [u3, C5] of Object.entries(F4)) {
14995
- for (let [t, E3] of Object.entries(C5))
14996
- F4[t] = { open: `\x1B[${E3[0]}m`, close: `\x1B[${E3[1]}m` }, C5[t] = F4[t], D4.set(E3[0], E3[1]);
14997
- Object.defineProperty(F4, u3, { value: C5, enumerable: false });
14994
+ for (let [u2, C4] of Object.entries(F4)) {
14995
+ for (let [t, E3] of Object.entries(C4))
14996
+ F4[t] = { open: `\x1B[${E3[0]}m`, close: `\x1B[${E3[1]}m` }, C4[t] = F4[t], D4.set(E3[0], E3[1]);
14997
+ Object.defineProperty(F4, u2, { value: C4, enumerable: false });
14998
14998
  }
14999
- return Object.defineProperty(F4, "codes", { value: D4, enumerable: false }), F4.color.close = "\x1B[39m", F4.bgColor.close = "\x1B[49m", F4.color.ansi = U2(), F4.color.ansi256 = V2(), F4.color.ansi16m = Y(), F4.bgColor.ansi = U2(O2), F4.bgColor.ansi256 = V2(O2), F4.bgColor.ansi16m = Y(O2), Object.defineProperties(F4, { rgbToAnsi256: { value: (u3, C5, t) => u3 === C5 && C5 === t ? u3 < 8 ? 16 : u3 > 248 ? 231 : Math.round((u3 - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(u3 / 255 * 5) + 6 * Math.round(C5 / 255 * 5) + Math.round(t / 255 * 5), enumerable: false }, hexToRgb: { value: (u3) => {
15000
- let C5 = /(?<colorString>[a-f\d]{6}|[a-f\d]{3})/i.exec(u3.toString(16));
15001
- if (!C5)
14999
+ return Object.defineProperty(F4, "codes", { value: D4, enumerable: false }), F4.color.close = "\x1B[39m", F4.bgColor.close = "\x1B[49m", F4.color.ansi = U2(), F4.color.ansi256 = V2(), F4.color.ansi16m = Y(), F4.bgColor.ansi = U2(O2), F4.bgColor.ansi256 = V2(O2), F4.bgColor.ansi16m = Y(O2), Object.defineProperties(F4, { rgbToAnsi256: { value: (u2, C4, t) => u2 === C4 && C4 === t ? u2 < 8 ? 16 : u2 > 248 ? 231 : Math.round((u2 - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(u2 / 255 * 5) + 6 * Math.round(C4 / 255 * 5) + Math.round(t / 255 * 5), enumerable: false }, hexToRgb: { value: (u2) => {
15000
+ let C4 = /(?<colorString>[a-f\d]{6}|[a-f\d]{3})/i.exec(u2.toString(16));
15001
+ if (!C4)
15002
15002
  return [0, 0, 0];
15003
- let { colorString: t } = C5.groups;
15003
+ let { colorString: t } = C4.groups;
15004
15004
  t.length === 3 && (t = t.split("").map((e2) => e2 + e2).join(""));
15005
15005
  let E3 = Number.parseInt(t, 16);
15006
15006
  return [E3 >> 16 & 255, E3 >> 8 & 255, E3 & 255];
15007
- }, enumerable: false }, hexToAnsi256: { value: (u3) => F4.rgbToAnsi256(...F4.hexToRgb(u3)), enumerable: false }, ansi256ToAnsi: { value: (u3) => {
15008
- if (u3 < 8)
15009
- return 30 + u3;
15010
- if (u3 < 16)
15011
- return 90 + (u3 - 8);
15012
- let C5, t, E3;
15013
- if (u3 >= 232)
15014
- C5 = ((u3 - 232) * 10 + 8) / 255, t = C5, E3 = C5;
15007
+ }, enumerable: false }, hexToAnsi256: { value: (u2) => F4.rgbToAnsi256(...F4.hexToRgb(u2)), enumerable: false }, ansi256ToAnsi: { value: (u2) => {
15008
+ if (u2 < 8)
15009
+ return 30 + u2;
15010
+ if (u2 < 16)
15011
+ return 90 + (u2 - 8);
15012
+ let C4, t, E3;
15013
+ if (u2 >= 232)
15014
+ C4 = ((u2 - 232) * 10 + 8) / 255, t = C4, E3 = C4;
15015
15015
  else {
15016
- u3 -= 16;
15017
- let n = u3 % 36;
15018
- C5 = Math.floor(u3 / 36) / 5, t = Math.floor(n / 6) / 5, E3 = n % 6 / 5;
15016
+ u2 -= 16;
15017
+ let n = u2 % 36;
15018
+ C4 = Math.floor(u2 / 36) / 5, t = Math.floor(n / 6) / 5, E3 = n % 6 / 5;
15019
15019
  }
15020
- let e2 = Math.max(C5, t, E3) * 2;
15020
+ let e2 = Math.max(C4, t, E3) * 2;
15021
15021
  if (e2 === 0)
15022
15022
  return 30;
15023
- let r = 30 + (Math.round(E3) << 2 | Math.round(t) << 1 | Math.round(C5));
15024
- return e2 === 2 && (r += 60), r;
15025
- }, enumerable: false }, rgbToAnsi: { value: (u3, C5, t) => F4.ansi256ToAnsi(F4.rgbToAnsi256(u3, C5, t)), enumerable: false }, hexToAnsi: { value: (u3) => F4.ansi256ToAnsi(F4.hexToAnsi256(u3)), enumerable: false } }), F4;
15023
+ let r2 = 30 + (Math.round(E3) << 2 | Math.round(t) << 1 | Math.round(C4));
15024
+ return e2 === 2 && (r2 += 60), r2;
15025
+ }, enumerable: false }, rgbToAnsi: { value: (u2, C4, t) => F4.ansi256ToAnsi(F4.rgbToAnsi256(u2, C4, t)), enumerable: false }, hexToAnsi: { value: (u2) => F4.ansi256ToAnsi(F4.hexToAnsi256(u2)), enumerable: false } }), F4;
15026
15026
  }
15027
15027
  var fD = AD();
15028
15028
  var K2 = fD;
@@ -15036,115 +15036,115 @@ var M = `${pD}8;;`;
15036
15036
  var J = (D4) => `${x.values().next().value}${q}${D4}${H}`;
15037
15037
  var Q = (D4) => `${x.values().next().value}${M}${D4}${R2}`;
15038
15038
  var hD = (D4) => D4.split(" ").map((F4) => g(F4));
15039
- var S = (D4, F4, u3) => {
15040
- let C5 = [...F4], t = false, E3 = false, e2 = g(d2(D4[D4.length - 1]));
15041
- for (let [r, n] of C5.entries()) {
15039
+ var S = (D4, F4, u2) => {
15040
+ let C4 = [...F4], t = false, E3 = false, e2 = g(d2(D4[D4.length - 1]));
15041
+ for (let [r2, n] of C4.entries()) {
15042
15042
  let o2 = g(n);
15043
- if (e2 + o2 <= u3 ? D4[D4.length - 1] += n : (D4.push(n), e2 = 0), x.has(n) && (t = true, E3 = C5.slice(r + 1).join("").startsWith(M)), t) {
15043
+ if (e2 + o2 <= u2 ? D4[D4.length - 1] += n : (D4.push(n), e2 = 0), x.has(n) && (t = true, E3 = C4.slice(r2 + 1).join("").startsWith(M)), t) {
15044
15044
  E3 ? n === R2 && (t = false, E3 = false) : n === H && (t = false);
15045
15045
  continue;
15046
15046
  }
15047
- e2 += o2, e2 === u3 && r < C5.length - 1 && (D4.push(""), e2 = 0);
15047
+ e2 += o2, e2 === u2 && r2 < C4.length - 1 && (D4.push(""), e2 = 0);
15048
15048
  }
15049
15049
  !e2 && D4[D4.length - 1].length > 0 && D4.length > 1 && (D4[D4.length - 2] += D4.pop());
15050
15050
  };
15051
15051
  var cD = (D4) => {
15052
- let F4 = D4.split(" "), u3 = F4.length;
15053
- for (; u3 > 0 && !(g(F4[u3 - 1]) > 0); )
15054
- u3--;
15055
- return u3 === F4.length ? D4 : F4.slice(0, u3).join(" ") + F4.slice(u3).join("");
15052
+ let F4 = D4.split(" "), u2 = F4.length;
15053
+ for (; u2 > 0 && !(g(F4[u2 - 1]) > 0); )
15054
+ u2--;
15055
+ return u2 === F4.length ? D4 : F4.slice(0, u2).join(" ") + F4.slice(u2).join("");
15056
15056
  };
15057
- var dD = (D4, F4, u3 = {}) => {
15058
- if (u3.trim !== false && D4.trim() === "")
15057
+ var dD = (D4, F4, u2 = {}) => {
15058
+ if (u2.trim !== false && D4.trim() === "")
15059
15059
  return "";
15060
- let C5 = "", t, E3, e2 = hD(D4), r = [""];
15060
+ let C4 = "", t, E3, e2 = hD(D4), r2 = [""];
15061
15061
  for (let [o2, B2] of D4.split(" ").entries()) {
15062
- u3.trim !== false && (r[r.length - 1] = r[r.length - 1].trimStart());
15063
- let a3 = g(r[r.length - 1]);
15064
- if (o2 !== 0 && (a3 >= F4 && (u3.wordWrap === false || u3.trim === false) && (r.push(""), a3 = 0), (a3 > 0 || u3.trim === false) && (r[r.length - 1] += " ", a3++)), u3.hard && e2[o2] > F4) {
15065
- let s = F4 - a3, l2 = 1 + Math.floor((e2[o2] - s - 1) / F4);
15066
- Math.floor((e2[o2] - 1) / F4) < l2 && r.push(""), S(r, B2, F4);
15062
+ u2.trim !== false && (r2[r2.length - 1] = r2[r2.length - 1].trimStart());
15063
+ let a2 = g(r2[r2.length - 1]);
15064
+ if (o2 !== 0 && (a2 >= F4 && (u2.wordWrap === false || u2.trim === false) && (r2.push(""), a2 = 0), (a2 > 0 || u2.trim === false) && (r2[r2.length - 1] += " ", a2++)), u2.hard && e2[o2] > F4) {
15065
+ let s = F4 - a2, l = 1 + Math.floor((e2[o2] - s - 1) / F4);
15066
+ Math.floor((e2[o2] - 1) / F4) < l && r2.push(""), S(r2, B2, F4);
15067
15067
  continue;
15068
15068
  }
15069
- if (a3 + e2[o2] > F4 && a3 > 0 && e2[o2] > 0) {
15070
- if (u3.wordWrap === false && a3 < F4) {
15071
- S(r, B2, F4);
15069
+ if (a2 + e2[o2] > F4 && a2 > 0 && e2[o2] > 0) {
15070
+ if (u2.wordWrap === false && a2 < F4) {
15071
+ S(r2, B2, F4);
15072
15072
  continue;
15073
15073
  }
15074
- r.push("");
15074
+ r2.push("");
15075
15075
  }
15076
- if (a3 + e2[o2] > F4 && u3.wordWrap === false) {
15077
- S(r, B2, F4);
15076
+ if (a2 + e2[o2] > F4 && u2.wordWrap === false) {
15077
+ S(r2, B2, F4);
15078
15078
  continue;
15079
15079
  }
15080
- r[r.length - 1] += B2;
15080
+ r2[r2.length - 1] += B2;
15081
15081
  }
15082
- u3.trim !== false && (r = r.map((o2) => cD(o2)));
15083
- let n = [...r.join(`
15082
+ u2.trim !== false && (r2 = r2.map((o2) => cD(o2)));
15083
+ let n = [...r2.join(`
15084
15084
  `)];
15085
15085
  for (let [o2, B2] of n.entries()) {
15086
- if (C5 += B2, x.has(B2)) {
15086
+ if (C4 += B2, x.has(B2)) {
15087
15087
  let { groups: s } = new RegExp(`(?:\\${q}(?<code>\\d+)m|\\${M}(?<uri>.*)${R2})`).exec(n.slice(o2).join("")) || { groups: {} };
15088
15088
  if (s.code !== void 0) {
15089
- let l2 = Number.parseFloat(s.code);
15090
- t = l2 === gD ? void 0 : l2;
15089
+ let l = Number.parseFloat(s.code);
15090
+ t = l === gD ? void 0 : l;
15091
15091
  } else
15092
15092
  s.uri !== void 0 && (E3 = s.uri.length === 0 ? void 0 : s.uri);
15093
15093
  }
15094
- let a3 = K2.codes.get(Number(t));
15094
+ let a2 = K2.codes.get(Number(t));
15095
15095
  n[o2 + 1] === `
15096
- ` ? (E3 && (C5 += Q("")), t && a3 && (C5 += J(a3))) : B2 === `
15097
- ` && (t && a3 && (C5 += J(t)), E3 && (C5 += Q(E3)));
15096
+ ` ? (E3 && (C4 += Q("")), t && a2 && (C4 += J(a2))) : B2 === `
15097
+ ` && (t && a2 && (C4 += J(t)), E3 && (C4 += Q(E3)));
15098
15098
  }
15099
- return C5;
15099
+ return C4;
15100
15100
  };
15101
- function T2(D4, F4, u3) {
15101
+ function T2(D4, F4, u2) {
15102
15102
  return String(D4).normalize().replace(/\r\n/g, `
15103
15103
  `).split(`
15104
- `).map((C5) => dD(C5, F4, u3)).join(`
15104
+ `).map((C4) => dD(C4, F4, u2)).join(`
15105
15105
  `);
15106
15106
  }
15107
15107
  var X = (D4) => Array.from({ length: D4 }).fill("");
15108
15108
  function P(D4, F4) {
15109
- let u3 = [], C5 = 0;
15109
+ let u2 = [], C4 = 0;
15110
15110
  for (let t of D4) {
15111
15111
  let E3 = 0, e2 = t.map((n) => {
15112
- var a3;
15113
- let o2 = (a3 = F4[C5]) != null ? a3 : "";
15114
- C5 += 1, n.preprocess && (o2 = n.preprocess(o2)), b2(o2) > n.width && (o2 = T2(o2, n.width, { hard: true }));
15112
+ var a2;
15113
+ let o2 = (a2 = F4[C4]) != null ? a2 : "";
15114
+ C4 += 1, n.preprocess && (o2 = n.preprocess(o2)), b2(o2) > n.width && (o2 = T2(o2, n.width, { hard: true }));
15115
15115
  let B2 = o2.split(`
15116
15116
  `);
15117
15117
  if (n.postprocess) {
15118
15118
  let { postprocess: s } = n;
15119
- B2 = B2.map((l2, h4) => s.call(n, l2, h4));
15119
+ B2 = B2.map((l, h4) => s.call(n, l, h4));
15120
15120
  }
15121
15121
  return n.paddingTop && B2.unshift(...X(n.paddingTop)), n.paddingBottom && B2.push(...X(n.paddingBottom)), B2.length > E3 && (E3 = B2.length), c(p({}, n), { lines: B2 });
15122
- }), r = [];
15122
+ }), r2 = [];
15123
15123
  for (let n = 0; n < E3; n += 1) {
15124
15124
  let o2 = e2.map((B2) => {
15125
15125
  var h4;
15126
- let a3 = (h4 = B2.lines[n]) != null ? h4 : "", s = Number.isFinite(B2.width) ? " ".repeat(B2.width - g(a3)) : "", l2 = B2.paddingLeftString;
15127
- return B2.align === "right" && (l2 += s), l2 += a3, B2.align === "left" && (l2 += s), l2 + B2.paddingRightString;
15126
+ let a2 = (h4 = B2.lines[n]) != null ? h4 : "", s = Number.isFinite(B2.width) ? " ".repeat(B2.width - g(a2)) : "", l = B2.paddingLeftString;
15127
+ return B2.align === "right" && (l += s), l += a2, B2.align === "left" && (l += s), l + B2.paddingRightString;
15128
15128
  }).join("");
15129
- r.push(o2);
15129
+ r2.push(o2);
15130
15130
  }
15131
- u3.push(r.join(`
15131
+ u2.push(r2.join(`
15132
15132
  `));
15133
15133
  }
15134
- return u3.join(`
15134
+ return u2.join(`
15135
15135
  `);
15136
15136
  }
15137
15137
  function mD(D4, F4) {
15138
15138
  if (!D4 || D4.length === 0)
15139
15139
  return "";
15140
- let u3 = k2(D4), C5 = u3.length;
15141
- if (C5 === 0)
15140
+ let u2 = k2(D4), C4 = u2.length;
15141
+ if (C4 === 0)
15142
15142
  return "";
15143
15143
  let { stdoutColumns: t, columns: E3 } = v2(F4);
15144
- if (E3.length > C5)
15145
- throw new Error(`${E3.length} columns defined, but only ${C5} columns found`);
15146
- let e2 = Z(t, E3, u3);
15147
- return D4.map((r) => P(e2, r)).join(`
15144
+ if (E3.length > C4)
15145
+ throw new Error(`${E3.length} columns defined, but only ${C4} columns found`);
15146
+ let e2 = Z(t, E3, u2);
15147
+ return D4.map((r2) => P(e2, r2)).join(`
15148
15148
  `);
15149
15149
  }
15150
15150
  i();
@@ -15154,31 +15154,31 @@ function xD(D4) {
15154
15154
  throw new TypeError(`Invalid breakpoint operator: ${D4}`);
15155
15155
  }
15156
15156
  function wD(D4) {
15157
- let F4 = Object.keys(D4).map((u3) => {
15158
- let [C5, t] = u3.split(" ");
15159
- xD(C5);
15157
+ let F4 = Object.keys(D4).map((u2) => {
15158
+ let [C4, t] = u2.split(" ");
15159
+ xD(C4);
15160
15160
  let E3 = Number.parseInt(t, 10);
15161
15161
  if (Number.isNaN(E3))
15162
15162
  throw new TypeError(`Invalid breakpoint value: ${t}`);
15163
- let e2 = D4[u3];
15164
- return { operator: C5, breakpoint: E3, value: e2 };
15165
- }).sort((u3, C5) => C5.breakpoint - u3.breakpoint);
15166
- return (u3) => {
15167
- var C5;
15168
- return (C5 = F4.find(({ operator: t, breakpoint: E3 }) => t === "=" && u3 === E3 || t === ">" && u3 > E3 || t === "<" && u3 < E3 || t === ">=" && u3 >= E3 || t === "<=" && u3 <= E3)) == null ? void 0 : C5.value;
15163
+ let e2 = D4[u2];
15164
+ return { operator: C4, breakpoint: E3, value: e2 };
15165
+ }).sort((u2, C4) => C4.breakpoint - u2.breakpoint);
15166
+ return (u2) => {
15167
+ var C4;
15168
+ return (C4 = F4.find(({ operator: t, breakpoint: E3 }) => t === "=" && u2 === E3 || t === ">" && u2 > E3 || t === "<" && u2 < E3 || t === ">=" && u2 >= E3 || t === "<=" && u2 <= E3)) == null ? void 0 : C4.value;
15169
15169
  };
15170
15170
  }
15171
15171
 
15172
15172
  // node_modules/cleye/dist/index.mjs
15173
- var S2 = (t) => t.replace(/[\W_]([a-z\d])?/gi, (e2, r) => r ? r.toUpperCase() : "");
15173
+ var S2 = (t) => t.replace(/[\W_]([a-z\d])?/gi, (e2, r2) => r2 ? r2.toUpperCase() : "");
15174
15174
  var q2 = (t) => t.replace(/\B([A-Z])/g, "-$1").toLowerCase();
15175
15175
  var I2 = { "> 80": [{ width: "content-width", paddingLeft: 2, paddingRight: 8 }, { width: "auto" }], "> 40": [{ width: "auto", paddingLeft: 2, paddingRight: 8, preprocess: (t) => t.trim() }, { width: "100%", paddingLeft: 2, paddingBottom: 1 }], "> 0": { stdoutColumns: 1e3, columns: [{ width: "content-width", paddingLeft: 2, paddingRight: 8 }, { width: "content-width" }] } };
15176
15176
  function D2(t) {
15177
15177
  let e2 = false;
15178
- return { type: "table", data: { tableData: Object.keys(t).sort((a3, i2) => a3.localeCompare(i2)).map((a3) => {
15179
- const i2 = t[a3], s = "alias" in i2;
15180
- return s && (e2 = true), { name: a3, flag: i2, flagFormatted: `--${q2(a3)}`, aliasesEnabled: e2, aliasFormatted: s ? `-${i2.alias}` : void 0 };
15181
- }).map((a3) => (a3.aliasesEnabled = e2, [{ type: "flagName", data: a3 }, { type: "flagDescription", data: a3 }])), tableBreakpoints: I2 } };
15178
+ return { type: "table", data: { tableData: Object.keys(t).sort((a2, i2) => a2.localeCompare(i2)).map((a2) => {
15179
+ const i2 = t[a2], s = "alias" in i2;
15180
+ return s && (e2 = true), { name: a2, flag: i2, flagFormatted: `--${q2(a2)}`, aliasesEnabled: e2, aliasFormatted: s ? `-${i2.alias}` : void 0 };
15181
+ }).map((a2) => (a2.aliasesEnabled = e2, [{ type: "flagName", data: a2 }, { type: "flagDescription", data: a2 }])), tableBreakpoints: I2 } };
15182
15182
  }
15183
15183
  var A = (t) => !t || (t.version ?? (t.help ? t.help.version : void 0));
15184
15184
  var C2 = (t) => {
@@ -15188,8 +15188,8 @@ var C2 = (t) => {
15188
15188
  function R3(t) {
15189
15189
  const e2 = [];
15190
15190
  t.name && e2.push(C2(t));
15191
- const r = A(t) ?? ("parent" in t && A(t.parent));
15192
- if (r && e2.push(`v${r}`), e2.length !== 0)
15191
+ const r2 = A(t) ?? ("parent" in t && A(t.parent));
15192
+ if (r2 && e2.push(`v${r2}`), e2.length !== 0)
15193
15193
  return { id: "name", type: "text", data: `${e2.join(" ")}
15194
15194
  ` };
15195
15195
  }
@@ -15205,13 +15205,13 @@ function T3(t) {
15205
15205
  return e2.usage ? { id: "usage", type: "section", data: { title: "Usage:", body: Array.isArray(e2.usage) ? e2.usage.join(`
15206
15206
  `) : e2.usage } } : void 0;
15207
15207
  if (t.name) {
15208
- const r = [], n = [C2(t)];
15208
+ const r2 = [], n = [C2(t)];
15209
15209
  if (t.flags && Object.keys(t.flags).length > 0 && n.push("[flags...]"), t.parameters && t.parameters.length > 0) {
15210
- const { parameters: a3 } = t, i2 = a3.indexOf("--"), s = i2 > -1 && a3.slice(i2 + 1).some((o2) => o2.startsWith("<"));
15211
- n.push(a3.map((o2) => o2 !== "--" ? o2 : s ? "--" : "[--]").join(" "));
15210
+ const { parameters: a2 } = t, i2 = a2.indexOf("--"), s = i2 > -1 && a2.slice(i2 + 1).some((o2) => o2.startsWith("<"));
15211
+ n.push(a2.map((o2) => o2 !== "--" ? o2 : s ? "--" : "[--]").join(" "));
15212
15212
  }
15213
- if (n.length > 1 && r.push(n.join(" ")), "commands" in t && t.commands?.length && r.push(`${t.name} <command>`), r.length > 0)
15214
- return { id: "usage", type: "section", data: { title: "Usage:", body: r.join(`
15213
+ if (n.length > 1 && r2.push(n.join(" ")), "commands" in t && t.commands?.length && r2.push(`${t.name} <command>`), r2.length > 0)
15214
+ return { id: "usage", type: "section", data: { title: "Usage:", body: r2.join(`
15215
15215
  `) } };
15216
15216
  }
15217
15217
  }
@@ -15226,10 +15226,10 @@ function F2(t) {
15226
15226
  const { help: e2 } = t;
15227
15227
  if (!e2 || !e2.examples || e2.examples.length === 0)
15228
15228
  return;
15229
- let { examples: r } = e2;
15230
- if (Array.isArray(r) && (r = r.join(`
15231
- `)), r)
15232
- return { id: "examples", type: "section", data: { title: "Examples:", body: r } };
15229
+ let { examples: r2 } = e2;
15230
+ if (Array.isArray(r2) && (r2 = r2.join(`
15231
+ `)), r2)
15232
+ return { id: "examples", type: "section", data: { title: "Examples:", body: r2 } };
15233
15233
  }
15234
15234
  function H2(t) {
15235
15235
  if (!("alias" in t) || !t.alias)
@@ -15246,19 +15246,19 @@ var M2 = class {
15246
15246
  bold(e2) {
15247
15247
  return J2 ? `\x1B[1m${e2}\x1B[22m` : e2.toLocaleUpperCase();
15248
15248
  }
15249
- indentText({ text: e2, spaces: r }) {
15250
- return e2.replace(/^/gm, " ".repeat(r));
15249
+ indentText({ text: e2, spaces: r2 }) {
15250
+ return e2.replace(/^/gm, " ".repeat(r2));
15251
15251
  }
15252
15252
  heading(e2) {
15253
15253
  return this.bold(e2);
15254
15254
  }
15255
- section({ title: e2, body: r, indentBody: n = 2 }) {
15255
+ section({ title: e2, body: r2, indentBody: n = 2 }) {
15256
15256
  return `${(e2 ? `${this.heading(e2)}
15257
- ` : "") + (r ? this.indentText({ text: this.render(r), spaces: n }) : "")}
15257
+ ` : "") + (r2 ? this.indentText({ text: this.render(r2), spaces: n }) : "")}
15258
15258
  `;
15259
15259
  }
15260
- table({ tableData: e2, tableOptions: r, tableBreakpoints: n }) {
15261
- return mD(e2.map((a3) => a3.map((i2) => this.render(i2))), n ? wD(n) : r);
15260
+ table({ tableData: e2, tableOptions: r2, tableBreakpoints: n }) {
15261
+ return mD(e2.map((a2) => a2.map((i2) => this.render(i2))), n ? wD(n) : r2);
15262
15262
  }
15263
15263
  flagParameter(e2) {
15264
15264
  return e2 === Boolean ? "" : e2 === String ? "<string>" : e2 === Number ? "<number>" : Array.isArray(e2) ? this.flagParameter(e2[0]) : "<value>";
@@ -15267,12 +15267,12 @@ var M2 = class {
15267
15267
  return " ";
15268
15268
  }
15269
15269
  flagName(e2) {
15270
- const { flag: r, flagFormatted: n, aliasesEnabled: a3, aliasFormatted: i2 } = e2;
15270
+ const { flag: r2, flagFormatted: n, aliasesEnabled: a2, aliasFormatted: i2 } = e2;
15271
15271
  let s = "";
15272
- if (i2 ? s += `${i2}, ` : a3 && (s += " "), s += n, "placeholder" in r && typeof r.placeholder == "string")
15273
- s += `${this.flagOperator(e2)}${r.placeholder}`;
15272
+ if (i2 ? s += `${i2}, ` : a2 && (s += " "), s += n, "placeholder" in r2 && typeof r2.placeholder == "string")
15273
+ s += `${this.flagOperator(e2)}${r2.placeholder}`;
15274
15274
  else {
15275
- const o2 = this.flagParameter("type" in r ? r.type : r);
15275
+ const o2 = this.flagParameter("type" in r2 ? r2.type : r2);
15276
15276
  o2 && (s += `${this.flagOperator(e2)}${o2}`);
15277
15277
  }
15278
15278
  return s;
@@ -15281,23 +15281,23 @@ var M2 = class {
15281
15281
  return JSON.stringify(e2);
15282
15282
  }
15283
15283
  flagDescription({ flag: e2 }) {
15284
- let r = "description" in e2 ? e2.description ?? "" : "";
15284
+ let r2 = "description" in e2 ? e2.description ?? "" : "";
15285
15285
  if ("default" in e2) {
15286
15286
  let { default: n } = e2;
15287
- typeof n == "function" && (n = n()), n && (r += ` (default: ${this.flagDefault(n)})`);
15287
+ typeof n == "function" && (n = n()), n && (r2 += ` (default: ${this.flagDefault(n)})`);
15288
15288
  }
15289
- return r;
15289
+ return r2;
15290
15290
  }
15291
15291
  render(e2) {
15292
15292
  if (typeof e2 == "string")
15293
15293
  return e2;
15294
15294
  if (Array.isArray(e2))
15295
- return e2.map((r) => this.render(r)).join(`
15295
+ return e2.map((r2) => this.render(r2)).join(`
15296
15296
  `);
15297
15297
  if ("type" in e2 && this[e2.type]) {
15298
- const r = this[e2.type];
15299
- if (typeof r == "function")
15300
- return r.call(this, e2.data);
15298
+ const r2 = this[e2.type];
15299
+ if (typeof r2 == "function")
15300
+ return r2.call(this, e2.data);
15301
15301
  }
15302
15302
  throw new Error(`Invalid node type: ${JSON.stringify(e2)}`);
15303
15303
  }
@@ -15307,112 +15307,112 @@ var { stringify: d3 } = JSON;
15307
15307
  var V3 = /[|\\{}()[\]^$+*?.]/;
15308
15308
  function w3(t) {
15309
15309
  const e2 = [];
15310
- let r, n;
15311
- for (const a3 of t) {
15310
+ let r2, n;
15311
+ for (const a2 of t) {
15312
15312
  if (n)
15313
15313
  throw new Error(`Invalid parameter: Spread parameter ${d3(n)} must be last`);
15314
- const i2 = a3[0], s = a3[a3.length - 1];
15314
+ const i2 = a2[0], s = a2[a2.length - 1];
15315
15315
  let o2;
15316
- if (i2 === "<" && s === ">" && (o2 = true, r))
15317
- throw new Error(`Invalid parameter: Required parameter ${d3(a3)} cannot come after optional parameter ${d3(r)}`);
15318
- if (i2 === "[" && s === "]" && (o2 = false, r = a3), o2 === void 0)
15319
- throw new Error(`Invalid parameter: ${d3(a3)}. Must be wrapped in <> (required parameter) or [] (optional parameter)`);
15320
- let l2 = a3.slice(1, -1);
15321
- const f3 = l2.slice(-3) === "...";
15322
- f3 && (n = a3, l2 = l2.slice(0, -3));
15323
- const p3 = l2.match(V3);
15324
- if (p3)
15325
- throw new Error(`Invalid parameter: ${d3(a3)}. Invalid character found ${d3(p3[0])}`);
15326
- e2.push({ name: l2, required: o2, spread: f3 });
15316
+ if (i2 === "<" && s === ">" && (o2 = true, r2))
15317
+ throw new Error(`Invalid parameter: Required parameter ${d3(a2)} cannot come after optional parameter ${d3(r2)}`);
15318
+ if (i2 === "[" && s === "]" && (o2 = false, r2 = a2), o2 === void 0)
15319
+ throw new Error(`Invalid parameter: ${d3(a2)}. Must be wrapped in <> (required parameter) or [] (optional parameter)`);
15320
+ let l = a2.slice(1, -1);
15321
+ const f3 = l.slice(-3) === "...";
15322
+ f3 && (n = a2, l = l.slice(0, -3));
15323
+ const p4 = l.match(V3);
15324
+ if (p4)
15325
+ throw new Error(`Invalid parameter: ${d3(a2)}. Invalid character found ${d3(p4[0])}`);
15326
+ e2.push({ name: l, required: o2, spread: f3 });
15327
15327
  }
15328
15328
  return e2;
15329
15329
  }
15330
- function b3(t, e2, r, n) {
15331
- for (let a3 = 0; a3 < e2.length; a3 += 1) {
15332
- const { name: i2, required: s, spread: o2 } = e2[a3], l2 = S2(i2);
15333
- if (l2 in t)
15330
+ function b3(t, e2, r2, n) {
15331
+ for (let a2 = 0; a2 < e2.length; a2 += 1) {
15332
+ const { name: i2, required: s, spread: o2 } = e2[a2], l = S2(i2);
15333
+ if (l in t)
15334
15334
  throw new Error(`Invalid parameter: ${d3(i2)} is used more than once.`);
15335
- const f3 = o2 ? r.slice(a3) : r[a3];
15336
- if (o2 && (a3 = e2.length), s && (!f3 || o2 && f3.length === 0))
15335
+ const f3 = o2 ? r2.slice(a2) : r2[a2];
15336
+ if (o2 && (a2 = e2.length), s && (!f3 || o2 && f3.length === 0))
15337
15337
  return console.error(`Error: Missing required parameter ${d3(i2)}
15338
15338
  `), n(), process.exit(1);
15339
- t[l2] = f3;
15339
+ t[l] = f3;
15340
15340
  }
15341
15341
  }
15342
15342
  function W2(t) {
15343
15343
  return t === void 0 || t !== false;
15344
15344
  }
15345
- function x2(t, e2, r, n) {
15346
- const a3 = { ...e2.flags }, i2 = e2.version;
15347
- i2 && (a3.version = { type: Boolean, description: "Show version" });
15345
+ function x2(t, e2, r2, n) {
15346
+ const a2 = { ...e2.flags }, i2 = e2.version;
15347
+ i2 && (a2.version = { type: Boolean, description: "Show version" });
15348
15348
  const { help: s } = e2, o2 = W2(s);
15349
- o2 && !("help" in a3) && (a3.help = { type: Boolean, alias: "h", description: "Show help" });
15350
- const l2 = U(a3, n, { ignore: e2.ignoreArgv }), f3 = () => {
15349
+ o2 && !("help" in a2) && (a2.help = { type: Boolean, alias: "h", description: "Show help" });
15350
+ const l = U(a2, n, { ignore: e2.ignoreArgv }), f3 = () => {
15351
15351
  console.log(e2.version);
15352
15352
  };
15353
- if (i2 && l2.flags.version === true)
15353
+ if (i2 && l.flags.version === true)
15354
15354
  return f3(), process.exit(0);
15355
- const p3 = new M2(), O3 = o2 && s?.render ? s.render : (c3) => p3.render(c3), u3 = (c3) => {
15356
- const m4 = U3({ ...e2, ...c3 ? { help: c3 } : {}, flags: a3 });
15357
- console.log(O3(m4, p3));
15355
+ const p4 = new M2(), O4 = o2 && s?.render ? s.render : (c3) => p4.render(c3), u2 = (c3) => {
15356
+ const m4 = U3({ ...e2, ...c3 ? { help: c3 } : {}, flags: a2 });
15357
+ console.log(O4(m4, p4));
15358
15358
  };
15359
- if (o2 && l2.flags.help === true)
15360
- return u3(), process.exit(0);
15359
+ if (o2 && l.flags.help === true)
15360
+ return u2(), process.exit(0);
15361
15361
  if (e2.parameters) {
15362
- let { parameters: c3 } = e2, m4 = l2._;
15362
+ let { parameters: c3 } = e2, m4 = l._;
15363
15363
  const g3 = c3.indexOf("--"), v4 = c3.slice(g3 + 1), h4 = /* @__PURE__ */ Object.create(null);
15364
15364
  if (g3 > -1 && v4.length > 0) {
15365
15365
  c3 = c3.slice(0, g3);
15366
- const E3 = l2._["--"];
15367
- m4 = m4.slice(0, -E3.length || void 0), b3(h4, w3(c3), m4, u3), b3(h4, w3(v4), E3, u3);
15366
+ const E3 = l._["--"];
15367
+ m4 = m4.slice(0, -E3.length || void 0), b3(h4, w3(c3), m4, u2), b3(h4, w3(v4), E3, u2);
15368
15368
  } else
15369
- b3(h4, w3(c3), m4, u3);
15370
- Object.assign(l2._, h4);
15369
+ b3(h4, w3(c3), m4, u2);
15370
+ Object.assign(l._, h4);
15371
15371
  }
15372
- const $4 = { ...l2, showVersion: f3, showHelp: u3 };
15373
- return typeof r == "function" && r($4), { command: t, ...$4 };
15372
+ const $4 = { ...l, showVersion: f3, showHelp: u2 };
15373
+ return typeof r2 == "function" && r2($4), { command: t, ...$4 };
15374
15374
  }
15375
15375
  function z2(t, e2) {
15376
- const r = /* @__PURE__ */ new Map();
15376
+ const r2 = /* @__PURE__ */ new Map();
15377
15377
  for (const n of e2) {
15378
- const a3 = [n.options.name], { alias: i2 } = n.options;
15379
- i2 && (Array.isArray(i2) ? a3.push(...i2) : a3.push(i2));
15380
- for (const s of a3) {
15381
- if (r.has(s))
15378
+ const a2 = [n.options.name], { alias: i2 } = n.options;
15379
+ i2 && (Array.isArray(i2) ? a2.push(...i2) : a2.push(i2));
15380
+ for (const s of a2) {
15381
+ if (r2.has(s))
15382
15382
  throw new Error(`Duplicate command name found: ${d3(s)}`);
15383
- r.set(s, n);
15383
+ r2.set(s, n);
15384
15384
  }
15385
15385
  }
15386
- return r.get(t);
15386
+ return r2.get(t);
15387
15387
  }
15388
- function Z2(t, e2, r = process.argv.slice(2)) {
15388
+ function Z2(t, e2, r2 = process.argv.slice(2)) {
15389
15389
  if (!t)
15390
15390
  throw new Error("Options is required");
15391
15391
  if ("name" in t && (!t.name || !y2.test(t.name)))
15392
15392
  throw new Error(`Invalid script name: ${d3(t.name)}`);
15393
- const n = r[0];
15393
+ const n = r2[0];
15394
15394
  if (t.commands && y2.test(n)) {
15395
- const a3 = z2(n, t.commands);
15396
- if (a3)
15397
- return x2(a3.options.name, { ...a3.options, parent: t }, a3.callback, r.slice(1));
15395
+ const a2 = z2(n, t.commands);
15396
+ if (a2)
15397
+ return x2(a2.options.name, { ...a2.options, parent: t }, a2.callback, r2.slice(1));
15398
15398
  }
15399
- return x2(void 0, t, e2, r);
15399
+ return x2(void 0, t, e2, r2);
15400
15400
  }
15401
15401
  function G3(t, e2) {
15402
15402
  if (!t)
15403
15403
  throw new Error("Command options are required");
15404
- const { name: r } = t;
15404
+ const { name: r2 } = t;
15405
15405
  if (t.name === void 0)
15406
15406
  throw new Error("Command name is required");
15407
- if (!y2.test(r))
15408
- throw new Error(`Invalid command name ${JSON.stringify(r)}. Command names must be one word.`);
15407
+ if (!y2.test(r2))
15408
+ throw new Error(`Invalid command name ${JSON.stringify(r2)}. Command names must be one word.`);
15409
15409
  return { options: t, callback: e2 };
15410
15410
  }
15411
15411
 
15412
15412
  // package.json
15413
15413
  var package_default = {
15414
15414
  name: "opencommit",
15415
- version: "1.0.14",
15415
+ version: "1.0.15",
15416
15416
  description: "GPT CLI to auto-generate impressive commits in 1 second. Killing lame commits with AI \u{1F92F}\u{1F52B}",
15417
15417
  keywords: [
15418
15418
  "git",
@@ -15489,142 +15489,342 @@ var import_os = require("os");
15489
15489
  // node_modules/@clack/core/dist/index.mjs
15490
15490
  var import_sisteransi = __toESM(require_src(), 1);
15491
15491
  var import_node_process = require("node:process");
15492
- var a = __toESM(require("node:readline"), 1);
15492
+ var f = __toESM(require("node:readline"), 1);
15493
15493
  var import_node_readline = __toESM(require("node:readline"), 1);
15494
15494
  var import_node_tty = require("node:tty");
15495
- function x3(o2, t) {
15496
- if (o2 === t)
15495
+ function z3({ onlyFirst: t = false } = {}) {
15496
+ const u2 = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");
15497
+ return new RegExp(u2, t ? void 0 : "g");
15498
+ }
15499
+ function $3(t) {
15500
+ if (typeof t != "string")
15501
+ throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);
15502
+ return t.replace(z3(), "");
15503
+ }
15504
+ var m3 = {};
15505
+ var G4 = { get exports() {
15506
+ return m3;
15507
+ }, set exports(t) {
15508
+ m3 = t;
15509
+ } };
15510
+ (function(t) {
15511
+ var u2 = {};
15512
+ t.exports = u2, u2.eastAsianWidth = function(e2) {
15513
+ var s = e2.charCodeAt(0), C4 = e2.length == 2 ? e2.charCodeAt(1) : 0, D4 = s;
15514
+ return 55296 <= s && s <= 56319 && 56320 <= C4 && C4 <= 57343 && (s &= 1023, C4 &= 1023, D4 = s << 10 | C4, D4 += 65536), D4 == 12288 || 65281 <= D4 && D4 <= 65376 || 65504 <= D4 && D4 <= 65510 ? "F" : D4 == 8361 || 65377 <= D4 && D4 <= 65470 || 65474 <= D4 && D4 <= 65479 || 65482 <= D4 && D4 <= 65487 || 65490 <= D4 && D4 <= 65495 || 65498 <= D4 && D4 <= 65500 || 65512 <= D4 && D4 <= 65518 ? "H" : 4352 <= D4 && D4 <= 4447 || 4515 <= D4 && D4 <= 4519 || 4602 <= D4 && D4 <= 4607 || 9001 <= D4 && D4 <= 9002 || 11904 <= D4 && D4 <= 11929 || 11931 <= D4 && D4 <= 12019 || 12032 <= D4 && D4 <= 12245 || 12272 <= D4 && D4 <= 12283 || 12289 <= D4 && D4 <= 12350 || 12353 <= D4 && D4 <= 12438 || 12441 <= D4 && D4 <= 12543 || 12549 <= D4 && D4 <= 12589 || 12593 <= D4 && D4 <= 12686 || 12688 <= D4 && D4 <= 12730 || 12736 <= D4 && D4 <= 12771 || 12784 <= D4 && D4 <= 12830 || 12832 <= D4 && D4 <= 12871 || 12880 <= D4 && D4 <= 13054 || 13056 <= D4 && D4 <= 19903 || 19968 <= D4 && D4 <= 42124 || 42128 <= D4 && D4 <= 42182 || 43360 <= D4 && D4 <= 43388 || 44032 <= D4 && D4 <= 55203 || 55216 <= D4 && D4 <= 55238 || 55243 <= D4 && D4 <= 55291 || 63744 <= D4 && D4 <= 64255 || 65040 <= D4 && D4 <= 65049 || 65072 <= D4 && D4 <= 65106 || 65108 <= D4 && D4 <= 65126 || 65128 <= D4 && D4 <= 65131 || 110592 <= D4 && D4 <= 110593 || 127488 <= D4 && D4 <= 127490 || 127504 <= D4 && D4 <= 127546 || 127552 <= D4 && D4 <= 127560 || 127568 <= D4 && D4 <= 127569 || 131072 <= D4 && D4 <= 194367 || 177984 <= D4 && D4 <= 196605 || 196608 <= D4 && D4 <= 262141 ? "W" : 32 <= D4 && D4 <= 126 || 162 <= D4 && D4 <= 163 || 165 <= D4 && D4 <= 166 || D4 == 172 || D4 == 175 || 10214 <= D4 && D4 <= 10221 || 10629 <= D4 && D4 <= 10630 ? "Na" : D4 == 161 || D4 == 164 || 167 <= D4 && D4 <= 168 || D4 == 170 || 173 <= D4 && D4 <= 174 || 176 <= D4 && D4 <= 180 || 182 <= D4 && D4 <= 186 || 188 <= D4 && D4 <= 191 || D4 == 198 || D4 == 208 || 215 <= D4 && D4 <= 216 || 222 <= D4 && D4 <= 225 || D4 == 230 || 232 <= D4 && D4 <= 234 || 236 <= D4 && D4 <= 237 || D4 == 240 || 242 <= D4 && D4 <= 243 || 247 <= D4 && D4 <= 250 || D4 == 252 || D4 == 254 || D4 == 257 || D4 == 273 || D4 == 275 || D4 == 283 || 294 <= D4 && D4 <= 295 || D4 == 299 || 305 <= D4 && D4 <= 307 || D4 == 312 || 319 <= D4 && D4 <= 322 || D4 == 324 || 328 <= D4 && D4 <= 331 || D4 == 333 || 338 <= D4 && D4 <= 339 || 358 <= D4 && D4 <= 359 || D4 == 363 || D4 == 462 || D4 == 464 || D4 == 466 || D4 == 468 || D4 == 470 || D4 == 472 || D4 == 474 || D4 == 476 || D4 == 593 || D4 == 609 || D4 == 708 || D4 == 711 || 713 <= D4 && D4 <= 715 || D4 == 717 || D4 == 720 || 728 <= D4 && D4 <= 731 || D4 == 733 || D4 == 735 || 768 <= D4 && D4 <= 879 || 913 <= D4 && D4 <= 929 || 931 <= D4 && D4 <= 937 || 945 <= D4 && D4 <= 961 || 963 <= D4 && D4 <= 969 || D4 == 1025 || 1040 <= D4 && D4 <= 1103 || D4 == 1105 || D4 == 8208 || 8211 <= D4 && D4 <= 8214 || 8216 <= D4 && D4 <= 8217 || 8220 <= D4 && D4 <= 8221 || 8224 <= D4 && D4 <= 8226 || 8228 <= D4 && D4 <= 8231 || D4 == 8240 || 8242 <= D4 && D4 <= 8243 || D4 == 8245 || D4 == 8251 || D4 == 8254 || D4 == 8308 || D4 == 8319 || 8321 <= D4 && D4 <= 8324 || D4 == 8364 || D4 == 8451 || D4 == 8453 || D4 == 8457 || D4 == 8467 || D4 == 8470 || 8481 <= D4 && D4 <= 8482 || D4 == 8486 || D4 == 8491 || 8531 <= D4 && D4 <= 8532 || 8539 <= D4 && D4 <= 8542 || 8544 <= D4 && D4 <= 8555 || 8560 <= D4 && D4 <= 8569 || D4 == 8585 || 8592 <= D4 && D4 <= 8601 || 8632 <= D4 && D4 <= 8633 || D4 == 8658 || D4 == 8660 || D4 == 8679 || D4 == 8704 || 8706 <= D4 && D4 <= 8707 || 8711 <= D4 && D4 <= 8712 || D4 == 8715 || D4 == 8719 || D4 == 8721 || D4 == 8725 || D4 == 8730 || 8733 <= D4 && D4 <= 8736 || D4 == 8739 || D4 == 8741 || 8743 <= D4 && D4 <= 8748 || D4 == 8750 || 8756 <= D4 && D4 <= 8759 || 8764 <= D4 && D4 <= 8765 || D4 == 8776 || D4 == 8780 || D4 == 8786 || 8800 <= D4 && D4 <= 8801 || 8804 <= D4 && D4 <= 8807 || 8810 <= D4 && D4 <= 8811 || 8814 <= D4 && D4 <= 8815 || 8834 <= D4 && D4 <= 8835 || 8838 <= D4 && D4 <= 8839 || D4 == 8853 || D4 == 8857 || D4 == 8869 || D4 == 8895 || D4 == 8978 || 9312 <= D4 && D4 <= 9449 || 9451 <= D4 && D4 <= 9547 || 9552 <= D4 && D4 <= 9587 || 9600 <= D4 && D4 <= 9615 || 9618 <= D4 && D4 <= 9621 || 9632 <= D4 && D4 <= 9633 || 9635 <= D4 && D4 <= 9641 || 9650 <= D4 && D4 <= 9651 || 9654 <= D4 && D4 <= 9655 || 9660 <= D4 && D4 <= 9661 || 9664 <= D4 && D4 <= 9665 || 9670 <= D4 && D4 <= 9672 || D4 == 9675 || 9678 <= D4 && D4 <= 9681 || 9698 <= D4 && D4 <= 9701 || D4 == 9711 || 9733 <= D4 && D4 <= 9734 || D4 == 9737 || 9742 <= D4 && D4 <= 9743 || 9748 <= D4 && D4 <= 9749 || D4 == 9756 || D4 == 9758 || D4 == 9792 || D4 == 9794 || 9824 <= D4 && D4 <= 9825 || 9827 <= D4 && D4 <= 9829 || 9831 <= D4 && D4 <= 9834 || 9836 <= D4 && D4 <= 9837 || D4 == 9839 || 9886 <= D4 && D4 <= 9887 || 9918 <= D4 && D4 <= 9919 || 9924 <= D4 && D4 <= 9933 || 9935 <= D4 && D4 <= 9953 || D4 == 9955 || 9960 <= D4 && D4 <= 9983 || D4 == 10045 || D4 == 10071 || 10102 <= D4 && D4 <= 10111 || 11093 <= D4 && D4 <= 11097 || 12872 <= D4 && D4 <= 12879 || 57344 <= D4 && D4 <= 63743 || 65024 <= D4 && D4 <= 65039 || D4 == 65533 || 127232 <= D4 && D4 <= 127242 || 127248 <= D4 && D4 <= 127277 || 127280 <= D4 && D4 <= 127337 || 127344 <= D4 && D4 <= 127386 || 917760 <= D4 && D4 <= 917999 || 983040 <= D4 && D4 <= 1048573 || 1048576 <= D4 && D4 <= 1114109 ? "A" : "N";
15515
+ }, u2.characterLength = function(e2) {
15516
+ var s = this.eastAsianWidth(e2);
15517
+ return s == "F" || s == "W" || s == "A" ? 2 : 1;
15518
+ };
15519
+ function F4(e2) {
15520
+ return e2.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^\uD800-\uDFFF]/g) || [];
15521
+ }
15522
+ u2.length = function(e2) {
15523
+ for (var s = F4(e2), C4 = 0, D4 = 0; D4 < s.length; D4++)
15524
+ C4 = C4 + this.characterLength(s[D4]);
15525
+ return C4;
15526
+ }, u2.slice = function(e2, s, C4) {
15527
+ textLen = u2.length(e2), s = s || 0, C4 = C4 || 1, s < 0 && (s = textLen + s), C4 < 0 && (C4 = textLen + C4);
15528
+ for (var D4 = "", i2 = 0, o2 = F4(e2), E3 = 0; E3 < o2.length; E3++) {
15529
+ var a2 = o2[E3], n = u2.length(a2);
15530
+ if (i2 >= s - (n == 2 ? 1 : 0))
15531
+ if (i2 + n <= C4)
15532
+ D4 += a2;
15533
+ else
15534
+ break;
15535
+ i2 += n;
15536
+ }
15537
+ return D4;
15538
+ };
15539
+ })(G4);
15540
+ var K3 = m3;
15541
+ var Y2 = function() {
15542
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
15543
+ };
15544
+ function c2(t, u2 = {}) {
15545
+ if (typeof t != "string" || t.length === 0 || (u2 = { ambiguousIsNarrow: true, ...u2 }, t = $3(t), t.length === 0))
15546
+ return 0;
15547
+ t = t.replace(Y2(), " ");
15548
+ const F4 = u2.ambiguousIsNarrow ? 1 : 2;
15549
+ let e2 = 0;
15550
+ for (const s of t) {
15551
+ const C4 = s.codePointAt(0);
15552
+ if (C4 <= 31 || C4 >= 127 && C4 <= 159 || C4 >= 768 && C4 <= 879)
15553
+ continue;
15554
+ switch (K3.eastAsianWidth(s)) {
15555
+ case "F":
15556
+ case "W":
15557
+ e2 += 2;
15558
+ break;
15559
+ case "A":
15560
+ e2 += F4;
15561
+ break;
15562
+ default:
15563
+ e2 += 1;
15564
+ }
15565
+ }
15566
+ return e2;
15567
+ }
15568
+ var v3 = 10;
15569
+ var L4 = (t = 0) => (u2) => `\x1B[${u2 + t}m`;
15570
+ var M3 = (t = 0) => (u2) => `\x1B[${38 + t};5;${u2}m`;
15571
+ var T4 = (t = 0) => (u2, F4, e2) => `\x1B[${38 + t};2;${u2};${F4};${e2}m`;
15572
+ var r = { modifier: { reset: [0, 0], bold: [1, 22], dim: [2, 22], italic: [3, 23], underline: [4, 24], overline: [53, 55], inverse: [7, 27], hidden: [8, 28], strikethrough: [9, 29] }, color: { black: [30, 39], red: [31, 39], green: [32, 39], yellow: [33, 39], blue: [34, 39], magenta: [35, 39], cyan: [36, 39], white: [37, 39], blackBright: [90, 39], gray: [90, 39], grey: [90, 39], redBright: [91, 39], greenBright: [92, 39], yellowBright: [93, 39], blueBright: [94, 39], magentaBright: [95, 39], cyanBright: [96, 39], whiteBright: [97, 39] }, bgColor: { bgBlack: [40, 49], bgRed: [41, 49], bgGreen: [42, 49], bgYellow: [43, 49], bgBlue: [44, 49], bgMagenta: [45, 49], bgCyan: [46, 49], bgWhite: [47, 49], bgBlackBright: [100, 49], bgGray: [100, 49], bgGrey: [100, 49], bgRedBright: [101, 49], bgGreenBright: [102, 49], bgYellowBright: [103, 49], bgBlueBright: [104, 49], bgMagentaBright: [105, 49], bgCyanBright: [106, 49], bgWhiteBright: [107, 49] } };
15573
+ Object.keys(r.modifier);
15574
+ var Z3 = Object.keys(r.color);
15575
+ var H3 = Object.keys(r.bgColor);
15576
+ [...Z3, ...H3];
15577
+ function U4() {
15578
+ const t = /* @__PURE__ */ new Map();
15579
+ for (const [u2, F4] of Object.entries(r)) {
15580
+ for (const [e2, s] of Object.entries(F4))
15581
+ r[e2] = { open: `\x1B[${s[0]}m`, close: `\x1B[${s[1]}m` }, F4[e2] = r[e2], t.set(s[0], s[1]);
15582
+ Object.defineProperty(r, u2, { value: F4, enumerable: false });
15583
+ }
15584
+ return Object.defineProperty(r, "codes", { value: t, enumerable: false }), r.color.close = "\x1B[39m", r.bgColor.close = "\x1B[49m", r.color.ansi = L4(), r.color.ansi256 = M3(), r.color.ansi16m = T4(), r.bgColor.ansi = L4(v3), r.bgColor.ansi256 = M3(v3), r.bgColor.ansi16m = T4(v3), Object.defineProperties(r, { rgbToAnsi256: { value: (u2, F4, e2) => u2 === F4 && F4 === e2 ? u2 < 8 ? 16 : u2 > 248 ? 231 : Math.round((u2 - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(u2 / 255 * 5) + 6 * Math.round(F4 / 255 * 5) + Math.round(e2 / 255 * 5), enumerable: false }, hexToRgb: { value: (u2) => {
15585
+ const F4 = /[a-f\d]{6}|[a-f\d]{3}/i.exec(u2.toString(16));
15586
+ if (!F4)
15587
+ return [0, 0, 0];
15588
+ let [e2] = F4;
15589
+ e2.length === 3 && (e2 = [...e2].map((C4) => C4 + C4).join(""));
15590
+ const s = Number.parseInt(e2, 16);
15591
+ return [s >> 16 & 255, s >> 8 & 255, s & 255];
15592
+ }, enumerable: false }, hexToAnsi256: { value: (u2) => r.rgbToAnsi256(...r.hexToRgb(u2)), enumerable: false }, ansi256ToAnsi: { value: (u2) => {
15593
+ if (u2 < 8)
15594
+ return 30 + u2;
15595
+ if (u2 < 16)
15596
+ return 90 + (u2 - 8);
15597
+ let F4, e2, s;
15598
+ if (u2 >= 232)
15599
+ F4 = ((u2 - 232) * 10 + 8) / 255, e2 = F4, s = F4;
15600
+ else {
15601
+ u2 -= 16;
15602
+ const i2 = u2 % 36;
15603
+ F4 = Math.floor(u2 / 36) / 5, e2 = Math.floor(i2 / 6) / 5, s = i2 % 6 / 5;
15604
+ }
15605
+ const C4 = Math.max(F4, e2, s) * 2;
15606
+ if (C4 === 0)
15607
+ return 30;
15608
+ let D4 = 30 + (Math.round(s) << 2 | Math.round(e2) << 1 | Math.round(F4));
15609
+ return C4 === 2 && (D4 += 60), D4;
15610
+ }, enumerable: false }, rgbToAnsi: { value: (u2, F4, e2) => r.ansi256ToAnsi(r.rgbToAnsi256(u2, F4, e2)), enumerable: false }, hexToAnsi: { value: (u2) => r.ansi256ToAnsi(r.hexToAnsi256(u2)), enumerable: false } }), r;
15611
+ }
15612
+ var q3 = U4();
15613
+ var p2 = /* @__PURE__ */ new Set(["\x1B", "\x9B"]);
15614
+ var J3 = 39;
15615
+ var b4 = "\x07";
15616
+ var W3 = "[";
15617
+ var Q2 = "]";
15618
+ var I3 = "m";
15619
+ var w4 = `${Q2}8;;`;
15620
+ var N3 = (t) => `${p2.values().next().value}${W3}${t}${I3}`;
15621
+ var j2 = (t) => `${p2.values().next().value}${w4}${t}${b4}`;
15622
+ var X2 = (t) => t.split(" ").map((u2) => c2(u2));
15623
+ var _4 = (t, u2, F4) => {
15624
+ const e2 = [...u2];
15625
+ let s = false, C4 = false, D4 = c2($3(t[t.length - 1]));
15626
+ for (const [i2, o2] of e2.entries()) {
15627
+ const E3 = c2(o2);
15628
+ if (D4 + E3 <= F4 ? t[t.length - 1] += o2 : (t.push(o2), D4 = 0), p2.has(o2) && (s = true, C4 = e2.slice(i2 + 1).join("").startsWith(w4)), s) {
15629
+ C4 ? o2 === b4 && (s = false, C4 = false) : o2 === I3 && (s = false);
15630
+ continue;
15631
+ }
15632
+ D4 += E3, D4 === F4 && i2 < e2.length - 1 && (t.push(""), D4 = 0);
15633
+ }
15634
+ !D4 && t[t.length - 1].length > 0 && t.length > 1 && (t[t.length - 2] += t.pop());
15635
+ };
15636
+ var DD2 = (t) => {
15637
+ const u2 = t.split(" ");
15638
+ let F4 = u2.length;
15639
+ for (; F4 > 0 && !(c2(u2[F4 - 1]) > 0); )
15640
+ F4--;
15641
+ return F4 === u2.length ? t : u2.slice(0, F4).join(" ") + u2.slice(F4).join("");
15642
+ };
15643
+ var uD2 = (t, u2, F4 = {}) => {
15644
+ if (F4.trim !== false && t.trim() === "")
15645
+ return "";
15646
+ let e2 = "", s, C4;
15647
+ const D4 = X2(t);
15648
+ let i2 = [""];
15649
+ for (const [E3, a2] of t.split(" ").entries()) {
15650
+ F4.trim !== false && (i2[i2.length - 1] = i2[i2.length - 1].trimStart());
15651
+ let n = c2(i2[i2.length - 1]);
15652
+ if (E3 !== 0 && (n >= u2 && (F4.wordWrap === false || F4.trim === false) && (i2.push(""), n = 0), (n > 0 || F4.trim === false) && (i2[i2.length - 1] += " ", n++)), F4.hard && D4[E3] > u2) {
15653
+ const B2 = u2 - n, A3 = 1 + Math.floor((D4[E3] - B2 - 1) / u2);
15654
+ Math.floor((D4[E3] - 1) / u2) < A3 && i2.push(""), _4(i2, a2, u2);
15655
+ continue;
15656
+ }
15657
+ if (n + D4[E3] > u2 && n > 0 && D4[E3] > 0) {
15658
+ if (F4.wordWrap === false && n < u2) {
15659
+ _4(i2, a2, u2);
15660
+ continue;
15661
+ }
15662
+ i2.push("");
15663
+ }
15664
+ if (n + D4[E3] > u2 && F4.wordWrap === false) {
15665
+ _4(i2, a2, u2);
15666
+ continue;
15667
+ }
15668
+ i2[i2.length - 1] += a2;
15669
+ }
15670
+ F4.trim !== false && (i2 = i2.map((E3) => DD2(E3)));
15671
+ const o2 = [...i2.join(`
15672
+ `)];
15673
+ for (const [E3, a2] of o2.entries()) {
15674
+ if (e2 += a2, p2.has(a2)) {
15675
+ const { groups: B2 } = new RegExp(`(?:\\${W3}(?<code>\\d+)m|\\${w4}(?<uri>.*)${b4})`).exec(o2.slice(E3).join("")) || { groups: {} };
15676
+ if (B2.code !== void 0) {
15677
+ const A3 = Number.parseFloat(B2.code);
15678
+ s = A3 === J3 ? void 0 : A3;
15679
+ } else
15680
+ B2.uri !== void 0 && (C4 = B2.uri.length === 0 ? void 0 : B2.uri);
15681
+ }
15682
+ const n = q3.codes.get(Number(s));
15683
+ o2[E3 + 1] === `
15684
+ ` ? (C4 && (e2 += j2("")), s && n && (e2 += N3(n))) : a2 === `
15685
+ ` && (s && n && (e2 += N3(s)), C4 && (e2 += j2(C4)));
15686
+ }
15687
+ return e2;
15688
+ };
15689
+ function P2(t, u2, F4) {
15690
+ return String(t).normalize().replace(/\r\n/g, `
15691
+ `).split(`
15692
+ `).map((e2) => uD2(e2, u2, F4)).join(`
15693
+ `);
15694
+ }
15695
+ function FD2(t, u2) {
15696
+ if (t === u2)
15497
15697
  return;
15498
- const s = o2.split(`
15499
- `), e2 = t.split(`
15500
- `), i2 = [];
15501
- for (let r = 0; r < Math.max(s.length, e2.length); r++)
15502
- s[r] !== e2[r] && i2.push(r);
15503
- return i2;
15698
+ const F4 = t.split(`
15699
+ `), e2 = u2.split(`
15700
+ `), s = [];
15701
+ for (let C4 = 0; C4 < Math.max(F4.length, e2.length); C4++)
15702
+ F4[C4] !== e2[C4] && s.push(C4);
15703
+ return s;
15504
15704
  }
15505
- var d4 = Symbol("clack:cancel");
15506
- function C3(o2) {
15507
- return o2 === d4;
15705
+ var R4 = Symbol("clack:cancel");
15706
+ function eD2(t) {
15707
+ return t === R4;
15508
15708
  }
15509
- function l(o2, t) {
15510
- o2.isTTY && o2.setRawMode(t);
15709
+ function g2(t, u2) {
15710
+ t.isTTY && t.setRawMode(u2);
15511
15711
  }
15512
- var g2 = /* @__PURE__ */ new Map([["k", "up"], ["j", "down"], ["h", "left"], ["l", "right"]]);
15513
- var y3 = /* @__PURE__ */ new Set(["up", "down", "left", "right", "space", "enter"]);
15514
- var u = class {
15515
- constructor({ render: t, input: s = import_node_process.stdin, output: e2 = import_node_process.stdout, ...i2 }, r = true) {
15516
- this._track = false, this._cursor = 0, this.state = "initial", this.error = "", this.subscribers = /* @__PURE__ */ new Map(), this._prevFrame = "", this.opts = i2, this.onKeypress = this.onKeypress.bind(this), this.close = this.close.bind(this), this.render = this.render.bind(this), this._render = t.bind(this), this._track = r, this.input = s, this.output = e2;
15712
+ var V4 = /* @__PURE__ */ new Map([["k", "up"], ["j", "down"], ["h", "left"], ["l", "right"]]);
15713
+ var tD2 = /* @__PURE__ */ new Set(["up", "down", "left", "right", "space", "enter"]);
15714
+ var h2 = class {
15715
+ constructor({ render: u2, input: F4 = import_node_process.stdin, output: e2 = import_node_process.stdout, ...s }, C4 = true) {
15716
+ this._track = false, this._cursor = 0, this.state = "initial", this.error = "", this.subscribers = /* @__PURE__ */ new Map(), this._prevFrame = "", this.opts = s, this.onKeypress = this.onKeypress.bind(this), this.close = this.close.bind(this), this.render = this.render.bind(this), this._render = u2.bind(this), this._track = C4, this.input = F4, this.output = e2;
15517
15717
  }
15518
15718
  prompt() {
15519
- const t = new import_node_tty.WriteStream(0);
15520
- return t._write = (s, e2, i2) => {
15521
- this._track && (this.value = this.rl.line.replace(/\t/g, ""), this._cursor = this.rl.cursor, this.emit("value", this.value)), i2();
15522
- }, this.input.pipe(t), this.rl = import_node_readline.default.createInterface({ input: this.input, output: t, tabSize: 2, prompt: "", escapeCodeTimeout: 50 }), import_node_readline.default.emitKeypressEvents(this.input, this.rl), this.rl.prompt(), this.opts.initialValue !== void 0 && this._track && this.rl.write(this.opts.initialValue), this.input.on("keypress", this.onKeypress), l(this.input, true), this.render(), new Promise((s, e2) => {
15719
+ const u2 = new import_node_tty.WriteStream(0);
15720
+ return u2._write = (F4, e2, s) => {
15721
+ this._track && (this.value = this.rl.line.replace(/\t/g, ""), this._cursor = this.rl.cursor, this.emit("value", this.value)), s();
15722
+ }, this.input.pipe(u2), this.rl = import_node_readline.default.createInterface({ input: this.input, output: u2, tabSize: 2, prompt: "", escapeCodeTimeout: 50 }), import_node_readline.default.emitKeypressEvents(this.input, this.rl), this.rl.prompt(), this.opts.initialValue !== void 0 && this._track && this.rl.write(this.opts.initialValue), this.input.on("keypress", this.onKeypress), g2(this.input, true), this.output.on("resize", this.render), this.render(), new Promise((F4, e2) => {
15523
15723
  this.once("submit", () => {
15524
- this.output.write(import_sisteransi.cursor.show), l(this.input, false), s(this.value);
15724
+ this.output.write(import_sisteransi.cursor.show), this.output.off("resize", this.render), g2(this.input, false), F4(this.value);
15525
15725
  }), this.once("cancel", () => {
15526
- this.output.write(import_sisteransi.cursor.show), l(this.input, false), s(d4);
15726
+ this.output.write(import_sisteransi.cursor.show), this.output.off("resize", this.render), g2(this.input, false), F4(R4);
15527
15727
  });
15528
15728
  });
15529
15729
  }
15530
- on(t, s) {
15531
- const e2 = this.subscribers.get(t) ?? [];
15532
- e2.push({ cb: s }), this.subscribers.set(t, e2);
15730
+ on(u2, F4) {
15731
+ const e2 = this.subscribers.get(u2) ?? [];
15732
+ e2.push({ cb: F4 }), this.subscribers.set(u2, e2);
15533
15733
  }
15534
- once(t, s) {
15535
- const e2 = this.subscribers.get(t) ?? [];
15536
- e2.push({ cb: s, once: true }), this.subscribers.set(t, e2);
15734
+ once(u2, F4) {
15735
+ const e2 = this.subscribers.get(u2) ?? [];
15736
+ e2.push({ cb: F4, once: true }), this.subscribers.set(u2, e2);
15537
15737
  }
15538
- emit(t, ...s) {
15539
- const e2 = this.subscribers.get(t) ?? [], i2 = [];
15540
- for (const r of e2)
15541
- r.cb(...s), r.once && i2.push(() => e2.splice(e2.indexOf(r), 1));
15542
- for (const r of i2)
15543
- r();
15738
+ emit(u2, ...F4) {
15739
+ const e2 = this.subscribers.get(u2) ?? [], s = [];
15740
+ for (const C4 of e2)
15741
+ C4.cb(...F4), C4.once && s.push(() => e2.splice(e2.indexOf(C4), 1));
15742
+ for (const C4 of s)
15743
+ C4();
15544
15744
  }
15545
15745
  unsubscribe() {
15546
15746
  this.subscribers.clear();
15547
15747
  }
15548
- onKeypress(t, s) {
15549
- if (this.state === "error" && (this.state = "active"), s?.name && !this._track && g2.has(s.name) && this.emit("cursor", g2.get(s.name)), s?.name && y3.has(s.name) && this.emit("cursor", s.name), t && (t.toLowerCase() === "y" || t.toLowerCase() === "n") && this.emit("confirm", t.toLowerCase() === "y"), t && this.emit("key", t.toLowerCase()), s?.name === "return") {
15748
+ onKeypress(u2, F4) {
15749
+ if (this.state === "error" && (this.state = "active"), F4?.name && !this._track && V4.has(F4.name) && this.emit("cursor", V4.get(F4.name)), F4?.name && tD2.has(F4.name) && this.emit("cursor", F4.name), u2 && (u2.toLowerCase() === "y" || u2.toLowerCase() === "n") && this.emit("confirm", u2.toLowerCase() === "y"), u2 && this.emit("key", u2.toLowerCase()), F4?.name === "return") {
15550
15750
  if (this.opts.validate) {
15551
15751
  const e2 = this.opts.validate(this.value);
15552
15752
  e2 && (this.error = e2, this.state = "error", this.rl.write(this.value));
15553
15753
  }
15554
15754
  this.state !== "error" && (this.state = "submit");
15555
15755
  }
15556
- t === "" && (this.state = "cancel"), (this.state === "submit" || this.state === "cancel") && this.emit("finalize"), this.render(), (this.state === "submit" || this.state === "cancel") && this.close();
15756
+ u2 === "" && (this.state = "cancel"), (this.state === "submit" || this.state === "cancel") && this.emit("finalize"), this.render(), (this.state === "submit" || this.state === "cancel") && this.close();
15557
15757
  }
15558
15758
  close() {
15559
15759
  this.input.unpipe(), this.input.removeListener("keypress", this.onKeypress), this.output.write(`
15560
- `), l(this.input, false), this.rl.close(), this.emit(`${this.state}`, this.value), this.unsubscribe();
15760
+ `), g2(this.input, false), this.rl.close(), this.emit(`${this.state}`, this.value), this.unsubscribe();
15561
15761
  }
15562
15762
  restoreCursor() {
15563
- const t = this._prevFrame.split(`
15763
+ const u2 = P2(this._prevFrame, process.stdout.columns, { hard: true }).split(`
15564
15764
  `).length - 1;
15565
- this.output.write(import_sisteransi.cursor.move(-999, t * -1));
15765
+ this.output.write(import_sisteransi.cursor.move(-999, u2 * -1));
15566
15766
  }
15567
15767
  render() {
15568
- const t = this._render(this) ?? "";
15569
- if (t !== this._prevFrame) {
15768
+ const u2 = P2(this._render(this) ?? "", process.stdout.columns, { hard: true });
15769
+ if (u2 !== this._prevFrame) {
15570
15770
  if (this.state === "initial")
15571
15771
  this.output.write(import_sisteransi.cursor.hide);
15572
15772
  else {
15573
- const s = x3(this._prevFrame, t);
15574
- if (this.restoreCursor(), s && s?.length === 1) {
15575
- const e2 = s[0];
15773
+ const F4 = FD2(this._prevFrame, u2);
15774
+ if (this.restoreCursor(), F4 && F4?.length === 1) {
15775
+ const e2 = F4[0];
15576
15776
  this.output.write(import_sisteransi.cursor.move(0, e2)), this.output.write(import_sisteransi.erase.lines(1));
15577
- const i2 = t.split(`
15777
+ const s = u2.split(`
15578
15778
  `);
15579
- this.output.write(i2[e2]), this._prevFrame = t, this.output.write(import_sisteransi.cursor.move(0, i2.length - e2 - 1));
15779
+ this.output.write(s[e2]), this._prevFrame = u2, this.output.write(import_sisteransi.cursor.move(0, s.length - e2 - 1));
15580
15780
  return;
15581
- } else if (s && s?.length > 1) {
15582
- const e2 = s[0];
15781
+ } else if (F4 && F4?.length > 1) {
15782
+ const e2 = F4[0];
15583
15783
  this.output.write(import_sisteransi.cursor.move(0, e2)), this.output.write(import_sisteransi.erase.down());
15584
- const r = t.split(`
15784
+ const C4 = u2.split(`
15585
15785
  `).slice(e2);
15586
- this.output.write(r.join(`
15587
- `)), this._prevFrame = t;
15786
+ this.output.write(C4.join(`
15787
+ `)), this._prevFrame = u2;
15588
15788
  return;
15589
15789
  }
15590
15790
  this.output.write(import_sisteransi.erase.down());
15591
15791
  }
15592
- this.output.write(t), this.state === "initial" && (this.state = "active"), this._prevFrame = t;
15792
+ this.output.write(u2), this.state === "initial" && (this.state = "active"), this._prevFrame = u2;
15593
15793
  }
15594
15794
  }
15595
15795
  };
15596
- var V4 = class extends u {
15796
+ var sD2 = class extends h2 {
15597
15797
  get cursor() {
15598
15798
  return this.value ? 0 : 1;
15599
15799
  }
15600
15800
  get _value() {
15601
15801
  return this.cursor === 0;
15602
15802
  }
15603
- constructor(t) {
15604
- super(t, false), this.value = !!t.initialValue, this.on("value", () => {
15803
+ constructor(u2) {
15804
+ super(u2, false), this.value = !!u2.initialValue, this.on("value", () => {
15605
15805
  this.value = this._value;
15606
- }), this.on("confirm", (s) => {
15607
- this.output.write(import_sisteransi.cursor.move(0, -1)), this.value = s, this.state = "submit", this.close();
15806
+ }), this.on("confirm", (F4) => {
15807
+ this.output.write(import_sisteransi.cursor.move(0, -1)), this.value = F4, this.state = "submit", this.close();
15608
15808
  }), this.on("cursor", () => {
15609
15809
  this.value = !this.value;
15610
15810
  });
15611
15811
  }
15612
15812
  };
15613
- function W3({ input: o2 = import_node_process.stdin, output: t = import_node_process.stdout, overwrite: s = true, hideCursor: e2 = true } = {}) {
15614
- const i2 = a.createInterface({ input: o2, output: t, prompt: "", tabSize: 1 });
15615
- a.emitKeypressEvents(o2, i2), o2.isTTY && o2.setRawMode(true);
15616
- const r = (w5, { name: p3 }) => {
15617
- if (String(w5) === "" && process.exit(0), !s)
15813
+ function aD2({ input: t = import_node_process.stdin, output: u2 = import_node_process.stdout, overwrite: F4 = true, hideCursor: e2 = true } = {}) {
15814
+ const s = f.createInterface({ input: t, output: u2, prompt: "", tabSize: 1 });
15815
+ f.emitKeypressEvents(t, s), t.isTTY && t.setRawMode(true);
15816
+ const C4 = (D4, { name: i2 }) => {
15817
+ if (String(D4) === "" && process.exit(0), !F4)
15618
15818
  return;
15619
- let b4 = p3 === "return" ? 0 : -1, _5 = p3 === "return" ? -1 : 0;
15620
- a.moveCursor(t, b4, _5, () => {
15621
- a.clearLine(t, 1, () => {
15622
- o2.once("keypress", r);
15819
+ let E3 = i2 === "return" ? 0 : -1, a2 = i2 === "return" ? -1 : 0;
15820
+ f.moveCursor(u2, E3, a2, () => {
15821
+ f.clearLine(u2, 1, () => {
15822
+ t.once("keypress", C4);
15623
15823
  });
15624
15824
  });
15625
15825
  };
15626
- return e2 && process.stdout.write(import_sisteransi.cursor.hide), o2.once("keypress", r), () => {
15627
- o2.off("keypress", r), e2 && process.stdout.write(import_sisteransi.cursor.show), i2.terminal = false, i2.close();
15826
+ return e2 && process.stdout.write(import_sisteransi.cursor.hide), t.once("keypress", C4), () => {
15827
+ t.off("keypress", C4), e2 && process.stdout.write(import_sisteransi.cursor.show), s.terminal = false, s.close();
15628
15828
  };
15629
15829
  }
15630
15830
 
@@ -15632,34 +15832,34 @@ function W3({ input: o2 = import_node_process.stdin, output: t = import_node_pro
15632
15832
  var import_node_process2 = __toESM(require("node:process"), 1);
15633
15833
  var import_picocolors = __toESM(require_picocolors(), 1);
15634
15834
  var import_sisteransi2 = __toESM(require_src(), 1);
15635
- function N3() {
15835
+ function N4() {
15636
15836
  return import_node_process2.default.platform !== "win32" ? import_node_process2.default.env.TERM !== "linux" : Boolean(import_node_process2.default.env.CI) || Boolean(import_node_process2.default.env.WT_SESSION) || Boolean(import_node_process2.default.env.TERMINUS_SUBLIME) || import_node_process2.default.env.ConEmuTask === "{cmd::Cmder}" || import_node_process2.default.env.TERM_PROGRAM === "Terminus-Sublime" || import_node_process2.default.env.TERM_PROGRAM === "vscode" || import_node_process2.default.env.TERM === "xterm-256color" || import_node_process2.default.env.TERM === "alacritty" || import_node_process2.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
15637
15837
  }
15638
- var p2 = N3();
15639
- var u2 = (r, n) => p2 ? r : n;
15640
- var W4 = u2("\u25C6", "*");
15641
- var D3 = u2("\u25A0", "x");
15642
- var F3 = u2("\u25B2", "x");
15643
- var f2 = u2("\u25C7", "o");
15644
- var L5 = u2("\u250C", "T");
15645
- var a2 = u2("\u2502", "|");
15646
- var o = u2("\u2514", "\u2014");
15647
- var w4 = u2("\u25CF", ">");
15648
- var S4 = u2("\u25CB", " ");
15649
- var _4 = u2("\u25FB", "[\u2022]");
15650
- var y4 = u2("\u25FC", "[+]");
15651
- var A2 = u2("\u25FB", "[ ]");
15652
- var q3 = u2("\u25AA", "\u2022");
15653
- var R4 = u2("\u2500", "-");
15654
- var G4 = u2("\u256E", "+");
15655
- var H3 = u2("\u251C", "+");
15656
- var K3 = u2("\u256F", "+");
15657
- var U4 = u2("\u25CF", "\u2022");
15658
- var Z3 = u2("\u25C6", "*");
15659
- var z3 = u2("\u25B2", "!");
15660
- var X2 = u2("\u25A0", "x");
15661
- var h3 = (r) => {
15662
- switch (r) {
15838
+ var p3 = N4();
15839
+ var u = (r2, n) => p3 ? r2 : n;
15840
+ var W4 = u("\u25C6", "*");
15841
+ var D3 = u("\u25A0", "x");
15842
+ var F3 = u("\u25B2", "x");
15843
+ var f2 = u("\u25C7", "o");
15844
+ var L5 = u("\u250C", "T");
15845
+ var a = u("\u2502", "|");
15846
+ var o = u("\u2514", "\u2014");
15847
+ var w5 = u("\u25CF", ">");
15848
+ var S4 = u("\u25CB", " ");
15849
+ var _5 = u("\u25FB", "[\u2022]");
15850
+ var y4 = u("\u25FC", "[+]");
15851
+ var A2 = u("\u25FB", "[ ]");
15852
+ var q4 = u("\u25AA", "\u2022");
15853
+ var R5 = u("\u2500", "-");
15854
+ var G5 = u("\u256E", "+");
15855
+ var H4 = u("\u251C", "+");
15856
+ var K4 = u("\u256F", "+");
15857
+ var U5 = u("\u25CF", "\u2022");
15858
+ var Z4 = u("\u25C6", "*");
15859
+ var z4 = u("\u25B2", "!");
15860
+ var X3 = u("\u25A0", "x");
15861
+ var h3 = (r2) => {
15862
+ switch (r2) {
15663
15863
  case "initial":
15664
15864
  case "active":
15665
15865
  return import_picocolors.default.cyan(W4);
@@ -15671,53 +15871,53 @@ var h3 = (r) => {
15671
15871
  return import_picocolors.default.green(f2);
15672
15872
  }
15673
15873
  };
15674
- var Q2 = (r) => {
15675
- const n = r.active ?? "Yes", s = r.inactive ?? "No";
15676
- return new V4({ active: n, inactive: s, initialValue: r.initialValue ?? true, render() {
15677
- const t = `${import_picocolors.default.gray(a2)}
15678
- ${h3(this.state)} ${r.message}
15874
+ var Q3 = (r2) => {
15875
+ const n = r2.active ?? "Yes", s = r2.inactive ?? "No";
15876
+ return new sD2({ active: n, inactive: s, initialValue: r2.initialValue ?? true, render() {
15877
+ const t = `${import_picocolors.default.gray(a)}
15878
+ ${h3(this.state)} ${r2.message}
15679
15879
  `, i2 = this.value ? n : s;
15680
15880
  switch (this.state) {
15681
15881
  case "submit":
15682
- return `${t}${import_picocolors.default.gray(a2)} ${import_picocolors.default.dim(i2)}`;
15882
+ return `${t}${import_picocolors.default.gray(a)} ${import_picocolors.default.dim(i2)}`;
15683
15883
  case "cancel":
15684
- return `${t}${import_picocolors.default.gray(a2)} ${import_picocolors.default.strikethrough(import_picocolors.default.dim(i2))}
15685
- ${import_picocolors.default.gray(a2)}`;
15884
+ return `${t}${import_picocolors.default.gray(a)} ${import_picocolors.default.strikethrough(import_picocolors.default.dim(i2))}
15885
+ ${import_picocolors.default.gray(a)}`;
15686
15886
  default:
15687
- return `${t}${import_picocolors.default.cyan(a2)} ${this.value ? `${import_picocolors.default.green(w4)} ${n}` : `${import_picocolors.default.dim(S4)} ${import_picocolors.default.dim(n)}`} ${import_picocolors.default.dim("/")} ${this.value ? `${import_picocolors.default.dim(S4)} ${import_picocolors.default.dim(s)}` : `${import_picocolors.default.green(w4)} ${s}`}
15887
+ return `${t}${import_picocolors.default.cyan(a)} ${this.value ? `${import_picocolors.default.green(w5)} ${n}` : `${import_picocolors.default.dim(S4)} ${import_picocolors.default.dim(n)}`} ${import_picocolors.default.dim("/")} ${this.value ? `${import_picocolors.default.dim(S4)} ${import_picocolors.default.dim(s)}` : `${import_picocolors.default.green(w5)} ${s}`}
15688
15888
  ${import_picocolors.default.cyan(o)}
15689
15889
  `;
15690
15890
  }
15691
15891
  } }).prompt();
15692
15892
  };
15693
- var ae = (r = "") => {
15694
- process.stdout.write(`${import_picocolors.default.gray(L5)} ${r}
15893
+ var ae = (r2 = "") => {
15894
+ process.stdout.write(`${import_picocolors.default.gray(L5)} ${r2}
15695
15895
  `);
15696
15896
  };
15697
- var ce = (r = "") => {
15698
- process.stdout.write(`${import_picocolors.default.gray(a2)}
15699
- ${import_picocolors.default.gray(o)} ${r}
15897
+ var ce = (r2 = "") => {
15898
+ process.stdout.write(`${import_picocolors.default.gray(a)}
15899
+ ${import_picocolors.default.gray(o)} ${r2}
15700
15900
 
15701
15901
  `);
15702
15902
  };
15703
- var C4 = p2 ? ["\u25D2", "\u25D0", "\u25D3", "\u25D1"] : ["\u2022", "o", "O", "0"];
15903
+ var C3 = p3 ? ["\u25D2", "\u25D0", "\u25D3", "\u25D1"] : ["\u2022", "o", "O", "0"];
15704
15904
  var le = () => {
15705
- let r, n;
15706
- const s = p2 ? 80 : 120;
15905
+ let r2, n;
15906
+ const s = p3 ? 80 : 120;
15707
15907
  return { start(t = "") {
15708
- t = t.replace(/\.?\.?\.$/, ""), r = W3(), process.stdout.write(`${import_picocolors.default.gray(a2)}
15908
+ t = t.replace(/\.?\.?\.$/, ""), r2 = aD2(), process.stdout.write(`${import_picocolors.default.gray(a)}
15709
15909
  ${import_picocolors.default.magenta("\u25CB")} ${t}
15710
15910
  `);
15711
15911
  let i2 = 0, c3 = 0;
15712
15912
  n = setInterval(() => {
15713
- let l2 = C4[i2];
15714
- process.stdout.write(import_sisteransi2.cursor.move(-999, -1)), process.stdout.write(`${import_picocolors.default.magenta(l2)} ${t}${Math.floor(c3) >= 1 ? ".".repeat(Math.floor(c3)).slice(0, 3) : ""}
15715
- `), i2 = i2 === C4.length - 1 ? 0 : i2 + 1, c3 = c3 === C4.length ? 0 : c3 + 0.125;
15913
+ let l = C3[i2];
15914
+ process.stdout.write(import_sisteransi2.cursor.move(-999, -1)), process.stdout.write(`${import_picocolors.default.magenta(l)} ${t}${Math.floor(c3) >= 1 ? ".".repeat(Math.floor(c3)).slice(0, 3) : ""}
15915
+ `), i2 = i2 === C3.length - 1 ? 0 : i2 + 1, c3 = c3 === C3.length ? 0 : c3 + 0.125;
15716
15916
  }, s);
15717
15917
  }, stop(t = "") {
15718
- process.stdout.write(import_sisteransi2.cursor.move(-999, -2)), process.stdout.write(import_sisteransi2.erase.down(2)), clearInterval(n), process.stdout.write(`${import_picocolors.default.gray(a2)}
15918
+ process.stdout.write(import_sisteransi2.cursor.move(-999, -2)), process.stdout.write(import_sisteransi2.erase.down(2)), clearInterval(n), process.stdout.write(`${import_picocolors.default.gray(a)}
15719
15919
  ${import_picocolors.default.green(f2)} ${t}
15720
- `), r();
15920
+ `), r2();
15721
15921
  } };
15722
15922
  };
15723
15923
 
@@ -16370,7 +16570,7 @@ function npmRunPathEnv({ env: env2 = import_node_process4.default.env, ...option
16370
16570
  return env2;
16371
16571
  }
16372
16572
 
16373
- // node_modules/execa/node_modules/mimic-fn/index.js
16573
+ // node_modules/mimic-fn/index.js
16374
16574
  var copyProperty = (to, from, property, ignoreNonConfigurable) => {
16375
16575
  if (property === "length" || property === "prototype") {
16376
16576
  return;
@@ -16415,7 +16615,7 @@ function mimicFunction(to, from, { ignoreNonConfigurable = false } = {}) {
16415
16615
  return to;
16416
16616
  }
16417
16617
 
16418
- // node_modules/execa/node_modules/onetime/index.js
16618
+ // node_modules/onetime/index.js
16419
16619
  var calledFunctions = /* @__PURE__ */ new WeakMap();
16420
16620
  var onetime = (function_, options = {}) => {
16421
16621
  if (typeof function_ !== "function") {
@@ -17540,17 +17740,17 @@ ${source_default.grey("\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2
17540
17740
  ${commitMessage}
17541
17741
  ${source_default.grey("\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014")}`
17542
17742
  );
17543
- const isCommitConfirmedByUser = await Q2({
17743
+ const isCommitConfirmedByUser = await Q3({
17544
17744
  message: "Confirm the commit message"
17545
17745
  });
17546
- if (isCommitConfirmedByUser && !C3(isCommitConfirmedByUser)) {
17746
+ if (isCommitConfirmedByUser && !eD2(isCommitConfirmedByUser)) {
17547
17747
  const { stdout } = await execa("git", ["commit", "-m", commitMessage]);
17548
17748
  ce(`${source_default.green("\u2714")} successfully committed`);
17549
17749
  ce(stdout);
17550
- const isPushConfirmedByUser = await Q2({
17750
+ const isPushConfirmedByUser = await Q3({
17551
17751
  message: "Do you want to run `git push`?"
17552
17752
  });
17553
- if (isPushConfirmedByUser && !C3(isPushConfirmedByUser)) {
17753
+ if (isPushConfirmedByUser && !eD2(isPushConfirmedByUser)) {
17554
17754
  const pushSpinner = le();
17555
17755
  pushSpinner.start("Running `git push`");
17556
17756
  const { stdout: stdout2 } = await execa("git", ["push"]);
@@ -17579,10 +17779,10 @@ async function commit(isStageAllFlag = false) {
17579
17779
  `${source_default.red("Nothing to commit")} \u2014 stage the files ${source_default.hex("0000FF").bold("`git add .`")} and rerun ${source_default.hex("0000FF").bold("`oc`")} command.`
17580
17780
  );
17581
17781
  stagedFilesSpinner.stop("No files are staged");
17582
- const isStageAllAndCommitConfirmedByUser = await Q2({
17782
+ const isStageAllAndCommitConfirmedByUser = await Q3({
17583
17783
  message: "Do you want to stage all files and generate commit message?"
17584
17784
  });
17585
- if (isStageAllAndCommitConfirmedByUser && !C3(isStageAllAndCommitConfirmedByUser)) {
17785
+ if (isStageAllAndCommitConfirmedByUser && !eD2(isStageAllAndCommitConfirmedByUser)) {
17586
17786
  await commit(true);
17587
17787
  }
17588
17788
  process.exit(1);
@@ -17605,16 +17805,11 @@ Z2(
17605
17805
  ignoreArgv: (type) => type === "unknown-flag" || type === "argument",
17606
17806
  help: { description: package_default.description }
17607
17807
  },
17608
- async () => {
17808
+ () => {
17609
17809
  if (isHookCalled) {
17610
- await prepareCommitMessageHook();
17810
+ prepareCommitMessageHook();
17611
17811
  } else {
17612
- await commit();
17613
- const { stdout } = await execa("npm", ["view", "opencommit", "version"]);
17614
- if (stdout !== package_default.version)
17615
- ce(
17616
- "new opencommit version is available, update with `npm i -g opencommit`"
17617
- );
17812
+ commit();
17618
17813
  }
17619
17814
  },
17620
17815
  rawArgv