@modern-js/repo-generator 0.0.0-next-1679490675897 → 0.0.0-next-1679541545516

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/dist/index.js +1986 -264
  2. package/package.json +12 -12
package/dist/index.js CHANGED
@@ -46936,6 +46936,306 @@ var require_browser = __commonJS({
46936
46936
  }
46937
46937
  });
46938
46938
 
46939
+ // ../../../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
46940
+ var require_has_flag = __commonJS({
46941
+ "../../../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports, module2) {
46942
+ "use strict";
46943
+ module2.exports = (flag, argv = process.argv) => {
46944
+ const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
46945
+ const position = argv.indexOf(prefix + flag);
46946
+ const terminatorPosition = argv.indexOf("--");
46947
+ return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
46948
+ };
46949
+ }
46950
+ });
46951
+
46952
+ // ../../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js
46953
+ var require_supports_color = __commonJS({
46954
+ "../../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports, module2) {
46955
+ "use strict";
46956
+ var os = require("os");
46957
+ var tty = require("tty");
46958
+ var hasFlag = require_has_flag();
46959
+ var { env } = process;
46960
+ var forceColor;
46961
+ if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
46962
+ forceColor = 0;
46963
+ } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
46964
+ forceColor = 1;
46965
+ }
46966
+ if ("FORCE_COLOR" in env) {
46967
+ if (env.FORCE_COLOR === "true") {
46968
+ forceColor = 1;
46969
+ } else if (env.FORCE_COLOR === "false") {
46970
+ forceColor = 0;
46971
+ } else {
46972
+ forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
46973
+ }
46974
+ }
46975
+ function translateLevel(level) {
46976
+ if (level === 0) {
46977
+ return false;
46978
+ }
46979
+ return {
46980
+ level,
46981
+ hasBasic: true,
46982
+ has256: level >= 2,
46983
+ has16m: level >= 3
46984
+ };
46985
+ }
46986
+ function supportsColor(haveStream, streamIsTTY) {
46987
+ if (forceColor === 0) {
46988
+ return 0;
46989
+ }
46990
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
46991
+ return 3;
46992
+ }
46993
+ if (hasFlag("color=256")) {
46994
+ return 2;
46995
+ }
46996
+ if (haveStream && !streamIsTTY && forceColor === void 0) {
46997
+ return 0;
46998
+ }
46999
+ const min = forceColor || 0;
47000
+ if (env.TERM === "dumb") {
47001
+ return min;
47002
+ }
47003
+ if (process.platform === "win32") {
47004
+ const osRelease = os.release().split(".");
47005
+ if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
47006
+ return Number(osRelease[2]) >= 14931 ? 3 : 2;
47007
+ }
47008
+ return 1;
47009
+ }
47010
+ if ("CI" in env) {
47011
+ if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
47012
+ return 1;
47013
+ }
47014
+ return min;
47015
+ }
47016
+ if ("TEAMCITY_VERSION" in env) {
47017
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
47018
+ }
47019
+ if (env.COLORTERM === "truecolor") {
47020
+ return 3;
47021
+ }
47022
+ if ("TERM_PROGRAM" in env) {
47023
+ const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
47024
+ switch (env.TERM_PROGRAM) {
47025
+ case "iTerm.app":
47026
+ return version >= 3 ? 3 : 2;
47027
+ case "Apple_Terminal":
47028
+ return 2;
47029
+ }
47030
+ }
47031
+ if (/-256(color)?$/i.test(env.TERM)) {
47032
+ return 2;
47033
+ }
47034
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
47035
+ return 1;
47036
+ }
47037
+ if ("COLORTERM" in env) {
47038
+ return 1;
47039
+ }
47040
+ return min;
47041
+ }
47042
+ function getSupportLevel(stream) {
47043
+ const level = supportsColor(stream, stream && stream.isTTY);
47044
+ return translateLevel(level);
47045
+ }
47046
+ module2.exports = {
47047
+ supportsColor: getSupportLevel,
47048
+ stdout: translateLevel(supportsColor(true, tty.isatty(1))),
47049
+ stderr: translateLevel(supportsColor(true, tty.isatty(2)))
47050
+ };
47051
+ }
47052
+ });
47053
+
47054
+ // ../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js
47055
+ var require_node3 = __commonJS({
47056
+ "../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js"(exports, module2) {
47057
+ var tty = require("tty");
47058
+ var util = require("util");
47059
+ exports.init = init;
47060
+ exports.log = log;
47061
+ exports.formatArgs = formatArgs;
47062
+ exports.save = save;
47063
+ exports.load = load;
47064
+ exports.useColors = useColors;
47065
+ exports.destroy = util.deprecate(
47066
+ () => {
47067
+ },
47068
+ "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
47069
+ );
47070
+ exports.colors = [6, 2, 3, 4, 5, 1];
47071
+ try {
47072
+ const supportsColor = require_supports_color();
47073
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
47074
+ exports.colors = [
47075
+ 20,
47076
+ 21,
47077
+ 26,
47078
+ 27,
47079
+ 32,
47080
+ 33,
47081
+ 38,
47082
+ 39,
47083
+ 40,
47084
+ 41,
47085
+ 42,
47086
+ 43,
47087
+ 44,
47088
+ 45,
47089
+ 56,
47090
+ 57,
47091
+ 62,
47092
+ 63,
47093
+ 68,
47094
+ 69,
47095
+ 74,
47096
+ 75,
47097
+ 76,
47098
+ 77,
47099
+ 78,
47100
+ 79,
47101
+ 80,
47102
+ 81,
47103
+ 92,
47104
+ 93,
47105
+ 98,
47106
+ 99,
47107
+ 112,
47108
+ 113,
47109
+ 128,
47110
+ 129,
47111
+ 134,
47112
+ 135,
47113
+ 148,
47114
+ 149,
47115
+ 160,
47116
+ 161,
47117
+ 162,
47118
+ 163,
47119
+ 164,
47120
+ 165,
47121
+ 166,
47122
+ 167,
47123
+ 168,
47124
+ 169,
47125
+ 170,
47126
+ 171,
47127
+ 172,
47128
+ 173,
47129
+ 178,
47130
+ 179,
47131
+ 184,
47132
+ 185,
47133
+ 196,
47134
+ 197,
47135
+ 198,
47136
+ 199,
47137
+ 200,
47138
+ 201,
47139
+ 202,
47140
+ 203,
47141
+ 204,
47142
+ 205,
47143
+ 206,
47144
+ 207,
47145
+ 208,
47146
+ 209,
47147
+ 214,
47148
+ 215,
47149
+ 220,
47150
+ 221
47151
+ ];
47152
+ }
47153
+ } catch (error) {
47154
+ }
47155
+ exports.inspectOpts = Object.keys(process.env).filter((key) => {
47156
+ return /^debug_/i.test(key);
47157
+ }).reduce((obj, key) => {
47158
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
47159
+ return k.toUpperCase();
47160
+ });
47161
+ let val = process.env[key];
47162
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
47163
+ val = true;
47164
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
47165
+ val = false;
47166
+ } else if (val === "null") {
47167
+ val = null;
47168
+ } else {
47169
+ val = Number(val);
47170
+ }
47171
+ obj[prop] = val;
47172
+ return obj;
47173
+ }, {});
47174
+ function useColors() {
47175
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
47176
+ }
47177
+ function formatArgs(args) {
47178
+ const { namespace: name, useColors: useColors2 } = this;
47179
+ if (useColors2) {
47180
+ const c = this.color;
47181
+ const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
47182
+ const prefix = ` ${colorCode};1m${name} \x1B[0m`;
47183
+ args[0] = prefix + args[0].split("\n").join("\n" + prefix);
47184
+ args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
47185
+ } else {
47186
+ args[0] = getDate() + name + " " + args[0];
47187
+ }
47188
+ }
47189
+ function getDate() {
47190
+ if (exports.inspectOpts.hideDate) {
47191
+ return "";
47192
+ }
47193
+ return (/* @__PURE__ */ new Date()).toISOString() + " ";
47194
+ }
47195
+ function log(...args) {
47196
+ return process.stderr.write(util.format(...args) + "\n");
47197
+ }
47198
+ function save(namespaces) {
47199
+ if (namespaces) {
47200
+ process.env.DEBUG = namespaces;
47201
+ } else {
47202
+ delete process.env.DEBUG;
47203
+ }
47204
+ }
47205
+ function load() {
47206
+ return process.env.DEBUG;
47207
+ }
47208
+ function init(debug2) {
47209
+ debug2.inspectOpts = {};
47210
+ const keys = Object.keys(exports.inspectOpts);
47211
+ for (let i = 0; i < keys.length; i++) {
47212
+ debug2.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
47213
+ }
47214
+ }
47215
+ module2.exports = require_common2()(exports);
47216
+ var { formatters } = module2.exports;
47217
+ formatters.o = function(v) {
47218
+ this.inspectOpts.colors = this.useColors;
47219
+ return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
47220
+ };
47221
+ formatters.O = function(v) {
47222
+ this.inspectOpts.colors = this.useColors;
47223
+ return util.inspect(v, this.inspectOpts);
47224
+ };
47225
+ }
47226
+ });
47227
+
47228
+ // ../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js
47229
+ var require_src3 = __commonJS({
47230
+ "../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js"(exports, module2) {
47231
+ if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
47232
+ module2.exports = require_browser();
47233
+ } else {
47234
+ module2.exports = require_node3();
47235
+ }
47236
+ }
47237
+ });
47238
+
46939
47239
  // ../../../../node_modules/.pnpm/follow-redirects@1.15.1/node_modules/follow-redirects/debug.js
46940
47240
  var require_debug3 = __commonJS({
46941
47241
  "../../../../node_modules/.pnpm/follow-redirects@1.15.1/node_modules/follow-redirects/debug.js"(exports, module2) {
@@ -46943,7 +47243,7 @@ var require_debug3 = __commonJS({
46943
47243
  module2.exports = function() {
46944
47244
  if (!debug2) {
46945
47245
  try {
46946
- debug2 = require_browser()("follow-redirects");
47246
+ debug2 = require_src3()("follow-redirects");
46947
47247
  } catch (error) {
46948
47248
  }
46949
47249
  if (typeof debug2 !== "function") {
@@ -54077,7 +54377,7 @@ var require_codesmith = __commonJS({
54077
54377
  });
54078
54378
 
54079
54379
  // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith/dist/js/node/index.js
54080
- var require_node3 = __commonJS({
54380
+ var require_node4 = __commonJS({
54081
54381
  "../../../../node_modules/.pnpm/@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith/dist/js/node/index.js"(exports) {
54082
54382
  "use strict";
54083
54383
  Object.defineProperty(exports, "__esModule", {
@@ -60101,7 +60401,7 @@ var require_utils6 = __commonJS({
60101
60401
  });
60102
60402
 
60103
60403
  // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-handlebars/dist/js/node/index.js
60104
- var require_node4 = __commonJS({
60404
+ var require_node5 = __commonJS({
60105
60405
  "../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-handlebars/dist/js/node/index.js"(exports) {
60106
60406
  "use strict";
60107
60407
  Object.defineProperty(exports, "__esModule", {
@@ -60114,7 +60414,7 @@ var require_node4 = __commonJS({
60114
60414
  return _utils.renderString;
60115
60415
  }
60116
60416
  });
60117
- var _codesmith = require_node3();
60417
+ var _codesmith = require_node4();
60118
60418
  var _utils = require_utils6();
60119
60419
  function ownKeys7(object, enumerableOnly) {
60120
60420
  var keys = Object.keys(object);
@@ -60942,7 +61242,7 @@ var require_utils8 = __commonJS({
60942
61242
  });
60943
61243
 
60944
61244
  // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-ejs/dist/js/node/index.js
60945
- var require_node5 = __commonJS({
61245
+ var require_node6 = __commonJS({
60946
61246
  "../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-ejs/dist/js/node/index.js"(exports) {
60947
61247
  "use strict";
60948
61248
  Object.defineProperty(exports, "__esModule", {
@@ -60955,7 +61255,7 @@ var require_node5 = __commonJS({
60955
61255
  return _utils.renderString;
60956
61256
  }
60957
61257
  });
60958
- var _codesmith = require_node3();
61258
+ var _codesmith = require_node4();
60959
61259
  var _utils = require_utils8();
60960
61260
  function _defineProperty14(obj, key, value) {
60961
61261
  if (key in obj) {
@@ -61015,7 +61315,7 @@ var require_constant = __commonJS({
61015
61315
  });
61016
61316
 
61017
61317
  // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-fs/dist/js/node/index.js
61018
- var require_node6 = __commonJS({
61318
+ var require_node7 = __commonJS({
61019
61319
  "../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-fs/dist/js/node/index.js"(exports) {
61020
61320
  "use strict";
61021
61321
  Object.defineProperty(exports, "__esModule", {
@@ -61023,7 +61323,7 @@ var require_node6 = __commonJS({
61023
61323
  });
61024
61324
  exports.FsAPI = void 0;
61025
61325
  var _path = _interopRequireDefault(require("path"));
61026
- var _codesmith = require_node3();
61326
+ var _codesmith = require_node4();
61027
61327
  var _constant = require_constant();
61028
61328
  function _interopRequireDefault(obj) {
61029
61329
  return obj && obj.__esModule ? obj : { default: obj };
@@ -65351,10 +65651,10 @@ var init_esm3 = __esm({
65351
65651
  }
65352
65652
  });
65353
65653
 
65354
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/shared.js
65654
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/shared.js
65355
65655
  var REVA_ACTIONS_KEY, SchemaNestedMap, SchemaStateMap, SchemaValidatorMap, SchemaNormalKeys, SchemaValidatorKeys, hasOwnProperty4, traverse, traverseSchema, isNoNeedCompileObject, createDataSource, patchStateFormSchema;
65356
65656
  var init_shared2 = __esm({
65357
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/shared.js"() {
65657
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/shared.js"() {
65358
65658
  init_esm2();
65359
65659
  init_esm3();
65360
65660
  init_schema();
@@ -65546,10 +65846,10 @@ var init_shared2 = __esm({
65546
65846
  }
65547
65847
  });
65548
65848
 
65549
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/compiler.js
65849
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/compiler.js
65550
65850
  var ExpRE, Registry, silent, registerCompiler, shallowCompile, compile, patchCompile, patchSchemaCompile;
65551
65851
  var init_compiler = __esm({
65552
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/compiler.js"() {
65852
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/compiler.js"() {
65553
65853
  init_esm2();
65554
65854
  init_esm3();
65555
65855
  init_shared2();
@@ -70538,10 +70838,10 @@ var init_esm5 = __esm({
70538
70838
  }
70539
70839
  });
70540
70840
 
70541
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/transformer.js
70841
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/transformer.js
70542
70842
  var __read7, FieldEffects, DefaultFieldEffects, getDependencyValue, getDependencies, setSchemaFieldState, getBaseScope, getBaseReactions, getUserReactions, transformFieldProps;
70543
70843
  var init_transformer = __esm({
70544
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/transformer.js"() {
70844
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/transformer.js"() {
70545
70845
  init_esm3();
70546
70846
  init_esm2();
70547
70847
  init_esm5();
@@ -70746,10 +71046,10 @@ var init_transformer = __esm({
70746
71046
  }
70747
71047
  });
70748
71048
 
70749
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/patches.js
71049
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/patches.js
70750
71050
  var __assign9, patches, polyfills, reducePatches, registerPatches, registerPolyfills, enablePolyfills;
70751
71051
  var init_patches = __esm({
70752
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/patches.js"() {
71052
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/patches.js"() {
70753
71053
  init_esm2();
70754
71054
  __assign9 = function() {
70755
71055
  __assign9 = Object.assign || function(t) {
@@ -70801,10 +71101,10 @@ var init_patches = __esm({
70801
71101
  }
70802
71102
  });
70803
71103
 
70804
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js
71104
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js
70805
71105
  var __assign10, __read8, __spreadArray7, VOID_COMPONENTS, TYPE_DEFAULT_COMPONENTS, transformCondition, transformXLinkage, SpecificationV1Polyfill, registerVoidComponents, registerTypeDefaultComponents;
70806
71106
  var init_SPECIFICATION_1_0 = __esm({
70807
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js"() {
71107
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js"() {
70808
71108
  init_patches();
70809
71109
  init_esm2();
70810
71110
  __assign10 = function() {
@@ -70965,17 +71265,17 @@ var init_SPECIFICATION_1_0 = __esm({
70965
71265
  }
70966
71266
  });
70967
71267
 
70968
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/polyfills/index.js
71268
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/polyfills/index.js
70969
71269
  var init_polyfills = __esm({
70970
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/polyfills/index.js"() {
71270
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/polyfills/index.js"() {
70971
71271
  init_SPECIFICATION_1_0();
70972
71272
  }
70973
71273
  });
70974
71274
 
70975
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/schema.js
71275
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/schema.js
70976
71276
  var Schema;
70977
71277
  var init_schema = __esm({
70978
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/schema.js"() {
71278
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/schema.js"() {
70979
71279
  init_esm2();
70980
71280
  init_compiler();
70981
71281
  init_transformer();
@@ -71124,114 +71424,1352 @@ var init_schema = __esm({
71124
71424
  _this[key] = value;
71125
71425
  }
71126
71426
  });
71127
- return _this;
71128
- };
71129
- this.toJSON = function(recursion) {
71130
- if (recursion === void 0) {
71131
- recursion = true;
71427
+ return _this;
71428
+ };
71429
+ this.toJSON = function(recursion) {
71430
+ if (recursion === void 0) {
71431
+ recursion = true;
71432
+ }
71433
+ var results = {};
71434
+ each(_this, function(value, key) {
71435
+ var _a2, _b;
71436
+ if (isFn(value) && !key.includes("x-") || key === "parent" || key === "root")
71437
+ return;
71438
+ if (key === "properties" || key === "patternProperties") {
71439
+ if (!recursion)
71440
+ return;
71441
+ results[key] = map(value, function(item) {
71442
+ var _a3;
71443
+ return (_a3 = item === null || item === void 0 ? void 0 : item.toJSON) === null || _a3 === void 0 ? void 0 : _a3.call(item);
71444
+ });
71445
+ } else if (key === "additionalProperties" || key === "additionalItems") {
71446
+ if (!recursion)
71447
+ return;
71448
+ results[key] = (_a2 = value === null || value === void 0 ? void 0 : value.toJSON) === null || _a2 === void 0 ? void 0 : _a2.call(value);
71449
+ } else if (key === "items") {
71450
+ if (!recursion)
71451
+ return;
71452
+ if (Array.isArray(value)) {
71453
+ results[key] = value.map(function(item) {
71454
+ var _a3;
71455
+ return (_a3 = item === null || item === void 0 ? void 0 : item.toJSON) === null || _a3 === void 0 ? void 0 : _a3.call(item);
71456
+ });
71457
+ } else {
71458
+ results[key] = (_b = value === null || value === void 0 ? void 0 : value.toJSON) === null || _b === void 0 ? void 0 : _b.call(value);
71459
+ }
71460
+ } else {
71461
+ results[key] = value;
71462
+ }
71463
+ });
71464
+ return results;
71465
+ };
71466
+ this.toFieldProps = function(options) {
71467
+ return transformFieldProps(_this, options);
71468
+ };
71469
+ if (parent) {
71470
+ this.parent = parent;
71471
+ this.root = parent.root;
71472
+ } else {
71473
+ this.root = this;
71474
+ }
71475
+ return this.fromJSON(json);
71476
+ }
71477
+ Schema2.getOrderProperties = function(schema, propertiesName) {
71478
+ if (schema === void 0) {
71479
+ schema = {};
71480
+ }
71481
+ if (propertiesName === void 0) {
71482
+ propertiesName = "properties";
71483
+ }
71484
+ var orderProperties = [];
71485
+ var unorderProperties = [];
71486
+ for (var key in schema[propertiesName]) {
71487
+ var item = schema[propertiesName][key];
71488
+ var index = item["x-index"];
71489
+ if (!isNaN(index)) {
71490
+ orderProperties[index] = { schema: item, key };
71491
+ } else {
71492
+ unorderProperties.push({ schema: item, key });
71493
+ }
71494
+ }
71495
+ return orderProperties.concat(unorderProperties).filter(function(item2) {
71496
+ return !!item2;
71497
+ });
71498
+ };
71499
+ Schema2.compile = function(expression, scope) {
71500
+ return compile(expression, scope);
71501
+ };
71502
+ Schema2.shallowCompile = function(expression, scope) {
71503
+ return shallowCompile(expression, scope);
71504
+ };
71505
+ Schema2.isSchemaInstance = function(value) {
71506
+ return instOf(value, Schema2);
71507
+ };
71508
+ Schema2.registerCompiler = registerCompiler;
71509
+ Schema2.registerPatches = registerPatches;
71510
+ Schema2.registerVoidComponents = registerVoidComponents;
71511
+ Schema2.registerTypeDefaultComponents = registerTypeDefaultComponents;
71512
+ Schema2.registerPolyfills = registerPolyfills;
71513
+ Schema2.enablePolyfills = enablePolyfills;
71514
+ Schema2.silent = silent;
71515
+ return Schema2;
71516
+ }();
71517
+ }
71518
+ });
71519
+
71520
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/types.js
71521
+ var init_types6 = __esm({
71522
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/types.js"() {
71523
+ }
71524
+ });
71525
+
71526
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/index.js
71527
+ var esm_exports2 = {};
71528
+ __export(esm_exports2, {
71529
+ Schema: () => Schema
71530
+ });
71531
+ var init_esm6 = __esm({
71532
+ "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.5/node_modules/@formily/json-schema/esm/index.js"() {
71533
+ init_schema();
71534
+ init_types6();
71535
+ }
71536
+ });
71537
+
71538
+ // ../../../../node_modules/.pnpm/@modern-js+utils@1.22.7/node_modules/@modern-js/utils/compiled/chalk/index.js
71539
+ var require_chalk2 = __commonJS({
71540
+ "../../../../node_modules/.pnpm/@modern-js+utils@1.22.7/node_modules/@modern-js/utils/compiled/chalk/index.js"(exports, module2) {
71541
+ (() => {
71542
+ var e = { 44: (e2, t2, n2) => {
71543
+ "use strict";
71544
+ e2 = n2.nmd(e2);
71545
+ const wrapAnsi16 = (e3, t3) => (...n3) => {
71546
+ const r2 = e3(...n3);
71547
+ return `\x1B[${r2 + t3}m`;
71548
+ };
71549
+ const wrapAnsi256 = (e3, t3) => (...n3) => {
71550
+ const r2 = e3(...n3);
71551
+ return `\x1B[${38 + t3};5;${r2}m`;
71552
+ };
71553
+ const wrapAnsi16m = (e3, t3) => (...n3) => {
71554
+ const r2 = e3(...n3);
71555
+ return `\x1B[${38 + t3};2;${r2[0]};${r2[1]};${r2[2]}m`;
71556
+ };
71557
+ const ansi2ansi = (e3) => e3;
71558
+ const rgb2rgb = (e3, t3, n3) => [e3, t3, n3];
71559
+ const setLazyProperty = (e3, t3, n3) => {
71560
+ Object.defineProperty(e3, t3, { get: () => {
71561
+ const r2 = n3();
71562
+ Object.defineProperty(e3, t3, { value: r2, enumerable: true, configurable: true });
71563
+ return r2;
71564
+ }, enumerable: true, configurable: true });
71565
+ };
71566
+ let r;
71567
+ const makeDynamicStyles = (e3, t3, s, o) => {
71568
+ if (r === void 0) {
71569
+ r = n2(767);
71570
+ }
71571
+ const l = o ? 10 : 0;
71572
+ const c = {};
71573
+ for (const [n3, o2] of Object.entries(r)) {
71574
+ const r2 = n3 === "ansi16" ? "ansi" : n3;
71575
+ if (n3 === t3) {
71576
+ c[r2] = e3(s, l);
71577
+ } else if (typeof o2 === "object") {
71578
+ c[r2] = e3(o2[t3], l);
71579
+ }
71580
+ }
71581
+ return c;
71582
+ };
71583
+ function assembleStyles() {
71584
+ const e3 = /* @__PURE__ */ new Map();
71585
+ const t3 = { modifier: { reset: [0, 0], bold: [1, 22], dim: [2, 22], italic: [3, 23], underline: [4, 24], 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] } };
71586
+ t3.color.gray = t3.color.blackBright;
71587
+ t3.bgColor.bgGray = t3.bgColor.bgBlackBright;
71588
+ t3.color.grey = t3.color.blackBright;
71589
+ t3.bgColor.bgGrey = t3.bgColor.bgBlackBright;
71590
+ for (const [n3, r2] of Object.entries(t3)) {
71591
+ for (const [n4, s] of Object.entries(r2)) {
71592
+ t3[n4] = { open: `\x1B[${s[0]}m`, close: `\x1B[${s[1]}m` };
71593
+ r2[n4] = t3[n4];
71594
+ e3.set(s[0], s[1]);
71595
+ }
71596
+ Object.defineProperty(t3, n3, { value: r2, enumerable: false });
71597
+ }
71598
+ Object.defineProperty(t3, "codes", { value: e3, enumerable: false });
71599
+ t3.color.close = "\x1B[39m";
71600
+ t3.bgColor.close = "\x1B[49m";
71601
+ setLazyProperty(t3.color, "ansi", () => makeDynamicStyles(wrapAnsi16, "ansi16", ansi2ansi, false));
71602
+ setLazyProperty(t3.color, "ansi256", () => makeDynamicStyles(wrapAnsi256, "ansi256", ansi2ansi, false));
71603
+ setLazyProperty(t3.color, "ansi16m", () => makeDynamicStyles(wrapAnsi16m, "rgb", rgb2rgb, false));
71604
+ setLazyProperty(t3.bgColor, "ansi", () => makeDynamicStyles(wrapAnsi16, "ansi16", ansi2ansi, true));
71605
+ setLazyProperty(t3.bgColor, "ansi256", () => makeDynamicStyles(wrapAnsi256, "ansi256", ansi2ansi, true));
71606
+ setLazyProperty(t3.bgColor, "ansi16m", () => makeDynamicStyles(wrapAnsi16m, "rgb", rgb2rgb, true));
71607
+ return t3;
71608
+ }
71609
+ Object.defineProperty(e2, "exports", { enumerable: true, get: assembleStyles });
71610
+ }, 584: (e2, t2, n2) => {
71611
+ "use strict";
71612
+ const r = n2(44);
71613
+ const { stdout: s, stderr: o } = n2(242);
71614
+ const { stringReplaceAll: l, stringEncaseCRLFWithFirstIndex: c } = n2(905);
71615
+ const { isArray: i } = Array;
71616
+ const a = ["ansi", "ansi", "ansi256", "ansi16m"];
71617
+ const u = /* @__PURE__ */ Object.create(null);
71618
+ const applyOptions = (e3, t3 = {}) => {
71619
+ if (t3.level && !(Number.isInteger(t3.level) && t3.level >= 0 && t3.level <= 3)) {
71620
+ throw new Error("The `level` option should be an integer from 0 to 3");
71621
+ }
71622
+ const n3 = s ? s.level : 0;
71623
+ e3.level = t3.level === void 0 ? n3 : t3.level;
71624
+ };
71625
+ class ChalkClass {
71626
+ constructor(e3) {
71627
+ return chalkFactory(e3);
71628
+ }
71629
+ }
71630
+ const chalkFactory = (e3) => {
71631
+ const t3 = {};
71632
+ applyOptions(t3, e3);
71633
+ t3.template = (...e4) => chalkTag(t3.template, ...e4);
71634
+ Object.setPrototypeOf(t3, Chalk.prototype);
71635
+ Object.setPrototypeOf(t3.template, t3);
71636
+ t3.template.constructor = () => {
71637
+ throw new Error("`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.");
71638
+ };
71639
+ t3.template.Instance = ChalkClass;
71640
+ return t3.template;
71641
+ };
71642
+ function Chalk(e3) {
71643
+ return chalkFactory(e3);
71644
+ }
71645
+ for (const [e3, t3] of Object.entries(r)) {
71646
+ u[e3] = { get() {
71647
+ const n3 = createBuilder(this, createStyler(t3.open, t3.close, this._styler), this._isEmpty);
71648
+ Object.defineProperty(this, e3, { value: n3 });
71649
+ return n3;
71650
+ } };
71651
+ }
71652
+ u.visible = { get() {
71653
+ const e3 = createBuilder(this, this._styler, true);
71654
+ Object.defineProperty(this, "visible", { value: e3 });
71655
+ return e3;
71656
+ } };
71657
+ const h = ["rgb", "hex", "keyword", "hsl", "hsv", "hwb", "ansi", "ansi256"];
71658
+ for (const e3 of h) {
71659
+ u[e3] = { get() {
71660
+ const { level: t3 } = this;
71661
+ return function(...n3) {
71662
+ const s2 = createStyler(r.color[a[t3]][e3](...n3), r.color.close, this._styler);
71663
+ return createBuilder(this, s2, this._isEmpty);
71664
+ };
71665
+ } };
71666
+ }
71667
+ for (const e3 of h) {
71668
+ const t3 = "bg" + e3[0].toUpperCase() + e3.slice(1);
71669
+ u[t3] = { get() {
71670
+ const { level: t4 } = this;
71671
+ return function(...n3) {
71672
+ const s2 = createStyler(r.bgColor[a[t4]][e3](...n3), r.bgColor.close, this._styler);
71673
+ return createBuilder(this, s2, this._isEmpty);
71674
+ };
71675
+ } };
71676
+ }
71677
+ const f = Object.defineProperties(() => {
71678
+ }, __spreadProps(__spreadValues({}, u), { level: { enumerable: true, get() {
71679
+ return this._generator.level;
71680
+ }, set(e3) {
71681
+ this._generator.level = e3;
71682
+ } } }));
71683
+ const createStyler = (e3, t3, n3) => {
71684
+ let r2;
71685
+ let s2;
71686
+ if (n3 === void 0) {
71687
+ r2 = e3;
71688
+ s2 = t3;
71689
+ } else {
71690
+ r2 = n3.openAll + e3;
71691
+ s2 = t3 + n3.closeAll;
71692
+ }
71693
+ return { open: e3, close: t3, openAll: r2, closeAll: s2, parent: n3 };
71694
+ };
71695
+ const createBuilder = (e3, t3, n3) => {
71696
+ const builder = (...e4) => {
71697
+ if (i(e4[0]) && i(e4[0].raw)) {
71698
+ return applyStyle(builder, chalkTag(builder, ...e4));
71699
+ }
71700
+ return applyStyle(builder, e4.length === 1 ? "" + e4[0] : e4.join(" "));
71701
+ };
71702
+ Object.setPrototypeOf(builder, f);
71703
+ builder._generator = e3;
71704
+ builder._styler = t3;
71705
+ builder._isEmpty = n3;
71706
+ return builder;
71707
+ };
71708
+ const applyStyle = (e3, t3) => {
71709
+ if (e3.level <= 0 || !t3) {
71710
+ return e3._isEmpty ? "" : t3;
71711
+ }
71712
+ let n3 = e3._styler;
71713
+ if (n3 === void 0) {
71714
+ return t3;
71715
+ }
71716
+ const { openAll: r2, closeAll: s2 } = n3;
71717
+ if (t3.indexOf("\x1B") !== -1) {
71718
+ while (n3 !== void 0) {
71719
+ t3 = l(t3, n3.close, n3.open);
71720
+ n3 = n3.parent;
71721
+ }
71722
+ }
71723
+ const o2 = t3.indexOf("\n");
71724
+ if (o2 !== -1) {
71725
+ t3 = c(t3, s2, r2, o2);
71726
+ }
71727
+ return r2 + t3 + s2;
71728
+ };
71729
+ let g;
71730
+ const chalkTag = (e3, ...t3) => {
71731
+ const [r2] = t3;
71732
+ if (!i(r2) || !i(r2.raw)) {
71733
+ return t3.join(" ");
71734
+ }
71735
+ const s2 = t3.slice(1);
71736
+ const o2 = [r2.raw[0]];
71737
+ for (let e4 = 1; e4 < r2.length; e4++) {
71738
+ o2.push(String(s2[e4 - 1]).replace(/[{}\\]/g, "\\$&"), String(r2.raw[e4]));
71739
+ }
71740
+ if (g === void 0) {
71741
+ g = n2(654);
71742
+ }
71743
+ return g(e3, o2.join(""));
71744
+ };
71745
+ Object.defineProperties(Chalk.prototype, u);
71746
+ const b = Chalk();
71747
+ b.supportsColor = s;
71748
+ b.stderr = Chalk({ level: o ? o.level : 0 });
71749
+ b.stderr.supportsColor = o;
71750
+ e2.exports = b;
71751
+ }, 654: (e2) => {
71752
+ "use strict";
71753
+ const t2 = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
71754
+ const n2 = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
71755
+ const r = /^(['"])((?:\\.|(?!\1)[^\\])*)\1$/;
71756
+ const s = /\\(u(?:[a-f\d]{4}|{[a-f\d]{1,6}})|x[a-f\d]{2}|.)|([^\\])/gi;
71757
+ const o = /* @__PURE__ */ new Map([["n", "\n"], ["r", "\r"], ["t", " "], ["b", "\b"], ["f", "\f"], ["v", "\v"], ["0", "\0"], ["\\", "\\"], ["e", "\x1B"], ["a", "\x07"]]);
71758
+ function unescape2(e3) {
71759
+ const t3 = e3[0] === "u";
71760
+ const n3 = e3[1] === "{";
71761
+ if (t3 && !n3 && e3.length === 5 || e3[0] === "x" && e3.length === 3) {
71762
+ return String.fromCharCode(parseInt(e3.slice(1), 16));
71763
+ }
71764
+ if (t3 && n3) {
71765
+ return String.fromCodePoint(parseInt(e3.slice(2, -1), 16));
71766
+ }
71767
+ return o.get(e3) || e3;
71768
+ }
71769
+ function parseArguments(e3, t3) {
71770
+ const n3 = [];
71771
+ const o2 = t3.trim().split(/\s*,\s*/g);
71772
+ let l;
71773
+ for (const t4 of o2) {
71774
+ const o3 = Number(t4);
71775
+ if (!Number.isNaN(o3)) {
71776
+ n3.push(o3);
71777
+ } else if (l = t4.match(r)) {
71778
+ n3.push(l[2].replace(s, (e4, t5, n4) => t5 ? unescape2(t5) : n4));
71779
+ } else {
71780
+ throw new Error(`Invalid Chalk template style argument: ${t4} (in style '${e3}')`);
71781
+ }
71782
+ }
71783
+ return n3;
71784
+ }
71785
+ function parseStyle(e3) {
71786
+ n2.lastIndex = 0;
71787
+ const t3 = [];
71788
+ let r2;
71789
+ while ((r2 = n2.exec(e3)) !== null) {
71790
+ const e4 = r2[1];
71791
+ if (r2[2]) {
71792
+ const n3 = parseArguments(e4, r2[2]);
71793
+ t3.push([e4].concat(n3));
71794
+ } else {
71795
+ t3.push([e4]);
71796
+ }
71797
+ }
71798
+ return t3;
71799
+ }
71800
+ function buildStyle(e3, t3) {
71801
+ const n3 = {};
71802
+ for (const e4 of t3) {
71803
+ for (const t4 of e4.styles) {
71804
+ n3[t4[0]] = e4.inverse ? null : t4.slice(1);
71805
+ }
71806
+ }
71807
+ let r2 = e3;
71808
+ for (const [e4, t4] of Object.entries(n3)) {
71809
+ if (!Array.isArray(t4)) {
71810
+ continue;
71811
+ }
71812
+ if (!(e4 in r2)) {
71813
+ throw new Error(`Unknown Chalk style: ${e4}`);
71814
+ }
71815
+ r2 = t4.length > 0 ? r2[e4](...t4) : r2[e4];
71816
+ }
71817
+ return r2;
71818
+ }
71819
+ e2.exports = (e3, n3) => {
71820
+ const r2 = [];
71821
+ const s2 = [];
71822
+ let o2 = [];
71823
+ n3.replace(t2, (t3, n4, l, c, i, a) => {
71824
+ if (n4) {
71825
+ o2.push(unescape2(n4));
71826
+ } else if (c) {
71827
+ const t4 = o2.join("");
71828
+ o2 = [];
71829
+ s2.push(r2.length === 0 ? t4 : buildStyle(e3, r2)(t4));
71830
+ r2.push({ inverse: l, styles: parseStyle(c) });
71831
+ } else if (i) {
71832
+ if (r2.length === 0) {
71833
+ throw new Error("Found extraneous } in Chalk template literal");
71834
+ }
71835
+ s2.push(buildStyle(e3, r2)(o2.join("")));
71836
+ o2 = [];
71837
+ r2.pop();
71838
+ } else {
71839
+ o2.push(a);
71840
+ }
71841
+ });
71842
+ s2.push(o2.join(""));
71843
+ if (r2.length > 0) {
71844
+ const e4 = `Chalk template literal is missing ${r2.length} closing bracket${r2.length === 1 ? "" : "s"} (\`}\`)`;
71845
+ throw new Error(e4);
71846
+ }
71847
+ return s2.join("");
71848
+ };
71849
+ }, 905: (e2) => {
71850
+ "use strict";
71851
+ const stringReplaceAll = (e3, t2, n2) => {
71852
+ let r = e3.indexOf(t2);
71853
+ if (r === -1) {
71854
+ return e3;
71855
+ }
71856
+ const s = t2.length;
71857
+ let o = 0;
71858
+ let l = "";
71859
+ do {
71860
+ l += e3.substr(o, r - o) + t2 + n2;
71861
+ o = r + s;
71862
+ r = e3.indexOf(t2, o);
71863
+ } while (r !== -1);
71864
+ l += e3.substr(o);
71865
+ return l;
71866
+ };
71867
+ const stringEncaseCRLFWithFirstIndex = (e3, t2, n2, r) => {
71868
+ let s = 0;
71869
+ let o = "";
71870
+ do {
71871
+ const l = e3[r - 1] === "\r";
71872
+ o += e3.substr(s, (l ? r - 1 : r) - s) + t2 + (l ? "\r\n" : "\n") + n2;
71873
+ s = r + 1;
71874
+ r = e3.indexOf("\n", s);
71875
+ } while (r !== -1);
71876
+ o += e3.substr(s);
71877
+ return o;
71878
+ };
71879
+ e2.exports = { stringReplaceAll, stringEncaseCRLFWithFirstIndex };
71880
+ }, 226: (e2, t2, n2) => {
71881
+ const r = n2(866);
71882
+ const s = {};
71883
+ for (const e3 of Object.keys(r)) {
71884
+ s[r[e3]] = e3;
71885
+ }
71886
+ const o = { rgb: { channels: 3, labels: "rgb" }, hsl: { channels: 3, labels: "hsl" }, hsv: { channels: 3, labels: "hsv" }, hwb: { channels: 3, labels: "hwb" }, cmyk: { channels: 4, labels: "cmyk" }, xyz: { channels: 3, labels: "xyz" }, lab: { channels: 3, labels: "lab" }, lch: { channels: 3, labels: "lch" }, hex: { channels: 1, labels: ["hex"] }, keyword: { channels: 1, labels: ["keyword"] }, ansi16: { channels: 1, labels: ["ansi16"] }, ansi256: { channels: 1, labels: ["ansi256"] }, hcg: { channels: 3, labels: ["h", "c", "g"] }, apple: { channels: 3, labels: ["r16", "g16", "b16"] }, gray: { channels: 1, labels: ["gray"] } };
71887
+ e2.exports = o;
71888
+ for (const e3 of Object.keys(o)) {
71889
+ if (!("channels" in o[e3])) {
71890
+ throw new Error("missing channels property: " + e3);
71891
+ }
71892
+ if (!("labels" in o[e3])) {
71893
+ throw new Error("missing channel labels property: " + e3);
71894
+ }
71895
+ if (o[e3].labels.length !== o[e3].channels) {
71896
+ throw new Error("channel and label counts mismatch: " + e3);
71897
+ }
71898
+ const { channels: t3, labels: n3 } = o[e3];
71899
+ delete o[e3].channels;
71900
+ delete o[e3].labels;
71901
+ Object.defineProperty(o[e3], "channels", { value: t3 });
71902
+ Object.defineProperty(o[e3], "labels", { value: n3 });
71903
+ }
71904
+ o.rgb.hsl = function(e3) {
71905
+ const t3 = e3[0] / 255;
71906
+ const n3 = e3[1] / 255;
71907
+ const r2 = e3[2] / 255;
71908
+ const s2 = Math.min(t3, n3, r2);
71909
+ const o2 = Math.max(t3, n3, r2);
71910
+ const l = o2 - s2;
71911
+ let c;
71912
+ let i;
71913
+ if (o2 === s2) {
71914
+ c = 0;
71915
+ } else if (t3 === o2) {
71916
+ c = (n3 - r2) / l;
71917
+ } else if (n3 === o2) {
71918
+ c = 2 + (r2 - t3) / l;
71919
+ } else if (r2 === o2) {
71920
+ c = 4 + (t3 - n3) / l;
71921
+ }
71922
+ c = Math.min(c * 60, 360);
71923
+ if (c < 0) {
71924
+ c += 360;
71925
+ }
71926
+ const a = (s2 + o2) / 2;
71927
+ if (o2 === s2) {
71928
+ i = 0;
71929
+ } else if (a <= 0.5) {
71930
+ i = l / (o2 + s2);
71931
+ } else {
71932
+ i = l / (2 - o2 - s2);
71933
+ }
71934
+ return [c, i * 100, a * 100];
71935
+ };
71936
+ o.rgb.hsv = function(e3) {
71937
+ let t3;
71938
+ let n3;
71939
+ let r2;
71940
+ let s2;
71941
+ let o2;
71942
+ const l = e3[0] / 255;
71943
+ const c = e3[1] / 255;
71944
+ const i = e3[2] / 255;
71945
+ const a = Math.max(l, c, i);
71946
+ const u = a - Math.min(l, c, i);
71947
+ const diffc = function(e4) {
71948
+ return (a - e4) / 6 / u + 1 / 2;
71949
+ };
71950
+ if (u === 0) {
71951
+ s2 = 0;
71952
+ o2 = 0;
71953
+ } else {
71954
+ o2 = u / a;
71955
+ t3 = diffc(l);
71956
+ n3 = diffc(c);
71957
+ r2 = diffc(i);
71958
+ if (l === a) {
71959
+ s2 = r2 - n3;
71960
+ } else if (c === a) {
71961
+ s2 = 1 / 3 + t3 - r2;
71962
+ } else if (i === a) {
71963
+ s2 = 2 / 3 + n3 - t3;
71964
+ }
71965
+ if (s2 < 0) {
71966
+ s2 += 1;
71967
+ } else if (s2 > 1) {
71968
+ s2 -= 1;
71969
+ }
71970
+ }
71971
+ return [s2 * 360, o2 * 100, a * 100];
71972
+ };
71973
+ o.rgb.hwb = function(e3) {
71974
+ const t3 = e3[0];
71975
+ const n3 = e3[1];
71976
+ let r2 = e3[2];
71977
+ const s2 = o.rgb.hsl(e3)[0];
71978
+ const l = 1 / 255 * Math.min(t3, Math.min(n3, r2));
71979
+ r2 = 1 - 1 / 255 * Math.max(t3, Math.max(n3, r2));
71980
+ return [s2, l * 100, r2 * 100];
71981
+ };
71982
+ o.rgb.cmyk = function(e3) {
71983
+ const t3 = e3[0] / 255;
71984
+ const n3 = e3[1] / 255;
71985
+ const r2 = e3[2] / 255;
71986
+ const s2 = Math.min(1 - t3, 1 - n3, 1 - r2);
71987
+ const o2 = (1 - t3 - s2) / (1 - s2) || 0;
71988
+ const l = (1 - n3 - s2) / (1 - s2) || 0;
71989
+ const c = (1 - r2 - s2) / (1 - s2) || 0;
71990
+ return [o2 * 100, l * 100, c * 100, s2 * 100];
71991
+ };
71992
+ function comparativeDistance(e3, t3) {
71993
+ return __pow(e3[0] - t3[0], 2) + __pow(e3[1] - t3[1], 2) + __pow(e3[2] - t3[2], 2);
71994
+ }
71995
+ o.rgb.keyword = function(e3) {
71996
+ const t3 = s[e3];
71997
+ if (t3) {
71998
+ return t3;
71999
+ }
72000
+ let n3 = Infinity;
72001
+ let o2;
72002
+ for (const t4 of Object.keys(r)) {
72003
+ const s2 = r[t4];
72004
+ const l = comparativeDistance(e3, s2);
72005
+ if (l < n3) {
72006
+ n3 = l;
72007
+ o2 = t4;
72008
+ }
72009
+ }
72010
+ return o2;
72011
+ };
72012
+ o.keyword.rgb = function(e3) {
72013
+ return r[e3];
72014
+ };
72015
+ o.rgb.xyz = function(e3) {
72016
+ let t3 = e3[0] / 255;
72017
+ let n3 = e3[1] / 255;
72018
+ let r2 = e3[2] / 255;
72019
+ t3 = t3 > 0.04045 ? __pow((t3 + 0.055) / 1.055, 2.4) : t3 / 12.92;
72020
+ n3 = n3 > 0.04045 ? __pow((n3 + 0.055) / 1.055, 2.4) : n3 / 12.92;
72021
+ r2 = r2 > 0.04045 ? __pow((r2 + 0.055) / 1.055, 2.4) : r2 / 12.92;
72022
+ const s2 = t3 * 0.4124 + n3 * 0.3576 + r2 * 0.1805;
72023
+ const o2 = t3 * 0.2126 + n3 * 0.7152 + r2 * 0.0722;
72024
+ const l = t3 * 0.0193 + n3 * 0.1192 + r2 * 0.9505;
72025
+ return [s2 * 100, o2 * 100, l * 100];
72026
+ };
72027
+ o.rgb.lab = function(e3) {
72028
+ const t3 = o.rgb.xyz(e3);
72029
+ let n3 = t3[0];
72030
+ let r2 = t3[1];
72031
+ let s2 = t3[2];
72032
+ n3 /= 95.047;
72033
+ r2 /= 100;
72034
+ s2 /= 108.883;
72035
+ n3 = n3 > 8856e-6 ? __pow(n3, 1 / 3) : 7.787 * n3 + 16 / 116;
72036
+ r2 = r2 > 8856e-6 ? __pow(r2, 1 / 3) : 7.787 * r2 + 16 / 116;
72037
+ s2 = s2 > 8856e-6 ? __pow(s2, 1 / 3) : 7.787 * s2 + 16 / 116;
72038
+ const l = 116 * r2 - 16;
72039
+ const c = 500 * (n3 - r2);
72040
+ const i = 200 * (r2 - s2);
72041
+ return [l, c, i];
72042
+ };
72043
+ o.hsl.rgb = function(e3) {
72044
+ const t3 = e3[0] / 360;
72045
+ const n3 = e3[1] / 100;
72046
+ const r2 = e3[2] / 100;
72047
+ let s2;
72048
+ let o2;
72049
+ let l;
72050
+ if (n3 === 0) {
72051
+ l = r2 * 255;
72052
+ return [l, l, l];
72053
+ }
72054
+ if (r2 < 0.5) {
72055
+ s2 = r2 * (1 + n3);
72056
+ } else {
72057
+ s2 = r2 + n3 - r2 * n3;
72058
+ }
72059
+ const c = 2 * r2 - s2;
72060
+ const i = [0, 0, 0];
72061
+ for (let e4 = 0; e4 < 3; e4++) {
72062
+ o2 = t3 + 1 / 3 * -(e4 - 1);
72063
+ if (o2 < 0) {
72064
+ o2++;
72065
+ }
72066
+ if (o2 > 1) {
72067
+ o2--;
72068
+ }
72069
+ if (6 * o2 < 1) {
72070
+ l = c + (s2 - c) * 6 * o2;
72071
+ } else if (2 * o2 < 1) {
72072
+ l = s2;
72073
+ } else if (3 * o2 < 2) {
72074
+ l = c + (s2 - c) * (2 / 3 - o2) * 6;
72075
+ } else {
72076
+ l = c;
72077
+ }
72078
+ i[e4] = l * 255;
72079
+ }
72080
+ return i;
72081
+ };
72082
+ o.hsl.hsv = function(e3) {
72083
+ const t3 = e3[0];
72084
+ let n3 = e3[1] / 100;
72085
+ let r2 = e3[2] / 100;
72086
+ let s2 = n3;
72087
+ const o2 = Math.max(r2, 0.01);
72088
+ r2 *= 2;
72089
+ n3 *= r2 <= 1 ? r2 : 2 - r2;
72090
+ s2 *= o2 <= 1 ? o2 : 2 - o2;
72091
+ const l = (r2 + n3) / 2;
72092
+ const c = r2 === 0 ? 2 * s2 / (o2 + s2) : 2 * n3 / (r2 + n3);
72093
+ return [t3, c * 100, l * 100];
72094
+ };
72095
+ o.hsv.rgb = function(e3) {
72096
+ const t3 = e3[0] / 60;
72097
+ const n3 = e3[1] / 100;
72098
+ let r2 = e3[2] / 100;
72099
+ const s2 = Math.floor(t3) % 6;
72100
+ const o2 = t3 - Math.floor(t3);
72101
+ const l = 255 * r2 * (1 - n3);
72102
+ const c = 255 * r2 * (1 - n3 * o2);
72103
+ const i = 255 * r2 * (1 - n3 * (1 - o2));
72104
+ r2 *= 255;
72105
+ switch (s2) {
72106
+ case 0:
72107
+ return [r2, i, l];
72108
+ case 1:
72109
+ return [c, r2, l];
72110
+ case 2:
72111
+ return [l, r2, i];
72112
+ case 3:
72113
+ return [l, c, r2];
72114
+ case 4:
72115
+ return [i, l, r2];
72116
+ case 5:
72117
+ return [r2, l, c];
72118
+ }
72119
+ };
72120
+ o.hsv.hsl = function(e3) {
72121
+ const t3 = e3[0];
72122
+ const n3 = e3[1] / 100;
72123
+ const r2 = e3[2] / 100;
72124
+ const s2 = Math.max(r2, 0.01);
72125
+ let o2;
72126
+ let l;
72127
+ l = (2 - n3) * r2;
72128
+ const c = (2 - n3) * s2;
72129
+ o2 = n3 * s2;
72130
+ o2 /= c <= 1 ? c : 2 - c;
72131
+ o2 = o2 || 0;
72132
+ l /= 2;
72133
+ return [t3, o2 * 100, l * 100];
72134
+ };
72135
+ o.hwb.rgb = function(e3) {
72136
+ const t3 = e3[0] / 360;
72137
+ let n3 = e3[1] / 100;
72138
+ let r2 = e3[2] / 100;
72139
+ const s2 = n3 + r2;
72140
+ let o2;
72141
+ if (s2 > 1) {
72142
+ n3 /= s2;
72143
+ r2 /= s2;
72144
+ }
72145
+ const l = Math.floor(6 * t3);
72146
+ const c = 1 - r2;
72147
+ o2 = 6 * t3 - l;
72148
+ if ((l & 1) !== 0) {
72149
+ o2 = 1 - o2;
72150
+ }
72151
+ const i = n3 + o2 * (c - n3);
72152
+ let a;
72153
+ let u;
72154
+ let h;
72155
+ switch (l) {
72156
+ default:
72157
+ case 6:
72158
+ case 0:
72159
+ a = c;
72160
+ u = i;
72161
+ h = n3;
72162
+ break;
72163
+ case 1:
72164
+ a = i;
72165
+ u = c;
72166
+ h = n3;
72167
+ break;
72168
+ case 2:
72169
+ a = n3;
72170
+ u = c;
72171
+ h = i;
72172
+ break;
72173
+ case 3:
72174
+ a = n3;
72175
+ u = i;
72176
+ h = c;
72177
+ break;
72178
+ case 4:
72179
+ a = i;
72180
+ u = n3;
72181
+ h = c;
72182
+ break;
72183
+ case 5:
72184
+ a = c;
72185
+ u = n3;
72186
+ h = i;
72187
+ break;
72188
+ }
72189
+ return [a * 255, u * 255, h * 255];
72190
+ };
72191
+ o.cmyk.rgb = function(e3) {
72192
+ const t3 = e3[0] / 100;
72193
+ const n3 = e3[1] / 100;
72194
+ const r2 = e3[2] / 100;
72195
+ const s2 = e3[3] / 100;
72196
+ const o2 = 1 - Math.min(1, t3 * (1 - s2) + s2);
72197
+ const l = 1 - Math.min(1, n3 * (1 - s2) + s2);
72198
+ const c = 1 - Math.min(1, r2 * (1 - s2) + s2);
72199
+ return [o2 * 255, l * 255, c * 255];
72200
+ };
72201
+ o.xyz.rgb = function(e3) {
72202
+ const t3 = e3[0] / 100;
72203
+ const n3 = e3[1] / 100;
72204
+ const r2 = e3[2] / 100;
72205
+ let s2;
72206
+ let o2;
72207
+ let l;
72208
+ s2 = t3 * 3.2406 + n3 * -1.5372 + r2 * -0.4986;
72209
+ o2 = t3 * -0.9689 + n3 * 1.8758 + r2 * 0.0415;
72210
+ l = t3 * 0.0557 + n3 * -0.204 + r2 * 1.057;
72211
+ s2 = s2 > 31308e-7 ? 1.055 * __pow(s2, 1 / 2.4) - 0.055 : s2 * 12.92;
72212
+ o2 = o2 > 31308e-7 ? 1.055 * __pow(o2, 1 / 2.4) - 0.055 : o2 * 12.92;
72213
+ l = l > 31308e-7 ? 1.055 * __pow(l, 1 / 2.4) - 0.055 : l * 12.92;
72214
+ s2 = Math.min(Math.max(0, s2), 1);
72215
+ o2 = Math.min(Math.max(0, o2), 1);
72216
+ l = Math.min(Math.max(0, l), 1);
72217
+ return [s2 * 255, o2 * 255, l * 255];
72218
+ };
72219
+ o.xyz.lab = function(e3) {
72220
+ let t3 = e3[0];
72221
+ let n3 = e3[1];
72222
+ let r2 = e3[2];
72223
+ t3 /= 95.047;
72224
+ n3 /= 100;
72225
+ r2 /= 108.883;
72226
+ t3 = t3 > 8856e-6 ? __pow(t3, 1 / 3) : 7.787 * t3 + 16 / 116;
72227
+ n3 = n3 > 8856e-6 ? __pow(n3, 1 / 3) : 7.787 * n3 + 16 / 116;
72228
+ r2 = r2 > 8856e-6 ? __pow(r2, 1 / 3) : 7.787 * r2 + 16 / 116;
72229
+ const s2 = 116 * n3 - 16;
72230
+ const o2 = 500 * (t3 - n3);
72231
+ const l = 200 * (n3 - r2);
72232
+ return [s2, o2, l];
72233
+ };
72234
+ o.lab.xyz = function(e3) {
72235
+ const t3 = e3[0];
72236
+ const n3 = e3[1];
72237
+ const r2 = e3[2];
72238
+ let s2;
72239
+ let o2;
72240
+ let l;
72241
+ o2 = (t3 + 16) / 116;
72242
+ s2 = n3 / 500 + o2;
72243
+ l = o2 - r2 / 200;
72244
+ const c = __pow(o2, 3);
72245
+ const i = __pow(s2, 3);
72246
+ const a = __pow(l, 3);
72247
+ o2 = c > 8856e-6 ? c : (o2 - 16 / 116) / 7.787;
72248
+ s2 = i > 8856e-6 ? i : (s2 - 16 / 116) / 7.787;
72249
+ l = a > 8856e-6 ? a : (l - 16 / 116) / 7.787;
72250
+ s2 *= 95.047;
72251
+ o2 *= 100;
72252
+ l *= 108.883;
72253
+ return [s2, o2, l];
72254
+ };
72255
+ o.lab.lch = function(e3) {
72256
+ const t3 = e3[0];
72257
+ const n3 = e3[1];
72258
+ const r2 = e3[2];
72259
+ let s2;
72260
+ const o2 = Math.atan2(r2, n3);
72261
+ s2 = o2 * 360 / 2 / Math.PI;
72262
+ if (s2 < 0) {
72263
+ s2 += 360;
72264
+ }
72265
+ const l = Math.sqrt(n3 * n3 + r2 * r2);
72266
+ return [t3, l, s2];
72267
+ };
72268
+ o.lch.lab = function(e3) {
72269
+ const t3 = e3[0];
72270
+ const n3 = e3[1];
72271
+ const r2 = e3[2];
72272
+ const s2 = r2 / 360 * 2 * Math.PI;
72273
+ const o2 = n3 * Math.cos(s2);
72274
+ const l = n3 * Math.sin(s2);
72275
+ return [t3, o2, l];
72276
+ };
72277
+ o.rgb.ansi16 = function(e3, t3 = null) {
72278
+ const [n3, r2, s2] = e3;
72279
+ let l = t3 === null ? o.rgb.hsv(e3)[2] : t3;
72280
+ l = Math.round(l / 50);
72281
+ if (l === 0) {
72282
+ return 30;
72283
+ }
72284
+ let c = 30 + (Math.round(s2 / 255) << 2 | Math.round(r2 / 255) << 1 | Math.round(n3 / 255));
72285
+ if (l === 2) {
72286
+ c += 60;
72287
+ }
72288
+ return c;
72289
+ };
72290
+ o.hsv.ansi16 = function(e3) {
72291
+ return o.rgb.ansi16(o.hsv.rgb(e3), e3[2]);
72292
+ };
72293
+ o.rgb.ansi256 = function(e3) {
72294
+ const t3 = e3[0];
72295
+ const n3 = e3[1];
72296
+ const r2 = e3[2];
72297
+ if (t3 === n3 && n3 === r2) {
72298
+ if (t3 < 8) {
72299
+ return 16;
72300
+ }
72301
+ if (t3 > 248) {
72302
+ return 231;
72303
+ }
72304
+ return Math.round((t3 - 8) / 247 * 24) + 232;
72305
+ }
72306
+ const s2 = 16 + 36 * Math.round(t3 / 255 * 5) + 6 * Math.round(n3 / 255 * 5) + Math.round(r2 / 255 * 5);
72307
+ return s2;
72308
+ };
72309
+ o.ansi16.rgb = function(e3) {
72310
+ let t3 = e3 % 10;
72311
+ if (t3 === 0 || t3 === 7) {
72312
+ if (e3 > 50) {
72313
+ t3 += 3.5;
72314
+ }
72315
+ t3 = t3 / 10.5 * 255;
72316
+ return [t3, t3, t3];
72317
+ }
72318
+ const n3 = (~~(e3 > 50) + 1) * 0.5;
72319
+ const r2 = (t3 & 1) * n3 * 255;
72320
+ const s2 = (t3 >> 1 & 1) * n3 * 255;
72321
+ const o2 = (t3 >> 2 & 1) * n3 * 255;
72322
+ return [r2, s2, o2];
72323
+ };
72324
+ o.ansi256.rgb = function(e3) {
72325
+ if (e3 >= 232) {
72326
+ const t4 = (e3 - 232) * 10 + 8;
72327
+ return [t4, t4, t4];
72328
+ }
72329
+ e3 -= 16;
72330
+ let t3;
72331
+ const n3 = Math.floor(e3 / 36) / 5 * 255;
72332
+ const r2 = Math.floor((t3 = e3 % 36) / 6) / 5 * 255;
72333
+ const s2 = t3 % 6 / 5 * 255;
72334
+ return [n3, r2, s2];
72335
+ };
72336
+ o.rgb.hex = function(e3) {
72337
+ const t3 = ((Math.round(e3[0]) & 255) << 16) + ((Math.round(e3[1]) & 255) << 8) + (Math.round(e3[2]) & 255);
72338
+ const n3 = t3.toString(16).toUpperCase();
72339
+ return "000000".substring(n3.length) + n3;
72340
+ };
72341
+ o.hex.rgb = function(e3) {
72342
+ const t3 = e3.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);
72343
+ if (!t3) {
72344
+ return [0, 0, 0];
72345
+ }
72346
+ let n3 = t3[0];
72347
+ if (t3[0].length === 3) {
72348
+ n3 = n3.split("").map((e4) => e4 + e4).join("");
72349
+ }
72350
+ const r2 = parseInt(n3, 16);
72351
+ const s2 = r2 >> 16 & 255;
72352
+ const o2 = r2 >> 8 & 255;
72353
+ const l = r2 & 255;
72354
+ return [s2, o2, l];
72355
+ };
72356
+ o.rgb.hcg = function(e3) {
72357
+ const t3 = e3[0] / 255;
72358
+ const n3 = e3[1] / 255;
72359
+ const r2 = e3[2] / 255;
72360
+ const s2 = Math.max(Math.max(t3, n3), r2);
72361
+ const o2 = Math.min(Math.min(t3, n3), r2);
72362
+ const l = s2 - o2;
72363
+ let c;
72364
+ let i;
72365
+ if (l < 1) {
72366
+ c = o2 / (1 - l);
72367
+ } else {
72368
+ c = 0;
72369
+ }
72370
+ if (l <= 0) {
72371
+ i = 0;
72372
+ } else if (s2 === t3) {
72373
+ i = (n3 - r2) / l % 6;
72374
+ } else if (s2 === n3) {
72375
+ i = 2 + (r2 - t3) / l;
72376
+ } else {
72377
+ i = 4 + (t3 - n3) / l;
72378
+ }
72379
+ i /= 6;
72380
+ i %= 1;
72381
+ return [i * 360, l * 100, c * 100];
72382
+ };
72383
+ o.hsl.hcg = function(e3) {
72384
+ const t3 = e3[1] / 100;
72385
+ const n3 = e3[2] / 100;
72386
+ const r2 = n3 < 0.5 ? 2 * t3 * n3 : 2 * t3 * (1 - n3);
72387
+ let s2 = 0;
72388
+ if (r2 < 1) {
72389
+ s2 = (n3 - 0.5 * r2) / (1 - r2);
72390
+ }
72391
+ return [e3[0], r2 * 100, s2 * 100];
72392
+ };
72393
+ o.hsv.hcg = function(e3) {
72394
+ const t3 = e3[1] / 100;
72395
+ const n3 = e3[2] / 100;
72396
+ const r2 = t3 * n3;
72397
+ let s2 = 0;
72398
+ if (r2 < 1) {
72399
+ s2 = (n3 - r2) / (1 - r2);
72400
+ }
72401
+ return [e3[0], r2 * 100, s2 * 100];
72402
+ };
72403
+ o.hcg.rgb = function(e3) {
72404
+ const t3 = e3[0] / 360;
72405
+ const n3 = e3[1] / 100;
72406
+ const r2 = e3[2] / 100;
72407
+ if (n3 === 0) {
72408
+ return [r2 * 255, r2 * 255, r2 * 255];
72409
+ }
72410
+ const s2 = [0, 0, 0];
72411
+ const o2 = t3 % 1 * 6;
72412
+ const l = o2 % 1;
72413
+ const c = 1 - l;
72414
+ let i = 0;
72415
+ switch (Math.floor(o2)) {
72416
+ case 0:
72417
+ s2[0] = 1;
72418
+ s2[1] = l;
72419
+ s2[2] = 0;
72420
+ break;
72421
+ case 1:
72422
+ s2[0] = c;
72423
+ s2[1] = 1;
72424
+ s2[2] = 0;
72425
+ break;
72426
+ case 2:
72427
+ s2[0] = 0;
72428
+ s2[1] = 1;
72429
+ s2[2] = l;
72430
+ break;
72431
+ case 3:
72432
+ s2[0] = 0;
72433
+ s2[1] = c;
72434
+ s2[2] = 1;
72435
+ break;
72436
+ case 4:
72437
+ s2[0] = l;
72438
+ s2[1] = 0;
72439
+ s2[2] = 1;
72440
+ break;
72441
+ default:
72442
+ s2[0] = 1;
72443
+ s2[1] = 0;
72444
+ s2[2] = c;
72445
+ }
72446
+ i = (1 - n3) * r2;
72447
+ return [(n3 * s2[0] + i) * 255, (n3 * s2[1] + i) * 255, (n3 * s2[2] + i) * 255];
72448
+ };
72449
+ o.hcg.hsv = function(e3) {
72450
+ const t3 = e3[1] / 100;
72451
+ const n3 = e3[2] / 100;
72452
+ const r2 = t3 + n3 * (1 - t3);
72453
+ let s2 = 0;
72454
+ if (r2 > 0) {
72455
+ s2 = t3 / r2;
72456
+ }
72457
+ return [e3[0], s2 * 100, r2 * 100];
72458
+ };
72459
+ o.hcg.hsl = function(e3) {
72460
+ const t3 = e3[1] / 100;
72461
+ const n3 = e3[2] / 100;
72462
+ const r2 = n3 * (1 - t3) + 0.5 * t3;
72463
+ let s2 = 0;
72464
+ if (r2 > 0 && r2 < 0.5) {
72465
+ s2 = t3 / (2 * r2);
72466
+ } else if (r2 >= 0.5 && r2 < 1) {
72467
+ s2 = t3 / (2 * (1 - r2));
72468
+ }
72469
+ return [e3[0], s2 * 100, r2 * 100];
72470
+ };
72471
+ o.hcg.hwb = function(e3) {
72472
+ const t3 = e3[1] / 100;
72473
+ const n3 = e3[2] / 100;
72474
+ const r2 = t3 + n3 * (1 - t3);
72475
+ return [e3[0], (r2 - t3) * 100, (1 - r2) * 100];
72476
+ };
72477
+ o.hwb.hcg = function(e3) {
72478
+ const t3 = e3[1] / 100;
72479
+ const n3 = e3[2] / 100;
72480
+ const r2 = 1 - n3;
72481
+ const s2 = r2 - t3;
72482
+ let o2 = 0;
72483
+ if (s2 < 1) {
72484
+ o2 = (r2 - s2) / (1 - s2);
72485
+ }
72486
+ return [e3[0], s2 * 100, o2 * 100];
72487
+ };
72488
+ o.apple.rgb = function(e3) {
72489
+ return [e3[0] / 65535 * 255, e3[1] / 65535 * 255, e3[2] / 65535 * 255];
72490
+ };
72491
+ o.rgb.apple = function(e3) {
72492
+ return [e3[0] / 255 * 65535, e3[1] / 255 * 65535, e3[2] / 255 * 65535];
72493
+ };
72494
+ o.gray.rgb = function(e3) {
72495
+ return [e3[0] / 100 * 255, e3[0] / 100 * 255, e3[0] / 100 * 255];
72496
+ };
72497
+ o.gray.hsl = function(e3) {
72498
+ return [0, 0, e3[0]];
72499
+ };
72500
+ o.gray.hsv = o.gray.hsl;
72501
+ o.gray.hwb = function(e3) {
72502
+ return [0, 100, e3[0]];
72503
+ };
72504
+ o.gray.cmyk = function(e3) {
72505
+ return [0, 0, 0, e3[0]];
72506
+ };
72507
+ o.gray.lab = function(e3) {
72508
+ return [e3[0], 0, 0];
72509
+ };
72510
+ o.gray.hex = function(e3) {
72511
+ const t3 = Math.round(e3[0] / 100 * 255) & 255;
72512
+ const n3 = (t3 << 16) + (t3 << 8) + t3;
72513
+ const r2 = n3.toString(16).toUpperCase();
72514
+ return "000000".substring(r2.length) + r2;
72515
+ };
72516
+ o.rgb.gray = function(e3) {
72517
+ const t3 = (e3[0] + e3[1] + e3[2]) / 3;
72518
+ return [t3 / 255 * 100];
72519
+ };
72520
+ }, 767: (e2, t2, n2) => {
72521
+ const r = n2(226);
72522
+ const s = n2(392);
72523
+ const o = {};
72524
+ const l = Object.keys(r);
72525
+ function wrapRaw(e3) {
72526
+ const wrappedFn = function(...t3) {
72527
+ const n3 = t3[0];
72528
+ if (n3 === void 0 || n3 === null) {
72529
+ return n3;
72530
+ }
72531
+ if (n3.length > 1) {
72532
+ t3 = n3;
72533
+ }
72534
+ return e3(t3);
72535
+ };
72536
+ if ("conversion" in e3) {
72537
+ wrappedFn.conversion = e3.conversion;
72538
+ }
72539
+ return wrappedFn;
72540
+ }
72541
+ function wrapRounded(e3) {
72542
+ const wrappedFn = function(...t3) {
72543
+ const n3 = t3[0];
72544
+ if (n3 === void 0 || n3 === null) {
72545
+ return n3;
72546
+ }
72547
+ if (n3.length > 1) {
72548
+ t3 = n3;
72549
+ }
72550
+ const r2 = e3(t3);
72551
+ if (typeof r2 === "object") {
72552
+ for (let e4 = r2.length, t4 = 0; t4 < e4; t4++) {
72553
+ r2[t4] = Math.round(r2[t4]);
72554
+ }
72555
+ }
72556
+ return r2;
72557
+ };
72558
+ if ("conversion" in e3) {
72559
+ wrappedFn.conversion = e3.conversion;
72560
+ }
72561
+ return wrappedFn;
72562
+ }
72563
+ l.forEach((e3) => {
72564
+ o[e3] = {};
72565
+ Object.defineProperty(o[e3], "channels", { value: r[e3].channels });
72566
+ Object.defineProperty(o[e3], "labels", { value: r[e3].labels });
72567
+ const t3 = s(e3);
72568
+ const n3 = Object.keys(t3);
72569
+ n3.forEach((n4) => {
72570
+ const r2 = t3[n4];
72571
+ o[e3][n4] = wrapRounded(r2);
72572
+ o[e3][n4].raw = wrapRaw(r2);
72573
+ });
72574
+ });
72575
+ e2.exports = o;
72576
+ }, 392: (e2, t2, n2) => {
72577
+ const r = n2(226);
72578
+ function buildGraph() {
72579
+ const e3 = {};
72580
+ const t3 = Object.keys(r);
72581
+ for (let n3 = t3.length, r2 = 0; r2 < n3; r2++) {
72582
+ e3[t3[r2]] = { distance: -1, parent: null };
71132
72583
  }
71133
- var results = {};
71134
- each(_this, function(value, key) {
71135
- var _a2, _b;
71136
- if (isFn(value) && !key.includes("x-") || key === "parent" || key === "root")
71137
- return;
71138
- if (key === "properties" || key === "patternProperties") {
71139
- if (!recursion)
71140
- return;
71141
- results[key] = map(value, function(item) {
71142
- var _a3;
71143
- return (_a3 = item === null || item === void 0 ? void 0 : item.toJSON) === null || _a3 === void 0 ? void 0 : _a3.call(item);
71144
- });
71145
- } else if (key === "additionalProperties" || key === "additionalItems") {
71146
- if (!recursion)
71147
- return;
71148
- results[key] = (_a2 = value === null || value === void 0 ? void 0 : value.toJSON) === null || _a2 === void 0 ? void 0 : _a2.call(value);
71149
- } else if (key === "items") {
71150
- if (!recursion)
71151
- return;
71152
- if (Array.isArray(value)) {
71153
- results[key] = value.map(function(item) {
71154
- var _a3;
71155
- return (_a3 = item === null || item === void 0 ? void 0 : item.toJSON) === null || _a3 === void 0 ? void 0 : _a3.call(item);
71156
- });
71157
- } else {
71158
- results[key] = (_b = value === null || value === void 0 ? void 0 : value.toJSON) === null || _b === void 0 ? void 0 : _b.call(value);
72584
+ return e3;
72585
+ }
72586
+ function deriveBFS(e3) {
72587
+ const t3 = buildGraph();
72588
+ const n3 = [e3];
72589
+ t3[e3].distance = 0;
72590
+ while (n3.length) {
72591
+ const e4 = n3.pop();
72592
+ const s = Object.keys(r[e4]);
72593
+ for (let r2 = s.length, o = 0; o < r2; o++) {
72594
+ const r3 = s[o];
72595
+ const l = t3[r3];
72596
+ if (l.distance === -1) {
72597
+ l.distance = t3[e4].distance + 1;
72598
+ l.parent = e4;
72599
+ n3.unshift(r3);
71159
72600
  }
71160
- } else {
71161
- results[key] = value;
71162
72601
  }
71163
- });
71164
- return results;
72602
+ }
72603
+ return t3;
72604
+ }
72605
+ function link(e3, t3) {
72606
+ return function(n3) {
72607
+ return t3(e3(n3));
72608
+ };
72609
+ }
72610
+ function wrapConversion(e3, t3) {
72611
+ const n3 = [t3[e3].parent, e3];
72612
+ let s = r[t3[e3].parent][e3];
72613
+ let o = t3[e3].parent;
72614
+ while (t3[o].parent) {
72615
+ n3.unshift(t3[o].parent);
72616
+ s = link(r[t3[o].parent][o], s);
72617
+ o = t3[o].parent;
72618
+ }
72619
+ s.conversion = n3;
72620
+ return s;
72621
+ }
72622
+ e2.exports = function(e3) {
72623
+ const t3 = deriveBFS(e3);
72624
+ const n3 = {};
72625
+ const r2 = Object.keys(t3);
72626
+ for (let e4 = r2.length, s = 0; s < e4; s++) {
72627
+ const e5 = r2[s];
72628
+ const o = t3[e5];
72629
+ if (o.parent === null) {
72630
+ continue;
72631
+ }
72632
+ n3[e5] = wrapConversion(e5, t3);
72633
+ }
72634
+ return n3;
71165
72635
  };
71166
- this.toFieldProps = function(options) {
71167
- return transformFieldProps(_this, options);
72636
+ }, 866: (e2) => {
72637
+ "use strict";
72638
+ e2.exports = { aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], grey: [128, 128, 128], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], rebeccapurple: [102, 51, 153], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] };
72639
+ }, 975: (e2) => {
72640
+ "use strict";
72641
+ e2.exports = (e3, t2 = process.argv) => {
72642
+ const n2 = e3.startsWith("-") ? "" : e3.length === 1 ? "-" : "--";
72643
+ const r = t2.indexOf(n2 + e3);
72644
+ const s = t2.indexOf("--");
72645
+ return r !== -1 && (s === -1 || r < s);
71168
72646
  };
71169
- if (parent) {
71170
- this.parent = parent;
71171
- this.root = parent.root;
71172
- } else {
71173
- this.root = this;
72647
+ }, 242: (e2, t2, n2) => {
72648
+ "use strict";
72649
+ const r = n2(37);
72650
+ const s = n2(224);
72651
+ const o = n2(975);
72652
+ const { env: l } = process;
72653
+ let c;
72654
+ if (o("no-color") || o("no-colors") || o("color=false") || o("color=never")) {
72655
+ c = 0;
72656
+ } else if (o("color") || o("colors") || o("color=true") || o("color=always")) {
72657
+ c = 1;
71174
72658
  }
71175
- return this.fromJSON(json);
71176
- }
71177
- Schema2.getOrderProperties = function(schema, propertiesName) {
71178
- if (schema === void 0) {
71179
- schema = {};
72659
+ if ("FORCE_COLOR" in l) {
72660
+ if (l.FORCE_COLOR === "true") {
72661
+ c = 1;
72662
+ } else if (l.FORCE_COLOR === "false") {
72663
+ c = 0;
72664
+ } else {
72665
+ c = l.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(l.FORCE_COLOR, 10), 3);
72666
+ }
71180
72667
  }
71181
- if (propertiesName === void 0) {
71182
- propertiesName = "properties";
72668
+ function translateLevel(e3) {
72669
+ if (e3 === 0) {
72670
+ return false;
72671
+ }
72672
+ return { level: e3, hasBasic: true, has256: e3 >= 2, has16m: e3 >= 3 };
71183
72673
  }
71184
- var orderProperties = [];
71185
- var unorderProperties = [];
71186
- for (var key in schema[propertiesName]) {
71187
- var item = schema[propertiesName][key];
71188
- var index = item["x-index"];
71189
- if (!isNaN(index)) {
71190
- orderProperties[index] = { schema: item, key };
71191
- } else {
71192
- unorderProperties.push({ schema: item, key });
72674
+ function supportsColor(e3, t3) {
72675
+ if (c === 0) {
72676
+ return 0;
72677
+ }
72678
+ if (o("color=16m") || o("color=full") || o("color=truecolor")) {
72679
+ return 3;
72680
+ }
72681
+ if (o("color=256")) {
72682
+ return 2;
72683
+ }
72684
+ if (e3 && !t3 && c === void 0) {
72685
+ return 0;
72686
+ }
72687
+ const n3 = c || 0;
72688
+ if (l.TERM === "dumb") {
72689
+ return n3;
72690
+ }
72691
+ if (process.platform === "win32") {
72692
+ const e4 = r.release().split(".");
72693
+ if (Number(e4[0]) >= 10 && Number(e4[2]) >= 10586) {
72694
+ return Number(e4[2]) >= 14931 ? 3 : 2;
72695
+ }
72696
+ return 1;
72697
+ }
72698
+ if ("CI" in l) {
72699
+ if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((e4) => e4 in l) || l.CI_NAME === "codeship") {
72700
+ return 1;
72701
+ }
72702
+ return n3;
72703
+ }
72704
+ if ("TEAMCITY_VERSION" in l) {
72705
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(l.TEAMCITY_VERSION) ? 1 : 0;
72706
+ }
72707
+ if (l.COLORTERM === "truecolor") {
72708
+ return 3;
72709
+ }
72710
+ if ("TERM_PROGRAM" in l) {
72711
+ const e4 = parseInt((l.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
72712
+ switch (l.TERM_PROGRAM) {
72713
+ case "iTerm.app":
72714
+ return e4 >= 3 ? 3 : 2;
72715
+ case "Apple_Terminal":
72716
+ return 2;
72717
+ }
72718
+ }
72719
+ if (/-256(color)?$/i.test(l.TERM)) {
72720
+ return 2;
72721
+ }
72722
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(l.TERM)) {
72723
+ return 1;
72724
+ }
72725
+ if ("COLORTERM" in l) {
72726
+ return 1;
71193
72727
  }
72728
+ return n3;
71194
72729
  }
71195
- return orderProperties.concat(unorderProperties).filter(function(item2) {
71196
- return !!item2;
71197
- });
71198
- };
71199
- Schema2.compile = function(expression, scope) {
71200
- return compile(expression, scope);
71201
- };
71202
- Schema2.shallowCompile = function(expression, scope) {
71203
- return shallowCompile(expression, scope);
71204
- };
71205
- Schema2.isSchemaInstance = function(value) {
71206
- return instOf(value, Schema2);
71207
- };
71208
- Schema2.registerCompiler = registerCompiler;
71209
- Schema2.registerPatches = registerPatches;
71210
- Schema2.registerVoidComponents = registerVoidComponents;
71211
- Schema2.registerTypeDefaultComponents = registerTypeDefaultComponents;
71212
- Schema2.registerPolyfills = registerPolyfills;
71213
- Schema2.enablePolyfills = enablePolyfills;
71214
- Schema2.silent = silent;
71215
- return Schema2;
71216
- }();
71217
- }
71218
- });
71219
-
71220
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/types.js
71221
- var init_types6 = __esm({
71222
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/types.js"() {
71223
- }
71224
- });
71225
-
71226
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/index.js
71227
- var esm_exports2 = {};
71228
- __export(esm_exports2, {
71229
- Schema: () => Schema
71230
- });
71231
- var init_esm6 = __esm({
71232
- "../../../../node_modules/.pnpm/@formily+json-schema@2.2.7_typescript@4.9.3/node_modules/@formily/json-schema/esm/index.js"() {
71233
- init_schema();
71234
- init_types6();
72730
+ function getSupportLevel(e3) {
72731
+ const t3 = supportsColor(e3, e3 && e3.isTTY);
72732
+ return translateLevel(t3);
72733
+ }
72734
+ e2.exports = { supportsColor: getSupportLevel, stdout: translateLevel(supportsColor(true, s.isatty(1))), stderr: translateLevel(supportsColor(true, s.isatty(2))) };
72735
+ }, 37: (e2) => {
72736
+ "use strict";
72737
+ e2.exports = require("os");
72738
+ }, 224: (e2) => {
72739
+ "use strict";
72740
+ e2.exports = require("tty");
72741
+ } };
72742
+ var t = {};
72743
+ function __nccwpck_require__(n2) {
72744
+ var r = t[n2];
72745
+ if (r !== void 0) {
72746
+ return r.exports;
72747
+ }
72748
+ var s = t[n2] = { id: n2, loaded: false, exports: {} };
72749
+ var o = true;
72750
+ try {
72751
+ e[n2](s, s.exports, __nccwpck_require__);
72752
+ o = false;
72753
+ } finally {
72754
+ if (o)
72755
+ delete t[n2];
72756
+ }
72757
+ s.loaded = true;
72758
+ return s.exports;
72759
+ }
72760
+ (() => {
72761
+ __nccwpck_require__.nmd = (e2) => {
72762
+ e2.paths = [];
72763
+ if (!e2.children)
72764
+ e2.children = [];
72765
+ return e2;
72766
+ };
72767
+ })();
72768
+ if (typeof __nccwpck_require__ !== "undefined")
72769
+ __nccwpck_require__.ab = __dirname + "/";
72770
+ var n = __nccwpck_require__(584);
72771
+ module2.exports = n;
72772
+ })();
71235
72773
  }
71236
72774
  });
71237
72775
 
@@ -71399,7 +72937,7 @@ var require_figures = __commonJS({
71399
72937
  var require_separator = __commonJS({
71400
72938
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/objects/separator.js"(exports, module2) {
71401
72939
  "use strict";
71402
- var chalk3 = require_chalk();
72940
+ var chalk3 = require_chalk2();
71403
72941
  var figures = require_figures();
71404
72942
  var Separator = class {
71405
72943
  constructor(line) {
@@ -87289,16 +88827,39 @@ var require_cli_spinners = __commonJS({
87289
88827
  }
87290
88828
  });
87291
88829
 
87292
- // ../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/browser.js
87293
- var require_browser2 = __commonJS({
87294
- "../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/browser.js"(exports, module2) {
88830
+ // ../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js
88831
+ var require_is_unicode_supported = __commonJS({
88832
+ "../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js"(exports, module2) {
87295
88833
  "use strict";
87296
- module2.exports = {
87297
- info: "ℹ️",
87298
- success: "✅",
87299
- warning: "⚠️",
87300
- error: "❌️"
88834
+ module2.exports = () => {
88835
+ if (process.platform !== "win32") {
88836
+ return true;
88837
+ }
88838
+ return Boolean(process.env.CI) || Boolean(process.env.WT_SESSION) || // Windows Terminal
88839
+ process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty";
88840
+ };
88841
+ }
88842
+ });
88843
+
88844
+ // ../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js
88845
+ var require_log_symbols = __commonJS({
88846
+ "../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js"(exports, module2) {
88847
+ "use strict";
88848
+ var chalk3 = require_chalk2();
88849
+ var isUnicodeSupported = require_is_unicode_supported();
88850
+ var main = {
88851
+ info: chalk3.blue("ℹ"),
88852
+ success: chalk3.green("✔"),
88853
+ warning: chalk3.yellow("⚠"),
88854
+ error: chalk3.red("✖")
88855
+ };
88856
+ var fallback = {
88857
+ info: chalk3.blue("i"),
88858
+ success: chalk3.green("√"),
88859
+ warning: chalk3.yellow("‼"),
88860
+ error: chalk3.red("×")
87301
88861
  };
88862
+ module2.exports = isUnicodeSupported() ? main : fallback;
87302
88863
  }
87303
88864
  });
87304
88865
 
@@ -87672,20 +89233,6 @@ var require_is_interactive = __commonJS({
87672
89233
  }
87673
89234
  });
87674
89235
 
87675
- // ../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js
87676
- var require_is_unicode_supported = __commonJS({
87677
- "../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js"(exports, module2) {
87678
- "use strict";
87679
- module2.exports = () => {
87680
- if (process.platform !== "win32") {
87681
- return true;
87682
- }
87683
- return Boolean(process.env.CI) || Boolean(process.env.WT_SESSION) || // Windows Terminal
87684
- process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty";
87685
- };
87686
- }
87687
- });
87688
-
87689
89236
  // ../../../../node_modules/.pnpm/readable-stream@3.6.0/node_modules/readable-stream/lib/internal/streams/stream.js
87690
89237
  var require_stream = __commonJS({
87691
89238
  "../../../../node_modules/.pnpm/readable-stream@3.6.0/node_modules/readable-stream/lib/internal/streams/stream.js"(exports, module2) {
@@ -88196,42 +89743,25 @@ var require_inherits_browser = __commonJS({
88196
89743
  }
88197
89744
  });
88198
89745
 
88199
- // ../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js
88200
- var require_browser3 = __commonJS({
88201
- "../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js"(exports, module2) {
88202
- module2.exports = deprecate;
88203
- function deprecate(fn, msg) {
88204
- if (config("noDeprecation")) {
88205
- return fn;
88206
- }
88207
- var warned = false;
88208
- function deprecated() {
88209
- if (!warned) {
88210
- if (config("throwDeprecation")) {
88211
- throw new Error(msg);
88212
- } else if (config("traceDeprecation")) {
88213
- console.trace(msg);
88214
- } else {
88215
- console.warn(msg);
88216
- }
88217
- warned = true;
88218
- }
88219
- return fn.apply(this, arguments);
88220
- }
88221
- return deprecated;
88222
- }
88223
- function config(name) {
88224
- try {
88225
- if (!global.localStorage)
88226
- return false;
88227
- } catch (_) {
88228
- return false;
88229
- }
88230
- var val = global.localStorage[name];
88231
- if (null == val)
88232
- return false;
88233
- return String(val).toLowerCase() === "true";
89746
+ // ../../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js
89747
+ var require_inherits = __commonJS({
89748
+ "../../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js"(exports, module2) {
89749
+ try {
89750
+ util = require("util");
89751
+ if (typeof util.inherits !== "function")
89752
+ throw "";
89753
+ module2.exports = util.inherits;
89754
+ } catch (e) {
89755
+ module2.exports = require_inherits_browser();
88234
89756
  }
89757
+ var util;
89758
+ }
89759
+ });
89760
+
89761
+ // ../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js
89762
+ var require_node8 = __commonJS({
89763
+ "../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js"(exports, module2) {
89764
+ module2.exports = require("util").deprecate;
88235
89765
  }
88236
89766
  });
88237
89767
 
@@ -88251,7 +89781,7 @@ var require_stream_writable = __commonJS({
88251
89781
  var Duplex;
88252
89782
  Writable.WritableState = WritableState;
88253
89783
  var internalUtil = {
88254
- deprecate: require_browser3()
89784
+ deprecate: require_node8()
88255
89785
  };
88256
89786
  var Stream = require_stream();
88257
89787
  var Buffer2 = require("buffer").Buffer;
@@ -88276,7 +89806,7 @@ var require_stream_writable = __commonJS({
88276
89806
  var ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END;
88277
89807
  var ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
88278
89808
  var errorOrDestroy = destroyImpl.errorOrDestroy;
88279
- require_inherits_browser()(Writable, Stream);
89809
+ require_inherits()(Writable, Stream);
88280
89810
  function nop() {
88281
89811
  }
88282
89812
  function WritableState(options, stream, isDuplex) {
@@ -88749,7 +90279,7 @@ var require_stream_duplex = __commonJS({
88749
90279
  module2.exports = Duplex;
88750
90280
  var Readable = require_stream_readable();
88751
90281
  var Writable = require_stream_writable();
88752
- require_inherits_browser()(Duplex, Readable);
90282
+ require_inherits()(Duplex, Readable);
88753
90283
  {
88754
90284
  keys = objectKeys(Writable.prototype);
88755
90285
  for (v = 0; v < keys.length; v++) {
@@ -89580,7 +91110,7 @@ var require_stream_readable = __commonJS({
89580
91110
  var StringDecoder;
89581
91111
  var createReadableStreamAsyncIterator;
89582
91112
  var from;
89583
- require_inherits_browser()(Readable, Stream);
91113
+ require_inherits()(Readable, Stream);
89584
91114
  var errorOrDestroy = destroyImpl.errorOrDestroy;
89585
91115
  var kProxyEvents = ["error", "close", "destroy", "pause", "resume"];
89586
91116
  function prependListener(emitter, event, fn) {
@@ -90348,7 +91878,7 @@ var require_stream_transform = __commonJS({
90348
91878
  var ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING;
90349
91879
  var ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
90350
91880
  var Duplex = require_stream_duplex();
90351
- require_inherits_browser()(Transform, Duplex);
91881
+ require_inherits()(Transform, Duplex);
90352
91882
  function afterTransform(er, data) {
90353
91883
  var ts = this._transformState;
90354
91884
  ts.transforming = false;
@@ -90451,7 +91981,7 @@ var require_stream_passthrough = __commonJS({
90451
91981
  "use strict";
90452
91982
  module2.exports = PassThrough;
90453
91983
  var Transform = require_stream_transform();
90454
- require_inherits_browser()(PassThrough, Transform);
91984
+ require_inherits()(PassThrough, Transform);
90455
91985
  function PassThrough(options) {
90456
91986
  if (!(this instanceof PassThrough))
90457
91987
  return new PassThrough(options);
@@ -90893,7 +92423,7 @@ var require_bl = __commonJS({
90893
92423
  "../../../../node_modules/.pnpm/bl@4.1.0/node_modules/bl/bl.js"(exports, module2) {
90894
92424
  "use strict";
90895
92425
  var DuplexStream = require_readable().Duplex;
90896
- var inherits = require_inherits_browser();
92426
+ var inherits = require_inherits();
90897
92427
  var BufferList = require_BufferList();
90898
92428
  function BufferListStream(callback) {
90899
92429
  if (!(this instanceof BufferListStream)) {
@@ -90964,10 +92494,10 @@ var require_ora2 = __commonJS({
90964
92494
  "../../../../node_modules/.pnpm/ora@5.4.1/node_modules/ora/index.js"(exports, module2) {
90965
92495
  "use strict";
90966
92496
  var readline = require("readline");
90967
- var chalk3 = require_chalk();
92497
+ var chalk3 = require_chalk2();
90968
92498
  var cliCursor = require_cli_cursor();
90969
92499
  var cliSpinners = require_cli_spinners();
90970
- var logSymbols = require_browser2();
92500
+ var logSymbols = require_log_symbols();
90971
92501
  var stripAnsi5 = require_strip_ansi2();
90972
92502
  var wcwidth = require_wcwidth();
90973
92503
  var isInteractive = require_is_interactive();
@@ -91415,7 +92945,7 @@ var require_base3 = __commonJS({
91415
92945
  defaults: require_defaults2(),
91416
92946
  clone: require_clone()
91417
92947
  };
91418
- var chalk3 = require_chalk();
92948
+ var chalk3 = require_chalk2();
91419
92949
  var runAsync = require_run_async();
91420
92950
  var { filter, flatMap, share, take, takeUntil } = require_operators();
91421
92951
  var Choices = require_choices();
@@ -91601,7 +93131,7 @@ var require_events = __commonJS({
91601
93131
  var require_paginator = __commonJS({
91602
93132
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/utils/paginator.js"(exports, module2) {
91603
93133
  "use strict";
91604
- var chalk3 = require_chalk();
93134
+ var chalk3 = require_chalk2();
91605
93135
  var Paginator = class {
91606
93136
  /**
91607
93137
  * @param {import("./screen-manager")} [screen]
@@ -91682,7 +93212,7 @@ var require_incrementListIndex = __commonJS({
91682
93212
  var require_list2 = __commonJS({
91683
93213
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/list.js"(exports, module2) {
91684
93214
  "use strict";
91685
- var chalk3 = require_chalk();
93215
+ var chalk3 = require_chalk2();
91686
93216
  var figures = require_figures();
91687
93217
  var cliCursor = require_cli_cursor();
91688
93218
  var runAsync = require_run_async();
@@ -91832,7 +93362,7 @@ var require_list2 = __commonJS({
91832
93362
  var require_input = __commonJS({
91833
93363
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/input.js"(exports, module2) {
91834
93364
  "use strict";
91835
- var chalk3 = require_chalk();
93365
+ var chalk3 = require_chalk2();
91836
93366
  var { map: map2, takeUntil } = require_operators();
91837
93367
  var Base = require_base3();
91838
93368
  var observe2 = require_events();
@@ -91936,7 +93466,7 @@ var require_number = __commonJS({
91936
93466
  var require_confirm = __commonJS({
91937
93467
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/confirm.js"(exports, module2) {
91938
93468
  "use strict";
91939
- var chalk3 = require_chalk();
93469
+ var chalk3 = require_chalk2();
91940
93470
  var { take, takeUntil } = require_operators();
91941
93471
  var Base = require_base3();
91942
93472
  var observe2 = require_events();
@@ -92010,7 +93540,7 @@ var require_confirm = __commonJS({
92010
93540
  var require_rawlist = __commonJS({
92011
93541
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/rawlist.js"(exports, module2) {
92012
93542
  "use strict";
92013
- var chalk3 = require_chalk();
93543
+ var chalk3 = require_chalk2();
92014
93544
  var { map: map2, takeUntil } = require_operators();
92015
93545
  var Base = require_base3();
92016
93546
  var Separator = require_separator();
@@ -92178,7 +93708,7 @@ var require_rawlist = __commonJS({
92178
93708
  var require_expand2 = __commonJS({
92179
93709
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/expand.js"(exports, module2) {
92180
93710
  "use strict";
92181
- var chalk3 = require_chalk();
93711
+ var chalk3 = require_chalk2();
92182
93712
  var { map: map2, takeUntil } = require_operators();
92183
93713
  var Base = require_base3();
92184
93714
  var Separator = require_separator();
@@ -92385,7 +93915,7 @@ var require_expand2 = __commonJS({
92385
93915
  var require_checkbox = __commonJS({
92386
93916
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/checkbox.js"(exports, module2) {
92387
93917
  "use strict";
92388
- var chalk3 = require_chalk();
93918
+ var chalk3 = require_chalk2();
92389
93919
  var cliCursor = require_cli_cursor();
92390
93920
  var figures = require_figures();
92391
93921
  var { map: map2, takeUntil } = require_operators();
@@ -92575,7 +94105,7 @@ var require_checkbox = __commonJS({
92575
94105
  var require_password = __commonJS({
92576
94106
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/password.js"(exports, module2) {
92577
94107
  "use strict";
92578
- var chalk3 = require_chalk();
94108
+ var chalk3 = require_chalk2();
92579
94109
  var { map: map2, takeUntil } = require_operators();
92580
94110
  var Base = require_base3();
92581
94111
  var observe2 = require_events();
@@ -102250,7 +103780,7 @@ var require_main = __commonJS({
102250
103780
  var require_editor = __commonJS({
102251
103781
  "../../../../node_modules/.pnpm/inquirer@8.2.2/node_modules/inquirer/lib/prompts/editor.js"(exports, module2) {
102252
103782
  "use strict";
102253
- var chalk3 = require_chalk();
103783
+ var chalk3 = require_chalk2();
102254
103784
  var { editAsync } = require_main();
102255
103785
  var Base = require_base3();
102256
103786
  var observe2 = require_events();
@@ -102375,9 +103905,9 @@ var require_inquirer = __commonJS({
102375
103905
  }
102376
103906
  });
102377
103907
 
102378
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/transform.js
103908
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/transform.js
102379
103909
  var require_transform = __commonJS({
102380
- "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/transform.js"(exports) {
103910
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/transform.js"(exports) {
102381
103911
  "use strict";
102382
103912
  Object.defineProperty(exports, "__esModule", {
102383
103913
  value: true
@@ -102546,9 +104076,9 @@ var require_transform = __commonJS({
102546
104076
  }
102547
104077
  });
102548
104078
 
102549
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/prompt.js
104079
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/prompt.js
102550
104080
  var require_prompt2 = __commonJS({
102551
- "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/prompt.js"(exports) {
104081
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/prompt.js"(exports) {
102552
104082
  "use strict";
102553
104083
  Object.defineProperty(exports, "__esModule", {
102554
104084
  value: true
@@ -102686,9 +104216,9 @@ var require_prompt2 = __commonJS({
102686
104216
  }
102687
104217
  });
102688
104218
 
102689
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/inquirer.js
104219
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/inquirer.js
102690
104220
  var require_inquirer2 = __commonJS({
102691
- "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/inquirer.js"(exports) {
104221
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/inquirer.js"(exports) {
102692
104222
  "use strict";
102693
104223
  Object.defineProperty(exports, "__esModule", {
102694
104224
  value: true
@@ -102760,9 +104290,9 @@ var require_inquirer2 = __commonJS({
102760
104290
  }
102761
104291
  });
102762
104292
 
102763
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js
102764
- var require_node7 = __commonJS({
102765
- "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js"(exports) {
104293
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js
104294
+ var require_node9 = __commonJS({
104295
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js"(exports) {
102766
104296
  "use strict";
102767
104297
  Object.defineProperty(exports, "__esModule", {
102768
104298
  value: true
@@ -102834,7 +104364,7 @@ var require_node7 = __commonJS({
102834
104364
  var require_separator2 = __commonJS({
102835
104365
  "../../../../node_modules/.pnpm/inquirer@8.1.3/node_modules/inquirer/lib/objects/separator.js"(exports, module2) {
102836
104366
  "use strict";
102837
- var chalk3 = require_chalk();
104367
+ var chalk3 = require_chalk2();
102838
104368
  var figures = require_figures();
102839
104369
  var Separator = class {
102840
104370
  constructor(line) {
@@ -103888,7 +105418,7 @@ var require_base4 = __commonJS({
103888
105418
  defaults: require_defaults2(),
103889
105419
  clone: require_clone()
103890
105420
  };
103891
- var chalk3 = require_chalk();
105421
+ var chalk3 = require_chalk2();
103892
105422
  var runAsync = require_run_async();
103893
105423
  var { filter, flatMap, share, take, takeUntil } = require_operators();
103894
105424
  var Choices = require_choices2();
@@ -104107,7 +105637,7 @@ var require_paginator2 = __commonJS({
104107
105637
  sum: require_sum(),
104108
105638
  flatten: require_flatten()
104109
105639
  };
104110
- var chalk3 = require_chalk();
105640
+ var chalk3 = require_chalk2();
104111
105641
  var Paginator = class {
104112
105642
  constructor(screen, options = {}) {
104113
105643
  const { isInfinite = true } = options;
@@ -104189,7 +105719,7 @@ var require_list3 = __commonJS({
104189
105719
  findIndex: require_findIndex2(),
104190
105720
  isString: require_isString()
104191
105721
  };
104192
- var chalk3 = require_chalk();
105722
+ var chalk3 = require_chalk2();
104193
105723
  var figures = require_figures();
104194
105724
  var cliCursor = require_cli_cursor();
104195
105725
  var runAsync = require_run_async();
@@ -104342,7 +105872,7 @@ var require_list3 = __commonJS({
104342
105872
  var require_input2 = __commonJS({
104343
105873
  "../../../../node_modules/.pnpm/inquirer@8.1.3/node_modules/inquirer/lib/prompts/input.js"(exports, module2) {
104344
105874
  "use strict";
104345
- var chalk3 = require_chalk();
105875
+ var chalk3 = require_chalk2();
104346
105876
  var { map: map2, takeUntil } = require_operators();
104347
105877
  var Base = require_base4();
104348
105878
  var observe2 = require_events2();
@@ -104463,7 +105993,7 @@ var require_confirm2 = __commonJS({
104463
105993
  extend: require_extend(),
104464
105994
  isBoolean: require_isBoolean()
104465
105995
  };
104466
- var chalk3 = require_chalk();
105996
+ var chalk3 = require_chalk2();
104467
105997
  var { take, takeUntil } = require_operators();
104468
105998
  var Base = require_base4();
104469
105999
  var observe2 = require_events2();
@@ -104542,7 +106072,7 @@ var require_rawlist2 = __commonJS({
104542
106072
  isNumber: require_isNumber(),
104543
106073
  findIndex: require_findIndex2()
104544
106074
  };
104545
- var chalk3 = require_chalk();
106075
+ var chalk3 = require_chalk2();
104546
106076
  var { map: map2, takeUntil } = require_operators();
104547
106077
  var Base = require_base4();
104548
106078
  var Separator = require_separator2();
@@ -104863,7 +106393,7 @@ var require_expand3 = __commonJS({
104863
106393
  isNumber: require_isNumber(),
104864
106394
  findIndex: require_findIndex2()
104865
106395
  };
104866
- var chalk3 = require_chalk();
106396
+ var chalk3 = require_chalk2();
104867
106397
  var { map: map2, takeUntil } = require_operators();
104868
106398
  var Base = require_base4();
104869
106399
  var Separator = require_separator2();
@@ -105078,7 +106608,7 @@ var require_checkbox2 = __commonJS({
105078
106608
  map: require_map2(),
105079
106609
  isString: require_isString()
105080
106610
  };
105081
- var chalk3 = require_chalk();
106611
+ var chalk3 = require_chalk2();
105082
106612
  var cliCursor = require_cli_cursor();
105083
106613
  var figures = require_figures();
105084
106614
  var { map: map2, takeUntil } = require_operators();
@@ -105269,7 +106799,7 @@ var require_checkbox2 = __commonJS({
105269
106799
  var require_password2 = __commonJS({
105270
106800
  "../../../../node_modules/.pnpm/inquirer@8.1.3/node_modules/inquirer/lib/prompts/password.js"(exports, module2) {
105271
106801
  "use strict";
105272
- var chalk3 = require_chalk();
106802
+ var chalk3 = require_chalk2();
105273
106803
  var { map: map2, takeUntil } = require_operators();
105274
106804
  var Base = require_base4();
105275
106805
  var observe2 = require_events2();
@@ -105361,7 +106891,7 @@ var require_password2 = __commonJS({
105361
106891
  var require_editor2 = __commonJS({
105362
106892
  "../../../../node_modules/.pnpm/inquirer@8.1.3/node_modules/inquirer/lib/prompts/editor.js"(exports, module2) {
105363
106893
  "use strict";
105364
- var chalk3 = require_chalk();
106894
+ var chalk3 = require_chalk2();
105365
106895
  var { editAsync } = require_main();
105366
106896
  var Base = require_base4();
105367
106897
  var observe2 = require_events2();
@@ -105510,7 +107040,7 @@ var require_utils11 = __commonJS({
105510
107040
  });
105511
107041
 
105512
107042
  // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@1.21.5/node_modules/@modern-js/plugin-i18n/dist/js/node/index.js
105513
- var require_node8 = __commonJS({
107043
+ var require_node10 = __commonJS({
105514
107044
  "../../../../node_modules/.pnpm/@modern-js+plugin-i18n@1.21.5/node_modules/@modern-js/plugin-i18n/dist/js/node/index.js"(exports) {
105515
107045
  "use strict";
105516
107046
  Object.defineProperty(exports, "__esModule", {
@@ -105575,9 +107105,9 @@ var require_node8 = __commonJS({
105575
107105
  }
105576
107106
  });
105577
107107
 
105578
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/zh.js
107108
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/zh.js
105579
107109
  var require_zh = __commonJS({
105580
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/zh.js"(exports) {
107110
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/zh.js"(exports) {
105581
107111
  "use strict";
105582
107112
  Object.defineProperty(exports, "__esModule", {
105583
107113
  value: true
@@ -105612,9 +107142,9 @@ var require_zh = __commonJS({
105612
107142
  }
105613
107143
  });
105614
107144
 
105615
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/en.js
107145
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/en.js
105616
107146
  var require_en = __commonJS({
105617
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/en.js"(exports) {
107147
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/en.js"(exports) {
105618
107148
  "use strict";
105619
107149
  Object.defineProperty(exports, "__esModule", {
105620
107150
  value: true
@@ -105649,9 +107179,9 @@ var require_en = __commonJS({
105649
107179
  }
105650
107180
  });
105651
107181
 
105652
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/index.js
107182
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/index.js
105653
107183
  var require_locale = __commonJS({
105654
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/index.js"(exports) {
107184
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/locale/index.js"(exports) {
105655
107185
  "use strict";
105656
107186
  Object.defineProperty(exports, "__esModule", {
105657
107187
  value: true
@@ -105663,7 +107193,7 @@ var require_locale = __commonJS({
105663
107193
  }
105664
107194
  });
105665
107195
  exports.localeKeys = exports.i18n = void 0;
105666
- var _pluginI18n = require_node8();
107196
+ var _pluginI18n = require_node10();
105667
107197
  var _zh = require_zh();
105668
107198
  var _en = require_en();
105669
107199
  var i18n4 = new _pluginI18n.I18n();
@@ -105676,9 +107206,9 @@ var require_locale = __commonJS({
105676
107206
  }
105677
107207
  });
105678
107208
 
105679
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/transform.js
107209
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/transform.js
105680
107210
  var require_transform2 = __commonJS({
105681
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/transform.js"(exports) {
107211
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/transform.js"(exports) {
105682
107212
  "use strict";
105683
107213
  Object.defineProperty(exports, "__esModule", {
105684
107214
  value: true
@@ -105713,9 +107243,9 @@ var require_transform2 = __commonJS({
105713
107243
  }
105714
107244
  });
105715
107245
 
105716
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/checkUseNvm.js
107246
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/checkUseNvm.js
105717
107247
  var require_checkUseNvm = __commonJS({
105718
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/checkUseNvm.js"(exports) {
107248
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/utils/checkUseNvm.js"(exports) {
105719
107249
  "use strict";
105720
107250
  Object.defineProperty(exports, "__esModule", {
105721
107251
  value: true
@@ -105723,7 +107253,7 @@ var require_checkUseNvm = __commonJS({
105723
107253
  exports.checkUseNvm = checkUseNvm;
105724
107254
  exports.getNoteVersion = getNoteVersion;
105725
107255
  var _path = _interopRequireDefault(require("path"));
105726
- var _codesmith = require_node3();
107256
+ var _codesmith = require_node4();
105727
107257
  var _utils = require_dist();
105728
107258
  var _codesmithApiNpm = require_node();
105729
107259
  function _interopRequireDefault(obj) {
@@ -105778,9 +107308,9 @@ var require_checkUseNvm = __commonJS({
105778
107308
  }
105779
107309
  });
105780
107310
 
105781
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js
105782
- var require_node9 = __commonJS({
105783
- "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js"(exports) {
107311
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js
107312
+ var require_node11 = __commonJS({
107313
+ "../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js"(exports) {
105784
107314
  "use strict";
105785
107315
  Object.defineProperty(exports, "__esModule", {
105786
107316
  value: true
@@ -105791,10 +107321,10 @@ var require_node9 = __commonJS({
105791
107321
  var _commentJson = require_src2();
105792
107322
  var _codesmithApiNpm = require_node();
105793
107323
  var _codesmithApiGit = require_node2();
105794
- var _codesmithApiHandlebars = require_node4();
105795
- var _codesmithApiEjs = require_node5();
105796
- var _codesmithApiFs = require_node6();
105797
- var _codesmithFormily = require_node7();
107324
+ var _codesmithApiHandlebars = require_node5();
107325
+ var _codesmithApiEjs = require_node6();
107326
+ var _codesmithApiFs = require_node7();
107327
+ var _codesmithFormily = require_node9();
105798
107328
  var _inquirer = _interopRequireDefault(require_inquirer3());
105799
107329
  var _locale = require_locale();
105800
107330
  var _transform = require_transform2();
@@ -108415,7 +109945,7 @@ var require_fs_extra2 = __commonJS({
108415
109945
  });
108416
109946
 
108417
109947
  // ../../../toolkit/utils/compiled/chalk/index.js
108418
- var require_chalk2 = __commonJS({
109948
+ var require_chalk3 = __commonJS({
108419
109949
  "../../../toolkit/utils/compiled/chalk/index.js"(exports, module2) {
108420
109950
  (() => {
108421
109951
  var e = { 44: (e2, t2, n2) => {
@@ -113354,7 +114884,7 @@ var require_ora3 = __commonJS({
113354
114884
  }
113355
114885
  }, 234: (e2) => {
113356
114886
  "use strict";
113357
- e2.exports = require_chalk2();
114887
+ e2.exports = require_chalk3();
113358
114888
  }, 286: (e2) => {
113359
114889
  "use strict";
113360
114890
  e2.exports = require_strip_ansi3();
@@ -130609,7 +132139,7 @@ var require_signale2 = __commonJS({
130609
132139
  };
130610
132140
  }, 234: (e2) => {
130611
132141
  "use strict";
130612
- e2.exports = require_chalk2();
132142
+ e2.exports = require_chalk3();
130613
132143
  }, 684: (e2) => {
130614
132144
  "use strict";
130615
132145
  e2.exports = require_package4();
@@ -131332,6 +132862,198 @@ var require_dotenv_expand2 = __commonJS({
131332
132862
  }
131333
132863
  });
131334
132864
 
132865
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browsers.js
132866
+ var require_browsers3 = __commonJS({
132867
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browsers.js"(exports, module2) {
132868
+ module2.exports = { A: "ie", B: "edge", C: "firefox", D: "chrome", E: "safari", F: "opera", G: "ios_saf", H: "op_mini", I: "android", J: "bb", K: "op_mob", L: "and_chr", M: "and_ff", N: "ie_mob", O: "and_uc", P: "samsung", Q: "and_qq", R: "baidu", S: "kaios" };
132869
+ }
132870
+ });
132871
+
132872
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browsers.js
132873
+ var require_browsers4 = __commonJS({
132874
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browsers.js"(exports, module2) {
132875
+ module2.exports.browsers = require_browsers3();
132876
+ }
132877
+ });
132878
+
132879
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browserVersions.js
132880
+ var require_browserVersions3 = __commonJS({
132881
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browserVersions.js"(exports, module2) {
132882
+ module2.exports = { "0": "23", "1": "24", "2": "25", "3": "26", "4": "27", "5": "28", "6": "29", "7": "30", "8": "31", "9": "32", A: "10", B: "11", C: "12", D: "7", E: "8", F: "9", G: "15", H: "111", I: "4", J: "6", K: "13", L: "14", M: "16", N: "17", O: "18", P: "79", Q: "80", R: "81", S: "83", T: "84", U: "85", V: "86", W: "87", X: "88", Y: "89", Z: "90", a: "91", b: "92", c: "93", d: "94", e: "95", f: "110", g: "20", h: "73", i: "96", j: "97", k: "98", l: "99", m: "100", n: "101", o: "102", p: "103", q: "104", r: "105", s: "106", t: "107", u: "108", v: "109", w: "5", x: "19", y: "21", z: "22", AB: "33", BB: "34", CB: "35", DB: "36", EB: "37", FB: "38", GB: "39", HB: "40", IB: "41", JB: "42", KB: "43", LB: "44", MB: "45", NB: "46", OB: "47", PB: "48", QB: "49", RB: "50", SB: "51", TB: "52", UB: "53", VB: "54", WB: "55", XB: "56", YB: "57", ZB: "58", aB: "60", bB: "62", cB: "63", dB: "64", eB: "65", fB: "66", gB: "67", hB: "68", iB: "69", jB: "70", kB: "71", lB: "72", mB: "74", nB: "75", oB: "76", pB: "77", qB: "78", rB: "11.1", sB: "12.1", tB: "16.0", uB: "3", vB: "59", wB: "61", xB: "82", yB: "112", zB: "113", "0B": "3.2", "1B": "10.1", "2B": "13.1", "3B": "15.2-15.3", "4B": "15.4", "5B": "15.5", "6B": "15.6", "7B": "16.1", "8B": "16.2", "9B": "16.3", AC: "16.4", BC: "11.5", CC: "4.2-4.3", DC: "5.5", EC: "2", FC: "3.5", GC: "3.6", HC: "114", IC: "3.1", JC: "5.1", KC: "6.1", LC: "7.1", MC: "9.1", NC: "14.1", OC: "15.1", PC: "TP", QC: "9.5-9.6", RC: "10.0-10.1", SC: "10.5", TC: "10.6", UC: "11.6", VC: "4.0-4.1", WC: "5.0-5.1", XC: "6.0-6.1", YC: "7.0-7.1", ZC: "8.1-8.4", aC: "9.0-9.2", bC: "9.3", cC: "10.0-10.2", dC: "10.3", eC: "11.0-11.2", fC: "11.3-11.4", gC: "12.0-12.1", hC: "12.2-12.5", iC: "13.0-13.1", jC: "13.2", kC: "13.3", lC: "13.4-13.7", mC: "14.0-14.4", nC: "14.5-14.8", oC: "15.0-15.1", pC: "all", qC: "2.1", rC: "2.2", sC: "2.3", tC: "4.1", uC: "4.4", vC: "4.4.3-4.4.4", wC: "13.4", xC: "5.0-5.4", yC: "6.2-6.4", zC: "7.2-7.4", "0C": "8.2", "1C": "9.2", "2C": "11.1-11.2", "3C": "12.0", "4C": "13.0", "5C": "14.0", "6C": "15.0", "7C": "17.0", "8C": "18.0", "9C": "19.0", AD: "13.18", BD: "2.5", CD: "3.0-3.1" };
132883
+ }
132884
+ });
132885
+
132886
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browserVersions.js
132887
+ var require_browserVersions4 = __commonJS({
132888
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browserVersions.js"(exports, module2) {
132889
+ module2.exports.browserVersions = require_browserVersions3();
132890
+ }
132891
+ });
132892
+
132893
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/agents.js
132894
+ var require_agents3 = __commonJS({
132895
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/agents.js"(exports, module2) {
132896
+ module2.exports = { A: { A: { J: 0.0131217, D: 621152e-8, E: 0.0478029, F: 0.0573634, A: 956057e-8, B: 0.487589, DC: 9298e-6 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "DC", "J", "D", "E", "F", "A", "B", "", "", ""], E: "IE", F: { DC: 962323200, J: 998870400, D: 1161129600, E: 1237420800, F: 1300060800, A: 1346716800, B: 1381968e3 } }, B: { A: { C: 3861e-6, K: 4267e-6, L: 4268e-6, G: 3861e-6, M: 3702e-6, N: 3861e-6, O: 0.015444, P: 0, Q: 4298e-6, R: 944e-5, S: 4043e-6, T: 7722e-6, U: 3861e-6, V: 3861e-6, W: 3861e-6, X: 3943e-6, Y: 7722e-6, Z: 3943e-6, a: 3943e-6, b: 7722e-6, c: 4118e-6, d: 3939e-6, e: 3943e-6, i: 3943e-6, j: 3943e-6, k: 3929e-6, l: 3901e-6, m: 0.011829, n: 7886e-6, o: 3943e-6, p: 7722e-6, q: 3861e-6, r: 7722e-6, s: 0.011583, t: 0.073359, u: 0.111969, v: 1.66023, f: 2.23552, H: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "K", "L", "G", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "", "", ""], E: "Edge", F: { C: 1438128e3, K: 1447286400, L: 1470096e3, G: 1491868800, M: 1508198400, N: 1525046400, O: 1542067200, P: 1579046400, Q: 1581033600, R: 1586736e3, S: 1590019200, T: 1594857600, U: 1598486400, V: 1602201600, W: 1605830400, X: 161136e4, Y: 1614816e3, Z: 1618358400, a: 1622073600, b: 1626912e3, c: 1630627200, d: 1632441600, e: 1634774400, i: 1637539200, j: 1641427200, k: 1643932800, l: 1646265600, m: 1649635200, n: 1651190400, o: 1653955200, p: 1655942400, q: 1659657600, r: 1661990400, s: 1664755200, t: 1666915200, u: 1670198400, v: 1673481600, f: 1675900800, H: 1678665600 }, D: { C: "ms", K: "ms", L: "ms", G: "ms", M: "ms", N: "ms", O: "ms" } }, C: { A: { "0": 4161e-6, "1": 8786e-6, "2": 4118e-6, "3": 4317e-6, "4": 4393e-6, "5": 4418e-6, "6": 8834e-6, "7": 8322e-6, "8": 8928e-6, "9": 4471e-6, EC: 4118e-6, uB: 4271e-6, I: 0.011703, w: 4879e-6, J: 0.020136, D: 5725e-6, E: 4525e-6, F: 533e-5, A: 4283e-6, B: 7722e-6, C: 4471e-6, K: 4486e-6, L: 453e-5, G: 8322e-6, M: 4417e-6, N: 4425e-6, O: 4161e-6, x: 4443e-6, g: 4283e-6, y: 8322e-6, z: 0.013698, AB: 9284e-6, BB: 4707e-6, CB: 9076e-6, DB: 3861e-6, EB: 4783e-6, FB: 3929e-6, GB: 4783e-6, HB: 487e-5, IB: 5029e-6, JB: 47e-4, KB: 0.019305, LB: 3861e-6, MB: 3867e-6, NB: 4525e-6, OB: 4293e-6, PB: 3861e-6, QB: 4538e-6, RB: 8282e-6, SB: 0.011601, TB: 0.046332, UB: 0.011601, VB: 3929e-6, WB: 3974e-6, XB: 3861e-6, YB: 0.011601, ZB: 3939e-6, vB: 3861e-6, aB: 3929e-6, wB: 4356e-6, bB: 4425e-6, cB: 8322e-6, dB: 415e-5, eB: 4267e-6, fB: 3801e-6, gB: 4267e-6, hB: 3861e-6, iB: 415e-5, jB: 4293e-6, kB: 4425e-6, lB: 3861e-6, h: 415e-5, mB: 415e-5, nB: 4318e-6, oB: 4356e-6, pB: 3974e-6, qB: 0.034749, P: 3861e-6, Q: 3861e-6, R: 3861e-6, xB: 3861e-6, S: 3861e-6, T: 3929e-6, U: 4268e-6, V: 3801e-6, W: 0.015444, X: 7722e-6, Y: 3943e-6, Z: 3943e-6, a: 0.011583, b: 3801e-6, c: 7722e-6, d: 0.011583, e: 3773e-6, i: 7886e-6, j: 3901e-6, k: 3901e-6, l: 3861e-6, m: 3861e-6, n: 3861e-6, o: 0.096525, p: 0.042471, q: 7722e-6, r: 0.011583, s: 0.015444, t: 0.019305, u: 0.069498, v: 1.22008, f: 0.814671, H: 7722e-6, yB: 0, zB: 0, FC: 8786e-6, GC: 487e-5 }, B: "moz", C: ["EC", "uB", "FC", "GC", "I", "w", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "vB", "aB", "wB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "xB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "yB", "zB", ""], E: "Firefox", F: { "0": 1372118400, "1": 1375747200, "2": 1379376e3, "3": 1386633600, "4": 1391472e3, "5": 1395100800, "6": 1398729600, "7": 1402358400, "8": 1405987200, "9": 1409616e3, EC: 1161648e3, uB: 1213660800, FC: 124632e4, GC: 1264032e3, I: 1300752e3, w: 1308614400, J: 1313452800, D: 1317081600, E: 1317081600, F: 1320710400, A: 1324339200, B: 1327968e3, C: 1331596800, K: 1335225600, L: 1338854400, G: 1342483200, M: 1346112e3, N: 1349740800, O: 1353628800, x: 1357603200, g: 1361232e3, y: 1364860800, z: 1368489600, AB: 1413244800, BB: 1417392e3, CB: 1421107200, DB: 1424736e3, EB: 1428278400, FB: 1431475200, GB: 1435881600, HB: 1439251200, IB: 144288e4, JB: 1446508800, KB: 1450137600, LB: 1453852800, MB: 1457395200, NB: 1461628800, OB: 1465257600, PB: 1470096e3, QB: 1474329600, RB: 1479168e3, SB: 1485216e3, TB: 1488844800, UB: 149256e4, VB: 1497312e3, WB: 1502150400, XB: 1506556800, YB: 1510617600, ZB: 1516665600, vB: 1520985600, aB: 1525824e3, wB: 1529971200, bB: 1536105600, cB: 1540252800, dB: 1544486400, eB: 154872e4, fB: 1552953600, gB: 1558396800, hB: 1562630400, iB: 1567468800, jB: 1571788800, kB: 1575331200, lB: 1578355200, h: 1581379200, mB: 1583798400, nB: 1586304e3, oB: 1588636800, pB: 1591056e3, qB: 1593475200, P: 1595894400, Q: 1598313600, R: 1600732800, xB: 1603152e3, S: 1605571200, T: 1607990400, U: 1611619200, V: 1614038400, W: 1616457600, X: 1618790400, Y: 1622505600, Z: 1626134400, a: 1628553600, b: 1630972800, c: 1633392e3, d: 1635811200, e: 1638835200, i: 1641859200, j: 1644364800, k: 1646697600, l: 1649116800, m: 1651536e3, n: 1653955200, o: 1656374400, p: 1658793600, q: 1661212800, r: 1663632e3, s: 1666051200, t: 1668470400, u: 1670889600, v: 1673913600, f: 1676332800, H: 1678752e3, yB: null, zB: null } }, D: { A: { "0": 8786e-6, "1": 3939e-6, "2": 4461e-6, "3": 4141e-6, "4": 4326e-6, "5": 47e-4, "6": 4538e-6, "7": 8322e-6, "8": 8596e-6, "9": 4566e-6, I: 4706e-6, w: 4879e-6, J: 4879e-6, D: 5591e-6, E: 5591e-6, F: 5591e-6, A: 4534e-6, B: 4464e-6, C: 0.010424, K: 83e-4, L: 4706e-6, G: 0.015087, M: 4393e-6, N: 4393e-6, O: 8652e-6, x: 8322e-6, g: 4393e-6, y: 4317e-6, z: 3901e-6, AB: 4118e-6, BB: 3861e-6, CB: 3861e-6, DB: 4335e-6, EB: 4464e-6, FB: 0.015444, GB: 3867e-6, HB: 0.015444, IB: 3773e-6, JB: 3974e-6, KB: 7722e-6, LB: 7948e-6, MB: 3974e-6, NB: 3867e-6, OB: 7722e-6, PB: 0.019305, QB: 0.03861, RB: 3867e-6, SB: 3929e-6, TB: 7722e-6, UB: 7722e-6, VB: 3867e-6, WB: 7722e-6, XB: 0.069498, YB: 3861e-6, ZB: 0.015772, vB: 3773e-6, aB: 0.015444, wB: 7722e-6, bB: 3773e-6, cB: 7722e-6, dB: 3943e-6, eB: 7722e-6, fB: 0.027027, gB: 7722e-6, hB: 0.011583, iB: 0.054054, jB: 0.019305, kB: 0.015444, lB: 0.023166, h: 0.011583, mB: 0.042471, nB: 0.046332, oB: 0.042471, pB: 0.015444, qB: 0.030888, P: 0.127413, Q: 0.03861, R: 0.042471, S: 0.073359, T: 0.042471, U: 0.088803, V: 0.07722, W: 0.081081, X: 0.027027, Y: 0.03861, Z: 0.046332, a: 0.084942, b: 0.050193, c: 0.065637, d: 0.046332, e: 0.019305, i: 0.03861, j: 0.050193, k: 0.092664, l: 0.050193, m: 0.057915, n: 0.061776, o: 0.084942, p: 0.235521, q: 0.084942, r: 0.131274, s: 0.100386, t: 0.19305, u: 0.984555, v: 12.4054, f: 7.25482, H: 0.015444, yB: 0.019305, zB: 0, HC: 0 }, B: "webkit", C: ["", "", "", "", "", "I", "w", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "vB", "aB", "wB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "yB", "zB", "HC"], E: "Chrome", F: { "0": 1348531200, "1": 1352246400, "2": 1357862400, "3": 1361404800, "4": 1364428800, "5": 1369094400, "6": 1374105600, "7": 1376956800, "8": 1384214400, "9": 1389657600, I: 1264377600, w: 1274745600, J: 1283385600, D: 1287619200, E: 1291248e3, F: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, K: 1312243200, L: 1316131200, G: 1316131200, M: 1319500800, N: 1323734400, O: 1328659200, x: 1332892800, g: 133704e4, y: 1340668800, z: 1343692800, AB: 1392940800, BB: 1397001600, CB: 1400544e3, DB: 1405468800, EB: 1409011200, FB: 141264e4, GB: 1416268800, HB: 1421798400, IB: 1425513600, JB: 1429401600, KB: 143208e4, LB: 1437523200, MB: 1441152e3, NB: 1444780800, OB: 1449014400, PB: 1453248e3, QB: 1456963200, RB: 1460592e3, SB: 1464134400, TB: 1469059200, UB: 1472601600, VB: 1476230400, WB: 1480550400, XB: 1485302400, YB: 1489017600, ZB: 149256e4, vB: 1496707200, aB: 1500940800, wB: 1504569600, bB: 1508198400, cB: 1512518400, dB: 1516752e3, eB: 1520294400, fB: 1523923200, gB: 1527552e3, hB: 1532390400, iB: 1536019200, jB: 1539648e3, kB: 1543968e3, lB: 154872e4, h: 1552348800, mB: 1555977600, nB: 1559606400, oB: 1564444800, pB: 1568073600, qB: 1571702400, P: 1575936e3, Q: 1580860800, R: 1586304e3, S: 1589846400, T: 1594684800, U: 1598313600, V: 1601942400, W: 1605571200, X: 1611014400, Y: 1614556800, Z: 1618272e3, a: 1621987200, b: 1626739200, c: 1630368e3, d: 1632268800, e: 1634601600, i: 1637020800, j: 1641340800, k: 1643673600, l: 1646092800, m: 1648512e3, n: 1650931200, o: 1653350400, p: 1655769600, q: 1659398400, r: 1661817600, s: 1664236800, t: 1666656e3, u: 166968e4, v: 1673308800, f: 1675728e3, H: 1678147200, yB: null, zB: null, HC: null } }, E: { A: { I: 0, w: 8322e-6, J: 4656e-6, D: 4465e-6, E: 3974e-6, F: 3929e-6, A: 4425e-6, B: 4318e-6, C: 3801e-6, K: 0.019305, L: 0.096525, G: 0.023166, IC: 0, "0B": 8692e-6, JC: 7722e-6, KC: 456e-5, LC: 4283e-6, MC: 0.057915, "1B": 7802e-6, rB: 7722e-6, sB: 0.030888, "2B": 0.169884, NC: 0.258687, OC: 0.042471, "3B": 0.034749, "4B": 0.088803, "5B": 0.169884, "6B": 0.857142, tB: 0.088803, "7B": 0.293436, "8B": 0.922779, "9B": 0.621621, AC: 0, PC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "IC", "0B", "I", "w", "JC", "J", "KC", "D", "LC", "E", "F", "MC", "A", "1B", "B", "rB", "C", "sB", "K", "2B", "L", "NC", "G", "OC", "3B", "4B", "5B", "6B", "tB", "7B", "8B", "9B", "AC", "PC", ""], E: "Safari", F: { IC: 1205798400, "0B": 1226534400, I: 1244419200, w: 1275868800, JC: 131112e4, J: 1343174400, KC: 13824e5, D: 13824e5, LC: 1410998400, E: 1413417600, F: 1443657600, MC: 1458518400, A: 1474329600, "1B": 1490572800, B: 1505779200, rB: 1522281600, C: 1537142400, sB: 1553472e3, K: 1568851200, "2B": 1585008e3, L: 1600214400, NC: 1619395200, G: 1632096e3, OC: 1635292800, "3B": 1639353600, "4B": 1647216e3, "5B": 1652745600, "6B": 1658275200, tB: 1662940800, "7B": 1666569600, "8B": 1670889600, "9B": 1674432e3, AC: null, PC: null } }, F: { A: { "0": 0.013434, "1": 6702e-6, "2": 6015e-6, "3": 5595e-6, "4": 4393e-6, "5": 3861e-6, "6": 4879e-6, "7": 4879e-6, "8": 3861e-6, "9": 5152e-6, F: 82e-4, B: 0.016581, C: 4317e-6, G: 685e-5, M: 685e-5, N: 685e-5, O: 5014e-6, x: 6015e-6, g: 4879e-6, y: 6597e-6, z: 6597e-6, AB: 5014e-6, BB: 9758e-6, CB: 4879e-6, DB: 7722e-6, EB: 4283e-6, FB: 4367e-6, GB: 4534e-6, HB: 3861e-6, IB: 4227e-6, JB: 4418e-6, KB: 4161e-6, LB: 4227e-6, MB: 4725e-6, NB: 0.011583, OB: 8942e-6, PB: 4707e-6, QB: 4827e-6, RB: 4707e-6, SB: 4707e-6, TB: 4326e-6, UB: 8922e-6, VB: 0.014349, WB: 4425e-6, XB: 472e-5, YB: 4425e-6, ZB: 4425e-6, aB: 472e-5, bB: 4532e-6, cB: 4566e-6, dB: 0.02283, eB: 867e-5, fB: 4656e-6, gB: 4642e-6, hB: 3929e-6, iB: 944e-5, jB: 4293e-6, kB: 3929e-6, lB: 4298e-6, h: 0.096692, mB: 4201e-6, nB: 4141e-6, oB: 4257e-6, pB: 3939e-6, qB: 8236e-6, P: 3855e-6, Q: 3939e-6, R: 8514e-6, xB: 3939e-6, S: 3939e-6, T: 3702e-6, U: 7722e-6, V: 3855e-6, W: 3855e-6, X: 3929e-6, Y: 3861e-6, Z: 0.011703, a: 7546e-6, b: 0.011829, c: 0.069498, d: 0.648648, e: 0.370656, QC: 685e-5, RC: 0, SC: 8392e-6, TC: 4706e-6, rB: 6229e-6, BC: 4879e-6, UC: 8786e-6, sB: 472e-5 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "QC", "RC", "SC", "TC", "B", "rB", "BC", "UC", "C", "sB", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "xB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "", "", ""], E: "Opera", F: { "0": 1405987200, "1": 1409616e3, "2": 1413331200, "3": 1417132800, "4": 1422316800, "5": 1425945600, "6": 1430179200, "7": 1433808e3, "8": 1438646400, "9": 1442448e3, F: 1150761600, QC: 1223424e3, RC: 1251763200, SC: 1267488e3, TC: 1277942400, B: 1292457600, rB: 1302566400, BC: 1309219200, UC: 1323129600, C: 1323129600, sB: 1352073600, G: 1372723200, M: 1377561600, N: 1381104e3, O: 1386288e3, x: 1390867200, g: 1393891200, y: 1399334400, z: 1401753600, AB: 1445904e3, BB: 1449100800, CB: 1454371200, DB: 1457308800, EB: 146232e4, FB: 1465344e3, GB: 1470096e3, HB: 1474329600, IB: 1477267200, JB: 1481587200, KB: 1486425600, LB: 1490054400, MB: 1494374400, NB: 1498003200, OB: 1502236800, PB: 1506470400, QB: 1510099200, RB: 1515024e3, SB: 1517961600, TB: 1521676800, UB: 1525910400, VB: 1530144e3, WB: 1534982400, XB: 1537833600, YB: 1543363200, ZB: 1548201600, aB: 1554768e3, bB: 1561593600, cB: 1566259200, dB: 1570406400, eB: 1573689600, fB: 1578441600, gB: 1583971200, hB: 1587513600, iB: 1592956800, jB: 1595894400, kB: 1600128e3, lB: 1603238400, h: 161352e4, mB: 1612224e3, nB: 1616544e3, oB: 1619568e3, pB: 1623715200, qB: 1627948800, P: 1631577600, Q: 1633392e3, R: 1635984e3, xB: 1638403200, S: 1642550400, T: 1644969600, U: 1647993600, V: 1650412800, W: 1652745600, X: 1654646400, Y: 1657152e3, Z: 1660780800, a: 1663113600, b: 1668816e3, c: 1668643200, d: 1671062400, e: 1675209600 }, D: { F: "o", B: "o", C: "o", QC: "o", RC: "o", SC: "o", TC: "o", rB: "o", BC: "o", UC: "o", sB: "o" } }, G: { A: { E: 0, "0B": 0, VC: 0, CC: 156679e-8, WC: 313358e-8, XC: 313358e-8, YC: 0.0125343, ZC: 626717e-8, aC: 0.0172347, bC: 0.0564045, cC: 470038e-8, dC: 0.0987079, eC: 0.0250687, fC: 0.0235019, gC: 0.0219351, hC: 0.394832, iC: 0.0156679, jC: 0.0360362, kC: 0.0344694, lC: 0.108109, mC: 0.282023, nC: 0.532709, oC: 0.153546, "3B": 0.195849, "4B": 0.233452, "5B": 0.412066, "6B": 1.40071, tB: 1.43988, "7B": 3.51431, "8B": 3.62556, "9B": 2.04623, AC: 940075e-8 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0B", "VC", "CC", "WC", "XC", "YC", "E", "ZC", "aC", "bC", "cC", "dC", "eC", "fC", "gC", "hC", "iC", "jC", "kC", "lC", "mC", "nC", "oC", "3B", "4B", "5B", "6B", "tB", "7B", "8B", "9B", "AC", "", ""], E: "Safari on iOS", F: { "0B": 1270252800, VC: 1283904e3, CC: 1299628800, WC: 1331078400, XC: 1359331200, YC: 1394409600, E: 1410912e3, ZC: 1413763200, aC: 1442361600, bC: 1458518400, cC: 1473724800, dC: 1490572800, eC: 1505779200, fC: 1522281600, gC: 1537142400, hC: 1553472e3, iC: 1568851200, jC: 1572220800, kC: 1580169600, lC: 1585008e3, mC: 1600214400, nC: 1619395200, oC: 1632096e3, "3B": 1639353600, "4B": 1647216e3, "5B": 1652659200, "6B": 1658275200, tB: 1662940800, "7B": 1666569600, "8B": 1670889600, "9B": 1674432e3, AC: null } }, H: { A: { pC: 0.993853 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "pC", "", "", ""], E: "Opera Mini", F: { pC: 1426464e3 } }, I: { A: { uB: 0, I: 0.019696, H: 0, qC: 0, rC: 0, sC: 0, tC: 0.0787838, CC: 0.0689359, uC: 0, vC: 0.305287 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "qC", "rC", "sC", "uB", "I", "tC", "CC", "uC", "vC", "H", "", "", ""], E: "Android Browser", F: { qC: 1256515200, rC: 1274313600, sC: 1291593600, uB: 1298332800, I: 1318896e3, tC: 1341792e3, CC: 1374624e3, uC: 1386547200, vC: 1401667200, H: 1678147200 } }, J: { A: { D: 0, A: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376e3, A: 1359504e3 } }, K: { A: { A: 0, B: 0, C: 0, h: 0.0111391, rB: 0, BC: 0, sB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "rB", "BC", "C", "sB", "h", "", "", ""], E: "Opera Mobile", F: { A: 1287100800, B: 1300752e3, rB: 1314835200, BC: 1318291200, C: 1330300800, sB: 1349740800, h: 1673827200 }, D: { h: "webkit" } }, L: { A: { H: 42.629 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "H", "", "", ""], E: "Chrome for Android", F: { H: 1678147200 } }, M: { A: { f: 0.294672 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "f", "", "", ""], E: "Firefox for Android", F: { f: 1676332800 } }, N: { A: { A: 0.0115934, B: 0.022664 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456e3 } }, O: { A: { wC: 0.896294 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "wC", "", "", ""], E: "UC Browser for Android", F: { wC: 1634688e3 }, D: { wC: "webkit" } }, P: { A: { I: 0.166372, g: 0, xC: 0.0103543, yC: 0.010304, zC: 0.0519911, "0C": 0.0103584, "1C": 0.0104443, "1B": 0.0105043, "2C": 0.0311947, "3C": 0.0103982, "4C": 0.0311947, "5C": 0.0311947, "6C": 0.0207965, tB: 0.0727876, "7C": 0.0727876, "8C": 0.0935841, "9C": 1.32057 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "I", "xC", "yC", "zC", "0C", "1C", "1B", "2C", "3C", "4C", "5C", "6C", "tB", "7C", "8C", "9C", "g", "", "", ""], E: "Samsung Internet", F: { I: 1461024e3, xC: 1481846400, yC: 1509408e3, zC: 1528329600, "0C": 1546128e3, "1C": 1554163200, "1B": 1567900800, "2C": 1582588800, "3C": 1593475200, "4C": 1605657600, "5C": 1618531200, "6C": 1629072e3, tB: 1640736e3, "7C": 1651708800, "8C": 1659657600, "9C": 1667260800, g: 1677369600 } }, Q: { A: { "2B": 0.12278 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "2B", "", "", ""], E: "QQ Browser", F: { "2B": 1663718400 } }, R: { A: { AD: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "AD", "", "", ""], E: "Baidu Browser", F: { AD: 1663027200 } }, S: { A: { BD: 0.079807, CD: 0 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "BD", "CD", "", "", ""], E: "KaiOS Browser", F: { BD: 1527811200, CD: 1631664e3 } } };
132897
+ }
132898
+ });
132899
+
132900
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/agents.js
132901
+ var require_agents4 = __commonJS({
132902
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/agents.js"(exports, module2) {
132903
+ "use strict";
132904
+ var browsers = require_browsers4().browsers;
132905
+ var versions = require_browserVersions4().browserVersions;
132906
+ var agentsData = require_agents3();
132907
+ function unpackBrowserVersions(versionsData) {
132908
+ return Object.keys(versionsData).reduce((usage, version) => {
132909
+ usage[versions[version]] = versionsData[version];
132910
+ return usage;
132911
+ }, {});
132912
+ }
132913
+ module2.exports.agents = Object.keys(agentsData).reduce((map2, key) => {
132914
+ let versionsData = agentsData[key];
132915
+ map2[browsers[key]] = Object.keys(versionsData).reduce((data, entry) => {
132916
+ if (entry === "A") {
132917
+ data.usage_global = unpackBrowserVersions(versionsData[entry]);
132918
+ } else if (entry === "C") {
132919
+ data.versions = versionsData[entry].reduce((list, version) => {
132920
+ if (version === "") {
132921
+ list.push(null);
132922
+ } else {
132923
+ list.push(versions[version]);
132924
+ }
132925
+ return list;
132926
+ }, []);
132927
+ } else if (entry === "D") {
132928
+ data.prefix_exceptions = unpackBrowserVersions(versionsData[entry]);
132929
+ } else if (entry === "E") {
132930
+ data.browser = versionsData[entry];
132931
+ } else if (entry === "F") {
132932
+ data.release_date = Object.keys(versionsData[entry]).reduce(
132933
+ (map22, key2) => {
132934
+ map22[versions[key2]] = versionsData[entry][key2];
132935
+ return map22;
132936
+ },
132937
+ {}
132938
+ );
132939
+ } else {
132940
+ data.prefix = versionsData[entry];
132941
+ }
132942
+ return data;
132943
+ }, {});
132944
+ return map2;
132945
+ }, {});
132946
+ }
132947
+ });
132948
+
132949
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/statuses.js
132950
+ var require_statuses2 = __commonJS({
132951
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/statuses.js"(exports, module2) {
132952
+ module2.exports = {
132953
+ 1: "ls",
132954
+ // WHATWG Living Standard
132955
+ 2: "rec",
132956
+ // W3C Recommendation
132957
+ 3: "pr",
132958
+ // W3C Proposed Recommendation
132959
+ 4: "cr",
132960
+ // W3C Candidate Recommendation
132961
+ 5: "wd",
132962
+ // W3C Working Draft
132963
+ 6: "other",
132964
+ // Non-W3C, but reputable
132965
+ 7: "unoff"
132966
+ // Unofficial, Editor's Draft or W3C "Note"
132967
+ };
132968
+ }
132969
+ });
132970
+
132971
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/supported.js
132972
+ var require_supported2 = __commonJS({
132973
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/supported.js"(exports, module2) {
132974
+ module2.exports = {
132975
+ y: 1 << 0,
132976
+ n: 1 << 1,
132977
+ a: 1 << 2,
132978
+ p: 1 << 3,
132979
+ u: 1 << 4,
132980
+ x: 1 << 5,
132981
+ d: 1 << 6
132982
+ };
132983
+ }
132984
+ });
132985
+
132986
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/feature.js
132987
+ var require_feature2 = __commonJS({
132988
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/feature.js"(exports, module2) {
132989
+ "use strict";
132990
+ var statuses = require_statuses2();
132991
+ var supported = require_supported2();
132992
+ var browsers = require_browsers4().browsers;
132993
+ var versions = require_browserVersions4().browserVersions;
132994
+ var MATH2LOG = Math.log(2);
132995
+ function unpackSupport(cipher) {
132996
+ let stats = Object.keys(supported).reduce((list, support) => {
132997
+ if (cipher & supported[support])
132998
+ list.push(support);
132999
+ return list;
133000
+ }, []);
133001
+ let notes = cipher >> 7;
133002
+ let notesArray = [];
133003
+ while (notes) {
133004
+ let note = Math.floor(Math.log(notes) / MATH2LOG) + 1;
133005
+ notesArray.unshift(`#${note}`);
133006
+ notes -= Math.pow(2, note - 1);
133007
+ }
133008
+ return stats.concat(notesArray).join(" ");
133009
+ }
133010
+ function unpackFeature(packed) {
133011
+ let unpacked = { status: statuses[packed.B], title: packed.C };
133012
+ unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => {
133013
+ let browser = packed.A[key];
133014
+ browserStats[browsers[key]] = Object.keys(browser).reduce(
133015
+ (stats, support) => {
133016
+ let packedVersions = browser[support].split(" ");
133017
+ let unpacked2 = unpackSupport(support);
133018
+ packedVersions.forEach((v) => stats[versions[v]] = unpacked2);
133019
+ return stats;
133020
+ },
133021
+ {}
133022
+ );
133023
+ return browserStats;
133024
+ }, {});
133025
+ return unpacked;
133026
+ }
133027
+ module2.exports = unpackFeature;
133028
+ module2.exports.default = unpackFeature;
133029
+ }
133030
+ });
133031
+
133032
+ // ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/region.js
133033
+ var require_region2 = __commonJS({
133034
+ "../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/region.js"(exports, module2) {
133035
+ "use strict";
133036
+ var browsers = require_browsers4().browsers;
133037
+ function unpackRegion(packed) {
133038
+ return Object.keys(packed).reduce((list, browser) => {
133039
+ let data = packed[browser];
133040
+ list[browsers[browser]] = Object.keys(data).reduce((memo, key) => {
133041
+ let stats = data[key];
133042
+ if (key === "_") {
133043
+ stats.split(" ").forEach((version) => memo[version] = null);
133044
+ } else {
133045
+ memo[key] = stats;
133046
+ }
133047
+ return memo;
133048
+ }, {});
133049
+ return list;
133050
+ }, {});
133051
+ }
133052
+ module2.exports = unpackRegion;
133053
+ module2.exports.default = unpackRegion;
133054
+ }
133055
+ });
133056
+
131335
133057
  // ../../../toolkit/utils/compiled/browserslist/index.js
131336
133058
  var require_browserslist2 = __commonJS({
131337
133059
  "../../../toolkit/utils/compiled/browserslist/index.js"(exports, module2) {
@@ -132515,13 +134237,13 @@ var require_browserslist2 = __commonJS({
132515
134237
  e2.exports = webpackEmptyContext;
132516
134238
  }, 768: (e2) => {
132517
134239
  "use strict";
132518
- e2.exports = require_agents2();
134240
+ e2.exports = require_agents4();
132519
134241
  }, 711: (e2) => {
132520
134242
  "use strict";
132521
- e2.exports = require_feature();
134243
+ e2.exports = require_feature2();
132522
134244
  }, 225: (e2) => {
132523
134245
  "use strict";
132524
- e2.exports = require_region();
134246
+ e2.exports = require_region2();
132525
134247
  }, 147: (e2) => {
132526
134248
  "use strict";
132527
134249
  e2.exports = require("fs");
@@ -135051,7 +136773,7 @@ var require_compiled2 = __commonJS({
135051
136773
  var import_ora = __toESM2(require_ora3());
135052
136774
  var import_glob = __toESM2(require_glob2());
135053
136775
  var import_js_yaml = __toESM2(require_js_yaml2());
135054
- var import_chalk = __toESM2(require_chalk2());
136776
+ var import_chalk = __toESM2(require_chalk3());
135055
136777
  var import_debug = __toESM2(require_debug4());
135056
136778
  var import_slash = __toESM2(require_slash2());
135057
136779
  var import_execa = __toESM2(require_execa2());
@@ -135281,7 +137003,7 @@ var require_logger4 = __commonJS({
135281
137003
  logger: () => logger2
135282
137004
  });
135283
137005
  module2.exports = __toCommonJS2(logger_exports);
135284
- var import_chalk = __toESM2(require_chalk2());
137006
+ var import_chalk = __toESM2(require_chalk3());
135285
137007
  var LOG_LEVEL = {
135286
137008
  error: 0,
135287
137009
  warn: 1,
@@ -138881,7 +140603,7 @@ var require_filter3 = __commonJS({
138881
140603
  return r;
138882
140604
  };
138883
140605
  Object.defineProperty(exports, "__esModule", { value: true });
138884
- var debug_1 = require_browser();
140606
+ var debug_1 = require_src3();
138885
140607
  var mongo_eql_1 = require_mongo_eql();
138886
140608
  var ops = require_ops();
138887
140609
  var get_type_1 = require_get_type();
@@ -139041,7 +140763,7 @@ var require_mods = __commonJS({
139041
140763
  return r;
139042
140764
  };
139043
140765
  Object.defineProperty(exports, "__esModule", { value: true });
139044
- var debug_1 = require_browser();
140766
+ var debug_1 = require_src3();
139045
140767
  var mongoDot = require_mongo_dot();
139046
140768
  var mongo_eql_1 = require_mongo_eql();
139047
140769
  var get_type_1 = require_get_type();
@@ -139502,7 +141224,7 @@ var require_query = __commonJS({
139502
141224
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
139503
141225
  "use strict";
139504
141226
  Object.defineProperty(exports, "__esModule", { value: true });
139505
- var debug_1 = require_browser();
141227
+ var debug_1 = require_src3();
139506
141228
  var filter_1 = require_filter3();
139507
141229
  var mods = require_mods();
139508
141230
  var mongoDot = require_mongo_dot();
@@ -139609,7 +141331,7 @@ var require_utils12 = __commonJS({
139609
141331
  });
139610
141332
 
139611
141333
  // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.0.5/node_modules/@modern-js/codesmith-api-json/dist/js/node/index.js
139612
- var require_node10 = __commonJS({
141334
+ var require_node12 = __commonJS({
139613
141335
  "../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.0.5/node_modules/@modern-js/codesmith-api-json/dist/js/node/index.js"(exports) {
139614
141336
  "use strict";
139615
141337
  Object.defineProperty(exports, "__esModule", {
@@ -139729,7 +141451,7 @@ __export(src_exports, {
139729
141451
  module.exports = __toCommonJS(src_exports);
139730
141452
  var import_path9 = __toESM(require("path"));
139731
141453
  var import_lodash11 = __toESM(require_lodash2());
139732
- var import_codesmith_api_app = __toESM(require_node9());
141454
+ var import_codesmith_api_app = __toESM(require_node11());
139733
141455
 
139734
141456
  // ../../../cli/plugin-i18n/dist/esm-node/index.js
139735
141457
  var import_lodash2 = __toESM(require_lodash2());
@@ -140847,7 +142569,7 @@ var SolutionSchemas = {
140847
142569
 
140848
142570
  // ../../generator-plugin/dist/esm/index.js
140849
142571
  var import_path8 = __toESM(require("path"));
140850
- var import_codesmith7 = __toESM(require_node3());
142572
+ var import_codesmith7 = __toESM(require_node4());
140851
142573
 
140852
142574
  // ../../generator-utils/dist/esm/index.js
140853
142575
  var import_path2 = __toESM(require("path"));
@@ -141019,8 +142741,8 @@ var import_lodash10 = __toESM(require_lodash2());
141019
142741
 
141020
142742
  // ../../generator-plugin/dist/esm/context/file.js
141021
142743
  var import_path4 = __toESM(require("path"));
141022
- var import_codesmith_api_json = __toESM(require_node10());
141023
- var import_codesmith = __toESM(require_node3());
142744
+ var import_codesmith_api_json = __toESM(require_node12());
142745
+ var import_codesmith = __toESM(require_node4());
141024
142746
 
141025
142747
  // ../../generator-plugin/dist/esm/utils/file.js
141026
142748
  var import_path3 = __toESM(require("path"));
@@ -142850,16 +144572,16 @@ function getGeneratorPath(generator, distTag) {
142850
144572
 
142851
144573
  // ../../new-action/dist/esm/mwa.js
142852
144574
  var import_lodash6 = __toESM(require_lodash2());
142853
- var import_codesmith2 = __toESM(require_node3());
144575
+ var import_codesmith2 = __toESM(require_node4());
142854
144576
 
142855
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/index.js
144577
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/index.js
142856
144578
  var import_lodash5 = __toESM(require_lodash3());
142857
144579
 
142858
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/prompt.js
144580
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/prompt.js
142859
144581
  init_esm6();
142860
144582
  var import_inquirer = __toESM(require_inquirer());
142861
144583
 
142862
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/transform.js
144584
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/transform.js
142863
144585
  var import_lodash4 = __toESM(require_lodash3());
142864
144586
  init_esm4();
142865
144587
  var _excluded = ["type", "title", "default", "enum", "x-validate"];
@@ -143020,7 +144742,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
143020
144742
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
143021
144743
  }
143022
144744
 
143023
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/prompt.js
144745
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/prompt.js
143024
144746
  function ownKeys3(object, enumerableOnly) {
143025
144747
  var keys = Object.keys(object);
143026
144748
  if (Object.getOwnPropertySymbols) {
@@ -143145,7 +144867,7 @@ function prompt(_0) {
143145
144867
  });
143146
144868
  }
143147
144869
 
143148
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/inquirer.js
144870
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/inquirer.js
143149
144871
  function ownKeys4(object, enumerableOnly) {
143150
144872
  var keys = Object.keys(object);
143151
144873
  if (Object.getOwnPropertySymbols) {
@@ -143208,7 +144930,7 @@ var CLIReader = class {
143208
144930
  }
143209
144931
  };
143210
144932
 
143211
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_nm4hhkiukvbf5akr5dslvh5h6q/node_modules/@modern-js/codesmith-formily/dist/js/modern/index.js
144933
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/index.js
143212
144934
  init_esm4();
143213
144935
  function _defineProperty10(obj, key, value) {
143214
144936
  if (key in obj) {
@@ -143351,7 +145073,7 @@ var MWANewAction = (options) => __async(void 0, null, function* () {
143351
145073
 
143352
145074
  // ../../new-action/dist/esm/module.js
143353
145075
  var import_lodash7 = __toESM(require_lodash2());
143354
- var import_codesmith3 = __toESM(require_node3());
145076
+ var import_codesmith3 = __toESM(require_node4());
143355
145077
  var ModuleNewAction = (options) => __async(void 0, null, function* () {
143356
145078
  const {
143357
145079
  locale = "zh",
@@ -143458,7 +145180,7 @@ var ModuleNewAction = (options) => __async(void 0, null, function* () {
143458
145180
  // ../../new-action/dist/esm/monorepo.js
143459
145181
  var import_path6 = __toESM(require("path"));
143460
145182
  var import_lodash8 = __toESM(require_lodash2());
143461
- var import_codesmith4 = __toESM(require_node3());
145183
+ var import_codesmith4 = __toESM(require_node4());
143462
145184
  var REPO_GENERATOR = "@modern-js/repo-generator";
143463
145185
  var MonorepoNewAction = (options) => __async(void 0, null, function* () {
143464
145186
  const {
@@ -144028,7 +145750,7 @@ var PluginContext = /* @__PURE__ */ function() {
144028
145750
 
144029
145751
  // ../../generator-plugin/dist/esm/utils/index.js
144030
145752
  var import_path7 = __toESM(require("path"));
144031
- var import_codesmith6 = __toESM(require_node3());
145753
+ var import_codesmith6 = __toESM(require_node4());
144032
145754
 
144033
145755
  // ../../generator-plugin/dist/esm/utils/module.js
144034
145756
  var import_lodash9 = __toESM(require_lodash2());
@@ -144040,7 +145762,7 @@ function requireModule(modulePath) {
144040
145762
  }
144041
145763
 
144042
145764
  // ../../generator-plugin/dist/esm/utils/getPackageMeta.js
144043
- var import_codesmith5 = __toESM(require_node3());
145765
+ var import_codesmith5 = __toESM(require_node4());
144044
145766
  function asyncGeneratorStep6(gen, resolve, reject, _next, _throw, key, arg) {
144045
145767
  try {
144046
145768
  var info = gen[key](arg);