@nsshunt/ststestrunner 1.0.64 → 1.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ststestrunner.mjs +364 -335
- package/dist/ststestrunner.mjs.map +1 -1
- package/dist/ststestrunner.umd.js +621 -584
- package/dist/ststestrunner.umd.js.map +1 -1
- package/package.json +12 -12
package/dist/ststestrunner.mjs
CHANGED
|
@@ -1642,15 +1642,17 @@ class WorkerInstance {
|
|
|
1642
1642
|
archived: false
|
|
1643
1643
|
};
|
|
1644
1644
|
__privateGet$2(this, _runners)[runner.id].runner.iteration = 0;
|
|
1645
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runner.id, IRunnerState.created);
|
|
1645
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#CreateRunnerEx2RunState", runner.id, IRunnerState.created);
|
|
1646
1646
|
} catch (error) {
|
|
1647
1647
|
__privateGet$2(this, _error$1).call(this, `#CreateRunnerEx2RunState(): [${error}]`);
|
|
1648
1648
|
}
|
|
1649
1649
|
});
|
|
1650
|
-
__privateAdd$2(this, _UpdateRunnerStateById, (id, state) => {
|
|
1650
|
+
__privateAdd$2(this, _UpdateRunnerStateById, (fromContext, id, state) => {
|
|
1651
1651
|
try {
|
|
1652
1652
|
if (__privateGet$2(this, _runners)[id]) {
|
|
1653
|
+
const previousState = __privateGet$2(this, _runners)[id].runner.state;
|
|
1653
1654
|
__privateGet$2(this, _runners)[id].runner.state = state;
|
|
1655
|
+
__privateGet$2(this, _debug$1).call(this, `#UpdateRunnerStateById(): Context: [${fromContext}] Previous State: [${previousState}] New State: [${state}]`);
|
|
1654
1656
|
__privateGet$2(this, _PostMessageToWorkerManagerById).call(this, eIWMessageCommands.RunnerStateChange, id, false);
|
|
1655
1657
|
} else {
|
|
1656
1658
|
__privateGet$2(this, _warn).call(this, `#UpdateRunnerStateById(): Runner ID: [${id}] not found`);
|
|
@@ -1844,7 +1846,7 @@ class WorkerInstance {
|
|
|
1844
1846
|
const { state } = __privateGet$2(this, _runners)[runnerId].runner;
|
|
1845
1847
|
if (state === IRunnerState.created) {
|
|
1846
1848
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.StartRunner());
|
|
1847
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.running);
|
|
1849
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#StartRunner-1", runnerId, IRunnerState.running);
|
|
1848
1850
|
await Sleep(0);
|
|
1849
1851
|
const startLoop = /* @__PURE__ */ new Date();
|
|
1850
1852
|
const ExecuteLoop = async () => {
|
|
@@ -1885,11 +1887,11 @@ class WorkerInstance {
|
|
|
1885
1887
|
} else {
|
|
1886
1888
|
if (pauseOnComplete === true) {
|
|
1887
1889
|
await ((_b2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _b2.PauseRunner());
|
|
1888
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.paused);
|
|
1890
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#StartRunner-2", runnerId, IRunnerState.paused);
|
|
1889
1891
|
ExecuteLoop();
|
|
1890
1892
|
} else {
|
|
1891
1893
|
await ((_c = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _c.Completed());
|
|
1892
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.completed);
|
|
1894
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#StartRunner-3", runnerId, IRunnerState.completed);
|
|
1893
1895
|
}
|
|
1894
1896
|
}
|
|
1895
1897
|
} else {
|
|
@@ -1917,7 +1919,7 @@ class WorkerInstance {
|
|
|
1917
1919
|
const { state } = __privateGet$2(this, _runners)[id].runner;
|
|
1918
1920
|
if (state === IRunnerState.paused || state === IRunnerState.running) {
|
|
1919
1921
|
retVal = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, id)) == null ? void 0 : _a2.StopRunner());
|
|
1920
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, id, IRunnerState.stopped);
|
|
1922
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#StopRunnerByRunnerId", id, IRunnerState.stopped);
|
|
1921
1923
|
}
|
|
1922
1924
|
} else {
|
|
1923
1925
|
__privateGet$2(this, _warn).call(this, `#StopRunnerByRunnerId(): Runner: [${id}] not found`);
|
|
@@ -1945,7 +1947,7 @@ class WorkerInstance {
|
|
|
1945
1947
|
const { state } = __privateGet$2(this, _runners)[runnerId].runner;
|
|
1946
1948
|
if (state === IRunnerState.created || state === IRunnerState.paused || state === IRunnerState.running) {
|
|
1947
1949
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.TerminateRunner());
|
|
1948
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.terminated);
|
|
1950
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#TerminateRunner", runnerId, IRunnerState.terminated);
|
|
1949
1951
|
}
|
|
1950
1952
|
} else {
|
|
1951
1953
|
__privateGet$2(this, _warn).call(this, `#TerminateRunner(): Runner: [${runnerId}] not found`);
|
|
@@ -1991,7 +1993,7 @@ class WorkerInstance {
|
|
|
1991
1993
|
const { state } = __privateGet$2(this, _runners)[runnerId].runner;
|
|
1992
1994
|
if (state === IRunnerState.running) {
|
|
1993
1995
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.PauseRunner());
|
|
1994
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.paused);
|
|
1996
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#PauseRunner", runnerId, IRunnerState.paused);
|
|
1995
1997
|
}
|
|
1996
1998
|
} else {
|
|
1997
1999
|
__privateGet$2(this, _warn).call(this, `#PauseRunner(): Runner: [${runnerId}] not found`);
|
|
@@ -2010,7 +2012,7 @@ class WorkerInstance {
|
|
|
2010
2012
|
const { state } = __privateGet$2(this, _runners)[runnerId].runner;
|
|
2011
2013
|
if (state === IRunnerState.paused) {
|
|
2012
2014
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.ResumeRunner());
|
|
2013
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.running);
|
|
2015
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#ResumeRunner", runnerId, IRunnerState.running);
|
|
2014
2016
|
}
|
|
2015
2017
|
} else {
|
|
2016
2018
|
__privateGet$2(this, _warn).call(this, `#ResumeRunner(): Runner: [${runnerId}] not found`);
|
|
@@ -2028,7 +2030,7 @@ class WorkerInstance {
|
|
|
2028
2030
|
if (__privateGet$2(this, _runners)[runnerId]) {
|
|
2029
2031
|
const { state } = __privateGet$2(this, _runners)[runnerId].runner;
|
|
2030
2032
|
if (state === IRunnerState.paused || state === IRunnerState.running) {
|
|
2031
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.paused);
|
|
2033
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#ResetRunner", runnerId, IRunnerState.paused);
|
|
2032
2034
|
__privateGet$2(this, _ResetRunnerIterationById).call(this, runnerId);
|
|
2033
2035
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.ResetRunner());
|
|
2034
2036
|
}
|
|
@@ -2053,7 +2055,7 @@ class WorkerInstance {
|
|
|
2053
2055
|
result = await ((_a2 = __privateGet$2(this, _GetRunnerInstanceById).call(this, runnerId)) == null ? void 0 : _a2.ExecuteRunner());
|
|
2054
2056
|
const newIteration = __privateGet$2(this, _IncRunnerIterationById).call(this, runnerId);
|
|
2055
2057
|
__privateGet$2(this, _debug$1).call(this, `${chalk$2.magenta(` --> runner: [${runnerId}]`)} Next iteration number: [${newIteration}] for next Execute or Resume.`);
|
|
2056
|
-
__privateGet$2(this, _UpdateRunnerStateById).call(this, runnerId, IRunnerState.paused);
|
|
2058
|
+
__privateGet$2(this, _UpdateRunnerStateById).call(this, "#ExecuteRunner", runnerId, IRunnerState.paused);
|
|
2057
2059
|
}
|
|
2058
2060
|
} else {
|
|
2059
2061
|
__privateGet$2(this, _warn).call(this, `#ExecuteRunner(): Runner: [${runnerId}] not found`);
|
|
@@ -4578,6 +4580,16 @@ const isPlainObject = (val) => {
|
|
|
4578
4580
|
const prototype2 = getPrototypeOf(val);
|
|
4579
4581
|
return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(toStringTag in val) && !(iterator in val);
|
|
4580
4582
|
};
|
|
4583
|
+
const isEmptyObject = (val) => {
|
|
4584
|
+
if (!isObject$2(val) || isBuffer(val)) {
|
|
4585
|
+
return false;
|
|
4586
|
+
}
|
|
4587
|
+
try {
|
|
4588
|
+
return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype;
|
|
4589
|
+
} catch (e2) {
|
|
4590
|
+
return false;
|
|
4591
|
+
}
|
|
4592
|
+
};
|
|
4581
4593
|
const isDate = kindOfTest("Date");
|
|
4582
4594
|
const isFile = kindOfTest("File");
|
|
4583
4595
|
const isBlob = kindOfTest("Blob");
|
|
@@ -4605,6 +4617,9 @@ function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
|
4605
4617
|
fn.call(null, obj[i], i, obj);
|
|
4606
4618
|
}
|
|
4607
4619
|
} else {
|
|
4620
|
+
if (isBuffer(obj)) {
|
|
4621
|
+
return;
|
|
4622
|
+
}
|
|
4608
4623
|
const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
|
|
4609
4624
|
const len = keys.length;
|
|
4610
4625
|
let key;
|
|
@@ -4615,6 +4630,9 @@ function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
|
4615
4630
|
}
|
|
4616
4631
|
}
|
|
4617
4632
|
function findKey(obj, key) {
|
|
4633
|
+
if (isBuffer(obj)) {
|
|
4634
|
+
return null;
|
|
4635
|
+
}
|
|
4618
4636
|
key = key.toLowerCase();
|
|
4619
4637
|
const keys = Object.keys(obj);
|
|
4620
4638
|
let i = keys.length;
|
|
@@ -4805,6 +4823,9 @@ const toJSONObject = (obj) => {
|
|
|
4805
4823
|
if (stack.indexOf(source2) >= 0) {
|
|
4806
4824
|
return;
|
|
4807
4825
|
}
|
|
4826
|
+
if (isBuffer(source2)) {
|
|
4827
|
+
return source2;
|
|
4828
|
+
}
|
|
4808
4829
|
if (!("toJSON" in source2)) {
|
|
4809
4830
|
stack[i] = source2;
|
|
4810
4831
|
const target = isArray(source2) ? [] : {};
|
|
@@ -4854,6 +4875,7 @@ const utils$1 = {
|
|
|
4854
4875
|
isBoolean,
|
|
4855
4876
|
isObject: isObject$2,
|
|
4856
4877
|
isPlainObject,
|
|
4878
|
+
isEmptyObject,
|
|
4857
4879
|
isReadableStream,
|
|
4858
4880
|
isRequest,
|
|
4859
4881
|
isResponse,
|
|
@@ -5245,15 +5267,16 @@ const platform = {
|
|
|
5245
5267
|
...platform$1
|
|
5246
5268
|
};
|
|
5247
5269
|
function toURLEncodedForm(data, options) {
|
|
5248
|
-
return toFormData$1(data, new platform.classes.URLSearchParams(),
|
|
5270
|
+
return toFormData$1(data, new platform.classes.URLSearchParams(), {
|
|
5249
5271
|
visitor: function(value2, key, path, helpers) {
|
|
5250
5272
|
if (platform.isNode && utils$1.isBuffer(value2)) {
|
|
5251
5273
|
this.append(key, value2.toString("base64"));
|
|
5252
5274
|
return false;
|
|
5253
5275
|
}
|
|
5254
5276
|
return helpers.defaultVisitor.apply(this, arguments);
|
|
5255
|
-
}
|
|
5256
|
-
|
|
5277
|
+
},
|
|
5278
|
+
...options
|
|
5279
|
+
});
|
|
5257
5280
|
}
|
|
5258
5281
|
function parsePropPath(name) {
|
|
5259
5282
|
return utils$1.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
|
@@ -5764,7 +5787,7 @@ function throttle(fn, freq) {
|
|
|
5764
5787
|
clearTimeout(timer);
|
|
5765
5788
|
timer = null;
|
|
5766
5789
|
}
|
|
5767
|
-
fn
|
|
5790
|
+
fn(...args);
|
|
5768
5791
|
};
|
|
5769
5792
|
const throttled = (...args) => {
|
|
5770
5793
|
const now = Date.now();
|
|
@@ -5939,7 +5962,7 @@ function mergeConfig$1(config1, config2) {
|
|
|
5939
5962
|
validateStatus: mergeDirectKeys,
|
|
5940
5963
|
headers: (a2, b2, prop) => mergeDeepProperties(headersToObject(a2), headersToObject(b2), prop, true)
|
|
5941
5964
|
};
|
|
5942
|
-
utils$1.forEach(Object.keys(
|
|
5965
|
+
utils$1.forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
|
|
5943
5966
|
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
|
5944
5967
|
const configValue = merge2(config1[prop], config2[prop], prop);
|
|
5945
5968
|
utils$1.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
|
|
@@ -6467,7 +6490,7 @@ function dispatchRequest(config) {
|
|
|
6467
6490
|
return Promise.reject(reason);
|
|
6468
6491
|
});
|
|
6469
6492
|
}
|
|
6470
|
-
const VERSION$1 = "1.
|
|
6493
|
+
const VERSION$1 = "1.11.0";
|
|
6471
6494
|
const validators$1 = {};
|
|
6472
6495
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
6473
6496
|
validators$1[type] = function validator2(thing) {
|
|
@@ -6635,8 +6658,8 @@ let Axios$1 = class Axios {
|
|
|
6635
6658
|
let len;
|
|
6636
6659
|
if (!synchronousRequestInterceptors) {
|
|
6637
6660
|
const chain = [dispatchRequest.bind(this), void 0];
|
|
6638
|
-
chain.unshift
|
|
6639
|
-
chain.push
|
|
6661
|
+
chain.unshift(...requestInterceptorChain);
|
|
6662
|
+
chain.push(...responseInterceptorChain);
|
|
6640
6663
|
len = chain.length;
|
|
6641
6664
|
promise = Promise.resolve(config);
|
|
6642
6665
|
while (i < len) {
|
|
@@ -13577,7 +13600,7 @@ var Xa = { author: T$1, format: M$1, genre: w$1, publisher: L$1, series: D$1, ti
|
|
|
13577
13600
|
var H$1 = ["###-###-####", "(###) ###-####", "1-###-###-####", "###.###.####"];
|
|
13578
13601
|
var $a = { formats: H$1 }, W$1 = $a;
|
|
13579
13602
|
var G$1 = ["azure", "black", "blue", "cyan", "fuchsia", "gold", "green", "grey", "indigo", "ivory", "lavender", "lime", "magenta", "maroon", "mint green", "olive", "orange", "orchid", "pink", "plum", "purple", "red", "salmon", "silver", "sky blue", "tan", "teal", "turquoise", "violet", "white", "yellow"];
|
|
13580
|
-
var er$1 = { human: G$1 }, F
|
|
13603
|
+
var er$1 = { human: G$1 }, F = er$1;
|
|
13581
13604
|
var N = ["Automotive", "Baby", "Beauty", "Books", "Clothing", "Computers", "Electronics", "Games", "Garden", "Grocery", "Health", "Home", "Industrial", "Jewelry", "Kids", "Movies", "Music", "Outdoors", "Shoes", "Sports", "Tools", "Toys"];
|
|
13582
13605
|
var E = ["Discover the {{animal.type}}-like agility of our {{commerce.product}}, perfect for {{word.adjective}} users", "Discover the {{word.adjective}} new {{commerce.product}} with an exciting mix of {{commerce.productMaterial}} ingredients", "Ergonomic {{commerce.product}} made with {{commerce.productMaterial}} for all-day {{word.adjective}} support", "Experience the {{color.human}} brilliance of our {{commerce.product}}, perfect for {{word.adjective}} environments", "Featuring {{science.chemical_element.name}}-enhanced technology, our {{commerce.product}} offers unparalleled {{word.adjective}} performance", "Innovative {{commerce.product}} featuring {{word.adjective}} technology and {{commerce.productMaterial}} construction", "Introducing the {{location.country}}-inspired {{commerce.product}}, blending {{word.adjective}} style with local craftsmanship", "New {{color.human}} {{commerce.product}} with ergonomic design for {{word.adjective}} comfort", 'New {{commerce.product}} model with {{number.int({"min": 1, "max": 100})}} GB RAM, {{number.int({"min": 1, "max": 1000})}} GB storage, and {{word.adjective}} features', "Our {{animal.type}}-friendly {{commerce.product}} ensures {{word.adjective}} comfort for your pets", "Our {{food.adjective}}-inspired {{commerce.product}} brings a taste of luxury to your {{word.adjective}} lifestyle", "Professional-grade {{commerce.product}} perfect for {{word.adjective}} training and recreational use", "Savor the {{food.adjective}} essence in our {{commerce.product}}, designed for {{word.adjective}} culinary adventures", "Stylish {{commerce.product}} designed to make you stand out with {{word.adjective}} looks", "The sleek and {{word.adjective}} {{commerce.product}} comes with {{color.human}} LED lighting for smart functionality", "The {{color.human}} {{commerce.product}} combines {{location.country}} aesthetics with {{science.chemical_element.name}}-based durability", "The {{company.catchPhrase}} {{commerce.product}} offers reliable performance and {{word.adjective}} design", "The {{person.firstName}} {{commerce.product}} is the latest in a series of {{word.adjective}} products from {{company.name}}", "{{commerce.productAdjective}} {{commerce.product}} designed with {{commerce.productMaterial}} for {{word.adjective}} performance", "{{company.name}}'s most advanced {{commerce.product}} technology increases {{word.adjective}} capabilities"];
|
|
13583
13606
|
var J$1 = { adjective: ["Awesome", "Bespoke", "Electronic", "Elegant", "Ergonomic", "Fantastic", "Fresh", "Frozen", "Generic", "Gorgeous", "Handcrafted", "Handmade", "Incredible", "Intelligent", "Licensed", "Luxurious", "Modern", "Oriental", "Practical", "Recycled", "Refined", "Rustic", "Sleek", "Small", "Soft", "Tasty", "Unbranded"], material: ["Aluminum", "Bamboo", "Bronze", "Ceramic", "Concrete", "Cotton", "Gold", "Granite", "Marble", "Metal", "Plastic", "Rubber", "Silk", "Steel", "Wooden"], product: ["Bacon", "Ball", "Bike", "Car", "Chair", "Cheese", "Chicken", "Chips", "Computer", "Fish", "Gloves", "Hat", "Keyboard", "Mouse", "Pants", "Pizza", "Salad", "Sausages", "Shirt", "Shoes", "Soap", "Table", "Towels", "Tuna"] };
|
|
@@ -13592,7 +13615,7 @@ var j$1 = ["{{person.last_name.generic}} - {{person.last_name.generic}}", "{{per
|
|
|
13592
13615
|
var q$1 = ["ability", "access", "adapter", "algorithm", "alliance", "analyzer", "application", "approach", "architecture", "archive", "array", "artificial intelligence", "attitude", "benchmark", "budgetary management", "capability", "capacity", "challenge", "circuit", "collaboration", "complexity", "concept", "conglomeration", "contingency", "core", "customer loyalty", "data-warehouse", "database", "definition", "emulation", "encoding", "encryption", "firmware", "flexibility", "focus group", "forecast", "frame", "framework", "function", "functionalities", "generative AI", "hardware", "help-desk", "hierarchy", "hub", "implementation", "infrastructure", "initiative", "installation", "instruction set", "interface", "internet solution", "intranet", "knowledge base", "knowledge user", "leverage", "local area network", "matrices", "matrix", "methodology", "microservice", "middleware", "migration", "model", "moderator", "monitoring", "moratorium", "neural-net", "open architecture", "orchestration", "paradigm", "parallelism", "policy", "portal", "pricing structure", "process improvement", "product", "productivity", "project", "projection", "protocol", "service-desk", "software", "solution", "standardization", "strategy", "structure", "success", "support", "synergy", "system engine", "task-force", "throughput", "time-frame", "toolset", "utilisation", "website", "workforce"];
|
|
13593
13616
|
var rr$1 = { adjective: K$1, buzz_adjective: O$1, buzz_noun: x$2, buzz_verb: z$1, descriptor: V$1, legal_entity_type: Y$1, name_pattern: j$1, noun: q$1 }, U$1 = rr$1;
|
|
13594
13617
|
var Z$1 = ["avatar", "category", "comment", "createdAt", "email", "group", "id", "name", "password", "phone", "status", "title", "token", "updatedAt"];
|
|
13595
|
-
var or$1 = { column: Z$1 }, _ = or$1;
|
|
13618
|
+
var or$1 = { column: Z$1 }, _$1 = or$1;
|
|
13596
13619
|
var Q$1 = { wide: ["April", "August", "December", "February", "January", "July", "June", "March", "May", "November", "October", "September"], abbr: ["Apr", "Aug", "Dec", "Feb", "Jan", "Jul", "Jun", "Mar", "May", "Nov", "Oct", "Sep"] };
|
|
13597
13620
|
var X$1 = { wide: ["Friday", "Monday", "Saturday", "Sunday", "Thursday", "Tuesday", "Wednesday"], abbr: ["Fri", "Mon", "Sat", "Sun", "Thu", "Tue", "Wed"] };
|
|
13598
13621
|
var nr$1 = { month: Q$1, weekday: X$1 }, $$1 = nr$1;
|
|
@@ -13614,17 +13637,17 @@ var ye$1 = ["California maki", "Peking duck", "Philadelphia maki", "arepas", "ba
|
|
|
13614
13637
|
var pe$1 = ["{{food.adjective}} {{food.ethnic_category}} stew", "{{food.adjective}} {{food.meat}} with {{food.vegetable}}", "{{food.ethnic_category}} {{food.ingredient}} soup", "{{food.fruit}} and {{food.fruit}} tart", "{{food.fruit}} pie", "{{food.fruit}}-glazed {{food.meat}} skewers", "{{food.fruit}}-infused {{food.meat}} roast", "{{food.ingredient}} and {{food.meat}} pie", "{{food.ingredient}}-infused {{food.meat}}", "{{food.meat}} steak", "{{food.meat}} with {{food.fruit}} sauce", "{{food.spice}}-crusted {{food.meat}}", "{{food.spice}}-rubbed {{food.meat}} salad", "{{food.vegetable}} salad", "{{person.first_name.generic}}'s special {{food.ingredient}}"];
|
|
13615
13638
|
var ge$1 = ["Ainu", "Albanian", "American", "Andhra", "Anglo-Indian", "Arab", "Argentine", "Armenian", "Assyrian", "Awadhi", "Azerbaijani", "Balochi", "Bangladeshi", "Bashkir", "Belarusian", "Bengali", "Berber", "Brazilian", "British", "Buddhist", "Bulgarian", "Cajun", "Cantonese", "Caribbean", "Chechen", "Chinese", "Chinese Islamic", "Circassian", "Crimean Tatar", "Cypriot", "Czech", "Danish", "Egyptian", "English", "Eritrean", "Estonian", "Ethiopian", "Filipino", "French", "Georgian", "German", "Goan", "Goan Catholic", "Greek", "Gujarati", "Hyderabad", "Indian", "Indian Chinese", "Indian Singaporean", "Indonesian", "Inuit", "Irish", "Italian", "Italian-American", "Jamaican", "Japanese", "Jewish - Israeli", "Karnataka", "Kazakh", "Keralite", "Korean", "Kurdish", "Laotian", "Latvian", "Lebanese", "Lithuanian", "Louisiana Creole", "Maharashtrian", "Malay", "Malaysian Chinese", "Malaysian Indian", "Mangalorean", "Mediterranean", "Mennonite", "Mexican", "Mordovian", "Mughal", "Native American", "Nepalese", "New Mexican", "Odia", "Pakistani", "Parsi", "Pashtun", "Pennsylvania Dutch", "Peranakan", "Persian", "Peruvian", "Polish", "Portuguese", "Punjabi", "Québécois", "Rajasthani", "Romani", "Romanian", "Russian", "Sami", "Serbian", "Sindhi", "Slovak", "Slovenian", "Somali", "South Indian", "Soviet", "Spanish", "Sri Lankan", "Taiwanese", "Tamil", "Tatar", "Texan", "Thai", "Turkish", "Udupi", "Ukrainian", "Vietnamese", "Yamal", "Zambian", "Zanzibari"];
|
|
13616
13639
|
var be$1 = ["apple", "apricot", "aubergine", "avocado", "banana", "berry", "blackberry", "blood orange", "blueberry", "bush tomato", "butternut pumpkin", "cantaloupe", "cavalo", "cherry", "corella pear", "cranberry", "cumquat", "currant", "custard apple", "custard apples daikon", "date", "dragonfruit", "dried apricot", "elderberry", "feijoa", "fig", "fingerlime", "goji berry", "grape", "grapefruit", "guava", "honeydew melon", "incaberry", "jarrahdale pumpkin", "juniper berry", "kiwi fruit", "kiwiberry", "lemon", "lime", "longan", "loquat", "lychee", "mandarin", "mango", "mangosteen", "melon", "mulberry", "nashi pear", "nectarine", "olive", "orange", "papaw", "papaya", "passionfruit", "peach", "pear", "pineapple", "plum", "pomegranate", "prune", "rockmelon", "snowpea", "sprout", "starfruit", "strawberry", "sultana", "tangelo", "tomato", "watermelon"];
|
|
13617
|
-
var Ce
|
|
13640
|
+
var Ce = ["achacha", "adzuki beans", "agar", "agave syrup", "ajowan seed", "albacore tuna", "alfalfa", "allspice", "almond oil", "almonds", "amaranth", "amchur", "anchovies", "aniseed", "annatto seed", "apple cider vinegar", "apple juice", "apple juice concentrate", "apples", "apricots", "arborio rice", "arrowroot", "artichoke", "arugula", "asafoetida", "asian greens", "asian noodles", "asparagus", "aubergine", "avocado", "avocado oil", "avocado spread", "bacon", "baking powder", "baking soda", "balsamic vinegar", "bamboo shoots", "banana", "barberry", "barley", "barramundi", "basil basmati rice", "bay leaves", "bean shoots", "bean sprouts", "beans", "beef", "beef stock", "beetroot", "berries", "besan", "black eyed beans", "blackberries", "blood oranges", "blue cheese", "blue eye trevalla", "blue swimmer crab", "blueberries", "bocconcini", "bok choy", "bonito flakes", "bonza", "borlotti beans", "bran", "brazil nut", "bread", "brie", "broccoli", "broccolini", "brown flour", "brown mushrooms", "brown rice", "brown rice vinegar", "brussels sprouts", "buckwheat", "buckwheat flour", "buckwheat noodles", "bulghur", "bush tomato", "butter", "butter beans", "buttermilk", "butternut lettuce", "butternut pumpkin", "cabbage", "cacao", "cake", "calamari", "camellia tea oil", "camembert", "camomile", "candle nut", "cannellini beans", "canola oil", "cantaloupe", "capers", "capsicum", "caraway seed", "cardamom", "carob carrot", "carrot", "cashews", "cassia bark", "cauliflower", "cavalo", "cayenne", "celery", "celery seed", "cheddar", "cherries", "chestnut", "chia seeds", "chicken", "chicken stock", "chickory", "chickpea", "chilli pepper", "chinese cabbage", "chinese five spice", "chives", "choy sum", "cinnamon", "clams", "cloves", "cocoa powder", "coconut", "coconut oil", "coconut water", "coffee", "common cultivated mushrooms", "corella pear", "coriander leaves", "coriander seed", "corn oil", "corn syrup", "corn tortilla", "cornichons", "cornmeal", "cos lettuce", "cottage cheese", "cous cous", "crabs", "cranberry", "cream", "cream cheese", "cucumber", "cumin", "cumquat", "currants", "curry leaves", "curry powder", "custard apples", "dandelion", "dark chocolate", "dashi", "dates", "dill", "dragonfruit", "dried apricots", "dried chinese broccoli", "duck", "edam", "edamame", "eggplant", "eggs", "elderberry", "endive", "english spinach", "enoki mushrooms", "extra virgin olive oil", "farmed prawns", "feijoa", "fennel", "fennel seeds", "fenugreek", "feta", "figs", "file powder", "fingerlime", "fish sauce", "fish stock", "flat mushrooms", "flathead", "flaxseed", "flaxseed oil", "flounder", "flour", "freekeh", "french eschallots", "fresh chillies", "fromage blanc", "fruit", "galangal", "garam masala", "garlic", "goat cheese", "goat milk", "goji berry", "grape seed oil", "grapefruit", "grapes", "green beans", "green pepper", "green tea", "green tea noodles", "greenwheat freekeh", "gruyere", "guava", "gula melaka", "haloumi", "ham", "haricot beans", "harissa", "hazelnut", "hijiki", "hiramasa kingfish", "hokkien noodles", "honey", "honeydew melon", "horseradish", "hot smoked salmon", "hummus", "iceberg lettuce", "incaberries", "jarrahdale pumpkin", "jasmine rice", "jelly", "jerusalem artichoke", "jewfish", "jicama", "juniper berries", "kale", "kangaroo", "kecap manis", "kenchur", "kidney beans", "kidneys", "kiwi berries", "kiwi fruit", "kohlrabi", "kokam", "kombu", "koshihikari rice", "kudzu", "kumera", "lamb", "lavender flowers", "leeks", "lemon", "lemongrass", "lentils", "lettuce", "licorice", "lime leaves", "limes", "liver", "lobster", "longan", "loquats", "lotus root", "lychees", "macadamia nut", "macadamia oil", "mace", "mackerel", "mahi mahi", "mahlab", "malt vinegar", "mandarins", "mango", "mangosteens", "maple syrup", "margarine", "marigold", "marjoram", "mastic", "melon", "milk", "milk chocolate", "mint", "miso", "molasses", "monkfish", "morwong", "mountain bread", "mozzarella", "muesli", "mulberries", "mullet", "mung beans", "mussels", "mustard", "mustard seed", "nashi pear", "nasturtium", "nectarines", "nori", "nutmeg", "nutritional yeast", "nuts", "oat flour", "oatmeal", "oats", "octopus", "okra", "olive oil", "olives", "omega spread", "onion", "oranges", "oregano", "oyster mushrooms", "oyster sauce", "oysters", "pandanus leaves", "papaw", "papaya", "paprik", "parmesan cheese", "parrotfish", "parsley", "parsnip", "passionfruit", "pasta", "peaches", "peanuts", "pear", "pear juice", "pears", "peas", "pecan nut", "pecorino", "pepitas", "peppercorns", "peppermint", "peppers", "persimmon", "pine nut", "pineapple", "pinto beans", "pistachio nut", "plums", "polenta", "pomegranate", "poppy seed", "porcini mushrooms", "pork", "potato flour", "potatoes", "provolone", "prunes", "pumpkin", "pumpkin seed", "purple carrot", "purple rice", "quark", "quince", "quinoa", "radicchio", "radish", "raisin", "raspberry", "red cabbage", "red lentils", "red pepper", "red wine", "red wine vinegar", "redfish", "rhubarb", "rice flour", "rice noodles", "rice paper", "rice syrup", "ricemilk", "ricotta", "rockmelon", "rose water", "rosemary", "rye", "rye bread", "safflower oil", "saffron", "sage", "sake", "salmon", "sardines", "sausages", "scallops", "sea salt", "semolina", "sesame oil", "sesame seeds", "shark", "shiitake mushrooms", "silverbeet", "slivered almonds", "smoked trout", "snapper", "snowpea sprouts", "snowpeas", "soba", "sour dough bread", "soy", "soy beans", "soy flour", "soy milk", "soy sauce", "soymilk", "spearmint", "spelt", "spelt bread", "spinach", "spring onions", "sprouts", "squash", "squid", "star anise", "star fruit", "starfruit", "stevia", "strawberries", "sugar", "sultanas", "sun-dried tomatoes", "sunflower oil", "sunflower seeds", "sweet chilli sauce", "sweet potato", "swiss chard", "swordfish", "szechuan pepperberry", "tabasco", "tahini", "taleggio cheese", "tamari", "tamarillo", "tangelo", "tapioca", "tapioca flour", "tarragon", "tea", "tea oil", "tempeh", "thyme", "tinned", "tofu", "tom yum", "tomatoes", "trout", "tuna", "turkey", "turmeric", "turnips", "unbleached flour", "vanilla beans", "vegetable oil", "vegetable spaghetti", "vegetable stock", "vermicelli noodles", "vinegar", "wakame", "walnut", "warehou", "wasabi", "water", "watercress", "watermelon", "wattleseed", "wheat", "wheatgrass juice", "white bread", "white flour", "white rice", "white wine", "white wine vinegar", "whiting wild rice", "wholegrain bread", "wholemeal", "wholewheat flour", "william pear", "yeast", "yellow papaw", "yellowtail kingfish", "yoghurt", "yogurt", "zucchini"];
|
|
13618
13641
|
var Se$1 = ["beef", "chicken", "crocodile", "duck", "emu", "goose", "kangaroo", "lamb", "ostrich", "pigeon", "pork", "quail", "rabbit", "salmon", "turkey", "venison"];
|
|
13619
13642
|
var ke$1 = ["achiote seed", "ajwain seed", "ajwan seed", "allspice", "amchoor", "anise", "anise star", "aniseed", "annatto seed", "arrowroot", "asafoetida", "baharat", "balti masala", "balti stir fry mix", "basil", "bay leaves", "bbq", "caraway seed", "cardamom", "cassia", "cayenne pepper", "celery", "chamomile", "chervil", "chilli", "chilli pepper", "chillies", "china star", "chives", "cinnamon", "cloves", "colombo", "coriander", "cumin", "curly leaf parsley", "curry", "dhansak", "dill", "fennel seed", "fenugreek", "fines herbes", "five spice", "french lavender", "galangal", "garam masala", "garlic", "german chamomile", "ginger", "green cardamom", "herbes de provence", "jalfrezi", "jerk", "kaffir leaves", "korma", "lavender", "lemon grass", "lemon pepper", "lime leaves", "liquorice root", "mace", "mango", "marjoram", "methi", "mint", "mustard", "nutmeg", "onion seed", "orange zest", "oregano", "paprika", "parsley", "pepper", "peppercorns", "pimento", "piri piri", "poppy seed", "pot marjoram", "poudre de colombo", "ras-el-hanout", "rice paper", "rogan josh", "rose baie", "rosemary", "saffron", "sage", "sesame seed", "spearmint", "sumac", "sweet basil", "sweet laurel", "tagine", "tandoori masala", "tarragon", "thyme", "tikka masala", "turmeric", "vanilla", "zahtar"];
|
|
13620
13643
|
var fe$1 = ["artichoke", "arugula", "asian greens", "asparagus", "bean shoots", "bean sprouts", "beans", "beetroot", "bok choy", "broccoli", "broccolini", "brussels sprouts", "butternut lettuce", "cabbage", "capers", "carob carrot", "carrot", "cauliflower", "celery", "chilli pepper", "chinese cabbage", "chives", "cornichons", "cos lettuce", "cucumber", "dried chinese broccoli", "eggplant", "endive", "english spinach", "french eschallots", "fresh chillies", "garlic", "green beans", "green pepper", "hijiki", "iceberg lettuce", "jerusalem artichoke", "jicama", "kale", "kohlrabi", "leeks", "lettuce", "okra", "onion", "parsnip", "peas", "peppers", "potatoes", "pumpkin", "purple carrot", "radicchio", "radish", "raspberry", "red cabbage", "red pepper", "rhubarb", "snowpea sprouts", "spinach", "squash", "sun dried tomatoes", "sweet potato", "swiss chard", "turnips", "zucchini"];
|
|
13621
|
-
var lr$1 = { adjective: me$1, description_pattern: he$1, dish: ye$1, dish_pattern: pe$1, ethnic_category: ge$1, fruit: be$1, ingredient: Ce
|
|
13644
|
+
var lr$1 = { adjective: me$1, description_pattern: he$1, dish: ye$1, dish_pattern: pe$1, ethnic_category: ge$1, fruit: be$1, ingredient: Ce, meat: Se$1, spice: ke$1, vegetable: fe$1 }, ve$1 = lr$1;
|
|
13622
13645
|
var Ae$1 = ["1080p", "auxiliary", "back-end", "bluetooth", "cross-platform", "digital", "haptic", "mobile", "multi-byte", "neural", "online", "open-source", "optical", "primary", "redundant", "solid state", "virtual", "wireless"];
|
|
13623
13646
|
var Be$1 = ["backing up", "bypassing", "calculating", "compressing", "connecting", "copying", "generating", "hacking", "indexing", "navigating", "overriding", "parsing", "programming", "quantifying", "synthesizing", "transmitting"];
|
|
13624
|
-
var Te = ["alarm", "application", "array", "bandwidth", "bus", "capacitor", "card", "circuit", "driver", "feed", "firewall", "hard drive", "interface", "matrix", "microchip", "monitor", "panel", "pixel", "port", "program", "protocol", "sensor", "system", "transmitter"];
|
|
13647
|
+
var Te$1 = ["alarm", "application", "array", "bandwidth", "bus", "capacitor", "card", "circuit", "driver", "feed", "firewall", "hard drive", "interface", "matrix", "microchip", "monitor", "panel", "pixel", "port", "program", "protocol", "sensor", "system", "transmitter"];
|
|
13625
13648
|
var Me$1 = ["I'll {{verb}} the {{adjective}} {{abbreviation}} {{noun}}, that should {{noun}} the {{abbreviation}} {{noun}}!", "If we {{verb}} the {{noun}}, we can get to the {{abbreviation}} {{noun}} through the {{adjective}} {{abbreviation}} {{noun}}!", "The {{abbreviation}} {{noun}} is down, {{verb}} the {{adjective}} {{noun}} so we can {{verb}} the {{abbreviation}} {{noun}}!", "Try to {{verb}} the {{abbreviation}} {{noun}}, maybe it will {{verb}} the {{adjective}} {{noun}}!", "Use the {{adjective}} {{abbreviation}} {{noun}}, then you can {{verb}} the {{adjective}} {{noun}}!", "We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", "You can't {{verb}} the {{noun}} without {{ingverb}} the {{adjective}} {{abbreviation}} {{noun}}!", "{{ingverb}} the {{noun}} won't do anything, we need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!"];
|
|
13626
13649
|
var we$1 = ["back up", "bypass", "calculate", "compress", "connect", "copy", "generate", "hack", "index", "input", "navigate", "override", "parse", "program", "quantify", "reboot", "synthesize", "transmit"];
|
|
13627
|
-
var sr$1 = { adjective: Ae$1, ingverb: Be$1, noun: Te, phrase: Me$1, verb: we$1 }, Le$1 = sr$1;
|
|
13650
|
+
var sr$1 = { adjective: Ae$1, ingverb: Be$1, noun: Te$1, phrase: Me$1, verb: we$1 }, Le$1 = sr$1;
|
|
13628
13651
|
var De$1 = ["biz", "com", "info", "name", "net", "org"];
|
|
13629
13652
|
var Re$1 = ["example.com", "example.net", "example.org"];
|
|
13630
13653
|
var Pe$1 = ["gmail.com", "hotmail.com", "yahoo.com"];
|
|
@@ -13673,7 +13696,7 @@ var Sa = { generic: ["Dr.", "Miss", "Mr.", "Mrs.", "Ms."], female: ["Dr.", "Miss
|
|
|
13673
13696
|
var ka = ["female", "male"];
|
|
13674
13697
|
var fa = ["Jr.", "Sr.", "I", "II", "III", "IV", "V", "MD", "DDS", "PhD", "DVM"];
|
|
13675
13698
|
var va = ["Aquarius", "Pisces", "Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo", "Libra", "Scorpio", "Sagittarius", "Capricorn"];
|
|
13676
|
-
var yr = { bio_part: ta, bio_pattern: la, bio_supporter: sa, first_name: da, gender: ua, job_area: ca, job_descriptor: ma, job_title_pattern: ha, job_type: ya, last_name: pa, last_name_pattern: ga, middle_name: ba, name: Ca, prefix: Sa, sex: ka, suffix: fa, western_zodiac_sign: va }, Aa = yr;
|
|
13699
|
+
var yr$1 = { bio_part: ta, bio_pattern: la, bio_supporter: sa, first_name: da, gender: ua, job_area: ca, job_descriptor: ma, job_title_pattern: ha, job_type: ya, last_name: pa, last_name_pattern: ga, middle_name: ba, name: Ca, prefix: Sa, sex: ka, suffix: fa, western_zodiac_sign: va }, Aa = yr$1;
|
|
13677
13700
|
var Ba = ["!##-!##-####", "(!##) !##-####", "1-!##-!##-####", "!##.!##.####", "!##-!##-#### x###", "(!##) !##-#### x###", "1-!##-!##-#### x###", "!##.!##.#### x###", "!##-!##-#### x####", "(!##) !##-#### x####", "1-!##-!##-#### x####", "!##.!##.#### x####", "!##-!##-#### x#####", "(!##) !##-#### x#####", "1-!##-!##-#### x#####", "!##.!##.#### x#####"];
|
|
13678
13701
|
var Ta = ["+1!##!######"];
|
|
13679
13702
|
var Ma = ["(!##) !##-####"];
|
|
@@ -13698,11 +13721,11 @@ var Va = ["yuck", "oh", "phooey", "blah", "boo", "whoa", "yowza", "huzzah", "boo
|
|
|
13698
13721
|
var Ya = ["CD", "SUV", "abacus", "academics", "accelerator", "accompanist", "account", "accountability", "acquaintance", "ad", "adaptation", "address", "adrenalin", "adult", "advancement", "advertisement", "adviser", "affect", "affiliate", "aftermath", "agreement", "airbus", "aircraft", "airline", "airmail", "airman", "airport", "alb", "alert", "allegation", "alliance", "alligator", "allocation", "almighty", "amendment", "amnesty", "analogy", "angle", "annual", "antelope", "anticodon", "apparatus", "appliance", "approach", "apricot", "arcade", "archaeology", "armchair", "armoire", "asset", "assist", "atrium", "attraction", "availability", "avalanche", "awareness", "babushka", "backbone", "backburn", "bakeware", "bandwidth", "bar", "barge", "baritone", "barracks", "baseboard", "basket", "bathhouse", "bathrobe", "battle", "begonia", "behest", "bell", "bench", "bend", "beret", "best-seller", "bid", "bidet", "bin", "birdbath", "birdcage", "birth", "blight", "blossom", "blowgun", "bob", "bog", "bonfire", "bonnet", "bookcase", "bookend", "boulevard", "bourgeoisie", "bowler", "bowling", "boyfriend", "brace", "bracelet", "bran", "breastplate", "brief", "brochure", "brook", "brush", "bug", "bump", "bungalow", "cafe", "cake", "calculus", "cannon", "cantaloupe", "cap", "cappelletti", "captain", "caption", "carboxyl", "cardboard", "carnival", "case", "casement", "cash", "casket", "cassava", "castanet", "catalyst", "cauliflower", "cellar", "celsius", "cemetery", "ceramic", "ceramics", "certification", "chainstay", "chairperson", "challenge", "championship", "chap", "chapel", "character", "characterization", "charlatan", "charm", "chasuble", "cheese", "cheetah", "chiffonier", "chops", "chow", "cinder", "cinema", "circumference", "citizen", "clamp", "clavicle", "cleaner", "climb", "co-producer", "coal", "coast", "cod", "coil", "coin", "coliseum", "collaboration", "collectivization", "colon", "colonialism", "comestible", "commercial", "commodity", "community", "comparison", "completion", "complication", "compromise", "concentration", "configuration", "confusion", "conservation", "conservative", "consistency", "contractor", "contrail", "convection", "conversation", "cook", "coordination", "cop-out", "cope", "cork", "cornet", "corporation", "corral", "cosset", "costume", "couch", "council", "councilman", "countess", "courtroom", "cow", "creator", "creature", "crest", "cricket", "crocodile", "cross-contamination", "cruelty", "cuckoo", "curl", "custody", "custom", "cutlet", "cutover", "cycle", "daddy", "dandelion", "dash", "daughter", "dead", "decision", "deck", "declaration", "decongestant", "decryption", "deduction", "deed", "deer", "defendant", "density", "department", "dependency", "deployment", "depot", "derby", "descendant", "descent", "design", "designation", "desk", "detective", "devastation", "developing", "developmental", "devil", "diagram", "digestive", "digit", "dime", "director", "disadvantage", "disappointment", "disclosure", "disconnection", "discourse", "dish", "disk", "disposer", "distinction", "diver", "diversity", "dividend", "divine", "doing", "doorpost", "doubter", "draft", "draw", "dream", "dredger", "dress", "drive", "drug", "duffel", "dulcimer", "dusk", "duster", "dwell", "e-mail", "earth", "ecliptic", "ectoderm", "edge", "editor", "effector", "eggplant", "electronics", "elevation", "elevator", "elver", "embarrassment", "embossing", "emergent", "encouragement", "entry", "epic", "equal", "essence", "eternity", "ethyl", "euphonium", "event", "exasperation", "excess", "executor", "exhaust", "expansion", "expense", "experience", "exploration", "extension", "extent", "exterior", "eyebrow", "eyeliner", "farm", "farmer", "fat", "fax", "feather", "fedora", "fellow", "fen", "fencing", "ferret", "festival", "fibre", "filter", "final", "finding", "finer", "finger", "fireplace", "fisherman", "fishery", "fit", "flame", "flat", "fledgling", "flight", "flint", "flood", "flu", "fog", "fold", "folklore", "follower", "following", "foodstuffs", "footrest", "forage", "forager", "forgery", "fork", "formamide", "formation", "formula", "fort", "fowl", "fraudster", "freckle", "freezing", "freight", "fuel", "fun", "fund", "fundraising", "futon", "gallery", "galoshes", "gastropod", "gazebo", "gerbil", "ghost", "giant", "gift", "giggle", "glider", "gloom", "goat", "godfather", "godparent", "going", "goodwill", "governance", "government", "gown", "gradient", "graffiti", "grandpa", "grandson", "granny", "grass", "gray", "gripper", "grouper", "guacamole", "guard", "guidance", "guide", "gym", "gymnast", "habit", "haircut", "halt", "hamburger", "hammock", "handful", "handle", "handover", "harp", "haversack", "hawk", "heartache", "heartbeat", "heating", "hello", "help", "hepatitis", "heroine", "hexagon", "hierarchy", "hippodrome", "honesty", "hoof", "hope", "horde", "hornet", "horst", "hose", "hospitalization", "hovel", "hovercraft", "hubris", "humidity", "humor", "hundred", "hunger", "hunt", "husband", "hutch", "hydrant", "hydrocarbon", "hydrolyse", "hydrolyze", "hyena", "hygienic", "hyphenation", "ice-cream", "icebreaker", "igloo", "ignorance", "illusion", "impact", "import", "importance", "impostor", "in-joke", "incandescence", "independence", "individual", "information", "injunction", "innovation", "insolence", "inspection", "instance", "institute", "instruction", "instructor", "integer", "intellect", "intent", "interchange", "interior", "intervention", "interviewer", "invite", "iridescence", "issue", "jacket", "jazz", "jellyfish", "jet", "jogging", "joy", "juggernaut", "jump", "jungle", "junior", "jury", "kettledrum", "kick", "kielbasa", "kinase", "king", "kiss", "kit", "knickers", "knight", "knitting", "knuckle", "label", "labourer", "lace", "lady", "lamp", "language", "larva", "lashes", "laughter", "lava", "lawmaker", "lay", "leading", "league", "legend", "legging", "legislature", "lender", "license", "lid", "lieu", "lifestyle", "lift", "linseed", "litter", "loaf", "lobster", "longboat", "lotion", "lounge", "louse", "lox", "loyalty", "luck", "lyre", "maestro", "mainstream", "maintainer", "majority", "makeover", "making", "mallard", "management", "manner", "mantua", "marathon", "march", "marimba", "marketplace", "marksman", "markup", "marten", "massage", "masterpiece", "mathematics", "meadow", "meal", "meander", "meatloaf", "mechanic", "median", "membership", "mentor", "merit", "metabolite", "metal", "middle", "midwife", "milestone", "millet", "minion", "minister", "minor", "minority", "mixture", "mobility", "molasses", "mom", "moment", "monasticism", "monocle", "monster", "morbidity", "morning", "mortise", "mountain", "mouser", "mousse", "mozzarella", "muscat", "mythology", "napkin", "necklace", "nectarine", "negotiation", "nephew", "nerve", "netsuke", "newsletter", "newsprint", "newsstand", "nightlife", "noon", "nougat", "nucleotidase", "nudge", "numeracy", "numeric", "nun", "obedience", "obesity", "object", "obligation", "ocelot", "octave", "offset", "oil", "omelet", "onset", "opera", "operating", "optimal", "orchid", "order", "ostrich", "other", "outlaw", "outrun", "outset", "overcoat", "overheard", "overload", "ownership", "pacemaker", "packaging", "paintwork", "palate", "pants", "pantyhose", "papa", "parade", "parsnip", "partridge", "passport", "pasta", "patroller", "pear", "pearl", "pecan", "pendant", "peninsula", "pension", "peony", "pepper", "perfection", "permafrost", "perp", "petal", "petticoat", "pharmacopoeia", "phrase", "pick", "piglet", "pigpen", "pigsty", "pile", "pillbox", "pillow", "pilot", "pine", "pinstripe", "place", "plain", "planula", "plastic", "platter", "platypus", "pleasure", "pliers", "plugin", "plumber", "pneumonia", "pocket-watch", "poetry", "polarisation", "polyester", "pomelo", "pop", "poppy", "popularity", "populist", "porter", "possession", "postbox", "precedent", "premeditation", "premier", "premise", "premium", "pressure", "presume", "priesthood", "printer", "privilege", "procurement", "produce", "programme", "prohibition", "promise", "pronoun", "providence", "provider", "provision", "publication", "publicity", "pulse", "punctuation", "pupil", "puppet", "puritan", "quart", "quinoa", "quit", "railway", "range", "rationale", "ravioli", "rawhide", "reach", "reasoning", "reboot", "receptor", "recommendation", "reconsideration", "recovery", "redesign", "relative", "release", "remark", "reorganisation", "repeat", "replacement", "reporter", "representation", "republican", "request", "requirement", "reservation", "resolve", "resource", "responsibility", "restaurant", "retention", "retrospectivity", "reward", "ribbon", "rim", "riser", "roadway", "role", "rosemary", "roundabout", "rubric", "ruin", "rule", "runway", "rust", "safe", "sailor", "saloon", "sand", "sandbar", "sanity", "sarong", "sauerkraut", "saw", "scaffold", "scale", "scarification", "scenario", "schedule", "schnitzel", "scholarship", "scorn", "scorpion", "scout", "scrap", "scratch", "seafood", "seagull", "seal", "season", "secrecy", "secret", "section", "sediment", "self-confidence", "sermon", "sesame", "settler", "shadowbox", "shark", "shipper", "shore", "shoulder", "sideboard", "siege", "sightseeing", "signature", "silk", "simple", "singing", "skean", "skeleton", "skyline", "skyscraper", "slide", "slime", "slipper", "smog", "smoke", "sock", "soliloquy", "solution", "solvency", "someplace", "sonar", "sonata", "sonnet", "soup", "soybean", "space", "spear", "spirit", "spork", "sport", "spring", "sprinkles", "squid", "stall", "starboard", "statue", "status", "stay", "steak", "steeple", "step", "step-mother", "sticker", "stir-fry", "stitcher", "stock", "stool", "story", "strait", "stranger", "strategy", "straw", "stump", "subexpression", "submitter", "subsidy", "substitution", "suitcase", "summary", "summer", "sunbeam", "sundae", "supplier", "surface", "sushi", "suspension", "sustenance", "swanling", "swath", "sweatshop", "swim", "swine", "swing", "switch", "switchboard", "swordfish", "synergy", "t-shirt", "tabletop", "tackle", "tail", "tapioca", "taro", "tarragon", "taxicab", "teammate", "technician", "technologist", "tectonics", "tenant", "tenement", "tennis", "tentacle", "teriyaki", "term", "testimonial", "testing", "thigh", "thongs", "thorn", "thread", "thunderbolt", "thyme", "tinderbox", "toaster", "tomatillo", "tomb", "tomography", "tool", "tooth", "toothbrush", "toothpick", "topsail", "traditionalism", "traffic", "translation", "transom", "transparency", "trash", "travel", "tray", "trench", "tribe", "tributary", "trick", "trolley", "tuba", "tuber", "tune-up", "turret", "tusk", "tuxedo", "typeface", "typewriter", "unblinking", "underneath", "underpants", "understanding", "unibody", "unique", "unit", "utilization", "valentine", "validity", "valley", "valuable", "vanadyl", "vein", "velocity", "venom", "version", "verve", "vestment", "veto", "viability", "vibraphone", "vibration", "vicinity", "video", "violin", "vision", "vista", "vol", "volleyball", "wafer", "waist", "wallaby", "warming", "wasabi", "waterspout", "wear", "wedding", "whack", "whale", "wheel", "widow", "wilderness", "willow", "window", "wombat", "word", "worth", "wriggler", "yak", "yarmulke", "yeast", "yin", "yogurt", "zebra", "zen"];
|
|
13699
13722
|
var ja = ["a", "abaft", "aboard", "about", "above", "absent", "across", "afore", "after", "against", "along", "alongside", "amid", "amidst", "among", "amongst", "an", "anenst", "anti", "apropos", "apud", "around", "as", "aside", "astride", "at", "athwart", "atop", "barring", "before", "behind", "below", "beneath", "beside", "besides", "between", "beyond", "but", "by", "circa", "concerning", "considering", "despite", "down", "during", "except", "excepting", "excluding", "failing", "following", "for", "forenenst", "from", "given", "in", "including", "inside", "into", "lest", "like", "mid", "midst", "minus", "modulo", "near", "next", "notwithstanding", "of", "off", "on", "onto", "opposite", "out", "outside", "over", "pace", "past", "per", "plus", "pro", "qua", "regarding", "round", "sans", "save", "since", "than", "the", "through", "throughout", "till", "times", "to", "toward", "towards", "under", "underneath", "unlike", "until", "unto", "up", "upon", "versus", "via", "vice", "with", "within", "without", "worth"];
|
|
13700
13723
|
var qa = ["abnegate", "abscond", "abseil", "absolve", "accentuate", "accept", "access", "accessorise", "accompany", "account", "accredit", "achieve", "acknowledge", "acquire", "adjourn", "adjudge", "admonish", "adumbrate", "advocate", "afford", "airbrush", "ameliorate", "amend", "amount", "anaesthetise", "analyse", "anesthetize", "anneal", "annex", "antagonize", "ape", "apologise", "apostrophize", "appertain", "appreciate", "appropriate", "approximate", "arbitrate", "archive", "arraign", "arrange", "ascertain", "ascribe", "assail", "atomize", "attend", "attest", "attribute", "augment", "avow", "axe", "baa", "banish", "bank", "baptise", "battle", "beard", "beep", "behold", "belabor", "bemuse", "besmirch", "bestride", "better", "bewail", "bicycle", "bide", "bind", "biodegrade", "blacken", "blaspheme", "bleach", "blend", "blink", "bliss", "bloom", "bludgeon", "bobble", "boggle", "bolster", "book", "boom", "bootleg", "border", "bore", "boss", "braid", "brand", "brandish", "break", "breed", "broadcast", "broadside", "brood", "browse", "buck", "burgeon", "bus", "butter", "buzzing", "camouflage", "cannibalise", "canter", "cap", "capitalise", "capitalize", "capsize", "card", "carouse", "carp", "carpool", "catalog", "catalyze", "catch", "categorise", "cease", "celebrate", "censor", "certify", "char", "charter", "chase", "chatter", "chime", "chip", "christen", "chromakey", "chunder", "chunter", "cinch", "circle", "circulate", "circumnavigate", "clamor", "clamour", "claw", "cleave", "clinch", "clinking", "clone", "clonk", "coagulate", "coexist", "coincide", "collaborate", "colligate", "colorize", "colour", "comb", "come", "commandeer", "commemorate", "communicate", "compete", "conceal", "conceptualize", "conclude", "concrete", "condense", "cone", "confide", "confirm", "confiscate", "confound", "confute", "congregate", "conjecture", "connect", "consign", "construe", "contradict", "contrast", "contravene", "controvert", "convalesce", "converse", "convince", "convoke", "coop", "cop", "corner", "covenant", "cow", "crackle", "cram", "crank", "creak", "creaking", "cripple", "croon", "cross", "crumble", "crystallize", "culminate", "culture", "curry", "curse", "customise", "cycle", "dally", "dampen", "darn", "debit", "debut", "decide", "decode", "decouple", "decriminalize", "deduce", "deduct", "deflate", "deflect", "deform", "defrag", "degenerate", "degrease", "delete", "delight", "deliquesce", "demob", "demobilise", "democratize", "demonstrate", "denitrify", "deny", "depart", "depend", "deplore", "deploy", "deprave", "depute", "dereference", "describe", "desecrate", "deselect", "destock", "detain", "develop", "devise", "dial", "dicker", "digitize", "dilate", "disapprove", "disarm", "disbar", "discontinue", "disgorge", "dishearten", "dishonor", "disinherit", "dislocate", "dispense", "display", "dispose", "disrespect", "dissemble", "ditch", "divert", "dock", "doodle", "downchange", "downshift", "dowse", "draft", "drag", "drain", "dramatize", "drowse", "drum", "dwell", "economise", "edge", "efface", "egg", "eke", "electrify", "embalm", "embed", "embody", "emboss", "emerge", "emphasise", "emphasize", "emulsify", "encode", "endow", "enfold", "engage", "engender", "enhance", "enlist", "enrage", "enrich", "enroll", "entice", "entomb", "entrench", "entwine", "equate", "essay", "etch", "eulogise", "even", "evince", "exacerbate", "exaggerate", "exalt", "exempt", "exonerate", "expatiate", "explode", "expostulate", "extract", "extricate", "eyeglasses", "fabricate", "facilitate", "factorise", "factorize", "fail", "fall", "familiarize", "fashion", "father", "fathom", "fax", "federate", "feminize", "fence", "fess", "fictionalize", "fiddle", "fidget", "fill", "flash", "fleck", "flight", "floodlight", "floss", "fluctuate", "fluff", "fly", "focalise", "foot", "forearm", "forecast", "foretell", "forgather", "forgo", "fork", "form", "forswear", "founder", "fraternise", "fray", "frizz", "fumigate", "function", "furlough", "fuss", "gad", "gallivant", "galvanize", "gape", "garage", "garrote", "gasp", "gestate", "give", "glimmer", "glisten", "gloat", "gloss", "glow", "gnash", "gnaw", "goose", "govern", "grade", "graduate", "graft", "grok", "guest", "guilt", "gulp", "gum", "gurn", "gust", "gut", "guzzle", "ham", "harangue", "harvest", "hassle", "haul", "haze", "headline", "hearten", "heighten", "highlight", "hoick", "hold", "hole", "hollow", "holster", "home", "homeschool", "hoot", "horn", "horse", "hotfoot", "house", "hover", "howl", "huddle", "huff", "hunger", "hunt", "husk", "hype", "hypothesise", "hypothesize", "idle", "ignite", "imagineer", "impact", "impanel", "implode", "incinerate", "incline", "inculcate", "industrialize", "ingratiate", "inhibit", "inject", "innovate", "inscribe", "insert", "insist", "inspect", "institute", "institutionalize", "intend", "intermarry", "intermesh", "intermix", "internalise", "internalize", "internationalize", "intrigue", "inure", "inveigle", "inventory", "investigate", "irk", "iterate", "jaywalk", "jell", "jeopardise", "jiggle", "jive", "joint", "jot", "jut", "keel", "knife", "knit", "know", "kowtow", "lack", "lampoon", "large", "leap", "lecture", "legitimize", "lend", "libel", "liberalize", "license", "ligate", "list", "lobotomise", "lock", "log", "loose", "low", "lowball", "machine", "magnetize", "major", "make", "malfunction", "manage", "manipulate", "maroon", "masculinize", "mash", "mask", "masquerade", "massage", "masticate", "materialise", "matter", "maul", "memorise", "merge", "mesh", "metabolise", "microblog", "microchip", "micromanage", "militate", "mill", "minister", "minor", "misappropriate", "miscalculate", "misfire", "misjudge", "miskey", "mismatch", "mispronounce", "misread", "misreport", "misspend", "mob", "mobilise", "mobilize", "moisten", "mooch", "moor", "moralise", "mortar", "mosh", "mothball", "motivate", "motor", "mould", "mount", "muddy", "mummify", "mutate", "mystify", "nab", "narrate", "narrowcast", "nasalise", "nauseate", "navigate", "neaten", "neck", "neglect", "norm", "notarize", "object", "obscure", "observe", "obsess", "obstruct", "obtrude", "offend", "offset", "option", "orchestrate", "orient", "orientate", "outbid", "outdo", "outfit", "outflank", "outfox", "outnumber", "outrank", "outrun", "outsource", "overburden", "overcharge", "overcook", "overdub", "overfeed", "overload", "overplay", "overproduce", "overreact", "override", "overspend", "overstay", "overtrain", "overvalue", "overwork", "own", "oxidise", "oxidize", "oxygenate", "pace", "pack", "pale", "pant", "paralyse", "parody", "part", "pause", "pave", "penalise", "persecute", "personalise", "perspire", "pertain", "peter", "pike", "pillory", "pinion", "pip", "pity", "pivot", "pixellate", "plagiarise", "plait", "plan", "please", "pluck", "ponder", "popularize", "portray", "prance", "preclude", "preheat", "prejudge", "preregister", "presell", "preside", "pretend", "print", "prioritize", "probate", "probe", "proceed", "procrastinate", "profane", "progress", "proliferate", "proofread", "propound", "proselytise", "provision", "pry", "publicize", "puff", "pull", "pulp", "pulverize", "purse", "put", "putrefy", "quadruple", "quaff", "quantify", "quarrel", "quash", "quaver", "question", "quiet", "quintuple", "quip", "quit", "rag", "rally", "ramp", "randomize", "rationalise", "rationalize", "ravage", "ravel", "react", "readies", "readjust", "readmit", "ready", "reapply", "rear", "reassemble", "rebel", "reboot", "reborn", "rebound", "rebuff", "rebuild", "rebuke", "recede", "reckon", "reclassify", "recompense", "reconstitute", "record", "recount", "redact", "redevelop", "redound", "redraw", "redress", "reel", "refer", "reference", "refine", "reflate", "refute", "regulate", "reiterate", "rejigger", "rejoin", "rekindle", "relaunch", "relieve", "remand", "remark", "reopen", "reorient", "replicate", "repossess", "represent", "reprimand", "reproach", "reprove", "repurpose", "requite", "reschedule", "resort", "respray", "restructure", "retool", "retract", "revere", "revitalise", "revoke", "reword", "rewrite", "ride", "ridge", "rim", "ring", "rise", "rival", "roger", "rosin", "rot", "rout", "row", "rue", "rule", "safeguard", "sashay", "sate", "satirise", "satirize", "satisfy", "saturate", "savour", "scale", "scamper", "scar", "scare", "scarper", "scent", "schematise", "scheme", "schlep", "scoff", "scoop", "scope", "scotch", "scowl", "scrabble", "scram", "scramble", "scrape", "screw", "scruple", "scrutinise", "scuffle", "scuttle", "search", "secularize", "see", "segregate", "sell", "sense", "sensitize", "sequester", "serenade", "serialize", "serve", "service", "settle", "sew", "shaft", "sham", "shampoo", "shanghai", "shear", "sheathe", "shell", "shinny", "shirk", "shoot", "shoulder", "shout", "shovel", "showboat", "shred", "shrill", "shudder", "shush", "sidetrack", "sign", "silt", "sin", "singe", "sit", "sizzle", "skateboard", "ski", "slake", "slap", "slather", "sleet", "slink", "slip", "slope", "slump", "smarten", "smuggle", "snack", "sneak", "sniff", "snoop", "snow", "snowplow", "snuggle", "soap", "solace", "solder", "solicit", "source", "spark", "spattering", "spectacles", "spectate", "spellcheck", "spew", "spice", "spirit", "splash", "splay", "split", "splosh", "splurge", "spook", "square", "squirm", "stabilise", "stable", "stack", "stage", "stake", "starch", "state", "statement", "stiffen", "stigmatize", "sting", "stint", "stoop", "store", "storyboard", "stratify", "structure", "stuff", "stunt", "substantiate", "subtract", "suckle", "suffice", "suffocate", "summarise", "sun", "sunbathe", "sunder", "sup", "surge", "surprise", "swat", "swathe", "sway", "swear", "swelter", "swerve", "swill", "swing", "symbolise", "synthesise", "syringe", "table", "tabulate", "tag", "tame", "tank", "tankful", "tarry", "task", "taxicab", "team", "telescope", "tenant", "terraform", "terrorise", "testify", "think", "throbbing", "thump", "tighten", "toady", "toe", "tough", "tousle", "traduce", "train", "transcend", "transplant", "trash", "treasure", "treble", "trek", "trial", "tromp", "trouser", "trust", "tune", "tut", "twine", "twist", "typify", "unbalance", "uncork", "uncover", "underachieve", "undergo", "underplay", "unearth", "unfreeze", "unfurl", "unlearn", "unscramble", "unzip", "uproot", "upsell", "usher", "vacation", "vamoose", "vanish", "vary", "veg", "venture", "verify", "vet", "veto", "volunteer", "vulgarise", "waft", "wallop", "waltz", "warp", "wash", "waver", "weary", "weatherize", "wedge", "weep", "weight", "welcome", "westernise", "westernize", "while", "whine", "whisper", "whistle", "whitewash", "whup", "wilt", "wing", "wire", "wisecrack", "wolf", "wound", "wring", "writ", "yak", "yawn", "yearn", "yuppify"];
|
|
13701
|
-
var kr
|
|
13702
|
-
var fr$1 = { airline: o, animal: k, app: B$1, book: P$1, cell_phone: W$1, color: F
|
|
13724
|
+
var kr = { adjective: Oa, adverb: xa, conjunction: za, interjection: Va, noun: Ya, preposition: ja, verb: qa }, Ua = kr;
|
|
13725
|
+
var fr$1 = { airline: o, animal: k, app: B$1, book: P$1, cell_phone: W$1, color: F, commerce: I$1, company: U$1, database: _$1, date: $$1, finance: ce$1, food: ve$1, hacker: Le$1, internet: He$1, location: Qe$1, lorem: $e$1, metadata: ea, music: ia, person: Aa, phone_number: La, science: Pa, team: Ga, vehicle: Ka, word: Ua }, ys = fr$1;
|
|
13703
13726
|
var m = class extends Error {
|
|
13704
13727
|
};
|
|
13705
|
-
function
|
|
13728
|
+
function Ne(i) {
|
|
13706
13729
|
let e2 = Object.getPrototypeOf(i);
|
|
13707
13730
|
do {
|
|
13708
13731
|
for (let r2 of Object.getOwnPropertyNames(e2)) typeof i[r2] == "function" && r2 !== "constructor" && (i[r2] = i[r2].bind(i));
|
|
@@ -13712,7 +13735,7 @@ function Ce(i) {
|
|
|
13712
13735
|
var x$1 = class x {
|
|
13713
13736
|
constructor(e2) {
|
|
13714
13737
|
this.faker = e2;
|
|
13715
|
-
|
|
13738
|
+
Ne(this);
|
|
13716
13739
|
}
|
|
13717
13740
|
}, p = class extends x$1 {
|
|
13718
13741
|
constructor(r2) {
|
|
@@ -13720,7 +13743,7 @@ var x$1 = class x {
|
|
|
13720
13743
|
this.faker = r2;
|
|
13721
13744
|
}
|
|
13722
13745
|
};
|
|
13723
|
-
var
|
|
13746
|
+
var De = ((t2) => (t2.Narrowbody = "narrowbody", t2.Regional = "regional", t2.Widebody = "widebody", t2))(De || {}), xr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], Ar = ["0", "O", "1", "I", "L"], Er = { regional: 20, narrowbody: 35, widebody: 60 }, wr = { regional: ["A", "B", "C", "D"], narrowbody: ["A", "B", "C", "D", "E", "F"], widebody: ["A", "B", "C", "D", "E", "F", "G", "H", "J", "K"] }, G = class extends p {
|
|
13724
13747
|
airport() {
|
|
13725
13748
|
return this.faker.helpers.arrayElement(this.faker.definitions.airline.airport);
|
|
13726
13749
|
}
|
|
@@ -13732,22 +13755,22 @@ var Ne = ((t2) => (t2.Narrowbody = "narrowbody", t2.Regional = "regional", t2.Wi
|
|
|
13732
13755
|
}
|
|
13733
13756
|
recordLocator(e2 = {}) {
|
|
13734
13757
|
let { allowNumerics: r2 = false, allowVisuallySimilarCharacters: t2 = false } = e2, a2 = [];
|
|
13735
|
-
return r2 || a2.push(...
|
|
13758
|
+
return r2 || a2.push(...xr), t2 || a2.push(...Ar), this.faker.string.alphanumeric({ length: 6, casing: "upper", exclude: a2 });
|
|
13736
13759
|
}
|
|
13737
13760
|
seat(e2 = {}) {
|
|
13738
|
-
let { aircraftType: r2 = "narrowbody" } = e2, t2 =
|
|
13761
|
+
let { aircraftType: r2 = "narrowbody" } = e2, t2 = Er[r2], a2 = wr[r2], n2 = this.faker.number.int({ min: 1, max: t2 }), o2 = this.faker.helpers.arrayElement(a2);
|
|
13739
13762
|
return `${n2}${o2}`;
|
|
13740
13763
|
}
|
|
13741
13764
|
aircraftType() {
|
|
13742
|
-
return this.faker.helpers.enumValue(
|
|
13765
|
+
return this.faker.helpers.enumValue(De);
|
|
13743
13766
|
}
|
|
13744
13767
|
flightNumber(e2 = {}) {
|
|
13745
13768
|
let { length: r2 = { min: 1, max: 4 }, addLeadingZeros: t2 = false } = e2, a2 = this.faker.string.numeric({ length: r2, allowLeadingZeros: false });
|
|
13746
13769
|
return t2 ? a2.padStart(4, "0") : a2;
|
|
13747
13770
|
}
|
|
13748
13771
|
};
|
|
13749
|
-
var
|
|
13750
|
-
function
|
|
13772
|
+
var Re = ((n2) => (n2.SRGB = "sRGB", n2.DisplayP3 = "display-p3", n2.REC2020 = "rec2020", n2.A98RGB = "a98-rgb", n2.ProphotoRGB = "prophoto-rgb", n2))(Re || {}), Le = ((c2) => (c2.RGB = "rgb", c2.RGBA = "rgba", c2.HSL = "hsl", c2.HSLA = "hsla", c2.HWB = "hwb", c2.CMYK = "cmyk", c2.LAB = "lab", c2.LCH = "lch", c2.COLOR = "color", c2))(Le || {});
|
|
13773
|
+
function Sr(i, e2) {
|
|
13751
13774
|
let { prefix: r2, casing: t2 } = e2;
|
|
13752
13775
|
switch (t2) {
|
|
13753
13776
|
case "upper": {
|
|
@@ -13761,13 +13784,13 @@ function wr(i, e2) {
|
|
|
13761
13784
|
}
|
|
13762
13785
|
return r2 && (i = r2 + i), i;
|
|
13763
13786
|
}
|
|
13764
|
-
function
|
|
13787
|
+
function Pe(i) {
|
|
13765
13788
|
return i.map((r2) => {
|
|
13766
13789
|
if (r2 % 1 !== 0) {
|
|
13767
13790
|
let a2 = new ArrayBuffer(4);
|
|
13768
13791
|
new DataView(a2).setFloat32(0, r2);
|
|
13769
13792
|
let n2 = new Uint8Array(a2);
|
|
13770
|
-
return
|
|
13793
|
+
return Pe([...n2]).replaceAll(" ", "");
|
|
13771
13794
|
}
|
|
13772
13795
|
return (r2 >>> 0).toString(2).padStart(8, "0");
|
|
13773
13796
|
}).join(" ");
|
|
@@ -13775,7 +13798,7 @@ function Le(i) {
|
|
|
13775
13798
|
function A(i) {
|
|
13776
13799
|
return Math.round(i * 100);
|
|
13777
13800
|
}
|
|
13778
|
-
function
|
|
13801
|
+
function Mr(i, e2 = "rgb", r2 = "sRGB") {
|
|
13779
13802
|
switch (e2) {
|
|
13780
13803
|
case "rgba":
|
|
13781
13804
|
return `rgba(${i[0]}, ${i[1]}, ${i[2]}, ${i[3]})`;
|
|
@@ -13800,14 +13823,14 @@ function Sr(i, e2 = "rgb", r2 = "sRGB") {
|
|
|
13800
13823
|
function D(i, e2, r2 = "rgb", t2 = "sRGB") {
|
|
13801
13824
|
switch (e2) {
|
|
13802
13825
|
case "css":
|
|
13803
|
-
return
|
|
13826
|
+
return Mr(i, r2, t2);
|
|
13804
13827
|
case "binary":
|
|
13805
|
-
return
|
|
13828
|
+
return Pe(i);
|
|
13806
13829
|
case "decimal":
|
|
13807
13830
|
return i;
|
|
13808
13831
|
}
|
|
13809
13832
|
}
|
|
13810
|
-
var
|
|
13833
|
+
var O = class extends p {
|
|
13811
13834
|
human() {
|
|
13812
13835
|
return this.faker.helpers.arrayElement(this.faker.definitions.color.human);
|
|
13813
13836
|
}
|
|
@@ -13815,14 +13838,14 @@ var G = class extends p {
|
|
|
13815
13838
|
return this.faker.helpers.arrayElement(this.faker.definitions.color.space);
|
|
13816
13839
|
}
|
|
13817
13840
|
cssSupportedFunction() {
|
|
13818
|
-
return this.faker.helpers.enumValue(
|
|
13841
|
+
return this.faker.helpers.enumValue(Le);
|
|
13819
13842
|
}
|
|
13820
13843
|
cssSupportedSpace() {
|
|
13821
|
-
return this.faker.helpers.enumValue(
|
|
13844
|
+
return this.faker.helpers.enumValue(Re);
|
|
13822
13845
|
}
|
|
13823
13846
|
rgb(e2 = {}) {
|
|
13824
13847
|
let { format: r2 = "hex", includeAlpha: t2 = false, prefix: a2 = "#", casing: n2 = "lower" } = e2, o2, s2 = "rgb";
|
|
13825
|
-
return r2 === "hex" ? (o2 = this.faker.string.hexadecimal({ length: t2 ? 8 : 6, prefix: "" }), o2 =
|
|
13848
|
+
return r2 === "hex" ? (o2 = this.faker.string.hexadecimal({ length: t2 ? 8 : 6, prefix: "" }), o2 = Sr(o2, { prefix: a2, casing: n2 }), o2) : (o2 = Array.from({ length: 3 }, () => this.faker.number.int(255)), t2 && (o2.push(this.faker.number.float({ multipleOf: 0.01 })), s2 = "rgba"), D(o2, r2, s2));
|
|
13826
13849
|
}
|
|
13827
13850
|
cmyk(e2 = {}) {
|
|
13828
13851
|
let { format: r2 = "decimal" } = e2, t2 = Array.from({ length: 4 }, () => this.faker.number.float({ multipleOf: 0.01 }));
|
|
@@ -13853,12 +13876,12 @@ var G = class extends p {
|
|
|
13853
13876
|
return D(a2, r2, "color", t2);
|
|
13854
13877
|
}
|
|
13855
13878
|
};
|
|
13856
|
-
var
|
|
13857
|
-
var
|
|
13879
|
+
var de = ((a2) => (a2.Legacy = "legacy", a2.Segwit = "segwit", a2.Bech32 = "bech32", a2.Taproot = "taproot", a2))(de || {}), Be = ((r2) => (r2.Mainnet = "mainnet", r2.Testnet = "testnet", r2))(Be || {}), ve = { legacy: { prefix: { mainnet: "1", testnet: "m" }, length: { min: 26, max: 34 }, casing: "mixed", exclude: "0OIl" }, segwit: { prefix: { mainnet: "3", testnet: "2" }, length: { min: 26, max: 34 }, casing: "mixed", exclude: "0OIl" }, bech32: { prefix: { mainnet: "bc1", testnet: "tb1" }, length: { min: 42, max: 42 }, casing: "lower", exclude: "1bBiIoO" }, taproot: { prefix: { mainnet: "bc1p", testnet: "tb1p" }, length: { min: 62, max: 62 }, casing: "lower", exclude: "1bBiIoO" } };
|
|
13880
|
+
var ge = typeof Buffer > "u" || !$e("base64") ? (i) => {
|
|
13858
13881
|
let e2 = new TextEncoder().encode(i), r2 = Array.from(e2, (t2) => String.fromCodePoint(t2)).join("");
|
|
13859
13882
|
return btoa(r2);
|
|
13860
|
-
} : (i) => Buffer.from(i).toString("base64"),
|
|
13861
|
-
function
|
|
13883
|
+
} : (i) => Buffer.from(i).toString("base64"), ye = typeof Buffer > "u" || !$e("base64url") ? (i) => ge(i).replaceAll("+", "-").replaceAll("/", "_").replaceAll(/=+$/g, "") : (i) => Buffer.from(i).toString("base64url");
|
|
13884
|
+
function $e(i) {
|
|
13862
13885
|
try {
|
|
13863
13886
|
return typeof Buffer.from("test").toString(i) == "string";
|
|
13864
13887
|
} catch {
|
|
@@ -13869,21 +13892,21 @@ function w(i) {
|
|
|
13869
13892
|
let { deprecated: e2, since: r2, until: t2, proposed: a2 } = i, n2 = `[@faker-js/faker]: ${e2} is deprecated`;
|
|
13870
13893
|
r2 && (n2 += ` since v${r2}`), t2 && (n2 += ` and will be removed in v${t2}`), a2 && (n2 += `. Please use ${a2} instead`), console.warn(`${n2}.`);
|
|
13871
13894
|
}
|
|
13872
|
-
var
|
|
13873
|
-
var
|
|
13874
|
-
function
|
|
13895
|
+
var Tr = Object.fromEntries([["А", "A"], ["а", "a"], ["Б", "B"], ["б", "b"], ["В", "V"], ["в", "v"], ["Г", "G"], ["г", "g"], ["Д", "D"], ["д", "d"], ["ъе", "ye"], ["Ъе", "Ye"], ["ъЕ", "yE"], ["ЪЕ", "YE"], ["Е", "E"], ["е", "e"], ["Ё", "Yo"], ["ё", "yo"], ["Ж", "Zh"], ["ж", "zh"], ["З", "Z"], ["з", "z"], ["И", "I"], ["и", "i"], ["ый", "iy"], ["Ый", "Iy"], ["ЫЙ", "IY"], ["ыЙ", "iY"], ["Й", "Y"], ["й", "y"], ["К", "K"], ["к", "k"], ["Л", "L"], ["л", "l"], ["М", "M"], ["м", "m"], ["Н", "N"], ["н", "n"], ["О", "O"], ["о", "o"], ["П", "P"], ["п", "p"], ["Р", "R"], ["р", "r"], ["С", "S"], ["с", "s"], ["Т", "T"], ["т", "t"], ["У", "U"], ["у", "u"], ["Ф", "F"], ["ф", "f"], ["Х", "Kh"], ["х", "kh"], ["Ц", "Ts"], ["ц", "ts"], ["Ч", "Ch"], ["ч", "ch"], ["Ш", "Sh"], ["ш", "sh"], ["Щ", "Sch"], ["щ", "sch"], ["Ъ", ""], ["ъ", ""], ["Ы", "Y"], ["ы", "y"], ["Ь", ""], ["ь", ""], ["Э", "E"], ["э", "e"], ["Ю", "Yu"], ["ю", "yu"], ["Я", "Ya"], ["я", "ya"]]), Cr = Object.fromEntries([["α", "a"], ["β", "v"], ["γ", "g"], ["δ", "d"], ["ε", "e"], ["ζ", "z"], ["η", "i"], ["θ", "th"], ["ι", "i"], ["κ", "k"], ["λ", "l"], ["μ", "m"], ["ν", "n"], ["ξ", "ks"], ["ο", "o"], ["π", "p"], ["ρ", "r"], ["σ", "s"], ["τ", "t"], ["υ", "y"], ["φ", "f"], ["χ", "x"], ["ψ", "ps"], ["ω", "o"], ["ά", "a"], ["έ", "e"], ["ί", "i"], ["ό", "o"], ["ύ", "y"], ["ή", "i"], ["ώ", "o"], ["ς", "s"], ["ϊ", "i"], ["ΰ", "y"], ["ϋ", "y"], ["ΐ", "i"], ["Α", "A"], ["Β", "B"], ["Γ", "G"], ["Δ", "D"], ["Ε", "E"], ["Ζ", "Z"], ["Η", "I"], ["Θ", "TH"], ["Ι", "I"], ["Κ", "K"], ["Λ", "L"], ["Μ", "M"], ["Ν", "N"], ["Ξ", "KS"], ["Ο", "O"], ["Π", "P"], ["Ρ", "R"], ["Σ", "S"], ["Τ", "T"], ["Υ", "Y"], ["Φ", "F"], ["Χ", "X"], ["Ψ", "PS"], ["Ω", "O"], ["Ά", "A"], ["Έ", "E"], ["Ί", "I"], ["Ό", "O"], ["Ύ", "Y"], ["Ή", "I"], ["Ώ", "O"], ["Ϊ", "I"], ["Ϋ", "Y"]]), Nr = Object.fromEntries([["ء", "e"], ["آ", "a"], ["أ", "a"], ["ؤ", "w"], ["إ", "i"], ["ئ", "y"], ["ا", "a"], ["ب", "b"], ["ة", "t"], ["ت", "t"], ["ث", "th"], ["ج", "j"], ["ح", "h"], ["خ", "kh"], ["د", "d"], ["ذ", "dh"], ["ر", "r"], ["ز", "z"], ["س", "s"], ["ش", "sh"], ["ص", "s"], ["ض", "d"], ["ط", "t"], ["ظ", "z"], ["ع", "e"], ["غ", "gh"], ["ـ", "_"], ["ف", "f"], ["ق", "q"], ["ك", "k"], ["ل", "l"], ["م", "m"], ["ن", "n"], ["ه", "h"], ["و", "w"], ["ى", "a"], ["ي", "y"], ["َ", "a"], ["ُ", "u"], ["ِ", "i"]]), Dr = Object.fromEntries([["ա", "a"], ["Ա", "A"], ["բ", "b"], ["Բ", "B"], ["գ", "g"], ["Գ", "G"], ["դ", "d"], ["Դ", "D"], ["ե", "ye"], ["Ե", "Ye"], ["զ", "z"], ["Զ", "Z"], ["է", "e"], ["Է", "E"], ["ը", "y"], ["Ը", "Y"], ["թ", "t"], ["Թ", "T"], ["ժ", "zh"], ["Ժ", "Zh"], ["ի", "i"], ["Ի", "I"], ["լ", "l"], ["Լ", "L"], ["խ", "kh"], ["Խ", "Kh"], ["ծ", "ts"], ["Ծ", "Ts"], ["կ", "k"], ["Կ", "K"], ["հ", "h"], ["Հ", "H"], ["ձ", "dz"], ["Ձ", "Dz"], ["ղ", "gh"], ["Ղ", "Gh"], ["ճ", "tch"], ["Ճ", "Tch"], ["մ", "m"], ["Մ", "M"], ["յ", "y"], ["Յ", "Y"], ["ն", "n"], ["Ն", "N"], ["շ", "sh"], ["Շ", "Sh"], ["ո", "vo"], ["Ո", "Vo"], ["չ", "ch"], ["Չ", "Ch"], ["պ", "p"], ["Պ", "P"], ["ջ", "j"], ["Ջ", "J"], ["ռ", "r"], ["Ռ", "R"], ["ս", "s"], ["Ս", "S"], ["վ", "v"], ["Վ", "V"], ["տ", "t"], ["Տ", "T"], ["ր", "r"], ["Ր", "R"], ["ց", "c"], ["Ց", "C"], ["ու", "u"], ["ՈՒ", "U"], ["Ու", "U"], ["փ", "p"], ["Փ", "P"], ["ք", "q"], ["Ք", "Q"], ["օ", "o"], ["Օ", "O"], ["ֆ", "f"], ["Ֆ", "F"], ["և", "yev"]]), Rr = Object.fromEntries([["چ", "ch"], ["ک", "k"], ["گ", "g"], ["پ", "p"], ["ژ", "zh"], ["ی", "y"]]), Lr = Object.fromEntries([["א", "a"], ["ב", "b"], ["ג", "g"], ["ד", "d"], ["ה", "h"], ["ו", "v"], ["ז", "z"], ["ח", "ch"], ["ט", "t"], ["י", "y"], ["כ", "k"], ["ך", "kh"], ["ל", "l"], ["ם", "m"], ["מ", "m"], ["ן", "n"], ["נ", "n"], ["ס", "s"], ["ע", "a"], ["פ", "f"], ["ף", "ph"], ["צ", "ts"], ["ץ", "ts"], ["ק", "k"], ["ר", "r"], ["ש", "sh"], ["ת", "t"], ["ו", "v"]]), ke = { ...Tr, ...Cr, ...Nr, ...Rr, ...Dr, ...Lr };
|
|
13896
|
+
var Pr = ((u2) => (u2.Any = "any", u2.Loopback = "loopback", u2.PrivateA = "private-a", u2.PrivateB = "private-b", u2.PrivateC = "private-c", u2.TestNet1 = "test-net-1", u2.TestNet2 = "test-net-2", u2.TestNet3 = "test-net-3", u2.LinkLocal = "link-local", u2.Multicast = "multicast", u2))(Pr || {}), Br = { any: "0.0.0.0/0", loopback: "127.0.0.0/8", "private-a": "10.0.0.0/8", "private-b": "172.16.0.0/12", "private-c": "192.168.0.0/16", "test-net-1": "192.0.2.0/24", "test-net-2": "198.51.100.0/24", "test-net-3": "203.0.113.0/24", "link-local": "169.254.0.0/16", multicast: "224.0.0.0/4" };
|
|
13897
|
+
function Ie(i) {
|
|
13875
13898
|
return /^[a-z][a-z-]*[a-z]$/i.exec(i) !== null;
|
|
13876
13899
|
}
|
|
13877
|
-
function
|
|
13900
|
+
function _e(i, e2) {
|
|
13878
13901
|
let r2 = i.helpers.slugify(e2);
|
|
13879
|
-
if (
|
|
13902
|
+
if (Ie(r2)) return r2;
|
|
13880
13903
|
let t2 = i.helpers.slugify(i.lorem.word());
|
|
13881
|
-
return
|
|
13904
|
+
return Ie(t2) ? t2 : i.string.alpha({ casing: "lower", length: i.number.int({ min: 4, max: 8 }) });
|
|
13882
13905
|
}
|
|
13883
|
-
function
|
|
13906
|
+
function xe(i, e2) {
|
|
13884
13907
|
return Math.floor((i.number.int(256) + e2) / 2).toString(16).padStart(2, "0");
|
|
13885
13908
|
}
|
|
13886
|
-
var
|
|
13909
|
+
var U = class extends p {
|
|
13887
13910
|
email(e2 = {}) {
|
|
13888
13911
|
let { firstName: r2, lastName: t2, provider: a2 = this.faker.helpers.arrayElement(this.faker.definitions.internet.free_email), allowSpecialCharacters: n2 = false } = e2, o2 = this.username({ firstName: r2, lastName: t2 });
|
|
13889
13912
|
if (o2 = o2.replaceAll(/[^A-Za-z0-9._+-]+/g, ""), o2 = o2.substring(0, 50), n2) {
|
|
@@ -13904,7 +13927,7 @@ var O = class extends p {
|
|
|
13904
13927
|
a2 || s2.push(() => `${r2}${o2}`);
|
|
13905
13928
|
let l2 = this.faker.helpers.arrayElement(s2)();
|
|
13906
13929
|
return l2 = l2.normalize("NFKD").replaceAll(/[\u0300-\u036F]/g, ""), l2 = [...l2].map((c2) => {
|
|
13907
|
-
if (
|
|
13930
|
+
if (ke[c2]) return ke[c2];
|
|
13908
13931
|
let u2 = c2.codePointAt(0) ?? Number.NaN;
|
|
13909
13932
|
return u2 < 128 ? c2 : u2.toString(36);
|
|
13910
13933
|
}).join(""), l2 = l2.toString().replaceAll("'", ""), l2 = l2.replaceAll(" ", ""), l2;
|
|
@@ -13936,14 +13959,14 @@ var O = class extends p {
|
|
|
13936
13959
|
return this.faker.helpers.arrayElement(this.faker.definitions.internet.domain_suffix);
|
|
13937
13960
|
}
|
|
13938
13961
|
domainWord() {
|
|
13939
|
-
let e2 =
|
|
13962
|
+
let e2 = _e(this.faker, this.faker.word.adjective()), r2 = _e(this.faker, this.faker.word.noun());
|
|
13940
13963
|
return `${e2}-${r2}`.toLowerCase();
|
|
13941
13964
|
}
|
|
13942
13965
|
ip() {
|
|
13943
13966
|
return this.faker.datatype.boolean() ? this.ipv4() : this.ipv6();
|
|
13944
13967
|
}
|
|
13945
13968
|
ipv4(e2 = {}) {
|
|
13946
|
-
let { network: r2 = "any", cidrBlock: t2 =
|
|
13969
|
+
let { network: r2 = "any", cidrBlock: t2 = Br[r2] } = e2;
|
|
13947
13970
|
if (!/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\/\d{1,2}$/.test(t2)) throw new m(`Invalid CIDR block provided: ${t2}. Must be in the format x.x.x.x/y.`);
|
|
13948
13971
|
let [a2, n2] = t2.split("/"), o2 = 4294967295 >>> Number.parseInt(n2), [s2, l2, c2, u2] = a2.split(".").map(Number), f2 = (s2 << 24 | l2 << 16 | c2 << 8 | u2) & ~o2, g2 = this.faker.number.int(o2), b2 = f2 | g2;
|
|
13949
13972
|
return [b2 >>> 24 & 255, b2 >>> 16 & 255, b2 >>> 8 & 255, b2 & 255].join(".");
|
|
@@ -13959,7 +13982,7 @@ var O = class extends p {
|
|
|
13959
13982
|
}
|
|
13960
13983
|
color(e2 = {}) {
|
|
13961
13984
|
w({ deprecated: "faker.internet.color()", proposed: "faker.color.rgb()", since: "9.6.0", until: "10.0.0" });
|
|
13962
|
-
let { redBase: r2 = 0, greenBase: t2 = 0, blueBase: a2 = 0 } = e2, n2 =
|
|
13985
|
+
let { redBase: r2 = 0, greenBase: t2 = 0, blueBase: a2 = 0 } = e2, n2 = xe(this.faker, r2), o2 = xe(this.faker, t2), s2 = xe(this.faker, a2);
|
|
13963
13986
|
return `#${n2}${o2}${s2}`;
|
|
13964
13987
|
}
|
|
13965
13988
|
mac(e2 = {}) {
|
|
@@ -13985,11 +14008,11 @@ var O = class extends p {
|
|
|
13985
14008
|
return this.faker.helpers.arrayElement(this.faker.definitions.internet.jwt_algorithm);
|
|
13986
14009
|
}
|
|
13987
14010
|
jwt(e2 = {}) {
|
|
13988
|
-
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = this.faker.date.recent({ refDate: r2 }), { header: a2 = { alg: this.jwtAlgorithm(), typ: "JWT" }, payload: n2 = { iat: Math.round(t2.valueOf() / 1e3), exp: Math.round(this.faker.date.soon({ refDate: t2 }).valueOf() / 1e3), nbf: Math.round(this.faker.date.anytime({ refDate: r2 }).valueOf() / 1e3), iss: this.faker.company.name(), sub: this.faker.string.uuid(), aud: this.faker.string.uuid(), jti: this.faker.string.uuid() } } = e2, o2 =
|
|
14011
|
+
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = this.faker.date.recent({ refDate: r2 }), { header: a2 = { alg: this.jwtAlgorithm(), typ: "JWT" }, payload: n2 = { iat: Math.round(t2.valueOf() / 1e3), exp: Math.round(this.faker.date.soon({ refDate: t2 }).valueOf() / 1e3), nbf: Math.round(this.faker.date.anytime({ refDate: r2 }).valueOf() / 1e3), iss: this.faker.company.name(), sub: this.faker.string.uuid(), aud: this.faker.string.uuid(), jti: this.faker.string.uuid() } } = e2, o2 = ye(JSON.stringify(a2)), s2 = ye(JSON.stringify(n2)), l2 = this.faker.string.alphanumeric(64);
|
|
13989
14012
|
return `${o2}.${s2}.${l2}`;
|
|
13990
14013
|
}
|
|
13991
14014
|
};
|
|
13992
|
-
var
|
|
14015
|
+
var Fe = ((r2) => (r2.Female = "female", r2.Male = "male", r2))(Fe || {});
|
|
13993
14016
|
function R(i, e2, r2) {
|
|
13994
14017
|
let { generic: t2, female: a2, male: n2 } = r2;
|
|
13995
14018
|
switch (e2) {
|
|
@@ -14001,7 +14024,7 @@ function R(i, e2, r2) {
|
|
|
14001
14024
|
return t2 ?? i.helpers.arrayElement([a2, n2]) ?? [];
|
|
14002
14025
|
}
|
|
14003
14026
|
}
|
|
14004
|
-
var
|
|
14027
|
+
var K = class extends p {
|
|
14005
14028
|
firstName(e2) {
|
|
14006
14029
|
return this.faker.helpers.arrayElement(R(this.faker, e2, this.faker.definitions.person.first_name));
|
|
14007
14030
|
}
|
|
@@ -14027,7 +14050,7 @@ var U = class extends p {
|
|
|
14027
14050
|
return this.faker.helpers.arrayElement(this.faker.definitions.person.sex);
|
|
14028
14051
|
}
|
|
14029
14052
|
sexType() {
|
|
14030
|
-
return this.faker.helpers.enumValue(
|
|
14053
|
+
return this.faker.helpers.enumValue(Fe);
|
|
14031
14054
|
}
|
|
14032
14055
|
bio() {
|
|
14033
14056
|
let { bio_pattern: e2 } = this.faker.definitions.person;
|
|
@@ -14055,29 +14078,29 @@ var U = class extends p {
|
|
|
14055
14078
|
return this.faker.helpers.arrayElement(this.faker.definitions.person.western_zodiac_sign);
|
|
14056
14079
|
}
|
|
14057
14080
|
};
|
|
14058
|
-
var
|
|
14059
|
-
function Fe(i) {
|
|
14060
|
-
return typeof i == "number" ? Ge(i) : $r(i);
|
|
14061
|
-
}
|
|
14081
|
+
var vr = 23283064365386963e-26, $r = 1 / 9007199254740992, { imul: Ee, trunc: we } = Math;
|
|
14062
14082
|
function Ge(i) {
|
|
14083
|
+
return typeof i == "number" ? Oe(i) : Ir(i);
|
|
14084
|
+
}
|
|
14085
|
+
function Oe(i) {
|
|
14063
14086
|
let e2 = Array.from({ length: 624 });
|
|
14064
14087
|
e2[0] = i;
|
|
14065
14088
|
for (let r2 = 1; r2 !== 624; ++r2) {
|
|
14066
14089
|
let t2 = e2[r2 - 1] ^ e2[r2 - 1] >>> 30;
|
|
14067
|
-
e2[r2] = Ee(
|
|
14090
|
+
e2[r2] = we(Ee(1812433253, t2) + r2);
|
|
14068
14091
|
}
|
|
14069
14092
|
return e2;
|
|
14070
14093
|
}
|
|
14071
|
-
function
|
|
14072
|
-
let e2 =
|
|
14094
|
+
function Ir(i) {
|
|
14095
|
+
let e2 = Oe(19650218), r2 = 1, t2 = 0;
|
|
14073
14096
|
for (let a2 = Math.max(624, i.length); a2 !== 0; --a2) {
|
|
14074
14097
|
let n2 = e2[r2 - 1] ^ e2[r2 - 1] >>> 30;
|
|
14075
|
-
e2[r2] =
|
|
14098
|
+
e2[r2] = we((e2[r2] ^ Ee(n2, 1664525)) + i[t2] + t2), r2++, t2++, r2 >= 624 && (e2[0] = e2[623], r2 = 1), t2 >= i.length && (t2 = 0);
|
|
14076
14099
|
}
|
|
14077
|
-
for (let a2 = 623; a2 !== 0; a2--) e2[r2] =
|
|
14100
|
+
for (let a2 = 623; a2 !== 0; a2--) e2[r2] = we((e2[r2] ^ Ee(e2[r2 - 1] ^ e2[r2 - 1] >>> 30, 1566083941)) - r2), r2++, r2 >= 624 && (e2[0] = e2[623], r2 = 1);
|
|
14078
14101
|
return e2[0] = 2147483648, e2;
|
|
14079
14102
|
}
|
|
14080
|
-
function
|
|
14103
|
+
function Ae(i) {
|
|
14081
14104
|
for (let r2 = 0; r2 !== 227; ++r2) {
|
|
14082
14105
|
let t2 = (i[r2] & 2147483648) + (i[r2 + 1] & 2147483647);
|
|
14083
14106
|
i[r2] = i[r2 + 397] ^ t2 >>> 1 ^ -(t2 & 1) & 2567483615;
|
|
@@ -14090,32 +14113,32 @@ function xe(i) {
|
|
|
14090
14113
|
return i[623] = i[396] ^ e2 >>> 1 ^ -(e2 & 1) & 2567483615, i;
|
|
14091
14114
|
}
|
|
14092
14115
|
var L = class {
|
|
14093
|
-
constructor(e2 = Math.random() * Number.MAX_SAFE_INTEGER, r2 =
|
|
14116
|
+
constructor(e2 = Math.random() * Number.MAX_SAFE_INTEGER, r2 = Ae(Ge(e2)), t2 = 0) {
|
|
14094
14117
|
this.states = r2;
|
|
14095
14118
|
this.index = t2;
|
|
14096
14119
|
}
|
|
14097
14120
|
nextU32() {
|
|
14098
14121
|
let e2 = this.states[this.index];
|
|
14099
|
-
return e2 ^= this.states[this.index] >>> 11, e2 ^= e2 << 7 & 2636928640, e2 ^= e2 << 15 & 4022730752, e2 ^= e2 >>> 18, ++this.index >= 624 && (this.states =
|
|
14122
|
+
return e2 ^= this.states[this.index] >>> 11, e2 ^= e2 << 7 & 2636928640, e2 ^= e2 << 15 & 4022730752, e2 ^= e2 >>> 18, ++this.index >= 624 && (this.states = Ae(this.states), this.index = 0), e2 >>> 0;
|
|
14100
14123
|
}
|
|
14101
14124
|
nextF32() {
|
|
14102
|
-
return this.nextU32() *
|
|
14125
|
+
return this.nextU32() * vr;
|
|
14103
14126
|
}
|
|
14104
14127
|
nextU53() {
|
|
14105
14128
|
let e2 = this.nextU32() >>> 5, r2 = this.nextU32() >>> 6;
|
|
14106
14129
|
return e2 * 67108864 + r2;
|
|
14107
14130
|
}
|
|
14108
14131
|
nextF53() {
|
|
14109
|
-
return this.nextU53() *
|
|
14132
|
+
return this.nextU53() * $r;
|
|
14110
14133
|
}
|
|
14111
14134
|
seed(e2) {
|
|
14112
|
-
this.states =
|
|
14135
|
+
this.states = Ae(Ge(e2)), this.index = 0;
|
|
14113
14136
|
}
|
|
14114
14137
|
};
|
|
14115
14138
|
function P() {
|
|
14116
14139
|
return Math.ceil(Math.random() * Number.MAX_SAFE_INTEGER);
|
|
14117
14140
|
}
|
|
14118
|
-
function
|
|
14141
|
+
function Ue(i = P()) {
|
|
14119
14142
|
let e2 = new L(i);
|
|
14120
14143
|
return { next() {
|
|
14121
14144
|
return e2.nextF53();
|
|
@@ -14123,7 +14146,7 @@ function Oe(i = P()) {
|
|
|
14123
14146
|
e2.seed(r2);
|
|
14124
14147
|
} };
|
|
14125
14148
|
}
|
|
14126
|
-
var
|
|
14149
|
+
var j = class extends x$1 {
|
|
14127
14150
|
boolean(e2 = {}) {
|
|
14128
14151
|
typeof e2 == "number" && (e2 = { probability: e2 });
|
|
14129
14152
|
let { probability: r2 = 0.5 } = e2;
|
|
@@ -14135,18 +14158,18 @@ function S(i, e2 = "refDate") {
|
|
|
14135
14158
|
if (Number.isNaN(r2.valueOf())) throw new m(`Invalid ${e2} date: ${i.toString()}`);
|
|
14136
14159
|
return r2;
|
|
14137
14160
|
}
|
|
14138
|
-
var
|
|
14161
|
+
var H = () => {
|
|
14139
14162
|
throw new m("You cannot edit the locale data on the faker instance");
|
|
14140
14163
|
};
|
|
14141
|
-
function
|
|
14164
|
+
function Ke(i) {
|
|
14142
14165
|
let e2 = {};
|
|
14143
14166
|
return new Proxy(i, { has() {
|
|
14144
14167
|
return true;
|
|
14145
14168
|
}, get(r2, t2) {
|
|
14146
|
-
return typeof t2 == "symbol" || t2 === "nodeType" ? r2[t2] : t2 in e2 ? e2[t2] : e2[t2] =
|
|
14147
|
-
}, set:
|
|
14169
|
+
return typeof t2 == "symbol" || t2 === "nodeType" ? r2[t2] : t2 in e2 ? e2[t2] : e2[t2] = _r(t2, r2[t2]);
|
|
14170
|
+
}, set: H, deleteProperty: H });
|
|
14148
14171
|
}
|
|
14149
|
-
function
|
|
14172
|
+
function V(i, ...e2) {
|
|
14150
14173
|
if (i === null) throw new m(`The locale data for '${e2.join(".")}' aren't applicable to this locale.
|
|
14151
14174
|
If you think this is a bug, please report it at: https://github.com/faker-js/faker`);
|
|
14152
14175
|
if (i === void 0) throw new m(`The locale data for '${e2.join(".")}' are missing in this locale.
|
|
@@ -14154,13 +14177,13 @@ function H(i, ...e2) {
|
|
|
14154
14177
|
Please contribute the missing data to the project or use a locale/Faker instance that has these data.
|
|
14155
14178
|
For more information see https://fakerjs.dev/guide/localization.html`);
|
|
14156
14179
|
}
|
|
14157
|
-
function
|
|
14180
|
+
function _r(i, e2 = {}) {
|
|
14158
14181
|
return new Proxy(e2, { has(r2, t2) {
|
|
14159
14182
|
return r2[t2] != null;
|
|
14160
14183
|
}, get(r2, t2) {
|
|
14161
14184
|
let a2 = r2[t2];
|
|
14162
|
-
return typeof t2 == "symbol" || t2 === "nodeType" ||
|
|
14163
|
-
}, set:
|
|
14185
|
+
return typeof t2 == "symbol" || t2 === "nodeType" || V(a2, i, t2.toString()), a2;
|
|
14186
|
+
}, set: H, deleteProperty: H });
|
|
14164
14187
|
}
|
|
14165
14188
|
var B = class extends x$1 {
|
|
14166
14189
|
anytime(e2 = {}) {
|
|
@@ -14219,7 +14242,7 @@ var B = class extends x$1 {
|
|
|
14219
14242
|
}
|
|
14220
14243
|
}
|
|
14221
14244
|
}
|
|
14222
|
-
},
|
|
14245
|
+
}, z = class extends B {
|
|
14223
14246
|
constructor(r2) {
|
|
14224
14247
|
super(r2);
|
|
14225
14248
|
this.faker = r2;
|
|
@@ -14228,33 +14251,33 @@ var B = class extends x$1 {
|
|
|
14228
14251
|
let { abbreviated: t2 = false, context: a2 = false } = r2, n2 = this.faker.definitions.date.month, o2;
|
|
14229
14252
|
t2 ? o2 = a2 && n2.abbr_context != null ? "abbr_context" : "abbr" : o2 = a2 && n2.wide_context != null ? "wide_context" : "wide";
|
|
14230
14253
|
let s2 = n2[o2];
|
|
14231
|
-
return
|
|
14254
|
+
return V(s2, "date.month", o2), this.faker.helpers.arrayElement(s2);
|
|
14232
14255
|
}
|
|
14233
14256
|
weekday(r2 = {}) {
|
|
14234
14257
|
let { abbreviated: t2 = false, context: a2 = false } = r2, n2 = this.faker.definitions.date.weekday, o2;
|
|
14235
14258
|
t2 ? o2 = a2 && n2.abbr_context != null ? "abbr_context" : "abbr" : o2 = a2 && n2.wide_context != null ? "wide_context" : "wide";
|
|
14236
14259
|
let s2 = n2[o2];
|
|
14237
|
-
return
|
|
14260
|
+
return V(s2, "date.weekday", o2), this.faker.helpers.arrayElement(s2);
|
|
14238
14261
|
}
|
|
14239
14262
|
timeZone() {
|
|
14240
14263
|
return this.faker.helpers.arrayElement(this.faker.definitions.date.time_zone);
|
|
14241
14264
|
}
|
|
14242
14265
|
};
|
|
14243
|
-
var
|
|
14244
|
-
function
|
|
14266
|
+
var Fr = /\.|\(/;
|
|
14267
|
+
function je(i, e2, r2 = [e2, e2.rawDefinitions]) {
|
|
14245
14268
|
if (i.length === 0) throw new m("Eval expression cannot be empty.");
|
|
14246
14269
|
if (r2.length === 0) throw new m("Eval entrypoints cannot be empty.");
|
|
14247
14270
|
let t2 = r2, a2 = i;
|
|
14248
14271
|
do {
|
|
14249
14272
|
let o2;
|
|
14250
|
-
a2.startsWith("(") ? [o2, t2] =
|
|
14273
|
+
a2.startsWith("(") ? [o2, t2] = Gr(a2, t2, i) : [o2, t2] = Ur(a2, t2), a2 = a2.substring(o2), t2 = t2.filter((s2) => s2 != null).map((s2) => Array.isArray(s2) ? e2.helpers.arrayElement(s2) : s2);
|
|
14251
14274
|
} while (a2.length > 0 && t2.length > 0);
|
|
14252
14275
|
if (t2.length === 0) throw new m(`Cannot resolve expression '${i}'`);
|
|
14253
14276
|
let n2 = t2[0];
|
|
14254
14277
|
return typeof n2 == "function" ? n2() : n2;
|
|
14255
14278
|
}
|
|
14256
|
-
function
|
|
14257
|
-
let [t2, a2] =
|
|
14279
|
+
function Gr(i, e2, r2) {
|
|
14280
|
+
let [t2, a2] = Or(i), n2 = i[t2 + 1];
|
|
14258
14281
|
switch (n2) {
|
|
14259
14282
|
case ".":
|
|
14260
14283
|
case "(":
|
|
@@ -14268,7 +14291,7 @@ Please remove the parentheses or replace the expression with an actual function.
|
|
|
14268
14291
|
${r2}
|
|
14269
14292
|
${" ".repeat(r2.length - i.length)}^`), o2))];
|
|
14270
14293
|
}
|
|
14271
|
-
function
|
|
14294
|
+
function Or(i) {
|
|
14272
14295
|
let e2 = i.indexOf(")", 1);
|
|
14273
14296
|
if (e2 === -1) throw new m(`Missing closing parenthesis in '${i}'`);
|
|
14274
14297
|
for (; e2 !== -1; ) {
|
|
@@ -14287,14 +14310,14 @@ function Gr(i) {
|
|
|
14287
14310
|
let r2 = i.substring(1, e2);
|
|
14288
14311
|
return [e2, [r2]];
|
|
14289
14312
|
}
|
|
14290
|
-
function
|
|
14291
|
-
let r2 =
|
|
14313
|
+
function Ur(i, e2) {
|
|
14314
|
+
let r2 = Fr.exec(i), t2 = ((r2 == null ? void 0 : r2[0]) ?? "") === ".", a2 = (r2 == null ? void 0 : r2.index) ?? i.length, n2 = i.substring(0, a2);
|
|
14292
14315
|
if (n2.length === 0) throw new m(`Expression parts cannot be empty in '${i}'`);
|
|
14293
14316
|
let o2 = i[a2 + 1];
|
|
14294
14317
|
if (t2 && (o2 == null || o2 === "." || o2 === "(")) throw new m(`Found dot without property name in '${i}'`);
|
|
14295
|
-
return [a2 + (t2 ? 1 : 0), e2.map((s2) =>
|
|
14318
|
+
return [a2 + (t2 ? 1 : 0), e2.map((s2) => Kr(s2, n2))];
|
|
14296
14319
|
}
|
|
14297
|
-
function
|
|
14320
|
+
function Kr(i, e2) {
|
|
14298
14321
|
switch (typeof i) {
|
|
14299
14322
|
case "function": {
|
|
14300
14323
|
try {
|
|
@@ -14310,11 +14333,11 @@ function Ur(i, e2) {
|
|
|
14310
14333
|
return;
|
|
14311
14334
|
}
|
|
14312
14335
|
}
|
|
14313
|
-
function
|
|
14314
|
-
let e2 =
|
|
14336
|
+
function He(i) {
|
|
14337
|
+
let e2 = jr(i.replace(/L?$/, "0"));
|
|
14315
14338
|
return e2 === 0 ? 0 : 10 - e2;
|
|
14316
14339
|
}
|
|
14317
|
-
function
|
|
14340
|
+
function jr(i) {
|
|
14318
14341
|
i = i.replaceAll(/[\s-]/g, "");
|
|
14319
14342
|
let e2 = 0, r2 = false;
|
|
14320
14343
|
for (let t2 = i.length - 1; t2 >= 0; t2--) {
|
|
@@ -14323,7 +14346,7 @@ function Kr(i) {
|
|
|
14323
14346
|
}
|
|
14324
14347
|
return e2 % 10;
|
|
14325
14348
|
}
|
|
14326
|
-
function
|
|
14349
|
+
function Ve(i, e2, r2, t2) {
|
|
14327
14350
|
let a2 = 1;
|
|
14328
14351
|
if (e2) switch (e2) {
|
|
14329
14352
|
case "?": {
|
|
@@ -14348,14 +14371,14 @@ function He(i, e2, r2, t2) {
|
|
|
14348
14371
|
else r2 != null && t2 != null ? a2 = i.number.int({ min: Number.parseInt(r2), max: Number.parseInt(t2) }) : r2 != null && t2 == null && (a2 = Number.parseInt(r2));
|
|
14349
14372
|
return a2;
|
|
14350
14373
|
}
|
|
14351
|
-
function
|
|
14374
|
+
function Hr(i, e2 = "") {
|
|
14352
14375
|
let r2 = /(.)\{(\d+),(\d+)\}/, t2 = /(.)\{(\d+)\}/, a2 = /\[(\d+)-(\d+)\]/, n2, o2, s2, l2, c2 = r2.exec(e2);
|
|
14353
14376
|
for (; c2 != null; ) n2 = Number.parseInt(c2[2]), o2 = Number.parseInt(c2[3]), n2 > o2 && (s2 = o2, o2 = n2, n2 = s2), l2 = i.number.int({ min: n2, max: o2 }), e2 = e2.slice(0, c2.index) + c2[1].repeat(l2) + e2.slice(c2.index + c2[0].length), c2 = r2.exec(e2);
|
|
14354
14377
|
for (c2 = t2.exec(e2); c2 != null; ) l2 = Number.parseInt(c2[2]), e2 = e2.slice(0, c2.index) + c2[1].repeat(l2) + e2.slice(c2.index + c2[0].length), c2 = t2.exec(e2);
|
|
14355
14378
|
for (c2 = a2.exec(e2); c2 != null; ) n2 = Number.parseInt(c2[1]), o2 = Number.parseInt(c2[2]), n2 > o2 && (s2 = o2, o2 = n2, n2 = s2), e2 = e2.slice(0, c2.index) + i.number.int({ min: n2, max: o2 }).toString() + e2.slice(c2.index + c2[0].length), c2 = a2.exec(e2);
|
|
14356
14379
|
return e2;
|
|
14357
14380
|
}
|
|
14358
|
-
function
|
|
14381
|
+
function Se(i, e2 = "", r2 = "#") {
|
|
14359
14382
|
let t2 = "";
|
|
14360
14383
|
for (let a2 = 0; a2 < e2.length; a2++) e2.charAt(a2) === r2 ? t2 += i.number.int(9) : e2.charAt(a2) === "!" ? t2 += i.number.int({ min: 2, max: 9 }) : t2 += e2.charAt(a2);
|
|
14361
14384
|
return t2;
|
|
@@ -14370,8 +14393,8 @@ var v = class extends x$1 {
|
|
|
14370
14393
|
return t2;
|
|
14371
14394
|
}
|
|
14372
14395
|
replaceCreditCardSymbols(e2 = "6453-####-####-####-###L", r2 = "#") {
|
|
14373
|
-
e2 =
|
|
14374
|
-
let t2 =
|
|
14396
|
+
e2 = Hr(this.faker, e2), e2 = Se(this.faker, e2, r2);
|
|
14397
|
+
let t2 = He(e2);
|
|
14375
14398
|
return e2.replace("L", String(t2));
|
|
14376
14399
|
}
|
|
14377
14400
|
fromRegExp(e2) {
|
|
@@ -14381,25 +14404,25 @@ var v = class extends x$1 {
|
|
|
14381
14404
|
let t2, a2, n2, o2 = /([.A-Za-z0-9])(?:\{(\d+)(?:,(\d+)|)\}|(\?|\*|\+))(?![^[]*]|[^{]*})/, s2 = o2.exec(e2);
|
|
14382
14405
|
for (; s2 != null; ) {
|
|
14383
14406
|
let f2 = s2[2], g2 = s2[3], b2 = s2[4];
|
|
14384
|
-
n2 =
|
|
14407
|
+
n2 = Ve(this.faker, b2, f2, g2);
|
|
14385
14408
|
let y2;
|
|
14386
14409
|
s2[1] === "." ? y2 = this.faker.string.alphanumeric(n2) : r2 ? y2 = this.faker.string.fromCharacters([s2[1].toLowerCase(), s2[1].toUpperCase()], n2) : y2 = s2[1].repeat(n2), e2 = e2.slice(0, s2.index) + y2 + e2.slice(s2.index + s2[0].length), s2 = o2.exec(e2);
|
|
14387
14410
|
}
|
|
14388
14411
|
let l2 = /(\d-\d|\w-\w|\d|\w|[-!@#$&()`.+,/"])/, c2 = /\[(\^|)(-|)(.+?)\](?:\{(\d+)(?:,(\d+)|)\}|(\?|\*|\+)|)/;
|
|
14389
14412
|
for (s2 = c2.exec(e2); s2 != null; ) {
|
|
14390
|
-
let f2 = s2[1] === "^", g2 = s2[2] === "-", b2 = s2[4], y2 = s2[5], N2 = s2[6], k2 = [],
|
|
14413
|
+
let f2 = s2[1] === "^", g2 = s2[2] === "-", b2 = s2[4], y2 = s2[5], N2 = s2[6], k2 = [], F2 = s2[3], C2 = l2.exec(F2);
|
|
14391
14414
|
for (g2 && k2.push(45); C2 != null; ) {
|
|
14392
14415
|
if (C2[0].includes("-")) {
|
|
14393
14416
|
let E2 = C2[0].split("-").map((d2) => d2.codePointAt(0) ?? Number.NaN);
|
|
14394
14417
|
if (t2 = E2[0], a2 = E2[1], t2 > a2) throw new m("Character range provided is out of order.");
|
|
14395
14418
|
for (let d2 = t2; d2 <= a2; d2++) if (r2 && Number.isNaN(Number(String.fromCodePoint(d2)))) {
|
|
14396
|
-
let
|
|
14397
|
-
k2.push(
|
|
14419
|
+
let Ce2 = String.fromCodePoint(d2);
|
|
14420
|
+
k2.push(Ce2.toUpperCase().codePointAt(0) ?? Number.NaN, Ce2.toLowerCase().codePointAt(0) ?? Number.NaN);
|
|
14398
14421
|
} else k2.push(d2);
|
|
14399
14422
|
} else r2 && Number.isNaN(Number(C2[0])) ? k2.push(C2[0].toUpperCase().codePointAt(0) ?? Number.NaN, C2[0].toLowerCase().codePointAt(0) ?? Number.NaN) : k2.push(C2[0].codePointAt(0) ?? Number.NaN);
|
|
14400
|
-
|
|
14423
|
+
F2 = F2.substring(C2[0].length), C2 = l2.exec(F2);
|
|
14401
14424
|
}
|
|
14402
|
-
if (n2 =
|
|
14425
|
+
if (n2 = Ve(this.faker, N2, b2, y2), f2) {
|
|
14403
14426
|
let E2 = -1;
|
|
14404
14427
|
for (let d2 = 48; d2 <= 57; d2++) {
|
|
14405
14428
|
if (E2 = k2.indexOf(d2), E2 > -1) {
|
|
@@ -14423,8 +14446,8 @@ var v = class extends x$1 {
|
|
|
14423
14446
|
k2.push(d2);
|
|
14424
14447
|
}
|
|
14425
14448
|
}
|
|
14426
|
-
let
|
|
14427
|
-
e2 = e2.slice(0, s2.index) +
|
|
14449
|
+
let kr2 = this.multiple(() => String.fromCodePoint(this.arrayElement(k2)), { count: n2 }).join("");
|
|
14450
|
+
e2 = e2.slice(0, s2.index) + kr2 + e2.slice(s2.index + s2[0].length), s2 = c2.exec(e2);
|
|
14428
14451
|
}
|
|
14429
14452
|
let u2 = /(.)\{(\d+),(\d+)\}/;
|
|
14430
14453
|
for (s2 = u2.exec(e2); s2 != null; ) {
|
|
@@ -14514,7 +14537,7 @@ var v = class extends x$1 {
|
|
|
14514
14537
|
let t2 = this.rangeToNumber(r2.count ?? 3);
|
|
14515
14538
|
return t2 <= 0 ? [] : Array.from({ length: t2 }, e2);
|
|
14516
14539
|
}
|
|
14517
|
-
},
|
|
14540
|
+
}, W = class extends v {
|
|
14518
14541
|
constructor(r2) {
|
|
14519
14542
|
super(r2);
|
|
14520
14543
|
this.faker = r2;
|
|
@@ -14523,11 +14546,105 @@ var v = class extends x$1 {
|
|
|
14523
14546
|
r2 = typeof r2 == "string" ? r2 : this.arrayElement(r2);
|
|
14524
14547
|
let t2 = r2.search(/{{[a-z]/), a2 = r2.indexOf("}}", t2);
|
|
14525
14548
|
if (t2 === -1 || a2 === -1) return r2;
|
|
14526
|
-
let o2 = r2.substring(t2 + 2, a2 + 2).replace("}}", "").replace("{{", ""), s2 =
|
|
14549
|
+
let o2 = r2.substring(t2 + 2, a2 + 2).replace("}}", "").replace("{{", ""), s2 = je(o2, this.faker), l2 = String(s2), c2 = r2.substring(0, t2) + l2 + r2.substring(a2 + 2);
|
|
14527
14550
|
return this.fake(c2);
|
|
14528
14551
|
}
|
|
14529
14552
|
};
|
|
14530
|
-
var
|
|
14553
|
+
var $ = class extends x$1 {
|
|
14554
|
+
latitude(e2 = {}) {
|
|
14555
|
+
let { max: r2 = 90, min: t2 = -90, precision: a2 = 4 } = e2;
|
|
14556
|
+
return this.faker.number.float({ min: t2, max: r2, fractionDigits: a2 });
|
|
14557
|
+
}
|
|
14558
|
+
longitude(e2 = {}) {
|
|
14559
|
+
let { max: r2 = 180, min: t2 = -180, precision: a2 = 4 } = e2;
|
|
14560
|
+
return this.faker.number.float({ max: r2, min: t2, fractionDigits: a2 });
|
|
14561
|
+
}
|
|
14562
|
+
nearbyGPSCoordinate(e2 = {}) {
|
|
14563
|
+
let { origin: r2, radius: t2 = 10, isMetric: a2 = false } = e2;
|
|
14564
|
+
if (r2 == null) return [this.latitude(), this.longitude()];
|
|
14565
|
+
let n2 = this.faker.number.float({ max: 2 * Math.PI, fractionDigits: 5 }), o2 = a2 ? t2 : t2 * 1.60934, l2 = this.faker.number.float({ max: o2, fractionDigits: 3 }) * 0.995, c2 = 4e4 / 360, u2 = l2 / c2, h2 = [r2[0] + Math.sin(n2) * u2, r2[1] + Math.cos(n2) * u2];
|
|
14566
|
+
return h2[0] = h2[0] % 180, (h2[0] < -90 || h2[0] > 90) && (h2[0] = Math.sign(h2[0]) * 180 - h2[0], h2[1] += 180), h2[1] = (h2[1] % 360 + 540) % 360 - 180, [h2[0], h2[1]];
|
|
14567
|
+
}
|
|
14568
|
+
}, Y = class extends $ {
|
|
14569
|
+
constructor(r2) {
|
|
14570
|
+
super(r2);
|
|
14571
|
+
this.faker = r2;
|
|
14572
|
+
}
|
|
14573
|
+
zipCode(r2 = {}) {
|
|
14574
|
+
typeof r2 == "string" && (r2 = { format: r2 });
|
|
14575
|
+
let { state: t2 } = r2;
|
|
14576
|
+
if (t2 != null) {
|
|
14577
|
+
let n2 = this.faker.definitions.location.postcode_by_state[t2];
|
|
14578
|
+
if (n2 == null) throw new m(`No zip code definition found for state "${t2}"`);
|
|
14579
|
+
return this.faker.helpers.fake(n2);
|
|
14580
|
+
}
|
|
14581
|
+
let { format: a2 = this.faker.definitions.location.postcode } = r2;
|
|
14582
|
+
return typeof a2 == "string" && (a2 = [a2]), a2 = this.faker.helpers.arrayElement(a2), this.faker.helpers.replaceSymbols(a2);
|
|
14583
|
+
}
|
|
14584
|
+
city() {
|
|
14585
|
+
return this.faker.helpers.fake(this.faker.definitions.location.city_pattern);
|
|
14586
|
+
}
|
|
14587
|
+
buildingNumber() {
|
|
14588
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.building_number).replaceAll(/#+/g, (r2) => this.faker.string.numeric({ length: r2.length, allowLeadingZeros: false }));
|
|
14589
|
+
}
|
|
14590
|
+
street() {
|
|
14591
|
+
return this.faker.helpers.fake(this.faker.definitions.location.street_pattern);
|
|
14592
|
+
}
|
|
14593
|
+
streetAddress(r2 = {}) {
|
|
14594
|
+
typeof r2 == "boolean" && (r2 = { useFullAddress: r2 });
|
|
14595
|
+
let { useFullAddress: t2 } = r2, n2 = this.faker.definitions.location.street_address[t2 ? "full" : "normal"];
|
|
14596
|
+
return this.faker.helpers.fake(n2);
|
|
14597
|
+
}
|
|
14598
|
+
secondaryAddress() {
|
|
14599
|
+
return this.faker.helpers.fake(this.faker.definitions.location.secondary_address).replaceAll(/#+/g, (r2) => this.faker.string.numeric({ length: r2.length, allowLeadingZeros: false }));
|
|
14600
|
+
}
|
|
14601
|
+
county() {
|
|
14602
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.county);
|
|
14603
|
+
}
|
|
14604
|
+
country() {
|
|
14605
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.country);
|
|
14606
|
+
}
|
|
14607
|
+
continent() {
|
|
14608
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.continent);
|
|
14609
|
+
}
|
|
14610
|
+
countryCode(r2 = {}) {
|
|
14611
|
+
typeof r2 == "string" && (r2 = { variant: r2 });
|
|
14612
|
+
let { variant: t2 = "alpha-2" } = r2, a2 = (() => {
|
|
14613
|
+
switch (t2) {
|
|
14614
|
+
case "numeric":
|
|
14615
|
+
return "numeric";
|
|
14616
|
+
case "alpha-3":
|
|
14617
|
+
return "alpha3";
|
|
14618
|
+
case "alpha-2":
|
|
14619
|
+
return "alpha2";
|
|
14620
|
+
}
|
|
14621
|
+
})();
|
|
14622
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.country_code)[a2];
|
|
14623
|
+
}
|
|
14624
|
+
state(r2 = {}) {
|
|
14625
|
+
let { abbreviated: t2 = false } = r2, a2 = t2 ? this.faker.definitions.location.state_abbr : this.faker.definitions.location.state;
|
|
14626
|
+
return this.faker.helpers.arrayElement(a2);
|
|
14627
|
+
}
|
|
14628
|
+
direction(r2 = {}) {
|
|
14629
|
+
let { abbreviated: t2 = false } = r2;
|
|
14630
|
+
return t2 ? this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal_abbr, ...this.faker.definitions.location.direction.ordinal_abbr]) : this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal, ...this.faker.definitions.location.direction.ordinal]);
|
|
14631
|
+
}
|
|
14632
|
+
cardinalDirection(r2 = {}) {
|
|
14633
|
+
let { abbreviated: t2 = false } = r2;
|
|
14634
|
+
return t2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal);
|
|
14635
|
+
}
|
|
14636
|
+
ordinalDirection(r2 = {}) {
|
|
14637
|
+
let { abbreviated: t2 = false } = r2;
|
|
14638
|
+
return t2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal);
|
|
14639
|
+
}
|
|
14640
|
+
timeZone() {
|
|
14641
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.time_zone);
|
|
14642
|
+
}
|
|
14643
|
+
language() {
|
|
14644
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.language);
|
|
14645
|
+
}
|
|
14646
|
+
};
|
|
14647
|
+
var Z = class extends x$1 {
|
|
14531
14648
|
int(e2 = {}) {
|
|
14532
14649
|
typeof e2 == "number" && (e2 = { max: e2 });
|
|
14533
14650
|
let { min: r2 = 0, max: t2 = Number.MAX_SAFE_INTEGER, multipleOf: a2 = 1 } = e2;
|
|
@@ -14591,16 +14708,16 @@ var W = class extends x$1 {
|
|
|
14591
14708
|
return l2;
|
|
14592
14709
|
}
|
|
14593
14710
|
};
|
|
14594
|
-
var
|
|
14595
|
-
function
|
|
14711
|
+
var Me = "0123456789ABCDEFGHJKMNPQRSTVWXYZ";
|
|
14712
|
+
function ze(i) {
|
|
14596
14713
|
let e2 = i.valueOf(), r2 = "";
|
|
14597
14714
|
for (let t2 = 10; t2 > 0; t2--) {
|
|
14598
14715
|
let a2 = e2 % 32;
|
|
14599
|
-
r2 =
|
|
14716
|
+
r2 = Me[a2] + r2, e2 = (e2 - a2) / 32;
|
|
14600
14717
|
}
|
|
14601
14718
|
return r2;
|
|
14602
14719
|
}
|
|
14603
|
-
var
|
|
14720
|
+
var J = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], X = [..."abcdefghijklmnopqrstuvwxyz"], We = [..."0123456789"], Q = class extends x$1 {
|
|
14604
14721
|
fromCharacters(e2, r2 = 1) {
|
|
14605
14722
|
if (r2 = this.faker.helpers.rangeToNumber(r2), r2 <= 0) return "";
|
|
14606
14723
|
if (typeof e2 == "string" && (e2 = [...e2]), e2.length === 0) throw new m("Unable to generate string: No characters to select from.");
|
|
@@ -14615,15 +14732,15 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14615
14732
|
let n2;
|
|
14616
14733
|
switch (t2) {
|
|
14617
14734
|
case "upper": {
|
|
14618
|
-
n2 = [...
|
|
14735
|
+
n2 = [...J];
|
|
14619
14736
|
break;
|
|
14620
14737
|
}
|
|
14621
14738
|
case "lower": {
|
|
14622
|
-
n2 = [...
|
|
14739
|
+
n2 = [...X];
|
|
14623
14740
|
break;
|
|
14624
14741
|
}
|
|
14625
14742
|
case "mixed": {
|
|
14626
|
-
n2 = [...
|
|
14743
|
+
n2 = [...X, ...J];
|
|
14627
14744
|
break;
|
|
14628
14745
|
}
|
|
14629
14746
|
}
|
|
@@ -14635,18 +14752,18 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14635
14752
|
if (r2 <= 0) return "";
|
|
14636
14753
|
let { casing: t2 = "mixed" } = e2, { exclude: a2 = [] } = e2;
|
|
14637
14754
|
typeof a2 == "string" && (a2 = [...a2]);
|
|
14638
|
-
let n2 = [...
|
|
14755
|
+
let n2 = [...We];
|
|
14639
14756
|
switch (t2) {
|
|
14640
14757
|
case "upper": {
|
|
14641
|
-
n2.push(...
|
|
14758
|
+
n2.push(...J);
|
|
14642
14759
|
break;
|
|
14643
14760
|
}
|
|
14644
14761
|
case "lower": {
|
|
14645
|
-
n2.push(...
|
|
14762
|
+
n2.push(...X);
|
|
14646
14763
|
break;
|
|
14647
14764
|
}
|
|
14648
14765
|
case "mixed": {
|
|
14649
|
-
n2.push(...
|
|
14766
|
+
n2.push(...X, ...J);
|
|
14650
14767
|
break;
|
|
14651
14768
|
}
|
|
14652
14769
|
}
|
|
@@ -14672,7 +14789,7 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14672
14789
|
if (r2 <= 0) return "";
|
|
14673
14790
|
let { allowLeadingZeros: t2 = true } = e2, { exclude: a2 = [] } = e2;
|
|
14674
14791
|
typeof a2 == "string" && (a2 = [...a2]);
|
|
14675
|
-
let n2 =
|
|
14792
|
+
let n2 = We.filter((s2) => !a2.includes(s2));
|
|
14676
14793
|
if (n2.length === 0 || n2.length === 1 && !t2 && n2[0] === "0") throw new m("Unable to generate numeric string, because all possible digits are excluded.");
|
|
14677
14794
|
let o2 = "";
|
|
14678
14795
|
return !t2 && !a2.includes("0") && (o2 += this.faker.helpers.arrayElement(n2.filter((s2) => s2 !== "0"))), o2 += this.fromCharacters(n2, r2 - o2.length), o2;
|
|
@@ -14688,7 +14805,7 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14688
14805
|
}
|
|
14689
14806
|
ulid(e2 = {}) {
|
|
14690
14807
|
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = S(r2);
|
|
14691
|
-
return
|
|
14808
|
+
return ze(t2) + this.fromCharacters(Me, 16);
|
|
14692
14809
|
}
|
|
14693
14810
|
nanoid(e2 = 21) {
|
|
14694
14811
|
if (e2 = this.faker.helpers.rangeToNumber(e2), e2 <= 0) return "";
|
|
@@ -14703,17 +14820,18 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14703
14820
|
return this.fromCharacters(["!", '"', "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/", ":", ";", "<", "=", ">", "?", "@", "[", "\\", "]", "^", "_", "`", "{", "|", "}", "~"], e2);
|
|
14704
14821
|
}
|
|
14705
14822
|
};
|
|
14706
|
-
var
|
|
14823
|
+
var I = class {
|
|
14707
14824
|
constructor(e2 = {}) {
|
|
14708
14825
|
__publicField(this, "_defaultRefDate", () => /* @__PURE__ */ new Date());
|
|
14709
14826
|
__publicField(this, "_randomizer");
|
|
14710
|
-
__publicField(this, "datatype", new
|
|
14827
|
+
__publicField(this, "datatype", new j(this));
|
|
14711
14828
|
__publicField(this, "date", new B(this));
|
|
14712
14829
|
__publicField(this, "helpers", new v(this));
|
|
14713
|
-
__publicField(this, "
|
|
14714
|
-
__publicField(this, "
|
|
14830
|
+
__publicField(this, "location", new $(this));
|
|
14831
|
+
__publicField(this, "number", new Z(this));
|
|
14832
|
+
__publicField(this, "string", new Q(this));
|
|
14715
14833
|
let { randomizer: r2, seed: t2 } = e2;
|
|
14716
|
-
r2 != null && t2 != null && r2.seed(t2), this._randomizer = r2 ??
|
|
14834
|
+
r2 != null && t2 != null && r2.seed(t2), this._randomizer = r2 ?? Ue(t2);
|
|
14717
14835
|
}
|
|
14718
14836
|
get defaultRefDate() {
|
|
14719
14837
|
return this._defaultRefDate;
|
|
@@ -14725,8 +14843,8 @@ var $ = class {
|
|
|
14725
14843
|
return this._randomizer.seed(e2), e2;
|
|
14726
14844
|
}
|
|
14727
14845
|
};
|
|
14728
|
-
new
|
|
14729
|
-
function
|
|
14846
|
+
new I();
|
|
14847
|
+
function Ye(i) {
|
|
14730
14848
|
let e2 = {};
|
|
14731
14849
|
for (let r2 of i) for (let t2 in r2) {
|
|
14732
14850
|
let a2 = r2[t2];
|
|
@@ -14734,7 +14852,7 @@ function We(i) {
|
|
|
14734
14852
|
}
|
|
14735
14853
|
return e2;
|
|
14736
14854
|
}
|
|
14737
|
-
var
|
|
14855
|
+
var q = class extends p {
|
|
14738
14856
|
dog() {
|
|
14739
14857
|
return this.faker.helpers.arrayElement(this.faker.definitions.animal.dog);
|
|
14740
14858
|
}
|
|
@@ -14784,7 +14902,7 @@ var X = class extends p {
|
|
|
14784
14902
|
return this.faker.helpers.arrayElement(this.faker.definitions.animal.pet_name);
|
|
14785
14903
|
}
|
|
14786
14904
|
};
|
|
14787
|
-
var
|
|
14905
|
+
var ee = class extends p {
|
|
14788
14906
|
author() {
|
|
14789
14907
|
return this.faker.helpers.arrayElement(this.faker.definitions.book.author);
|
|
14790
14908
|
}
|
|
@@ -14804,7 +14922,7 @@ var Q = class extends p {
|
|
|
14804
14922
|
return this.faker.helpers.arrayElement(this.faker.definitions.book.title);
|
|
14805
14923
|
}
|
|
14806
14924
|
};
|
|
14807
|
-
var
|
|
14925
|
+
var Vr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999, 4], [6389999, 3], [6397999, 4], [6399999, 7], [6449999, 3], [6459999, 7], [6479999, 3], [6489999, 7], [6549999, 3], [6559999, 4], [6999999, 3], [8499999, 4], [8999999, 5], [9499999, 6], [9999999, 7]], 1: [[99999, 3], [299999, 2], [349999, 3], [399999, 4], [499999, 3], [699999, 2], [999999, 4], [3979999, 3], [5499999, 4], [6499999, 5], [6799999, 4], [6859999, 5], [7139999, 4], [7169999, 3], [7319999, 4], [7399999, 7], [7749999, 5], [7753999, 7], [7763999, 5], [7764999, 7], [7769999, 5], [7782999, 7], [7899999, 5], [7999999, 4], [8004999, 5], [8049999, 5], [8379999, 5], [8384999, 7], [8671999, 5], [8675999, 4], [8697999, 5], [9159999, 6], [9165059, 7], [9168699, 6], [9169079, 7], [9195999, 6], [9196549, 7], [9729999, 6], [9877999, 4], [9911499, 6], [9911999, 7], [9989899, 6], [9999999, 7]] }, re$1 = class re extends p {
|
|
14808
14926
|
department() {
|
|
14809
14927
|
return this.faker.helpers.arrayElement(this.faker.definitions.commerce.department);
|
|
14810
14928
|
}
|
|
@@ -14835,7 +14953,7 @@ var Hr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999,
|
|
|
14835
14953
|
isbn(e2 = {}) {
|
|
14836
14954
|
var _a2;
|
|
14837
14955
|
typeof e2 == "number" && (e2 = { variant: e2 });
|
|
14838
|
-
let { variant: r2 = 13, separator: t2 = "-" } = e2, a2 = "978", [n2, o2] = this.faker.helpers.objectEntry(
|
|
14956
|
+
let { variant: r2 = 13, separator: t2 = "-" } = e2, a2 = "978", [n2, o2] = this.faker.helpers.objectEntry(Vr), s2 = this.faker.string.numeric(8), l2 = Number.parseInt(s2.slice(0, -1)), c2 = (_a2 = o2.find(([y2]) => l2 <= y2)) == null ? void 0 : _a2[1];
|
|
14839
14957
|
if (!c2) throw new m(`Unable to find a registrant length for the group ${n2}`);
|
|
14840
14958
|
let u2 = s2.slice(0, c2), h2 = s2.slice(c2), f2 = [a2, n2, u2, h2];
|
|
14841
14959
|
r2 === 10 && f2.shift();
|
|
@@ -14847,7 +14965,7 @@ var Hr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999,
|
|
|
14847
14965
|
return b2 = r2 === 10 ? b2 % 11 : (10 - b2 % 10) % 10, f2.push(b2 === 10 ? "X" : b2.toString()), f2.join(t2);
|
|
14848
14966
|
}
|
|
14849
14967
|
};
|
|
14850
|
-
var
|
|
14968
|
+
var te$1 = class te extends p {
|
|
14851
14969
|
name() {
|
|
14852
14970
|
return this.faker.helpers.fake(this.faker.definitions.company.name_pattern);
|
|
14853
14971
|
}
|
|
@@ -14876,7 +14994,7 @@ var ee = class extends p {
|
|
|
14876
14994
|
return this.faker.helpers.arrayElement(this.faker.definitions.company.buzz_noun);
|
|
14877
14995
|
}
|
|
14878
14996
|
};
|
|
14879
|
-
var
|
|
14997
|
+
var ae = class extends p {
|
|
14880
14998
|
column() {
|
|
14881
14999
|
return this.faker.helpers.arrayElement(this.faker.definitions.database.column);
|
|
14882
15000
|
}
|
|
@@ -14893,17 +15011,17 @@ var re$1 = class re extends p {
|
|
|
14893
15011
|
return this.faker.string.hexadecimal({ length: 24, casing: "lower", prefix: "" });
|
|
14894
15012
|
}
|
|
14895
15013
|
};
|
|
14896
|
-
var Vr = { alpha: ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"], formats: [{ country: "AL", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "ALkk bbbs sssx cccc cccc cccc cccc" }, { country: "AD", total: 24, bban: [{ type: "n", count: 8 }, { type: "c", count: 12 }], format: "ADkk bbbb ssss cccc cccc cccc" }, { country: "AT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "ATkk bbbb bccc cccc cccc" }, { country: "AZ", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "AZkk bbbb cccc cccc cccc cccc cccc" }, { country: "BH", total: 22, bban: [{ type: "a", count: 4 }, { type: "c", count: 14 }], format: "BHkk bbbb cccc cccc cccc cc" }, { country: "BE", total: 16, bban: [{ type: "n", count: 3 }, { type: "n", count: 9 }], format: "BEkk bbbc cccc ccxx" }, { country: "BA", total: 20, bban: [{ type: "n", count: 6 }, { type: "n", count: 10 }], format: "BAkk bbbs sscc cccc ccxx" }, { country: "BR", total: 29, bban: [{ type: "n", count: 13 }, { type: "n", count: 10 }, { type: "a", count: 1 }, { type: "c", count: 1 }], format: "BRkk bbbb bbbb ssss sccc cccc ccct n" }, { country: "BG", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "c", count: 8 }], format: "BGkk bbbb ssss ddcc cccc cc" }, { country: "CR", total: 22, bban: [{ type: "n", count: 1 }, { type: "n", count: 3 }, { type: "n", count: 14 }], format: "CRkk xbbb cccc cccc cccc cc" }, { country: "HR", total: 21, bban: [{ type: "n", count: 7 }, { type: "n", count: 10 }], format: "HRkk bbbb bbbc cccc cccc c" }, { country: "CY", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "CYkk bbbs ssss cccc cccc cccc cccc" }, { country: "CZ", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "CZkk bbbb ssss sscc cccc cccc" }, { country: "DK", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "DKkk bbbb cccc cccc cc" }, { country: "DO", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "DOkk bbbb cccc cccc cccc cccc cccc" }, { country: "TL", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "TLkk bbbc cccc cccc cccc cxx" }, { country: "EE", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "EEkk bbss cccc cccc cccx" }, { country: "FO", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "FOkk bbbb cccc cccc cx" }, { country: "FI", total: 18, bban: [{ type: "n", count: 6 }, { type: "n", count: 8 }], format: "FIkk bbbb bbcc cccc cx" }, { country: "FR", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "FRkk bbbb bggg ggcc cccc cccc cxx" }, { country: "GE", total: 22, bban: [{ type: "a", count: 2 }, { type: "n", count: 16 }], format: "GEkk bbcc cccc cccc cccc cc" }, { country: "DE", total: 22, bban: [{ type: "n", count: 8 }, { type: "n", count: 10 }], format: "DEkk bbbb bbbb cccc cccc cc" }, { country: "GI", total: 23, bban: [{ type: "a", count: 4 }, { type: "c", count: 15 }], format: "GIkk bbbb cccc cccc cccc ccc" }, { country: "GR", total: 27, bban: [{ type: "n", count: 7 }, { type: "c", count: 16 }], format: "GRkk bbbs sssc cccc cccc cccc ccc" }, { country: "GL", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "GLkk bbbb cccc cccc cc" }, { country: "GT", total: 28, bban: [{ type: "c", count: 4 }, { type: "c", count: 4 }, { type: "c", count: 16 }], format: "GTkk bbbb mmtt cccc cccc cccc cccc" }, { country: "HU", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "HUkk bbbs sssk cccc cccc cccc cccx" }, { country: "IS", total: 26, bban: [{ type: "n", count: 6 }, { type: "n", count: 16 }], format: "ISkk bbbb sscc cccc iiii iiii ii" }, { country: "IE", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "IEkk aaaa bbbb bbcc cccc cc" }, { country: "IL", total: 23, bban: [{ type: "n", count: 6 }, { type: "n", count: 13 }], format: "ILkk bbbn nncc cccc cccc ccc" }, { country: "IT", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "ITkk xaaa aabb bbbc cccc cccc ccc" }, { country: "JO", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 18 }], format: "JOkk bbbb nnnn cccc cccc cccc cccc cc" }, { country: "KZ", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "KZkk bbbc cccc cccc cccc" }, { country: "XK", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "XKkk bbbb cccc cccc cccc" }, { country: "KW", total: 30, bban: [{ type: "a", count: 4 }, { type: "c", count: 22 }], format: "KWkk bbbb cccc cccc cccc cccc cccc cc" }, { country: "LV", total: 21, bban: [{ type: "a", count: 4 }, { type: "c", count: 13 }], format: "LVkk bbbb cccc cccc cccc c" }, { country: "LB", total: 28, bban: [{ type: "n", count: 4 }, { type: "c", count: 20 }], format: "LBkk bbbb cccc cccc cccc cccc cccc" }, { country: "LI", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "LIkk bbbb bccc cccc cccc c" }, { country: "LT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "LTkk bbbb bccc cccc cccc" }, { country: "LU", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "LUkk bbbc cccc cccc cccc" }, { country: "MK", total: 19, bban: [{ type: "n", count: 3 }, { type: "c", count: 10 }, { type: "n", count: 2 }], format: "MKkk bbbc cccc cccc cxx" }, { country: "MT", total: 31, bban: [{ type: "a", count: 4 }, { type: "n", count: 5 }, { type: "c", count: 18 }], format: "MTkk bbbb ssss sccc cccc cccc cccc ccc" }, { country: "MR", total: 27, bban: [{ type: "n", count: 10 }, { type: "n", count: 13 }], format: "MRkk bbbb bsss sscc cccc cccc cxx" }, { country: "MU", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 15 }, { type: "a", count: 3 }], format: "MUkk bbbb bbss cccc cccc cccc 000d dd" }, { country: "MC", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "MCkk bbbb bsss sscc cccc cccc cxx" }, { country: "MD", total: 24, bban: [{ type: "c", count: 2 }, { type: "c", count: 18 }], format: "MDkk bbcc cccc cccc cccc cccc" }, { country: "ME", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "MEkk bbbc cccc cccc cccc xx" }, { country: "NL", total: 18, bban: [{ type: "a", count: 4 }, { type: "n", count: 10 }], format: "NLkk bbbb cccc cccc cc" }, { country: "NO", total: 15, bban: [{ type: "n", count: 4 }, { type: "n", count: 7 }], format: "NOkk bbbb cccc ccx" }, { country: "PK", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "PKkk bbbb cccc cccc cccc cccc" }, { country: "PS", total: 29, bban: [{ type: "a", count: 4 }, { type: "n", count: 9 }, { type: "n", count: 12 }], format: "PSkk bbbb xxxx xxxx xccc cccc cccc c" }, { country: "PL", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "PLkk bbbs sssx cccc cccc cccc cccc" }, { country: "PT", total: 25, bban: [{ type: "n", count: 8 }, { type: "n", count: 13 }], format: "PTkk bbbb ssss cccc cccc cccx x" }, { country: "QA", total: 29, bban: [{ type: "a", count: 4 }, { type: "c", count: 21 }], format: "QAkk bbbb cccc cccc cccc cccc cccc c" }, { country: "RO", total: 24, bban: [{ type: "a", count: 4 }, { type: "c", count: 16 }], format: "ROkk bbbb cccc cccc cccc cccc" }, { country: "SM", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "SMkk xaaa aabb bbbc cccc cccc ccc" }, { country: "SA", total: 24, bban: [{ type: "n", count: 2 }, { type: "c", count: 18 }], format: "SAkk bbcc cccc cccc cccc cccc" }, { country: "RS", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "RSkk bbbc cccc cccc cccc xx" }, { country: "SK", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "SKkk bbbb ssss sscc cccc cccc" }, { country: "SI", total: 19, bban: [{ type: "n", count: 5 }, { type: "n", count: 10 }], format: "SIkk bbss sccc cccc cxx" }, { country: "ES", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "ESkk bbbb gggg xxcc cccc cccc" }, { country: "SE", total: 24, bban: [{ type: "n", count: 3 }, { type: "n", count: 17 }], format: "SEkk bbbc cccc cccc cccc cccc" }, { country: "CH", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "CHkk bbbb bccc cccc cccc c" }, { country: "TN", total: 24, bban: [{ type: "n", count: 5 }, { type: "n", count: 15 }], format: "TNkk bbss sccc cccc cccc cccc" }, { country: "TR", total: 26, bban: [{ type: "n", count: 5 }, { type: "n", count: 1 }, { type: "n", count: 16 }], format: "TRkk bbbb bxcc cccc cccc cccc cc" }, { country: "AE", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "AEkk bbbc cccc cccc cccc ccc" }, { country: "GB", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "GBkk bbbb ssss sscc cccc cc" }, { country: "VG", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "VGkk bbbb cccc cccc cccc cccc" }], iso3166: ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "XK", "YE", "YT", "ZA", "ZM", "ZW"], mod97: (i) => {
|
|
15014
|
+
var zr = { alpha: ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"], formats: [{ country: "AL", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "ALkk bbbs sssx cccc cccc cccc cccc" }, { country: "AD", total: 24, bban: [{ type: "n", count: 8 }, { type: "c", count: 12 }], format: "ADkk bbbb ssss cccc cccc cccc" }, { country: "AT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "ATkk bbbb bccc cccc cccc" }, { country: "AZ", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "AZkk bbbb cccc cccc cccc cccc cccc" }, { country: "BH", total: 22, bban: [{ type: "a", count: 4 }, { type: "c", count: 14 }], format: "BHkk bbbb cccc cccc cccc cc" }, { country: "BE", total: 16, bban: [{ type: "n", count: 3 }, { type: "n", count: 9 }], format: "BEkk bbbc cccc ccxx" }, { country: "BA", total: 20, bban: [{ type: "n", count: 6 }, { type: "n", count: 10 }], format: "BAkk bbbs sscc cccc ccxx" }, { country: "BR", total: 29, bban: [{ type: "n", count: 13 }, { type: "n", count: 10 }, { type: "a", count: 1 }, { type: "c", count: 1 }], format: "BRkk bbbb bbbb ssss sccc cccc ccct n" }, { country: "BG", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "c", count: 8 }], format: "BGkk bbbb ssss ddcc cccc cc" }, { country: "CR", total: 22, bban: [{ type: "n", count: 1 }, { type: "n", count: 3 }, { type: "n", count: 14 }], format: "CRkk xbbb cccc cccc cccc cc" }, { country: "HR", total: 21, bban: [{ type: "n", count: 7 }, { type: "n", count: 10 }], format: "HRkk bbbb bbbc cccc cccc c" }, { country: "CY", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "CYkk bbbs ssss cccc cccc cccc cccc" }, { country: "CZ", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "CZkk bbbb ssss sscc cccc cccc" }, { country: "DK", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "DKkk bbbb cccc cccc cc" }, { country: "DO", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "DOkk bbbb cccc cccc cccc cccc cccc" }, { country: "TL", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "TLkk bbbc cccc cccc cccc cxx" }, { country: "EE", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "EEkk bbss cccc cccc cccx" }, { country: "FO", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "FOkk bbbb cccc cccc cx" }, { country: "FI", total: 18, bban: [{ type: "n", count: 6 }, { type: "n", count: 8 }], format: "FIkk bbbb bbcc cccc cx" }, { country: "FR", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "FRkk bbbb bggg ggcc cccc cccc cxx" }, { country: "GE", total: 22, bban: [{ type: "a", count: 2 }, { type: "n", count: 16 }], format: "GEkk bbcc cccc cccc cccc cc" }, { country: "DE", total: 22, bban: [{ type: "n", count: 8 }, { type: "n", count: 10 }], format: "DEkk bbbb bbbb cccc cccc cc" }, { country: "GI", total: 23, bban: [{ type: "a", count: 4 }, { type: "c", count: 15 }], format: "GIkk bbbb cccc cccc cccc ccc" }, { country: "GR", total: 27, bban: [{ type: "n", count: 7 }, { type: "c", count: 16 }], format: "GRkk bbbs sssc cccc cccc cccc ccc" }, { country: "GL", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "GLkk bbbb cccc cccc cc" }, { country: "GT", total: 28, bban: [{ type: "c", count: 4 }, { type: "c", count: 4 }, { type: "c", count: 16 }], format: "GTkk bbbb mmtt cccc cccc cccc cccc" }, { country: "HU", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "HUkk bbbs sssk cccc cccc cccc cccx" }, { country: "IS", total: 26, bban: [{ type: "n", count: 6 }, { type: "n", count: 16 }], format: "ISkk bbbb sscc cccc iiii iiii ii" }, { country: "IE", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "IEkk aaaa bbbb bbcc cccc cc" }, { country: "IL", total: 23, bban: [{ type: "n", count: 6 }, { type: "n", count: 13 }], format: "ILkk bbbn nncc cccc cccc ccc" }, { country: "IT", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "ITkk xaaa aabb bbbc cccc cccc ccc" }, { country: "JO", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 18 }], format: "JOkk bbbb nnnn cccc cccc cccc cccc cc" }, { country: "KZ", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "KZkk bbbc cccc cccc cccc" }, { country: "XK", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "XKkk bbbb cccc cccc cccc" }, { country: "KW", total: 30, bban: [{ type: "a", count: 4 }, { type: "c", count: 22 }], format: "KWkk bbbb cccc cccc cccc cccc cccc cc" }, { country: "LV", total: 21, bban: [{ type: "a", count: 4 }, { type: "c", count: 13 }], format: "LVkk bbbb cccc cccc cccc c" }, { country: "LB", total: 28, bban: [{ type: "n", count: 4 }, { type: "c", count: 20 }], format: "LBkk bbbb cccc cccc cccc cccc cccc" }, { country: "LI", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "LIkk bbbb bccc cccc cccc c" }, { country: "LT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "LTkk bbbb bccc cccc cccc" }, { country: "LU", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "LUkk bbbc cccc cccc cccc" }, { country: "MK", total: 19, bban: [{ type: "n", count: 3 }, { type: "c", count: 10 }, { type: "n", count: 2 }], format: "MKkk bbbc cccc cccc cxx" }, { country: "MT", total: 31, bban: [{ type: "a", count: 4 }, { type: "n", count: 5 }, { type: "c", count: 18 }], format: "MTkk bbbb ssss sccc cccc cccc cccc ccc" }, { country: "MR", total: 27, bban: [{ type: "n", count: 10 }, { type: "n", count: 13 }], format: "MRkk bbbb bsss sscc cccc cccc cxx" }, { country: "MU", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 15 }, { type: "a", count: 3 }], format: "MUkk bbbb bbss cccc cccc cccc 000d dd" }, { country: "MC", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "MCkk bbbb bsss sscc cccc cccc cxx" }, { country: "MD", total: 24, bban: [{ type: "c", count: 2 }, { type: "c", count: 18 }], format: "MDkk bbcc cccc cccc cccc cccc" }, { country: "ME", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "MEkk bbbc cccc cccc cccc xx" }, { country: "NL", total: 18, bban: [{ type: "a", count: 4 }, { type: "n", count: 10 }], format: "NLkk bbbb cccc cccc cc" }, { country: "NO", total: 15, bban: [{ type: "n", count: 4 }, { type: "n", count: 7 }], format: "NOkk bbbb cccc ccx" }, { country: "PK", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "PKkk bbbb cccc cccc cccc cccc" }, { country: "PS", total: 29, bban: [{ type: "a", count: 4 }, { type: "n", count: 9 }, { type: "n", count: 12 }], format: "PSkk bbbb xxxx xxxx xccc cccc cccc c" }, { country: "PL", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "PLkk bbbs sssx cccc cccc cccc cccc" }, { country: "PT", total: 25, bban: [{ type: "n", count: 8 }, { type: "n", count: 13 }], format: "PTkk bbbb ssss cccc cccc cccx x" }, { country: "QA", total: 29, bban: [{ type: "a", count: 4 }, { type: "c", count: 21 }], format: "QAkk bbbb cccc cccc cccc cccc cccc c" }, { country: "RO", total: 24, bban: [{ type: "a", count: 4 }, { type: "c", count: 16 }], format: "ROkk bbbb cccc cccc cccc cccc" }, { country: "SM", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "SMkk xaaa aabb bbbc cccc cccc ccc" }, { country: "SA", total: 24, bban: [{ type: "n", count: 2 }, { type: "c", count: 18 }], format: "SAkk bbcc cccc cccc cccc cccc" }, { country: "RS", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "RSkk bbbc cccc cccc cccc xx" }, { country: "SK", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "SKkk bbbb ssss sscc cccc cccc" }, { country: "SI", total: 19, bban: [{ type: "n", count: 5 }, { type: "n", count: 10 }], format: "SIkk bbss sccc cccc cxx" }, { country: "ES", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "ESkk bbbb gggg xxcc cccc cccc" }, { country: "SE", total: 24, bban: [{ type: "n", count: 3 }, { type: "n", count: 17 }], format: "SEkk bbbc cccc cccc cccc cccc" }, { country: "CH", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "CHkk bbbb bccc cccc cccc c" }, { country: "TN", total: 24, bban: [{ type: "n", count: 5 }, { type: "n", count: 15 }], format: "TNkk bbss sccc cccc cccc cccc" }, { country: "TR", total: 26, bban: [{ type: "n", count: 5 }, { type: "n", count: 1 }, { type: "n", count: 16 }], format: "TRkk bbbb bxcc cccc cccc cccc cc" }, { country: "AE", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "AEkk bbbc cccc cccc cccc ccc" }, { country: "GB", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "GBkk bbbb ssss sscc cccc cc" }, { country: "VG", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "VGkk bbbb cccc cccc cccc cccc" }], iso3166: ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "XK", "YE", "YT", "ZA", "ZM", "ZW"], mod97: (i) => {
|
|
14897
15015
|
let e2 = 0;
|
|
14898
15016
|
for (let r2 of i) e2 = (e2 * 10 + +r2) % 97;
|
|
14899
15017
|
return e2;
|
|
14900
|
-
}, pattern10: ["01", "02", "03", "04", "05", "06", "07", "08", "09"], pattern100: ["001", "002", "003", "004", "005", "006", "007", "008", "009"], toDigitString: (i) => i.replaceAll(/[A-Z]/gi, (e2) => String((e2.toUpperCase().codePointAt(0) ?? Number.NaN) - 55)) }, M =
|
|
14901
|
-
function
|
|
15018
|
+
}, pattern10: ["01", "02", "03", "04", "05", "06", "07", "08", "09"], pattern100: ["001", "002", "003", "004", "005", "006", "007", "008", "009"], toDigitString: (i) => i.replaceAll(/[A-Z]/gi, (e2) => String((e2.toUpperCase().codePointAt(0) ?? Number.NaN) - 55)) }, M = zr;
|
|
15019
|
+
function Wr(i) {
|
|
14902
15020
|
let e2 = "";
|
|
14903
15021
|
for (let r2 = 0; r2 < i.length; r2 += 4) e2 += `${i.substring(r2, r2 + 4)} `;
|
|
14904
15022
|
return e2.trimEnd();
|
|
14905
15023
|
}
|
|
14906
|
-
var
|
|
15024
|
+
var ne = class extends p {
|
|
14907
15025
|
accountNumber(e2 = {}) {
|
|
14908
15026
|
typeof e2 == "number" && (e2 = { length: e2 });
|
|
14909
15027
|
let { length: r2 = 8 } = e2;
|
|
@@ -14949,7 +15067,7 @@ var te$1 = class te extends p {
|
|
|
14949
15067
|
return this.currency().numericCode;
|
|
14950
15068
|
}
|
|
14951
15069
|
bitcoinAddress(e2 = {}) {
|
|
14952
|
-
let { type: r2 = this.faker.helpers.enumValue(
|
|
15070
|
+
let { type: r2 = this.faker.helpers.enumValue(de), network: t2 = "mainnet" } = e2, a2 = ve[r2], n2 = a2.prefix[t2], o2 = this.faker.number.int(a2.length), s2 = this.faker.string.alphanumeric({ length: o2 - n2.length, casing: a2.casing, exclude: a2.exclude });
|
|
14953
15071
|
return n2 + s2;
|
|
14954
15072
|
}
|
|
14955
15073
|
litecoinAddress() {
|
|
@@ -14994,7 +15112,7 @@ var te$1 = class te extends p {
|
|
|
14994
15112
|
let s2 = 98 - M.mod97(M.toDigitString(`${n2}${a2.country}00`));
|
|
14995
15113
|
s2 < 10 && (s2 = `0${s2}`);
|
|
14996
15114
|
let l2 = `${a2.country}${s2}${n2}`;
|
|
14997
|
-
return t2 ?
|
|
15115
|
+
return t2 ? Wr(l2) : l2;
|
|
14998
15116
|
}
|
|
14999
15117
|
bic(e2 = {}) {
|
|
15000
15118
|
let { includeBranchCode: r2 = this.faker.datatype.boolean() } = e2, t2 = this.faker.string.alpha({ length: 4, casing: "upper" }), a2 = this.faker.helpers.arrayElement(M.iso3166), n2 = this.faker.string.alphanumeric({ length: 2, casing: "upper" }), o2 = r2 ? this.faker.datatype.boolean() ? this.faker.string.alphanumeric({ length: 3, casing: "upper" }) : "XXX" : "";
|
|
@@ -15004,10 +15122,10 @@ var te$1 = class te extends p {
|
|
|
15004
15122
|
return this.faker.helpers.fake(this.faker.definitions.finance.transaction_description_pattern);
|
|
15005
15123
|
}
|
|
15006
15124
|
};
|
|
15007
|
-
function
|
|
15125
|
+
function Ze(i) {
|
|
15008
15126
|
return i.split(" ").map((e2) => e2.charAt(0).toUpperCase() + e2.slice(1)).join(" ");
|
|
15009
15127
|
}
|
|
15010
|
-
var
|
|
15128
|
+
var ie = class extends p {
|
|
15011
15129
|
adjective() {
|
|
15012
15130
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.adjective);
|
|
15013
15131
|
}
|
|
@@ -15015,7 +15133,7 @@ var ae = class extends p {
|
|
|
15015
15133
|
return this.faker.helpers.fake(this.faker.definitions.food.description_pattern);
|
|
15016
15134
|
}
|
|
15017
15135
|
dish() {
|
|
15018
|
-
return this.faker.datatype.boolean() ?
|
|
15136
|
+
return this.faker.datatype.boolean() ? Ze(this.faker.helpers.fake(this.faker.definitions.food.dish_pattern)) : Ze(this.faker.helpers.arrayElement(this.faker.definitions.food.dish));
|
|
15019
15137
|
}
|
|
15020
15138
|
ethnicCategory() {
|
|
15021
15139
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.ethnic_category);
|
|
@@ -15036,7 +15154,7 @@ var ae = class extends p {
|
|
|
15036
15154
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.vegetable);
|
|
15037
15155
|
}
|
|
15038
15156
|
};
|
|
15039
|
-
var
|
|
15157
|
+
var Yr = " ", oe = class extends p {
|
|
15040
15158
|
branch() {
|
|
15041
15159
|
let e2 = this.faker.hacker.noun().replace(" ", "-"), r2 = this.faker.hacker.verb().replace(" ", "-");
|
|
15042
15160
|
return `${e2}-${r2}`;
|
|
@@ -15045,7 +15163,7 @@ var Wr = " ", ne = class extends p {
|
|
|
15045
15163
|
let { merge: r2 = this.faker.datatype.boolean({ probability: 0.2 }), eol: t2 = "CRLF", refDate: a2 } = e2, n2 = [`commit ${this.faker.git.commitSha()}`];
|
|
15046
15164
|
r2 && n2.push(`Merge: ${this.commitSha({ length: 7 })} ${this.commitSha({ length: 7 })}`);
|
|
15047
15165
|
let o2 = this.faker.person.firstName(), s2 = this.faker.person.lastName(), l2 = this.faker.person.fullName({ firstName: o2, lastName: s2 }), c2 = this.faker.internet.username({ firstName: o2, lastName: s2 }), u2 = this.faker.helpers.arrayElement([l2, c2]), h2 = this.faker.internet.email({ firstName: o2, lastName: s2 });
|
|
15048
|
-
u2 = u2.replaceAll(/^[.,:;"\\']|[<>\n]|[.,:;"\\']$/g, ""), n2.push(`Author: ${u2} <${h2}>`, `Date: ${this.commitDate({ refDate: a2 })}`, "", `${
|
|
15166
|
+
u2 = u2.replaceAll(/^[.,:;"\\']|[<>\n]|[.,:;"\\']$/g, ""), n2.push(`Author: ${u2} <${h2}>`, `Date: ${this.commitDate({ refDate: a2 })}`, "", `${Yr.repeat(4)}${this.commitMessage()}`, "");
|
|
15049
15167
|
let f2 = t2 === "CRLF" ? `\r
|
|
15050
15168
|
` : `
|
|
15051
15169
|
`;
|
|
@@ -15063,7 +15181,7 @@ var Wr = " ", ne = class extends p {
|
|
|
15063
15181
|
return this.faker.string.hexadecimal({ length: r2, casing: "lower", prefix: "" });
|
|
15064
15182
|
}
|
|
15065
15183
|
};
|
|
15066
|
-
var
|
|
15184
|
+
var se = class extends p {
|
|
15067
15185
|
abbreviation() {
|
|
15068
15186
|
return this.faker.helpers.arrayElement(this.faker.definitions.hacker.abbreviation);
|
|
15069
15187
|
}
|
|
@@ -15084,7 +15202,7 @@ var ie = class extends p {
|
|
|
15084
15202
|
return this.faker.helpers.mustache(r2, e2);
|
|
15085
15203
|
}
|
|
15086
15204
|
};
|
|
15087
|
-
var
|
|
15205
|
+
var ce = class extends p {
|
|
15088
15206
|
avatar() {
|
|
15089
15207
|
return this.faker.helpers.arrayElement([this.personPortrait, this.avatarGitHub])();
|
|
15090
15208
|
}
|
|
@@ -15117,99 +15235,10 @@ var oe = class extends p {
|
|
|
15117
15235
|
}
|
|
15118
15236
|
dataUri(e2 = {}) {
|
|
15119
15237
|
let { width: r2 = this.faker.number.int({ min: 1, max: 3999 }), height: t2 = this.faker.number.int({ min: 1, max: 3999 }), color: a2 = this.faker.color.rgb(), type: n2 = this.faker.helpers.arrayElement(["svg-uri", "svg-base64"]) } = e2, o2 = `<svg xmlns="http://www.w3.org/2000/svg" version="1.1" baseProfile="full" width="${r2}" height="${t2}"><rect width="100%" height="100%" fill="${a2}"/><text x="${r2 / 2}" y="${t2 / 2}" font-size="20" alignment-baseline="middle" text-anchor="middle" fill="white">${r2}x${t2}</text></svg>`;
|
|
15120
|
-
return n2 === "svg-uri" ? `data:image/svg+xml;charset=UTF-8,${encodeURIComponent(o2)}` : `data:image/svg+xml;base64,${
|
|
15238
|
+
return n2 === "svg-uri" ? `data:image/svg+xml;charset=UTF-8,${encodeURIComponent(o2)}` : `data:image/svg+xml;base64,${ge(o2)}`;
|
|
15121
15239
|
}
|
|
15122
15240
|
};
|
|
15123
|
-
|
|
15124
|
-
zipCode(e2 = {}) {
|
|
15125
|
-
typeof e2 == "string" && (e2 = { format: e2 });
|
|
15126
|
-
let { state: r2 } = e2;
|
|
15127
|
-
if (r2 != null) {
|
|
15128
|
-
let a2 = this.faker.definitions.location.postcode_by_state[r2];
|
|
15129
|
-
if (a2 == null) throw new m(`No zip code definition found for state "${r2}"`);
|
|
15130
|
-
return this.faker.helpers.fake(a2);
|
|
15131
|
-
}
|
|
15132
|
-
let { format: t2 = this.faker.definitions.location.postcode } = e2;
|
|
15133
|
-
return typeof t2 == "string" && (t2 = [t2]), t2 = this.faker.helpers.arrayElement(t2), this.faker.helpers.replaceSymbols(t2);
|
|
15134
|
-
}
|
|
15135
|
-
city() {
|
|
15136
|
-
return this.faker.helpers.fake(this.faker.definitions.location.city_pattern);
|
|
15137
|
-
}
|
|
15138
|
-
buildingNumber() {
|
|
15139
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.building_number).replaceAll(/#+/g, (e2) => this.faker.string.numeric({ length: e2.length, allowLeadingZeros: false }));
|
|
15140
|
-
}
|
|
15141
|
-
street() {
|
|
15142
|
-
return this.faker.helpers.fake(this.faker.definitions.location.street_pattern);
|
|
15143
|
-
}
|
|
15144
|
-
streetAddress(e2 = {}) {
|
|
15145
|
-
typeof e2 == "boolean" && (e2 = { useFullAddress: e2 });
|
|
15146
|
-
let { useFullAddress: r2 } = e2, a2 = this.faker.definitions.location.street_address[r2 ? "full" : "normal"];
|
|
15147
|
-
return this.faker.helpers.fake(a2);
|
|
15148
|
-
}
|
|
15149
|
-
secondaryAddress() {
|
|
15150
|
-
return this.faker.helpers.fake(this.faker.definitions.location.secondary_address).replaceAll(/#+/g, (e2) => this.faker.string.numeric({ length: e2.length, allowLeadingZeros: false }));
|
|
15151
|
-
}
|
|
15152
|
-
county() {
|
|
15153
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.county);
|
|
15154
|
-
}
|
|
15155
|
-
country() {
|
|
15156
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.country);
|
|
15157
|
-
}
|
|
15158
|
-
continent() {
|
|
15159
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.continent);
|
|
15160
|
-
}
|
|
15161
|
-
countryCode(e2 = {}) {
|
|
15162
|
-
typeof e2 == "string" && (e2 = { variant: e2 });
|
|
15163
|
-
let { variant: r2 = "alpha-2" } = e2, t2 = (() => {
|
|
15164
|
-
switch (r2) {
|
|
15165
|
-
case "numeric":
|
|
15166
|
-
return "numeric";
|
|
15167
|
-
case "alpha-3":
|
|
15168
|
-
return "alpha3";
|
|
15169
|
-
case "alpha-2":
|
|
15170
|
-
return "alpha2";
|
|
15171
|
-
}
|
|
15172
|
-
})();
|
|
15173
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.country_code)[t2];
|
|
15174
|
-
}
|
|
15175
|
-
state(e2 = {}) {
|
|
15176
|
-
let { abbreviated: r2 = false } = e2, t2 = r2 ? this.faker.definitions.location.state_abbr : this.faker.definitions.location.state;
|
|
15177
|
-
return this.faker.helpers.arrayElement(t2);
|
|
15178
|
-
}
|
|
15179
|
-
latitude(e2 = {}) {
|
|
15180
|
-
let { max: r2 = 90, min: t2 = -90, precision: a2 = 4 } = e2;
|
|
15181
|
-
return this.faker.number.float({ min: t2, max: r2, fractionDigits: a2 });
|
|
15182
|
-
}
|
|
15183
|
-
longitude(e2 = {}) {
|
|
15184
|
-
let { max: r2 = 180, min: t2 = -180, precision: a2 = 4 } = e2;
|
|
15185
|
-
return this.faker.number.float({ max: r2, min: t2, fractionDigits: a2 });
|
|
15186
|
-
}
|
|
15187
|
-
direction(e2 = {}) {
|
|
15188
|
-
let { abbreviated: r2 = false } = e2;
|
|
15189
|
-
return r2 ? this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal_abbr, ...this.faker.definitions.location.direction.ordinal_abbr]) : this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal, ...this.faker.definitions.location.direction.ordinal]);
|
|
15190
|
-
}
|
|
15191
|
-
cardinalDirection(e2 = {}) {
|
|
15192
|
-
let { abbreviated: r2 = false } = e2;
|
|
15193
|
-
return r2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal);
|
|
15194
|
-
}
|
|
15195
|
-
ordinalDirection(e2 = {}) {
|
|
15196
|
-
let { abbreviated: r2 = false } = e2;
|
|
15197
|
-
return r2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal);
|
|
15198
|
-
}
|
|
15199
|
-
nearbyGPSCoordinate(e2 = {}) {
|
|
15200
|
-
let { origin: r2, radius: t2 = 10, isMetric: a2 = false } = e2;
|
|
15201
|
-
if (r2 == null) return [this.latitude(), this.longitude()];
|
|
15202
|
-
let n2 = this.faker.number.float({ max: 2 * Math.PI, fractionDigits: 5 }), o2 = a2 ? t2 : t2 * 1.60934, l2 = this.faker.number.float({ max: o2, fractionDigits: 3 }) * 0.995, c2 = 4e4 / 360, u2 = l2 / c2, h2 = [r2[0] + Math.sin(n2) * u2, r2[1] + Math.cos(n2) * u2];
|
|
15203
|
-
return h2[0] = h2[0] % 180, (h2[0] < -90 || h2[0] > 90) && (h2[0] = Math.sign(h2[0]) * 180 - h2[0], h2[1] += 180), h2[1] = (h2[1] % 360 + 540) % 360 - 180, [h2[0], h2[1]];
|
|
15204
|
-
}
|
|
15205
|
-
timeZone() {
|
|
15206
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.time_zone);
|
|
15207
|
-
}
|
|
15208
|
-
language() {
|
|
15209
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.language);
|
|
15210
|
-
}
|
|
15211
|
-
};
|
|
15212
|
-
function Ze(i, e2, r2 = (t2) => t2) {
|
|
15241
|
+
function Je(i, e2, r2 = (t2) => t2) {
|
|
15213
15242
|
let t2 = {};
|
|
15214
15243
|
for (let a2 of i) {
|
|
15215
15244
|
let n2 = e2(a2);
|
|
@@ -15217,10 +15246,10 @@ function Ze(i, e2, r2 = (t2) => t2) {
|
|
|
15217
15246
|
}
|
|
15218
15247
|
return t2;
|
|
15219
15248
|
}
|
|
15220
|
-
var
|
|
15249
|
+
var Te = { fail: () => {
|
|
15221
15250
|
throw new m("No words found that match the given length.");
|
|
15222
15251
|
}, closest: (i, e2) => {
|
|
15223
|
-
let r2 =
|
|
15252
|
+
let r2 = Je(i, (s2) => s2.length), t2 = Object.keys(r2).map(Number), a2 = Math.min(...t2), n2 = Math.max(...t2), o2 = Math.min(e2.min - a2, n2 - e2.max);
|
|
15224
15253
|
return i.filter((s2) => s2.length === e2.min - o2 || s2.length === e2.max + o2);
|
|
15225
15254
|
}, shortest: (i) => {
|
|
15226
15255
|
let e2 = Math.min(...i.map((r2) => r2.length));
|
|
@@ -15233,11 +15262,11 @@ function T(i) {
|
|
|
15233
15262
|
let { wordList: e2, length: r2, strategy: t2 = "any-length" } = i;
|
|
15234
15263
|
if (r2 != null) {
|
|
15235
15264
|
let a2 = typeof r2 == "number" ? (o2) => o2.length === r2 : (o2) => o2.length >= r2.min && o2.length <= r2.max, n2 = e2.filter(a2);
|
|
15236
|
-
return n2.length > 0 ? n2 : typeof r2 == "number" ?
|
|
15237
|
-
} else if (t2 === "shortest" || t2 === "longest") return
|
|
15265
|
+
return n2.length > 0 ? n2 : typeof r2 == "number" ? Te[t2](e2, { min: r2, max: r2 }) : Te[t2](e2, r2);
|
|
15266
|
+
} else if (t2 === "shortest" || t2 === "longest") return Te[t2](e2);
|
|
15238
15267
|
return [...e2];
|
|
15239
15268
|
}
|
|
15240
|
-
var
|
|
15269
|
+
var le = class extends p {
|
|
15241
15270
|
word(e2 = {}) {
|
|
15242
15271
|
return typeof e2 == "number" && (e2 = { length: e2 }), this.faker.helpers.arrayElement(T({ ...e2, wordList: this.faker.definitions.lorem.word }));
|
|
15243
15272
|
}
|
|
@@ -15271,7 +15300,7 @@ var ce = class extends p {
|
|
|
15271
15300
|
`);
|
|
15272
15301
|
}
|
|
15273
15302
|
};
|
|
15274
|
-
var
|
|
15303
|
+
var me = class extends p {
|
|
15275
15304
|
album() {
|
|
15276
15305
|
return this.faker.helpers.arrayElement(this.faker.definitions.music.album);
|
|
15277
15306
|
}
|
|
@@ -15285,18 +15314,18 @@ var le = class extends p {
|
|
|
15285
15314
|
return this.faker.helpers.arrayElement(this.faker.definitions.music.song_name);
|
|
15286
15315
|
}
|
|
15287
15316
|
};
|
|
15288
|
-
var
|
|
15317
|
+
var ue = class extends p {
|
|
15289
15318
|
number(e2 = {}) {
|
|
15290
15319
|
let { style: r2 = "human" } = e2, a2 = this.faker.definitions.phone_number.format[r2];
|
|
15291
15320
|
if (!a2) throw new Error(`No definitions for ${r2} in this locale`);
|
|
15292
15321
|
let n2 = this.faker.helpers.arrayElement(a2);
|
|
15293
|
-
return
|
|
15322
|
+
return Se(this.faker, n2);
|
|
15294
15323
|
}
|
|
15295
15324
|
imei() {
|
|
15296
15325
|
return this.faker.helpers.replaceCreditCardSymbols("##-######-######-L", "#");
|
|
15297
15326
|
}
|
|
15298
15327
|
};
|
|
15299
|
-
var
|
|
15328
|
+
var pe = class extends p {
|
|
15300
15329
|
chemicalElement() {
|
|
15301
15330
|
return this.faker.helpers.arrayElement(this.faker.definitions.science.chemical_element);
|
|
15302
15331
|
}
|
|
@@ -15304,7 +15333,7 @@ var ue = class extends p {
|
|
|
15304
15333
|
return this.faker.helpers.arrayElement(this.faker.definitions.science.unit);
|
|
15305
15334
|
}
|
|
15306
15335
|
};
|
|
15307
|
-
var
|
|
15336
|
+
var Zr = ["video", "audio", "image", "text", "application"], Jr = ["application/pdf", "audio/mpeg", "audio/wav", "image/png", "image/jpeg", "image/gif", "video/mp4", "video/mpeg", "text/html"], Xr = ["en", "wl", "ww"], Xe = { index: "o", slot: "s", mac: "x", pci: "p" }, Qr = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"], he = class extends p {
|
|
15308
15337
|
fileName(e2 = {}) {
|
|
15309
15338
|
let { extensionCount: r2 = 1 } = e2, t2 = this.faker.word.words().toLowerCase().replaceAll(/\W/g, "_"), a2 = this.faker.helpers.multiple(() => this.fileExt(), { count: r2 }).join(".");
|
|
15310
15339
|
return a2.length === 0 ? t2 : `${t2}.${a2}`;
|
|
@@ -15317,10 +15346,10 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15317
15346
|
return this.faker.helpers.arrayElement(e2);
|
|
15318
15347
|
}
|
|
15319
15348
|
commonFileType() {
|
|
15320
|
-
return this.faker.helpers.arrayElement(
|
|
15349
|
+
return this.faker.helpers.arrayElement(Zr);
|
|
15321
15350
|
}
|
|
15322
15351
|
commonFileExt() {
|
|
15323
|
-
return this.fileExt(this.faker.helpers.arrayElement(
|
|
15352
|
+
return this.fileExt(this.faker.helpers.arrayElement(Jr));
|
|
15324
15353
|
}
|
|
15325
15354
|
fileType() {
|
|
15326
15355
|
let e2 = this.faker.definitions.system.mime_type, r2 = new Set(Object.keys(e2).map((t2) => t2.split("/")[0]));
|
|
@@ -15343,7 +15372,7 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15343
15372
|
return [this.faker.number.int(9), this.faker.number.int(20), this.faker.number.int(20)].join(".");
|
|
15344
15373
|
}
|
|
15345
15374
|
networkInterface(e2 = {}) {
|
|
15346
|
-
let { interfaceType: r2 = this.faker.helpers.arrayElement(
|
|
15375
|
+
let { interfaceType: r2 = this.faker.helpers.arrayElement(Xr), interfaceSchema: t2 = this.faker.helpers.objectKey(Xe) } = e2, a2, n2 = "";
|
|
15347
15376
|
switch (t2) {
|
|
15348
15377
|
case "index": {
|
|
15349
15378
|
a2 = this.faker.string.numeric();
|
|
@@ -15362,16 +15391,16 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15362
15391
|
break;
|
|
15363
15392
|
}
|
|
15364
15393
|
}
|
|
15365
|
-
return `${n2}${r2}${
|
|
15394
|
+
return `${n2}${r2}${Xe[t2]}${a2}`;
|
|
15366
15395
|
}
|
|
15367
15396
|
cron(e2 = {}) {
|
|
15368
|
-
let { includeYear: r2 = false, includeNonStandard: t2 = false } = e2, a2 = [this.faker.number.int(59), "*"], n2 = [this.faker.number.int(23), "*"], o2 = [this.faker.number.int({ min: 1, max: 31 }), "*", "?"], s2 = [this.faker.number.int({ min: 1, max: 12 }), "*"], l2 = [this.faker.number.int(6), this.faker.helpers.arrayElement(
|
|
15397
|
+
let { includeYear: r2 = false, includeNonStandard: t2 = false } = e2, a2 = [this.faker.number.int(59), "*"], n2 = [this.faker.number.int(23), "*"], o2 = [this.faker.number.int({ min: 1, max: 31 }), "*", "?"], s2 = [this.faker.number.int({ min: 1, max: 12 }), "*"], l2 = [this.faker.number.int(6), this.faker.helpers.arrayElement(Qr), "*", "?"], c2 = [this.faker.number.int({ min: 1970, max: 2099 }), "*"], u2 = this.faker.helpers.arrayElement(a2), h2 = this.faker.helpers.arrayElement(n2), f2 = this.faker.helpers.arrayElement(o2), g2 = this.faker.helpers.arrayElement(s2), b2 = this.faker.helpers.arrayElement(l2), y2 = this.faker.helpers.arrayElement(c2), N2 = `${u2} ${h2} ${f2} ${g2} ${b2}`;
|
|
15369
15398
|
r2 && (N2 += ` ${y2}`);
|
|
15370
15399
|
let k2 = ["@annually", "@daily", "@hourly", "@monthly", "@reboot", "@weekly", "@yearly"];
|
|
15371
15400
|
return !t2 || this.faker.datatype.boolean() ? N2 : this.faker.helpers.arrayElement(k2);
|
|
15372
15401
|
}
|
|
15373
15402
|
};
|
|
15374
|
-
var
|
|
15403
|
+
var fe = class extends p {
|
|
15375
15404
|
vehicle() {
|
|
15376
15405
|
return `${this.manufacturer()} ${this.model()}`;
|
|
15377
15406
|
}
|
|
@@ -15401,7 +15430,7 @@ var he = class extends p {
|
|
|
15401
15430
|
return this.faker.helpers.arrayElement(this.faker.definitions.vehicle.bicycle_type);
|
|
15402
15431
|
}
|
|
15403
15432
|
};
|
|
15404
|
-
var
|
|
15433
|
+
var be = class extends p {
|
|
15405
15434
|
adjective(e2 = {}) {
|
|
15406
15435
|
return typeof e2 == "number" && (e2 = { length: e2 }), this.faker.helpers.arrayElement(T({ ...e2, wordList: this.faker.definitions.word.adjective }));
|
|
15407
15436
|
}
|
|
@@ -15438,41 +15467,41 @@ var fe = class extends p {
|
|
|
15438
15467
|
return this.faker.helpers.multiple(() => this.sample(), { count: r2 }).join(" ");
|
|
15439
15468
|
}
|
|
15440
15469
|
};
|
|
15441
|
-
var
|
|
15470
|
+
var Qe = class extends I {
|
|
15442
15471
|
constructor(e2) {
|
|
15443
15472
|
super({ randomizer: e2.randomizer, seed: e2.seed });
|
|
15444
15473
|
__publicField(this, "rawDefinitions");
|
|
15445
15474
|
__publicField(this, "definitions");
|
|
15446
|
-
__publicField(this, "airline", new
|
|
15447
|
-
__publicField(this, "animal", new
|
|
15448
|
-
__publicField(this, "book", new
|
|
15449
|
-
__publicField(this, "color", new
|
|
15450
|
-
__publicField(this, "commerce", new
|
|
15451
|
-
__publicField(this, "company", new
|
|
15452
|
-
__publicField(this, "database", new
|
|
15453
|
-
__publicField(this, "date", new
|
|
15454
|
-
__publicField(this, "finance", new
|
|
15455
|
-
__publicField(this, "food", new
|
|
15456
|
-
__publicField(this, "git", new
|
|
15457
|
-
__publicField(this, "hacker", new
|
|
15458
|
-
__publicField(this, "helpers", new
|
|
15459
|
-
__publicField(this, "image", new
|
|
15460
|
-
__publicField(this, "internet", new
|
|
15461
|
-
__publicField(this, "location", new
|
|
15462
|
-
__publicField(this, "lorem", new
|
|
15463
|
-
__publicField(this, "music", new
|
|
15464
|
-
__publicField(this, "person", new
|
|
15465
|
-
__publicField(this, "phone", new
|
|
15466
|
-
__publicField(this, "science", new
|
|
15467
|
-
__publicField(this, "system", new
|
|
15468
|
-
__publicField(this, "vehicle", new
|
|
15469
|
-
__publicField(this, "word", new
|
|
15475
|
+
__publicField(this, "airline", new G(this));
|
|
15476
|
+
__publicField(this, "animal", new q(this));
|
|
15477
|
+
__publicField(this, "book", new ee(this));
|
|
15478
|
+
__publicField(this, "color", new O(this));
|
|
15479
|
+
__publicField(this, "commerce", new re$1(this));
|
|
15480
|
+
__publicField(this, "company", new te$1(this));
|
|
15481
|
+
__publicField(this, "database", new ae(this));
|
|
15482
|
+
__publicField(this, "date", new z(this));
|
|
15483
|
+
__publicField(this, "finance", new ne(this));
|
|
15484
|
+
__publicField(this, "food", new ie(this));
|
|
15485
|
+
__publicField(this, "git", new oe(this));
|
|
15486
|
+
__publicField(this, "hacker", new se(this));
|
|
15487
|
+
__publicField(this, "helpers", new W(this));
|
|
15488
|
+
__publicField(this, "image", new ce(this));
|
|
15489
|
+
__publicField(this, "internet", new U(this));
|
|
15490
|
+
__publicField(this, "location", new Y(this));
|
|
15491
|
+
__publicField(this, "lorem", new le(this));
|
|
15492
|
+
__publicField(this, "music", new me(this));
|
|
15493
|
+
__publicField(this, "person", new K(this));
|
|
15494
|
+
__publicField(this, "phone", new ue(this));
|
|
15495
|
+
__publicField(this, "science", new pe(this));
|
|
15496
|
+
__publicField(this, "system", new he(this));
|
|
15497
|
+
__publicField(this, "vehicle", new fe(this));
|
|
15498
|
+
__publicField(this, "word", new be(this));
|
|
15470
15499
|
let { locale: r2 } = e2;
|
|
15471
15500
|
if (Array.isArray(r2)) {
|
|
15472
15501
|
if (r2.length === 0) throw new m("The locale option must contain at least one locale definition.");
|
|
15473
|
-
r2 =
|
|
15502
|
+
r2 = Ye(r2);
|
|
15474
15503
|
}
|
|
15475
|
-
this.rawDefinitions = r2, this.definitions =
|
|
15504
|
+
this.rawDefinitions = r2, this.definitions = Ke(this.rawDefinitions);
|
|
15476
15505
|
}
|
|
15477
15506
|
get address() {
|
|
15478
15507
|
return w({ deprecated: "faker.address", proposed: "faker.location", since: "8.0", until: "10.0" }), this.location;
|
|
@@ -15484,29 +15513,29 @@ var Xe = class extends $ {
|
|
|
15484
15513
|
return this.rawDefinitions.metadata ?? {};
|
|
15485
15514
|
}
|
|
15486
15515
|
};
|
|
15487
|
-
var
|
|
15488
|
-
var
|
|
15489
|
-
var
|
|
15490
|
-
var
|
|
15491
|
-
var
|
|
15492
|
-
var
|
|
15493
|
-
var
|
|
15494
|
-
var
|
|
15495
|
-
var
|
|
15496
|
-
var
|
|
15497
|
-
var sr = { smiley: ["☠️", "☹️", "☺️", "❣️", "❤️", "❤️🔥", "❤️🩹", "👁️🗨️", "👹", "👺", "👻", "👽", "👾", "👿", "💀", "💋", "💌", "💓", "💔", "💕", "💖", "💗", "💘", "💙", "💚", "💛", "💜", "💝", "💞", "💟", "💢", "💣", "💤", "💥", "💦", "💨", "💩", "💫", "💬", "💭", "💯", "🕳️", "🖤", "🗨️", "🗯️", "😀", "😁", "😂", "😃", "😄", "😅", "😆", "😇", "😈", "😉", "😊", "😋", "😌", "😍", "😎", "😏", "😐", "😑", "😒", "😓", "😔", "😕", "😖", "😗", "😘", "😙", "😚", "😛", "😜", "😝", "😞", "😟", "😠", "😡", "😢", "😣", "😤", "😥", "😦", "😧", "😨", "😩", "😪", "😫", "😬", "😭", "😮", "😮💨", "😯", "😰", "😱", "😲", "😳", "😴", "😵", "😵💫", "😶", "😶🌫️", "😷", "😸", "😹", "😺", "😻", "😼", "😽", "😾", "😿", "🙀", "🙁", "🙂", "🙃", "🙄", "🙈", "🙉", "🙊", "🤍", "🤎", "🤐", "🤑", "🤒", "🤓", "🤔", "🤕", "🤖", "🤗", "🤠", "🤡", "🤢", "🤣", "🤤", "🤥", "🤧", "🤨", "🤩", "🤪", "🤫", "🤬", "🤭", "🤮", "🤯", "🥰", "🥱", "🥲", "🥳", "🥴", "🥵", "🥶", "🥸", "🥺", "🧐", "🧡"], body: ["☝🏻", "☝🏼", "☝🏽", "☝🏾", "☝🏿", "☝️", "✊", "✊🏻", "✊🏼", "✊🏽", "✊🏾", "✊🏿", "✋", "✋🏻", "✋🏼", "✋🏽", "✋🏾", "✋🏿", "✌🏻", "✌🏼", "✌🏽", "✌🏾", "✌🏿", "✌️", "✍🏻", "✍🏼", "✍🏽", "✍🏾", "✍🏿", "✍️", "👀", "👁️", "👂", "👂🏻", "👂🏼", "👂🏽", "👂🏾", "👂🏿", "👃", "👃🏻", "👃🏼", "👃🏽", "👃🏾", "👃🏿", "👄", "👅", "👆", "👆🏻", "👆🏼", "👆🏽", "👆🏾", "👆🏿", "👇", "👇🏻", "👇🏼", "👇🏽", "👇🏾", "👇🏿", "👈", "👈🏻", "👈🏼", "👈🏽", "👈🏾", "👈🏿", "👉", "👉🏻", "👉🏼", "👉🏽", "👉🏾", "👉🏿", "👊", "👊🏻", "👊🏼", "👊🏽", "👊🏾", "👊🏿", "👋", "👋🏻", "👋🏼", "👋🏽", "👋🏾", "👋🏿", "👌", "👌🏻", "👌🏼", "👌🏽", "👌🏾", "👌🏿", "👍", "👍🏻", "👍🏼", "👍🏽", "👍🏾", "👍🏿", "👎", "👎🏻", "👎🏼", "👎🏽", "👎🏾", "👎🏿", "👏", "👏🏻", "👏🏼", "👏🏽", "👏🏾", "👏🏿", "👐", "👐🏻", "👐🏼", "👐🏽", "👐🏾", "👐🏿", "💅", "💅🏻", "💅🏼", "💅🏽", "💅🏾", "💅🏿", "💪", "💪🏻", "💪🏼", "💪🏽", "💪🏾", "💪🏿", "🖐🏻", "🖐🏼", "🖐🏽", "🖐🏾", "🖐🏿", "🖐️", "🖕", "🖕🏻", "🖕🏼", "🖕🏽", "🖕🏾", "🖕🏿", "🖖", "🖖🏻", "🖖🏼", "🖖🏽", "🖖🏾", "🖖🏿", "🙌", "🙌🏻", "🙌🏼", "🙌🏽", "🙌🏾", "🙌🏿", "🙏", "🙏🏻", "🙏🏼", "🙏🏽", "🙏🏾", "🙏🏿", "🤌", "🤌🏻", "🤌🏼", "🤌🏽", "🤌🏾", "🤌🏿", "🤏", "🤏🏻", "🤏🏼", "🤏🏽", "🤏🏾", "🤏🏿", "🤘", "🤘🏻", "🤘🏼", "🤘🏽", "🤘🏾", "🤘🏿", "🤙", "🤙🏻", "🤙🏼", "🤙🏽", "🤙🏾", "🤙🏿", "🤚", "🤚🏻", "🤚🏼", "🤚🏽", "🤚🏾", "🤚🏿", "🤛", "🤛🏻", "🤛🏼", "🤛🏽", "🤛🏾", "🤛🏿", "🤜", "🤜🏻", "🤜🏼", "🤜🏽", "🤜🏾", "🤜🏿", "🤝", "🤞", "🤞🏻", "🤞🏼", "🤞🏽", "🤞🏾", "🤞🏿", "🤟", "🤟🏻", "🤟🏼", "🤟🏽", "🤟🏾", "🤟🏿", "🤲", "🤲🏻", "🤲🏼", "🤲🏽", "🤲🏾", "🤲🏿", "🤳", "🤳🏻", "🤳🏼", "🤳🏽", "🤳🏾", "🤳🏿", "🦴", "🦵", "🦵🏻", "🦵🏼", "🦵🏽", "🦵🏾", "🦵🏿", "🦶", "🦶🏻", "🦶🏼", "🦶🏽", "🦶🏾", "🦶🏿", "🦷", "🦻", "🦻🏻", "🦻🏼", "🦻🏽", "🦻🏾", "🦻🏿", "🦾", "🦿", "🧠", "🫀", "🫁"], person: ["🎅", "🎅🏻", "🎅🏼", "🎅🏽", "🎅🏾", "🎅🏿", "👦", "👦🏻", "👦🏼", "👦🏽", "👦🏾", "👦🏿", "👧", "👧🏻", "👧🏼", "👧🏽", "👧🏾", "👧🏿", "👨", "👨⚕️", "👨⚖️", "👨✈️", "👨🌾", "👨🍳", "👨🍼", "👨🎓", "👨🎤", "👨🎨", "👨🏫", "👨🏭", "👨💻", "👨💼", "👨🔧", "👨🔬", "👨🚀", "👨🚒", "👨🦰", "👨🦱", "👨🦲", "👨🦳", "👨🏻", "👨🏻⚕️", "👨🏻⚖️", "👨🏻✈️", "👨🏻🌾", "👨🏻🍳", "👨🏻🍼", "👨🏻🎓", "👨🏻🎤", "👨🏻🎨", "👨🏻🏫", "👨🏻🏭", "👨🏻💻", "👨🏻💼", "👨🏻🔧", "👨🏻🔬", "👨🏻🚀", "👨🏻🚒", "👨🏻🦰", "👨🏻🦱", "👨🏻🦲", "👨🏻🦳", "👨🏼", "👨🏼⚕️", "👨🏼⚖️", "👨🏼✈️", "👨🏼🌾", "👨🏼🍳", "👨🏼🍼", "👨🏼🎓", "👨🏼🎤", "👨🏼🎨", "👨🏼🏫", "👨🏼🏭", "👨🏼💻", "👨🏼💼", "👨🏼🔧", "👨🏼🔬", "👨🏼🚀", "👨🏼🚒", "👨🏼🦰", "👨🏼🦱", "👨🏼🦲", "👨🏼🦳", "👨🏽", "👨🏽⚕️", "👨🏽⚖️", "👨🏽✈️", "👨🏽🌾", "👨🏽🍳", "👨🏽🍼", "👨🏽🎓", "👨🏽🎤", "👨🏽🎨", "👨🏽🏫", "👨🏽🏭", "👨🏽💻", "👨🏽💼", "👨🏽🔧", "👨🏽🔬", "👨🏽🚀", "👨🏽🚒", "👨🏽🦰", "👨🏽🦱", "👨🏽🦲", "👨🏽🦳", "👨🏾", "👨🏾⚕️", "👨🏾⚖️", "👨🏾✈️", "👨🏾🌾", "👨🏾🍳", "👨🏾🍼", "👨🏾🎓", "👨🏾🎤", "👨🏾🎨", "👨🏾🏫", "👨🏾🏭", "👨🏾💻", "👨🏾💼", "👨🏾🔧", "👨🏾🔬", "👨🏾🚀", "👨🏾🚒", "👨🏾🦰", "👨🏾🦱", "👨🏾🦲", "👨🏾🦳", "👨🏿", "👨🏿⚕️", "👨🏿⚖️", "👨🏿✈️", "👨🏿🌾", "👨🏿🍳", "👨🏿🍼", "👨🏿🎓", "👨🏿🎤", "👨🏿🎨", "👨🏿🏫", "👨🏿🏭", "👨🏿💻", "👨🏿💼", "👨🏿🔧", "👨🏿🔬", "👨🏿🚀", "👨🏿🚒", "👨🏿🦰", "👨🏿🦱", "👨🏿🦲", "👨🏿🦳", "👩", "👩⚕️", "👩⚖️", "👩✈️", "👩🌾", "👩🍳", "👩🍼", "👩🎓", "👩🎤", "👩🎨", "👩🏫", "👩🏭", "👩💻", "👩💼", "👩🔧", "👩🔬", "👩🚀", "👩🚒", "👩🦰", "👩🦱", "👩🦲", "👩🦳", "👩🏻", "👩🏻⚕️", "👩🏻⚖️", "👩🏻✈️", "👩🏻🌾", "👩🏻🍳", "👩🏻🍼", "👩🏻🎓", "👩🏻🎤", "👩🏻🎨", "👩🏻🏫", "👩🏻🏭", "👩🏻💻", "👩🏻💼", "👩🏻🔧", "👩🏻🔬", "👩🏻🚀", "👩🏻🚒", "👩🏻🦰", "👩🏻🦱", "👩🏻🦲", "👩🏻🦳", "👩🏼", "👩🏼⚕️", "👩🏼⚖️", "👩🏼✈️", "👩🏼🌾", "👩🏼🍳", "👩🏼🍼", "👩🏼🎓", "👩🏼🎤", "👩🏼🎨", "👩🏼🏫", "👩🏼🏭", "👩🏼💻", "👩🏼💼", "👩🏼🔧", "👩🏼🔬", "👩🏼🚀", "👩🏼🚒", "👩🏼🦰", "👩🏼🦱", "👩🏼🦲", "👩🏼🦳", "👩🏽", "👩🏽⚕️", "👩🏽⚖️", "👩🏽✈️", "👩🏽🌾", "👩🏽🍳", "👩🏽🍼", "👩🏽🎓", "👩🏽🎤", "👩🏽🎨", "👩🏽🏫", "👩🏽🏭", "👩🏽💻", "👩🏽💼", "👩🏽🔧", "👩🏽🔬", "👩🏽🚀", "👩🏽🚒", "👩🏽🦰", "👩🏽🦱", "👩🏽🦲", "👩🏽🦳", "👩🏾", "👩🏾⚕️", "👩🏾⚖️", "👩🏾✈️", "👩🏾🌾", "👩🏾🍳", "👩🏾🍼", "👩🏾🎓", "👩🏾🎤", "👩🏾🎨", "👩🏾🏫", "👩🏾🏭", "👩🏾💻", "👩🏾💼", "👩🏾🔧", "👩🏾🔬", "👩🏾🚀", "👩🏾🚒", "👩🏾🦰", "👩🏾🦱", "👩🏾🦲", "👩🏾🦳", "👩🏿", "👩🏿⚕️", "👩🏿⚖️", "👩🏿✈️", "👩🏿🌾", "👩🏿🍳", "👩🏿🍼", "👩🏿🎓", "👩🏿🎤", "👩🏿🎨", "👩🏿🏫", "👩🏿🏭", "👩🏿💻", "👩🏿💼", "👩🏿🔧", "👩🏿🔬", "👩🏿🚀", "👩🏿🚒", "👩🏿🦰", "👩🏿🦱", "👩🏿🦲", "👩🏿🦳", "👮", "👮♀️", "👮♂️", "👮🏻", "👮🏻♀️", "👮🏻♂️", "👮🏼", "👮🏼♀️", "👮🏼♂️", "👮🏽", "👮🏽♀️", "👮🏽♂️", "👮🏾", "👮🏾♀️", "👮🏾♂️", "👮🏿", "👮🏿♀️", "👮🏿♂️", "👰", "👰♀️", "👰♂️", "👰🏻", "👰🏻♀️", "👰🏻♂️", "👰🏼", "👰🏼♀️", "👰🏼♂️", "👰🏽", "👰🏽♀️", "👰🏽♂️", "👰🏾", "👰🏾♀️", "👰🏾♂️", "👰🏿", "👰🏿♀️", "👰🏿♂️", "👱", "👱♀️", "👱♂️", "👱🏻", "👱🏻♀️", "👱🏻♂️", "👱🏼", "👱🏼♀️", "👱🏼♂️", "👱🏽", "👱🏽♀️", "👱🏽♂️", "👱🏾", "👱🏾♀️", "👱🏾♂️", "👱🏿", "👱🏿♀️", "👱🏿♂️", "👲", "👲🏻", "👲🏼", "👲🏽", "👲🏾", "👲🏿", "👳", "👳♀️", "👳♂️", "👳🏻", "👳🏻♀️", "👳🏻♂️", "👳🏼", "👳🏼♀️", "👳🏼♂️", "👳🏽", "👳🏽♀️", "👳🏽♂️", "👳🏾", "👳🏾♀️", "👳🏾♂️", "👳🏿", "👳🏿♀️", "👳🏿♂️", "👴", "👴🏻", "👴🏼", "👴🏽", "👴🏾", "👴🏿", "👵", "👵🏻", "👵🏼", "👵🏽", "👵🏾", "👵🏿", "👶", "👶🏻", "👶🏼", "👶🏽", "👶🏾", "👶🏿", "👷", "👷♀️", "👷♂️", "👷🏻", "👷🏻♀️", "👷🏻♂️", "👷🏼", "👷🏼♀️", "👷🏼♂️", "👷🏽", "👷🏽♀️", "👷🏽♂️", "👷🏾", "👷🏾♀️", "👷🏾♂️", "👷🏿", "👷🏿♀️", "👷🏿♂️", "👸", "👸🏻", "👸🏼", "👸🏽", "👸🏾", "👸🏿", "👼", "👼🏻", "👼🏼", "👼🏽", "👼🏾", "👼🏿", "💁", "💁♀️", "💁♂️", "💁🏻", "💁🏻♀️", "💁🏻♂️", "💁🏼", "💁🏼♀️", "💁🏼♂️", "💁🏽", "💁🏽♀️", "💁🏽♂️", "💁🏾", "💁🏾♀️", "💁🏾♂️", "💁🏿", "💁🏿♀️", "💁🏿♂️", "💂", "💂♀️", "💂♂️", "💂🏻", "💂🏻♀️", "💂🏻♂️", "💂🏼", "💂🏼♀️", "💂🏼♂️", "💂🏽", "💂🏽♀️", "💂🏽♂️", "💂🏾", "💂🏾♀️", "💂🏾♂️", "💂🏿", "💂🏿♀️", "💂🏿♂️", "💆", "💆♀️", "💆♂️", "💆🏻", "💆🏻♀️", "💆🏻♂️", "💆🏼", "💆🏼♀️", "💆🏼♂️", "💆🏽", "💆🏽♀️", "💆🏽♂️", "💆🏾", "💆🏾♀️", "💆🏾♂️", "💆🏿", "💆🏿♀️", "💆🏿♂️", "💇", "💇🏻", "💇🏼", "💇🏽", "🕵🏻", "🕵🏻♀️", "🕵🏻♂️", "🕵🏼", "🕵🏼♀️", "🕵🏼♂️", "🕵🏽", "🕵🏽♀️", "🕵🏽♂️", "🕵🏾", "🕵🏾♀️", "🕵🏾♂️", "🕵🏿", "🕵🏿♀️", "🕵🏿♂️", "🕵️", "🕵️♀️", "🕵️♂️", "🙅", "🙅♀️", "🙅♂️", "🙅🏻", "🙅🏻♀️", "🙅🏻♂️", "🙅🏼", "🙅🏼♀️", "🙅🏼♂️", "🙅🏽", "🙅🏽♀️", "🙅🏽♂️", "🙅🏾", "🙅🏾♀️", "🙅🏾♂️", "🙅🏿", "🙅🏿♀️", "🙅🏿♂️", "🙆", "🙆♀️", "🙆♂️", "🙆🏻", "🙆🏻♀️", "🙆🏻♂️", "🙆🏼", "🙆🏼♀️", "🙆🏼♂️", "🙆🏽", "🙆🏽♀️", "🙆🏽♂️", "🙆🏾", "🙆🏾♀️", "🙆🏾♂️", "🙆🏿", "🙆🏿♀️", "🙆🏿♂️", "🙇", "🙇♀️", "🙇♂️", "🙇🏻", "🙇🏻♀️", "🙇🏻♂️", "🙇🏼", "🙇🏼♀️", "🙇🏼♂️", "🙇🏽", "🙇🏽♀️", "🙇🏽♂️", "🙇🏾", "🙇🏾♀️", "🙇🏾♂️", "🙇🏿", "🙇🏿♀️", "🙇🏿♂️", "🙋", "🙋♀️", "🙋♂️", "🙋🏻", "🙋🏻♀️", "🙋🏻♂️", "🙋🏼", "🙋🏼♀️", "🙋🏼♂️", "🙋🏽", "🙋🏽♀️", "🙋🏽♂️", "🙋🏾", "🙋🏾♀️", "🙋🏾♂️", "🙋🏿", "🙋🏿♀️", "🙋🏿♂️", "🙍", "🙍♀️", "🙍♂️", "🙍🏻", "🙍🏻♀️", "🙍🏻♂️", "🙍🏼", "🙍🏼♀️", "🙍🏼♂️", "🙍🏽", "🙍🏽♀️", "🙍🏽♂️", "🙍🏾", "🙍🏾♀️", "🙍🏾♂️", "🙍🏿", "🙍🏿♀️", "🙍🏿♂️", "🙎", "🙎♀️", "🙎♂️", "🙎🏻", "🙎🏻♀️", "🙎🏻♂️", "🙎🏼", "🙎🏼♀️", "🙎🏼♂️", "🙎🏽", "🙎🏽♀️", "🙎🏽♂️", "🙎🏾", "🙎🏾♀️", "🙎🏾♂️", "🙎🏿", "🙎🏿♀️", "🙎🏿♂️", "🤦", "🤦♀️", "🤦♂️", "🤦🏻", "🤦🏻♀️", "🤦🏻♂️", "🤦🏼", "🤦🏼♀️", "🤦🏼♂️", "🤦🏽", "🤦🏽♀️", "🤦🏽♂️", "🤦🏾", "🤦🏾♀️", "🤦🏾♂️", "🤦🏿", "🤦🏿♀️", "🤦🏿♂️", "🤰", "🤰🏻", "🤰🏼", "🤰🏽", "🤰🏾", "🤰🏿", "🤱", "🤱🏻", "🤱🏼", "🤱🏽", "🤱🏾", "🤱🏿", "🤴", "🤴🏻", "🤴🏼", "🤴🏽", "🤴🏾", "🤴🏿", "🤵", "🤵♀️", "🤵♂️", "🤵🏻", "🤵🏻♀️", "🤵🏻♂️", "🤵🏼", "🤵🏼♀️", "🤵🏼♂️", "🤵🏽", "🤵🏽♀️", "🤵🏽♂️", "🤵🏾", "🤵🏾♀️", "🤵🏾♂️", "🤵🏿", "🤵🏿♀️", "🤵🏿♂️", "🤶", "🤶🏻", "🤶🏼", "🤶🏽", "🤶🏾", "🤶🏿", "🤷", "🤷♀️", "🤷♂️", "🤷🏻", "🤷🏻♀️", "🤷🏻♂️", "🤷🏼", "🤷🏼♀️", "🤷🏼♂️", "🤷🏽", "🤷🏽♀️", "🤷🏽♂️", "🤷🏾", "🤷🏾♀️", "🤷🏾♂️", "🤷🏿", "🤷🏿♀️", "🤷🏿♂️", "🥷", "🥷🏻", "🥷🏼", "🥷🏽", "🥷🏾", "🥷🏿", "🦸", "🦸♀️", "🦸♂️", "🦸🏻", "🦸🏻♀️", "🦸🏻♂️", "🦸🏼", "🦸🏼♀️", "🦸🏼♂️", "🦸🏽", "🦸🏽♀️", "🦸🏽♂️", "🦸🏾", "🦸🏾♀️", "🦸🏾♂️", "🦸🏿", "🦸🏿♀️", "🦸🏿♂️", "🦹", "🦹♀️", "🦹♂️", "🦹🏻", "🦹🏻♀️", "🦹🏻♂️", "🦹🏼", "🦹🏼♀️", "🦹🏼♂️", "🦹🏽", "🦹🏽♀️", "🦹🏽♂️", "🦹🏾", "🦹🏾♀️", "🦹🏾♂️", "🦹🏿", "🦹🏿♀️", "🦹🏿♂️", "🧏", "🧏♀️", "🧏♂️", "🧏🏻", "🧏🏻♀️", "🧏🏻♂️", "🧏🏼", "🧏🏼♀️", "🧏🏼♂️", "🧏🏽", "🧏🏽♀️", "🧏🏽♂️", "🧏🏾", "🧏🏾♀️", "🧏🏾♂️", "🧏🏿", "🧏🏿♀️", "🧏🏿♂️", "🧑", "🧑⚕️", "🧑⚖️", "🧑✈️", "🧑🌾", "🧑🍳", "🧑🍼", "🧑🎄", "🧑🎓", "🧑🎤", "🧑🎨", "🧑🏫", "🧑🏭", "🧑💻", "🧑💼", "🧑🔧", "🧑🔬", "🧑🚀", "🧑🚒", "🧑🦰", "🧑🦱", "🧑🦲", "🧑🦳", "🧑🏻", "🧑🏻⚕️", "🧑🏻⚖️", "🧑🏻✈️", "🧑🏻🌾", "🧑🏻🍳", "🧑🏻🍼", "🧑🏻🎄", "🧑🏻🎓", "🧑🏻🎤", "🧑🏻🎨", "🧑🏻🏫", "🧑🏻🏭", "🧑🏻💻", "🧑🏻💼", "🧑🏻🔧", "🧑🏻🔬", "🧑🏻🚀", "🧑🏻🚒", "🧑🏻🦰", "🧑🏻🦱", "🧑🏻🦲", "🧑🏻🦳", "🧑🏼", "🧑🏼⚕️", "🧑🏼⚖️", "🧑🏼✈️", "🧑🏼🌾", "🧑🏼🍳", "🧑🏼🍼", "🧑🏼🎄", "🧑🏼🎓", "🧑🏼🎤", "🧑🏼🎨", "🧑🏼🏫", "🧑🏼🏭", "🧑🏼💻", "🧑🏼💼", "🧑🏼🔧", "🧑🏼🔬", "🧑🏼🚀", "🧑🏼🚒", "🧑🏼🦰", "🧑🏼🦱", "🧑🏼🦲", "🧑🏼🦳", "🧑🏽", "🧑🏽⚕️", "🧑🏽⚖️", "🧑🏽✈️", "🧑🏽🌾", "🧑🏽🍳", "🧑🏽🍼", "🧑🏽🎄", "🧑🏽🎓", "🧑🏽🎤", "🧑🏽🎨", "🧑🏽🏫", "🧑🏽🏭", "🧑🏽💻", "🧑🏽💼", "🧑🏽🔧", "🧑🏽🔬", "🧑🏽🚀", "🧑🏽🚒", "🧑🏽🦰", "🧑🏽🦱", "🧑🏽🦲", "🧑🏽🦳", "🧑🏾", "🧑🏾⚕️", "🧑🏾⚖️", "🧑🏾✈️", "🧑🏾🌾", "🧑🏾🍳", "🧑🏾🍼", "🧑🏾🎄", "🧑🏾🎓", "🧑🏾🎤", "🧑🏾🎨", "🧑🏾🏫", "🧑🏾🏭", "🧑🏾💻", "🧑🏾💼", "🧑🏾🔧", "🧑🏾🔬", "🧑🏾🚀", "🧑🏾🚒", "🧑🏾🦰", "🧑🏾🦱", "🧑🏾🦲", "🧑🏾🦳", "🧑🏿", "🧑🏿⚕️", "🧑🏿⚖️", "🧑🏿✈️", "🧑🏿🌾", "🧑🏿🍳", "🧑🏿🍼", "🧑🏿🎄", "🧑🏿🎓", "🧑🏿🎤", "🧑🏿🎨", "🧑🏿🏫", "🧑🏿🏭", "🧑🏿💻", "🧑🏿💼", "🧑🏿🔧", "🧑🏿🔬", "🧑🏿🚀", "🧑🏿🚒", "🧑🏿🦰", "🧑🏿🦱", "🧑🏿🦲", "🧑🏿🦳", "🧒", "🧒🏻", "🧒🏼", "🧒🏽", "🧒🏾", "🧒🏿", "🧓", "🧓🏻", "🧓🏼", "🧓🏽", "🧓🏾", "🧓🏿", "🧔", "🧔♀️", "🧔♂️", "🧔🏻", "🧔🏻♀️", "🧔🏻♂️", "🧔🏼", "🧔🏼♀️", "🧔🏼♂️", "🧔🏽", "🧔🏽♀️", "🧔🏽♂️", "🧔🏾", "🧔🏾♀️", "🧔🏾♂️", "🧔🏿", "🧔🏿♀️", "🧔🏿♂️", "🧕", "🧕🏻", "🧕🏼", "🧕🏽", "🧕🏾", "🧕🏿", "🧙", "🧙♀️", "🧙♂️", "🧙🏻", "🧙🏻♀️", "🧙🏻♂️", "🧙🏼", "🧙🏼♀️", "🧙🏼♂️", "🧙🏽", "🧙🏽♀️", "🧙🏽♂️", "🧙🏾", "🧙🏾♀️", "🧙🏾♂️", "🧙🏿", "🧙🏿♀️", "🧙🏿♂️", "🧚", "🧚♀️", "🧚♂️", "🧚🏻", "🧚🏻♀️", "🧚🏻♂️", "🧚🏼", "🧚🏼♀️", "🧚🏼♂️", "🧚🏽", "🧚🏽♀️", "🧚🏽♂️", "🧚🏾", "🧚🏾♀️", "🧚🏾♂️", "🧚🏿", "🧚🏿♀️", "🧚🏿♂️", "🧛", "🧛♀️", "🧛♂️", "🧛🏻", "🧛🏻♀️", "🧛🏻♂️", "🧛🏼", "🧛🏼♀️", "🧛🏼♂️", "🧛🏽", "🧛🏽♀️", "🧛🏽♂️", "🧛🏾", "🧛🏾♀️", "🧛🏾♂️", "🧛🏿", "🧛🏿♀️", "🧛🏿♂️", "🧜", "🧜♀️", "🧜♂️", "🧜🏻", "🧜🏻♀️", "🧜🏻♂️", "🧜🏼", "🧜🏼♀️", "🧜🏼♂️", "🧜🏽", "🧜🏽♀️", "🧜🏽♂️", "🧜🏾", "🧜🏾♀️", "🧜🏾♂️", "🧜🏿", "🧜🏿♀️", "🧜🏿♂️", "🧝", "🧝♀️", "🧝♂️", "🧝🏻", "🧝🏻♀️", "🧝🏻♂️", "🧝🏼", "🧝🏼♀️", "🧝🏼♂️", "🧝🏽", "🧝🏽♀️", "🧝🏽♂️", "🧝🏾", "🧝🏾♀️", "🧝🏾♂️", "🧝🏿", "🧝🏿♀️", "🧝🏿♂️", "🧞", "🧞♀️", "🧞♂️", "🧟", "🧟♀️", "🧟♂️"], nature: ["☘️", "🌱", "🌲", "🌳", "🌴", "🌵", "🌷", "🌸", "🌹", "🌺", "🌻", "🌼", "🌾", "🌿", "🍀", "🍁", "🍂", "🍃", "🏵️", "🐀", "🐁", "🐂", "🐃", "🐄", "🐅", "🐆", "🐇", "🐈", "🐈⬛", "🐉", "🐊", "🐋", "🐌", "🐍", "🐎", "🐏", "🐐", "🐑", "🐒", "🐓", "🐔", "🐕", "🐕🦺", "🐖", "🐗", "🐘", "🐙", "🐚", "🐛", "🐜", "🐝", "🐞", "🐟", "🐠", "🐡", "🐢", "🐣", "🐤", "🐥", "🐦", "🐧", "🐨", "🐩", "🐪", "🐫", "🐬", "🐭", "🐮", "🐯", "🐰", "🐱", "🐲", "🐳", "🐴", "🐵", "🐶", "🐷", "🐸", "🐹", "🐺", "🐻", "🐻❄️", "🐼", "🐽", "🐾", "🐿️", "💐", "💮", "🕊️", "🕷️", "🕸️", "🥀", "🦁", "🦂", "🦃", "🦄", "🦅", "🦆", "🦇", "🦈", "🦉", "🦊", "🦋", "🦌", "🦍", "🦎", "🦏", "🦒", "🦓", "🦔", "🦕", "🦖", "🦗", "🦘", "🦙", "🦚", "🦛", "🦜", "🦝", "🦟", "🦠", "🦡", "🦢", "🦣", "🦤", "🦥", "🦦", "🦧", "🦨", "🦩", "🦫", "🦬", "🦭", "🦮", "🪰", "🪱", "🪲", "🪳", "🪴", "🪶"], food: ["☕", "🌭", "🌮", "🌯", "🌰", "🌶️", "🌽", "🍄", "🍅", "🍆", "🍇", "🍈", "🍉", "🍊", "🍋", "🍌", "🍍", "🍎", "🍏", "🍐", "🍑", "🍒", "🍓", "🍔", "🍕", "🍖", "🍗", "🍘", "🍙", "🍚", "🍛", "🍜", "🍝", "🍞", "🍟", "🍠", "🍡", "🍢", "🍣", "🍤", "🍥", "🍦", "🍧", "🍨", "🍩", "🍪", "🍫", "🍬", "🍭", "🍮", "🍯", "🍰", "🍱", "🍲", "🍳", "🍴", "🍵", "🍶", "🍷", "🍸", "🍹", "🍺", "🍻", "🍼", "🍽️", "🍾", "🍿", "🎂", "🏺", "🔪", "🥂", "🥃", "🥄", "🥐", "🥑", "🥒", "🥓", "🥔", "🥕", "🥖", "🥗", "🥘", "🥙", "🥚", "🥛", "🥜", "🥝", "🥞", "🥟", "🥠", "🥡", "🥢", "🥣", "🥤", "🥥", "🥦", "🥧", "🥨", "🥩", "🥪", "🥫", "🥬", "🥭", "🥮", "🥯", "🦀", "🦐", "🦑", "🦞", "🦪", "🧀", "🧁", "🧂", "🧃", "🧄", "🧅", "🧆", "🧇", "🧈", "🧉", "🧊", "🧋", "🫐", "🫑", "🫒", "🫓", "🫔", "🫕", "🫖"], travel: ["⌚", "⌛", "⏰", "⏱️", "⏲️", "⏳", "☀️", "☁️", "☂️", "☃️", "☄️", "☔", "♨️", "⚓", "⚡", "⛄", "⛅", "⛈️", "⛩️", "⛪", "⛰️", "⛱️", "⛲", "⛴️", "⛵", "⛺", "⛽", "✈️", "❄️", "⭐", "🌀", "🌁", "🌂", "🌃", "🌄", "🌅", "🌆", "🌇", "🌈", "🌉", "🌊", "🌋", "🌌", "🌍", "🌎", "🌏", "🌐", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌙", "🌚", "🌛", "🌜", "🌝", "🌞", "🌟", "🌠", "🌡️", "🌤️", "🌥️", "🌦️", "🌧️", "🌨️", "🌩️", "🌪️", "🌫️", "🌬️", "🎠", "🎡", "🎢", "🎪", "🏍️", "🏎️", "🏔️", "🏕️", "🏖️", "🏗️", "🏘️", "🏙️", "🏚️", "🏛️", "🏜️", "🏝️", "🏞️", "🏟️", "🏠", "🏡", "🏢", "🏣", "🏤", "🏥", "🏦", "🏨", "🏩", "🏪", "🏫", "🏬", "🏭", "🏯", "🏰", "💈", "💒", "💧", "💺", "🔥", "🕋", "🕌", "🕍", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚", "🕛", "🕜", "🕝", "🕞", "🕟", "🕠", "🕡", "🕢", "🕣", "🕤", "🕥", "🕦", "🕧", "🕰️", "🗺️", "🗻", "🗼", "🗽", "🗾", "🚀", "🚁", "🚂", "🚃", "🚄", "🚅", "🚆", "🚇", "🚈", "🚉", "🚊", "🚋", "🚌", "🚍", "🚎", "🚏", "🚐", "🚑", "🚒", "🚓", "🚔", "🚕", "🚖", "🚗", "🚘", "🚙", "🚚", "🚛", "🚜", "🚝", "🚞", "🚟", "🚠", "🚡", "🚢", "🚤", "🚥", "🚦", "🚧", "🚨", "🚲", "🛎️", "🛑", "🛕", "🛖", "🛢️", "🛣️", "🛤️", "🛥️", "🛩️", "🛫", "🛬", "🛰️", "🛳️", "🛴", "🛵", "🛶", "🛸", "🛹", "🛺", "🛻", "🛼", "🦼", "🦽", "🧭", "🧱", "🧳", "🪂", "🪐", "🪨", "🪵"], activity: ["♟️", "♠️", "♣️", "♥️", "♦️", "⚽", "⚾", "⛳", "⛸️", "✨", "🀄", "🃏", "🎀", "🎁", "🎃", "🎄", "🎆", "🎇", "🎈", "🎉", "🎊", "🎋", "🎍", "🎎", "🎏", "🎐", "🎑", "🎖️", "🎗️", "🎟️", "🎣", "🎨", "🎫", "🎭", "🎮", "🎯", "🎰", "🎱", "🎲", "🎳", "🎴", "🎽", "🎾", "🎿", "🏀", "🏅", "🏆", "🏈", "🏉", "🏏", "🏐", "🏑", "🏒", "🏓", "🏸", "🔮", "🕹️", "🖼️", "🛷", "🤿", "🥅", "🥇", "🥈", "🥉", "🥊", "🥋", "🥌", "🥍", "🥎", "🥏", "🧧", "🧨", "🧩", "🧵", "🧶", "🧸", "🧿", "🪀", "🪁", "🪄", "🪅", "🪆", "🪡", "🪢"], object: ["⌨️", "☎️", "⚒️", "⚔️", "⚖️", "⚗️", "⚙️", "⚰️", "⚱️", "⛏️", "⛑️", "⛓️", "✂️", "✉️", "✏️", "✒️", "🎒", "🎓", "🎙️", "🎚️", "🎛️", "🎞️", "🎤", "🎥", "🎧", "🎩", "🎬", "🎵", "🎶", "🎷", "🎸", "🎹", "🎺", "🎻", "🎼", "🏮", "🏷️", "🏹", "👑", "👒", "👓", "👔", "👕", "👖", "👗", "👘", "👙", "👚", "👛", "👜", "👝", "👞", "👟", "👠", "👡", "👢", "💄", "💉", "💊", "💍", "💎", "💡", "💰", "💳", "💴", "💵", "💶", "💷", "💸", "💹", "💻", "💼", "💽", "💾", "💿", "📀", "📁", "📂", "📃", "📄", "📅", "📆", "📇", "📈", "📉", "📊", "📋", "📌", "📍", "📎", "📏", "📐", "📑", "📒", "📓", "📔", "📕", "📖", "📗", "📘", "📙", "📚", "📜", "📝", "📞", "📟", "📠", "📡", "📢", "📣", "📤", "📥", "📦", "📧", "📨", "📩", "📪", "📫", "📬", "📭", "📮", "📯", "📰", "📱", "📲", "📷", "📸", "📹", "📺", "📻", "📼", "📽️", "📿", "🔇", "🔈", "🔉", "🔊", "🔋", "🔌", "🔍", "🔎", "🔏", "🔐", "🔑", "🔒", "🔓", "🔔", "🔕", "🔖", "🔗", "🔦", "🔧", "🔨", "🔩", "🔫", "🔬", "🔭", "🕯️", "🕶️", "🖇️", "🖊️", "🖋️", "🖌️", "🖍️", "🖥️", "🖨️", "🖱️", "🖲️", "🗂️", "🗃️", "🗄️", "🗑️", "🗒️", "🗓️", "🗜️", "🗝️", "🗞️", "🗡️", "🗳️", "🗿", "🚪", "🚬", "🚽", "🚿", "🛁", "🛋️", "🛍️", "🛏️", "🛒", "🛗", "🛠️", "🛡️", "🥁", "🥻", "🥼", "🥽", "🥾", "🥿", "🦯", "🦺", "🧢", "🧣", "🧤", "🧥", "🧦", "🧪", "🧫", "🧬", "🧮", "🧯", "🧰", "🧲", "🧴", "🧷", "🧹", "🧺", "🧻", "🧼", "🧽", "🧾", "🩰", "🩱", "🩲", "🩳", "🩴", "🩸", "🩹", "🩺", "🪃", "🪑", "🪒", "🪓", "🪔", "🪕", "🪖", "🪗", "🪘", "🪙", "🪚", "🪛", "🪜", "🪝", "🪞", "🪟", "🪠", "🪣", "🪤", "🪥", "🪦", "🪧"], symbol: ["#️⃣", "*️⃣", "0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣", "©️", "®️", "‼️", "⁉️", "™️", "ℹ️", "↔️", "↕️", "↖️", "↗️", "↘️", "↙️", "↩️", "↪️", "⏏️", "⏩", "⏪", "⏫", "⏬", "⏭️", "⏮️", "⏯️", "⏸️", "⏹️", "⏺️", "Ⓜ️", "▪️", "▫️", "▶️", "◀️", "◻️", "◼️", "◽", "◾", "☑️", "☢️", "☣️", "☦️", "☪️", "☮️", "☯️", "☸️", "♀️", "♂️", "♈", "♉", "♊", "♋", "♌", "♍", "♎", "♏", "♐", "♑", "♒", "♓", "♻️", "♾️", "♿", "⚕️", "⚛️", "⚜️", "⚠️", "⚧️", "⚪", "⚫", "⛎", "⛔", "✅", "✔️", "✖️", "✝️", "✡️", "✳️", "✴️", "❇️", "❌", "❎", "❓", "❔", "❕", "❗", "➕", "➖", "➗", "➡️", "➰", "➿", "⤴️", "⤵️", "⬅️", "⬆️", "⬇️", "⬛", "⬜", "⭕", "〰️", "〽️", "㊗️", "㊙️", "🅰️", "🅱️", "🅾️", "🅿️", "🆎", "🆑", "🆒", "🆓", "🆔", "🆕", "🆖", "🆗", "🆘", "🆙", "🆚", "🈁", "🈂️", "🈚", "🈯", "🈲", "🈳", "🈴", "🈵", "🈶", "🈷️", "🈸", "🈹", "🈺", "🉐", "🉑", "🎦", "🏧", "💠", "💱", "💲", "📛", "📳", "📴", "📵", "📶", "🔀", "🔁", "🔂", "🔃", "🔄", "🔅", "🔆", "🔘", "🔙", "🔚", "🔛", "🔜", "🔝", "🔞", "🔟", "🔠", "🔡", "🔢", "🔣", "🔤", "🔯", "🔰", "🔱", "🔲", "🔳", "🔴", "🔵", "🔶", "🔷", "🔸", "🔹", "🔺", "🔻", "🔼", "🔽", "🕉️", "🕎", "🚫", "🚭", "🚮", "🚯", "🚰", "🚱", "🚳", "🚷", "🚸", "🚹", "🚺", "🚻", "🚼", "🚾", "🛂", "🛃", "🛄", "🛅", "🛐", "🟠", "🟡", "🟢", "🟣", "🟤", "🟥", "🟦", "🟧", "🟨", "🟩", "🟪", "🟫"], flag: ["🇦🇨", "🇦🇩", "🇦🇪", "🇦🇫", "🇦🇬", "🇦🇮", "🇦🇱", "🇦🇲", "🇦🇴", "🇦🇶", "🇦🇷", "🇦🇸", "🇦🇹", "🇦🇺", "🇦🇼", "🇦🇽", "🇦🇿", "🇧🇦", "🇧🇧", "🇧🇩", "🇧🇪", "🇧🇫", "🇧🇬", "🇧🇭", "🇧🇮", "🇧🇯", "🇧🇱", "🇧🇲", "🇧🇳", "🇧🇴", "🇧🇶", "🇧🇷", "🇧🇸", "🇧🇹", "🇧🇻", "🇧🇼", "🇧🇾", "🇧🇿", "🇨🇦", "🇨🇨", "🇨🇩", "🇨🇫", "🇨🇬", "🇨🇭", "🇨🇮", "🇨🇰", "🇨🇱", "🇨🇲", "🇨🇳", "🇨🇴", "🇨🇵", "🇨🇷", "🇨🇺", "🇨🇻", "🇨🇼", "🇨🇽", "🇨🇾", "🇨🇿", "🇩🇪", "🇩🇬", "🇩🇯", "🇩🇰", "🇩🇲", "🇩🇴", "🇩🇿", "🇪🇦", "🇪🇨", "🇪🇪", "🇪🇬", "🇪🇭", "🇪🇷", "🇪🇸", "🇪🇹", "🇪🇺", "🇫🇮", "🇫🇯", "🇫🇰", "🇫🇲", "🇫🇴", "🇫🇷", "🇬🇦", "🇬🇧", "🇬🇩", "🇬🇪", "🇬🇫", "🇬🇬", "🇬🇭", "🇬🇮", "🇬🇱", "🇬🇲", "🇬🇳", "🇬🇵", "🇬🇶", "🇬🇷", "🇬🇸", "🇬🇹", "🇬🇺", "🇬🇼", "🇬🇾", "🇭🇰", "🇭🇲", "🇭🇳", "🇭🇷", "🇭🇹", "🇭🇺", "🇮🇨", "🇮🇩", "🇮🇪", "🇮🇱", "🇮🇲", "🇮🇳", "🇮🇴", "🇮🇶", "🇮🇷", "🇮🇸", "🇮🇹", "🇯🇪", "🇯🇲", "🇯🇴", "🇯🇵", "🇰🇪", "🇰🇬", "🇰🇭", "🇰🇮", "🇰🇲", "🇰🇳", "🇰🇵", "🇰🇷", "🇰🇼", "🇰🇾", "🇰🇿", "🇱🇦", "🇱🇧", "🇱🇨", "🇱🇮", "🇱🇰", "🇱🇷", "🇱🇸", "🇱🇹", "🇱🇺", "🇱🇻", "🇱🇾", "🇲🇦", "🇲🇨", "🇲🇩", "🇲🇪", "🇲🇫", "🇲🇬", "🇲🇭", "🇲🇰", "🇲🇱", "🇲🇲", "🇲🇳", "🇲🇴", "🇲🇵", "🇲🇶", "🇲🇷", "🇲🇸", "🇲🇹", "🇲🇺", "🇲🇻", "🇲🇼", "🇲🇽", "🇲🇾", "🇲🇿", "🇳🇦", "🇳🇨", "🇳🇪", "🇳🇫", "🇳🇬", "🇳🇮", "🇳🇱", "🇳🇴", "🇳🇵", "🇳🇷", "🇳🇺", "🇳🇿", "🇴🇲", "🇵🇦", "🇵🇪", "🇵🇫", "🇵🇬", "🇵🇭", "🇵🇰", "🇵🇱", "🇵🇲", "🇵🇳", "🇵🇷", "🇵🇸", "🇵🇹", "🇵🇼", "🇵🇾", "🇶🇦", "🇷🇪", "🇷🇴", "🇷🇸", "🇷🇺", "🇷🇼", "🇸🇦", "🇸🇧", "🇸🇨", "🇸🇩", "🇸🇪", "🇸🇬", "🇸🇭", "🇸🇮", "🇸🇯", "🇸🇰", "🇸🇱", "🇸🇲", "🇸🇳", "🇸🇴", "🇸🇷", "🇸🇸", "🇸🇹", "🇸🇻", "🇸🇽", "🇸🇾", "🇸🇿", "🇹🇦", "🇹🇨", "🇹🇩", "🇹🇫", "🇹🇬", "🇹🇭", "🇹🇯", "🇹🇰", "🇹🇱", "🇹🇲", "🇹🇳", "🇹🇴", "🇹🇷", "🇹🇹", "🇹🇻", "🇹🇼", "🇹🇿", "🇺🇦", "🇺🇬", "🇺🇲", "🇺🇳", "🇺🇸", "🇺🇾", "🇺🇿", "🇻🇦", "🇻🇨", "🇻🇪", "🇻🇬", "🇻🇮", "🇻🇳", "🇻🇺", "🇼🇫", "🇼🇸", "🇽🇰", "🇾🇪", "🇾🇹", "🇿🇦", "🇿🇲", "🇿🇼", "🎌", "🏁", "🏳️", "🏳️⚧️", "🏳️🌈", "🏴", "🏴☠️", "🚩"] };
|
|
15498
|
-
var
|
|
15499
|
-
var
|
|
15500
|
-
var
|
|
15501
|
-
var
|
|
15502
|
-
var pr = [{ alpha2: "AD", alpha3: "AND", numeric: "020" }, { alpha2: "AE", alpha3: "ARE", numeric: "784" }, { alpha2: "AF", alpha3: "AFG", numeric: "004" }, { alpha2: "AG", alpha3: "ATG", numeric: "028" }, { alpha2: "AI", alpha3: "AIA", numeric: "660" }, { alpha2: "AL", alpha3: "ALB", numeric: "008" }, { alpha2: "AM", alpha3: "ARM", numeric: "051" }, { alpha2: "AO", alpha3: "AGO", numeric: "024" }, { alpha2: "AQ", alpha3: "ATA", numeric: "010" }, { alpha2: "AR", alpha3: "ARG", numeric: "032" }, { alpha2: "AS", alpha3: "ASM", numeric: "016" }, { alpha2: "AT", alpha3: "AUT", numeric: "040" }, { alpha2: "AU", alpha3: "AUS", numeric: "036" }, { alpha2: "AW", alpha3: "ABW", numeric: "533" }, { alpha2: "AX", alpha3: "ALA", numeric: "248" }, { alpha2: "AZ", alpha3: "AZE", numeric: "031" }, { alpha2: "BA", alpha3: "BIH", numeric: "070" }, { alpha2: "BB", alpha3: "BRB", numeric: "052" }, { alpha2: "BD", alpha3: "BGD", numeric: "050" }, { alpha2: "BE", alpha3: "BEL", numeric: "056" }, { alpha2: "BF", alpha3: "BFA", numeric: "854" }, { alpha2: "BG", alpha3: "BGR", numeric: "100" }, { alpha2: "BH", alpha3: "BHR", numeric: "048" }, { alpha2: "BI", alpha3: "BDI", numeric: "108" }, { alpha2: "BJ", alpha3: "BEN", numeric: "204" }, { alpha2: "BL", alpha3: "BLM", numeric: "652" }, { alpha2: "BM", alpha3: "BMU", numeric: "060" }, { alpha2: "BN", alpha3: "BRN", numeric: "096" }, { alpha2: "BO", alpha3: "BOL", numeric: "068" }, { alpha2: "BQ", alpha3: "BES", numeric: "535" }, { alpha2: "BR", alpha3: "BRA", numeric: "076" }, { alpha2: "BS", alpha3: "BHS", numeric: "044" }, { alpha2: "BT", alpha3: "BTN", numeric: "064" }, { alpha2: "BV", alpha3: "BVT", numeric: "074" }, { alpha2: "BW", alpha3: "BWA", numeric: "072" }, { alpha2: "BY", alpha3: "BLR", numeric: "112" }, { alpha2: "BZ", alpha3: "BLZ", numeric: "084" }, { alpha2: "CA", alpha3: "CAN", numeric: "124" }, { alpha2: "CC", alpha3: "CCK", numeric: "166" }, { alpha2: "CD", alpha3: "COD", numeric: "180" }, { alpha2: "CF", alpha3: "CAF", numeric: "140" }, { alpha2: "CG", alpha3: "COG", numeric: "178" }, { alpha2: "CH", alpha3: "CHE", numeric: "756" }, { alpha2: "CI", alpha3: "CIV", numeric: "384" }, { alpha2: "CK", alpha3: "COK", numeric: "184" }, { alpha2: "CL", alpha3: "CHL", numeric: "152" }, { alpha2: "CM", alpha3: "CMR", numeric: "120" }, { alpha2: "CN", alpha3: "CHN", numeric: "156" }, { alpha2: "CO", alpha3: "COL", numeric: "170" }, { alpha2: "CR", alpha3: "CRI", numeric: "188" }, { alpha2: "CU", alpha3: "CUB", numeric: "192" }, { alpha2: "CV", alpha3: "CPV", numeric: "132" }, { alpha2: "CW", alpha3: "CUW", numeric: "531" }, { alpha2: "CX", alpha3: "CXR", numeric: "162" }, { alpha2: "CY", alpha3: "CYP", numeric: "196" }, { alpha2: "CZ", alpha3: "CZE", numeric: "203" }, { alpha2: "DE", alpha3: "DEU", numeric: "276" }, { alpha2: "DJ", alpha3: "DJI", numeric: "262" }, { alpha2: "DK", alpha3: "DNK", numeric: "208" }, { alpha2: "DM", alpha3: "DMA", numeric: "212" }, { alpha2: "DO", alpha3: "DOM", numeric: "214" }, { alpha2: "DZ", alpha3: "DZA", numeric: "012" }, { alpha2: "EC", alpha3: "ECU", numeric: "218" }, { alpha2: "EE", alpha3: "EST", numeric: "233" }, { alpha2: "EG", alpha3: "EGY", numeric: "818" }, { alpha2: "EH", alpha3: "ESH", numeric: "732" }, { alpha2: "ER", alpha3: "ERI", numeric: "232" }, { alpha2: "ES", alpha3: "ESP", numeric: "724" }, { alpha2: "ET", alpha3: "ETH", numeric: "231" }, { alpha2: "FI", alpha3: "FIN", numeric: "246" }, { alpha2: "FJ", alpha3: "FJI", numeric: "242" }, { alpha2: "FK", alpha3: "FLK", numeric: "238" }, { alpha2: "FM", alpha3: "FSM", numeric: "583" }, { alpha2: "FO", alpha3: "FRO", numeric: "234" }, { alpha2: "FR", alpha3: "FRA", numeric: "250" }, { alpha2: "GA", alpha3: "GAB", numeric: "266" }, { alpha2: "GB", alpha3: "GBR", numeric: "826" }, { alpha2: "GD", alpha3: "GRD", numeric: "308" }, { alpha2: "GE", alpha3: "GEO", numeric: "268" }, { alpha2: "GF", alpha3: "GUF", numeric: "254" }, { alpha2: "GG", alpha3: "GGY", numeric: "831" }, { alpha2: "GH", alpha3: "GHA", numeric: "288" }, { alpha2: "GI", alpha3: "GIB", numeric: "292" }, { alpha2: "GL", alpha3: "GRL", numeric: "304" }, { alpha2: "GM", alpha3: "GMB", numeric: "270" }, { alpha2: "GN", alpha3: "GIN", numeric: "324" }, { alpha2: "GP", alpha3: "GLP", numeric: "312" }, { alpha2: "GQ", alpha3: "GNQ", numeric: "226" }, { alpha2: "GR", alpha3: "GRC", numeric: "300" }, { alpha2: "GS", alpha3: "SGS", numeric: "239" }, { alpha2: "GT", alpha3: "GTM", numeric: "320" }, { alpha2: "GU", alpha3: "GUM", numeric: "316" }, { alpha2: "GW", alpha3: "GNB", numeric: "624" }, { alpha2: "GY", alpha3: "GUY", numeric: "328" }, { alpha2: "HK", alpha3: "HKG", numeric: "344" }, { alpha2: "HM", alpha3: "HMD", numeric: "334" }, { alpha2: "HN", alpha3: "HND", numeric: "340" }, { alpha2: "HR", alpha3: "HRV", numeric: "191" }, { alpha2: "HT", alpha3: "HTI", numeric: "332" }, { alpha2: "HU", alpha3: "HUN", numeric: "348" }, { alpha2: "ID", alpha3: "IDN", numeric: "360" }, { alpha2: "IE", alpha3: "IRL", numeric: "372" }, { alpha2: "IL", alpha3: "ISR", numeric: "376" }, { alpha2: "IM", alpha3: "IMN", numeric: "833" }, { alpha2: "IN", alpha3: "IND", numeric: "356" }, { alpha2: "IO", alpha3: "IOT", numeric: "086" }, { alpha2: "IQ", alpha3: "IRQ", numeric: "368" }, { alpha2: "IR", alpha3: "IRN", numeric: "364" }, { alpha2: "IS", alpha3: "ISL", numeric: "352" }, { alpha2: "IT", alpha3: "ITA", numeric: "380" }, { alpha2: "JE", alpha3: "JEY", numeric: "832" }, { alpha2: "JM", alpha3: "JAM", numeric: "388" }, { alpha2: "JO", alpha3: "JOR", numeric: "400" }, { alpha2: "JP", alpha3: "JPN", numeric: "392" }, { alpha2: "KE", alpha3: "KEN", numeric: "404" }, { alpha2: "KG", alpha3: "KGZ", numeric: "417" }, { alpha2: "KH", alpha3: "KHM", numeric: "116" }, { alpha2: "KI", alpha3: "KIR", numeric: "296" }, { alpha2: "KM", alpha3: "COM", numeric: "174" }, { alpha2: "KN", alpha3: "KNA", numeric: "659" }, { alpha2: "KP", alpha3: "PRK", numeric: "408" }, { alpha2: "KR", alpha3: "KOR", numeric: "410" }, { alpha2: "KW", alpha3: "KWT", numeric: "414" }, { alpha2: "KY", alpha3: "CYM", numeric: "136" }, { alpha2: "KZ", alpha3: "KAZ", numeric: "398" }, { alpha2: "LA", alpha3: "LAO", numeric: "418" }, { alpha2: "LB", alpha3: "LBN", numeric: "422" }, { alpha2: "LC", alpha3: "LCA", numeric: "662" }, { alpha2: "LI", alpha3: "LIE", numeric: "438" }, { alpha2: "LK", alpha3: "LKA", numeric: "144" }, { alpha2: "LR", alpha3: "LBR", numeric: "430" }, { alpha2: "LS", alpha3: "LSO", numeric: "426" }, { alpha2: "LT", alpha3: "LTU", numeric: "440" }, { alpha2: "LU", alpha3: "LUX", numeric: "442" }, { alpha2: "LV", alpha3: "LVA", numeric: "428" }, { alpha2: "LY", alpha3: "LBY", numeric: "434" }, { alpha2: "MA", alpha3: "MAR", numeric: "504" }, { alpha2: "MC", alpha3: "MCO", numeric: "492" }, { alpha2: "MD", alpha3: "MDA", numeric: "498" }, { alpha2: "ME", alpha3: "MNE", numeric: "499" }, { alpha2: "MF", alpha3: "MAF", numeric: "663" }, { alpha2: "MG", alpha3: "MDG", numeric: "450" }, { alpha2: "MH", alpha3: "MHL", numeric: "584" }, { alpha2: "MK", alpha3: "MKD", numeric: "807" }, { alpha2: "ML", alpha3: "MLI", numeric: "466" }, { alpha2: "MM", alpha3: "MMR", numeric: "104" }, { alpha2: "MN", alpha3: "MNG", numeric: "496" }, { alpha2: "MO", alpha3: "MAC", numeric: "446" }, { alpha2: "MP", alpha3: "MNP", numeric: "580" }, { alpha2: "MQ", alpha3: "MTQ", numeric: "474" }, { alpha2: "MR", alpha3: "MRT", numeric: "478" }, { alpha2: "MS", alpha3: "MSR", numeric: "500" }, { alpha2: "MT", alpha3: "MLT", numeric: "470" }, { alpha2: "MU", alpha3: "MUS", numeric: "480" }, { alpha2: "MV", alpha3: "MDV", numeric: "462" }, { alpha2: "MW", alpha3: "MWI", numeric: "454" }, { alpha2: "MX", alpha3: "MEX", numeric: "484" }, { alpha2: "MY", alpha3: "MYS", numeric: "458" }, { alpha2: "MZ", alpha3: "MOZ", numeric: "508" }, { alpha2: "NA", alpha3: "NAM", numeric: "516" }, { alpha2: "NC", alpha3: "NCL", numeric: "540" }, { alpha2: "NE", alpha3: "NER", numeric: "562" }, { alpha2: "NF", alpha3: "NFK", numeric: "574" }, { alpha2: "NG", alpha3: "NGA", numeric: "566" }, { alpha2: "NI", alpha3: "NIC", numeric: "558" }, { alpha2: "NL", alpha3: "NLD", numeric: "528" }, { alpha2: "NO", alpha3: "NOR", numeric: "578" }, { alpha2: "NP", alpha3: "NPL", numeric: "524" }, { alpha2: "NR", alpha3: "NRU", numeric: "520" }, { alpha2: "NU", alpha3: "NIU", numeric: "570" }, { alpha2: "NZ", alpha3: "NZL", numeric: "554" }, { alpha2: "OM", alpha3: "OMN", numeric: "512" }, { alpha2: "PA", alpha3: "PAN", numeric: "591" }, { alpha2: "PE", alpha3: "PER", numeric: "604" }, { alpha2: "PF", alpha3: "PYF", numeric: "258" }, { alpha2: "PG", alpha3: "PNG", numeric: "598" }, { alpha2: "PH", alpha3: "PHL", numeric: "608" }, { alpha2: "PK", alpha3: "PAK", numeric: "586" }, { alpha2: "PL", alpha3: "POL", numeric: "616" }, { alpha2: "PM", alpha3: "SPM", numeric: "666" }, { alpha2: "PN", alpha3: "PCN", numeric: "612" }, { alpha2: "PR", alpha3: "PRI", numeric: "630" }, { alpha2: "PS", alpha3: "PSE", numeric: "275" }, { alpha2: "PT", alpha3: "PRT", numeric: "620" }, { alpha2: "PW", alpha3: "PLW", numeric: "585" }, { alpha2: "PY", alpha3: "PRY", numeric: "600" }, { alpha2: "QA", alpha3: "QAT", numeric: "634" }, { alpha2: "RE", alpha3: "REU", numeric: "638" }, { alpha2: "RO", alpha3: "ROU", numeric: "642" }, { alpha2: "RS", alpha3: "SRB", numeric: "688" }, { alpha2: "RU", alpha3: "RUS", numeric: "643" }, { alpha2: "RW", alpha3: "RWA", numeric: "646" }, { alpha2: "SA", alpha3: "SAU", numeric: "682" }, { alpha2: "SB", alpha3: "SLB", numeric: "090" }, { alpha2: "SC", alpha3: "SYC", numeric: "690" }, { alpha2: "SD", alpha3: "SDN", numeric: "729" }, { alpha2: "SE", alpha3: "SWE", numeric: "752" }, { alpha2: "SG", alpha3: "SGP", numeric: "702" }, { alpha2: "SH", alpha3: "SHN", numeric: "654" }, { alpha2: "SI", alpha3: "SVN", numeric: "705" }, { alpha2: "SJ", alpha3: "SJM", numeric: "744" }, { alpha2: "SK", alpha3: "SVK", numeric: "703" }, { alpha2: "SL", alpha3: "SLE", numeric: "694" }, { alpha2: "SM", alpha3: "SMR", numeric: "674" }, { alpha2: "SN", alpha3: "SEN", numeric: "686" }, { alpha2: "SO", alpha3: "SOM", numeric: "706" }, { alpha2: "SR", alpha3: "SUR", numeric: "740" }, { alpha2: "SS", alpha3: "SSD", numeric: "728" }, { alpha2: "ST", alpha3: "STP", numeric: "678" }, { alpha2: "SV", alpha3: "SLV", numeric: "222" }, { alpha2: "SX", alpha3: "SXM", numeric: "534" }, { alpha2: "SY", alpha3: "SYR", numeric: "760" }, { alpha2: "SZ", alpha3: "SWZ", numeric: "748" }, { alpha2: "TC", alpha3: "TCA", numeric: "796" }, { alpha2: "TD", alpha3: "TCD", numeric: "148" }, { alpha2: "TF", alpha3: "ATF", numeric: "260" }, { alpha2: "TG", alpha3: "TGO", numeric: "768" }, { alpha2: "TH", alpha3: "THA", numeric: "764" }, { alpha2: "TJ", alpha3: "TJK", numeric: "762" }, { alpha2: "TK", alpha3: "TKL", numeric: "772" }, { alpha2: "TL", alpha3: "TLS", numeric: "626" }, { alpha2: "TM", alpha3: "TKM", numeric: "795" }, { alpha2: "TN", alpha3: "TUN", numeric: "788" }, { alpha2: "TO", alpha3: "TON", numeric: "776" }, { alpha2: "TR", alpha3: "TUR", numeric: "792" }, { alpha2: "TT", alpha3: "TTO", numeric: "780" }, { alpha2: "TV", alpha3: "TUV", numeric: "798" }, { alpha2: "TW", alpha3: "TWN", numeric: "158" }, { alpha2: "TZ", alpha3: "TZA", numeric: "834" }, { alpha2: "UA", alpha3: "UKR", numeric: "804" }, { alpha2: "UG", alpha3: "UGA", numeric: "800" }, { alpha2: "UM", alpha3: "UMI", numeric: "581" }, { alpha2: "US", alpha3: "USA", numeric: "840" }, { alpha2: "UY", alpha3: "URY", numeric: "858" }, { alpha2: "UZ", alpha3: "UZB", numeric: "860" }, { alpha2: "VA", alpha3: "VAT", numeric: "336" }, { alpha2: "VC", alpha3: "VCT", numeric: "670" }, { alpha2: "VE", alpha3: "VEN", numeric: "862" }, { alpha2: "VG", alpha3: "VGB", numeric: "092" }, { alpha2: "VI", alpha3: "VIR", numeric: "850" }, { alpha2: "VN", alpha3: "VNM", numeric: "704" }, { alpha2: "VU", alpha3: "VUT", numeric: "548" }, { alpha2: "WF", alpha3: "WLF", numeric: "876" }, { alpha2: "WS", alpha3: "WSM", numeric: "882" }, { alpha2: "YE", alpha3: "YEM", numeric: "887" }, { alpha2: "YT", alpha3: "MYT", numeric: "175" }, { alpha2: "ZA", alpha3: "ZAF", numeric: "710" }, { alpha2: "ZM", alpha3: "ZMB", numeric: "894" }, { alpha2: "ZW", alpha3: "ZWE", numeric: "716" }];
|
|
15503
|
-
var
|
|
15504
|
-
var
|
|
15505
|
-
var
|
|
15506
|
-
var
|
|
15507
|
-
var
|
|
15508
|
-
var
|
|
15509
|
-
var f = new
|
|
15516
|
+
var qe = ["Academy Color Encoding System (ACES)", "Adobe RGB", "Adobe Wide Gamut RGB", "British Standard Colour (BS)", "CIE 1931 XYZ", "CIELAB", "CIELUV", "CIEUVW", "CMY", "CMYK", "DCI-P3", "Display-P3", "Federal Standard 595C", "HKS", "HSL", "HSLA", "HSLuv", "HSV", "HWB", "LCh", "LMS", "Munsell Color System", "Natural Color System (NSC)", "Pantone Matching System (PMS)", "ProPhoto RGB Color Space", "RAL", "RG", "RGBA", "RGK", "Rec. 2020", "Rec. 2100", "Rec. 601", "Rec. 709", "Uniform Color Spaces (UCSs)", "YDbDr", "YIQ", "YPbPr", "sRGB", "sYCC", "scRGB", "xvYCC"];
|
|
15517
|
+
var qr = { space: qe }, er = qr;
|
|
15518
|
+
var rr = ["ascii_bin", "ascii_general_ci", "cp1250_bin", "cp1250_general_ci", "utf8_bin", "utf8_general_ci", "utf8_unicode_ci"];
|
|
15519
|
+
var tr = ["ARCHIVE", "BLACKHOLE", "CSV", "InnoDB", "MEMORY", "MyISAM"];
|
|
15520
|
+
var ar = ["bigint", "binary", "bit", "blob", "boolean", "date", "datetime", "decimal", "double", "enum", "float", "geometry", "int", "mediumint", "point", "real", "serial", "set", "smallint", "text", "time", "timestamp", "tinyint", "varchar"];
|
|
15521
|
+
var et$1 = { collation: rr, engine: tr, type: ar }, nr = et$1;
|
|
15522
|
+
var _ = ["Africa/Abidjan", "Africa/Accra", "Africa/Addis_Ababa", "Africa/Algiers", "Africa/Asmara", "Africa/Bamako", "Africa/Bangui", "Africa/Banjul", "Africa/Bissau", "Africa/Blantyre", "Africa/Brazzaville", "Africa/Bujumbura", "Africa/Cairo", "Africa/Casablanca", "Africa/Ceuta", "Africa/Conakry", "Africa/Dakar", "Africa/Dar_es_Salaam", "Africa/Djibouti", "Africa/Douala", "Africa/El_Aaiun", "Africa/Freetown", "Africa/Gaborone", "Africa/Harare", "Africa/Johannesburg", "Africa/Juba", "Africa/Kampala", "Africa/Khartoum", "Africa/Kigali", "Africa/Kinshasa", "Africa/Lagos", "Africa/Libreville", "Africa/Lome", "Africa/Luanda", "Africa/Lubumbashi", "Africa/Lusaka", "Africa/Malabo", "Africa/Maputo", "Africa/Maseru", "Africa/Mbabane", "Africa/Mogadishu", "Africa/Monrovia", "Africa/Nairobi", "Africa/Ndjamena", "Africa/Niamey", "Africa/Nouakchott", "Africa/Ouagadougou", "Africa/Porto-Novo", "Africa/Sao_Tome", "Africa/Tripoli", "Africa/Tunis", "Africa/Windhoek", "America/Adak", "America/Anchorage", "America/Anguilla", "America/Antigua", "America/Araguaina", "America/Argentina/Buenos_Aires", "America/Argentina/Catamarca", "America/Argentina/Cordoba", "America/Argentina/Jujuy", "America/Argentina/La_Rioja", "America/Argentina/Mendoza", "America/Argentina/Rio_Gallegos", "America/Argentina/Salta", "America/Argentina/San_Juan", "America/Argentina/San_Luis", "America/Argentina/Tucuman", "America/Argentina/Ushuaia", "America/Aruba", "America/Asuncion", "America/Atikokan", "America/Bahia", "America/Bahia_Banderas", "America/Barbados", "America/Belem", "America/Belize", "America/Blanc-Sablon", "America/Boa_Vista", "America/Bogota", "America/Boise", "America/Cambridge_Bay", "America/Campo_Grande", "America/Cancun", "America/Caracas", "America/Cayenne", "America/Cayman", "America/Chicago", "America/Chihuahua", "America/Ciudad_Juarez", "America/Costa_Rica", "America/Creston", "America/Cuiaba", "America/Curacao", "America/Danmarkshavn", "America/Dawson", "America/Dawson_Creek", "America/Denver", "America/Detroit", "America/Dominica", "America/Edmonton", "America/Eirunepe", "America/El_Salvador", "America/Fort_Nelson", "America/Fortaleza", "America/Glace_Bay", "America/Goose_Bay", "America/Grand_Turk", "America/Grenada", "America/Guadeloupe", "America/Guatemala", "America/Guayaquil", "America/Guyana", "America/Halifax", "America/Havana", "America/Hermosillo", "America/Indiana/Indianapolis", "America/Indiana/Knox", "America/Indiana/Marengo", "America/Indiana/Petersburg", "America/Indiana/Tell_City", "America/Indiana/Vevay", "America/Indiana/Vincennes", "America/Indiana/Winamac", "America/Inuvik", "America/Iqaluit", "America/Jamaica", "America/Juneau", "America/Kentucky/Louisville", "America/Kentucky/Monticello", "America/Kralendijk", "America/La_Paz", "America/Lima", "America/Los_Angeles", "America/Lower_Princes", "America/Maceio", "America/Managua", "America/Manaus", "America/Marigot", "America/Martinique", "America/Matamoros", "America/Mazatlan", "America/Menominee", "America/Merida", "America/Metlakatla", "America/Mexico_City", "America/Miquelon", "America/Moncton", "America/Monterrey", "America/Montevideo", "America/Montserrat", "America/Nassau", "America/New_York", "America/Nome", "America/Noronha", "America/North_Dakota/Beulah", "America/North_Dakota/Center", "America/North_Dakota/New_Salem", "America/Nuuk", "America/Ojinaga", "America/Panama", "America/Paramaribo", "America/Phoenix", "America/Port-au-Prince", "America/Port_of_Spain", "America/Porto_Velho", "America/Puerto_Rico", "America/Punta_Arenas", "America/Rankin_Inlet", "America/Recife", "America/Regina", "America/Resolute", "America/Rio_Branco", "America/Santarem", "America/Santiago", "America/Santo_Domingo", "America/Sao_Paulo", "America/Scoresbysund", "America/Sitka", "America/St_Barthelemy", "America/St_Johns", "America/St_Kitts", "America/St_Lucia", "America/St_Thomas", "America/St_Vincent", "America/Swift_Current", "America/Tegucigalpa", "America/Thule", "America/Tijuana", "America/Toronto", "America/Tortola", "America/Vancouver", "America/Whitehorse", "America/Winnipeg", "America/Yakutat", "America/Yellowknife", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Macquarie", "Antarctica/Mawson", "Antarctica/McMurdo", "Antarctica/Palmer", "Antarctica/Rothera", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok", "Arctic/Longyearbyen", "Asia/Aden", "Asia/Almaty", "Asia/Amman", "Asia/Anadyr", "Asia/Aqtau", "Asia/Aqtobe", "Asia/Ashgabat", "Asia/Atyrau", "Asia/Baghdad", "Asia/Bahrain", "Asia/Baku", "Asia/Bangkok", "Asia/Barnaul", "Asia/Beirut", "Asia/Bishkek", "Asia/Brunei", "Asia/Chita", "Asia/Choibalsan", "Asia/Colombo", "Asia/Damascus", "Asia/Dhaka", "Asia/Dili", "Asia/Dubai", "Asia/Dushanbe", "Asia/Famagusta", "Asia/Gaza", "Asia/Hebron", "Asia/Ho_Chi_Minh", "Asia/Hong_Kong", "Asia/Hovd", "Asia/Irkutsk", "Asia/Jakarta", "Asia/Jayapura", "Asia/Jerusalem", "Asia/Kabul", "Asia/Kamchatka", "Asia/Karachi", "Asia/Kathmandu", "Asia/Khandyga", "Asia/Kolkata", "Asia/Krasnoyarsk", "Asia/Kuala_Lumpur", "Asia/Kuching", "Asia/Kuwait", "Asia/Macau", "Asia/Magadan", "Asia/Makassar", "Asia/Manila", "Asia/Muscat", "Asia/Nicosia", "Asia/Novokuznetsk", "Asia/Novosibirsk", "Asia/Omsk", "Asia/Oral", "Asia/Phnom_Penh", "Asia/Pontianak", "Asia/Pyongyang", "Asia/Qatar", "Asia/Qostanay", "Asia/Qyzylorda", "Asia/Riyadh", "Asia/Sakhalin", "Asia/Samarkand", "Asia/Seoul", "Asia/Shanghai", "Asia/Singapore", "Asia/Srednekolymsk", "Asia/Taipei", "Asia/Tashkent", "Asia/Tbilisi", "Asia/Tehran", "Asia/Thimphu", "Asia/Tokyo", "Asia/Tomsk", "Asia/Ulaanbaatar", "Asia/Urumqi", "Asia/Ust-Nera", "Asia/Vientiane", "Asia/Vladivostok", "Asia/Yakutsk", "Asia/Yangon", "Asia/Yekaterinburg", "Asia/Yerevan", "Atlantic/Azores", "Atlantic/Bermuda", "Atlantic/Canary", "Atlantic/Cape_Verde", "Atlantic/Faroe", "Atlantic/Madeira", "Atlantic/Reykjavik", "Atlantic/South_Georgia", "Atlantic/St_Helena", "Atlantic/Stanley", "Australia/Adelaide", "Australia/Brisbane", "Australia/Broken_Hill", "Australia/Darwin", "Australia/Eucla", "Australia/Hobart", "Australia/Lindeman", "Australia/Lord_Howe", "Australia/Melbourne", "Australia/Perth", "Australia/Sydney", "Europe/Amsterdam", "Europe/Andorra", "Europe/Astrakhan", "Europe/Athens", "Europe/Belgrade", "Europe/Berlin", "Europe/Bratislava", "Europe/Brussels", "Europe/Bucharest", "Europe/Budapest", "Europe/Busingen", "Europe/Chisinau", "Europe/Copenhagen", "Europe/Dublin", "Europe/Gibraltar", "Europe/Guernsey", "Europe/Helsinki", "Europe/Isle_of_Man", "Europe/Istanbul", "Europe/Jersey", "Europe/Kaliningrad", "Europe/Kirov", "Europe/Kyiv", "Europe/Lisbon", "Europe/Ljubljana", "Europe/London", "Europe/Luxembourg", "Europe/Madrid", "Europe/Malta", "Europe/Mariehamn", "Europe/Minsk", "Europe/Monaco", "Europe/Moscow", "Europe/Oslo", "Europe/Paris", "Europe/Podgorica", "Europe/Prague", "Europe/Riga", "Europe/Rome", "Europe/Samara", "Europe/San_Marino", "Europe/Sarajevo", "Europe/Saratov", "Europe/Simferopol", "Europe/Skopje", "Europe/Sofia", "Europe/Stockholm", "Europe/Tallinn", "Europe/Tirane", "Europe/Ulyanovsk", "Europe/Vaduz", "Europe/Vatican", "Europe/Vienna", "Europe/Vilnius", "Europe/Volgograd", "Europe/Warsaw", "Europe/Zagreb", "Europe/Zurich", "Indian/Antananarivo", "Indian/Chagos", "Indian/Christmas", "Indian/Cocos", "Indian/Comoro", "Indian/Kerguelen", "Indian/Mahe", "Indian/Maldives", "Indian/Mauritius", "Indian/Mayotte", "Indian/Reunion", "Pacific/Apia", "Pacific/Auckland", "Pacific/Bougainville", "Pacific/Chatham", "Pacific/Chuuk", "Pacific/Easter", "Pacific/Efate", "Pacific/Fakaofo", "Pacific/Fiji", "Pacific/Funafuti", "Pacific/Galapagos", "Pacific/Gambier", "Pacific/Guadalcanal", "Pacific/Guam", "Pacific/Honolulu", "Pacific/Kanton", "Pacific/Kiritimati", "Pacific/Kosrae", "Pacific/Kwajalein", "Pacific/Majuro", "Pacific/Marquesas", "Pacific/Midway", "Pacific/Nauru", "Pacific/Niue", "Pacific/Norfolk", "Pacific/Noumea", "Pacific/Pago_Pago", "Pacific/Palau", "Pacific/Pitcairn", "Pacific/Pohnpei", "Pacific/Port_Moresby", "Pacific/Rarotonga", "Pacific/Saipan", "Pacific/Tahiti", "Pacific/Tarawa", "Pacific/Tongatapu", "Pacific/Wake", "Pacific/Wallis"];
|
|
15523
|
+
var rt = { time_zone: _ }, ir = rt;
|
|
15524
|
+
var or = ["ADP", "AGP", "AI", "API", "ASCII", "CLI", "COM", "CSS", "DNS", "DRAM", "EXE", "FTP", "GB", "HDD", "HEX", "HTTP", "IB", "IP", "JBOD", "JSON", "OCR", "PCI", "PNG", "RAM", "RSS", "SAS", "SCSI", "SDD", "SMS", "SMTP", "SQL", "SSD", "SSL", "TCP", "THX", "TLS", "UDP", "USB", "UTF8", "VGA", "XML", "XSS"];
|
|
15525
|
+
var tt = { abbreviation: or }, sr = tt;
|
|
15526
|
+
var cr = { smiley: ["☠️", "☹️", "☺️", "❣️", "❤️", "❤️🔥", "❤️🩹", "👁️🗨️", "👹", "👺", "👻", "👽", "👾", "👿", "💀", "💋", "💌", "💓", "💔", "💕", "💖", "💗", "💘", "💙", "💚", "💛", "💜", "💝", "💞", "💟", "💢", "💣", "💤", "💥", "💦", "💨", "💩", "💫", "💬", "💭", "💯", "🕳️", "🖤", "🗨️", "🗯️", "😀", "😁", "😂", "😃", "😄", "😅", "😆", "😇", "😈", "😉", "😊", "😋", "😌", "😍", "😎", "😏", "😐", "😑", "😒", "😓", "😔", "😕", "😖", "😗", "😘", "😙", "😚", "😛", "😜", "😝", "😞", "😟", "😠", "😡", "😢", "😣", "😤", "😥", "😦", "😧", "😨", "😩", "😪", "😫", "😬", "😭", "😮", "😮💨", "😯", "😰", "😱", "😲", "😳", "😴", "😵", "😵💫", "😶", "😶🌫️", "😷", "😸", "😹", "😺", "😻", "😼", "😽", "😾", "😿", "🙀", "🙁", "🙂", "🙃", "🙄", "🙈", "🙉", "🙊", "🤍", "🤎", "🤐", "🤑", "🤒", "🤓", "🤔", "🤕", "🤖", "🤗", "🤠", "🤡", "🤢", "🤣", "🤤", "🤥", "🤧", "🤨", "🤩", "🤪", "🤫", "🤬", "🤭", "🤮", "🤯", "🥰", "🥱", "🥲", "🥳", "🥴", "🥵", "🥶", "🥸", "🥺", "🧐", "🧡"], body: ["☝🏻", "☝🏼", "☝🏽", "☝🏾", "☝🏿", "☝️", "✊", "✊🏻", "✊🏼", "✊🏽", "✊🏾", "✊🏿", "✋", "✋🏻", "✋🏼", "✋🏽", "✋🏾", "✋🏿", "✌🏻", "✌🏼", "✌🏽", "✌🏾", "✌🏿", "✌️", "✍🏻", "✍🏼", "✍🏽", "✍🏾", "✍🏿", "✍️", "👀", "👁️", "👂", "👂🏻", "👂🏼", "👂🏽", "👂🏾", "👂🏿", "👃", "👃🏻", "👃🏼", "👃🏽", "👃🏾", "👃🏿", "👄", "👅", "👆", "👆🏻", "👆🏼", "👆🏽", "👆🏾", "👆🏿", "👇", "👇🏻", "👇🏼", "👇🏽", "👇🏾", "👇🏿", "👈", "👈🏻", "👈🏼", "👈🏽", "👈🏾", "👈🏿", "👉", "👉🏻", "👉🏼", "👉🏽", "👉🏾", "👉🏿", "👊", "👊🏻", "👊🏼", "👊🏽", "👊🏾", "👊🏿", "👋", "👋🏻", "👋🏼", "👋🏽", "👋🏾", "👋🏿", "👌", "👌🏻", "👌🏼", "👌🏽", "👌🏾", "👌🏿", "👍", "👍🏻", "👍🏼", "👍🏽", "👍🏾", "👍🏿", "👎", "👎🏻", "👎🏼", "👎🏽", "👎🏾", "👎🏿", "👏", "👏🏻", "👏🏼", "👏🏽", "👏🏾", "👏🏿", "👐", "👐🏻", "👐🏼", "👐🏽", "👐🏾", "👐🏿", "💅", "💅🏻", "💅🏼", "💅🏽", "💅🏾", "💅🏿", "💪", "💪🏻", "💪🏼", "💪🏽", "💪🏾", "💪🏿", "🖐🏻", "🖐🏼", "🖐🏽", "🖐🏾", "🖐🏿", "🖐️", "🖕", "🖕🏻", "🖕🏼", "🖕🏽", "🖕🏾", "🖕🏿", "🖖", "🖖🏻", "🖖🏼", "🖖🏽", "🖖🏾", "🖖🏿", "🙌", "🙌🏻", "🙌🏼", "🙌🏽", "🙌🏾", "🙌🏿", "🙏", "🙏🏻", "🙏🏼", "🙏🏽", "🙏🏾", "🙏🏿", "🤌", "🤌🏻", "🤌🏼", "🤌🏽", "🤌🏾", "🤌🏿", "🤏", "🤏🏻", "🤏🏼", "🤏🏽", "🤏🏾", "🤏🏿", "🤘", "🤘🏻", "🤘🏼", "🤘🏽", "🤘🏾", "🤘🏿", "🤙", "🤙🏻", "🤙🏼", "🤙🏽", "🤙🏾", "🤙🏿", "🤚", "🤚🏻", "🤚🏼", "🤚🏽", "🤚🏾", "🤚🏿", "🤛", "🤛🏻", "🤛🏼", "🤛🏽", "🤛🏾", "🤛🏿", "🤜", "🤜🏻", "🤜🏼", "🤜🏽", "🤜🏾", "🤜🏿", "🤝", "🤞", "🤞🏻", "🤞🏼", "🤞🏽", "🤞🏾", "🤞🏿", "🤟", "🤟🏻", "🤟🏼", "🤟🏽", "🤟🏾", "🤟🏿", "🤲", "🤲🏻", "🤲🏼", "🤲🏽", "🤲🏾", "🤲🏿", "🤳", "🤳🏻", "🤳🏼", "🤳🏽", "🤳🏾", "🤳🏿", "🦴", "🦵", "🦵🏻", "🦵🏼", "🦵🏽", "🦵🏾", "🦵🏿", "🦶", "🦶🏻", "🦶🏼", "🦶🏽", "🦶🏾", "🦶🏿", "🦷", "🦻", "🦻🏻", "🦻🏼", "🦻🏽", "🦻🏾", "🦻🏿", "🦾", "🦿", "🧠", "🫀", "🫁"], person: ["🎅", "🎅🏻", "🎅🏼", "🎅🏽", "🎅🏾", "🎅🏿", "👦", "👦🏻", "👦🏼", "👦🏽", "👦🏾", "👦🏿", "👧", "👧🏻", "👧🏼", "👧🏽", "👧🏾", "👧🏿", "👨", "👨⚕️", "👨⚖️", "👨✈️", "👨🌾", "👨🍳", "👨🍼", "👨🎓", "👨🎤", "👨🎨", "👨🏫", "👨🏭", "👨💻", "👨💼", "👨🔧", "👨🔬", "👨🚀", "👨🚒", "👨🦰", "👨🦱", "👨🦲", "👨🦳", "👨🏻", "👨🏻⚕️", "👨🏻⚖️", "👨🏻✈️", "👨🏻🌾", "👨🏻🍳", "👨🏻🍼", "👨🏻🎓", "👨🏻🎤", "👨🏻🎨", "👨🏻🏫", "👨🏻🏭", "👨🏻💻", "👨🏻💼", "👨🏻🔧", "👨🏻🔬", "👨🏻🚀", "👨🏻🚒", "👨🏻🦰", "👨🏻🦱", "👨🏻🦲", "👨🏻🦳", "👨🏼", "👨🏼⚕️", "👨🏼⚖️", "👨🏼✈️", "👨🏼🌾", "👨🏼🍳", "👨🏼🍼", "👨🏼🎓", "👨🏼🎤", "👨🏼🎨", "👨🏼🏫", "👨🏼🏭", "👨🏼💻", "👨🏼💼", "👨🏼🔧", "👨🏼🔬", "👨🏼🚀", "👨🏼🚒", "👨🏼🦰", "👨🏼🦱", "👨🏼🦲", "👨🏼🦳", "👨🏽", "👨🏽⚕️", "👨🏽⚖️", "👨🏽✈️", "👨🏽🌾", "👨🏽🍳", "👨🏽🍼", "👨🏽🎓", "👨🏽🎤", "👨🏽🎨", "👨🏽🏫", "👨🏽🏭", "👨🏽💻", "👨🏽💼", "👨🏽🔧", "👨🏽🔬", "👨🏽🚀", "👨🏽🚒", "👨🏽🦰", "👨🏽🦱", "👨🏽🦲", "👨🏽🦳", "👨🏾", "👨🏾⚕️", "👨🏾⚖️", "👨🏾✈️", "👨🏾🌾", "👨🏾🍳", "👨🏾🍼", "👨🏾🎓", "👨🏾🎤", "👨🏾🎨", "👨🏾🏫", "👨🏾🏭", "👨🏾💻", "👨🏾💼", "👨🏾🔧", "👨🏾🔬", "👨🏾🚀", "👨🏾🚒", "👨🏾🦰", "👨🏾🦱", "👨🏾🦲", "👨🏾🦳", "👨🏿", "👨🏿⚕️", "👨🏿⚖️", "👨🏿✈️", "👨🏿🌾", "👨🏿🍳", "👨🏿🍼", "👨🏿🎓", "👨🏿🎤", "👨🏿🎨", "👨🏿🏫", "👨🏿🏭", "👨🏿💻", "👨🏿💼", "👨🏿🔧", "👨🏿🔬", "👨🏿🚀", "👨🏿🚒", "👨🏿🦰", "👨🏿🦱", "👨🏿🦲", "👨🏿🦳", "👩", "👩⚕️", "👩⚖️", "👩✈️", "👩🌾", "👩🍳", "👩🍼", "👩🎓", "👩🎤", "👩🎨", "👩🏫", "👩🏭", "👩💻", "👩💼", "👩🔧", "👩🔬", "👩🚀", "👩🚒", "👩🦰", "👩🦱", "👩🦲", "👩🦳", "👩🏻", "👩🏻⚕️", "👩🏻⚖️", "👩🏻✈️", "👩🏻🌾", "👩🏻🍳", "👩🏻🍼", "👩🏻🎓", "👩🏻🎤", "👩🏻🎨", "👩🏻🏫", "👩🏻🏭", "👩🏻💻", "👩🏻💼", "👩🏻🔧", "👩🏻🔬", "👩🏻🚀", "👩🏻🚒", "👩🏻🦰", "👩🏻🦱", "👩🏻🦲", "👩🏻🦳", "👩🏼", "👩🏼⚕️", "👩🏼⚖️", "👩🏼✈️", "👩🏼🌾", "👩🏼🍳", "👩🏼🍼", "👩🏼🎓", "👩🏼🎤", "👩🏼🎨", "👩🏼🏫", "👩🏼🏭", "👩🏼💻", "👩🏼💼", "👩🏼🔧", "👩🏼🔬", "👩🏼🚀", "👩🏼🚒", "👩🏼🦰", "👩🏼🦱", "👩🏼🦲", "👩🏼🦳", "👩🏽", "👩🏽⚕️", "👩🏽⚖️", "👩🏽✈️", "👩🏽🌾", "👩🏽🍳", "👩🏽🍼", "👩🏽🎓", "👩🏽🎤", "👩🏽🎨", "👩🏽🏫", "👩🏽🏭", "👩🏽💻", "👩🏽💼", "👩🏽🔧", "👩🏽🔬", "👩🏽🚀", "👩🏽🚒", "👩🏽🦰", "👩🏽🦱", "👩🏽🦲", "👩🏽🦳", "👩🏾", "👩🏾⚕️", "👩🏾⚖️", "👩🏾✈️", "👩🏾🌾", "👩🏾🍳", "👩🏾🍼", "👩🏾🎓", "👩🏾🎤", "👩🏾🎨", "👩🏾🏫", "👩🏾🏭", "👩🏾💻", "👩🏾💼", "👩🏾🔧", "👩🏾🔬", "👩🏾🚀", "👩🏾🚒", "👩🏾🦰", "👩🏾🦱", "👩🏾🦲", "👩🏾🦳", "👩🏿", "👩🏿⚕️", "👩🏿⚖️", "👩🏿✈️", "👩🏿🌾", "👩🏿🍳", "👩🏿🍼", "👩🏿🎓", "👩🏿🎤", "👩🏿🎨", "👩🏿🏫", "👩🏿🏭", "👩🏿💻", "👩🏿💼", "👩🏿🔧", "👩🏿🔬", "👩🏿🚀", "👩🏿🚒", "👩🏿🦰", "👩🏿🦱", "👩🏿🦲", "👩🏿🦳", "👮", "👮♀️", "👮♂️", "👮🏻", "👮🏻♀️", "👮🏻♂️", "👮🏼", "👮🏼♀️", "👮🏼♂️", "👮🏽", "👮🏽♀️", "👮🏽♂️", "👮🏾", "👮🏾♀️", "👮🏾♂️", "👮🏿", "👮🏿♀️", "👮🏿♂️", "👰", "👰♀️", "👰♂️", "👰🏻", "👰🏻♀️", "👰🏻♂️", "👰🏼", "👰🏼♀️", "👰🏼♂️", "👰🏽", "👰🏽♀️", "👰🏽♂️", "👰🏾", "👰🏾♀️", "👰🏾♂️", "👰🏿", "👰🏿♀️", "👰🏿♂️", "👱", "👱♀️", "👱♂️", "👱🏻", "👱🏻♀️", "👱🏻♂️", "👱🏼", "👱🏼♀️", "👱🏼♂️", "👱🏽", "👱🏽♀️", "👱🏽♂️", "👱🏾", "👱🏾♀️", "👱🏾♂️", "👱🏿", "👱🏿♀️", "👱🏿♂️", "👲", "👲🏻", "👲🏼", "👲🏽", "👲🏾", "👲🏿", "👳", "👳♀️", "👳♂️", "👳🏻", "👳🏻♀️", "👳🏻♂️", "👳🏼", "👳🏼♀️", "👳🏼♂️", "👳🏽", "👳🏽♀️", "👳🏽♂️", "👳🏾", "👳🏾♀️", "👳🏾♂️", "👳🏿", "👳🏿♀️", "👳🏿♂️", "👴", "👴🏻", "👴🏼", "👴🏽", "👴🏾", "👴🏿", "👵", "👵🏻", "👵🏼", "👵🏽", "👵🏾", "👵🏿", "👶", "👶🏻", "👶🏼", "👶🏽", "👶🏾", "👶🏿", "👷", "👷♀️", "👷♂️", "👷🏻", "👷🏻♀️", "👷🏻♂️", "👷🏼", "👷🏼♀️", "👷🏼♂️", "👷🏽", "👷🏽♀️", "👷🏽♂️", "👷🏾", "👷🏾♀️", "👷🏾♂️", "👷🏿", "👷🏿♀️", "👷🏿♂️", "👸", "👸🏻", "👸🏼", "👸🏽", "👸🏾", "👸🏿", "👼", "👼🏻", "👼🏼", "👼🏽", "👼🏾", "👼🏿", "💁", "💁♀️", "💁♂️", "💁🏻", "💁🏻♀️", "💁🏻♂️", "💁🏼", "💁🏼♀️", "💁🏼♂️", "💁🏽", "💁🏽♀️", "💁🏽♂️", "💁🏾", "💁🏾♀️", "💁🏾♂️", "💁🏿", "💁🏿♀️", "💁🏿♂️", "💂", "💂♀️", "💂♂️", "💂🏻", "💂🏻♀️", "💂🏻♂️", "💂🏼", "💂🏼♀️", "💂🏼♂️", "💂🏽", "💂🏽♀️", "💂🏽♂️", "💂🏾", "💂🏾♀️", "💂🏾♂️", "💂🏿", "💂🏿♀️", "💂🏿♂️", "💆", "💆♀️", "💆♂️", "💆🏻", "💆🏻♀️", "💆🏻♂️", "💆🏼", "💆🏼♀️", "💆🏼♂️", "💆🏽", "💆🏽♀️", "💆🏽♂️", "💆🏾", "💆🏾♀️", "💆🏾♂️", "💆🏿", "💆🏿♀️", "💆🏿♂️", "💇", "💇🏻", "💇🏼", "💇🏽", "🕵🏻", "🕵🏻♀️", "🕵🏻♂️", "🕵🏼", "🕵🏼♀️", "🕵🏼♂️", "🕵🏽", "🕵🏽♀️", "🕵🏽♂️", "🕵🏾", "🕵🏾♀️", "🕵🏾♂️", "🕵🏿", "🕵🏿♀️", "🕵🏿♂️", "🕵️", "🕵️♀️", "🕵️♂️", "🙅", "🙅♀️", "🙅♂️", "🙅🏻", "🙅🏻♀️", "🙅🏻♂️", "🙅🏼", "🙅🏼♀️", "🙅🏼♂️", "🙅🏽", "🙅🏽♀️", "🙅🏽♂️", "🙅🏾", "🙅🏾♀️", "🙅🏾♂️", "🙅🏿", "🙅🏿♀️", "🙅🏿♂️", "🙆", "🙆♀️", "🙆♂️", "🙆🏻", "🙆🏻♀️", "🙆🏻♂️", "🙆🏼", "🙆🏼♀️", "🙆🏼♂️", "🙆🏽", "🙆🏽♀️", "🙆🏽♂️", "🙆🏾", "🙆🏾♀️", "🙆🏾♂️", "🙆🏿", "🙆🏿♀️", "🙆🏿♂️", "🙇", "🙇♀️", "🙇♂️", "🙇🏻", "🙇🏻♀️", "🙇🏻♂️", "🙇🏼", "🙇🏼♀️", "🙇🏼♂️", "🙇🏽", "🙇🏽♀️", "🙇🏽♂️", "🙇🏾", "🙇🏾♀️", "🙇🏾♂️", "🙇🏿", "🙇🏿♀️", "🙇🏿♂️", "🙋", "🙋♀️", "🙋♂️", "🙋🏻", "🙋🏻♀️", "🙋🏻♂️", "🙋🏼", "🙋🏼♀️", "🙋🏼♂️", "🙋🏽", "🙋🏽♀️", "🙋🏽♂️", "🙋🏾", "🙋🏾♀️", "🙋🏾♂️", "🙋🏿", "🙋🏿♀️", "🙋🏿♂️", "🙍", "🙍♀️", "🙍♂️", "🙍🏻", "🙍🏻♀️", "🙍🏻♂️", "🙍🏼", "🙍🏼♀️", "🙍🏼♂️", "🙍🏽", "🙍🏽♀️", "🙍🏽♂️", "🙍🏾", "🙍🏾♀️", "🙍🏾♂️", "🙍🏿", "🙍🏿♀️", "🙍🏿♂️", "🙎", "🙎♀️", "🙎♂️", "🙎🏻", "🙎🏻♀️", "🙎🏻♂️", "🙎🏼", "🙎🏼♀️", "🙎🏼♂️", "🙎🏽", "🙎🏽♀️", "🙎🏽♂️", "🙎🏾", "🙎🏾♀️", "🙎🏾♂️", "🙎🏿", "🙎🏿♀️", "🙎🏿♂️", "🤦", "🤦♀️", "🤦♂️", "🤦🏻", "🤦🏻♀️", "🤦🏻♂️", "🤦🏼", "🤦🏼♀️", "🤦🏼♂️", "🤦🏽", "🤦🏽♀️", "🤦🏽♂️", "🤦🏾", "🤦🏾♀️", "🤦🏾♂️", "🤦🏿", "🤦🏿♀️", "🤦🏿♂️", "🤰", "🤰🏻", "🤰🏼", "🤰🏽", "🤰🏾", "🤰🏿", "🤱", "🤱🏻", "🤱🏼", "🤱🏽", "🤱🏾", "🤱🏿", "🤴", "🤴🏻", "🤴🏼", "🤴🏽", "🤴🏾", "🤴🏿", "🤵", "🤵♀️", "🤵♂️", "🤵🏻", "🤵🏻♀️", "🤵🏻♂️", "🤵🏼", "🤵🏼♀️", "🤵🏼♂️", "🤵🏽", "🤵🏽♀️", "🤵🏽♂️", "🤵🏾", "🤵🏾♀️", "🤵🏾♂️", "🤵🏿", "🤵🏿♀️", "🤵🏿♂️", "🤶", "🤶🏻", "🤶🏼", "🤶🏽", "🤶🏾", "🤶🏿", "🤷", "🤷♀️", "🤷♂️", "🤷🏻", "🤷🏻♀️", "🤷🏻♂️", "🤷🏼", "🤷🏼♀️", "🤷🏼♂️", "🤷🏽", "🤷🏽♀️", "🤷🏽♂️", "🤷🏾", "🤷🏾♀️", "🤷🏾♂️", "🤷🏿", "🤷🏿♀️", "🤷🏿♂️", "🥷", "🥷🏻", "🥷🏼", "🥷🏽", "🥷🏾", "🥷🏿", "🦸", "🦸♀️", "🦸♂️", "🦸🏻", "🦸🏻♀️", "🦸🏻♂️", "🦸🏼", "🦸🏼♀️", "🦸🏼♂️", "🦸🏽", "🦸🏽♀️", "🦸🏽♂️", "🦸🏾", "🦸🏾♀️", "🦸🏾♂️", "🦸🏿", "🦸🏿♀️", "🦸🏿♂️", "🦹", "🦹♀️", "🦹♂️", "🦹🏻", "🦹🏻♀️", "🦹🏻♂️", "🦹🏼", "🦹🏼♀️", "🦹🏼♂️", "🦹🏽", "🦹🏽♀️", "🦹🏽♂️", "🦹🏾", "🦹🏾♀️", "🦹🏾♂️", "🦹🏿", "🦹🏿♀️", "🦹🏿♂️", "🧏", "🧏♀️", "🧏♂️", "🧏🏻", "🧏🏻♀️", "🧏🏻♂️", "🧏🏼", "🧏🏼♀️", "🧏🏼♂️", "🧏🏽", "🧏🏽♀️", "🧏🏽♂️", "🧏🏾", "🧏🏾♀️", "🧏🏾♂️", "🧏🏿", "🧏🏿♀️", "🧏🏿♂️", "🧑", "🧑⚕️", "🧑⚖️", "🧑✈️", "🧑🌾", "🧑🍳", "🧑🍼", "🧑🎄", "🧑🎓", "🧑🎤", "🧑🎨", "🧑🏫", "🧑🏭", "🧑💻", "🧑💼", "🧑🔧", "🧑🔬", "🧑🚀", "🧑🚒", "🧑🦰", "🧑🦱", "🧑🦲", "🧑🦳", "🧑🏻", "🧑🏻⚕️", "🧑🏻⚖️", "🧑🏻✈️", "🧑🏻🌾", "🧑🏻🍳", "🧑🏻🍼", "🧑🏻🎄", "🧑🏻🎓", "🧑🏻🎤", "🧑🏻🎨", "🧑🏻🏫", "🧑🏻🏭", "🧑🏻💻", "🧑🏻💼", "🧑🏻🔧", "🧑🏻🔬", "🧑🏻🚀", "🧑🏻🚒", "🧑🏻🦰", "🧑🏻🦱", "🧑🏻🦲", "🧑🏻🦳", "🧑🏼", "🧑🏼⚕️", "🧑🏼⚖️", "🧑🏼✈️", "🧑🏼🌾", "🧑🏼🍳", "🧑🏼🍼", "🧑🏼🎄", "🧑🏼🎓", "🧑🏼🎤", "🧑🏼🎨", "🧑🏼🏫", "🧑🏼🏭", "🧑🏼💻", "🧑🏼💼", "🧑🏼🔧", "🧑🏼🔬", "🧑🏼🚀", "🧑🏼🚒", "🧑🏼🦰", "🧑🏼🦱", "🧑🏼🦲", "🧑🏼🦳", "🧑🏽", "🧑🏽⚕️", "🧑🏽⚖️", "🧑🏽✈️", "🧑🏽🌾", "🧑🏽🍳", "🧑🏽🍼", "🧑🏽🎄", "🧑🏽🎓", "🧑🏽🎤", "🧑🏽🎨", "🧑🏽🏫", "🧑🏽🏭", "🧑🏽💻", "🧑🏽💼", "🧑🏽🔧", "🧑🏽🔬", "🧑🏽🚀", "🧑🏽🚒", "🧑🏽🦰", "🧑🏽🦱", "🧑🏽🦲", "🧑🏽🦳", "🧑🏾", "🧑🏾⚕️", "🧑🏾⚖️", "🧑🏾✈️", "🧑🏾🌾", "🧑🏾🍳", "🧑🏾🍼", "🧑🏾🎄", "🧑🏾🎓", "🧑🏾🎤", "🧑🏾🎨", "🧑🏾🏫", "🧑🏾🏭", "🧑🏾💻", "🧑🏾💼", "🧑🏾🔧", "🧑🏾🔬", "🧑🏾🚀", "🧑🏾🚒", "🧑🏾🦰", "🧑🏾🦱", "🧑🏾🦲", "🧑🏾🦳", "🧑🏿", "🧑🏿⚕️", "🧑🏿⚖️", "🧑🏿✈️", "🧑🏿🌾", "🧑🏿🍳", "🧑🏿🍼", "🧑🏿🎄", "🧑🏿🎓", "🧑🏿🎤", "🧑🏿🎨", "🧑🏿🏫", "🧑🏿🏭", "🧑🏿💻", "🧑🏿💼", "🧑🏿🔧", "🧑🏿🔬", "🧑🏿🚀", "🧑🏿🚒", "🧑🏿🦰", "🧑🏿🦱", "🧑🏿🦲", "🧑🏿🦳", "🧒", "🧒🏻", "🧒🏼", "🧒🏽", "🧒🏾", "🧒🏿", "🧓", "🧓🏻", "🧓🏼", "🧓🏽", "🧓🏾", "🧓🏿", "🧔", "🧔♀️", "🧔♂️", "🧔🏻", "🧔🏻♀️", "🧔🏻♂️", "🧔🏼", "🧔🏼♀️", "🧔🏼♂️", "🧔🏽", "🧔🏽♀️", "🧔🏽♂️", "🧔🏾", "🧔🏾♀️", "🧔🏾♂️", "🧔🏿", "🧔🏿♀️", "🧔🏿♂️", "🧕", "🧕🏻", "🧕🏼", "🧕🏽", "🧕🏾", "🧕🏿", "🧙", "🧙♀️", "🧙♂️", "🧙🏻", "🧙🏻♀️", "🧙🏻♂️", "🧙🏼", "🧙🏼♀️", "🧙🏼♂️", "🧙🏽", "🧙🏽♀️", "🧙🏽♂️", "🧙🏾", "🧙🏾♀️", "🧙🏾♂️", "🧙🏿", "🧙🏿♀️", "🧙🏿♂️", "🧚", "🧚♀️", "🧚♂️", "🧚🏻", "🧚🏻♀️", "🧚🏻♂️", "🧚🏼", "🧚🏼♀️", "🧚🏼♂️", "🧚🏽", "🧚🏽♀️", "🧚🏽♂️", "🧚🏾", "🧚🏾♀️", "🧚🏾♂️", "🧚🏿", "🧚🏿♀️", "🧚🏿♂️", "🧛", "🧛♀️", "🧛♂️", "🧛🏻", "🧛🏻♀️", "🧛🏻♂️", "🧛🏼", "🧛🏼♀️", "🧛🏼♂️", "🧛🏽", "🧛🏽♀️", "🧛🏽♂️", "🧛🏾", "🧛🏾♀️", "🧛🏾♂️", "🧛🏿", "🧛🏿♀️", "🧛🏿♂️", "🧜", "🧜♀️", "🧜♂️", "🧜🏻", "🧜🏻♀️", "🧜🏻♂️", "🧜🏼", "🧜🏼♀️", "🧜🏼♂️", "🧜🏽", "🧜🏽♀️", "🧜🏽♂️", "🧜🏾", "🧜🏾♀️", "🧜🏾♂️", "🧜🏿", "🧜🏿♀️", "🧜🏿♂️", "🧝", "🧝♀️", "🧝♂️", "🧝🏻", "🧝🏻♀️", "🧝🏻♂️", "🧝🏼", "🧝🏼♀️", "🧝🏼♂️", "🧝🏽", "🧝🏽♀️", "🧝🏽♂️", "🧝🏾", "🧝🏾♀️", "🧝🏾♂️", "🧝🏿", "🧝🏿♀️", "🧝🏿♂️", "🧞", "🧞♀️", "🧞♂️", "🧟", "🧟♀️", "🧟♂️"], nature: ["☘️", "🌱", "🌲", "🌳", "🌴", "🌵", "🌷", "🌸", "🌹", "🌺", "🌻", "🌼", "🌾", "🌿", "🍀", "🍁", "🍂", "🍃", "🏵️", "🐀", "🐁", "🐂", "🐃", "🐄", "🐅", "🐆", "🐇", "🐈", "🐈⬛", "🐉", "🐊", "🐋", "🐌", "🐍", "🐎", "🐏", "🐐", "🐑", "🐒", "🐓", "🐔", "🐕", "🐕🦺", "🐖", "🐗", "🐘", "🐙", "🐚", "🐛", "🐜", "🐝", "🐞", "🐟", "🐠", "🐡", "🐢", "🐣", "🐤", "🐥", "🐦", "🐧", "🐨", "🐩", "🐪", "🐫", "🐬", "🐭", "🐮", "🐯", "🐰", "🐱", "🐲", "🐳", "🐴", "🐵", "🐶", "🐷", "🐸", "🐹", "🐺", "🐻", "🐻❄️", "🐼", "🐽", "🐾", "🐿️", "💐", "💮", "🕊️", "🕷️", "🕸️", "🥀", "🦁", "🦂", "🦃", "🦄", "🦅", "🦆", "🦇", "🦈", "🦉", "🦊", "🦋", "🦌", "🦍", "🦎", "🦏", "🦒", "🦓", "🦔", "🦕", "🦖", "🦗", "🦘", "🦙", "🦚", "🦛", "🦜", "🦝", "🦟", "🦠", "🦡", "🦢", "🦣", "🦤", "🦥", "🦦", "🦧", "🦨", "🦩", "🦫", "🦬", "🦭", "🦮", "🪰", "🪱", "🪲", "🪳", "🪴", "🪶"], food: ["☕", "🌭", "🌮", "🌯", "🌰", "🌶️", "🌽", "🍄", "🍅", "🍆", "🍇", "🍈", "🍉", "🍊", "🍋", "🍌", "🍍", "🍎", "🍏", "🍐", "🍑", "🍒", "🍓", "🍔", "🍕", "🍖", "🍗", "🍘", "🍙", "🍚", "🍛", "🍜", "🍝", "🍞", "🍟", "🍠", "🍡", "🍢", "🍣", "🍤", "🍥", "🍦", "🍧", "🍨", "🍩", "🍪", "🍫", "🍬", "🍭", "🍮", "🍯", "🍰", "🍱", "🍲", "🍳", "🍴", "🍵", "🍶", "🍷", "🍸", "🍹", "🍺", "🍻", "🍼", "🍽️", "🍾", "🍿", "🎂", "🏺", "🔪", "🥂", "🥃", "🥄", "🥐", "🥑", "🥒", "🥓", "🥔", "🥕", "🥖", "🥗", "🥘", "🥙", "🥚", "🥛", "🥜", "🥝", "🥞", "🥟", "🥠", "🥡", "🥢", "🥣", "🥤", "🥥", "🥦", "🥧", "🥨", "🥩", "🥪", "🥫", "🥬", "🥭", "🥮", "🥯", "🦀", "🦐", "🦑", "🦞", "🦪", "🧀", "🧁", "🧂", "🧃", "🧄", "🧅", "🧆", "🧇", "🧈", "🧉", "🧊", "🧋", "🫐", "🫑", "🫒", "🫓", "🫔", "🫕", "🫖"], travel: ["⌚", "⌛", "⏰", "⏱️", "⏲️", "⏳", "☀️", "☁️", "☂️", "☃️", "☄️", "☔", "♨️", "⚓", "⚡", "⛄", "⛅", "⛈️", "⛩️", "⛪", "⛰️", "⛱️", "⛲", "⛴️", "⛵", "⛺", "⛽", "✈️", "❄️", "⭐", "🌀", "🌁", "🌂", "🌃", "🌄", "🌅", "🌆", "🌇", "🌈", "🌉", "🌊", "🌋", "🌌", "🌍", "🌎", "🌏", "🌐", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌙", "🌚", "🌛", "🌜", "🌝", "🌞", "🌟", "🌠", "🌡️", "🌤️", "🌥️", "🌦️", "🌧️", "🌨️", "🌩️", "🌪️", "🌫️", "🌬️", "🎠", "🎡", "🎢", "🎪", "🏍️", "🏎️", "🏔️", "🏕️", "🏖️", "🏗️", "🏘️", "🏙️", "🏚️", "🏛️", "🏜️", "🏝️", "🏞️", "🏟️", "🏠", "🏡", "🏢", "🏣", "🏤", "🏥", "🏦", "🏨", "🏩", "🏪", "🏫", "🏬", "🏭", "🏯", "🏰", "💈", "💒", "💧", "💺", "🔥", "🕋", "🕌", "🕍", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚", "🕛", "🕜", "🕝", "🕞", "🕟", "🕠", "🕡", "🕢", "🕣", "🕤", "🕥", "🕦", "🕧", "🕰️", "🗺️", "🗻", "🗼", "🗽", "🗾", "🚀", "🚁", "🚂", "🚃", "🚄", "🚅", "🚆", "🚇", "🚈", "🚉", "🚊", "🚋", "🚌", "🚍", "🚎", "🚏", "🚐", "🚑", "🚒", "🚓", "🚔", "🚕", "🚖", "🚗", "🚘", "🚙", "🚚", "🚛", "🚜", "🚝", "🚞", "🚟", "🚠", "🚡", "🚢", "🚤", "🚥", "🚦", "🚧", "🚨", "🚲", "🛎️", "🛑", "🛕", "🛖", "🛢️", "🛣️", "🛤️", "🛥️", "🛩️", "🛫", "🛬", "🛰️", "🛳️", "🛴", "🛵", "🛶", "🛸", "🛹", "🛺", "🛻", "🛼", "🦼", "🦽", "🧭", "🧱", "🧳", "🪂", "🪐", "🪨", "🪵"], activity: ["♟️", "♠️", "♣️", "♥️", "♦️", "⚽", "⚾", "⛳", "⛸️", "✨", "🀄", "🃏", "🎀", "🎁", "🎃", "🎄", "🎆", "🎇", "🎈", "🎉", "🎊", "🎋", "🎍", "🎎", "🎏", "🎐", "🎑", "🎖️", "🎗️", "🎟️", "🎣", "🎨", "🎫", "🎭", "🎮", "🎯", "🎰", "🎱", "🎲", "🎳", "🎴", "🎽", "🎾", "🎿", "🏀", "🏅", "🏆", "🏈", "🏉", "🏏", "🏐", "🏑", "🏒", "🏓", "🏸", "🔮", "🕹️", "🖼️", "🛷", "🤿", "🥅", "🥇", "🥈", "🥉", "🥊", "🥋", "🥌", "🥍", "🥎", "🥏", "🧧", "🧨", "🧩", "🧵", "🧶", "🧸", "🧿", "🪀", "🪁", "🪄", "🪅", "🪆", "🪡", "🪢"], object: ["⌨️", "☎️", "⚒️", "⚔️", "⚖️", "⚗️", "⚙️", "⚰️", "⚱️", "⛏️", "⛑️", "⛓️", "✂️", "✉️", "✏️", "✒️", "🎒", "🎓", "🎙️", "🎚️", "🎛️", "🎞️", "🎤", "🎥", "🎧", "🎩", "🎬", "🎵", "🎶", "🎷", "🎸", "🎹", "🎺", "🎻", "🎼", "🏮", "🏷️", "🏹", "👑", "👒", "👓", "👔", "👕", "👖", "👗", "👘", "👙", "👚", "👛", "👜", "👝", "👞", "👟", "👠", "👡", "👢", "💄", "💉", "💊", "💍", "💎", "💡", "💰", "💳", "💴", "💵", "💶", "💷", "💸", "💹", "💻", "💼", "💽", "💾", "💿", "📀", "📁", "📂", "📃", "📄", "📅", "📆", "📇", "📈", "📉", "📊", "📋", "📌", "📍", "📎", "📏", "📐", "📑", "📒", "📓", "📔", "📕", "📖", "📗", "📘", "📙", "📚", "📜", "📝", "📞", "📟", "📠", "📡", "📢", "📣", "📤", "📥", "📦", "📧", "📨", "📩", "📪", "📫", "📬", "📭", "📮", "📯", "📰", "📱", "📲", "📷", "📸", "📹", "📺", "📻", "📼", "📽️", "📿", "🔇", "🔈", "🔉", "🔊", "🔋", "🔌", "🔍", "🔎", "🔏", "🔐", "🔑", "🔒", "🔓", "🔔", "🔕", "🔖", "🔗", "🔦", "🔧", "🔨", "🔩", "🔫", "🔬", "🔭", "🕯️", "🕶️", "🖇️", "🖊️", "🖋️", "🖌️", "🖍️", "🖥️", "🖨️", "🖱️", "🖲️", "🗂️", "🗃️", "🗄️", "🗑️", "🗒️", "🗓️", "🗜️", "🗝️", "🗞️", "🗡️", "🗳️", "🗿", "🚪", "🚬", "🚽", "🚿", "🛁", "🛋️", "🛍️", "🛏️", "🛒", "🛗", "🛠️", "🛡️", "🥁", "🥻", "🥼", "🥽", "🥾", "🥿", "🦯", "🦺", "🧢", "🧣", "🧤", "🧥", "🧦", "🧪", "🧫", "🧬", "🧮", "🧯", "🧰", "🧲", "🧴", "🧷", "🧹", "🧺", "🧻", "🧼", "🧽", "🧾", "🩰", "🩱", "🩲", "🩳", "🩴", "🩸", "🩹", "🩺", "🪃", "🪑", "🪒", "🪓", "🪔", "🪕", "🪖", "🪗", "🪘", "🪙", "🪚", "🪛", "🪜", "🪝", "🪞", "🪟", "🪠", "🪣", "🪤", "🪥", "🪦", "🪧"], symbol: ["#️⃣", "*️⃣", "0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣", "©️", "®️", "‼️", "⁉️", "™️", "ℹ️", "↔️", "↕️", "↖️", "↗️", "↘️", "↙️", "↩️", "↪️", "⏏️", "⏩", "⏪", "⏫", "⏬", "⏭️", "⏮️", "⏯️", "⏸️", "⏹️", "⏺️", "Ⓜ️", "▪️", "▫️", "▶️", "◀️", "◻️", "◼️", "◽", "◾", "☑️", "☢️", "☣️", "☦️", "☪️", "☮️", "☯️", "☸️", "♀️", "♂️", "♈", "♉", "♊", "♋", "♌", "♍", "♎", "♏", "♐", "♑", "♒", "♓", "♻️", "♾️", "♿", "⚕️", "⚛️", "⚜️", "⚠️", "⚧️", "⚪", "⚫", "⛎", "⛔", "✅", "✔️", "✖️", "✝️", "✡️", "✳️", "✴️", "❇️", "❌", "❎", "❓", "❔", "❕", "❗", "➕", "➖", "➗", "➡️", "➰", "➿", "⤴️", "⤵️", "⬅️", "⬆️", "⬇️", "⬛", "⬜", "⭕", "〰️", "〽️", "㊗️", "㊙️", "🅰️", "🅱️", "🅾️", "🅿️", "🆎", "🆑", "🆒", "🆓", "🆔", "🆕", "🆖", "🆗", "🆘", "🆙", "🆚", "🈁", "🈂️", "🈚", "🈯", "🈲", "🈳", "🈴", "🈵", "🈶", "🈷️", "🈸", "🈹", "🈺", "🉐", "🉑", "🎦", "🏧", "💠", "💱", "💲", "📛", "📳", "📴", "📵", "📶", "🔀", "🔁", "🔂", "🔃", "🔄", "🔅", "🔆", "🔘", "🔙", "🔚", "🔛", "🔜", "🔝", "🔞", "🔟", "🔠", "🔡", "🔢", "🔣", "🔤", "🔯", "🔰", "🔱", "🔲", "🔳", "🔴", "🔵", "🔶", "🔷", "🔸", "🔹", "🔺", "🔻", "🔼", "🔽", "🕉️", "🕎", "🚫", "🚭", "🚮", "🚯", "🚰", "🚱", "🚳", "🚷", "🚸", "🚹", "🚺", "🚻", "🚼", "🚾", "🛂", "🛃", "🛄", "🛅", "🛐", "🟠", "🟡", "🟢", "🟣", "🟤", "🟥", "🟦", "🟧", "🟨", "🟩", "🟪", "🟫"], flag: ["🇦🇨", "🇦🇩", "🇦🇪", "🇦🇫", "🇦🇬", "🇦🇮", "🇦🇱", "🇦🇲", "🇦🇴", "🇦🇶", "🇦🇷", "🇦🇸", "🇦🇹", "🇦🇺", "🇦🇼", "🇦🇽", "🇦🇿", "🇧🇦", "🇧🇧", "🇧🇩", "🇧🇪", "🇧🇫", "🇧🇬", "🇧🇭", "🇧🇮", "🇧🇯", "🇧🇱", "🇧🇲", "🇧🇳", "🇧🇴", "🇧🇶", "🇧🇷", "🇧🇸", "🇧🇹", "🇧🇻", "🇧🇼", "🇧🇾", "🇧🇿", "🇨🇦", "🇨🇨", "🇨🇩", "🇨🇫", "🇨🇬", "🇨🇭", "🇨🇮", "🇨🇰", "🇨🇱", "🇨🇲", "🇨🇳", "🇨🇴", "🇨🇵", "🇨🇷", "🇨🇺", "🇨🇻", "🇨🇼", "🇨🇽", "🇨🇾", "🇨🇿", "🇩🇪", "🇩🇬", "🇩🇯", "🇩🇰", "🇩🇲", "🇩🇴", "🇩🇿", "🇪🇦", "🇪🇨", "🇪🇪", "🇪🇬", "🇪🇭", "🇪🇷", "🇪🇸", "🇪🇹", "🇪🇺", "🇫🇮", "🇫🇯", "🇫🇰", "🇫🇲", "🇫🇴", "🇫🇷", "🇬🇦", "🇬🇧", "🇬🇩", "🇬🇪", "🇬🇫", "🇬🇬", "🇬🇭", "🇬🇮", "🇬🇱", "🇬🇲", "🇬🇳", "🇬🇵", "🇬🇶", "🇬🇷", "🇬🇸", "🇬🇹", "🇬🇺", "🇬🇼", "🇬🇾", "🇭🇰", "🇭🇲", "🇭🇳", "🇭🇷", "🇭🇹", "🇭🇺", "🇮🇨", "🇮🇩", "🇮🇪", "🇮🇱", "🇮🇲", "🇮🇳", "🇮🇴", "🇮🇶", "🇮🇷", "🇮🇸", "🇮🇹", "🇯🇪", "🇯🇲", "🇯🇴", "🇯🇵", "🇰🇪", "🇰🇬", "🇰🇭", "🇰🇮", "🇰🇲", "🇰🇳", "🇰🇵", "🇰🇷", "🇰🇼", "🇰🇾", "🇰🇿", "🇱🇦", "🇱🇧", "🇱🇨", "🇱🇮", "🇱🇰", "🇱🇷", "🇱🇸", "🇱🇹", "🇱🇺", "🇱🇻", "🇱🇾", "🇲🇦", "🇲🇨", "🇲🇩", "🇲🇪", "🇲🇫", "🇲🇬", "🇲🇭", "🇲🇰", "🇲🇱", "🇲🇲", "🇲🇳", "🇲🇴", "🇲🇵", "🇲🇶", "🇲🇷", "🇲🇸", "🇲🇹", "🇲🇺", "🇲🇻", "🇲🇼", "🇲🇽", "🇲🇾", "🇲🇿", "🇳🇦", "🇳🇨", "🇳🇪", "🇳🇫", "🇳🇬", "🇳🇮", "🇳🇱", "🇳🇴", "🇳🇵", "🇳🇷", "🇳🇺", "🇳🇿", "🇴🇲", "🇵🇦", "🇵🇪", "🇵🇫", "🇵🇬", "🇵🇭", "🇵🇰", "🇵🇱", "🇵🇲", "🇵🇳", "🇵🇷", "🇵🇸", "🇵🇹", "🇵🇼", "🇵🇾", "🇶🇦", "🇷🇪", "🇷🇴", "🇷🇸", "🇷🇺", "🇷🇼", "🇸🇦", "🇸🇧", "🇸🇨", "🇸🇩", "🇸🇪", "🇸🇬", "🇸🇭", "🇸🇮", "🇸🇯", "🇸🇰", "🇸🇱", "🇸🇲", "🇸🇳", "🇸🇴", "🇸🇷", "🇸🇸", "🇸🇹", "🇸🇻", "🇸🇽", "🇸🇾", "🇸🇿", "🇹🇦", "🇹🇨", "🇹🇩", "🇹🇫", "🇹🇬", "🇹🇭", "🇹🇯", "🇹🇰", "🇹🇱", "🇹🇲", "🇹🇳", "🇹🇴", "🇹🇷", "🇹🇹", "🇹🇻", "🇹🇼", "🇹🇿", "🇺🇦", "🇺🇬", "🇺🇲", "🇺🇳", "🇺🇸", "🇺🇾", "🇺🇿", "🇻🇦", "🇻🇨", "🇻🇪", "🇻🇬", "🇻🇮", "🇻🇳", "🇻🇺", "🇼🇫", "🇼🇸", "🇽🇰", "🇾🇪", "🇾🇹", "🇿🇦", "🇿🇲", "🇿🇼", "🎌", "🏁", "🏳️", "🏳️⚧️", "🏳️🌈", "🏴", "🏴☠️", "🚩"] };
|
|
15527
|
+
var lr = { informational: [100, 101, 102, 103], success: [200, 201, 202, 203, 204, 205, 206, 207, 208, 226], redirection: [300, 301, 302, 303, 304, 305, 306, 307, 308], clientError: [400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 421, 422, 423, 424, 425, 426, 428, 429, 431, 451], serverError: [500, 501, 502, 503, 504, 505, 506, 507, 508, 510, 511] };
|
|
15528
|
+
var mr = ["ES256", "ES384", "ES512", "HS256", "HS384", "HS512", "PS256", "PS384", "PS512", "RS256", "RS384", "RS512", "none"];
|
|
15529
|
+
var ur = ["FakerBot/{{system.semver}}", "Googlebot/2.1 (+http://www.google.com/bot.html)", 'Mozilla/5.0 (Linux; Android {{number.int({"min":5,"max":13})}}; {{helpers.arrayElement(["SM-G998U","SM-G998B","SM-G998N","SM-G998P","SM-T800"])}}) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Mobile Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:{{number.int({"min":75, "max":133})}}.0) Gecko/20100101 Firefox/{{number.int({"min":75, "max":133})}}.0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Version/16.1 Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_15_7) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Windows NT {{helpers.arrayElement(["5.1","5.2","6.0","6.1","6.2","6.3","10.0"])}}; Win64; x64) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} Edg/{{number.int({"min":110,"max":131})}}.{{system.semver}}', 'Mozilla/5.0 (X11; Linux x86_64; rv:{{number.int({"min":75,"max":133})}}.0) Gecko/20100101 Firefox/{{number.int({"min":75,"max":133})}}.0', 'Mozilla/5.0 (compatible; MSIE {{number.int({"min":6,"max":10})}}.0; Windows NT {{helpers.arrayElement(["5.1","5.2","6.0","6.1","6.2","6.3","10.0"])}}; Trident/{{number.int({"min":4,"max":7})}}.0)', 'Mozilla/5.0 (iPhone; CPU iPhone OS {{number.int({"min":10,"max":18})}}_{{number.int({"min":0,"max":4})}} like Mac OS X) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Version/{{number.int({"min":10,"max":18})}}_{{number.int({"min":0,"max":4})}} Mobile/15E148 Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}'];
|
|
15530
|
+
var at = { emoji: cr, http_status_code: lr, jwt_algorithm: mr, user_agent_pattern: ur }, pr = at;
|
|
15531
|
+
var hr = [{ alpha2: "AD", alpha3: "AND", numeric: "020" }, { alpha2: "AE", alpha3: "ARE", numeric: "784" }, { alpha2: "AF", alpha3: "AFG", numeric: "004" }, { alpha2: "AG", alpha3: "ATG", numeric: "028" }, { alpha2: "AI", alpha3: "AIA", numeric: "660" }, { alpha2: "AL", alpha3: "ALB", numeric: "008" }, { alpha2: "AM", alpha3: "ARM", numeric: "051" }, { alpha2: "AO", alpha3: "AGO", numeric: "024" }, { alpha2: "AQ", alpha3: "ATA", numeric: "010" }, { alpha2: "AR", alpha3: "ARG", numeric: "032" }, { alpha2: "AS", alpha3: "ASM", numeric: "016" }, { alpha2: "AT", alpha3: "AUT", numeric: "040" }, { alpha2: "AU", alpha3: "AUS", numeric: "036" }, { alpha2: "AW", alpha3: "ABW", numeric: "533" }, { alpha2: "AX", alpha3: "ALA", numeric: "248" }, { alpha2: "AZ", alpha3: "AZE", numeric: "031" }, { alpha2: "BA", alpha3: "BIH", numeric: "070" }, { alpha2: "BB", alpha3: "BRB", numeric: "052" }, { alpha2: "BD", alpha3: "BGD", numeric: "050" }, { alpha2: "BE", alpha3: "BEL", numeric: "056" }, { alpha2: "BF", alpha3: "BFA", numeric: "854" }, { alpha2: "BG", alpha3: "BGR", numeric: "100" }, { alpha2: "BH", alpha3: "BHR", numeric: "048" }, { alpha2: "BI", alpha3: "BDI", numeric: "108" }, { alpha2: "BJ", alpha3: "BEN", numeric: "204" }, { alpha2: "BL", alpha3: "BLM", numeric: "652" }, { alpha2: "BM", alpha3: "BMU", numeric: "060" }, { alpha2: "BN", alpha3: "BRN", numeric: "096" }, { alpha2: "BO", alpha3: "BOL", numeric: "068" }, { alpha2: "BQ", alpha3: "BES", numeric: "535" }, { alpha2: "BR", alpha3: "BRA", numeric: "076" }, { alpha2: "BS", alpha3: "BHS", numeric: "044" }, { alpha2: "BT", alpha3: "BTN", numeric: "064" }, { alpha2: "BV", alpha3: "BVT", numeric: "074" }, { alpha2: "BW", alpha3: "BWA", numeric: "072" }, { alpha2: "BY", alpha3: "BLR", numeric: "112" }, { alpha2: "BZ", alpha3: "BLZ", numeric: "084" }, { alpha2: "CA", alpha3: "CAN", numeric: "124" }, { alpha2: "CC", alpha3: "CCK", numeric: "166" }, { alpha2: "CD", alpha3: "COD", numeric: "180" }, { alpha2: "CF", alpha3: "CAF", numeric: "140" }, { alpha2: "CG", alpha3: "COG", numeric: "178" }, { alpha2: "CH", alpha3: "CHE", numeric: "756" }, { alpha2: "CI", alpha3: "CIV", numeric: "384" }, { alpha2: "CK", alpha3: "COK", numeric: "184" }, { alpha2: "CL", alpha3: "CHL", numeric: "152" }, { alpha2: "CM", alpha3: "CMR", numeric: "120" }, { alpha2: "CN", alpha3: "CHN", numeric: "156" }, { alpha2: "CO", alpha3: "COL", numeric: "170" }, { alpha2: "CR", alpha3: "CRI", numeric: "188" }, { alpha2: "CU", alpha3: "CUB", numeric: "192" }, { alpha2: "CV", alpha3: "CPV", numeric: "132" }, { alpha2: "CW", alpha3: "CUW", numeric: "531" }, { alpha2: "CX", alpha3: "CXR", numeric: "162" }, { alpha2: "CY", alpha3: "CYP", numeric: "196" }, { alpha2: "CZ", alpha3: "CZE", numeric: "203" }, { alpha2: "DE", alpha3: "DEU", numeric: "276" }, { alpha2: "DJ", alpha3: "DJI", numeric: "262" }, { alpha2: "DK", alpha3: "DNK", numeric: "208" }, { alpha2: "DM", alpha3: "DMA", numeric: "212" }, { alpha2: "DO", alpha3: "DOM", numeric: "214" }, { alpha2: "DZ", alpha3: "DZA", numeric: "012" }, { alpha2: "EC", alpha3: "ECU", numeric: "218" }, { alpha2: "EE", alpha3: "EST", numeric: "233" }, { alpha2: "EG", alpha3: "EGY", numeric: "818" }, { alpha2: "EH", alpha3: "ESH", numeric: "732" }, { alpha2: "ER", alpha3: "ERI", numeric: "232" }, { alpha2: "ES", alpha3: "ESP", numeric: "724" }, { alpha2: "ET", alpha3: "ETH", numeric: "231" }, { alpha2: "FI", alpha3: "FIN", numeric: "246" }, { alpha2: "FJ", alpha3: "FJI", numeric: "242" }, { alpha2: "FK", alpha3: "FLK", numeric: "238" }, { alpha2: "FM", alpha3: "FSM", numeric: "583" }, { alpha2: "FO", alpha3: "FRO", numeric: "234" }, { alpha2: "FR", alpha3: "FRA", numeric: "250" }, { alpha2: "GA", alpha3: "GAB", numeric: "266" }, { alpha2: "GB", alpha3: "GBR", numeric: "826" }, { alpha2: "GD", alpha3: "GRD", numeric: "308" }, { alpha2: "GE", alpha3: "GEO", numeric: "268" }, { alpha2: "GF", alpha3: "GUF", numeric: "254" }, { alpha2: "GG", alpha3: "GGY", numeric: "831" }, { alpha2: "GH", alpha3: "GHA", numeric: "288" }, { alpha2: "GI", alpha3: "GIB", numeric: "292" }, { alpha2: "GL", alpha3: "GRL", numeric: "304" }, { alpha2: "GM", alpha3: "GMB", numeric: "270" }, { alpha2: "GN", alpha3: "GIN", numeric: "324" }, { alpha2: "GP", alpha3: "GLP", numeric: "312" }, { alpha2: "GQ", alpha3: "GNQ", numeric: "226" }, { alpha2: "GR", alpha3: "GRC", numeric: "300" }, { alpha2: "GS", alpha3: "SGS", numeric: "239" }, { alpha2: "GT", alpha3: "GTM", numeric: "320" }, { alpha2: "GU", alpha3: "GUM", numeric: "316" }, { alpha2: "GW", alpha3: "GNB", numeric: "624" }, { alpha2: "GY", alpha3: "GUY", numeric: "328" }, { alpha2: "HK", alpha3: "HKG", numeric: "344" }, { alpha2: "HM", alpha3: "HMD", numeric: "334" }, { alpha2: "HN", alpha3: "HND", numeric: "340" }, { alpha2: "HR", alpha3: "HRV", numeric: "191" }, { alpha2: "HT", alpha3: "HTI", numeric: "332" }, { alpha2: "HU", alpha3: "HUN", numeric: "348" }, { alpha2: "ID", alpha3: "IDN", numeric: "360" }, { alpha2: "IE", alpha3: "IRL", numeric: "372" }, { alpha2: "IL", alpha3: "ISR", numeric: "376" }, { alpha2: "IM", alpha3: "IMN", numeric: "833" }, { alpha2: "IN", alpha3: "IND", numeric: "356" }, { alpha2: "IO", alpha3: "IOT", numeric: "086" }, { alpha2: "IQ", alpha3: "IRQ", numeric: "368" }, { alpha2: "IR", alpha3: "IRN", numeric: "364" }, { alpha2: "IS", alpha3: "ISL", numeric: "352" }, { alpha2: "IT", alpha3: "ITA", numeric: "380" }, { alpha2: "JE", alpha3: "JEY", numeric: "832" }, { alpha2: "JM", alpha3: "JAM", numeric: "388" }, { alpha2: "JO", alpha3: "JOR", numeric: "400" }, { alpha2: "JP", alpha3: "JPN", numeric: "392" }, { alpha2: "KE", alpha3: "KEN", numeric: "404" }, { alpha2: "KG", alpha3: "KGZ", numeric: "417" }, { alpha2: "KH", alpha3: "KHM", numeric: "116" }, { alpha2: "KI", alpha3: "KIR", numeric: "296" }, { alpha2: "KM", alpha3: "COM", numeric: "174" }, { alpha2: "KN", alpha3: "KNA", numeric: "659" }, { alpha2: "KP", alpha3: "PRK", numeric: "408" }, { alpha2: "KR", alpha3: "KOR", numeric: "410" }, { alpha2: "KW", alpha3: "KWT", numeric: "414" }, { alpha2: "KY", alpha3: "CYM", numeric: "136" }, { alpha2: "KZ", alpha3: "KAZ", numeric: "398" }, { alpha2: "LA", alpha3: "LAO", numeric: "418" }, { alpha2: "LB", alpha3: "LBN", numeric: "422" }, { alpha2: "LC", alpha3: "LCA", numeric: "662" }, { alpha2: "LI", alpha3: "LIE", numeric: "438" }, { alpha2: "LK", alpha3: "LKA", numeric: "144" }, { alpha2: "LR", alpha3: "LBR", numeric: "430" }, { alpha2: "LS", alpha3: "LSO", numeric: "426" }, { alpha2: "LT", alpha3: "LTU", numeric: "440" }, { alpha2: "LU", alpha3: "LUX", numeric: "442" }, { alpha2: "LV", alpha3: "LVA", numeric: "428" }, { alpha2: "LY", alpha3: "LBY", numeric: "434" }, { alpha2: "MA", alpha3: "MAR", numeric: "504" }, { alpha2: "MC", alpha3: "MCO", numeric: "492" }, { alpha2: "MD", alpha3: "MDA", numeric: "498" }, { alpha2: "ME", alpha3: "MNE", numeric: "499" }, { alpha2: "MF", alpha3: "MAF", numeric: "663" }, { alpha2: "MG", alpha3: "MDG", numeric: "450" }, { alpha2: "MH", alpha3: "MHL", numeric: "584" }, { alpha2: "MK", alpha3: "MKD", numeric: "807" }, { alpha2: "ML", alpha3: "MLI", numeric: "466" }, { alpha2: "MM", alpha3: "MMR", numeric: "104" }, { alpha2: "MN", alpha3: "MNG", numeric: "496" }, { alpha2: "MO", alpha3: "MAC", numeric: "446" }, { alpha2: "MP", alpha3: "MNP", numeric: "580" }, { alpha2: "MQ", alpha3: "MTQ", numeric: "474" }, { alpha2: "MR", alpha3: "MRT", numeric: "478" }, { alpha2: "MS", alpha3: "MSR", numeric: "500" }, { alpha2: "MT", alpha3: "MLT", numeric: "470" }, { alpha2: "MU", alpha3: "MUS", numeric: "480" }, { alpha2: "MV", alpha3: "MDV", numeric: "462" }, { alpha2: "MW", alpha3: "MWI", numeric: "454" }, { alpha2: "MX", alpha3: "MEX", numeric: "484" }, { alpha2: "MY", alpha3: "MYS", numeric: "458" }, { alpha2: "MZ", alpha3: "MOZ", numeric: "508" }, { alpha2: "NA", alpha3: "NAM", numeric: "516" }, { alpha2: "NC", alpha3: "NCL", numeric: "540" }, { alpha2: "NE", alpha3: "NER", numeric: "562" }, { alpha2: "NF", alpha3: "NFK", numeric: "574" }, { alpha2: "NG", alpha3: "NGA", numeric: "566" }, { alpha2: "NI", alpha3: "NIC", numeric: "558" }, { alpha2: "NL", alpha3: "NLD", numeric: "528" }, { alpha2: "NO", alpha3: "NOR", numeric: "578" }, { alpha2: "NP", alpha3: "NPL", numeric: "524" }, { alpha2: "NR", alpha3: "NRU", numeric: "520" }, { alpha2: "NU", alpha3: "NIU", numeric: "570" }, { alpha2: "NZ", alpha3: "NZL", numeric: "554" }, { alpha2: "OM", alpha3: "OMN", numeric: "512" }, { alpha2: "PA", alpha3: "PAN", numeric: "591" }, { alpha2: "PE", alpha3: "PER", numeric: "604" }, { alpha2: "PF", alpha3: "PYF", numeric: "258" }, { alpha2: "PG", alpha3: "PNG", numeric: "598" }, { alpha2: "PH", alpha3: "PHL", numeric: "608" }, { alpha2: "PK", alpha3: "PAK", numeric: "586" }, { alpha2: "PL", alpha3: "POL", numeric: "616" }, { alpha2: "PM", alpha3: "SPM", numeric: "666" }, { alpha2: "PN", alpha3: "PCN", numeric: "612" }, { alpha2: "PR", alpha3: "PRI", numeric: "630" }, { alpha2: "PS", alpha3: "PSE", numeric: "275" }, { alpha2: "PT", alpha3: "PRT", numeric: "620" }, { alpha2: "PW", alpha3: "PLW", numeric: "585" }, { alpha2: "PY", alpha3: "PRY", numeric: "600" }, { alpha2: "QA", alpha3: "QAT", numeric: "634" }, { alpha2: "RE", alpha3: "REU", numeric: "638" }, { alpha2: "RO", alpha3: "ROU", numeric: "642" }, { alpha2: "RS", alpha3: "SRB", numeric: "688" }, { alpha2: "RU", alpha3: "RUS", numeric: "643" }, { alpha2: "RW", alpha3: "RWA", numeric: "646" }, { alpha2: "SA", alpha3: "SAU", numeric: "682" }, { alpha2: "SB", alpha3: "SLB", numeric: "090" }, { alpha2: "SC", alpha3: "SYC", numeric: "690" }, { alpha2: "SD", alpha3: "SDN", numeric: "729" }, { alpha2: "SE", alpha3: "SWE", numeric: "752" }, { alpha2: "SG", alpha3: "SGP", numeric: "702" }, { alpha2: "SH", alpha3: "SHN", numeric: "654" }, { alpha2: "SI", alpha3: "SVN", numeric: "705" }, { alpha2: "SJ", alpha3: "SJM", numeric: "744" }, { alpha2: "SK", alpha3: "SVK", numeric: "703" }, { alpha2: "SL", alpha3: "SLE", numeric: "694" }, { alpha2: "SM", alpha3: "SMR", numeric: "674" }, { alpha2: "SN", alpha3: "SEN", numeric: "686" }, { alpha2: "SO", alpha3: "SOM", numeric: "706" }, { alpha2: "SR", alpha3: "SUR", numeric: "740" }, { alpha2: "SS", alpha3: "SSD", numeric: "728" }, { alpha2: "ST", alpha3: "STP", numeric: "678" }, { alpha2: "SV", alpha3: "SLV", numeric: "222" }, { alpha2: "SX", alpha3: "SXM", numeric: "534" }, { alpha2: "SY", alpha3: "SYR", numeric: "760" }, { alpha2: "SZ", alpha3: "SWZ", numeric: "748" }, { alpha2: "TC", alpha3: "TCA", numeric: "796" }, { alpha2: "TD", alpha3: "TCD", numeric: "148" }, { alpha2: "TF", alpha3: "ATF", numeric: "260" }, { alpha2: "TG", alpha3: "TGO", numeric: "768" }, { alpha2: "TH", alpha3: "THA", numeric: "764" }, { alpha2: "TJ", alpha3: "TJK", numeric: "762" }, { alpha2: "TK", alpha3: "TKL", numeric: "772" }, { alpha2: "TL", alpha3: "TLS", numeric: "626" }, { alpha2: "TM", alpha3: "TKM", numeric: "795" }, { alpha2: "TN", alpha3: "TUN", numeric: "788" }, { alpha2: "TO", alpha3: "TON", numeric: "776" }, { alpha2: "TR", alpha3: "TUR", numeric: "792" }, { alpha2: "TT", alpha3: "TTO", numeric: "780" }, { alpha2: "TV", alpha3: "TUV", numeric: "798" }, { alpha2: "TW", alpha3: "TWN", numeric: "158" }, { alpha2: "TZ", alpha3: "TZA", numeric: "834" }, { alpha2: "UA", alpha3: "UKR", numeric: "804" }, { alpha2: "UG", alpha3: "UGA", numeric: "800" }, { alpha2: "UM", alpha3: "UMI", numeric: "581" }, { alpha2: "US", alpha3: "USA", numeric: "840" }, { alpha2: "UY", alpha3: "URY", numeric: "858" }, { alpha2: "UZ", alpha3: "UZB", numeric: "860" }, { alpha2: "VA", alpha3: "VAT", numeric: "336" }, { alpha2: "VC", alpha3: "VCT", numeric: "670" }, { alpha2: "VE", alpha3: "VEN", numeric: "862" }, { alpha2: "VG", alpha3: "VGB", numeric: "092" }, { alpha2: "VI", alpha3: "VIR", numeric: "850" }, { alpha2: "VN", alpha3: "VNM", numeric: "704" }, { alpha2: "VU", alpha3: "VUT", numeric: "548" }, { alpha2: "WF", alpha3: "WLF", numeric: "876" }, { alpha2: "WS", alpha3: "WSM", numeric: "882" }, { alpha2: "YE", alpha3: "YEM", numeric: "887" }, { alpha2: "YT", alpha3: "MYT", numeric: "175" }, { alpha2: "ZA", alpha3: "ZAF", numeric: "710" }, { alpha2: "ZM", alpha3: "ZMB", numeric: "894" }, { alpha2: "ZW", alpha3: "ZWE", numeric: "716" }];
|
|
15532
|
+
var nt = { country_code: hr, time_zone: _ }, fr = nt;
|
|
15533
|
+
var it = { title: "Base", code: "base" }, br = it;
|
|
15534
|
+
var dr = ["/Applications", "/bin", "/boot", "/boot/defaults", "/dev", "/etc", "/etc/defaults", "/etc/mail", "/etc/namedb", "/etc/periodic", "/etc/ppp", "/home", "/home/user", "/home/user/dir", "/lib", "/Library", "/lost+found", "/media", "/mnt", "/net", "/Network", "/opt", "/opt/bin", "/opt/include", "/opt/lib", "/opt/sbin", "/opt/share", "/private", "/private/tmp", "/private/var", "/proc", "/rescue", "/root", "/sbin", "/selinux", "/srv", "/sys", "/System", "/tmp", "/Users", "/usr", "/usr/X11R6", "/usr/bin", "/usr/include", "/usr/lib", "/usr/libdata", "/usr/libexec", "/usr/local/bin", "/usr/local/src", "/usr/obj", "/usr/ports", "/usr/sbin", "/usr/share", "/usr/src", "/var", "/var/log", "/var/mail", "/var/spool", "/var/tmp", "/var/yp"];
|
|
15535
|
+
var gr = { "application/epub+zip": { extensions: ["epub"] }, "application/gzip": { extensions: ["gz"] }, "application/java-archive": { extensions: ["jar", "war", "ear"] }, "application/json": { extensions: ["json", "map"] }, "application/ld+json": { extensions: ["jsonld"] }, "application/msword": { extensions: ["doc", "dot"] }, "application/octet-stream": { extensions: ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"] }, "application/ogg": { extensions: ["ogx"] }, "application/pdf": { extensions: ["pdf"] }, "application/rtf": { extensions: ["rtf"] }, "application/vnd.amazon.ebook": { extensions: ["azw"] }, "application/vnd.apple.installer+xml": { extensions: ["mpkg"] }, "application/vnd.mozilla.xul+xml": { extensions: ["xul"] }, "application/vnd.ms-excel": { extensions: ["xls", "xlm", "xla", "xlc", "xlt", "xlw"] }, "application/vnd.ms-fontobject": { extensions: ["eot"] }, "application/vnd.ms-powerpoint": { extensions: ["ppt", "pps", "pot"] }, "application/vnd.oasis.opendocument.presentation": { extensions: ["odp"] }, "application/vnd.oasis.opendocument.spreadsheet": { extensions: ["ods"] }, "application/vnd.oasis.opendocument.text": { extensions: ["odt"] }, "application/vnd.openxmlformats-officedocument.presentationml.presentation": { extensions: ["pptx"] }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { extensions: ["xlsx"] }, "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { extensions: ["docx"] }, "application/vnd.rar": { extensions: ["rar"] }, "application/vnd.visio": { extensions: ["vsd", "vst", "vss", "vsw"] }, "application/x-7z-compressed": { extensions: ["7z"] }, "application/x-abiword": { extensions: ["abw"] }, "application/x-bzip": { extensions: ["bz"] }, "application/x-bzip2": { extensions: ["bz2", "boz"] }, "application/x-csh": { extensions: ["csh"] }, "application/x-freearc": { extensions: ["arc"] }, "application/x-httpd-php": { extensions: ["php"] }, "application/x-sh": { extensions: ["sh"] }, "application/x-tar": { extensions: ["tar"] }, "application/xhtml+xml": { extensions: ["xhtml", "xht"] }, "application/xml": { extensions: ["xml", "xsl", "xsd", "rng"] }, "application/zip": { extensions: ["zip"] }, "audio/3gpp": { extensions: ["3gpp"] }, "audio/3gpp2": { extensions: ["3g2"] }, "audio/aac": { extensions: ["aac"] }, "audio/midi": { extensions: ["mid", "midi", "kar", "rmi"] }, "audio/mpeg": { extensions: ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"] }, "audio/ogg": { extensions: ["oga", "ogg", "spx", "opus"] }, "audio/opus": { extensions: ["opus"] }, "audio/wav": { extensions: ["wav"] }, "audio/webm": { extensions: ["weba"] }, "font/otf": { extensions: ["otf"] }, "font/ttf": { extensions: ["ttf"] }, "font/woff": { extensions: ["woff"] }, "font/woff2": { extensions: ["woff2"] }, "image/avif": { extensions: ["avif"] }, "image/bmp": { extensions: ["bmp"] }, "image/gif": { extensions: ["gif"] }, "image/jpeg": { extensions: ["jpeg", "jpg", "jpe"] }, "image/png": { extensions: ["png"] }, "image/svg+xml": { extensions: ["svg", "svgz"] }, "image/tiff": { extensions: ["tif", "tiff"] }, "image/vnd.microsoft.icon": { extensions: ["ico"] }, "image/webp": { extensions: ["webp"] }, "text/calendar": { extensions: ["ics", "ifb"] }, "text/css": { extensions: ["css"] }, "text/csv": { extensions: ["csv"] }, "text/html": { extensions: ["html", "htm", "shtml"] }, "text/javascript": { extensions: ["js", "mjs"] }, "text/plain": { extensions: ["txt", "text", "conf", "def", "list", "log", "in", "ini"] }, "video/3gpp": { extensions: ["3gp", "3gpp"] }, "video/3gpp2": { extensions: ["3g2"] }, "video/mp2t": { extensions: ["ts"] }, "video/mp4": { extensions: ["mp4", "mp4v", "mpg4"] }, "video/mpeg": { extensions: ["mpeg", "mpg", "mpe", "m1v", "m2v"] }, "video/ogg": { extensions: ["ogv"] }, "video/webm": { extensions: ["webm"] }, "video/x-msvideo": { extensions: ["avi"] } };
|
|
15536
|
+
var ot = { directory_path: dr, mime_type: gr }, yr = ot;
|
|
15537
|
+
var st = { color: er, database: nr, date: ir, hacker: sr, internet: pr, location: fr, metadata: br, system: yr }, Oi = st;
|
|
15538
|
+
var f = new Qe({ locale: [ys, Oi] });
|
|
15510
15539
|
const byteToHex = [];
|
|
15511
15540
|
for (let i = 0; i < 256; ++i) {
|
|
15512
15541
|
byteToHex.push((i + 256).toString(16).slice(1));
|
|
@@ -19872,26 +19901,26 @@ var wblk = function(dat, out, final, syms, lf, df, eb, li, bs, bl, p2) {
|
|
|
19872
19901
|
};
|
|
19873
19902
|
var deo = /* @__PURE__ */ new i32([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]);
|
|
19874
19903
|
var et = /* @__PURE__ */ new u8(0);
|
|
19875
|
-
var dflt = function(dat, lvl, plvl, pre, post,
|
|
19876
|
-
var s2 =
|
|
19904
|
+
var dflt = function(dat, lvl, plvl, pre, post, st2) {
|
|
19905
|
+
var s2 = st2.z || dat.length;
|
|
19877
19906
|
var o2 = new u8(pre + s2 + 5 * (1 + Math.ceil(s2 / 7e3)) + post);
|
|
19878
19907
|
var w2 = o2.subarray(pre, o2.length - post);
|
|
19879
|
-
var lst =
|
|
19880
|
-
var pos = (
|
|
19908
|
+
var lst = st2.l;
|
|
19909
|
+
var pos = (st2.r || 0) & 7;
|
|
19881
19910
|
if (lvl) {
|
|
19882
19911
|
if (pos)
|
|
19883
|
-
w2[0] =
|
|
19912
|
+
w2[0] = st2.r >> 3;
|
|
19884
19913
|
var opt = deo[lvl - 1];
|
|
19885
19914
|
var n2 = opt >> 13, c2 = opt & 8191;
|
|
19886
19915
|
var msk_1 = (1 << plvl) - 1;
|
|
19887
|
-
var prev =
|
|
19916
|
+
var prev = st2.p || new u16(32768), head = st2.h || new u16(msk_1 + 1);
|
|
19888
19917
|
var bs1_1 = Math.ceil(plvl / 3), bs2_1 = 2 * bs1_1;
|
|
19889
19918
|
var hsh = function(i2) {
|
|
19890
19919
|
return (dat[i2] ^ dat[i2 + 1] << bs1_1 ^ dat[i2 + 2] << bs2_1) & msk_1;
|
|
19891
19920
|
};
|
|
19892
19921
|
var syms = new i32(25e3);
|
|
19893
19922
|
var lf = new u16(288), df = new u16(32);
|
|
19894
|
-
var lc_1 = 0, eb = 0, i =
|
|
19923
|
+
var lc_1 = 0, eb = 0, i = st2.i || 0, li = 0, wi = st2.w || 0, bs = 0;
|
|
19895
19924
|
for (; i + 2 < s2; ++i) {
|
|
19896
19925
|
var hv = hsh(i);
|
|
19897
19926
|
var imod = i & 32767, pimod = head[hv];
|
|
@@ -19956,12 +19985,12 @@ var dflt = function(dat, lvl, plvl, pre, post, st) {
|
|
|
19956
19985
|
}
|
|
19957
19986
|
pos = wblk(dat, w2, lst, syms, lf, df, eb, li, bs, i - bs, pos);
|
|
19958
19987
|
if (!lst) {
|
|
19959
|
-
|
|
19988
|
+
st2.r = pos & 7 | w2[pos / 8 | 0] << 3;
|
|
19960
19989
|
pos -= 7;
|
|
19961
|
-
|
|
19990
|
+
st2.h = head, st2.p = prev, st2.i = i, st2.w = wi;
|
|
19962
19991
|
}
|
|
19963
19992
|
} else {
|
|
19964
|
-
for (var i =
|
|
19993
|
+
for (var i = st2.w || 0; i < s2 + lst; i += 65535) {
|
|
19965
19994
|
var e2 = i + 65535;
|
|
19966
19995
|
if (e2 >= s2) {
|
|
19967
19996
|
w2[pos / 8 | 0] = lst;
|
|
@@ -19969,7 +19998,7 @@ var dflt = function(dat, lvl, plvl, pre, post, st) {
|
|
|
19969
19998
|
}
|
|
19970
19999
|
pos = wfblk(w2, pos + 1, dat.subarray(i, e2));
|
|
19971
20000
|
}
|
|
19972
|
-
|
|
20001
|
+
st2.i = s2;
|
|
19973
20002
|
}
|
|
19974
20003
|
return slc(o2, 0, pre + shft(pos) + post);
|
|
19975
20004
|
};
|
|
@@ -19997,19 +20026,19 @@ var crc = function() {
|
|
|
19997
20026
|
}
|
|
19998
20027
|
};
|
|
19999
20028
|
};
|
|
20000
|
-
var dopt = function(dat, opt, pre, post,
|
|
20001
|
-
if (!
|
|
20002
|
-
|
|
20029
|
+
var dopt = function(dat, opt, pre, post, st2) {
|
|
20030
|
+
if (!st2) {
|
|
20031
|
+
st2 = { l: 1 };
|
|
20003
20032
|
if (opt.dictionary) {
|
|
20004
20033
|
var dict = opt.dictionary.subarray(-32768);
|
|
20005
20034
|
var newDat = new u8(dict.length + dat.length);
|
|
20006
20035
|
newDat.set(dict);
|
|
20007
20036
|
newDat.set(dat, dict.length);
|
|
20008
20037
|
dat = newDat;
|
|
20009
|
-
|
|
20038
|
+
st2.w = dict.length;
|
|
20010
20039
|
}
|
|
20011
20040
|
}
|
|
20012
|
-
return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ?
|
|
20041
|
+
return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ? st2.l ? Math.ceil(Math.max(8, Math.min(13, Math.log(dat.length))) * 1.5) : 20 : 12 + opt.mem, pre, post, st2);
|
|
20013
20042
|
};
|
|
20014
20043
|
var wbytes = function(d2, b2, v2) {
|
|
20015
20044
|
for (; v2; ++b2)
|