deverything 0.27.1 → 0.28.1

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/README.md CHANGED
@@ -91,6 +91,7 @@ These functions are optimized for low entropy random data generation useful for
91
91
  - ⭐ `randomArrayItem()`
92
92
  - `randomBankAccount()`
93
93
  - `randomBool()`
94
+ - `randomCompany()`
94
95
  - ⭐ `randomCoords()`
95
96
  - `randomLat()`
96
97
  - `randomLng()`
@@ -124,6 +125,7 @@ These functions are optimized for low entropy random data generation useful for
124
125
  - `randomNumericId()` autoincremental process-unique id
125
126
  - `randomParagraph()`
126
127
  - `randomPassword()`
128
+ - `randomPhoneNumber()`
127
129
  - `randomUUID()` lightweight uuid generation, passing UUID validation
128
130
  - `randomWord()`
129
131
 
package/dist/index.d.ts CHANGED
@@ -211,8 +211,8 @@ declare const randomArrayItem: <T>(array: T[]) => T;
211
211
  type BankAccount = {
212
212
  abaNumber?: string;
213
213
  accountHolderName: string;
214
- accountHolderType?: "company" | "individual" | "other";
215
- accountNumber?: string;
214
+ accountHolderType: "company" | "individual" | "other";
215
+ accountNumber: string;
216
216
  accountType?: "checking" | "savings";
217
217
  bankName?: string;
218
218
  bsbNumber?: string;
@@ -230,6 +230,13 @@ declare const randomBankAccount: () => BankAccount;
230
230
 
231
231
  declare const randomBool: () => boolean;
232
232
 
233
+ type Company = {
234
+ name: string;
235
+ vatRegNumber?: string;
236
+ };
237
+
238
+ declare const randomCompany: () => Company;
239
+
233
240
  declare const randomCoords: () => Coords;
234
241
  declare const randomLat: () => number;
235
242
  declare const randomLng: () => number;
@@ -307,9 +314,13 @@ declare const randomNumericCode: ({ length }?: {
307
314
 
308
315
  declare const randomNumericId: () => number;
309
316
 
317
+ declare const randomPhoneNumber: () => string;
318
+
310
319
  declare const randomParagraph: () => string;
311
320
 
312
- declare const randomPassword: () => string;
321
+ declare const randomPassword: ({ minChars }?: {
322
+ minChars?: number | undefined;
323
+ }) => string;
313
324
 
314
325
  /**
315
326
  * This is a light-weight version of the `generateUuid` function
@@ -386,4 +397,4 @@ declare const isUUID: (arg: string) => boolean;
386
397
 
387
398
  declare const isValue: (arg?: Maybe<any>) => boolean;
388
399
 
389
- export { Coords, DateLike, DateRange, Datey, Dimensions, JS_MAX_DIGITS, Matrix, Maybe, MaybePromise, MaybePromiseOrValue, MaybePromiseOrValueArray, NonUndefined, ObjectKey, ObjectKeys, ObjectValue, ObjectValues, PlainObject, Point, PrismaSelect, array, arrayDiff, arrayIntersection, average, capitalize, checkEnvVars, clamp, cleanSpaces, dir, first, firstKey, firstValue, getEnumerableOwnPropertySymbols, getKeys, isArray, isBoolean, isBrowser, isClient, isEmail, isEmpty, isEmptyArray, isEmptyObject, isEmptyString, isEven, isFunction, isFutureDate, isInt, isJsDate, isKey, isLastIndex, isNegative, isNumber, isNumeric, isNumericId, isObject, isOdd, isPWA, isPastDate, isPositive, isPromise, isReactElement, isRegExp, isSame, isServer, isSpacedString, isString, isStringDate, isURL, isUUID, isValue, last, max, merge, min, moveToFirst, moveToLast, normalizeNumber, objectDiff, omit, parseDate, pretty, promiseWithTimeout, randomAddress, randomAlphaNumericCode, randomArrayItem, randomBankAccount, randomBool, randomCoords, randomDate, randomDateRange, randomEmail, randomEmoji, randomEnumKey, randomEnumValue, randomFile, randomFirstName, randomFloat, randomFormattedPercentage, randomFullName, randomFutureDate, randomHandle, randomHexColor, randomHexValue, randomHtmlColorName, randomIBAN, randomIP, randomInt, randomLastName, randomLat, randomLng, randomMaxDate, randomMaxInt, randomMaxSafeInt, randomName, randomNegativeInt, randomNumericCode, randomNumericId, randomParagraph, randomPassword, randomPastDate, randomPercentage, randomPositiveInt, randomPositivePercentage, randomUUID, randomWord, serialize, shuffle, sleep, sum, sumBy, toggleArray, toggleArrayValue, truncate, uniqueValues };
400
+ export { Coords, DateLike, DateRange, Datey, Dimensions, JS_MAX_DIGITS, Matrix, Maybe, MaybePromise, MaybePromiseOrValue, MaybePromiseOrValueArray, NonUndefined, ObjectKey, ObjectKeys, ObjectValue, ObjectValues, PlainObject, Point, PrismaSelect, array, arrayDiff, arrayIntersection, average, capitalize, checkEnvVars, clamp, cleanSpaces, dir, first, firstKey, firstValue, getEnumerableOwnPropertySymbols, getKeys, isArray, isBoolean, isBrowser, isClient, isEmail, isEmpty, isEmptyArray, isEmptyObject, isEmptyString, isEven, isFunction, isFutureDate, isInt, isJsDate, isKey, isLastIndex, isNegative, isNumber, isNumeric, isNumericId, isObject, isOdd, isPWA, isPastDate, isPositive, isPromise, isReactElement, isRegExp, isSame, isServer, isSpacedString, isString, isStringDate, isURL, isUUID, isValue, last, max, merge, min, moveToFirst, moveToLast, normalizeNumber, objectDiff, omit, parseDate, pretty, promiseWithTimeout, randomAddress, randomAlphaNumericCode, randomArrayItem, randomBankAccount, randomBool, randomCompany, randomCoords, randomDate, randomDateRange, randomEmail, randomEmoji, randomEnumKey, randomEnumValue, randomFile, randomFirstName, randomFloat, randomFormattedPercentage, randomFullName, randomFutureDate, randomHandle, randomHexColor, randomHexValue, randomHtmlColorName, randomIBAN, randomIP, randomInt, randomLastName, randomLat, randomLng, randomMaxDate, randomMaxInt, randomMaxSafeInt, randomName, randomNegativeInt, randomNumericCode, randomNumericId, randomParagraph, randomPassword, randomPastDate, randomPercentage, randomPhoneNumber, randomPositiveInt, randomPositivePercentage, randomUUID, randomWord, serialize, shuffle, sleep, sum, sumBy, toggleArray, toggleArrayValue, truncate, uniqueValues };
@@ -1,123 +1,125 @@
1
1
  (function (exports) {
2
2
  'use strict';
3
3
 
4
- var f=t=>Array.isArray(t);var p=t=>Object.prototype.toString.call(t)==="[object Object]";var yt=["oneOf","endsWith","startsWith"],ee=(t,e)=>{let r=(e==null?void 0:e.processEnvKey)||"NODE_ENV",o=[],i=[],l=({envVarKey:c,envVarValue:s,validation:m})=>{m.oneOf&&(s?m.oneOf.includes(s)||o.push(`${c}=${s} is not allowed, use one of: ${m.oneOf.join(", ")}`):o.push(`${c} is missing`)),m.endsWith&&(s?s!=null&&s.endsWith(m.endsWith)||o.push(`${c}=${s} is not allowed, must end in: ${m.endsWith}`):o.push(`${c} is missing`)),m.startsWith&&(s?s!=null&&s.startsWith(m.startsWith)||o.push(`${c}=${s} is not allowed, must start with: ${m.startsWith}`):o.push(`${c} is missing`));},h=({envVarKey:c,envVarValue:s,rule:m})=>{switch(m){case"should":s||i.push(`${c} should be set`);break;case"shouldNot":s&&i.push(`${c} should not be set`);break;case"never":case!1:s&&o.push(`${c} is not allowed`);break;case"always":case!0:default:s||o.push(`${c} is missing`);break}};if(Object.entries(t).forEach(([c,s])=>{let m=process.env[c];p(s)?(Object.entries(s).forEach(([A,y])=>{yt.includes(A)&&l({envVarValue:m,validation:{[A]:y},envVarKey:c});}),Object.entries(s).forEach(([A,y])=>{process.env[r]===A&&(p(y)?l({envVarValue:m,validation:y,envVarKey:c}):h({envVarValue:m,rule:y,envVarKey:c}));})):f(s)?s.forEach(y=>{process.env[r]===y&&!m&&o.push(`${c} is missing`);}):h({envVarValue:m,rule:s,envVarKey:c});}),i.length&&console.warn("[WARNING] "+i.join(", ")),o.length)throw new Error("[ERROR] "+o.join(", "))};var d=(t,e=()=>{})=>Array.from({length:t},e);var T=t=>[...new Set(t)];var se=(t,e)=>T(t.filter(r=>!e.includes(r)).concat(e.filter(r=>!t.includes(r))));var me=(t,e)=>T(t.filter(r=>e.includes(r)));var U=t=>t.charAt(0).toUpperCase()+t.slice(1).toLowerCase();var le=({number:t,min:e,max:r})=>(r<e&&process.env.DEVERYTHING_WARNINGS&&console.warn("clamp: max < min",{number:t,min:e,max:r}),t<e?e:t>r?r:t);var W=new RegExp(/\p{C}/,"gu");var F=new RegExp("\\p{Zs}","gu");var z=new RegExp("\\p{Zl}","gu");var K=new RegExp("\\p{Zp}","gu");var Ne=t=>t.replace(W," ").replace(F," ").replace(z," ").replace(K," ").trim().replace(/\s{2,}/g," ");var Te=(t,e=5)=>{console.dir(t,{depth:e});};var _e=t=>t==null?void 0:t[0];var u=t=>Object.keys(t).concat(St(t)),St=t=>Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter(function(e){return Object.propertyIsEnumerable.call(t,e)}):[];var Ie=t=>u(t)[0];var Re=t=>Object.values(t)[0];var we=t=>t==null?void 0:t[t.length-1];var je=t=>Object.prototype.toString.call(t)==="[object Boolean]";var H=()=>typeof window=="undefined";var C=()=>!H();var Ke=C;var S=t=>typeof t=="string";var Je=t=>S(t)&&/\S+@\S+\.\S+/.test(t);var G=t=>!!(t===void 0||t===null||At(t)||gt(t)||xt(t)),At=t=>S(t)&&t.trim().length===0,xt=t=>f(t)&&t.length===0,gt=t=>p(t)&&Object.keys(t).length===0;var x=t=>Object.prototype.toString.call(t)==="[object Function]";var R=t=>{let e=b(t);return !!e&&e>new Date};var _=t=>Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t);var O=(t,e)=>e.hasOwnProperty(t)&&e.propertyIsEnumerable(t);var or=(t,e)=>t===e.length-1;var M=t=>Number.isInteger(t),ir=t=>M(t)&&!(t%2),sr=t=>M(t)&&!!(t%2),$=t=>M(t)&&t>0,ar=t=>M(t)&&t<0,J=t=>Object.prototype.toString.apply(t)==="[object Number]"&&isFinite(t);var v=t=>t.indexOf(" ")>=0;var X=t=>J(t)?!0:!S(t)||v(t)?!1:!isNaN(parseFloat(t));var fr=t=>/^\d+$/.test(t)&&parseInt(t)>0;var B=t=>{let e=b(t);return !!e&&e<new Date};var Ar=t=>t instanceof Promise;var Er=()=>C()&&window.matchMedia("(display-mode: standalone)").matches;var Et=typeof Symbol=="function"&&Symbol.for,Nt=Et?Symbol.for("react.element"):60103,hr=t=>t.$$typeof===Nt;var Cr=t=>Object.prototype.toString.call(t)==="[object RegExp]";var P=(t,e)=>{if(t===e)return !0;if(f(t)&&f(e))return t.length!==e.length?!1:t.every((r,o)=>P(r,e[o]));if(p(t)&&p(e)){let r=u(t);return r.length!==u(e).length?!1:r.every(o=>P(t[o],e[o]))}return x(t)&&x(e)?t.toString()===e.toString():!1};var Br=t=>{let e=new Date(t);return _(e)};var ht=new RegExp("^(https?:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.?)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$","i"),Lr=t=>!!t&&ht.test(t);var kr=t=>/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t);var V=t=>t!=null&&!Number.isNaN(t);var w=(t,e)=>{let r={};return u(t).forEach(o=>{r[o]=p(t[o])?w({},t[o]):t[o];}),u(e).forEach(o=>{O(o,t)?r[o]=p(t[o])&&p(e[o])?w(t[o],e[o]):e[o]:r[o]=p(e[o])?w({},e[o]):e[o];}),r};var Hr=(t,e)=>{let r=[...t];for(let o=0;o<r.length;o++)if(e(r[o],o,r)){let i=r.splice(o,1);r.unshift(i[0]);break}return r};var $r=(t,e)=>{let r=[...t];for(let o=0;o<r.length;o++)if(e(r[o],o,r)){let i=r.splice(o,1)[0];r.push(i);break}return r};var vr=({value:t,max:e,min:r})=>t>=e?1:t<=r?0:(t-r)/(e-r);var Yr=(t,e)=>{var r={};let o=new Set([...u(t),...u(e)]);for(let i of o)P(e[i],t[i])||(r[i]={from:t[i],to:e[i]});return r};var Qr=(t,e)=>{let r={};for(let o in t)e.includes(o)||(r[o]=t[o]);return r};var b=t=>{if(G(t))return;let e=new Date(t);if(_(e))return e};var q=()=>{let t=[],e=[],r=function(o,i){return t[0]===i?"[Circular ~]":"[Circular ~."+e.slice(0,t.indexOf(i)).join(".")+"]"};return function(o,i){if(t.length>0){let l=t.indexOf(this);~l?t.splice(l+1):t.push(this),~l?e.splice(l,1/0,o):e.push(o),~t.indexOf(i)&&(i=r.call(this,o,i));}else t.push(i);return i}};var so=t=>JSON.stringify(t,q(),2);var co=(t,e,r)=>{let o,i=new Promise((l,h)=>{o=setTimeout(()=>h(r!=null?r:new Error("Promise timed out")),e);});return Promise.race([t(),i]).finally(()=>{clearTimeout(o);})};var po=t=>{let e=new Set;return JSON.stringify(t,(r,o)=>(e.add(r),o)),JSON.stringify(t,Array.from(e).sort())};var lo=t=>{let e=[...t];for(let r=e.length-1;r>0;r--){let o=Math.floor(Math.random()*(r+1));[e[r],e[o]]=[e[o],e[r]];}return e};var bo=t=>new Promise(e=>{setTimeout(e,t);});var Tt=(t,e)=>{if(!f(t))return t;let r=t.reduce((o,i)=>(i!==e&&o.push(i),o),[]);return r.length===t.length&&r.push(e),r},Ao=Tt;var Eo=(t,e,r="...")=>{if(!$(e))return t;let o=[...t];return o.length<=e?t:o.slice(0,e).join("")+r};var ho=t=>t.reduce((r,o)=>r+o,0)/t.length;var Co=t=>Math.max(...t);var Oo=t=>Math.min(...t);var Y=(t,e)=>x(e)?e(t):t[e];var Bo=t=>t.reduce((e,r)=>e+r,0),wo=(t,e)=>t.reduce((r,o)=>r+Y(o,e),0);var Ct=[{city:"London",country:"United Kingdom",countryCode:"GB",line2:"Marylebone",number:"221B",street:"Baker Street",zip:"NW1 6XE"},{city:"Birmingham",country:"United Kingdom",countryCode:"GB",number:"B1 1AA",street:"Bordesley Street",zip:"B1 1AA"}],_t=[{city:"New York",country:"United States",countryCode:"US",state:"NY",street:"Broadway",line2:"Manhattan",number:"42",zip:"10036"},{city:"Los Angeles",country:"United States",countryCode:"US",state:"CA",street:"Hollywood Boulevard",number:"6801",zip:"90028"}],Ot=[{city:"Paris",country:"France",countryCode:"FR",street:"Rue de Rivoli",number:"75001",zip:"75001"},{city:"Berlin",country:"Germany",countryCode:"DE",street:"Unter den Linden",line2:"Mitte",number:"10117",zip:"10117"},{city:"Rome",country:"Italy",countryCode:"IT",street:"Via del Corso",number:"00186",zip:"00186"},{city:"Madrid",country:"Spain",countryCode:"ES",street:"Gran V\xEDa",line2:"Sol",number:"28013",zip:"28013"}],Mt=[{city:"Moscow",country:"Russia",countryCode:"RU",street:"Tverskaya",number:"101000",zip:"101000"},{city:"Tokyo",country:"Japan",countryCode:"JP",street:"Shinjuku",line2:"Shinjuku City",number:"160-0022",zip:"160-0022"},{city:"Beijing",country:"China",countryCode:"CN",street:"Changan",number:"100005",zip:"100005"},{city:"Cairo",country:"Egypt",countryCode:"EG",street:"Al-Muizz",number:"11511",zip:"11511"},{city:"Buenos Aires",country:"Argentina",countryCode:"AR",street:"Avenida de Mayo",number:"1002",zip:"C1006AAQ"},{city:"Cape Town",country:"South Africa",countryCode:"ZA",street:"Adderley",number:"7700",zip:"7700"},{city:"Sydney",country:"Australia",countryCode:"AU",street:"George",line2:"Haymarket",number:"2000",zip:"2000"},{city:"Rio de Janeiro",country:"Brazil",countryCode:"BR",street:"Av. Presidente Vargas",number:"20021-000",zip:"20021-000"},{city:"Mexico City",country:"Mexico",countryCode:"MX",street:"Paseo de la Reforma",number:"06500",zip:"06500"}],Z=[...Ct,..._t,...Ot,...Mt];var a=(t=-100,e=100)=>(t=Math.ceil(t),e=Math.floor(e),Math.floor(Math.random()*(e-t+1)+t)),ko=(t=100)=>a(1,t),Uo=(t=-100)=>a(t,-1),Wo=()=>a(-Number.MAX_SAFE_INTEGER,Number.MAX_SAFE_INTEGER),Fo=()=>a(-Number.MAX_VALUE,Number.MAX_VALUE),Pt=({min:t,max:e}={})=>a(t!=null?t:-100,e!=null?e:100),zo=({min:t,max:e}={})=>a(t!=null?t:1,e!=null?e:100),Ko=()=>Pt()+"%";var n=t=>t[a(0,t.length-1)];var Xo=()=>n(Z);var It="123456789ABCDEFGHIJKLMNPQRSTUVWXYZ".split(""),Zo=({length:t=6}={})=>{if(t<1)throw new Error("randomAlphaNumericCode: Length must be greater than 0.");return d(t,()=>n(It)).join("")};var Q=["AD1200012030200359100100","BA391290079401028494","BE68539007547034","BG80BNBG96611020345678","FI2112345600000785","FO6264600001631634","FR1420041010050500013M02606","GB29NWBK60161331926819","GE29NB0000000101904917"];var Dt=[{accountHolderName:"John Peters",accountNumber:"12345678",bankAddress:"1 Churchill Place, Canary Wharf, London, E14 5HP, UK",bankName:"Barclays plc",bicSwift:"BARCGB22",iban:"GB51BARC20039534871253",sortCode:"12-34-56"},{accountHolderName:"Jane Evans",accountNumber:"87654321",bankAddress:"8 Canada Square, London, E14 5HQ, UK",bankName:"HSBC Holdings plc",bicSwift:"HSBCGB2L",iban:"GB82BARC20031847813531",sortCode:"65-43-21"}],Rt=[{accountHolderName:"Jack I. Taylor",accountNumber:"123456789012",accountType:"checking",bankAddress:"Bank of America Corporate Center, 100 North Tryon Street, Charlotte, NC 28255, USA",bankName:"Bank of America Corporation",routingNumber:"111000025"},{accountHolderName:"Sally T King",accountNumber:"987654321098",accountType:"savings",bankAddress:"383 Madison Avenue, New York, NY 10179, USA",bankName:"JPMorgan Chase & Co.",routingNumber:"021000021"}],Bt=[{accountHolderName:"William Kevin White",accountNumber:"123456789012",accountType:"savings",bankAddress:"Commonwealth Bank Centre, Tower 1, 201 Sussex Street, Sydney, NSW 2000, Australia",bankName:"Commonwealth Bank of Australia",bicSwift:"CTBAAU2S",bsbNumber:"062-000"},{accountHolderName:"Jennifer Ann Brown",accountNumber:"987654321098",accountType:"checking",bankAddress:"Westpac Place, 275 Kent Street, Sydney, NSW 2000, Australia",bankName:"Westpac Banking Corporation",bicSwift:"WPACAU2S",bsbNumber:"032-001"}],wt=[{accountHolderName:"Charles Green",accountNumber:"123456789012",accountType:"savings",bankAddress:"Royal Bank Plaza, 200 Bay Street, North Tower, Toronto, ON M5J 2J5, Canada",bankName:"Royal Bank of Canada",branchTransitNumber:"45678",institutionNumber:"123"},{accountHolderName:"Olivia Orange",accountNumber:"987654321098",accountType:"checking",bankAddress:"TD Canada Trust Tower, 161 Bay Street, Toronto, ON M5J 2S8, Canada",bankName:"Toronto-Dominion Bank",branchTransitNumber:"65432",institutionNumber:"987"}],tt=[...Dt,...Rt,...Bt,...wt];var on=()=>n(tt);var an=()=>!!a(0,1);var pn=16,L=(t=-9,e=9,r)=>{let o=Math.random()*(e-t)+t;return V(r)?parseFloat(o.toFixed(r)):o};var dn=()=>({lat:Lt(),lng:jt()}),Lt=()=>L(-90,90),jt=()=>L(-180,180);var k=t=>new Date(new Date().getTime()+t),g=(t,e)=>{let r=b(t),o=b(e);r&&o&&r>o&&console.warn("randomDate: startDate must be before endDate");let i=r||(o?new Date(o.getTime()-31536e7):k(-31536e7)),l=o||(r?new Date(r.getTime()+31536e7):k(31536e7));return new Date(a(i.getTime(),l.getTime()))},xn=(t,e)=>{let r=t||new Date(-864e13),o=e||new Date(864e13);return g(r,o)},gn=({startDate:t,endDate:e}={})=>{t&&B(t)&&console.warn("randomFutureDate: startDate must be in the future"),e&&B(e)&&console.warn("randomFutureDate: endDate must be in the future");let r=b(t)||k(5*6e4);return g(r,e)},En=({startDate:t,endDate:e}={})=>{t&&R(t)&&console.warn("randomPastDate: startDate must be in the past"),e&&R(e)&&console.warn("randomPastDate: endDate must be in the past");let r=b(e)||new Date;return g(t,r)},Nn=()=>{let t=g();return {endDate:g(t),startDate:t}};var et=["gmail.com","yahoo.com","hotmail.com","aol.com","msn.com","comcast.net","live.com","att.net","mac.com","me.com","charter.net","shaw.ca","yahoo.ca","mail.com","qq.com","web.de","gmx.de","mail.ru"];var rt=["Albatross","Dolphin","Elephant","Giraffe","Koala","Lion","Penguin","Squirrel","Tiger","Turtle","Whale","Zebra"],ot=["Axe","Chisel","Drill","Hammer","Mallet","Pliers","Saw","Screwdriver","Wrench","Blowtorch","Crowbar","Ladder"],E=["Adrian","Albert","Alexander","Alice","Amanda","Amy","Benjamin","David","Emma","Esther","Olivia","Ruby","Sarah","Victoria"],N=["Anderson","Brown","Davis","Jackson","Johnson","Jones","Miller","Moore","Smith","Taylor","Thomas","White","Williams","Wilson"],Ut=["\u0410\u0431\u0438\u0433\u0430\u0438\u043B","\u0410\u0433\u043D\u0435\u0441","\u0410\u0434\u0430\u043C","\u0410\u0434\u0440\u0438\u0430\u043D","\u0410\u043B\u0430\u043D","\u0410\u043B\u0435\u043A\u0441\u0430\u043D\u0434\u0440","\u0410\u043B\u0438\u0441\u0430","\u0410\u043B\u044C\u0431\u0435\u0440\u0442","\u0410\u043C\u0430\u043D\u0434\u0430","\u0410\u043C\u0435\u043B\u0438\u044F","\u042D\u043C\u0438","\u042D\u043D\u0434\u0440\u044E"],Wt=["\u0410\u043D\u0434\u0435\u0440\u0441\u043E\u043D","\u0411\u0440\u0430\u0443\u043D","\u0412\u0438\u043B\u0441\u043E\u043D","\u0414\u0436\u0435\u043A\u0441\u043E\u043D","\u0414\u0436\u043E\u043D\u0441","\u0414\u0436\u043E\u043D\u0441\u043E\u043D","\u0414\u044D\u0432\u0438\u0441","\u041C\u0438\u043B\u043B\u0435\u0440","\u041C\u0443\u0440","\u0421\u043C\u0438\u0442","\u0422\u0435\u0439\u043B\u043E\u0440","\u0422\u043E\u043C\u0430\u0441","\u0423\u0430\u0439\u0442","\u0423\u0438\u043B\u044C\u044F\u043C\u0441"],Ft=["\u30A2\u30B0\u30CD\u30B9","\u30A2\u30C0\u30E0","\u30A2\u30C9\u30EA\u30A2\u30F3","\u30A2\u30D3\u30B2\u30A4\u30EB","\u30A2\u30DE\u30F3\u30C0","\u30A2\u30DF\u30FC","\u30A2\u30E1\u30EA\u30A2","\u30A2\u30E9\u30F3","\u30A2\u30EA\u30B9","\u30A2\u30EB\u30D0\u30FC\u30C8","\u30A2\u30EC\u30AF\u30B5\u30F3\u30C0\u30FC","\u30A2\u30F3\u30C9\u30EA\u30E5\u30FC"],zt=["\u30A2\u30F3\u30C0\u30FC\u30BD\u30F3","\u30A6\u30A3\u30EA\u30A2\u30E0\u30BA","\u30A6\u30A3\u30EB\u30BD\u30F3","\u30B8\u30E3\u30AF\u30BD\u30F3","\u30B8\u30E7\u30FC\u30F3\u30BA","\u30B8\u30E7\u30F3\u30BD\u30F3","\u30B9\u30DF\u30B9","\u30BF\u30A4\u30E9\u30FC","\u30C7\u30A4\u30D3\u30B9","\u30C8\u30FC\u30DE\u30B9","\u30D6\u30E9\u30A6\u30F3","\u30DB\u30EF\u30A4\u30C8","\u30DF\u30E9\u30FC","\u30E2\u30A2"],Kt=["\u0622\u062F\u0631\u064A\u0627\u0646","\u0622\u062F\u0645","\u0622\u0644\u0627\u0646","\u0622\u0644\u0628\u0631\u062A","\u0622\u0644\u064A\u0633","\u0622\u0645\u0627\u0646\u062F\u0627","\u0622\u0645\u064A","\u0622\u0645\u064A\u0644\u064A\u0627","\u0623\u0628\u064A\u062C\u064A\u0644","\u0623\u063A\u0646\u064A\u0633","\u0623\u0644\u0643\u0633\u0646\u062F\u0631","\u0623\u0646\u062F\u0631\u0648"],Ht=["\u0623\u0646\u062F\u0631\u0633\u0648\u0646","\u0628\u0631\u0627\u0648\u0646","\u062A\u0627\u064A\u0644\u0648\u0631","\u062A\u0648\u0645\u0627\u0633","\u062C\u0627\u0643\u0633\u0648\u0646","\u062C\u0648\u0646\u0632","\u062C\u0648\u0646\u0633\u0648\u0646","\u062F\u064A\u0641\u064A\u0633","\u0633\u0645\u064A\u062B","\u0645\u0648\u0631","\u0645\u064A\u0644\u0631","\u0648\u0627\u064A\u062A","\u0648\u064A\u0644\u0633\u0648\u0646","\u0648\u064A\u0644\u064A\u0627\u0645\u0632"],nt=[...E,...Ut,...Ft,...Kt],it=[...N,...Wt,...zt,...Ht];var st=()=>(n(E)+"."+n(N)).toLowerCase()+a(11,99);var Bn=()=>`${st()}@${n(et)}`;var at=["\u{1F600}","\u{1F601}","\u{1F602}","\u{1F923}","\u{1F603}","\u{1F604}","\u{1F605}","\u{1F606}","\u{1F609}","\u{1F60A}","\u{1F60B}","\u{1F60E}","\u{1F60D}","\u{1F618}","\u{1F617}","\u{1F619}"],ct=["!","@","#","$","%","^","&","*"];var Un=()=>n(at);var mt=t=>Object.keys(t).filter(e=>!X(e));var Gn=t=>{let e=mt(t);return n(e)};var pt=t=>{let e=[];return Object.values(t).forEach(r=>{O(r,t)&&!e.includes(r)&&e.push(t[r]);}),e};var qn=t=>{let e=pt(t);return n(e)};var Gt=["abide","abound","accept","accomplish","achieve","acquire","act","adapt","add","adjust","admire","admit","adopt","advance","advise","afford","agree","alert","allow","be","go","need","work"],$t=["courage","family","food","friend","fun","hope","justice","life","love","music","smile","time"],Jt=["absolute","compassionate","cozy","dull","enigmatic","fascinating","interesting","playful","remarkable","sunny","unforgettable","wonderful","predictable"],vt=["abnormally","aboard","absentmindedly","absolutely","absurdly","abundantly","abysmally","academically","acceleratedly","accentually","acceptably","accessibly","accidentally","accommodatingly"],Xt=["Pneumonoultramicroscopicsilicovolcanoconiosis","Floccinaucinihilipilification","Pseudopseudohypoparathyroidism","Hippopotomonstrosesquippedaliophobia","Antidisestablishmentarianism","Supercalifragilisticexpialidocious","Honorificabilitudinitatibus"];var ut=["AliceBlue","Aqua","Aquamarine","Azure","Beige","Bisque","Black","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","DarkSlateGray","DeepPink","Gold","Lime","Olive","Orchid","Salmon","Turquoise"],lt=[...Gt,...$t,...Jt,...vt,...Xt];var I=()=>n(lt);var dt=()=>U(d(a(8,16),()=>I()).join(" "))+".";var Vt=["png","jpg","jpeg","gif","svg","webp"],pi=({name:t,extension:e}={})=>{if(typeof File=="undefined")return;let r=e||n(Vt);return new File([dt()],`${t||I()}.${r}`,{type:`image/${r}`})};var D=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];var yi=()=>"#"+d(6,()=>n(D)).join("");var gi=()=>n(D);var ft=()=>n(ut);var Oi=()=>n(Q);var Di=()=>d(4,()=>a(0,255).toString()).join(".");var Li=()=>n([...rt,...ot]),ji=()=>n(nt),ki=()=>n(it),Ui=()=>n(E)+" "+n(N);var Ki=({length:t=6}={})=>{if(t<1)throw new Error("randomNumericCode: Length must be greater than 0.");return d(t,(e,r)=>a(r?0:1,9)).join("")};var qt=1,bt=()=>qt++;var Vi=()=>ft()+n(ct)+a(11,99);var Zi=()=>{let t=bt().toString().padStart(15,"0"),e=t.substring(0,12);return `00000000-0000-1000-8${t.substring(12,15)}-${e}`};
4
+ var f=t=>Array.isArray(t);var p=t=>Object.prototype.toString.call(t)==="[object Object]";var xt=["oneOf","endsWith","startsWith"],ne=(t,e)=>{let r=(e==null?void 0:e.processEnvKey)||"NODE_ENV",o=[],i=[],l=({envVarKey:c,envVarValue:a,validation:m})=>{m.oneOf&&(a?m.oneOf.includes(a)||o.push(`${c}=${a} is not allowed, use one of: ${m.oneOf.join(", ")}`):o.push(`${c} is missing`)),m.endsWith&&(a?a!=null&&a.endsWith(m.endsWith)||o.push(`${c}=${a} is not allowed, must end in: ${m.endsWith}`):o.push(`${c} is missing`)),m.startsWith&&(a?a!=null&&a.startsWith(m.startsWith)||o.push(`${c}=${a} is not allowed, must start with: ${m.startsWith}`):o.push(`${c} is missing`));},T=({envVarKey:c,envVarValue:a,rule:m})=>{switch(m){case"should":a||i.push(`${c} should be set`);break;case"shouldNot":a&&i.push(`${c} should not be set`);break;case"never":case!1:a&&o.push(`${c} is not allowed`);break;case"always":case!0:default:a||o.push(`${c} is missing`);break}};if(Object.entries(t).forEach(([c,a])=>{let m=process.env[c];p(a)?(Object.entries(a).forEach(([S,b])=>{xt.includes(S)&&l({envVarValue:m,validation:{[S]:b},envVarKey:c});}),Object.entries(a).forEach(([S,b])=>{process.env[r]===S&&(p(b)?l({envVarValue:m,validation:b,envVarKey:c}):T({envVarValue:m,rule:b,envVarKey:c}));})):f(a)?a.forEach(b=>{process.env[r]===b&&!m&&o.push(`${c} is missing`);}):T({envVarValue:m,rule:a,envVarKey:c});}),i.length&&console.warn("[WARNING] "+i.join(", ")),o.length)throw new Error("[ERROR] "+o.join(", "))};var d=(t,e=()=>{})=>Array.from({length:t},e);var h=t=>[...new Set(t)];var me=(t,e)=>h(t.filter(r=>!e.includes(r)).concat(e.filter(r=>!t.includes(r))));var le=(t,e)=>h(t.filter(r=>e.includes(r)));var U=t=>t.charAt(0).toUpperCase()+t.slice(1).toLowerCase();var ye=({number:t,min:e,max:r})=>(r<e&&process.env.DEVERYTHING_WARNINGS&&console.warn("clamp: max < min",{number:t,min:e,max:r}),t<e?e:t>r?r:t);var W=new RegExp(/\p{C}/,"gu");var H=new RegExp("\\p{Zs}","gu");var F=new RegExp("\\p{Zl}","gu");var z=new RegExp("\\p{Zp}","gu");var Ce=t=>t.replace(W," ").replace(H," ").replace(F," ").replace(z," ").trim().replace(/\s{2,}/g," ");var Me=(t,e=5)=>{console.dir(t,{depth:e});};var Pe=t=>t==null?void 0:t[0];var u=t=>Object.keys(t).concat(gt(t)),gt=t=>Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter(function(e){return Object.propertyIsEnumerable.call(t,e)}):[];var Be=t=>u(t)[0];var Le=t=>Object.values(t)[0];var ke=t=>t==null?void 0:t[t.length-1];var We=t=>Object.prototype.toString.call(t)==="[object Boolean]";var K=()=>typeof window=="undefined";var C=()=>!K();var ve=C;var A=t=>typeof t=="string";var Ve=t=>A(t)&&/\S+@\S+\.\S+/.test(t);var G=t=>!!(t===void 0||t===null||Et(t)||Tt(t)||Nt(t)),Et=t=>A(t)&&t.trim().length===0,Nt=t=>f(t)&&t.length===0,Tt=t=>p(t)&&Object.keys(t).length===0;var x=t=>Object.prototype.toString.call(t)==="[object Function]";var D=t=>{let e=y(t);return !!e&&e>new Date};var _=t=>Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t);var M=(t,e)=>e.hasOwnProperty(t)&&e.propertyIsEnumerable(t);var ar=(t,e)=>t===e.length-1;var O=t=>Number.isInteger(t),cr=t=>O(t)&&!(t%2),mr=t=>O(t)&&!!(t%2),v=t=>O(t)&&t>0,pr=t=>O(t)&&t<0,$=t=>Object.prototype.toString.apply(t)==="[object Number]"&&isFinite(t);var J=t=>t.indexOf(" ")>=0;var X=t=>$(t)?!0:!A(t)||J(t)?!1:!isNaN(parseFloat(t));var Ar=t=>/^\d+$/.test(t)&&parseInt(t)>0;var B=t=>{let e=y(t);return !!e&&e<new Date};var Er=t=>t instanceof Promise;var hr=()=>C()&&window.matchMedia("(display-mode: standalone)").matches;var ht=typeof Symbol=="function"&&Symbol.for,Ct=ht?Symbol.for("react.element"):60103,_r=t=>t.$$typeof===Ct;var Or=t=>Object.prototype.toString.call(t)==="[object RegExp]";var P=(t,e)=>{if(t===e)return !0;if(f(t)&&f(e))return t.length!==e.length?!1:t.every((r,o)=>P(r,e[o]));if(p(t)&&p(e)){let r=u(t);return r.length!==u(e).length?!1:r.every(o=>P(t[o],e[o]))}return x(t)&&x(e)?t.toString()===e.toString():!1};var jr=t=>{let e=new Date(t);return _(e)};var _t=new RegExp("^(https?:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.?)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$","i"),Ur=t=>!!t&&_t.test(t);var Hr=t=>/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t);var V=t=>t!=null&&!Number.isNaN(t);var w=(t,e)=>{let r={};return u(t).forEach(o=>{r[o]=p(t[o])?w({},t[o]):t[o];}),u(e).forEach(o=>{M(o,t)?r[o]=p(t[o])&&p(e[o])?w(t[o],e[o]):e[o]:r[o]=p(e[o])?w({},e[o]):e[o];}),r};var $r=(t,e)=>{let r=[...t];for(let o=0;o<r.length;o++)if(e(r[o],o,r)){let i=r.splice(o,1);r.unshift(i[0]);break}return r};var Xr=(t,e)=>{let r=[...t];for(let o=0;o<r.length;o++)if(e(r[o],o,r)){let i=r.splice(o,1)[0];r.push(i);break}return r};var qr=({value:t,max:e,min:r})=>t>=e?1:t<=r?0:(t-r)/(e-r);var to=(t,e)=>{var r={};let o=new Set([...u(t),...u(e)]);for(let i of o)P(e[i],t[i])||(r[i]={from:t[i],to:e[i]});return r};var ro=(t,e)=>{let r={};for(let o in t)e.includes(o)||(r[o]=t[o]);return r};var y=t=>{if(G(t))return;let e=new Date(t);if(_(e))return e};var q=()=>{let t=[],e=[],r=function(o,i){return t[0]===i?"[Circular ~]":"[Circular ~."+e.slice(0,t.indexOf(i)).join(".")+"]"};return function(o,i){if(t.length>0){let l=t.indexOf(this);~l?t.splice(l+1):t.push(this),~l?e.splice(l,1/0,o):e.push(o),~t.indexOf(i)&&(i=r.call(this,o,i));}else t.push(i);return i}};var mo=t=>JSON.stringify(t,q(),2);var uo=(t,e,r)=>{let o,i=new Promise((l,T)=>{o=setTimeout(()=>T(r!=null?r:new Error("Promise timed out")),e);});return Promise.race([t(),i]).finally(()=>{clearTimeout(o);})};var fo=t=>{let e=new Set;return JSON.stringify(t,(r,o)=>(e.add(r),o)),JSON.stringify(t,Array.from(e).sort())};var bo=t=>{let e=[...t];for(let r=e.length-1;r>0;r--){let o=Math.floor(Math.random()*(r+1));[e[r],e[o]]=[e[o],e[r]];}return e};var So=t=>new Promise(e=>{setTimeout(e,t);});var Mt=(t,e)=>{if(!f(t))return t;let r=t.reduce((o,i)=>(i!==e&&o.push(i),o),[]);return r.length===t.length&&r.push(e),r},Eo=Mt;var ho=(t,e,r="...")=>{if(!v(e))return t;let o=[...t];return o.length<=e?t:o.slice(0,e).join("")+r};var _o=t=>t.reduce((r,o)=>r+o,0)/t.length;var Oo=t=>Math.max(...t);var Io=t=>Math.min(...t);var Y=(t,e)=>x(e)?e(t):t[e];var jo=t=>t.reduce((e,r)=>e+r,0),ko=(t,e)=>t.reduce((r,o)=>r+Y(o,e),0);var Ot=[{city:"London",country:"United Kingdom",countryCode:"GB",line2:"Marylebone",number:"221B",street:"Baker Street",zip:"NW1 6XE"},{city:"Birmingham",country:"United Kingdom",countryCode:"GB",number:"B1 1AA",street:"Bordesley Street",zip:"B1 1AA"}],Pt=[{city:"New York",country:"United States",countryCode:"US",state:"NY",street:"Broadway",line2:"Manhattan",number:"42",zip:"10036"},{city:"Los Angeles",country:"United States",countryCode:"US",state:"CA",street:"Hollywood Boulevard",number:"6801",zip:"90028"}],It=[{city:"Paris",country:"France",countryCode:"FR",street:"Rue de Rivoli",number:"75001",zip:"75001"},{city:"Berlin",country:"Germany",countryCode:"DE",street:"Unter den Linden",line2:"Mitte",number:"10117",zip:"10117"},{city:"Rome",country:"Italy",countryCode:"IT",street:"Via del Corso",number:"00186",zip:"00186"},{city:"Madrid",country:"Spain",countryCode:"ES",street:"Gran V\xEDa",line2:"Sol",number:"28013",zip:"28013"}],Rt=[{city:"Moscow",country:"Russia",countryCode:"RU",street:"Tverskaya",number:"101000",zip:"101000"},{city:"Tokyo",country:"Japan",countryCode:"JP",street:"Shinjuku",line2:"Shinjuku City",number:"160-0022",zip:"160-0022"},{city:"Beijing",country:"China",countryCode:"CN",street:"Changan",number:"100005",zip:"100005"},{city:"Cairo",country:"Egypt",countryCode:"EG",street:"Al-Muizz",number:"11511",zip:"11511"},{city:"Buenos Aires",country:"Argentina",countryCode:"AR",street:"Avenida de Mayo",number:"1002",zip:"C1006AAQ"},{city:"Cape Town",country:"South Africa",countryCode:"ZA",street:"Adderley",number:"7700",zip:"7700"},{city:"Sydney",country:"Australia",countryCode:"AU",street:"George",line2:"Haymarket",number:"2000",zip:"2000"},{city:"Rio de Janeiro",country:"Brazil",countryCode:"BR",street:"Av. Presidente Vargas",number:"20021-000",zip:"20021-000"},{city:"Mexico City",country:"Mexico",countryCode:"MX",street:"Paseo de la Reforma",number:"06500",zip:"06500"}],Z=[...Ot,...Pt,...It,...Rt];var s=(t=-100,e=100)=>(t=Math.ceil(t),e=Math.floor(e),Math.floor(Math.random()*(e-t+1)+t)),Ho=(t=100)=>s(1,t),Fo=(t=-100)=>s(t,-1),zo=()=>s(-Number.MAX_SAFE_INTEGER,Number.MAX_SAFE_INTEGER),Ko=()=>s(-Number.MAX_VALUE,Number.MAX_VALUE),Dt=({min:t,max:e}={})=>s(t!=null?t:-100,e!=null?e:100),Go=({min:t,max:e}={})=>s(t!=null?t:1,e!=null?e:100),vo=()=>Dt()+"%";var n=t=>t[s(0,t.length-1)];var Yo=()=>n(Z);var Bt="123456789ABCDEFGHIJKLMNPQRSTUVWXYZ".split(""),en=({length:t=6}={})=>{if(t<1)throw new Error("randomAlphaNumericCode: Length must be greater than 0.");return d(t,()=>n(Bt)).join("")};var Q=["AD1200012030200359100100","BA391290079401028494","BE68539007547034","BG80BNBG96611020345678","FI2112345600000785","FO6264600001631634","FR1420041010050500013M02606","GB29NWBK60161331926819","GE29NB0000000101904917"];var wt=[{accountHolderName:"John Peters",accountNumber:"12345678",bankAddress:"1 Churchill Place, Canary Wharf, London, E14 5HP, UK",bankName:"Barclays plc",bicSwift:"BARCGB22",iban:"GB51BARC20039534871253",sortCode:"12-34-56",accountHolderType:"individual"},{accountHolderName:"Jane Evans",accountNumber:"87654321",bankAddress:"8 Canada Square, London, E14 5HQ, UK",bankName:"HSBC Holdings plc",bicSwift:"HSBCGB2L",iban:"GB82BARC20031847813531",sortCode:"65-43-21",accountHolderType:"company"}],Lt=[{accountHolderName:"Jack I. Taylor",accountNumber:"123456789012",accountType:"checking",bankAddress:"Bank of America Corporate Center, 100 North Tryon Street, Charlotte, NC 28255, USA",bankName:"Bank of America Corporation",routingNumber:"111000025",accountHolderType:"individual"},{accountHolderName:"Sally T King",accountNumber:"987654321098",accountType:"savings",bankAddress:"383 Madison Avenue, New York, NY 10179, USA",bankName:"JPMorgan Chase & Co.",routingNumber:"021000021",accountHolderType:"company"}],jt=[{accountHolderName:"William Kevin White",accountNumber:"123456789012",accountType:"savings",bankAddress:"Commonwealth Bank Centre, Tower 1, 201 Sussex Street, Sydney, NSW 2000, Australia",bankName:"Commonwealth Bank of Australia",bicSwift:"CTBAAU2S",bsbNumber:"062-000",accountHolderType:"individual"},{accountHolderName:"Jennifer Ann Brown",accountNumber:"987654321098",accountType:"checking",bankAddress:"Westpac Place, 275 Kent Street, Sydney, NSW 2000, Australia",bankName:"Westpac Banking Corporation",bicSwift:"WPACAU2S",bsbNumber:"032-001",accountHolderType:"company"}],kt=[{accountHolderName:"Charles Green",accountNumber:"123456789012",accountType:"savings",bankAddress:"Royal Bank Plaza, 200 Bay Street, North Tower, Toronto, ON M5J 2J5, Canada",bankName:"Royal Bank of Canada",branchTransitNumber:"45678",institutionNumber:"123",accountHolderType:"individual"},{accountHolderName:"Olivia Orange",accountNumber:"987654321098",accountType:"checking",bankAddress:"TD Canada Trust Tower, 161 Bay Street, Toronto, ON M5J 2S8, Canada",bankName:"Toronto-Dominion Bank",branchTransitNumber:"65432",institutionNumber:"987",accountHolderType:"company"}],tt=[...wt,...Lt,...jt,...kt];var sn=()=>n(tt);var pn=()=>!!s(0,1);var et=["IE1234567T","GB123456789","XI123456789"],rt=["Acme Inc.","Globex Ltd.","Aurora LLC","Serenity Systems","Vulcan Ventures","Umbrella Corp."];var bn=()=>({name:n(rt),vatRegNumber:n(et)});var xn=16,L=(t=-9,e=9,r)=>{let o=Math.random()*(e-t)+t;return V(r)?parseFloat(o.toFixed(r)):o};var Nn=()=>({lat:Ut(),lng:Wt()}),Ut=()=>L(-90,90),Wt=()=>L(-180,180);var k=t=>new Date(new Date().getTime()+t),g=(t,e)=>{let r=y(t),o=y(e);r&&o&&r>o&&console.warn("randomDate: startDate must be before endDate");let i=r||(o?new Date(o.getTime()-31536e7):k(-31536e7)),l=o||(r?new Date(r.getTime()+31536e7):k(31536e7));return new Date(s(i.getTime(),l.getTime()))},On=(t,e)=>{let r=t||new Date(-864e13),o=e||new Date(864e13);return g(r,o)},Pn=({startDate:t,endDate:e}={})=>{t&&B(t)&&console.warn("randomFutureDate: startDate must be in the future"),e&&B(e)&&console.warn("randomFutureDate: endDate must be in the future");let r=y(t)||k(5*6e4);return g(r,e)},In=({startDate:t,endDate:e}={})=>{t&&D(t)&&console.warn("randomPastDate: startDate must be in the past"),e&&D(e)&&console.warn("randomPastDate: endDate must be in the past");let r=y(e)||new Date;return g(t,r)},Rn=()=>{let t=g();return {endDate:g(t),startDate:t}};var ot=["gmail.com","yahoo.com","hotmail.com","aol.com","msn.com","comcast.net","live.com","att.net","mac.com","me.com","charter.net","shaw.ca","yahoo.ca","mail.com","qq.com","web.de","gmx.de","mail.ru"];var nt=["Albatross","Dolphin","Elephant","Giraffe","Koala","Lion","Penguin","Squirrel","Tiger","Turtle","Whale","Zebra"],it=["Axe","Chisel","Drill","Hammer","Mallet","Pliers","Saw","Screwdriver","Wrench","Blowtorch","Crowbar","Ladder"],E=["Adrian","Albert","Alexander","Alice","Amanda","Amy","Benjamin","David","Emma","Esther","Olivia","Ruby","Sarah","Victoria"],N=["Anderson","Brown","Davis","Jackson","Johnson","Jones","Miller","Moore","Smith","Taylor","Thomas","White","Williams","Wilson"],Ft=["\u0410\u0431\u0438\u0433\u0430\u0438\u043B","\u0410\u0433\u043D\u0435\u0441","\u0410\u0434\u0430\u043C","\u0410\u0434\u0440\u0438\u0430\u043D","\u0410\u043B\u0430\u043D","\u0410\u043B\u0435\u043A\u0441\u0430\u043D\u0434\u0440","\u0410\u043B\u0438\u0441\u0430","\u0410\u043B\u044C\u0431\u0435\u0440\u0442","\u0410\u043C\u0430\u043D\u0434\u0430","\u0410\u043C\u0435\u043B\u0438\u044F","\u042D\u043C\u0438","\u042D\u043D\u0434\u0440\u044E"],zt=["\u0410\u043D\u0434\u0435\u0440\u0441\u043E\u043D","\u0411\u0440\u0430\u0443\u043D","\u0412\u0438\u043B\u0441\u043E\u043D","\u0414\u0436\u0435\u043A\u0441\u043E\u043D","\u0414\u0436\u043E\u043D\u0441","\u0414\u0436\u043E\u043D\u0441\u043E\u043D","\u0414\u044D\u0432\u0438\u0441","\u041C\u0438\u043B\u043B\u0435\u0440","\u041C\u0443\u0440","\u0421\u043C\u0438\u0442","\u0422\u0435\u0439\u043B\u043E\u0440","\u0422\u043E\u043C\u0430\u0441","\u0423\u0430\u0439\u0442","\u0423\u0438\u043B\u044C\u044F\u043C\u0441"],Kt=["\u30A2\u30B0\u30CD\u30B9","\u30A2\u30C0\u30E0","\u30A2\u30C9\u30EA\u30A2\u30F3","\u30A2\u30D3\u30B2\u30A4\u30EB","\u30A2\u30DE\u30F3\u30C0","\u30A2\u30DF\u30FC","\u30A2\u30E1\u30EA\u30A2","\u30A2\u30E9\u30F3","\u30A2\u30EA\u30B9","\u30A2\u30EB\u30D0\u30FC\u30C8","\u30A2\u30EC\u30AF\u30B5\u30F3\u30C0\u30FC","\u30A2\u30F3\u30C9\u30EA\u30E5\u30FC"],Gt=["\u30A2\u30F3\u30C0\u30FC\u30BD\u30F3","\u30A6\u30A3\u30EA\u30A2\u30E0\u30BA","\u30A6\u30A3\u30EB\u30BD\u30F3","\u30B8\u30E3\u30AF\u30BD\u30F3","\u30B8\u30E7\u30FC\u30F3\u30BA","\u30B8\u30E7\u30F3\u30BD\u30F3","\u30B9\u30DF\u30B9","\u30BF\u30A4\u30E9\u30FC","\u30C7\u30A4\u30D3\u30B9","\u30C8\u30FC\u30DE\u30B9","\u30D6\u30E9\u30A6\u30F3","\u30DB\u30EF\u30A4\u30C8","\u30DF\u30E9\u30FC","\u30E2\u30A2"],vt=["\u0622\u062F\u0631\u064A\u0627\u0646","\u0622\u062F\u0645","\u0622\u0644\u0627\u0646","\u0622\u0644\u0628\u0631\u062A","\u0622\u0644\u064A\u0633","\u0622\u0645\u0627\u0646\u062F\u0627","\u0622\u0645\u064A","\u0622\u0645\u064A\u0644\u064A\u0627","\u0623\u0628\u064A\u062C\u064A\u0644","\u0623\u063A\u0646\u064A\u0633","\u0623\u0644\u0643\u0633\u0646\u062F\u0631","\u0623\u0646\u062F\u0631\u0648"],$t=["\u0623\u0646\u062F\u0631\u0633\u0648\u0646","\u0628\u0631\u0627\u0648\u0646","\u062A\u0627\u064A\u0644\u0648\u0631","\u062A\u0648\u0645\u0627\u0633","\u062C\u0627\u0643\u0633\u0648\u0646","\u062C\u0648\u0646\u0632","\u062C\u0648\u0646\u0633\u0648\u0646","\u062F\u064A\u0641\u064A\u0633","\u0633\u0645\u064A\u062B","\u0645\u0648\u0631","\u0645\u064A\u0644\u0631","\u0648\u0627\u064A\u062A","\u0648\u064A\u0644\u0633\u0648\u0646","\u0648\u064A\u0644\u064A\u0627\u0645\u0632"],at=[...E,...Ft,...Kt,...vt],st=[...N,...zt,...Gt,...$t];var ct=()=>(n(E)+"."+n(N)).toLowerCase()+s(11,99);var zn=()=>`${ct()}@${n(ot)}`;var mt=["\u{1F600}","\u{1F601}","\u{1F602}","\u{1F923}","\u{1F603}","\u{1F604}","\u{1F605}","\u{1F606}","\u{1F609}","\u{1F60A}","\u{1F60B}","\u{1F60E}","\u{1F60D}","\u{1F618}","\u{1F617}","\u{1F619}"],pt=["!","@","#","$","%","^","&","*"];var Jn=()=>n(mt);var ut=t=>Object.keys(t).filter(e=>!X(e));var Qn=t=>{let e=ut(t);return n(e)};var lt=t=>{let e=[];return Object.values(t).forEach(r=>{M(r,t)&&!e.includes(r)&&e.push(t[r]);}),e};var ii=t=>{let e=lt(t);return n(e)};var Jt=["abide","abound","accept","accomplish","achieve","acquire","act","adapt","add","adjust","admire","admit","adopt","advance","advise","afford","agree","alert","allow","be","go","need","work"],Xt=["courage","family","food","friend","fun","hope","justice","life","love","music","smile","time"],Vt=["absolute","compassionate","cozy","dull","enigmatic","fascinating","interesting","playful","remarkable","sunny","unforgettable","wonderful","predictable"],qt=["abnormally","aboard","absentmindedly","absolutely","absurdly","abundantly","abysmally","academically","acceleratedly","accentually","acceptably","accessibly","accidentally","accommodatingly"],Yt=["Pneumonoultramicroscopicsilicovolcanoconiosis","Floccinaucinihilipilification","Pseudopseudohypoparathyroidism","Hippopotomonstrosesquippedaliophobia","Antidisestablishmentarianism","Supercalifragilisticexpialidocious","Honorificabilitudinitatibus"];var dt=["AliceBlue","Aqua","Aquamarine","Azure","Beige","Bisque","Black","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","DarkSlateGray","DeepPink","Gold","Lime","Olive","Orchid","Salmon","Turquoise"],ft=[...Jt,...Xt,...Vt,...qt,...Yt];var I=()=>n(ft);var yt=()=>U(d(s(8,16),()=>I()).join(" "))+".";var Zt=["png","jpg","jpeg","gif","svg","webp"],xi=({name:t,extension:e}={})=>{if(typeof File=="undefined")return;let r=e||n(Zt);return new File([yt()],`${t||I()}.${r}`,{type:`image/${r}`})};var R=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];var Ci=()=>"#"+d(6,()=>n(R)).join("");var Pi=()=>n(R);var bt=()=>n(dt);var ji=()=>n(Q);var Hi=()=>d(4,()=>s(0,255).toString()).join(".");var Gi=()=>n([...nt,...it]),vi=()=>n(at),$i=()=>n(st),Ji=()=>n(E)+" "+n(N);var Yi=({length:t=6}={})=>{if(t<1)throw new Error("randomNumericCode: Length must be greater than 0.");return d(t,(e,r)=>s(r?0:1,9)).join("")};var Qt=1,At=()=>Qt++;var St=["+44 20 7123 4567","+33 1 45 67 89 10","+81 3 1234 5678","+61 2 9876 5432","+49 30 9876 5432"];var oa=()=>n(St);var ma=({minChars:t=9}={})=>bt().padEnd(t,"-")+n(pt)+s(11,99);var la=()=>{let t=At().toString().padStart(15,"0"),e=t.substring(0,12);return `00000000-0000-1000-8${t.substring(12,15)}-${e}`};
5
5
 
6
- exports.JS_MAX_DIGITS = pn;
6
+ exports.JS_MAX_DIGITS = xn;
7
7
  exports.array = d;
8
- exports.arrayDiff = se;
9
- exports.arrayIntersection = me;
10
- exports.average = ho;
8
+ exports.arrayDiff = me;
9
+ exports.arrayIntersection = le;
10
+ exports.average = _o;
11
11
  exports.capitalize = U;
12
- exports.checkEnvVars = ee;
13
- exports.clamp = le;
14
- exports.cleanSpaces = Ne;
15
- exports.dir = Te;
16
- exports.first = _e;
17
- exports.firstKey = Ie;
18
- exports.firstValue = Re;
19
- exports.getEnumerableOwnPropertySymbols = St;
12
+ exports.checkEnvVars = ne;
13
+ exports.clamp = ye;
14
+ exports.cleanSpaces = Ce;
15
+ exports.dir = Me;
16
+ exports.first = Pe;
17
+ exports.firstKey = Be;
18
+ exports.firstValue = Le;
19
+ exports.getEnumerableOwnPropertySymbols = gt;
20
20
  exports.getKeys = u;
21
21
  exports.isArray = f;
22
- exports.isBoolean = je;
23
- exports.isBrowser = Ke;
22
+ exports.isBoolean = We;
23
+ exports.isBrowser = ve;
24
24
  exports.isClient = C;
25
- exports.isEmail = Je;
25
+ exports.isEmail = Ve;
26
26
  exports.isEmpty = G;
27
- exports.isEmptyArray = xt;
28
- exports.isEmptyObject = gt;
29
- exports.isEmptyString = At;
30
- exports.isEven = ir;
27
+ exports.isEmptyArray = Nt;
28
+ exports.isEmptyObject = Tt;
29
+ exports.isEmptyString = Et;
30
+ exports.isEven = cr;
31
31
  exports.isFunction = x;
32
- exports.isFutureDate = R;
33
- exports.isInt = M;
32
+ exports.isFutureDate = D;
33
+ exports.isInt = O;
34
34
  exports.isJsDate = _;
35
- exports.isKey = O;
36
- exports.isLastIndex = or;
37
- exports.isNegative = ar;
38
- exports.isNumber = J;
35
+ exports.isKey = M;
36
+ exports.isLastIndex = ar;
37
+ exports.isNegative = pr;
38
+ exports.isNumber = $;
39
39
  exports.isNumeric = X;
40
- exports.isNumericId = fr;
40
+ exports.isNumericId = Ar;
41
41
  exports.isObject = p;
42
- exports.isOdd = sr;
43
- exports.isPWA = Er;
42
+ exports.isOdd = mr;
43
+ exports.isPWA = hr;
44
44
  exports.isPastDate = B;
45
- exports.isPositive = $;
46
- exports.isPromise = Ar;
47
- exports.isReactElement = hr;
48
- exports.isRegExp = Cr;
45
+ exports.isPositive = v;
46
+ exports.isPromise = Er;
47
+ exports.isReactElement = _r;
48
+ exports.isRegExp = Or;
49
49
  exports.isSame = P;
50
- exports.isServer = H;
51
- exports.isSpacedString = v;
52
- exports.isString = S;
53
- exports.isStringDate = Br;
54
- exports.isURL = Lr;
55
- exports.isUUID = kr;
50
+ exports.isServer = K;
51
+ exports.isSpacedString = J;
52
+ exports.isString = A;
53
+ exports.isStringDate = jr;
54
+ exports.isURL = Ur;
55
+ exports.isUUID = Hr;
56
56
  exports.isValue = V;
57
- exports.last = we;
58
- exports.max = Co;
57
+ exports.last = ke;
58
+ exports.max = Oo;
59
59
  exports.merge = w;
60
- exports.min = Oo;
61
- exports.moveToFirst = Hr;
62
- exports.moveToLast = $r;
63
- exports.normalizeNumber = vr;
64
- exports.objectDiff = Yr;
65
- exports.omit = Qr;
66
- exports.parseDate = b;
67
- exports.pretty = so;
68
- exports.promiseWithTimeout = co;
69
- exports.randomAddress = Xo;
70
- exports.randomAlphaNumericCode = Zo;
60
+ exports.min = Io;
61
+ exports.moveToFirst = $r;
62
+ exports.moveToLast = Xr;
63
+ exports.normalizeNumber = qr;
64
+ exports.objectDiff = to;
65
+ exports.omit = ro;
66
+ exports.parseDate = y;
67
+ exports.pretty = mo;
68
+ exports.promiseWithTimeout = uo;
69
+ exports.randomAddress = Yo;
70
+ exports.randomAlphaNumericCode = en;
71
71
  exports.randomArrayItem = n;
72
- exports.randomBankAccount = on;
73
- exports.randomBool = an;
74
- exports.randomCoords = dn;
72
+ exports.randomBankAccount = sn;
73
+ exports.randomBool = pn;
74
+ exports.randomCompany = bn;
75
+ exports.randomCoords = Nn;
75
76
  exports.randomDate = g;
76
- exports.randomDateRange = Nn;
77
- exports.randomEmail = Bn;
78
- exports.randomEmoji = Un;
79
- exports.randomEnumKey = Gn;
80
- exports.randomEnumValue = qn;
81
- exports.randomFile = pi;
82
- exports.randomFirstName = ji;
77
+ exports.randomDateRange = Rn;
78
+ exports.randomEmail = zn;
79
+ exports.randomEmoji = Jn;
80
+ exports.randomEnumKey = Qn;
81
+ exports.randomEnumValue = ii;
82
+ exports.randomFile = xi;
83
+ exports.randomFirstName = vi;
83
84
  exports.randomFloat = L;
84
- exports.randomFormattedPercentage = Ko;
85
- exports.randomFullName = Ui;
86
- exports.randomFutureDate = gn;
87
- exports.randomHandle = st;
88
- exports.randomHexColor = yi;
89
- exports.randomHexValue = gi;
90
- exports.randomHtmlColorName = ft;
91
- exports.randomIBAN = Oi;
92
- exports.randomIP = Di;
93
- exports.randomInt = a;
94
- exports.randomLastName = ki;
95
- exports.randomLat = Lt;
96
- exports.randomLng = jt;
97
- exports.randomMaxDate = xn;
98
- exports.randomMaxInt = Fo;
99
- exports.randomMaxSafeInt = Wo;
100
- exports.randomName = Li;
101
- exports.randomNegativeInt = Uo;
102
- exports.randomNumericCode = Ki;
103
- exports.randomNumericId = bt;
104
- exports.randomParagraph = dt;
105
- exports.randomPassword = Vi;
106
- exports.randomPastDate = En;
107
- exports.randomPercentage = Pt;
108
- exports.randomPositiveInt = ko;
109
- exports.randomPositivePercentage = zo;
110
- exports.randomUUID = Zi;
85
+ exports.randomFormattedPercentage = vo;
86
+ exports.randomFullName = Ji;
87
+ exports.randomFutureDate = Pn;
88
+ exports.randomHandle = ct;
89
+ exports.randomHexColor = Ci;
90
+ exports.randomHexValue = Pi;
91
+ exports.randomHtmlColorName = bt;
92
+ exports.randomIBAN = ji;
93
+ exports.randomIP = Hi;
94
+ exports.randomInt = s;
95
+ exports.randomLastName = $i;
96
+ exports.randomLat = Ut;
97
+ exports.randomLng = Wt;
98
+ exports.randomMaxDate = On;
99
+ exports.randomMaxInt = Ko;
100
+ exports.randomMaxSafeInt = zo;
101
+ exports.randomName = Gi;
102
+ exports.randomNegativeInt = Fo;
103
+ exports.randomNumericCode = Yi;
104
+ exports.randomNumericId = At;
105
+ exports.randomParagraph = yt;
106
+ exports.randomPassword = ma;
107
+ exports.randomPastDate = In;
108
+ exports.randomPercentage = Dt;
109
+ exports.randomPhoneNumber = oa;
110
+ exports.randomPositiveInt = Ho;
111
+ exports.randomPositivePercentage = Go;
112
+ exports.randomUUID = la;
111
113
  exports.randomWord = I;
112
- exports.serialize = po;
113
- exports.shuffle = lo;
114
- exports.sleep = bo;
115
- exports.sum = Bo;
116
- exports.sumBy = wo;
117
- exports.toggleArray = Ao;
118
- exports.toggleArrayValue = Tt;
119
- exports.truncate = Eo;
120
- exports.uniqueValues = T;
114
+ exports.serialize = fo;
115
+ exports.shuffle = bo;
116
+ exports.sleep = So;
117
+ exports.sum = jo;
118
+ exports.sumBy = ko;
119
+ exports.toggleArray = Eo;
120
+ exports.toggleArrayValue = Mt;
121
+ exports.truncate = ho;
122
+ exports.uniqueValues = h;
121
123
 
122
124
  return exports;
123
125