vue-layout-gitcode 1.9.27 → 1.9.29
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/{GloabarSearch-QFsXZcMh.js → GloabarSearch-CYbxO53m.js} +3 -3
- package/{MenuItem-zzhh4asz.js → MenuItem-BzfsHOS8.js} +1 -1
- package/{ProjectMenuList-CsZAG6oN.js → ProjectMenuList-DNJhKWy9.js} +8 -8
- package/{ProjectMenuListV2-DzsBbOqY.js → ProjectMenuListV2-Cuer5wbZ.js} +3 -3
- package/{ProjectSearch-rmro-UPQ.js → ProjectSearch-BiVlYUvU.js} +1 -1
- package/{SearchHistoryList-DKN-Od1z.js → SearchHistoryList-BDzp2qOk.js} +5 -5
- package/{SearchPrefixTag-BbJRn2jr.js → SearchPrefixTag-Dzpz56Q7.js} +3 -3
- package/{SearchRecommed-Dvurzkpo.js → SearchRecommed-XVMGN5hX.js} +2 -2
- package/{SearchScopeList-C3UCdMsY.js → SearchScopeList-DZK2-jED.js} +3 -3
- package/{UserSearch-ZtBPDDg_.js → UserSearch-C93v1HCj.js} +1 -1
- package/{index-CMVVf4cR.js → index-BCbmXnEe.js} +41 -44
- package/{index-CNd0ekH4.js → index-BFMUY2xH.js} +1 -1
- package/{index-BaBqQcxw.js → index-DPtyg6To.js} +4 -5
- package/{index-BBcOSkeh.js → index-VjkkdK3E.js} +1160 -1030
- package/index.d.ts +8 -8
- package/index.js +1 -1
- package/{notice-Bh65X4vL.js → notice-DGmmTvcV.js} +8 -10
- package/package.json +1 -1
- package/style.css +1 -1
- package/{transWebUrl-DjaQon7v.js → transWebUrl-BY5OiAkU.js} +1 -1
|
@@ -69,29 +69,29 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
69
69
|
return /px$/i.test(props.size) ? props.size : `${props.size}px`;
|
|
70
70
|
});
|
|
71
71
|
return (_ctx, _cache) => {
|
|
72
|
-
return !
|
|
72
|
+
return !__props.name.includes("gt-") ? (openBlock(), createBlock(unref(Icon), normalizeProps(mergeProps({ key: 0 }, props)), null, 16)) : __props.operable ? (openBlock(), createElementBlock("span", {
|
|
73
73
|
key: 1,
|
|
74
|
-
class: normalizeClass(["custom-icon-container", { disabled:
|
|
74
|
+
class: normalizeClass(["custom-icon-container", { disabled: __props.disabled }])
|
|
75
75
|
}, [
|
|
76
76
|
renderSlot(_ctx.$slots, "prefix", {}, void 0, true),
|
|
77
77
|
(openBlock(), createElementBlock("svg", {
|
|
78
|
-
class: normalizeClass(["icon gt-icon",
|
|
78
|
+
class: normalizeClass(["icon gt-icon", __props.iconClass]),
|
|
79
79
|
"aria-hidden": "true",
|
|
80
|
-
style: normalizeStyle({ color:
|
|
80
|
+
style: normalizeStyle({ color: __props.color, fontSize: fontSize.value, transform: `rotate(${__props.rotate})` })
|
|
81
81
|
}, [
|
|
82
82
|
createElementVNode("use", {
|
|
83
|
-
"xlink:href": `#${
|
|
83
|
+
"xlink:href": `#${__props.name}`
|
|
84
84
|
}, null, 8, _hoisted_1$w)
|
|
85
85
|
], 6)),
|
|
86
86
|
renderSlot(_ctx.$slots, "suffix", {}, void 0, true)
|
|
87
87
|
], 2)) : (openBlock(), createElementBlock("svg", {
|
|
88
88
|
key: 2,
|
|
89
|
-
class: normalizeClass(["icon gt-icon",
|
|
89
|
+
class: normalizeClass(["icon gt-icon", __props.iconClass]),
|
|
90
90
|
"aria-hidden": "true",
|
|
91
|
-
style: normalizeStyle(
|
|
91
|
+
style: normalizeStyle(__props.iconClass ? {} : { color: __props.color, fontSize: fontSize.value, transform: `rotate(${__props.rotate})` })
|
|
92
92
|
}, [
|
|
93
93
|
createElementVNode("use", {
|
|
94
|
-
"xlink:href": `#${
|
|
94
|
+
"xlink:href": `#${__props.name}`
|
|
95
95
|
}, null, 8, _hoisted_2$l)
|
|
96
96
|
], 6));
|
|
97
97
|
};
|
|
@@ -511,7 +511,7 @@ const TOOLS_FLOAT_COLLAPSE_STATUS = {
|
|
|
511
511
|
const TOOLS_FLOAT_COLLAPSE_STATUS_KEY_FOR_REPO = "asideTool_collapse_status_repo";
|
|
512
512
|
const TOOLS_FLOAT_COLLAPSE_STATUS_KEY = "asideTool_collapse_status";
|
|
513
513
|
const TOOLS_FLOAT_COLLAPSE_DATE_KEY = "asideTool_collapse_date";
|
|
514
|
-
/*! @license DOMPurify 3.
|
|
514
|
+
/*! @license DOMPurify 3.3.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.0/LICENSE */
|
|
515
515
|
const {
|
|
516
516
|
entries,
|
|
517
517
|
setPrototypeOf,
|
|
@@ -539,12 +539,18 @@ if (!seal) {
|
|
|
539
539
|
};
|
|
540
540
|
}
|
|
541
541
|
if (!apply$1) {
|
|
542
|
-
apply$1 = function apply2(
|
|
543
|
-
|
|
542
|
+
apply$1 = function apply2(func, thisArg) {
|
|
543
|
+
for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
|
544
|
+
args[_key - 2] = arguments[_key];
|
|
545
|
+
}
|
|
546
|
+
return func.apply(thisArg, args);
|
|
544
547
|
};
|
|
545
548
|
}
|
|
546
549
|
if (!construct) {
|
|
547
|
-
construct = function construct2(Func
|
|
550
|
+
construct = function construct2(Func) {
|
|
551
|
+
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
552
|
+
args[_key2 - 1] = arguments[_key2];
|
|
553
|
+
}
|
|
548
554
|
return new Func(...args);
|
|
549
555
|
};
|
|
550
556
|
}
|
|
@@ -567,18 +573,18 @@ function unapply(func) {
|
|
|
567
573
|
if (thisArg instanceof RegExp) {
|
|
568
574
|
thisArg.lastIndex = 0;
|
|
569
575
|
}
|
|
570
|
-
for (var
|
|
571
|
-
args[
|
|
576
|
+
for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {
|
|
577
|
+
args[_key3 - 1] = arguments[_key3];
|
|
572
578
|
}
|
|
573
579
|
return apply$1(func, thisArg, args);
|
|
574
580
|
};
|
|
575
581
|
}
|
|
576
|
-
function unconstruct(
|
|
582
|
+
function unconstruct(Func) {
|
|
577
583
|
return function() {
|
|
578
|
-
for (var
|
|
579
|
-
args[
|
|
584
|
+
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
|
585
|
+
args[_key4] = arguments[_key4];
|
|
580
586
|
}
|
|
581
|
-
return construct(
|
|
587
|
+
return construct(Func, args);
|
|
582
588
|
};
|
|
583
589
|
}
|
|
584
590
|
function addToSet(set, array) {
|
|
@@ -645,15 +651,15 @@ function lookupGetter(object, prop) {
|
|
|
645
651
|
}
|
|
646
652
|
return fallbackValue;
|
|
647
653
|
}
|
|
648
|
-
const html$1 = freeze(["a", "abbr", "acronym", "address", "area", "article", "aside", "audio", "b", "bdi", "bdo", "big", "blink", "blockquote", "body", "br", "button", "canvas", "caption", "center", "cite", "code", "col", "colgroup", "content", "data", "datalist", "dd", "decorator", "del", "details", "dfn", "dialog", "dir", "div", "dl", "dt", "element", "em", "fieldset", "figcaption", "figure", "font", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "img", "input", "ins", "kbd", "label", "legend", "li", "main", "map", "mark", "marquee", "menu", "menuitem", "meter", "nav", "nobr", "ol", "optgroup", "option", "output", "p", "picture", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "section", "select", "shadow", "small", "source", "spacer", "span", "strike", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "tr", "track", "tt", "u", "ul", "var", "video", "wbr"]);
|
|
649
|
-
const svg$1 = freeze(["svg", "a", "altglyph", "altglyphdef", "altglyphitem", "animatecolor", "animatemotion", "animatetransform", "circle", "clippath", "defs", "desc", "ellipse", "filter", "font", "g", "glyph", "glyphref", "hkern", "image", "line", "lineargradient", "marker", "mask", "metadata", "mpath", "path", "pattern", "polygon", "polyline", "radialgradient", "rect", "stop", "style", "switch", "symbol", "text", "textpath", "title", "tref", "tspan", "view", "vkern"]);
|
|
654
|
+
const html$1 = freeze(["a", "abbr", "acronym", "address", "area", "article", "aside", "audio", "b", "bdi", "bdo", "big", "blink", "blockquote", "body", "br", "button", "canvas", "caption", "center", "cite", "code", "col", "colgroup", "content", "data", "datalist", "dd", "decorator", "del", "details", "dfn", "dialog", "dir", "div", "dl", "dt", "element", "em", "fieldset", "figcaption", "figure", "font", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "img", "input", "ins", "kbd", "label", "legend", "li", "main", "map", "mark", "marquee", "menu", "menuitem", "meter", "nav", "nobr", "ol", "optgroup", "option", "output", "p", "picture", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "search", "section", "select", "shadow", "slot", "small", "source", "spacer", "span", "strike", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "tr", "track", "tt", "u", "ul", "var", "video", "wbr"]);
|
|
655
|
+
const svg$1 = freeze(["svg", "a", "altglyph", "altglyphdef", "altglyphitem", "animatecolor", "animatemotion", "animatetransform", "circle", "clippath", "defs", "desc", "ellipse", "enterkeyhint", "exportparts", "filter", "font", "g", "glyph", "glyphref", "hkern", "image", "inputmode", "line", "lineargradient", "marker", "mask", "metadata", "mpath", "part", "path", "pattern", "polygon", "polyline", "radialgradient", "rect", "stop", "style", "switch", "symbol", "text", "textpath", "title", "tref", "tspan", "view", "vkern"]);
|
|
650
656
|
const svgFilters = freeze(["feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence"]);
|
|
651
657
|
const svgDisallowed = freeze(["animate", "color-profile", "cursor", "discard", "font-face", "font-face-format", "font-face-name", "font-face-src", "font-face-uri", "foreignobject", "hatch", "hatchpath", "mesh", "meshgradient", "meshpatch", "meshrow", "missing-glyph", "script", "set", "solidcolor", "unknown", "use"]);
|
|
652
658
|
const mathMl$1 = freeze(["math", "menclose", "merror", "mfenced", "mfrac", "mglyph", "mi", "mlabeledtr", "mmultiscripts", "mn", "mo", "mover", "mpadded", "mphantom", "mroot", "mrow", "ms", "mspace", "msqrt", "mstyle", "msub", "msup", "msubsup", "mtable", "mtd", "mtext", "mtr", "munder", "munderover", "mprescripts"]);
|
|
653
659
|
const mathMlDisallowed = freeze(["maction", "maligngroup", "malignmark", "mlongdiv", "mscarries", "mscarry", "msgroup", "mstack", "msline", "msrow", "semantics", "annotation", "annotation-xml", "mprescripts", "none"]);
|
|
654
660
|
const text = freeze(["#text"]);
|
|
655
|
-
const html = freeze(["accept", "action", "align", "alt", "autocapitalize", "autocomplete", "autopictureinpicture", "autoplay", "background", "bgcolor", "border", "capture", "cellpadding", "cellspacing", "checked", "cite", "class", "clear", "color", "cols", "colspan", "controls", "controlslist", "coords", "crossorigin", "datetime", "decoding", "default", "dir", "disabled", "disablepictureinpicture", "disableremoteplayback", "download", "draggable", "enctype", "enterkeyhint", "face", "for", "headers", "height", "hidden", "high", "href", "hreflang", "id", "inputmode", "integrity", "ismap", "kind", "label", "lang", "list", "loading", "loop", "low", "max", "maxlength", "media", "method", "min", "minlength", "multiple", "muted", "name", "nonce", "noshade", "novalidate", "nowrap", "open", "optimum", "pattern", "placeholder", "playsinline", "popover", "popovertarget", "popovertargetaction", "poster", "preload", "pubdate", "radiogroup", "readonly", "rel", "required", "rev", "reversed", "role", "rows", "rowspan", "spellcheck", "scope", "selected", "shape", "size", "sizes", "span", "srclang", "start", "src", "srcset", "step", "style", "summary", "tabindex", "title", "translate", "type", "usemap", "valign", "value", "width", "wrap", "xmlns", "slot"]);
|
|
656
|
-
const svg = freeze(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]);
|
|
661
|
+
const html = freeze(["accept", "action", "align", "alt", "autocapitalize", "autocomplete", "autopictureinpicture", "autoplay", "background", "bgcolor", "border", "capture", "cellpadding", "cellspacing", "checked", "cite", "class", "clear", "color", "cols", "colspan", "controls", "controlslist", "coords", "crossorigin", "datetime", "decoding", "default", "dir", "disabled", "disablepictureinpicture", "disableremoteplayback", "download", "draggable", "enctype", "enterkeyhint", "exportparts", "face", "for", "headers", "height", "hidden", "high", "href", "hreflang", "id", "inert", "inputmode", "integrity", "ismap", "kind", "label", "lang", "list", "loading", "loop", "low", "max", "maxlength", "media", "method", "min", "minlength", "multiple", "muted", "name", "nonce", "noshade", "novalidate", "nowrap", "open", "optimum", "part", "pattern", "placeholder", "playsinline", "popover", "popovertarget", "popovertargetaction", "poster", "preload", "pubdate", "radiogroup", "readonly", "rel", "required", "rev", "reversed", "role", "rows", "rowspan", "spellcheck", "scope", "selected", "shape", "size", "sizes", "slot", "span", "srclang", "start", "src", "srcset", "step", "style", "summary", "tabindex", "title", "translate", "type", "usemap", "valign", "value", "width", "wrap", "xmlns", "slot"]);
|
|
662
|
+
const svg = freeze(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "mask-type", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]);
|
|
657
663
|
const mathMl = freeze(["accent", "accentunder", "align", "bevelled", "close", "columnsalign", "columnlines", "columnspan", "denomalign", "depth", "dir", "display", "displaystyle", "encoding", "fence", "frame", "height", "href", "id", "largeop", "length", "linethickness", "lspace", "lquote", "mathbackground", "mathcolor", "mathsize", "mathvariant", "maxsize", "minsize", "movablelimits", "notation", "numalign", "open", "rowalign", "rowlines", "rowspacing", "rowspan", "rspace", "rquote", "scriptlevel", "scriptminsize", "scriptsizemultiplier", "selection", "separator", "separators", "stretchy", "subscriptshift", "supscriptshift", "symmetric", "voffset", "width", "xmlns"]);
|
|
658
664
|
const xml = freeze(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]);
|
|
659
665
|
const MUSTACHE_EXPR = seal(/\{\{[\w\W]*|[\w\W]*\}\}/gm);
|
|
@@ -736,7 +742,7 @@ const _createHooksMap = function _createHooksMap2() {
|
|
|
736
742
|
function createDOMPurify() {
|
|
737
743
|
let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
|
|
738
744
|
const DOMPurify = (root) => createDOMPurify(root);
|
|
739
|
-
DOMPurify.version = "3.
|
|
745
|
+
DOMPurify.version = "3.3.0";
|
|
740
746
|
DOMPurify.removed = [];
|
|
741
747
|
if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document || !window2.Element) {
|
|
742
748
|
DOMPurify.isSupported = false;
|
|
@@ -822,6 +828,20 @@ function createDOMPurify() {
|
|
|
822
828
|
}));
|
|
823
829
|
let FORBID_TAGS = null;
|
|
824
830
|
let FORBID_ATTR = null;
|
|
831
|
+
const EXTRA_ELEMENT_HANDLING = Object.seal(create$1(null, {
|
|
832
|
+
tagCheck: {
|
|
833
|
+
writable: true,
|
|
834
|
+
configurable: false,
|
|
835
|
+
enumerable: true,
|
|
836
|
+
value: null
|
|
837
|
+
},
|
|
838
|
+
attributeCheck: {
|
|
839
|
+
writable: true,
|
|
840
|
+
configurable: false,
|
|
841
|
+
enumerable: true,
|
|
842
|
+
value: null
|
|
843
|
+
}
|
|
844
|
+
}));
|
|
825
845
|
let ALLOW_ARIA_ATTR = true;
|
|
826
846
|
let ALLOW_DATA_ATTR = true;
|
|
827
847
|
let ALLOW_UNKNOWN_PROTOCOLS = false;
|
|
@@ -945,16 +965,24 @@ function createDOMPurify() {
|
|
|
945
965
|
}
|
|
946
966
|
}
|
|
947
967
|
if (cfg.ADD_TAGS) {
|
|
948
|
-
if (
|
|
949
|
-
|
|
968
|
+
if (typeof cfg.ADD_TAGS === "function") {
|
|
969
|
+
EXTRA_ELEMENT_HANDLING.tagCheck = cfg.ADD_TAGS;
|
|
970
|
+
} else {
|
|
971
|
+
if (ALLOWED_TAGS === DEFAULT_ALLOWED_TAGS) {
|
|
972
|
+
ALLOWED_TAGS = clone(ALLOWED_TAGS);
|
|
973
|
+
}
|
|
974
|
+
addToSet(ALLOWED_TAGS, cfg.ADD_TAGS, transformCaseFunc);
|
|
950
975
|
}
|
|
951
|
-
addToSet(ALLOWED_TAGS, cfg.ADD_TAGS, transformCaseFunc);
|
|
952
976
|
}
|
|
953
977
|
if (cfg.ADD_ATTR) {
|
|
954
|
-
if (
|
|
955
|
-
|
|
978
|
+
if (typeof cfg.ADD_ATTR === "function") {
|
|
979
|
+
EXTRA_ELEMENT_HANDLING.attributeCheck = cfg.ADD_ATTR;
|
|
980
|
+
} else {
|
|
981
|
+
if (ALLOWED_ATTR === DEFAULT_ALLOWED_ATTR) {
|
|
982
|
+
ALLOWED_ATTR = clone(ALLOWED_ATTR);
|
|
983
|
+
}
|
|
984
|
+
addToSet(ALLOWED_ATTR, cfg.ADD_ATTR, transformCaseFunc);
|
|
956
985
|
}
|
|
957
|
-
addToSet(ALLOWED_ATTR, cfg.ADD_ATTR, transformCaseFunc);
|
|
958
986
|
}
|
|
959
987
|
if (cfg.ADD_URI_SAFE_ATTR) {
|
|
960
988
|
addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR, transformCaseFunc);
|
|
@@ -1160,7 +1188,7 @@ function createDOMPurify() {
|
|
|
1160
1188
|
_forceRemove(currentNode);
|
|
1161
1189
|
return true;
|
|
1162
1190
|
}
|
|
1163
|
-
if (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName]) {
|
|
1191
|
+
if (!(EXTRA_ELEMENT_HANDLING.tagCheck instanceof Function && EXTRA_ELEMENT_HANDLING.tagCheck(tagName)) && (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName])) {
|
|
1164
1192
|
if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName)) {
|
|
1165
1193
|
if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
|
|
1166
1194
|
return false;
|
|
@@ -1213,12 +1241,13 @@ function createDOMPurify() {
|
|
|
1213
1241
|
}
|
|
1214
1242
|
if (ALLOW_DATA_ATTR && !FORBID_ATTR[lcName] && regExpTest(DATA_ATTR2, lcName)) ;
|
|
1215
1243
|
else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR2, lcName)) ;
|
|
1244
|
+
else if (EXTRA_ELEMENT_HANDLING.attributeCheck instanceof Function && EXTRA_ELEMENT_HANDLING.attributeCheck(lcName, lcTag)) ;
|
|
1216
1245
|
else if (!ALLOWED_ATTR[lcName] || FORBID_ATTR[lcName]) {
|
|
1217
1246
|
if (
|
|
1218
1247
|
// First condition does a very basic check if a) it's basically a valid custom element tagname AND
|
|
1219
1248
|
// b) if the tagName passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
|
|
1220
1249
|
// and c) if the attribute name passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.attributeNameCheck
|
|
1221
|
-
_isBasicCustomElement(lcTag) && (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, lcTag) || CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(lcTag)) && (CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.attributeNameCheck, lcName) || CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.attributeNameCheck(lcName)) || // Alternative, second condition checks if it's an `is`-attribute, AND
|
|
1250
|
+
_isBasicCustomElement(lcTag) && (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, lcTag) || CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(lcTag)) && (CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.attributeNameCheck, lcName) || CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.attributeNameCheck(lcName, lcTag)) || // Alternative, second condition checks if it's an `is`-attribute, AND
|
|
1222
1251
|
// the value passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
|
|
1223
1252
|
lcName === "is" && CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements && (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, value) || CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(value))
|
|
1224
1253
|
) ;
|
|
@@ -1273,7 +1302,11 @@ function createDOMPurify() {
|
|
|
1273
1302
|
_removeAttribute(name, currentNode);
|
|
1274
1303
|
value = SANITIZE_NAMED_PROPS_PREFIX + value;
|
|
1275
1304
|
}
|
|
1276
|
-
if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|title)/i, value)) {
|
|
1305
|
+
if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|title|textarea)/i, value)) {
|
|
1306
|
+
_removeAttribute(name, currentNode);
|
|
1307
|
+
continue;
|
|
1308
|
+
}
|
|
1309
|
+
if (lcName === "attributename" && stringMatch(value, "href")) {
|
|
1277
1310
|
_removeAttribute(name, currentNode);
|
|
1278
1311
|
continue;
|
|
1279
1312
|
}
|
|
@@ -1695,12 +1728,12 @@ function hasOwn(obj, key) {
|
|
|
1695
1728
|
return hasOwnProperty$1.call(obj, key);
|
|
1696
1729
|
}
|
|
1697
1730
|
const isArray$1 = Array.isArray;
|
|
1698
|
-
const isFunction$
|
|
1731
|
+
const isFunction$2 = (val) => typeof val === "function";
|
|
1699
1732
|
const isString$2 = (val) => typeof val === "string";
|
|
1700
1733
|
const isBoolean$1 = (val) => typeof val === "boolean";
|
|
1701
1734
|
const isObject$3 = (val) => val !== null && typeof val === "object";
|
|
1702
1735
|
const isPromise = (val) => {
|
|
1703
|
-
return isObject$3(val) && isFunction$
|
|
1736
|
+
return isObject$3(val) && isFunction$2(val.then) && isFunction$2(val.catch);
|
|
1704
1737
|
};
|
|
1705
1738
|
const objectToString = Object.prototype.toString;
|
|
1706
1739
|
const toTypeString = (value) => objectToString.call(value);
|
|
@@ -3866,7 +3899,7 @@ function resolveValue(obj, path) {
|
|
|
3866
3899
|
if (val === void 0) {
|
|
3867
3900
|
return null;
|
|
3868
3901
|
}
|
|
3869
|
-
if (isFunction$
|
|
3902
|
+
if (isFunction$2(last)) {
|
|
3870
3903
|
return null;
|
|
3871
3904
|
}
|
|
3872
3905
|
last = val;
|
|
@@ -3901,8 +3934,8 @@ function normalizeNamed(pluralIndex, props) {
|
|
|
3901
3934
|
function createMessageContext(options = {}) {
|
|
3902
3935
|
const locale2 = options.locale;
|
|
3903
3936
|
const pluralIndex = getPluralIndex(options);
|
|
3904
|
-
const pluralRule = isObject$3(options.pluralRules) && isString$2(locale2) && isFunction$
|
|
3905
|
-
const orgPluralRule = isObject$3(options.pluralRules) && isString$2(locale2) && isFunction$
|
|
3937
|
+
const pluralRule = isObject$3(options.pluralRules) && isString$2(locale2) && isFunction$2(options.pluralRules[locale2]) ? options.pluralRules[locale2] : pluralDefault;
|
|
3938
|
+
const orgPluralRule = isObject$3(options.pluralRules) && isString$2(locale2) && isFunction$2(options.pluralRules[locale2]) ? pluralDefault : void 0;
|
|
3906
3939
|
const plural = (messages) => {
|
|
3907
3940
|
return messages[pluralRule(pluralIndex, messages.length, orgPluralRule)];
|
|
3908
3941
|
};
|
|
@@ -3912,12 +3945,12 @@ function createMessageContext(options = {}) {
|
|
|
3912
3945
|
isNumber$1(options.pluralIndex) && normalizeNamed(pluralIndex, _named);
|
|
3913
3946
|
const named = (key) => _named[key];
|
|
3914
3947
|
function message(key) {
|
|
3915
|
-
const msg = isFunction$
|
|
3948
|
+
const msg = isFunction$2(options.messages) ? options.messages(key) : isObject$3(options.messages) ? options.messages[key] : false;
|
|
3916
3949
|
return !msg ? options.parent ? options.parent.message(key) : DEFAULT_MESSAGE : msg;
|
|
3917
3950
|
}
|
|
3918
3951
|
const _modifier = (name) => options.modifiers ? options.modifiers[name] : DEFAULT_MODIFIER;
|
|
3919
|
-
const normalize = isPlainObject$1(options.processor) && isFunction$
|
|
3920
|
-
const interpolate = isPlainObject$1(options.processor) && isFunction$
|
|
3952
|
+
const normalize = isPlainObject$1(options.processor) && isFunction$2(options.processor.normalize) ? options.processor.normalize : DEFAULT_NORMALIZE;
|
|
3953
|
+
const interpolate = isPlainObject$1(options.processor) && isFunction$2(options.processor.interpolate) ? options.processor.interpolate : DEFAULT_INTERPOLATE;
|
|
3921
3954
|
const type = isPlainObject$1(options.processor) && isString$2(options.processor.type) ? options.processor.type : DEFAULT_MESSAGE_DATA_TYPE;
|
|
3922
3955
|
const linked = (key, ...args) => {
|
|
3923
3956
|
const [arg1, arg2] = args;
|
|
@@ -4076,7 +4109,7 @@ function resolveLocale(locale2) {
|
|
|
4076
4109
|
if (isString$2(locale2)) {
|
|
4077
4110
|
return locale2;
|
|
4078
4111
|
} else {
|
|
4079
|
-
if (isFunction$
|
|
4112
|
+
if (isFunction$2(locale2)) {
|
|
4080
4113
|
if (locale2.resolvedOnce && _resolveLocale != null) {
|
|
4081
4114
|
return _resolveLocale;
|
|
4082
4115
|
} else if (locale2.constructor.name === "Function") {
|
|
@@ -4198,31 +4231,31 @@ const setFallbackContext = (context) => {
|
|
|
4198
4231
|
const getFallbackContext = () => _fallbackContext;
|
|
4199
4232
|
let _cid = 0;
|
|
4200
4233
|
function createCoreContext(options = {}) {
|
|
4201
|
-
const onWarn = isFunction$
|
|
4234
|
+
const onWarn = isFunction$2(options.onWarn) ? options.onWarn : warn;
|
|
4202
4235
|
const version = isString$2(options.version) ? options.version : VERSION$3;
|
|
4203
|
-
const locale2 = isString$2(options.locale) || isFunction$
|
|
4204
|
-
const _locale = isFunction$
|
|
4236
|
+
const locale2 = isString$2(options.locale) || isFunction$2(options.locale) ? options.locale : DEFAULT_LOCALE;
|
|
4237
|
+
const _locale = isFunction$2(locale2) ? DEFAULT_LOCALE : locale2;
|
|
4205
4238
|
const fallbackLocale = isArray$1(options.fallbackLocale) || isPlainObject$1(options.fallbackLocale) || isString$2(options.fallbackLocale) || options.fallbackLocale === false ? options.fallbackLocale : _locale;
|
|
4206
4239
|
const messages = isPlainObject$1(options.messages) ? options.messages : createResources(_locale);
|
|
4207
4240
|
const datetimeFormats = isPlainObject$1(options.datetimeFormats) ? options.datetimeFormats : createResources(_locale);
|
|
4208
4241
|
const numberFormats = isPlainObject$1(options.numberFormats) ? options.numberFormats : createResources(_locale);
|
|
4209
4242
|
const modifiers = assign$1(create(), options.modifiers, getDefaultLinkedModifiers());
|
|
4210
4243
|
const pluralRules = options.pluralRules || create();
|
|
4211
|
-
const missing = isFunction$
|
|
4244
|
+
const missing = isFunction$2(options.missing) ? options.missing : null;
|
|
4212
4245
|
const missingWarn = isBoolean$1(options.missingWarn) || isRegExp$1(options.missingWarn) ? options.missingWarn : true;
|
|
4213
4246
|
const fallbackWarn = isBoolean$1(options.fallbackWarn) || isRegExp$1(options.fallbackWarn) ? options.fallbackWarn : true;
|
|
4214
4247
|
const fallbackFormat = !!options.fallbackFormat;
|
|
4215
4248
|
const unresolving = !!options.unresolving;
|
|
4216
|
-
const postTranslation = isFunction$
|
|
4249
|
+
const postTranslation = isFunction$2(options.postTranslation) ? options.postTranslation : null;
|
|
4217
4250
|
const processor = isPlainObject$1(options.processor) ? options.processor : null;
|
|
4218
4251
|
const warnHtmlMessage = isBoolean$1(options.warnHtmlMessage) ? options.warnHtmlMessage : true;
|
|
4219
4252
|
const escapeParameter = !!options.escapeParameter;
|
|
4220
|
-
const messageCompiler = isFunction$
|
|
4221
|
-
if (process.env.NODE_ENV !== "production" && true && true && isFunction$
|
|
4253
|
+
const messageCompiler = isFunction$2(options.messageCompiler) ? options.messageCompiler : _compiler;
|
|
4254
|
+
if (process.env.NODE_ENV !== "production" && true && true && isFunction$2(options.messageCompiler)) {
|
|
4222
4255
|
warnOnce(getWarnMessage$1(CoreWarnCodes.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));
|
|
4223
4256
|
}
|
|
4224
|
-
const messageResolver = isFunction$
|
|
4225
|
-
const localeFallbacker = isFunction$
|
|
4257
|
+
const messageResolver = isFunction$2(options.messageResolver) ? options.messageResolver : _resolver || resolveWithKeyValue;
|
|
4258
|
+
const localeFallbacker = isFunction$2(options.localeFallbacker) ? options.localeFallbacker : _fallbacker || fallbackWithSimple;
|
|
4226
4259
|
const fallbackContext = isObject$3(options.fallbackContext) ? options.fallbackContext : void 0;
|
|
4227
4260
|
const internalOptions = options;
|
|
4228
4261
|
const __datetimeFormatters = isObject$3(internalOptions.__datetimeFormatters) ? internalOptions.__datetimeFormatters : /* @__PURE__ */ new Map();
|
|
@@ -4480,7 +4513,7 @@ function compile(message, context) {
|
|
|
4480
4513
|
}
|
|
4481
4514
|
}
|
|
4482
4515
|
const NOOP_MESSAGE_FUNCTION = () => "";
|
|
4483
|
-
const isMessageFunction = (val) => isFunction$
|
|
4516
|
+
const isMessageFunction = (val) => isFunction$2(val);
|
|
4484
4517
|
function translate(context, ...args) {
|
|
4485
4518
|
const { fallbackFormat, postTranslation, unresolving, messageCompiler, fallbackLocale, messages } = context;
|
|
4486
4519
|
const [key, options] = parseTranslateArgs(...args);
|
|
@@ -5539,9 +5572,9 @@ function createComposer(options = {}, VueI18nLegacy) {
|
|
|
5539
5572
|
let _fallbackWarn = __root ? __root.fallbackWarn : isBoolean$1(options.fallbackWarn) || isRegExp$1(options.fallbackWarn) ? options.fallbackWarn : true;
|
|
5540
5573
|
let _fallbackRoot = __root ? __root.fallbackRoot : isBoolean$1(options.fallbackRoot) ? options.fallbackRoot : true;
|
|
5541
5574
|
let _fallbackFormat = !!options.fallbackFormat;
|
|
5542
|
-
let _missing = isFunction$
|
|
5543
|
-
let _runtimeMissing = isFunction$
|
|
5544
|
-
let _postTranslation = isFunction$
|
|
5575
|
+
let _missing = isFunction$2(options.missing) ? options.missing : null;
|
|
5576
|
+
let _runtimeMissing = isFunction$2(options.missing) ? defineCoreMissingHandler(options.missing) : null;
|
|
5577
|
+
let _postTranslation = isFunction$2(options.postTranslation) ? options.postTranslation : null;
|
|
5545
5578
|
let _warnHtmlMessage = __root ? __root.warnHtmlMessage : isBoolean$1(options.warnHtmlMessage) ? options.warnHtmlMessage : true;
|
|
5546
5579
|
let _escapeParameter = !!options.escapeParameter;
|
|
5547
5580
|
const _modifiers = __root ? __root.modifiers : isPlainObject$1(options.modifiers) ? options.modifiers : {};
|
|
@@ -5611,7 +5644,7 @@ function createComposer(options = {}, VueI18nLegacy) {
|
|
|
5611
5644
|
const datetimeFormats = /* @__PURE__ */ computed(() => _datetimeFormats.value);
|
|
5612
5645
|
const numberFormats = /* @__PURE__ */ computed(() => _numberFormats.value);
|
|
5613
5646
|
function getPostTranslationHandler() {
|
|
5614
|
-
return isFunction$
|
|
5647
|
+
return isFunction$2(_postTranslation) ? _postTranslation : null;
|
|
5615
5648
|
}
|
|
5616
5649
|
function setPostTranslationHandler(handler) {
|
|
5617
5650
|
_postTranslation = handler;
|
|
@@ -5962,14 +5995,14 @@ function createComposer(options = {}, VueI18nLegacy) {
|
|
|
5962
5995
|
function convertComposerOptions(options) {
|
|
5963
5996
|
const locale2 = isString$2(options.locale) ? options.locale : DEFAULT_LOCALE;
|
|
5964
5997
|
const fallbackLocale = isString$2(options.fallbackLocale) || isArray$1(options.fallbackLocale) || isPlainObject$1(options.fallbackLocale) || options.fallbackLocale === false ? options.fallbackLocale : locale2;
|
|
5965
|
-
const missing = isFunction$
|
|
5998
|
+
const missing = isFunction$2(options.missing) ? options.missing : void 0;
|
|
5966
5999
|
const missingWarn = isBoolean$1(options.silentTranslationWarn) || isRegExp$1(options.silentTranslationWarn) ? !options.silentTranslationWarn : true;
|
|
5967
6000
|
const fallbackWarn = isBoolean$1(options.silentFallbackWarn) || isRegExp$1(options.silentFallbackWarn) ? !options.silentFallbackWarn : true;
|
|
5968
6001
|
const fallbackRoot = isBoolean$1(options.fallbackRoot) ? options.fallbackRoot : true;
|
|
5969
6002
|
const fallbackFormat = !!options.formatFallbackMessages;
|
|
5970
6003
|
const modifiers = isPlainObject$1(options.modifiers) ? options.modifiers : {};
|
|
5971
6004
|
const pluralizationRules = options.pluralizationRules;
|
|
5972
|
-
const postTranslation = isFunction$
|
|
6005
|
+
const postTranslation = isFunction$2(options.postTranslation) ? options.postTranslation : void 0;
|
|
5973
6006
|
const warnHtmlMessage = isString$2(options.warnHtmlInMessage) ? options.warnHtmlInMessage !== "off" : true;
|
|
5974
6007
|
const escapeParameter = !!options.escapeParameterHtml;
|
|
5975
6008
|
const inheritLocale = isBoolean$1(options.sync) ? options.sync : true;
|
|
@@ -6746,7 +6779,7 @@ function getLocaleMessageValue(messages) {
|
|
|
6746
6779
|
const value = {};
|
|
6747
6780
|
Object.keys(messages).forEach((key) => {
|
|
6748
6781
|
const v = messages[key];
|
|
6749
|
-
if (isFunction$
|
|
6782
|
+
if (isFunction$2(v) && "source" in v) {
|
|
6750
6783
|
value[key] = getMessageFunctionDetails(v);
|
|
6751
6784
|
} else if (isMessageAST(v) && v.loc && v.loc.source) {
|
|
6752
6785
|
value[key] = v.loc.source;
|
|
@@ -7306,8 +7339,8 @@ function useI18nForLegacy(instance, scope, root, options = {}) {
|
|
|
7306
7339
|
const _fallbackWarn = isLocalScope ? root.fallbackWarn : isBoolean$1(options.fallbackWarn) || isRegExp$1(options.fallbackWarn) ? options.fallbackWarn : true;
|
|
7307
7340
|
const _fallbackRoot = isLocalScope ? root.fallbackRoot : isBoolean$1(options.fallbackRoot) ? options.fallbackRoot : true;
|
|
7308
7341
|
const _fallbackFormat = !!options.fallbackFormat;
|
|
7309
|
-
const _missing = isFunction$
|
|
7310
|
-
const _postTranslation = isFunction$
|
|
7342
|
+
const _missing = isFunction$2(options.missing) ? options.missing : null;
|
|
7343
|
+
const _postTranslation = isFunction$2(options.postTranslation) ? options.postTranslation : null;
|
|
7311
7344
|
const _warnHtmlMessage = isLocalScope ? root.warnHtmlMessage : isBoolean$1(options.warnHtmlMessage) ? options.warnHtmlMessage : true;
|
|
7312
7345
|
const _escapeParameter = !!options.escapeParameter;
|
|
7313
7346
|
const _modifiers = isLocalScope ? root.modifiers : isPlainObject$1(options.modifiers) ? options.modifiers : {};
|
|
@@ -8242,8 +8275,9 @@ const LANGUAGE = [
|
|
|
8242
8275
|
{ label: "English", value: LANG_EN, language: LANGUAGE_EN, icon: "gt-line-English1" }
|
|
8243
8276
|
];
|
|
8244
8277
|
const LANG_KEY = "gitcode_lang";
|
|
8278
|
+
const SUPPORT_LOCALES = [LANG_EN, LANG_ZH];
|
|
8245
8279
|
const currentDomainCookie = api.get(LANG_KEY);
|
|
8246
|
-
if (currentDomainCookie && "." + window.location.hostname !== ".gitcode.com") {
|
|
8280
|
+
if (currentDomainCookie && "." + window.location.hostname !== ".gitcode.com" || !SUPPORT_LOCALES.includes(currentDomainCookie)) {
|
|
8247
8281
|
api.remove(LANG_KEY);
|
|
8248
8282
|
}
|
|
8249
8283
|
function isComposer(instance, mode) {
|
|
@@ -8268,7 +8302,8 @@ function setI18nLanguage(i18n2, locale2) {
|
|
|
8268
8302
|
setLocale(i18n2, locale2);
|
|
8269
8303
|
}
|
|
8270
8304
|
const getLocaleLang = () => {
|
|
8271
|
-
const
|
|
8305
|
+
const allCookies = api.get();
|
|
8306
|
+
const cookieLang = allCookies[LANG_KEY];
|
|
8272
8307
|
const localStorageLang = localStorage.getItem(LANG_KEY);
|
|
8273
8308
|
const storedLang = [LANG_EN, LANG_ZH].includes(cookieLang) ? cookieLang : localStorageLang;
|
|
8274
8309
|
let localLang = storedLang || LANG_ZH;
|
|
@@ -8497,7 +8532,7 @@ const typeOfTest = (type) => (thing) => typeof thing === type;
|
|
|
8497
8532
|
const { isArray } = Array;
|
|
8498
8533
|
const isUndefined$1 = typeOfTest("undefined");
|
|
8499
8534
|
function isBuffer(val) {
|
|
8500
|
-
return val !== null && !isUndefined$1(val) && val.constructor !== null && !isUndefined$1(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
|
8535
|
+
return val !== null && !isUndefined$1(val) && val.constructor !== null && !isUndefined$1(val.constructor) && isFunction$1(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
|
8501
8536
|
}
|
|
8502
8537
|
const isArrayBuffer = kindOfTest("ArrayBuffer");
|
|
8503
8538
|
function isArrayBufferView(val) {
|
|
@@ -8510,7 +8545,7 @@ function isArrayBufferView(val) {
|
|
|
8510
8545
|
return result2;
|
|
8511
8546
|
}
|
|
8512
8547
|
const isString = typeOfTest("string");
|
|
8513
|
-
const isFunction = typeOfTest("function");
|
|
8548
|
+
const isFunction$1 = typeOfTest("function");
|
|
8514
8549
|
const isNumber = typeOfTest("number");
|
|
8515
8550
|
const isObject$1 = (thing) => thing !== null && typeof thing === "object";
|
|
8516
8551
|
const isBoolean = (thing) => thing === true || thing === false;
|
|
@@ -8535,11 +8570,11 @@ const isDate = kindOfTest("Date");
|
|
|
8535
8570
|
const isFile = kindOfTest("File");
|
|
8536
8571
|
const isBlob = kindOfTest("Blob");
|
|
8537
8572
|
const isFileList = kindOfTest("FileList");
|
|
8538
|
-
const isStream = (val) => isObject$1(val) && isFunction(val.pipe);
|
|
8573
|
+
const isStream = (val) => isObject$1(val) && isFunction$1(val.pipe);
|
|
8539
8574
|
const isFormData = (thing) => {
|
|
8540
8575
|
let kind;
|
|
8541
|
-
return thing && (typeof FormData === "function" && thing instanceof FormData || isFunction(thing.append) && ((kind = kindOf(thing)) === "formdata" || // detect form-data instance
|
|
8542
|
-
kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
|
|
8576
|
+
return thing && (typeof FormData === "function" && thing instanceof FormData || isFunction$1(thing.append) && ((kind = kindOf(thing)) === "formdata" || // detect form-data instance
|
|
8577
|
+
kind === "object" && isFunction$1(thing.toString) && thing.toString() === "[object FormData]"));
|
|
8543
8578
|
};
|
|
8544
8579
|
const isURLSearchParams = kindOfTest("URLSearchParams");
|
|
8545
8580
|
const [isReadableStream, isRequest, isResponse, isHeaders] = ["ReadableStream", "Request", "Response", "Headers"].map(kindOfTest);
|
|
@@ -8591,18 +8626,18 @@ const _global = (() => {
|
|
|
8591
8626
|
return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : global;
|
|
8592
8627
|
})();
|
|
8593
8628
|
const isContextDefined = (context) => !isUndefined$1(context) && context !== _global;
|
|
8594
|
-
function merge() {
|
|
8595
|
-
const { caseless } = isContextDefined(this) && this || {};
|
|
8629
|
+
function merge$1() {
|
|
8630
|
+
const { caseless, skipUndefined } = isContextDefined(this) && this || {};
|
|
8596
8631
|
const result2 = {};
|
|
8597
8632
|
const assignValue = (val, key) => {
|
|
8598
8633
|
const targetKey = caseless && findKey(result2, key) || key;
|
|
8599
8634
|
if (isPlainObject(result2[targetKey]) && isPlainObject(val)) {
|
|
8600
|
-
result2[targetKey] = merge(result2[targetKey], val);
|
|
8635
|
+
result2[targetKey] = merge$1(result2[targetKey], val);
|
|
8601
8636
|
} else if (isPlainObject(val)) {
|
|
8602
|
-
result2[targetKey] = merge({}, val);
|
|
8637
|
+
result2[targetKey] = merge$1({}, val);
|
|
8603
8638
|
} else if (isArray(val)) {
|
|
8604
8639
|
result2[targetKey] = val.slice();
|
|
8605
|
-
} else {
|
|
8640
|
+
} else if (!skipUndefined || !isUndefined$1(val)) {
|
|
8606
8641
|
result2[targetKey] = val;
|
|
8607
8642
|
}
|
|
8608
8643
|
};
|
|
@@ -8613,7 +8648,7 @@ function merge() {
|
|
|
8613
8648
|
}
|
|
8614
8649
|
const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
8615
8650
|
forEach(b, (val, key) => {
|
|
8616
|
-
if (thisArg && isFunction(val)) {
|
|
8651
|
+
if (thisArg && isFunction$1(val)) {
|
|
8617
8652
|
a[key] = bind(val, thisArg);
|
|
8618
8653
|
} else {
|
|
8619
8654
|
a[key] = val;
|
|
@@ -8722,11 +8757,11 @@ const reduceDescriptors = (obj, reducer) => {
|
|
|
8722
8757
|
};
|
|
8723
8758
|
const freezeMethods = (obj) => {
|
|
8724
8759
|
reduceDescriptors(obj, (descriptor, name) => {
|
|
8725
|
-
if (isFunction(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
|
|
8760
|
+
if (isFunction$1(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
|
|
8726
8761
|
return false;
|
|
8727
8762
|
}
|
|
8728
8763
|
const value = obj[name];
|
|
8729
|
-
if (!isFunction(value)) return;
|
|
8764
|
+
if (!isFunction$1(value)) return;
|
|
8730
8765
|
descriptor.enumerable = false;
|
|
8731
8766
|
if ("writable" in descriptor) {
|
|
8732
8767
|
descriptor.writable = false;
|
|
@@ -8755,7 +8790,7 @@ const toFiniteNumber = (value, defaultValue) => {
|
|
|
8755
8790
|
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
|
|
8756
8791
|
};
|
|
8757
8792
|
function isSpecCompliantForm(thing) {
|
|
8758
|
-
return !!(thing && isFunction(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]);
|
|
8793
|
+
return !!(thing && isFunction$1(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]);
|
|
8759
8794
|
}
|
|
8760
8795
|
const toJSONObject = (obj) => {
|
|
8761
8796
|
const stack = new Array(10);
|
|
@@ -8783,7 +8818,7 @@ const toJSONObject = (obj) => {
|
|
|
8783
8818
|
return visit(obj, 0);
|
|
8784
8819
|
};
|
|
8785
8820
|
const isAsyncFn = kindOfTest("AsyncFunction");
|
|
8786
|
-
const isThenable = (thing) => thing && (isObject$1(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
|
|
8821
|
+
const isThenable = (thing) => thing && (isObject$1(thing) || isFunction$1(thing)) && isFunction$1(thing.then) && isFunction$1(thing.catch);
|
|
8787
8822
|
const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
8788
8823
|
if (setImmediateSupported) {
|
|
8789
8824
|
return setImmediate;
|
|
@@ -8801,10 +8836,10 @@ const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
|
8801
8836
|
})(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
|
|
8802
8837
|
})(
|
|
8803
8838
|
typeof setImmediate === "function",
|
|
8804
|
-
isFunction(_global.postMessage)
|
|
8839
|
+
isFunction$1(_global.postMessage)
|
|
8805
8840
|
);
|
|
8806
8841
|
const asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
|
|
8807
|
-
const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
8842
|
+
const isIterable = (thing) => thing != null && isFunction$1(thing[iterator]);
|
|
8808
8843
|
const utils$1 = {
|
|
8809
8844
|
isArray,
|
|
8810
8845
|
isArrayBuffer,
|
|
@@ -8826,13 +8861,13 @@ const utils$1 = {
|
|
|
8826
8861
|
isFile,
|
|
8827
8862
|
isBlob,
|
|
8828
8863
|
isRegExp,
|
|
8829
|
-
isFunction,
|
|
8864
|
+
isFunction: isFunction$1,
|
|
8830
8865
|
isStream,
|
|
8831
8866
|
isURLSearchParams,
|
|
8832
8867
|
isTypedArray,
|
|
8833
8868
|
isFileList,
|
|
8834
8869
|
forEach,
|
|
8835
|
-
merge,
|
|
8870
|
+
merge: merge$1,
|
|
8836
8871
|
extend,
|
|
8837
8872
|
trim,
|
|
8838
8873
|
stripBOM,
|
|
@@ -8931,9 +8966,13 @@ AxiosError$1.from = (error, code2, config, request, response, customProps) => {
|
|
|
8931
8966
|
}, (prop) => {
|
|
8932
8967
|
return prop !== "isAxiosError";
|
|
8933
8968
|
});
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
axiosError
|
|
8969
|
+
const msg = error && error.message ? error.message : "Error";
|
|
8970
|
+
const errCode = code2 == null && error ? error.code : code2;
|
|
8971
|
+
AxiosError$1.call(axiosError, msg, errCode, config, request, response);
|
|
8972
|
+
if (error && axiosError.cause == null) {
|
|
8973
|
+
Object.defineProperty(axiosError, "cause", { value: error, configurable: true });
|
|
8974
|
+
}
|
|
8975
|
+
axiosError.name = error && error.name || "Error";
|
|
8937
8976
|
customProps && Object.assign(axiosError, customProps);
|
|
8938
8977
|
return axiosError;
|
|
8939
8978
|
};
|
|
@@ -9081,7 +9120,7 @@ prototype.toString = function toString2(encoder) {
|
|
|
9081
9120
|
}, "").join("&");
|
|
9082
9121
|
};
|
|
9083
9122
|
function encode(val) {
|
|
9084
|
-
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+")
|
|
9123
|
+
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+");
|
|
9085
9124
|
}
|
|
9086
9125
|
function buildURL(url, params, options) {
|
|
9087
9126
|
if (!params) {
|
|
@@ -9135,7 +9174,7 @@ class InterceptorManager {
|
|
|
9135
9174
|
*
|
|
9136
9175
|
* @param {Number} id The ID that was returned by `use`
|
|
9137
9176
|
*
|
|
9138
|
-
* @returns {
|
|
9177
|
+
* @returns {void}
|
|
9139
9178
|
*/
|
|
9140
9179
|
eject(id) {
|
|
9141
9180
|
if (this.handlers[id]) {
|
|
@@ -9337,7 +9376,7 @@ const defaults = {
|
|
|
9337
9376
|
const silentJSONParsing = transitional2 && transitional2.silentJSONParsing;
|
|
9338
9377
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
9339
9378
|
try {
|
|
9340
|
-
return JSON.parse(data);
|
|
9379
|
+
return JSON.parse(data, this.parseReviver);
|
|
9341
9380
|
} catch (e) {
|
|
9342
9381
|
if (strictJSONParsing) {
|
|
9343
9382
|
if (e.name === "SyntaxError") {
|
|
@@ -9791,20 +9830,33 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ? /* @__PURE__ */ ((origi
|
|
|
9791
9830
|
const cookies = platform.hasStandardBrowserEnv ? (
|
|
9792
9831
|
// Standard browser envs support document.cookie
|
|
9793
9832
|
{
|
|
9794
|
-
write(name, value, expires, path, domain, secure) {
|
|
9795
|
-
|
|
9796
|
-
|
|
9797
|
-
utils$1.
|
|
9798
|
-
|
|
9799
|
-
|
|
9833
|
+
write(name, value, expires, path, domain, secure, sameSite) {
|
|
9834
|
+
if (typeof document === "undefined") return;
|
|
9835
|
+
const cookie = [`${name}=${encodeURIComponent(value)}`];
|
|
9836
|
+
if (utils$1.isNumber(expires)) {
|
|
9837
|
+
cookie.push(`expires=${new Date(expires).toUTCString()}`);
|
|
9838
|
+
}
|
|
9839
|
+
if (utils$1.isString(path)) {
|
|
9840
|
+
cookie.push(`path=${path}`);
|
|
9841
|
+
}
|
|
9842
|
+
if (utils$1.isString(domain)) {
|
|
9843
|
+
cookie.push(`domain=${domain}`);
|
|
9844
|
+
}
|
|
9845
|
+
if (secure === true) {
|
|
9846
|
+
cookie.push("secure");
|
|
9847
|
+
}
|
|
9848
|
+
if (utils$1.isString(sameSite)) {
|
|
9849
|
+
cookie.push(`SameSite=${sameSite}`);
|
|
9850
|
+
}
|
|
9800
9851
|
document.cookie = cookie.join("; ");
|
|
9801
9852
|
},
|
|
9802
9853
|
read(name) {
|
|
9803
|
-
|
|
9804
|
-
|
|
9854
|
+
if (typeof document === "undefined") return null;
|
|
9855
|
+
const match = document.cookie.match(new RegExp("(?:^|; )" + name + "=([^;]*)"));
|
|
9856
|
+
return match ? decodeURIComponent(match[1]) : null;
|
|
9805
9857
|
},
|
|
9806
9858
|
remove(name) {
|
|
9807
|
-
this.write(name, "", Date.now() - 864e5);
|
|
9859
|
+
this.write(name, "", Date.now() - 864e5, "/");
|
|
9808
9860
|
}
|
|
9809
9861
|
}
|
|
9810
9862
|
) : (
|
|
@@ -9921,13 +9973,17 @@ const resolveConfig = (config) => {
|
|
|
9921
9973
|
"Basic " + btoa((auth.username || "") + ":" + (auth.password ? unescape(encodeURIComponent(auth.password)) : ""))
|
|
9922
9974
|
);
|
|
9923
9975
|
}
|
|
9924
|
-
let contentType;
|
|
9925
9976
|
if (utils$1.isFormData(data)) {
|
|
9926
9977
|
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
9927
9978
|
headers.setContentType(void 0);
|
|
9928
|
-
} else if ((
|
|
9929
|
-
const
|
|
9930
|
-
|
|
9979
|
+
} else if (utils$1.isFunction(data.getHeaders)) {
|
|
9980
|
+
const formHeaders = data.getHeaders();
|
|
9981
|
+
const allowedHeaders = ["content-type", "content-length"];
|
|
9982
|
+
Object.entries(formHeaders).forEach(([key, val]) => {
|
|
9983
|
+
if (allowedHeaders.includes(key.toLowerCase())) {
|
|
9984
|
+
headers.set(key, val);
|
|
9985
|
+
}
|
|
9986
|
+
});
|
|
9931
9987
|
}
|
|
9932
9988
|
}
|
|
9933
9989
|
if (platform.hasStandardBrowserEnv) {
|
|
@@ -10005,8 +10061,11 @@ const xhrAdapter = isXHRAdapterSupported && function(config) {
|
|
|
10005
10061
|
reject(new AxiosError$1("Request aborted", AxiosError$1.ECONNABORTED, config, request));
|
|
10006
10062
|
request = null;
|
|
10007
10063
|
};
|
|
10008
|
-
request.onerror = function handleError() {
|
|
10009
|
-
|
|
10064
|
+
request.onerror = function handleError(event) {
|
|
10065
|
+
const msg = event && event.message ? event.message : "Network Error";
|
|
10066
|
+
const err = new AxiosError$1(msg, AxiosError$1.ERR_NETWORK, config, request);
|
|
10067
|
+
err.event = event || null;
|
|
10068
|
+
reject(err);
|
|
10010
10069
|
request = null;
|
|
10011
10070
|
};
|
|
10012
10071
|
request.ontimeout = function handleTimeout() {
|
|
@@ -10174,9 +10233,16 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
|
|
|
10174
10233
|
highWaterMark: 2
|
|
10175
10234
|
});
|
|
10176
10235
|
};
|
|
10177
|
-
const
|
|
10178
|
-
const
|
|
10179
|
-
const
|
|
10236
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
10237
|
+
const { isFunction } = utils$1;
|
|
10238
|
+
const globalFetchAPI = (({ Request, Response }) => ({
|
|
10239
|
+
Request,
|
|
10240
|
+
Response
|
|
10241
|
+
}))(utils$1.global);
|
|
10242
|
+
const {
|
|
10243
|
+
ReadableStream: ReadableStream$1,
|
|
10244
|
+
TextEncoder
|
|
10245
|
+
} = utils$1.global;
|
|
10180
10246
|
const test = (fn, ...args) => {
|
|
10181
10247
|
try {
|
|
10182
10248
|
return !!fn(...args);
|
|
@@ -10184,162 +10250,202 @@ const test = (fn, ...args) => {
|
|
|
10184
10250
|
return false;
|
|
10185
10251
|
}
|
|
10186
10252
|
};
|
|
10187
|
-
const
|
|
10188
|
-
|
|
10189
|
-
|
|
10190
|
-
|
|
10191
|
-
|
|
10192
|
-
|
|
10193
|
-
|
|
10194
|
-
|
|
10195
|
-
|
|
10196
|
-
|
|
10197
|
-
return duplexAccessed && !hasContentType;
|
|
10198
|
-
});
|
|
10199
|
-
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
10200
|
-
const supportsResponseStream = isReadableStreamSupported && test(() => utils$1.isReadableStream(new Response("").body));
|
|
10201
|
-
const resolvers = {
|
|
10202
|
-
stream: supportsResponseStream && ((res) => res.body)
|
|
10203
|
-
};
|
|
10204
|
-
isFetchSupported && ((res) => {
|
|
10205
|
-
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => {
|
|
10206
|
-
!resolvers[type] && (resolvers[type] = utils$1.isFunction(res[type]) ? (res2) => res2[type]() : (_, config) => {
|
|
10207
|
-
throw new AxiosError$1(`Response type '${type}' is not supported`, AxiosError$1.ERR_NOT_SUPPORT, config);
|
|
10208
|
-
});
|
|
10209
|
-
});
|
|
10210
|
-
})(new Response());
|
|
10211
|
-
const getBodyLength = async (body) => {
|
|
10212
|
-
if (body == null) {
|
|
10213
|
-
return 0;
|
|
10214
|
-
}
|
|
10215
|
-
if (utils$1.isBlob(body)) {
|
|
10216
|
-
return body.size;
|
|
10253
|
+
const factory = (env) => {
|
|
10254
|
+
env = utils$1.merge.call({
|
|
10255
|
+
skipUndefined: true
|
|
10256
|
+
}, globalFetchAPI, env);
|
|
10257
|
+
const { fetch: envFetch, Request, Response } = env;
|
|
10258
|
+
const isFetchSupported = envFetch ? isFunction(envFetch) : typeof fetch === "function";
|
|
10259
|
+
const isRequestSupported = isFunction(Request);
|
|
10260
|
+
const isResponseSupported = isFunction(Response);
|
|
10261
|
+
if (!isFetchSupported) {
|
|
10262
|
+
return false;
|
|
10217
10263
|
}
|
|
10218
|
-
|
|
10219
|
-
|
|
10264
|
+
const isReadableStreamSupported = isFetchSupported && isFunction(ReadableStream$1);
|
|
10265
|
+
const encodeText = isFetchSupported && (typeof TextEncoder === "function" ? /* @__PURE__ */ ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : async (str) => new Uint8Array(await new Request(str).arrayBuffer()));
|
|
10266
|
+
const supportsRequestStream = isRequestSupported && isReadableStreamSupported && test(() => {
|
|
10267
|
+
let duplexAccessed = false;
|
|
10268
|
+
const hasContentType = new Request(platform.origin, {
|
|
10269
|
+
body: new ReadableStream$1(),
|
|
10220
10270
|
method: "POST",
|
|
10221
|
-
|
|
10222
|
-
|
|
10223
|
-
|
|
10224
|
-
|
|
10225
|
-
|
|
10226
|
-
return
|
|
10227
|
-
}
|
|
10228
|
-
if (utils$1.isURLSearchParams(body)) {
|
|
10229
|
-
body = body + "";
|
|
10230
|
-
}
|
|
10231
|
-
if (utils$1.isString(body)) {
|
|
10232
|
-
return (await encodeText(body)).byteLength;
|
|
10233
|
-
}
|
|
10234
|
-
};
|
|
10235
|
-
const resolveBodyLength = async (headers, body) => {
|
|
10236
|
-
const length = utils$1.toFiniteNumber(headers.getContentLength());
|
|
10237
|
-
return length == null ? getBodyLength(body) : length;
|
|
10238
|
-
};
|
|
10239
|
-
const fetchAdapter = isFetchSupported && (async (config) => {
|
|
10240
|
-
let {
|
|
10241
|
-
url,
|
|
10242
|
-
method,
|
|
10243
|
-
data,
|
|
10244
|
-
signal,
|
|
10245
|
-
cancelToken,
|
|
10246
|
-
timeout,
|
|
10247
|
-
onDownloadProgress,
|
|
10248
|
-
onUploadProgress,
|
|
10249
|
-
responseType,
|
|
10250
|
-
headers,
|
|
10251
|
-
withCredentials = "same-origin",
|
|
10252
|
-
fetchOptions
|
|
10253
|
-
} = resolveConfig(config);
|
|
10254
|
-
responseType = responseType ? (responseType + "").toLowerCase() : "text";
|
|
10255
|
-
let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
|
|
10256
|
-
let request;
|
|
10257
|
-
const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
|
|
10258
|
-
composedSignal.unsubscribe();
|
|
10271
|
+
get duplex() {
|
|
10272
|
+
duplexAccessed = true;
|
|
10273
|
+
return "half";
|
|
10274
|
+
}
|
|
10275
|
+
}).headers.has("Content-Type");
|
|
10276
|
+
return duplexAccessed && !hasContentType;
|
|
10259
10277
|
});
|
|
10260
|
-
|
|
10261
|
-
|
|
10262
|
-
|
|
10263
|
-
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
|
|
10278
|
+
const supportsResponseStream = isResponseSupported && isReadableStreamSupported && test(() => utils$1.isReadableStream(new Response("").body));
|
|
10279
|
+
const resolvers = {
|
|
10280
|
+
stream: supportsResponseStream && ((res) => res.body)
|
|
10281
|
+
};
|
|
10282
|
+
isFetchSupported && (() => {
|
|
10283
|
+
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => {
|
|
10284
|
+
!resolvers[type] && (resolvers[type] = (res, config) => {
|
|
10285
|
+
let method = res && res[type];
|
|
10286
|
+
if (method) {
|
|
10287
|
+
return method.call(res);
|
|
10288
|
+
}
|
|
10289
|
+
throw new AxiosError$1(`Response type '${type}' is not supported`, AxiosError$1.ERR_NOT_SUPPORT, config);
|
|
10267
10290
|
});
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
|
|
10273
|
-
const [onProgress, flush] = progressEventDecorator(
|
|
10274
|
-
requestContentLength,
|
|
10275
|
-
progressEventReducer(asyncDecorator(onUploadProgress))
|
|
10276
|
-
);
|
|
10277
|
-
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
10278
|
-
}
|
|
10291
|
+
});
|
|
10292
|
+
})();
|
|
10293
|
+
const getBodyLength = async (body) => {
|
|
10294
|
+
if (body == null) {
|
|
10295
|
+
return 0;
|
|
10279
10296
|
}
|
|
10280
|
-
if (
|
|
10281
|
-
|
|
10297
|
+
if (utils$1.isBlob(body)) {
|
|
10298
|
+
return body.size;
|
|
10282
10299
|
}
|
|
10283
|
-
|
|
10284
|
-
|
|
10285
|
-
|
|
10286
|
-
|
|
10287
|
-
method: method.toUpperCase(),
|
|
10288
|
-
headers: headers.normalize().toJSON(),
|
|
10289
|
-
body: data,
|
|
10290
|
-
duplex: "half",
|
|
10291
|
-
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
10292
|
-
});
|
|
10293
|
-
let response = await fetch(request, fetchOptions);
|
|
10294
|
-
const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
|
|
10295
|
-
if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
10296
|
-
const options = {};
|
|
10297
|
-
["status", "statusText", "headers"].forEach((prop) => {
|
|
10298
|
-
options[prop] = response[prop];
|
|
10300
|
+
if (utils$1.isSpecCompliantForm(body)) {
|
|
10301
|
+
const _request = new Request(platform.origin, {
|
|
10302
|
+
method: "POST",
|
|
10303
|
+
body
|
|
10299
10304
|
});
|
|
10300
|
-
|
|
10301
|
-
const [onProgress, flush] = onDownloadProgress && progressEventDecorator(
|
|
10302
|
-
responseContentLength,
|
|
10303
|
-
progressEventReducer(asyncDecorator(onDownloadProgress), true)
|
|
10304
|
-
) || [];
|
|
10305
|
-
response = new Response(
|
|
10306
|
-
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
|
|
10307
|
-
flush && flush();
|
|
10308
|
-
unsubscribe && unsubscribe();
|
|
10309
|
-
}),
|
|
10310
|
-
options
|
|
10311
|
-
);
|
|
10305
|
+
return (await _request.arrayBuffer()).byteLength;
|
|
10312
10306
|
}
|
|
10313
|
-
|
|
10314
|
-
|
|
10315
|
-
|
|
10316
|
-
|
|
10317
|
-
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
|
|
10323
|
-
|
|
10324
|
-
|
|
10307
|
+
if (utils$1.isArrayBufferView(body) || utils$1.isArrayBuffer(body)) {
|
|
10308
|
+
return body.byteLength;
|
|
10309
|
+
}
|
|
10310
|
+
if (utils$1.isURLSearchParams(body)) {
|
|
10311
|
+
body = body + "";
|
|
10312
|
+
}
|
|
10313
|
+
if (utils$1.isString(body)) {
|
|
10314
|
+
return (await encodeText(body)).byteLength;
|
|
10315
|
+
}
|
|
10316
|
+
};
|
|
10317
|
+
const resolveBodyLength = async (headers, body) => {
|
|
10318
|
+
const length = utils$1.toFiniteNumber(headers.getContentLength());
|
|
10319
|
+
return length == null ? getBodyLength(body) : length;
|
|
10320
|
+
};
|
|
10321
|
+
return async (config) => {
|
|
10322
|
+
let {
|
|
10323
|
+
url,
|
|
10324
|
+
method,
|
|
10325
|
+
data,
|
|
10326
|
+
signal,
|
|
10327
|
+
cancelToken,
|
|
10328
|
+
timeout,
|
|
10329
|
+
onDownloadProgress,
|
|
10330
|
+
onUploadProgress,
|
|
10331
|
+
responseType,
|
|
10332
|
+
headers,
|
|
10333
|
+
withCredentials = "same-origin",
|
|
10334
|
+
fetchOptions
|
|
10335
|
+
} = resolveConfig(config);
|
|
10336
|
+
let _fetch = envFetch || fetch;
|
|
10337
|
+
responseType = responseType ? (responseType + "").toLowerCase() : "text";
|
|
10338
|
+
let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
|
|
10339
|
+
let request = null;
|
|
10340
|
+
const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
|
|
10341
|
+
composedSignal.unsubscribe();
|
|
10325
10342
|
});
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10343
|
+
let requestContentLength;
|
|
10344
|
+
try {
|
|
10345
|
+
if (onUploadProgress && supportsRequestStream && method !== "get" && method !== "head" && (requestContentLength = await resolveBodyLength(headers, data)) !== 0) {
|
|
10346
|
+
let _request = new Request(url, {
|
|
10347
|
+
method: "POST",
|
|
10348
|
+
body: data,
|
|
10349
|
+
duplex: "half"
|
|
10350
|
+
});
|
|
10351
|
+
let contentTypeHeader;
|
|
10352
|
+
if (utils$1.isFormData(data) && (contentTypeHeader = _request.headers.get("content-type"))) {
|
|
10353
|
+
headers.setContentType(contentTypeHeader);
|
|
10333
10354
|
}
|
|
10334
|
-
|
|
10355
|
+
if (_request.body) {
|
|
10356
|
+
const [onProgress, flush] = progressEventDecorator(
|
|
10357
|
+
requestContentLength,
|
|
10358
|
+
progressEventReducer(asyncDecorator(onUploadProgress))
|
|
10359
|
+
);
|
|
10360
|
+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
10361
|
+
}
|
|
10362
|
+
}
|
|
10363
|
+
if (!utils$1.isString(withCredentials)) {
|
|
10364
|
+
withCredentials = withCredentials ? "include" : "omit";
|
|
10365
|
+
}
|
|
10366
|
+
const isCredentialsSupported = isRequestSupported && "credentials" in Request.prototype;
|
|
10367
|
+
const resolvedOptions = {
|
|
10368
|
+
...fetchOptions,
|
|
10369
|
+
signal: composedSignal,
|
|
10370
|
+
method: method.toUpperCase(),
|
|
10371
|
+
headers: headers.normalize().toJSON(),
|
|
10372
|
+
body: data,
|
|
10373
|
+
duplex: "half",
|
|
10374
|
+
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
10375
|
+
};
|
|
10376
|
+
request = isRequestSupported && new Request(url, resolvedOptions);
|
|
10377
|
+
let response = await (isRequestSupported ? _fetch(request, fetchOptions) : _fetch(url, resolvedOptions));
|
|
10378
|
+
const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
|
|
10379
|
+
if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
10380
|
+
const options = {};
|
|
10381
|
+
["status", "statusText", "headers"].forEach((prop) => {
|
|
10382
|
+
options[prop] = response[prop];
|
|
10383
|
+
});
|
|
10384
|
+
const responseContentLength = utils$1.toFiniteNumber(response.headers.get("content-length"));
|
|
10385
|
+
const [onProgress, flush] = onDownloadProgress && progressEventDecorator(
|
|
10386
|
+
responseContentLength,
|
|
10387
|
+
progressEventReducer(asyncDecorator(onDownloadProgress), true)
|
|
10388
|
+
) || [];
|
|
10389
|
+
response = new Response(
|
|
10390
|
+
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
|
|
10391
|
+
flush && flush();
|
|
10392
|
+
unsubscribe && unsubscribe();
|
|
10393
|
+
}),
|
|
10394
|
+
options
|
|
10395
|
+
);
|
|
10396
|
+
}
|
|
10397
|
+
responseType = responseType || "text";
|
|
10398
|
+
let responseData = await resolvers[utils$1.findKey(resolvers, responseType) || "text"](response, config);
|
|
10399
|
+
!isStreamResponse && unsubscribe && unsubscribe();
|
|
10400
|
+
return await new Promise((resolve, reject) => {
|
|
10401
|
+
settle(resolve, reject, {
|
|
10402
|
+
data: responseData,
|
|
10403
|
+
headers: AxiosHeaders$1.from(response.headers),
|
|
10404
|
+
status: response.status,
|
|
10405
|
+
statusText: response.statusText,
|
|
10406
|
+
config,
|
|
10407
|
+
request
|
|
10408
|
+
});
|
|
10409
|
+
});
|
|
10410
|
+
} catch (err) {
|
|
10411
|
+
unsubscribe && unsubscribe();
|
|
10412
|
+
if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
|
|
10413
|
+
throw Object.assign(
|
|
10414
|
+
new AxiosError$1("Network Error", AxiosError$1.ERR_NETWORK, config, request),
|
|
10415
|
+
{
|
|
10416
|
+
cause: err.cause || err
|
|
10417
|
+
}
|
|
10418
|
+
);
|
|
10419
|
+
}
|
|
10420
|
+
throw AxiosError$1.from(err, err && err.code, config, request);
|
|
10335
10421
|
}
|
|
10336
|
-
|
|
10422
|
+
};
|
|
10423
|
+
};
|
|
10424
|
+
const seedCache = /* @__PURE__ */ new Map();
|
|
10425
|
+
const getFetch = (config) => {
|
|
10426
|
+
let env = config && config.env || {};
|
|
10427
|
+
const { fetch: fetch2, Request, Response } = env;
|
|
10428
|
+
const seeds = [
|
|
10429
|
+
Request,
|
|
10430
|
+
Response,
|
|
10431
|
+
fetch2
|
|
10432
|
+
];
|
|
10433
|
+
let len = seeds.length, i = len, seed, target, map = seedCache;
|
|
10434
|
+
while (i--) {
|
|
10435
|
+
seed = seeds[i];
|
|
10436
|
+
target = map.get(seed);
|
|
10437
|
+
target === void 0 && map.set(seed, target = i ? /* @__PURE__ */ new Map() : factory(env));
|
|
10438
|
+
map = target;
|
|
10337
10439
|
}
|
|
10338
|
-
|
|
10440
|
+
return target;
|
|
10441
|
+
};
|
|
10442
|
+
getFetch();
|
|
10339
10443
|
const knownAdapters = {
|
|
10340
10444
|
http: httpAdapter,
|
|
10341
10445
|
xhr: xhrAdapter,
|
|
10342
|
-
fetch:
|
|
10446
|
+
fetch: {
|
|
10447
|
+
get: getFetch
|
|
10448
|
+
}
|
|
10343
10449
|
};
|
|
10344
10450
|
utils$1.forEach(knownAdapters, (fn, value) => {
|
|
10345
10451
|
if (fn) {
|
|
@@ -10352,40 +10458,49 @@ utils$1.forEach(knownAdapters, (fn, value) => {
|
|
|
10352
10458
|
});
|
|
10353
10459
|
const renderReason = (reason) => `- ${reason}`;
|
|
10354
10460
|
const isResolvedHandle = (adapter) => utils$1.isFunction(adapter) || adapter === null || adapter === false;
|
|
10355
|
-
|
|
10356
|
-
|
|
10357
|
-
|
|
10358
|
-
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10362
|
-
|
|
10363
|
-
|
|
10364
|
-
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
|
-
|
|
10368
|
-
|
|
10369
|
-
throw new AxiosError$1(`Unknown adapter '${id}'`);
|
|
10370
|
-
}
|
|
10371
|
-
}
|
|
10372
|
-
if (adapter) {
|
|
10373
|
-
break;
|
|
10461
|
+
function getAdapter$1(adapters2, config) {
|
|
10462
|
+
adapters2 = utils$1.isArray(adapters2) ? adapters2 : [adapters2];
|
|
10463
|
+
const { length } = adapters2;
|
|
10464
|
+
let nameOrAdapter;
|
|
10465
|
+
let adapter;
|
|
10466
|
+
const rejectedReasons = {};
|
|
10467
|
+
for (let i = 0; i < length; i++) {
|
|
10468
|
+
nameOrAdapter = adapters2[i];
|
|
10469
|
+
let id;
|
|
10470
|
+
adapter = nameOrAdapter;
|
|
10471
|
+
if (!isResolvedHandle(nameOrAdapter)) {
|
|
10472
|
+
adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
|
|
10473
|
+
if (adapter === void 0) {
|
|
10474
|
+
throw new AxiosError$1(`Unknown adapter '${id}'`);
|
|
10374
10475
|
}
|
|
10375
|
-
rejectedReasons[id || "#" + i] = adapter;
|
|
10376
10476
|
}
|
|
10377
|
-
if (
|
|
10378
|
-
|
|
10379
|
-
([id, state]) => `adapter ${id} ` + (state === false ? "is not supported by the environment" : "is not available in the build")
|
|
10380
|
-
);
|
|
10381
|
-
let s = length ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified";
|
|
10382
|
-
throw new AxiosError$1(
|
|
10383
|
-
`There is no suitable adapter to dispatch the request ` + s,
|
|
10384
|
-
"ERR_NOT_SUPPORT"
|
|
10385
|
-
);
|
|
10477
|
+
if (adapter && (utils$1.isFunction(adapter) || (adapter = adapter.get(config)))) {
|
|
10478
|
+
break;
|
|
10386
10479
|
}
|
|
10387
|
-
|
|
10388
|
-
}
|
|
10480
|
+
rejectedReasons[id || "#" + i] = adapter;
|
|
10481
|
+
}
|
|
10482
|
+
if (!adapter) {
|
|
10483
|
+
const reasons = Object.entries(rejectedReasons).map(
|
|
10484
|
+
([id, state]) => `adapter ${id} ` + (state === false ? "is not supported by the environment" : "is not available in the build")
|
|
10485
|
+
);
|
|
10486
|
+
let s = length ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified";
|
|
10487
|
+
throw new AxiosError$1(
|
|
10488
|
+
`There is no suitable adapter to dispatch the request ` + s,
|
|
10489
|
+
"ERR_NOT_SUPPORT"
|
|
10490
|
+
);
|
|
10491
|
+
}
|
|
10492
|
+
return adapter;
|
|
10493
|
+
}
|
|
10494
|
+
const adapters = {
|
|
10495
|
+
/**
|
|
10496
|
+
* Resolve an adapter from a list of adapter names or functions.
|
|
10497
|
+
* @type {Function}
|
|
10498
|
+
*/
|
|
10499
|
+
getAdapter: getAdapter$1,
|
|
10500
|
+
/**
|
|
10501
|
+
* Exposes all known adapters
|
|
10502
|
+
* @type {Object<string, Function|Object>}
|
|
10503
|
+
*/
|
|
10389
10504
|
adapters: knownAdapters
|
|
10390
10505
|
};
|
|
10391
10506
|
function throwIfCancellationRequested(config) {
|
|
@@ -10406,7 +10521,7 @@ function dispatchRequest(config) {
|
|
|
10406
10521
|
if (["post", "put", "patch"].indexOf(config.method) !== -1) {
|
|
10407
10522
|
config.headers.setContentType("application/x-www-form-urlencoded", false);
|
|
10408
10523
|
}
|
|
10409
|
-
const adapter = adapters.getAdapter(config.adapter || defaults.adapter);
|
|
10524
|
+
const adapter = adapters.getAdapter(config.adapter || defaults.adapter, config);
|
|
10410
10525
|
return adapter(config).then(function onAdapterResolution(response) {
|
|
10411
10526
|
throwIfCancellationRequested(config);
|
|
10412
10527
|
response.data = transformData.call(
|
|
@@ -10431,7 +10546,7 @@ function dispatchRequest(config) {
|
|
|
10431
10546
|
return Promise.reject(reason);
|
|
10432
10547
|
});
|
|
10433
10548
|
}
|
|
10434
|
-
const VERSION$1 = "1.
|
|
10549
|
+
const VERSION$1 = "1.13.2";
|
|
10435
10550
|
const validators$1 = {};
|
|
10436
10551
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
10437
10552
|
validators$1[type] = function validator2(thing) {
|
|
@@ -10610,7 +10725,6 @@ let Axios$1 = class Axios {
|
|
|
10610
10725
|
}
|
|
10611
10726
|
len = requestInterceptorChain.length;
|
|
10612
10727
|
let newConfig = config;
|
|
10613
|
-
i = 0;
|
|
10614
10728
|
while (i < len) {
|
|
10615
10729
|
const onFulfilled = requestInterceptorChain[i++];
|
|
10616
10730
|
const onRejected = requestInterceptorChain[i++];
|
|
@@ -10830,7 +10944,13 @@ const HttpStatusCode$1 = {
|
|
|
10830
10944
|
InsufficientStorage: 507,
|
|
10831
10945
|
LoopDetected: 508,
|
|
10832
10946
|
NotExtended: 510,
|
|
10833
|
-
NetworkAuthenticationRequired: 511
|
|
10947
|
+
NetworkAuthenticationRequired: 511,
|
|
10948
|
+
WebServerIsDown: 521,
|
|
10949
|
+
ConnectionTimedOut: 522,
|
|
10950
|
+
OriginIsUnreachable: 523,
|
|
10951
|
+
TimeoutOccurred: 524,
|
|
10952
|
+
SslHandshakeFailed: 525,
|
|
10953
|
+
InvalidSslCertificate: 526
|
|
10834
10954
|
};
|
|
10835
10955
|
Object.entries(HttpStatusCode$1).forEach(([key, value]) => {
|
|
10836
10956
|
HttpStatusCode$1[value] = key;
|
|
@@ -11378,7 +11498,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11378
11498
|
createElementVNode("div", {
|
|
11379
11499
|
class: "home-nav-link tools-questionnaire",
|
|
11380
11500
|
onClick: toggleGrowthCenter
|
|
11381
|
-
}, _cache[6] || (_cache[6] = [
|
|
11501
|
+
}, [..._cache[6] || (_cache[6] = [
|
|
11382
11502
|
createElementVNode("div", { class: "home-nav-item" }, [
|
|
11383
11503
|
createElementVNode("img", {
|
|
11384
11504
|
class: "common-icon inline-block h-[20px] w-[20px]",
|
|
@@ -11386,7 +11506,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11386
11506
|
alt: ""
|
|
11387
11507
|
})
|
|
11388
11508
|
], -1)
|
|
11389
|
-
]))
|
|
11509
|
+
])])
|
|
11390
11510
|
]),
|
|
11391
11511
|
_: 1
|
|
11392
11512
|
})) : createCommentVNode("", true),
|
|
@@ -11409,7 +11529,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11409
11529
|
id: "gitcode-desk-btn",
|
|
11410
11530
|
class: "home-nav-item kefu",
|
|
11411
11531
|
onClick: showDesk
|
|
11412
|
-
}, _cache[7] || (_cache[7] = [
|
|
11532
|
+
}, [..._cache[7] || (_cache[7] = [
|
|
11413
11533
|
createElementVNode("img", {
|
|
11414
11534
|
class: "inline-block h-[20px] w-[20px]",
|
|
11415
11535
|
src: "https://cdn-static.gitcode.com/static/images/desk/kefu.png",
|
|
@@ -11419,7 +11539,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11419
11539
|
createElementVNode("div", null, "客"),
|
|
11420
11540
|
createElementVNode("div", null, "服")
|
|
11421
11541
|
], -1)
|
|
11422
|
-
]))
|
|
11542
|
+
])])
|
|
11423
11543
|
])
|
|
11424
11544
|
]),
|
|
11425
11545
|
_: 1
|
|
@@ -11453,8 +11573,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11453
11573
|
])
|
|
11454
11574
|
], -1))
|
|
11455
11575
|
]),
|
|
11456
|
-
_: 1
|
|
11457
|
-
__: [9]
|
|
11576
|
+
_: 1
|
|
11458
11577
|
}),
|
|
11459
11578
|
npsPopVisible.value ? (openBlock(), createBlock(unref(Popover), {
|
|
11460
11579
|
key: 0,
|
|
@@ -11473,9 +11592,9 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11473
11592
|
key: item.index,
|
|
11474
11593
|
class: normalizeClass(["tab-item w-8 h-1 mr-1 cursor-pointer", opinionStep.value === item.index ? "bg-[var(--theme-home-step-active-bg)]" : "bg-[var(--theme-home-step-bg)]"]),
|
|
11475
11594
|
onClick: ($event) => swTab(item)
|
|
11476
|
-
}, _cache[11] || (_cache[11] = [
|
|
11595
|
+
}, [..._cache[11] || (_cache[11] = [
|
|
11477
11596
|
createElementVNode("span", { class: "cursor-pointer" }, null, -1)
|
|
11478
|
-
]), 10, _hoisted_18$2);
|
|
11597
|
+
])], 10, _hoisted_18$2);
|
|
11479
11598
|
}), 64))
|
|
11480
11599
|
]),
|
|
11481
11600
|
createElementVNode("div", null, [
|
|
@@ -11557,7 +11676,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11557
11676
|
trigger: "hover",
|
|
11558
11677
|
offset: { mainAxis: 22, crossAxis: 0 }
|
|
11559
11678
|
}, {
|
|
11560
|
-
default: withCtx(() => _cache[10] || (_cache[10] = [
|
|
11679
|
+
default: withCtx(() => [..._cache[10] || (_cache[10] = [
|
|
11561
11680
|
createElementVNode("div", { class: "home-nav-item" }, [
|
|
11562
11681
|
createElementVNode("img", {
|
|
11563
11682
|
class: "common-icon inline-block h-[20px] w-[20px]",
|
|
@@ -11570,9 +11689,8 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
11570
11689
|
alt: ""
|
|
11571
11690
|
})
|
|
11572
11691
|
], -1)
|
|
11573
|
-
])),
|
|
11574
|
-
_: 1
|
|
11575
|
-
__: [10]
|
|
11692
|
+
])]),
|
|
11693
|
+
_: 1
|
|
11576
11694
|
}, 8, ["content"])
|
|
11577
11695
|
])
|
|
11578
11696
|
]),
|
|
@@ -11807,11 +11925,11 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
11807
11925
|
});
|
|
11808
11926
|
return (_ctx, _cache) => {
|
|
11809
11927
|
const _component_router_link = resolveComponent("router-link");
|
|
11810
|
-
return
|
|
11928
|
+
return __props.to && !__props.disabled ? (openBlock(), createBlock(_component_router_link, {
|
|
11811
11929
|
key: 0,
|
|
11812
|
-
class: normalizeClass(["g-link g-link-router-link", { hoverUnderline:
|
|
11813
|
-
to:
|
|
11814
|
-
target:
|
|
11930
|
+
class: normalizeClass(["g-link g-link-router-link", { hoverUnderline: __props.underline }]),
|
|
11931
|
+
to: __props.to,
|
|
11932
|
+
target: __props.target
|
|
11815
11933
|
}, {
|
|
11816
11934
|
default: withCtx(() => [
|
|
11817
11935
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
@@ -11819,10 +11937,10 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
11819
11937
|
_: 3
|
|
11820
11938
|
}, 8, ["class", "to", "target"])) : (openBlock(), createElementBlock("a", {
|
|
11821
11939
|
key: 1,
|
|
11822
|
-
class: normalizeClass(["g-link g-link-a", { hoverUnderline:
|
|
11823
|
-
href:
|
|
11824
|
-
target:
|
|
11825
|
-
disabled:
|
|
11940
|
+
class: normalizeClass(["g-link g-link-a", { hoverUnderline: __props.underline, noPointer: __props.noPointer }]),
|
|
11941
|
+
href: __props.disabled || !targetHref.value ? defaultHref.value : targetHref.value,
|
|
11942
|
+
target: __props.target,
|
|
11943
|
+
disabled: __props.disabled || __props.noPointer
|
|
11826
11944
|
}, [
|
|
11827
11945
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
11828
11946
|
], 10, _hoisted_1$u));
|
|
@@ -12412,12 +12530,12 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
12412
12530
|
return openBlock(), createBlock(unref(Avatar), {
|
|
12413
12531
|
"img-src": imgSrc.value,
|
|
12414
12532
|
name: placeholderName.value,
|
|
12415
|
-
width:
|
|
12416
|
-
height:
|
|
12417
|
-
"is-round":
|
|
12418
|
-
class: normalizeClass({ "devui-avatar-square": !
|
|
12533
|
+
width: __props.width,
|
|
12534
|
+
height: __props.height,
|
|
12535
|
+
"is-round": __props.is_round,
|
|
12536
|
+
class: normalizeClass({ "devui-avatar-square": !__props.is_round, "gavatar-custom": !imgSrc.value }),
|
|
12419
12537
|
onLoadError,
|
|
12420
|
-
style: normalizeStyle({ minWidth:
|
|
12538
|
+
style: normalizeStyle({ minWidth: __props.width + "px" })
|
|
12421
12539
|
}, null, 8, ["img-src", "name", "width", "height", "is-round", "class", "style"]);
|
|
12422
12540
|
};
|
|
12423
12541
|
}
|
|
@@ -12456,15 +12574,15 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
12456
12574
|
return openBlock(), createBlock(unref(Tooltip), {
|
|
12457
12575
|
class: "flash-tag-message",
|
|
12458
12576
|
position: ["top", "bottom"],
|
|
12459
|
-
content:
|
|
12577
|
+
content: __props.message,
|
|
12460
12578
|
"overlay-class": "flash-tag-tooltip",
|
|
12461
|
-
disabled: unref(isPhone)() ||
|
|
12579
|
+
disabled: unref(isPhone)() || __props.disabled
|
|
12462
12580
|
}, {
|
|
12463
12581
|
default: withCtx(() => [
|
|
12464
12582
|
createElementVNode("span", mergeProps({
|
|
12465
|
-
class: ["gc-flash-tag cursor-default", { "gc-trusted-tag":
|
|
12583
|
+
class: ["gc-flash-tag cursor-default", { "gc-trusted-tag": __props.trusted, "cursor-pointer": __props.clickEnabled, "cursor-default": !__props.clickEnabled, "gc-icon-tag": __props.icon }]
|
|
12466
12584
|
}, _ctx.$attrs, { onClick: handleClick }), [
|
|
12467
|
-
|
|
12585
|
+
__props.icon ? (openBlock(), createElementBlock("img", {
|
|
12468
12586
|
key: 0,
|
|
12469
12587
|
class: "w-[16px] h-[16px]",
|
|
12470
12588
|
src: iconUrl.value
|
|
@@ -12545,7 +12663,7 @@ function getAugmentedNamespace(n) {
|
|
|
12545
12663
|
return a;
|
|
12546
12664
|
}
|
|
12547
12665
|
var relativeTime$1 = { exports: {} };
|
|
12548
|
-
(function(module, exports) {
|
|
12666
|
+
(function(module, exports$1) {
|
|
12549
12667
|
!function(r, e) {
|
|
12550
12668
|
module.exports = e();
|
|
12551
12669
|
}(commonjsGlobal, function() {
|
|
@@ -13116,7 +13234,7 @@ var locale = {
|
|
|
13116
13234
|
};
|
|
13117
13235
|
dayjs.locale(locale, null, true);
|
|
13118
13236
|
var timezone = { exports: {} };
|
|
13119
|
-
(function(module, exports) {
|
|
13237
|
+
(function(module, exports$1) {
|
|
13120
13238
|
!function(t2, e) {
|
|
13121
13239
|
module.exports = e();
|
|
13122
13240
|
}(commonjsGlobal, function() {
|
|
@@ -13179,7 +13297,7 @@ var timezone = { exports: {} };
|
|
|
13179
13297
|
var timezoneExports = timezone.exports;
|
|
13180
13298
|
const tz = /* @__PURE__ */ getDefaultExportFromCjs(timezoneExports);
|
|
13181
13299
|
var utc$1 = { exports: {} };
|
|
13182
|
-
(function(module, exports) {
|
|
13300
|
+
(function(module, exports$1) {
|
|
13183
13301
|
!function(t2, i) {
|
|
13184
13302
|
module.exports = i();
|
|
13185
13303
|
}(commonjsGlobal, function() {
|
|
@@ -13195,16 +13313,16 @@ var utc$1 = { exports: {} };
|
|
|
13195
13313
|
}, u.local = function() {
|
|
13196
13314
|
return n(this.toDate(), { locale: this.$L, utc: false });
|
|
13197
13315
|
};
|
|
13198
|
-
var
|
|
13316
|
+
var r = u.parse;
|
|
13199
13317
|
u.parse = function(t3) {
|
|
13200
|
-
t3.utc && (this.$u = true), this.$utils().u(t3.$offset) || (this.$offset = t3.$offset),
|
|
13318
|
+
t3.utc && (this.$u = true), this.$utils().u(t3.$offset) || (this.$offset = t3.$offset), r.call(this, t3);
|
|
13201
13319
|
};
|
|
13202
|
-
var
|
|
13320
|
+
var o = u.init;
|
|
13203
13321
|
u.init = function() {
|
|
13204
13322
|
if (this.$u) {
|
|
13205
13323
|
var t3 = this.$d;
|
|
13206
13324
|
this.$y = t3.getUTCFullYear(), this.$M = t3.getUTCMonth(), this.$D = t3.getUTCDate(), this.$W = t3.getUTCDay(), this.$H = t3.getUTCHours(), this.$m = t3.getUTCMinutes(), this.$s = t3.getUTCSeconds(), this.$ms = t3.getUTCMilliseconds();
|
|
13207
|
-
} else
|
|
13325
|
+
} else o.call(this);
|
|
13208
13326
|
};
|
|
13209
13327
|
var a = u.utcOffset;
|
|
13210
13328
|
u.utcOffset = function(s2, f2) {
|
|
@@ -13217,13 +13335,12 @@ var utc$1 = { exports: {} };
|
|
|
13217
13335
|
var f3 = ("" + s3[0]).match(e) || ["-", 0, 0], n3 = f3[0], u3 = 60 * +f3[1] + +f3[2];
|
|
13218
13336
|
return 0 === u3 ? 0 : "+" === n3 ? u3 : -u3;
|
|
13219
13337
|
}(s2), null === s2)) return this;
|
|
13220
|
-
var u2 = Math.abs(s2) <= 16 ? 60 * s2 : s2
|
|
13221
|
-
if (
|
|
13222
|
-
|
|
13223
|
-
|
|
13224
|
-
|
|
13225
|
-
|
|
13226
|
-
return o2;
|
|
13338
|
+
var u2 = Math.abs(s2) <= 16 ? 60 * s2 : s2;
|
|
13339
|
+
if (0 === u2) return this.utc(f2);
|
|
13340
|
+
var r2 = this.clone();
|
|
13341
|
+
if (f2) return r2.$offset = u2, r2.$u = false, r2;
|
|
13342
|
+
var o2 = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
|
|
13343
|
+
return (r2 = this.local().add(u2 + o2, t2)).$offset = u2, r2.$x.$localOffset = o2, r2;
|
|
13227
13344
|
};
|
|
13228
13345
|
var h2 = u.format;
|
|
13229
13346
|
u.format = function(t3) {
|
|
@@ -13453,7 +13570,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13453
13570
|
});
|
|
13454
13571
|
return (_ctx, _cache) => {
|
|
13455
13572
|
var _a, _b;
|
|
13456
|
-
return
|
|
13573
|
+
return __props.scene === unref(SceneValue).org && !__props.errorCode ? (openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
13457
13574
|
createVNode(GLink, {
|
|
13458
13575
|
to: { name: "homepage" },
|
|
13459
13576
|
class: "flex flex-1 items-center gap-[8px]"
|
|
@@ -13477,21 +13594,21 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13477
13594
|
createVNode(unref(Button), {
|
|
13478
13595
|
onClick: _cache[0] || (_cache[0] = ($event) => {
|
|
13479
13596
|
var _a2;
|
|
13480
|
-
return handleOrgFollow((_a2 =
|
|
13597
|
+
return handleOrgFollow((_a2 = __props.orgProps) == null ? void 0 : _a2.isOrgFollow);
|
|
13481
13598
|
}),
|
|
13482
13599
|
class: "org-layout-toolbar-follow"
|
|
13483
13600
|
}, {
|
|
13484
13601
|
default: withCtx(() => {
|
|
13485
13602
|
var _a2;
|
|
13486
13603
|
return [
|
|
13487
|
-
createElementVNode("span", _hoisted_3$g, toDisplayString$1(((_a2 =
|
|
13604
|
+
createElementVNode("span", _hoisted_3$g, toDisplayString$1(((_a2 = __props.orgProps) == null ? void 0 : _a2.isOrgFollow) ? unref(t2)("gitCodeLayout.home.alreadyFollowed") : unref(t2)("gitCodeLayout.home.focusOn")), 1)
|
|
13488
13605
|
];
|
|
13489
13606
|
}),
|
|
13490
13607
|
_: 1
|
|
13491
13608
|
})
|
|
13492
|
-
])) :
|
|
13609
|
+
])) : __props.scene === unref(SceneValue).repo && !__props.errorCode ? (openBlock(), createBlock(unref(Skeleton), {
|
|
13493
13610
|
key: 1,
|
|
13494
|
-
loading: (_a =
|
|
13611
|
+
loading: (_a = __props.repoProps) == null ? void 0 : _a.repoNameLoading,
|
|
13495
13612
|
rows: 1
|
|
13496
13613
|
}, {
|
|
13497
13614
|
placeholder: withCtx(() => [
|
|
@@ -13514,7 +13631,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13514
13631
|
default: withCtx(() => {
|
|
13515
13632
|
var _a3, _b3, _c2, _d2;
|
|
13516
13633
|
return [
|
|
13517
|
-
!((_a3 =
|
|
13634
|
+
!((_a3 = __props.repoProps) == null ? void 0 : _a3.isGhMirrors) ? (openBlock(), createBlock(_sfc_main$A, {
|
|
13518
13635
|
key: 0,
|
|
13519
13636
|
class: normalizeClass({ "g-border": isOrg.value }),
|
|
13520
13637
|
src: (_c2 = (_b3 = unref(repoInfo)) == null ? void 0 : _b3.namespace) == null ? void 0 : _c2.avatar_url,
|
|
@@ -13530,7 +13647,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13530
13647
|
_: 1
|
|
13531
13648
|
}, 8, ["href"]),
|
|
13532
13649
|
createElementVNode("div", _hoisted_8$5, [
|
|
13533
|
-
!((_b2 =
|
|
13650
|
+
!((_b2 = __props.repoProps) == null ? void 0 : _b2.isGhMirrors) ? (openBlock(), createElementBlock("div", {
|
|
13534
13651
|
key: 0,
|
|
13535
13652
|
ref_key: "breadcrumbRef",
|
|
13536
13653
|
ref: breadcrumbRef,
|
|
@@ -13565,7 +13682,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13565
13682
|
key: 1,
|
|
13566
13683
|
ref_key: "breadcrumbNextRef",
|
|
13567
13684
|
ref: breadcrumbNextRef,
|
|
13568
|
-
class: normalizeClass(["g-repo-layout-breadcrumb-next max-md:w-full flex items-end gap-[8px]", [((_c =
|
|
13685
|
+
class: normalizeClass(["g-repo-layout-breadcrumb-next max-md:w-full flex items-end gap-[8px]", [((_c = __props.repoProps) == null ? void 0 : _c.isGhMirrors) ? "max-w-full" : "max-w-[60%]"]])
|
|
13569
13686
|
}, [
|
|
13570
13687
|
createVNode(GLink, {
|
|
13571
13688
|
class: "linkTx",
|
|
@@ -13588,11 +13705,10 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13588
13705
|
type: "gstar",
|
|
13589
13706
|
message: `G-Star ${unref(t2)("gitCodeLayout.GStar.project.graduation")}`
|
|
13590
13707
|
}, {
|
|
13591
|
-
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
13708
|
+
default: withCtx(() => [..._cache[2] || (_cache[2] = [
|
|
13592
13709
|
createTextVNode("G-Star ", -1)
|
|
13593
|
-
])),
|
|
13594
|
-
_: 1
|
|
13595
|
-
__: [2]
|
|
13710
|
+
])]),
|
|
13711
|
+
_: 1
|
|
13596
13712
|
}, 8, ["message"])
|
|
13597
13713
|
])) : unref(isIncubationRepo)(unref(repoInfo).topic_names) ? (openBlock(), createElementBlock("div", _hoisted_13$1, [
|
|
13598
13714
|
createVNode(_sfc_main$z, {
|
|
@@ -13601,11 +13717,10 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13601
13717
|
type: "incubation",
|
|
13602
13718
|
message: `G-Star ${unref(t2)("gitCodeLayout.GStar.project.incubation")}`
|
|
13603
13719
|
}, {
|
|
13604
|
-
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
13720
|
+
default: withCtx(() => [..._cache[3] || (_cache[3] = [
|
|
13605
13721
|
createTextVNode(" G-Star ", -1)
|
|
13606
|
-
])),
|
|
13607
|
-
_: 1
|
|
13608
|
-
__: [3]
|
|
13722
|
+
])]),
|
|
13723
|
+
_: 1
|
|
13609
13724
|
}, 8, ["message"])
|
|
13610
13725
|
])) : createCommentVNode("", true),
|
|
13611
13726
|
unref(isTrustedRepo)(unref(repoInfo).topic_names) ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
|
|
@@ -13617,7 +13732,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13617
13732
|
href: "/trusted"
|
|
13618
13733
|
}, null, 8, ["message"])
|
|
13619
13734
|
])) : createCommentVNode("", true),
|
|
13620
|
-
((_d =
|
|
13735
|
+
((_d = __props.repoProps) == null ? void 0 : _d.isPrivate) ? (openBlock(), createElementBlock("div", _hoisted_15$1, [
|
|
13621
13736
|
createVNode(GIcon, {
|
|
13622
13737
|
size: "16px",
|
|
13623
13738
|
class: "ml-[4px]",
|
|
@@ -13636,7 +13751,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13636
13751
|
}, null, 8, ["name"]),
|
|
13637
13752
|
createElementVNode("span", _hoisted_16$1, toDisplayString$1((_f = topicTag.value) == null ? void 0 : _f.suffix), 1)
|
|
13638
13753
|
])) : createCommentVNode("", true),
|
|
13639
|
-
((_g =
|
|
13754
|
+
((_g = __props.repoProps) == null ? void 0 : _g.isGhMirrors) && showTimeTopic.value && !unref(isPhone)() ? (openBlock(), createElementBlock("div", _hoisted_17$1, [
|
|
13640
13755
|
createVNode(GIcon, {
|
|
13641
13756
|
name: "gt-line-time",
|
|
13642
13757
|
color: "var(--devui-shape-icon-fill)",
|
|
@@ -13650,7 +13765,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
13650
13765
|
];
|
|
13651
13766
|
}),
|
|
13652
13767
|
_: 1
|
|
13653
|
-
}, 8, ["loading"])) :
|
|
13768
|
+
}, 8, ["loading"])) : __props.scene === unref(SceneValue).user && ((_b = __props.userProps) == null ? void 0 : _b.isOtherUser) ? (openBlock(), createElementBlock("div", _hoisted_20$1, [
|
|
13654
13769
|
createVNode(GLink, {
|
|
13655
13770
|
to: { name: "homepage" },
|
|
13656
13771
|
class: "flex flex-1 items-center gap-[8px]"
|
|
@@ -13800,7 +13915,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
13800
13915
|
onClick: handleClick
|
|
13801
13916
|
}, [
|
|
13802
13917
|
createElementVNode("img", {
|
|
13803
|
-
src:
|
|
13918
|
+
src: __props.config.logo_url,
|
|
13804
13919
|
alt: "claim power"
|
|
13805
13920
|
}, null, 8, _hoisted_1$q)
|
|
13806
13921
|
])) : createCommentVNode("", true);
|
|
@@ -13854,10 +13969,10 @@ var hasRequiredCore;
|
|
|
13854
13969
|
function requireCore() {
|
|
13855
13970
|
if (hasRequiredCore) return core.exports;
|
|
13856
13971
|
hasRequiredCore = 1;
|
|
13857
|
-
(function(module, exports) {
|
|
13858
|
-
(function(root,
|
|
13972
|
+
(function(module, exports$1) {
|
|
13973
|
+
(function(root, factory2) {
|
|
13859
13974
|
{
|
|
13860
|
-
module.exports =
|
|
13975
|
+
module.exports = factory2();
|
|
13861
13976
|
}
|
|
13862
13977
|
})(commonjsGlobal, function() {
|
|
13863
13978
|
var CryptoJS = CryptoJS || function(Math2, undefined$1) {
|
|
@@ -14461,10 +14576,10 @@ var hasRequiredEncBase64;
|
|
|
14461
14576
|
function requireEncBase64() {
|
|
14462
14577
|
if (hasRequiredEncBase64) return encBase64.exports;
|
|
14463
14578
|
hasRequiredEncBase64 = 1;
|
|
14464
|
-
(function(module, exports) {
|
|
14465
|
-
(function(root,
|
|
14579
|
+
(function(module, exports$1) {
|
|
14580
|
+
(function(root, factory2) {
|
|
14466
14581
|
{
|
|
14467
|
-
module.exports =
|
|
14582
|
+
module.exports = factory2(requireCore());
|
|
14468
14583
|
}
|
|
14469
14584
|
})(commonjsGlobal, function(CryptoJS) {
|
|
14470
14585
|
(function() {
|
|
@@ -14568,10 +14683,10 @@ var hasRequiredMd5;
|
|
|
14568
14683
|
function requireMd5() {
|
|
14569
14684
|
if (hasRequiredMd5) return md5.exports;
|
|
14570
14685
|
hasRequiredMd5 = 1;
|
|
14571
|
-
(function(module, exports) {
|
|
14572
|
-
(function(root,
|
|
14686
|
+
(function(module, exports$1) {
|
|
14687
|
+
(function(root, factory2) {
|
|
14573
14688
|
{
|
|
14574
|
-
module.exports =
|
|
14689
|
+
module.exports = factory2(requireCore());
|
|
14575
14690
|
}
|
|
14576
14691
|
})(commonjsGlobal, function(CryptoJS) {
|
|
14577
14692
|
(function(Math2) {
|
|
@@ -14747,10 +14862,10 @@ var hasRequiredSha1;
|
|
|
14747
14862
|
function requireSha1() {
|
|
14748
14863
|
if (hasRequiredSha1) return sha1.exports;
|
|
14749
14864
|
hasRequiredSha1 = 1;
|
|
14750
|
-
(function(module, exports) {
|
|
14751
|
-
(function(root,
|
|
14865
|
+
(function(module, exports$1) {
|
|
14866
|
+
(function(root, factory2) {
|
|
14752
14867
|
{
|
|
14753
|
-
module.exports =
|
|
14868
|
+
module.exports = factory2(requireCore());
|
|
14754
14869
|
}
|
|
14755
14870
|
})(commonjsGlobal, function(CryptoJS) {
|
|
14756
14871
|
(function() {
|
|
@@ -14837,10 +14952,10 @@ var hasRequiredHmac;
|
|
|
14837
14952
|
function requireHmac() {
|
|
14838
14953
|
if (hasRequiredHmac) return hmac.exports;
|
|
14839
14954
|
hasRequiredHmac = 1;
|
|
14840
|
-
(function(module, exports) {
|
|
14841
|
-
(function(root,
|
|
14955
|
+
(function(module, exports$1) {
|
|
14956
|
+
(function(root, factory2) {
|
|
14842
14957
|
{
|
|
14843
|
-
module.exports =
|
|
14958
|
+
module.exports = factory2(requireCore());
|
|
14844
14959
|
}
|
|
14845
14960
|
})(commonjsGlobal, function(CryptoJS) {
|
|
14846
14961
|
(function() {
|
|
@@ -14942,10 +15057,10 @@ var hasRequiredEvpkdf;
|
|
|
14942
15057
|
function requireEvpkdf() {
|
|
14943
15058
|
if (hasRequiredEvpkdf) return evpkdf.exports;
|
|
14944
15059
|
hasRequiredEvpkdf = 1;
|
|
14945
|
-
(function(module, exports) {
|
|
14946
|
-
(function(root,
|
|
15060
|
+
(function(module, exports$1) {
|
|
15061
|
+
(function(root, factory2, undef) {
|
|
14947
15062
|
{
|
|
14948
|
-
module.exports =
|
|
15063
|
+
module.exports = factory2(requireCore(), requireSha1(), requireHmac());
|
|
14949
15064
|
}
|
|
14950
15065
|
})(commonjsGlobal, function(CryptoJS) {
|
|
14951
15066
|
(function() {
|
|
@@ -15032,10 +15147,10 @@ var hasRequiredCipherCore;
|
|
|
15032
15147
|
function requireCipherCore() {
|
|
15033
15148
|
if (hasRequiredCipherCore) return cipherCore.exports;
|
|
15034
15149
|
hasRequiredCipherCore = 1;
|
|
15035
|
-
(function(module, exports) {
|
|
15036
|
-
(function(root,
|
|
15150
|
+
(function(module, exports$1) {
|
|
15151
|
+
(function(root, factory2, undef) {
|
|
15037
15152
|
{
|
|
15038
|
-
module.exports =
|
|
15153
|
+
module.exports = factory2(requireCore(), requireEvpkdf());
|
|
15039
15154
|
}
|
|
15040
15155
|
})(commonjsGlobal, function(CryptoJS) {
|
|
15041
15156
|
CryptoJS.lib.Cipher || function(undefined$1) {
|
|
@@ -15670,10 +15785,10 @@ function requireCipherCore() {
|
|
|
15670
15785
|
})(cipherCore);
|
|
15671
15786
|
return cipherCore.exports;
|
|
15672
15787
|
}
|
|
15673
|
-
(function(module, exports) {
|
|
15674
|
-
(function(root,
|
|
15788
|
+
(function(module, exports$1) {
|
|
15789
|
+
(function(root, factory2, undef) {
|
|
15675
15790
|
{
|
|
15676
|
-
module.exports =
|
|
15791
|
+
module.exports = factory2(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
15677
15792
|
}
|
|
15678
15793
|
})(commonjsGlobal, function(CryptoJS) {
|
|
15679
15794
|
(function() {
|
|
@@ -15819,10 +15934,10 @@ function requireCipherCore() {
|
|
|
15819
15934
|
var aesExports = aes.exports;
|
|
15820
15935
|
const AES = /* @__PURE__ */ getDefaultExportFromCjs(aesExports);
|
|
15821
15936
|
var padPkcs7 = { exports: {} };
|
|
15822
|
-
(function(module, exports) {
|
|
15823
|
-
(function(root,
|
|
15937
|
+
(function(module, exports$1) {
|
|
15938
|
+
(function(root, factory2, undef) {
|
|
15824
15939
|
{
|
|
15825
|
-
module.exports =
|
|
15940
|
+
module.exports = factory2(requireCore(), requireCipherCore());
|
|
15826
15941
|
}
|
|
15827
15942
|
})(commonjsGlobal, function(CryptoJS) {
|
|
15828
15943
|
return CryptoJS.pad.Pkcs7;
|
|
@@ -15831,10 +15946,10 @@ var padPkcs7 = { exports: {} };
|
|
|
15831
15946
|
var padPkcs7Exports = padPkcs7.exports;
|
|
15832
15947
|
const Pkcs7 = /* @__PURE__ */ getDefaultExportFromCjs(padPkcs7Exports);
|
|
15833
15948
|
var encUtf8 = { exports: {} };
|
|
15834
|
-
(function(module, exports) {
|
|
15835
|
-
(function(root,
|
|
15949
|
+
(function(module, exports$1) {
|
|
15950
|
+
(function(root, factory2) {
|
|
15836
15951
|
{
|
|
15837
|
-
module.exports =
|
|
15952
|
+
module.exports = factory2(requireCore());
|
|
15838
15953
|
}
|
|
15839
15954
|
})(commonjsGlobal, function(CryptoJS) {
|
|
15840
15955
|
return CryptoJS.enc.Utf8;
|
|
@@ -16316,7 +16431,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
16316
16431
|
return (_ctx, _cache) => {
|
|
16317
16432
|
return openBlock(), createBlock(GLink, {
|
|
16318
16433
|
variant: "text",
|
|
16319
|
-
class: normalizeClass(["g-toolbar-docs",
|
|
16434
|
+
class: normalizeClass(["g-toolbar-docs", __props.whiteColor ? "white" : "black"]),
|
|
16320
16435
|
href: "https://docs.gitcode.com/docs/help/home/ai-community/",
|
|
16321
16436
|
target: "_blank"
|
|
16322
16437
|
}, {
|
|
@@ -16801,9 +16916,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
16801
16916
|
name: accountInfo.value.nickname,
|
|
16802
16917
|
src: accountInfo.value.avatar
|
|
16803
16918
|
}, null, 8, ["name", "src"]),
|
|
16804
|
-
accountInfo.value.need_tips && !haveVisited.value ? (openBlock(), createElementBlock("div", _hoisted_2$g, _cache[4] || (_cache[4] = [
|
|
16919
|
+
accountInfo.value.need_tips && !haveVisited.value ? (openBlock(), createElementBlock("div", _hoisted_2$g, [..._cache[4] || (_cache[4] = [
|
|
16805
16920
|
createElementVNode("div", null, null, -1)
|
|
16806
|
-
]))) : createCommentVNode("", true)
|
|
16921
|
+
])])) : createCommentVNode("", true)
|
|
16807
16922
|
])
|
|
16808
16923
|
])) : (openBlock(), createBlock(unref(Dropdown), {
|
|
16809
16924
|
key: 1,
|
|
@@ -16831,9 +16946,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
16831
16946
|
name: accountInfo.value.nickname,
|
|
16832
16947
|
src: accountInfo.value.avatar
|
|
16833
16948
|
}, null, 8, ["name", "src"]),
|
|
16834
|
-
accountInfo.value.need_tips && !haveVisited.value ? (openBlock(), createElementBlock("div", _hoisted_4$a, _cache[5] || (_cache[5] = [
|
|
16949
|
+
accountInfo.value.need_tips && !haveVisited.value ? (openBlock(), createElementBlock("div", _hoisted_4$a, [..._cache[5] || (_cache[5] = [
|
|
16835
16950
|
createElementVNode("div", null, null, -1)
|
|
16836
|
-
]))) : createCommentVNode("", true)
|
|
16951
|
+
])])) : createCommentVNode("", true)
|
|
16837
16952
|
])
|
|
16838
16953
|
]),
|
|
16839
16954
|
_: 1
|
|
@@ -16980,13 +17095,13 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
16980
17095
|
var _a;
|
|
16981
17096
|
const layoutConfig2 = useLayoutConfig();
|
|
16982
17097
|
const { t: $t } = i18n.global;
|
|
16983
|
-
const ProjectSearch = defineAsyncComponent(() => import("./ProjectSearch-
|
|
16984
|
-
const UserSearch = defineAsyncComponent(() => import("./UserSearch-
|
|
16985
|
-
const GloabarSearch = defineAsyncComponent(() => import("./GloabarSearch-
|
|
16986
|
-
const SearchHistoryList = defineAsyncComponent(() => import("./SearchHistoryList-
|
|
16987
|
-
const SearchScopeList = defineAsyncComponent(() => import("./SearchScopeList-
|
|
16988
|
-
const SearchPrefixTag = defineAsyncComponent(() => import("./SearchPrefixTag-
|
|
16989
|
-
const SearchRecommed = defineAsyncComponent(() => import("./SearchRecommed-
|
|
17098
|
+
const ProjectSearch = defineAsyncComponent(() => import("./ProjectSearch-BiVlYUvU.js"));
|
|
17099
|
+
const UserSearch = defineAsyncComponent(() => import("./UserSearch-C93v1HCj.js"));
|
|
17100
|
+
const GloabarSearch = defineAsyncComponent(() => import("./GloabarSearch-CYbxO53m.js"));
|
|
17101
|
+
const SearchHistoryList = defineAsyncComponent(() => import("./SearchHistoryList-BDzp2qOk.js"));
|
|
17102
|
+
const SearchScopeList = defineAsyncComponent(() => import("./SearchScopeList-DZK2-jED.js"));
|
|
17103
|
+
const SearchPrefixTag = defineAsyncComponent(() => import("./SearchPrefixTag-Dzpz56Q7.js"));
|
|
17104
|
+
const SearchRecommed = defineAsyncComponent(() => import("./SearchRecommed-XVMGN5hX.js"));
|
|
16990
17105
|
const props = __props;
|
|
16991
17106
|
const repoInfo = inject("repoInfo");
|
|
16992
17107
|
const orgInfo = inject("orgInfo");
|
|
@@ -17442,9 +17557,9 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
17442
17557
|
});
|
|
17443
17558
|
return (_ctx, _cache) => {
|
|
17444
17559
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
17445
|
-
!
|
|
17560
|
+
!__props.inAIHub ? (openBlock(), createElementBlock("div", {
|
|
17446
17561
|
key: 0,
|
|
17447
|
-
class: normalizeClass([isFocus.value ? "focusSearch" : { "left-search": true }, Boolean(
|
|
17562
|
+
class: normalizeClass([isFocus.value ? "focusSearch" : { "left-search": true }, Boolean(__props.isShowStickyNotice) ? "focusSearch-sticky-notice" : ""]),
|
|
17448
17563
|
onClick: _cache[6] || (_cache[6] = withModifiers(() => {
|
|
17449
17564
|
}, ["stop"]))
|
|
17450
17565
|
}, [
|
|
@@ -17457,7 +17572,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
17457
17572
|
createVNode(unref(Dropdown), {
|
|
17458
17573
|
align: "start",
|
|
17459
17574
|
position: ["bottom", "bottom-start"],
|
|
17460
|
-
"overlay-class":
|
|
17575
|
+
"overlay-class": __props.isShowStickyNotice ? "history-box-sticky-notice history-box" : "history-box",
|
|
17461
17576
|
trigger: "manually",
|
|
17462
17577
|
visible: dropDownVisible.value,
|
|
17463
17578
|
"close-scope": "none",
|
|
@@ -17612,7 +17727,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
17612
17727
|
_: 3
|
|
17613
17728
|
}, 8, ["overlay-class", "visible"])
|
|
17614
17729
|
], 2)) : createCommentVNode("", true),
|
|
17615
|
-
|
|
17730
|
+
__props.inAIHub ? (openBlock(), createElementBlock("div", _hoisted_6$5, [
|
|
17616
17731
|
createVNode(unref(Input), {
|
|
17617
17732
|
placeholder: unref($t)("gitCodeLayout.home.searchPlaceholder"),
|
|
17618
17733
|
onKeydown: withKeys(searchResult, ["enter"]),
|
|
@@ -17640,7 +17755,7 @@ const autoAvokeLogin = ({ isLogin, loginFunc, openHarmonyGuide, loginSuccess, lo
|
|
|
17640
17755
|
loginFunc({ type: "login", triggerType: "", loginTriggerSource: "router_login_auth", ...loginFuncOpts }, loginSuccess, openHarmonyGuide);
|
|
17641
17756
|
}
|
|
17642
17757
|
};
|
|
17643
|
-
const NoticeModal = defineAsyncComponent(() => import("./notice-
|
|
17758
|
+
const NoticeModal = defineAsyncComponent(() => import("./notice-DGmmTvcV.js"));
|
|
17644
17759
|
function clearNotice() {
|
|
17645
17760
|
if (localStorage$2.getItem("validator_email")) {
|
|
17646
17761
|
localStorage$2.removeItem("validator_email");
|
|
@@ -18044,7 +18159,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18044
18159
|
style: normalizeStyle({ height: `${unref(height)}px` })
|
|
18045
18160
|
}, [
|
|
18046
18161
|
createElementVNode("div", {
|
|
18047
|
-
class: normalizeClass(["g-header allow-click-stop fixed z-20 bg-[var(--theme-default-bg)]", [inAIHub.value ? "ai-hub border-b border-gray-100 " : "", isHome.value && showHeaderShadow.value ? "head-shadow" : "",
|
|
18162
|
+
class: normalizeClass(["g-header allow-click-stop fixed z-20 bg-[var(--theme-default-bg)]", [inAIHub.value ? "ai-hub border-b border-gray-100 " : "", isHome.value && showHeaderShadow.value ? "head-shadow" : "", __props.headerBorder ? "oldBorder" : "", headerClassName.value, isIndexHead.value && !showHeaderShadow.value ? "bg-transparent" : ""]]),
|
|
18048
18163
|
ref_key: "headerRef",
|
|
18049
18164
|
ref: headerRef,
|
|
18050
18165
|
style: normalizeStyle(detailBgStyle.value)
|
|
@@ -18081,12 +18196,12 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18081
18196
|
class: "cursor-pointer hover:!text-[var(--theme-stress-text)] g-toolbar-left-asideicon",
|
|
18082
18197
|
color: "var(--theme-aide-text)"
|
|
18083
18198
|
})) : createCommentVNode("", true),
|
|
18084
|
-
showNameAndIcon.value &&
|
|
18199
|
+
showNameAndIcon.value && __props.independence || inAIHub.value ? (openBlock(), createBlock(GLink, {
|
|
18085
18200
|
key: 1,
|
|
18086
18201
|
class: normalizeClass(["g-toolbar-left-logo", [unref(currentTheme), inAIHub.value ? "ai-logo" : ""]]),
|
|
18087
18202
|
href: inAIHub.value ? `${unref(layoutConfig2).VITE_AI_HOST}` : `${unref(layoutConfig2).VITE_HOST}?p=seo`
|
|
18088
18203
|
}, null, 8, ["class", "href"])) : createCommentVNode("", true),
|
|
18089
|
-
showNameAndIcon.value && !
|
|
18204
|
+
showNameAndIcon.value && !__props.independence ? (openBlock(), createBlock(GLink, {
|
|
18090
18205
|
key: 2,
|
|
18091
18206
|
class: normalizeClass(["g-toolbar-left-logo", [unref(currentTheme), inAIHub.value ? "ai-logo" : ""]]),
|
|
18092
18207
|
to: { name: "home" }
|
|
@@ -18098,12 +18213,12 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18098
18213
|
}, [
|
|
18099
18214
|
_ctx.$slots.headerCustom ? renderSlot(_ctx.$slots, "headerCustom", { key: 0 }, void 0, true) : isModuleVisible(unref(HeaderDisplayItem).CUSTOM_CONTENT) && !showNameAndIcon.value ? (openBlock(), createBlock(HeaderCustom, {
|
|
18100
18215
|
key: 1,
|
|
18101
|
-
scene:
|
|
18102
|
-
isLogin:
|
|
18103
|
-
errorCode: (_a2 =
|
|
18104
|
-
orgProps: (_b =
|
|
18105
|
-
repoProps: (_c =
|
|
18106
|
-
userProps: (_d =
|
|
18216
|
+
scene: __props.sceneValue,
|
|
18217
|
+
isLogin: __props.isLogin,
|
|
18218
|
+
errorCode: (_a2 = __props.headerCustomProps) == null ? void 0 : _a2.errorCode,
|
|
18219
|
+
orgProps: (_b = __props.headerCustomProps) == null ? void 0 : _b.orgProps,
|
|
18220
|
+
repoProps: (_c = __props.headerCustomProps) == null ? void 0 : _c.repoProps,
|
|
18221
|
+
userProps: (_d = __props.headerCustomProps) == null ? void 0 : _d.userProps,
|
|
18107
18222
|
onFollowDevCommunity: _cache[1] || (_cache[1] = ($event) => emit("followDevCommunity", $event)),
|
|
18108
18223
|
onFollowUser: _cache[2] || (_cache[2] = ($event) => emit("followUser"))
|
|
18109
18224
|
}, {
|
|
@@ -18122,7 +18237,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18122
18237
|
(openBlock(), createBlock(Search, {
|
|
18123
18238
|
inAIHub: inAIHub.value,
|
|
18124
18239
|
key: _ctx.$route.fullPath,
|
|
18125
|
-
sceneValue:
|
|
18240
|
+
sceneValue: __props.sceneValue,
|
|
18126
18241
|
isShowStickyNotice: isShowStickyNoticeByClose.value
|
|
18127
18242
|
}, {
|
|
18128
18243
|
searchRecommend: withCtx(() => [
|
|
@@ -18142,7 +18257,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18142
18257
|
createVNode(ClaimPower, { config: claimPowerConfig.value }, null, 8, ["config"]),
|
|
18143
18258
|
isModuleVisible(unref(HeaderDisplayItem).DEEPSEEK_BUTTON) ? (openBlock(), createBlock(ChatBot, { key: 0 })) : createCommentVNode("", true)
|
|
18144
18259
|
]),
|
|
18145
|
-
!
|
|
18260
|
+
!__props.isLogin ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
18146
18261
|
isModuleVisible(unref(HeaderDisplayItem).LOGIN_AND_AVATAR) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
18147
18262
|
unref(isMobile) ? (openBlock(), createElementBlock("section", {
|
|
18148
18263
|
key: 0,
|
|
@@ -18184,10 +18299,10 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
18184
18299
|
isModuleVisible(unref(HeaderDisplayItem).LOGIN_AND_AVATAR) ? (openBlock(), createBlock(UserAvatar, {
|
|
18185
18300
|
key: 3,
|
|
18186
18301
|
isChatBot: isChatBot.value,
|
|
18187
|
-
loginOutFinish:
|
|
18302
|
+
loginOutFinish: __props.loginOutFinish,
|
|
18188
18303
|
inAIHub: inAIHub.value,
|
|
18189
|
-
independence:
|
|
18190
|
-
userMenus:
|
|
18304
|
+
independence: __props.independence,
|
|
18305
|
+
userMenus: __props.userMenus
|
|
18191
18306
|
}, null, 8, ["isChatBot", "loginOutFinish", "inAIHub", "independence", "userMenus"])) : createCommentVNode("", true)
|
|
18192
18307
|
], 64))
|
|
18193
18308
|
], 2)
|
|
@@ -18394,9 +18509,9 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
18394
18509
|
const layoutConfig2 = useLayoutConfig();
|
|
18395
18510
|
const { t: t2 } = i18n.global;
|
|
18396
18511
|
const route = useRoute();
|
|
18397
|
-
const MenuItem = defineAsyncComponent(() => import("./MenuItem-
|
|
18398
|
-
const ProjectMenuListV2 = defineAsyncComponent(() => import("./ProjectMenuListV2-
|
|
18399
|
-
const ProjectMenuList = defineAsyncComponent(() => import("./ProjectMenuList-
|
|
18512
|
+
const MenuItem = defineAsyncComponent(() => import("./MenuItem-BzfsHOS8.js"));
|
|
18513
|
+
const ProjectMenuListV2 = defineAsyncComponent(() => import("./ProjectMenuListV2-Cuer5wbZ.js"));
|
|
18514
|
+
const ProjectMenuList = defineAsyncComponent(() => import("./ProjectMenuList-DNJhKWy9.js"));
|
|
18400
18515
|
const props = __props;
|
|
18401
18516
|
console.log("slotKeys", props.slotKeys);
|
|
18402
18517
|
console.log("props", props);
|
|
@@ -18563,9 +18678,9 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
18563
18678
|
(openBlock(true), createElementBlock(Fragment, null, renderList(filterList.value, (item) => {
|
|
18564
18679
|
return openBlock(), createBlock(resolveDynamicComponent(renderComponent(item)), mergeProps({
|
|
18565
18680
|
key: item.id,
|
|
18566
|
-
isLogin:
|
|
18681
|
+
isLogin: __props.isLogin,
|
|
18567
18682
|
item,
|
|
18568
|
-
slotKeys:
|
|
18683
|
+
slotKeys: __props.slotKeys
|
|
18569
18684
|
}, { ref_for: true }, getProps(item)), createSlots({ _: 2 }, [
|
|
18570
18685
|
renderList(mainSiteSlotKeys.value, (key) => {
|
|
18571
18686
|
return {
|
|
@@ -18587,9 +18702,9 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
18587
18702
|
}, {
|
|
18588
18703
|
default: withCtx(() => [
|
|
18589
18704
|
(openBlock(), createBlock(resolveDynamicComponent(LayoutSlotComponent(key)), mergeProps({ ref_for: true }, getProps(item), {
|
|
18590
|
-
slotKeys:
|
|
18705
|
+
slotKeys: __props.slotKeys,
|
|
18591
18706
|
item,
|
|
18592
|
-
isLogin:
|
|
18707
|
+
isLogin: __props.isLogin
|
|
18593
18708
|
}), null, 16, ["slotKeys", "item", "isLogin"]))
|
|
18594
18709
|
]),
|
|
18595
18710
|
_: 2
|
|
@@ -18609,7 +18724,8 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
18609
18724
|
});
|
|
18610
18725
|
const Area = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-vue-layout-gitcode"]]);
|
|
18611
18726
|
function useCookie(key, defaultValue, options = COOKIE_OPTIONS) {
|
|
18612
|
-
const
|
|
18727
|
+
const allCookies = api.get();
|
|
18728
|
+
const storedValue = allCookies[key] || localStorage.getItem(key);
|
|
18613
18729
|
const initialValue = storedValue || defaultValue;
|
|
18614
18730
|
const value = ref(initialValue);
|
|
18615
18731
|
if (!storedValue) {
|
|
@@ -18620,6 +18736,7 @@ function useCookie(key, defaultValue, options = COOKIE_OPTIONS) {
|
|
|
18620
18736
|
(newValue) => {
|
|
18621
18737
|
if (newValue) {
|
|
18622
18738
|
api.set(key, newValue, options);
|
|
18739
|
+
localStorage.setItem(key, newValue);
|
|
18623
18740
|
} else {
|
|
18624
18741
|
api.remove(key, { domain: COOKIE_DOMAIN });
|
|
18625
18742
|
}
|
|
@@ -18747,17 +18864,17 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
18747
18864
|
withDirectives(createElementVNode("div", _hoisted_2$a, [
|
|
18748
18865
|
createVNode(_sfc_main$k)
|
|
18749
18866
|
], 512), [
|
|
18750
|
-
[vShow,
|
|
18867
|
+
[vShow, __props.showThemeSetting]
|
|
18751
18868
|
]),
|
|
18752
18869
|
withDirectives(createElementVNode("div", _hoisted_3$8, [
|
|
18753
18870
|
createVNode(_sfc_main$l)
|
|
18754
18871
|
], 512), [
|
|
18755
|
-
[vShow,
|
|
18872
|
+
[vShow, __props.showLangSetting]
|
|
18756
18873
|
])
|
|
18757
18874
|
]),
|
|
18758
18875
|
default: withCtx(() => [
|
|
18759
18876
|
createElementVNode("div", {
|
|
18760
|
-
class: normalizeClass(["aside-footer-tools-item", { "aside-footer-tools-item-little":
|
|
18877
|
+
class: normalizeClass(["aside-footer-tools-item", { "aside-footer-tools-item-little": __props.asideSetShowLittle }])
|
|
18761
18878
|
}, [
|
|
18762
18879
|
createVNode(GIcon, {
|
|
18763
18880
|
name: "gt-line-setting",
|
|
@@ -19056,11 +19173,11 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
19056
19173
|
});
|
|
19057
19174
|
return (_ctx, _cache) => {
|
|
19058
19175
|
return openBlock(), createBlock(unref(Aside), {
|
|
19059
|
-
class: normalizeClass(["config-aside-content", { "side-bar-content-shot":
|
|
19176
|
+
class: normalizeClass(["config-aside-content", { "side-bar-content-shot": __props.asideSetShowLittle }])
|
|
19060
19177
|
}, {
|
|
19061
19178
|
default: withCtx(() => [
|
|
19062
19179
|
createElementVNode("div", {
|
|
19063
|
-
class: normalizeClass(["config-aside__content", { "side-bar-content-shot":
|
|
19180
|
+
class: normalizeClass(["config-aside__content", { "side-bar-content-shot": __props.asideSetShowLittle, "shot-isCh": !unref(isEn) }])
|
|
19064
19181
|
}, [
|
|
19065
19182
|
withDirectives((openBlock(), createElementBlock("div", _hoisted_1$e, [
|
|
19066
19183
|
createElementVNode("div", {
|
|
@@ -19080,10 +19197,10 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
19080
19197
|
}, [
|
|
19081
19198
|
createVNode(Area, {
|
|
19082
19199
|
list: getAreaItem(item),
|
|
19083
|
-
isLogin:
|
|
19200
|
+
isLogin: __props.isLogin,
|
|
19084
19201
|
slotKeys: layoutSlotKeys.value,
|
|
19085
|
-
sceneValue:
|
|
19086
|
-
asideSetShowLittle:
|
|
19202
|
+
sceneValue: __props.sceneValue,
|
|
19203
|
+
asideSetShowLittle: __props.asideSetShowLittle
|
|
19087
19204
|
}, createSlots({ _: 2 }, [
|
|
19088
19205
|
renderList(layoutSlotKeys.value, (key) => {
|
|
19089
19206
|
return {
|
|
@@ -19094,24 +19211,24 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
19094
19211
|
};
|
|
19095
19212
|
})
|
|
19096
19213
|
]), 1032, ["list", "isLogin", "slotKeys", "sceneValue", "asideSetShowLittle"]),
|
|
19097
|
-
!
|
|
19214
|
+
!__props.asideSetShowLittle && index2 !== displayArea.value.length - 1 ? (openBlock(), createElementBlock("hr", _hoisted_4$6)) : createCommentVNode("", true)
|
|
19098
19215
|
], 64);
|
|
19099
19216
|
}), 128)),
|
|
19100
|
-
!
|
|
19217
|
+
!__props.asideSetShowLittle && isModuleVisible(unref(AsideDisplayItem).LINK) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
19101
19218
|
_cache[0] || (_cache[0] = createElementVNode("hr", { class: "line mt-[16px] mb-[16px]" }, null, -1)),
|
|
19102
19219
|
createVNode(SubMenuList)
|
|
19103
19220
|
], 64)) : createCommentVNode("", true)
|
|
19104
19221
|
])),
|
|
19105
|
-
!
|
|
19222
|
+
!__props.asideSetShowLittle && isModuleVisible(unref(AsideDisplayItem).SITE_INFO) ? (openBlock(), createBlock(ContactInfo, { key: 2 })) : createCommentVNode("", true)
|
|
19106
19223
|
], 34),
|
|
19107
19224
|
showPreferencesSetting.value ? (openBlock(), createElementBlock("div", {
|
|
19108
19225
|
key: 0,
|
|
19109
|
-
class: normalizeClass(["aside-footer-tools", { "aside-footer-tools-little":
|
|
19226
|
+
class: normalizeClass(["aside-footer-tools", { "aside-footer-tools-little": __props.asideSetShowLittle }])
|
|
19110
19227
|
}, [
|
|
19111
19228
|
createVNode(_sfc_main$j, {
|
|
19112
|
-
"show-lang-setting":
|
|
19113
|
-
"show-theme-setting":
|
|
19114
|
-
asideSetShowLittle:
|
|
19229
|
+
"show-lang-setting": __props.showLangSetting,
|
|
19230
|
+
"show-theme-setting": __props.showThemeSetting,
|
|
19231
|
+
asideSetShowLittle: __props.asideSetShowLittle
|
|
19115
19232
|
}, null, 8, ["show-lang-setting", "show-theme-setting", "asideSetShowLittle"])
|
|
19116
19233
|
], 2)) : createCommentVNode("", true)
|
|
19117
19234
|
])), [
|
|
@@ -19243,19 +19360,19 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
19243
19360
|
key: 0,
|
|
19244
19361
|
class: normalizeClass(["left-side-bar", { oldWhite: asideSetShowLittleMode.value }]),
|
|
19245
19362
|
style: normalizeStyle({ width: mainMarginLeftWidth.value + "px" }),
|
|
19246
|
-
sceneValue:
|
|
19363
|
+
sceneValue: __props.sceneValue,
|
|
19247
19364
|
asideDefaultWidth: mainMarginLeftWidth.value,
|
|
19248
19365
|
asideSetShowLittle: asideSetShowLittleMode.value,
|
|
19249
|
-
isLogin:
|
|
19250
|
-
showPreferencesSetting:
|
|
19251
|
-
showThemeSetting:
|
|
19252
|
-
showLangSetting:
|
|
19253
|
-
independence:
|
|
19254
|
-
slotKeys:
|
|
19255
|
-
collapseMode:
|
|
19256
|
-
disableFlatMode:
|
|
19366
|
+
isLogin: __props.isLogin,
|
|
19367
|
+
showPreferencesSetting: __props.showPreferencesSetting,
|
|
19368
|
+
showThemeSetting: __props.showThemeSetting,
|
|
19369
|
+
showLangSetting: __props.showLangSetting,
|
|
19370
|
+
independence: __props.independence,
|
|
19371
|
+
slotKeys: __props.slotKeys,
|
|
19372
|
+
collapseMode: __props.collapseMode,
|
|
19373
|
+
disableFlatMode: __props.disableFlatMode
|
|
19257
19374
|
}, createSlots({ _: 2 }, [
|
|
19258
|
-
renderList(
|
|
19375
|
+
renderList(__props.slotKeys, (key) => {
|
|
19259
19376
|
return {
|
|
19260
19377
|
name: key,
|
|
19261
19378
|
fn: withCtx(() => [
|
|
@@ -19276,8 +19393,8 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
19276
19393
|
createElementVNode("div", _hoisted_1$d, [
|
|
19277
19394
|
createVNode(GLink, {
|
|
19278
19395
|
class: normalizeClass(["g-toolbar-left-logo", unref(currentTheme)]),
|
|
19279
|
-
to:
|
|
19280
|
-
href:
|
|
19396
|
+
to: __props.independence ? "" : { name: "home" },
|
|
19397
|
+
href: __props.independence ? unref(layoutConfig2).VITE_HOST : ""
|
|
19281
19398
|
}, null, 8, ["class", "to", "href"]),
|
|
19282
19399
|
createVNode(unref(Button), {
|
|
19283
19400
|
class: "cursor-pointer draw-side-bar-close",
|
|
@@ -19287,14 +19404,14 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
19287
19404
|
})
|
|
19288
19405
|
]),
|
|
19289
19406
|
createVNode(ConfigAideContent, mergeProps(props, {
|
|
19290
|
-
sceneValue:
|
|
19407
|
+
sceneValue: __props.sceneValue,
|
|
19291
19408
|
asideDefaultWidth: 240,
|
|
19292
|
-
isLogin:
|
|
19293
|
-
showPreferencesSetting:
|
|
19294
|
-
showThemeSetting:
|
|
19295
|
-
showLangSetting:
|
|
19296
|
-
independence:
|
|
19297
|
-
slotKeys:
|
|
19409
|
+
isLogin: __props.isLogin,
|
|
19410
|
+
showPreferencesSetting: __props.showPreferencesSetting,
|
|
19411
|
+
showThemeSetting: __props.showThemeSetting,
|
|
19412
|
+
showLangSetting: __props.showLangSetting,
|
|
19413
|
+
independence: __props.independence,
|
|
19414
|
+
slotKeys: __props.slotKeys
|
|
19298
19415
|
}), null, 16, ["sceneValue", "isLogin", "showPreferencesSetting", "showThemeSetting", "showLangSetting", "independence", "slotKeys"])
|
|
19299
19416
|
]),
|
|
19300
19417
|
_: 1
|
|
@@ -19914,12 +20031,12 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
19914
20031
|
slotKeys: ["home", "issues"],
|
|
19915
20032
|
collapseMode: sceneSelected.value == unref(SceneValue).repo
|
|
19916
20033
|
}, {
|
|
19917
|
-
home: withCtx(() => _cache[2] || (_cache[2] = [
|
|
20034
|
+
home: withCtx(() => [..._cache[2] || (_cache[2] = [
|
|
19918
20035
|
createElementVNode("div", null, "首页hover-插槽", -1)
|
|
19919
|
-
])),
|
|
19920
|
-
issues: withCtx(() => _cache[3] || (_cache[3] = [
|
|
20036
|
+
])]),
|
|
20037
|
+
issues: withCtx(() => [..._cache[3] || (_cache[3] = [
|
|
19921
20038
|
createElementVNode("div", null, "issues hover-插槽", -1)
|
|
19922
|
-
])),
|
|
20039
|
+
])]),
|
|
19923
20040
|
_: 1
|
|
19924
20041
|
}, 8, ["sceneValue", "userInfo", "isLogin", "request", "globalStore", "independence", "collapseMode"])
|
|
19925
20042
|
]),
|
|
@@ -19958,21 +20075,19 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
19958
20075
|
key: "是",
|
|
19959
20076
|
value: true
|
|
19960
20077
|
}, {
|
|
19961
|
-
default: withCtx(() => _cache[4] || (_cache[4] = [
|
|
20078
|
+
default: withCtx(() => [..._cache[4] || (_cache[4] = [
|
|
19962
20079
|
createTextVNode("是", -1)
|
|
19963
|
-
])),
|
|
19964
|
-
_: 1
|
|
19965
|
-
__: [4]
|
|
20080
|
+
])]),
|
|
20081
|
+
_: 1
|
|
19966
20082
|
})),
|
|
19967
20083
|
(openBlock(), createBlock(unref(Radio), {
|
|
19968
20084
|
key: "否",
|
|
19969
20085
|
value: false
|
|
19970
20086
|
}, {
|
|
19971
|
-
default: withCtx(() => _cache[5] || (_cache[5] = [
|
|
20087
|
+
default: withCtx(() => [..._cache[5] || (_cache[5] = [
|
|
19972
20088
|
createTextVNode("否", -1)
|
|
19973
|
-
])),
|
|
19974
|
-
_: 1
|
|
19975
|
-
__: [5]
|
|
20089
|
+
])]),
|
|
20090
|
+
_: 1
|
|
19976
20091
|
}))
|
|
19977
20092
|
]),
|
|
19978
20093
|
_: 1
|
|
@@ -20777,13 +20892,13 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
20777
20892
|
});
|
|
20778
20893
|
return (_ctx, _cache) => {
|
|
20779
20894
|
return openBlock(), createElementBlock("div", {
|
|
20780
|
-
class: normalizeClass(["flex flex-1 g-input-button", [inputBtnClassName.value,
|
|
20895
|
+
class: normalizeClass(["flex flex-1 g-input-button", [inputBtnClassName.value, __props.error ? "g-input-button-error" : ""]])
|
|
20781
20896
|
}, [
|
|
20782
20897
|
createVNode(unref(Input), {
|
|
20783
20898
|
modelValue: unref(vModels),
|
|
20784
20899
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(vModels) ? vModels.value = $event : null),
|
|
20785
|
-
placeholder: unref($t)("gitCodeLayout.LoginModal.rule.pleaseFill", { label:
|
|
20786
|
-
autocomplete:
|
|
20900
|
+
placeholder: unref($t)("gitCodeLayout.LoginModal.rule.pleaseFill", { label: __props.placeholder }),
|
|
20901
|
+
autocomplete: __props.autocomplete,
|
|
20787
20902
|
onChange: handleChange,
|
|
20788
20903
|
onFocus: handleInputFocus,
|
|
20789
20904
|
onBlur: handleInputBlur
|
|
@@ -20793,7 +20908,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
20793
20908
|
onClick: withModifiers(handleClick, ["stop"]),
|
|
20794
20909
|
class: normalizeClass([
|
|
20795
20910
|
"g-input-button-append",
|
|
20796
|
-
DisabledBtn.value || !
|
|
20911
|
+
DisabledBtn.value || !__props.hasMobile ? "g-input-button-append-inactive" : "g-input-button-append-active"
|
|
20797
20912
|
])
|
|
20798
20913
|
}, [
|
|
20799
20914
|
createElementVNode("span", _hoisted_1$a, toDisplayString$1(BtnText.value), 1)
|
|
@@ -20940,8 +21055,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
20940
21055
|
key: 1,
|
|
20941
21056
|
modelValue: unref(vModels),
|
|
20942
21057
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isRef(vModels) ? vModels.value = $event : null)
|
|
20943
|
-
},
|
|
20944
|
-
placeholder:
|
|
21058
|
+
}, __props.prop, {
|
|
21059
|
+
placeholder: __props.placeholder,
|
|
20945
21060
|
onChange: handleChange
|
|
20946
21061
|
}), {
|
|
20947
21062
|
prepend: withCtx(() => [
|
|
@@ -21193,23 +21308,23 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
21193
21308
|
rules: GroupRules,
|
|
21194
21309
|
ref_key: "FormRef",
|
|
21195
21310
|
ref: FormRef,
|
|
21196
|
-
"show-feedback":
|
|
21197
|
-
disabled:
|
|
21198
|
-
"message-type":
|
|
21199
|
-
layout:
|
|
21200
|
-
size:
|
|
21201
|
-
"label-size":
|
|
21202
|
-
"label-align":
|
|
21311
|
+
"show-feedback": __props.showFeedback,
|
|
21312
|
+
disabled: __props.disabled,
|
|
21313
|
+
"message-type": __props.MessageType,
|
|
21314
|
+
layout: __props.layout,
|
|
21315
|
+
size: __props.size,
|
|
21316
|
+
"label-size": __props.labelSize,
|
|
21317
|
+
"label-align": __props.labelAlign,
|
|
21203
21318
|
class: "GForm",
|
|
21204
21319
|
onInput: handleFormInput,
|
|
21205
21320
|
requirePosition: "right"
|
|
21206
21321
|
}, {
|
|
21207
21322
|
default: withCtx(() => [
|
|
21208
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(
|
|
21323
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.DataList, (formItem) => {
|
|
21209
21324
|
return openBlock(), createBlock(unref(FormItem), {
|
|
21210
21325
|
key: formItem.key,
|
|
21211
21326
|
field: formItem.key,
|
|
21212
|
-
label:
|
|
21327
|
+
label: __props.showLabel ? formItem.label : "",
|
|
21213
21328
|
"help-tips": formItem.help,
|
|
21214
21329
|
"extra-info": formItem.extra,
|
|
21215
21330
|
style: normalizeStyle({ width: getItemWidth.value(formItem) })
|
|
@@ -21238,12 +21353,12 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
21238
21353
|
}, { ref_for: true }, formItem.props, {
|
|
21239
21354
|
hasMobile: !!Data[(_b = formItem.props) == null ? void 0 : _b.aliasKey],
|
|
21240
21355
|
text: unref($t)("gitCodeLayout.userSetting.account.getVerificationCode"),
|
|
21241
|
-
error:
|
|
21356
|
+
error: __props.errors.msgError,
|
|
21242
21357
|
autocomplete: autocompleteCalc((_c = formItem.props) == null ? void 0 : _c.autocomplete)
|
|
21243
21358
|
}), null, 16, ["modelValue", "onUpdate:modelValue", "onChange", "onClick", "onUpdate:countdown", "placeholder", "hasMobile", "text", "error", "autocomplete"])) : formItem.type === "inputSelect" ? (openBlock(), createBlock(_sfc_main$b, mergeProps({
|
|
21244
21359
|
key: 2,
|
|
21245
21360
|
country: Data.country,
|
|
21246
|
-
class:
|
|
21361
|
+
class: __props.formErrors["mobile"] ? "input-select-error" : "",
|
|
21247
21362
|
modelValue: Data[formItem.key],
|
|
21248
21363
|
"onUpdate:modelValue": ($event) => Data[formItem.key] = $event,
|
|
21249
21364
|
onSelectChange: _cache[0] || (_cache[0] = (evt) => handleSelectChange("country", evt)),
|
|
@@ -21303,7 +21418,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
21303
21418
|
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
21304
21419
|
createElementVNode("div", _hoisted_2$5, toDisplayString$1(unref($t)("gitCodeLayout.LoginModal.subtitle.otherLogin")), 1),
|
|
21305
21420
|
createElementVNode("div", _hoisted_3$3, [
|
|
21306
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(
|
|
21421
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.logos, (icon) => {
|
|
21307
21422
|
return openBlock(), createElementBlock("div", {
|
|
21308
21423
|
key: icon.alt,
|
|
21309
21424
|
class: "rounded-[50%] w-[40px] h-[40px] border-[1px] icon-wrap border-solid cursor-pointer otherInfo-icon"
|
|
@@ -21408,11 +21523,11 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
21408
21523
|
createElementVNode("a", {
|
|
21409
21524
|
class: "text-[var(--devui-link)] cursor-pointer mx-[1px] text-[12px]",
|
|
21410
21525
|
onClick: _cache[0] || (_cache[0] = withModifiers(($event) => handleClick("agreement"), ["stop"]))
|
|
21411
|
-
}, toDisplayString$1(
|
|
21526
|
+
}, toDisplayString$1(__props.agreementText || unref($t)("gitCodeLayout.LoginModal.link.agreement")), 1),
|
|
21412
21527
|
createElementVNode("a", {
|
|
21413
21528
|
class: "text-[var(--devui-link)] cursor-pointer mx-[1px] text-[12px]",
|
|
21414
21529
|
onClick: _cache[1] || (_cache[1] = withModifiers(($event) => handleClick("privacy"), ["stop"]))
|
|
21415
|
-
}, toDisplayString$1(
|
|
21530
|
+
}, toDisplayString$1(__props.privacyText || unref($t)("gitCodeLayout.LoginModal.link.privacyPolicy")), 1),
|
|
21416
21531
|
renderSlot(_ctx.$slots, "default")
|
|
21417
21532
|
]),
|
|
21418
21533
|
_: 3
|
|
@@ -21444,14 +21559,14 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
21444
21559
|
return (_ctx, _cache) => {
|
|
21445
21560
|
return openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
21446
21561
|
createElementVNode("div", _hoisted_2$3, [
|
|
21447
|
-
|
|
21562
|
+
__props.showBack ? (openBlock(), createElementBlock("img", {
|
|
21448
21563
|
key: 0,
|
|
21449
|
-
src:
|
|
21564
|
+
src: __props.icon,
|
|
21450
21565
|
class: "w-[24px] cursor-pointer",
|
|
21451
21566
|
onClick: withModifiers(handleClick, ["stop"])
|
|
21452
21567
|
}, null, 8, _hoisted_3$2)) : createCommentVNode("", true)
|
|
21453
21568
|
]),
|
|
21454
|
-
|
|
21569
|
+
__props.showTitle ? (openBlock(), createElementBlock("span", _hoisted_4$2, toDisplayString$1(__props.title), 1)) : createCommentVNode("", true)
|
|
21455
21570
|
]);
|
|
21456
21571
|
};
|
|
21457
21572
|
}
|
|
@@ -21485,7 +21600,7 @@ const verifyCodeRegExp4 = /^\d{4}$/;
|
|
|
21485
21600
|
const verifyCodeRegExp6 = /^\d{6}$/;
|
|
21486
21601
|
const mobileRegExp = /^1[3-9]\d{9}$/;
|
|
21487
21602
|
const usernameRegExp = /^(?!-)[a-zA-Z][a-zA-Z0-9_-]{1,49}$/;
|
|
21488
|
-
const metadata = { "version": 4, "country_calling_codes": { "1": ["US", "AG", "AI", "AS", "BB", "BM", "BS", "CA", "DM", "DO", "GD", "GU", "JM", "KN", "KY", "LC", "MP", "MS", "PR", "SX", "TC", "TT", "VC", "VG", "VI"], "7": ["RU", "KZ"], "20": ["EG"], "27": ["ZA"], "30": ["GR"], "31": ["NL"], "32": ["BE"], "33": ["FR"], "34": ["ES"], "36": ["HU"], "39": ["IT", "VA"], "40": ["RO"], "41": ["CH"], "43": ["AT"], "44": ["GB", "GG", "IM", "JE"], "45": ["DK"], "46": ["SE"], "47": ["NO", "SJ"], "48": ["PL"], "49": ["DE"], "51": ["PE"], "52": ["MX"], "53": ["CU"], "54": ["AR"], "55": ["BR"], "56": ["CL"], "57": ["CO"], "58": ["VE"], "60": ["MY"], "61": ["AU", "CC", "CX"], "62": ["ID"], "63": ["PH"], "64": ["NZ"], "65": ["SG"], "66": ["TH"], "81": ["JP"], "82": ["KR"], "84": ["VN"], "86": ["CN"], "90": ["TR"], "91": ["IN"], "92": ["PK"], "93": ["AF"], "94": ["LK"], "95": ["MM"], "98": ["IR"], "211": ["SS"], "212": ["MA", "EH"], "213": ["DZ"], "216": ["TN"], "218": ["LY"], "220": ["GM"], "221": ["SN"], "222": ["MR"], "223": ["ML"], "224": ["GN"], "225": ["CI"], "226": ["BF"], "227": ["NE"], "228": ["TG"], "229": ["BJ"], "230": ["MU"], "231": ["LR"], "232": ["SL"], "233": ["GH"], "234": ["NG"], "235": ["TD"], "236": ["CF"], "237": ["CM"], "238": ["CV"], "239": ["ST"], "240": ["GQ"], "241": ["GA"], "242": ["CG"], "243": ["CD"], "244": ["AO"], "245": ["GW"], "246": ["IO"], "247": ["AC"], "248": ["SC"], "249": ["SD"], "250": ["RW"], "251": ["ET"], "252": ["SO"], "253": ["DJ"], "254": ["KE"], "255": ["TZ"], "256": ["UG"], "257": ["BI"], "258": ["MZ"], "260": ["ZM"], "261": ["MG"], "262": ["RE", "YT"], "263": ["ZW"], "264": ["NA"], "265": ["MW"], "266": ["LS"], "267": ["BW"], "268": ["SZ"], "269": ["KM"], "290": ["SH", "TA"], "291": ["ER"], "297": ["AW"], "298": ["FO"], "299": ["GL"], "350": ["GI"], "351": ["PT"], "352": ["LU"], "353": ["IE"], "354": ["IS"], "355": ["AL"], "356": ["MT"], "357": ["CY"], "358": ["FI", "AX"], "359": ["BG"], "370": ["LT"], "371": ["LV"], "372": ["EE"], "373": ["MD"], "374": ["AM"], "375": ["BY"], "376": ["AD"], "377": ["MC"], "378": ["SM"], "380": ["UA"], "381": ["RS"], "382": ["ME"], "383": ["XK"], "385": ["HR"], "386": ["SI"], "387": ["BA"], "389": ["MK"], "420": ["CZ"], "421": ["SK"], "423": ["LI"], "500": ["FK"], "501": ["BZ"], "502": ["GT"], "503": ["SV"], "504": ["HN"], "505": ["NI"], "506": ["CR"], "507": ["PA"], "508": ["PM"], "509": ["HT"], "590": ["GP", "BL", "MF"], "591": ["BO"], "592": ["GY"], "593": ["EC"], "594": ["GF"], "595": ["PY"], "596": ["MQ"], "597": ["SR"], "598": ["UY"], "599": ["CW", "BQ"], "670": ["TL"], "672": ["NF"], "673": ["BN"], "674": ["NR"], "675": ["PG"], "676": ["TO"], "677": ["SB"], "678": ["VU"], "679": ["FJ"], "680": ["PW"], "681": ["WF"], "682": ["CK"], "683": ["NU"], "685": ["WS"], "686": ["KI"], "687": ["NC"], "688": ["TV"], "689": ["PF"], "690": ["TK"], "691": ["FM"], "692": ["MH"], "850": ["KP"], "852": ["HK"], "853": ["MO"], "855": ["KH"], "856": ["LA"], "880": ["BD"], "886": ["TW"], "960": ["MV"], "961": ["LB"], "962": ["JO"], "963": ["SY"], "964": ["IQ"], "965": ["KW"], "966": ["SA"], "967": ["YE"], "968": ["OM"], "970": ["PS"], "971": ["AE"], "972": ["IL"], "973": ["BH"], "974": ["QA"], "975": ["BT"], "976": ["MN"], "977": ["NP"], "992": ["TJ"], "993": ["TM"], "994": ["AZ"], "995": ["GE"], "996": ["KG"], "998": ["UZ"] }, "countries": { "AC": ["247", "00", "(?:[01589]\\d|[46])\\d{4}", [5, 6]], "AD": ["376", "00", "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", [6, 8, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["[135-9]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["1"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]]], "AE": ["971", "00", "(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{2,9})", "$1 $2", ["60|8"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[236]|[479][2-8]"], "0$1"], ["(\\d{3})(\\d)(\\d{5})", "$1 $2 $3", ["[479]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"]], "0"], "AF": ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0"], "AG": ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268"], "AI": ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264"], "AL": ["355", "00", "(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}", [6, 7, 8, 9], [["(\\d{3})(\\d{3,4})", "$1 $2", ["80|9"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["4[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2358][2-5]|4"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["[23578]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["6"], "0$1"]], "0"], "AM": ["374", "00", "(?:[1-489]\\d|55|60|77)\\d{6}", [8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[89]0"], "0 $1"], ["(\\d{3})(\\d{5})", "$1 $2", ["2|3[12]"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["1|47"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[3-9]"], "0$1"]], "0"], "AO": ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]]], "AR": ["54", "00", "(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}", [10, 11], [["(\\d{4})(\\d{2})(\\d{4})", "$1 $2-$3", ["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])", "2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["1"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[68]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2-$3", ["[23]"], "0$1", 1], ["(\\d)(\\d{4})(\\d{2})(\\d{4})", "$2 15-$3-$4", ["9(?:2[2-469]|3[3-578])", "9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))", "9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d)(\\d{2})(\\d{4})(\\d{4})", "$2 15-$3-$4", ["91"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d{3})(\\d{3})(\\d{5})", "$1-$2-$3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{4})", "$2 15-$3-$4", ["9"], "0$1", 0, "$1 $2 $3-$4"]], "0", 0, "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?", "9$1"], "AS": ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684"], "AT": ["43", "00", "1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{3,12})", "$1 $2", ["1(?:11|[2-9])"], "0$1"], ["(\\d{3})(\\d{2})", "$1 $2", ["517"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["5[079]"], "0$1"], ["(\\d{3})(\\d{3,10})", "$1 $2", ["(?:31|4)6|51|6(?:48|5[0-3579]|[6-9])|7(?:20|32|8)|[89]", "(?:31|4)6|51|6(?:485|5[0-3579]|[6-9])|7(?:20|32|8)|[89]"], "0$1"], ["(\\d{4})(\\d{3,9})", "$1 $2", ["[2-467]|5[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,7})", "$1 $2 $3", ["5"], "0$1"]], "0"], "AU": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}", [5, 6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{3,4})", "$1 $2", ["16"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["16"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["14|4"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[2378]"], "(0$1)"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:30|[89])"]]], "0", 0, "(183[12])|0", 0, 0, 0, [["(?:(?:2(?:(?:[0-26-9]\\d|3[0-8]|5[0135-9])\\d|4(?:[02-9]\\d|10))|3(?:(?:[0-3589]\\d|6[1-9]|7[0-35-9])\\d|4(?:[0-578]\\d|90))|7(?:[013-57-9]\\d|2[0-8])\\d)\\d\\d|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4])|[34]\\d\\d)|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}", [9]], ["4(?:79[01]|83[0-389]|94[0-478])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, ["163\\d{2,6}", [5, 6, 7, 8, 9]], ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "AW": ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]]], "AX": ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}", [5, 6, 7, 8, 9, 10, 11, 12], 0, "0", 0, 0, 0, 0, "18", 0, "00"], "AZ": ["994", "00", "365\\d{6}|(?:[124579]\\d|60|88)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[28]|2|365|46", "1[28]|2|365[45]|46", "1[28]|2|365(?:4|5[02])|46"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[13-9]"], "0$1"]], "0"], "BA": ["387", "00", "6\\d{8}|(?:[35689]\\d|49|70)\\d{6}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[1-3]|[7-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2-$3", ["[3-5]|6[56]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["6"], "0$1"]], "0"], "BB": ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246"], "BD": ["880", "00", "[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1-$2", ["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"], "0$1"], ["(\\d{4})(\\d{3,6})", "$1-$2", ["[13-9]|2[23]"], "0$1"], ["(\\d)(\\d{7,8})", "$1-$2", ["2"], "0$1"]], "0"], "BE": ["32", "00", "4\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:80|9)0"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[239]|4[23]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[15-8]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4"], "0$1"]], "0"], "BF": ["226", "00", "(?:[025-7]\\d|44)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[024-7]"]]]], "BG": ["359", "00", "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", [6, 7, 8, 9, 12], [["(\\d)(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["43[1-6]|70[1-9]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:70|8)0"], "0$1"], ["(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3", ["43[1-7]|7"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[48]|9[08]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"]], "0"], "BH": ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]]], "BI": ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]]], "BJ": ["229", "00", "(?:01\\d|[24-689])\\d{7}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["0"]]]], "BL": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "BM": ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441"], "BN": ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]]], "BO": ["591", "00(?:1\\d)?", "8001\\d{5}|(?:[2-467]\\d|50)\\d{6}", [8, 9], [["(\\d)(\\d{7})", "$1 $2", ["[235]|4[46]"]], ["(\\d{8})", "$1", ["[67]"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, "0(1\\d)?"], "BQ": ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]"], "BR": ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "[1-467]\\d{9,10}|55[0-46-9]\\d{8}|[34]\\d{7}|55\\d{7,8}|(?:5[0-46-9]|[89]\\d)\\d{7,9}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37|86)", "300|4(?:0(?:0|20)|370|864)"]], ["(\\d{3})(\\d{2,3})(\\d{4})", "$1 $2 $3", ["(?:[358]|90)0"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"], "($1)"], ["(\\d{2})(\\d{5})(\\d{4})", "$1 $2-$3", ["[16][1-9]|[2-57-9]"], "($1)"]], "0", 0, "(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?", "$2"], "BS": ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242"], "BT": ["975", "00", "[17]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-68]|7[246]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|7"]]]], "BW": ["267", "00", "(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["90"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[24-6]|3[15-9]"]], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37]"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["8"]]]], "BY": ["375", "810", "(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3})", "$1 $2", ["800"], "8 $1"], ["(\\d{3})(\\d{2})(\\d{2,4})", "$1 $2 $3", ["800"], "8 $1"], ["(\\d{4})(\\d{2})(\\d{3})", "$1 $2-$3", ["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])", "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"], "8 0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["1(?:[56]|7[467])|2[1-3]"], "8 0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-4]"], "8 0$1"], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[89]"], "8 $1"]], "8", 0, "0|80?", 0, 0, 0, 0, "8~10"], "BZ": ["501", "00", "(?:0800\\d|[2-8])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], ["(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]]], "CA": ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [["(?:2(?:04|[23]6|[48]9|5[07]|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [10]], ["", [10]], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", [10]], ["900[2-9]\\d{6}", [10]], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:2[125-9]|33|44|66|77|88)|6(?:22|33))[2-9]\\d{6}", [10]], 0, ["310\\d{4}", [7]], 0, ["600[2-9]\\d{6}", [10]]]], "CC": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}", [9]], ["4(?:79[01]|83[0-389]|94[0-478])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "CD": ["243", "00", "(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[1-6]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], "0"], "CF": ["236", "00", "(?:[27]\\d{3}|8776)\\d{4}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]]], "CG": ["242", "00", "222\\d{6}|(?:0\\d|80)\\d{7}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]]], "CH": ["41", "00", "8\\d{11}|[2-9]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8[047]|90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]|81"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["8"], "0$1"]], "0"], "CI": ["225", "00", "[02]\\d{9}", [10], [["(\\d{2})(\\d{2})(\\d)(\\d{5})", "$1 $2 $3 $4", ["2"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3 $4", ["0"]]]], "CK": ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]]], "CL": ["56", "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", [9, 10, 11], [["(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]]], "CM": ["237", "00", "[26]\\d{8}|88\\d{6,7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["88"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[26]|88"]]]], "CN": ["86", "00|1(?:[12]\\d|79)\\d\\d00", "(?:(?:1[03-689]|2\\d)\\d\\d|6)\\d{8}|1\\d{10}|[126]\\d{6}(?:\\d(?:\\d{2})?)?|86\\d{5,6}|(?:[3-579]\\d|8[0-57-9])\\d{5,9}", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5,6})", "$1 $2", ["(?:10|2[0-57-9])[19]|3(?:[157]|35|49|9[1-68])|4(?:1[124-9]|2[179]|6[47-9]|7|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:07|1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3|4[13]|5[1-5]|7[0-79]|9[0-35-9])|(?:4[35]|59|85)[1-9]", "(?:10|2[0-57-9])(?:1[02]|9[56])|8078|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))1", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|80781|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))12", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|807812|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:078|1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123"], "0$1"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]", "(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]", "85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])", "85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["(?:4|80)0"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|2(?:[02-57-9]|1[1-9])", "10|2(?:[02-57-9]|1[1-9])", "10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"], "0$1", 1], ["(\\d{3})(\\d{7,8})", "$1 $2", ["9"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["80"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[3-578]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["1[3-9]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["[12]"], "0$1", 1]], "0", 0, "(1(?:[12]\\d|79)\\d\\d)|0", 0, 0, 0, 0, "00"], "CO": ["57", "00(?:4(?:[14]4|56)|[579])", "(?:46|60\\d\\d)\\d{6}|(?:1\\d|[39])\\d{9}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["46"]], ["(\\d{3})(\\d{7})", "$1 $2", ["6|90"], "($1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3[0-357]|9[14]"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?"], "CR": ["506", "00", "(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}", [8, 10], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[3-9]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[89]"]]], 0, 0, "(19(?:0[0-2468]|1[09]|20|66|77|99))"], "CU": ["53", "119", "(?:[2-7]|8\\d\\d)\\d{7}|[2-47]\\d{6}|[34]\\d{5}", [6, 7, 8, 10], [["(\\d{2})(\\d{4,6})", "$1 $2", ["2[1-4]|[34]"], "(0$1)"], ["(\\d)(\\d{6,7})", "$1 $2", ["7"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["[56]"], "0$1"], ["(\\d{3})(\\d{7})", "$1 $2", ["8"], "0$1"]], "0"], "CV": ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]]], "CW": ["599", "00", "(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[3467]"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["9[4-8]"]]], 0, 0, 0, 0, 0, "[69]"], "CX": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}", [9]], ["4(?:79[01]|83[0-389]|94[0-478])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "CY": ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]]], "CZ": ["420", "00", "(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}", [9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]|9[015-7]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["96"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]]], "DE": ["49", "00", "[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [["(\\d{2})(\\d{3,13})", "$1 $2", ["3[02]|40|[68]9"], "0$1"], ["(\\d{3})(\\d{3,12})", "$1 $2", ["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1", "2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"], "0$1"], ["(\\d{4})(\\d{2,11})", "$1 $2", ["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]", "[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["138"], "0$1"], ["(\\d{5})(\\d{2,10})", "$1 $2", ["3"], "0$1"], ["(\\d{3})(\\d{5,11})", "$1 $2", ["181"], "0$1"], ["(\\d{3})(\\d)(\\d{4,10})", "$1 $2 $3", ["1(?:3|80)|9"], "0$1"], ["(\\d{3})(\\d{7,8})", "$1 $2", ["1[67]"], "0$1"], ["(\\d{3})(\\d{7,12})", "$1 $2", ["8"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["185", "1850", "18500"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["18[68]"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["15[1279]"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["15[03568]", "15(?:[0568]|31)"], "0$1"], ["(\\d{3})(\\d{8})", "$1 $2", ["18"], "0$1"], ["(\\d{3})(\\d{2})(\\d{7,8})", "$1 $2 $3", ["1(?:6[023]|7)"], "0$1"], ["(\\d{4})(\\d{2})(\\d{7})", "$1 $2 $3", ["15[279]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{8})", "$1 $2 $3", ["15"], "0$1"]], "0"], "DJ": ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]]], "DK": ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]]], "DM": ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767"], "DO": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9"], "DZ": ["213", "00", "(?:[1-4]|[5-79]\\d|80)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["9"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-8]"], "0$1"]], "0"], "EC": ["593", "00", "1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}", [8, 9, 10, 11], [["(\\d)(\\d{3})(\\d{4})", "$1 $2-$3", ["[2-7]"], "(0$1)", 0, "$1-$2-$3"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1"]]], "0"], "EE": ["372", "00", "8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88", "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]], ["(\\d{4})(\\d{3,4})", "$1 $2", ["[45]|8(?:00|[1-49])", "[45]|8(?:00[1-9]|[1-49])"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], "EG": ["20", "00", "[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}", [8, 9, 10], [["(\\d)(\\d{7,8})", "$1 $2", ["[23]"], "0$1"], ["(\\d{2})(\\d{6,7})", "$1 $2", ["1[35]|[4-6]|8[2468]|9[235-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{8})", "$1 $2", ["1"], "0$1"]], "0"], "EH": ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, "528[89]"], "ER": ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0"], "ES": ["34", "00", "[5-9]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]00"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-9]"]]]], "ET": ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0"], "FI": ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{5})", "$1", ["20[2-59]"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1 $2", ["(?:[1-3]0|[68])0|70[07-9]"], "0$1"], ["(\\d{2})(\\d{4,8})", "$1 $2", ["[14]|2[09]|50|7[135]"], "0$1"], ["(\\d{2})(\\d{6,10})", "$1 $2", ["7"], "0$1"], ["(\\d)(\\d{4,9})", "$1 $2", ["(?:19|[2568])[1-8]|3(?:0[1-9]|[1-9])|9"], "0$1"]], "0", 0, 0, 0, 0, "1[03-79]|[2-9]", 0, "00"], "FJ": ["679", "0(?:0|52)", "45\\d{5}|(?:0800\\d|[235-9])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[235-9]|45"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "FK": ["500", "00", "[2-7]\\d{4}", [5]], "FM": ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]]], "FO": ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))"], "FR": ["33", "00", "[1-9]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0 $1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[1-79]"], "0$1"]], "0"], "GA": ["241", "00", "(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}", [7, 8], [["(\\d)(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-7]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["11|[67]"], "0$1"]], 0, 0, "0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})", "$1"], "GB": ["44", "00", "[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}", [7, 9, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["800", "8001", "80011", "800111", "8001111"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["845", "8454", "84546", "845464"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["800"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["1(?:38|5[23]|69|76|94)", "1(?:(?:38|69)7|5(?:24|39)|768|946)", "1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["1(?:[2-69][02-9]|[78])"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[25]|7(?:0|6[02-9])", "[25]|7(?:0|6(?:[03-9]|2[356]))"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1389]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0-35])|4(?:(?:[0-5]\\d|70)\\d|69[7-9])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|50))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-3]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}", [9, 10]], ["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]], 0, " x"], "GD": ["1", "011", "(?:473|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "473$1", 0, "473"], "GE": ["995", "00", "(?:[3-57]\\d\\d|800)\\d{6}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["32"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[57]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[348]"], "0$1"]], "0"], "GF": ["594", "00", "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|9[47]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], "0"], "GG": ["44", "00", "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", [7, 9, 10], 0, "0", 0, "([25-9]\\d{5})$|0", "1481$1", 0, 0, [["1481[25-9]\\d{5}", [10]], ["7(?:(?:781|839)\\d|911[17])\\d{5}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]]], "GH": ["233", "00", "(?:[235]\\d{3}|800)\\d{5}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], "0"], "GI": ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]]], "GL": ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]]], "GM": ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "GN": ["224", "00", "722\\d{6}|(?:3|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]]], "GP": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0", 0, 0, 0, 0, 0, [["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "GQ": ["240", "00", "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], ["(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]]], "GR": ["30", "00", "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", [10, 11, 12], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["21|7"]], ["(\\d{4})(\\d{6})", "$1 $2", ["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2689]"]], ["(\\d{3})(\\d{3,4})(\\d{5})", "$1 $2 $3", ["8"]]]], "GT": ["502", "00", "80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-8]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], "GU": ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671"], "GW": ["245", "00", "[49]\\d{8}|4\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["40"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"]]]], "GY": ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "HK": ["852", "00(?:30|5[09]|[126-9]?)", "8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}", [5, 6, 7, 8, 9, 11], [["(\\d{3})(\\d{2,5})", "$1 $2", ["900", "9003"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{3})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "HN": ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]]], "HR": ["385", "00", "[2-69]\\d{8}|80\\d{5,7}|[1-79]\\d{7}|6\\d{6}", [7, 8, 9], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["6[01]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{4})(\\d{3})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6|7[245]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-57]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"]], "0"], "HT": ["509", "00", "[2-589]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]]], "HU": ["36", "00", "[235-7]\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "06 $1"]], "06"], "ID": ["62", "00[89]", "00[1-9]\\d{9,14}|(?:[1-36]|8\\d{5})\\d{6}|00\\d{9}|[1-9]\\d{8,10}|[2-9]\\d{7}", [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["15"]], ["(\\d{2})(\\d{5,9})", "$1 $2", ["2[124]|[36]1"], "(0$1)"], ["(\\d{3})(\\d{5,7})", "$1 $2", ["800"], "0$1"], ["(\\d{3})(\\d{5,8})", "$1 $2", ["[2-79]"], "(0$1)"], ["(\\d{3})(\\d{3,4})(\\d{3})", "$1-$2-$3", ["8[1-35-9]"], "0$1"], ["(\\d{3})(\\d{6,8})", "$1 $2", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["804"], "0$1"], ["(\\d{3})(\\d)(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["80"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1-$2-$3", ["8"], "0$1"]], "0"], "IE": ["353", "00", "(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["2[24-9]|47|58|6[237-9]|9[35-9]"], "(0$1)"], ["(\\d{3})(\\d{5})", "$1 $2", ["[45]0"], "(0$1)"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2569]|4[1-69]|7[14]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["81"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], ["(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "IL": ["972", "0(?:0|1[2-9])", "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", [7, 8, 9, 10, 11, 12], [["(\\d{4})(\\d{3})", "$1-$2", ["125"]], ["(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], ["(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], ["(\\d{4})(\\d{6})", "$1-$2", ["159"]], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], ["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], "0"], "IM": ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0", "1624$1", 0, "74576|(?:16|7[56])24"], "IN": ["91", "00", "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", [8, 9, 10, 11, 12, 13], [["(\\d{8})", "$1", ["5(?:0|2[23]|3[03]|[67]1|88)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"], 0, 1], ["(\\d{4})(\\d{4,5})", "$1 $2", ["180", "1800"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["140"], 0, 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["11|2[02]|33|4[04]|79[1-7]|80[2-46]", "11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])", "11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"], "0$1", 1], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807", "1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]", "1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"], "0$1", 1], ["(\\d{5})(\\d{5})", "$1 $2", ["[6-9]"], "0$1", 1], ["(\\d{4})(\\d{2,4})(\\d{4})", "$1 $2 $3", ["1(?:6|8[06])", "1(?:6|8[06]0)"], 0, 1], ["(\\d{4})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["18"], 0, 1]], "0"], "IO": ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]]], "IQ": ["964", "00", "(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-6]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], "IR": ["98", "00", "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", [4, 5, 6, 7, 10], [["(\\d{4,5})", "$1", ["96"], "0$1"], ["(\\d{2})(\\d{4,5})", "$1 $2", ["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[1-8]"], "0$1"]], "0"], "IS": ["354", "00|1(?:0(?:01|[12]0)|100)", "(?:38\\d|[4-9])\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "IT": ["39", "00", "0\\d{5,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:43|55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?", [6, 7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{4,6})", "$1 $2", ["0[26]"]], ["(\\d{3})(\\d{3,6})", "$1 $2", ["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])", "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]], ["(\\d{4})(\\d{2,6})", "$1 $2", ["0(?:[13-579][2-46-8]|8[236-8])"]], ["(\\d{4})(\\d{4})", "$1 $2", ["894"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[26]|5"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1(?:44|[679])|[378]|43"]], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[13-57-9][0159]|14"]], ["(\\d{2})(\\d{4})(\\d{5})", "$1 $2 $3", ["0[26]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, [["0669[0-79]\\d{1,6}|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}", [6, 7, 8, 9, 10, 11]], ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]], ["80(?:0\\d{3}|3)\\d{3}", [6, 9]], ["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}", [6, 8, 9, 10]], ["1(?:78\\d|99)\\d{6}", [9, 10]], ["3[2-8]\\d{9,10}", [11, 12]], 0, 0, ["55\\d{8}", [10]], ["84(?:[08]\\d{3}|[17])\\d{3}", [6, 9]]]], "JE": ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0", "1534$1", 0, 0, [["1534[0-24-8]\\d{5}"], ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"], ["80(?:07(?:35|81)|8901)\\d{4}"], ["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"], ["701511\\d{4}"], 0, ["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"], ["56\\d{8}"]]], "JM": ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876"], "JO": ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|53)\\d{6}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2356]|87"], "(0$1)"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["70"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], "JP": ["81", "010", "00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}", [8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3", ["(?:12|57|99)0"], "0$1"], ["(\\d{4})(\\d)(\\d{4})", "$1-$2-$3", ["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["60"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2-$3", ["[36]|4(?:2[09]|7[01])", "[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3", ["[14]|[289][2-9]|5[3-9]|7[2-4679]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["800"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[257-9]"], "0$1"]], "0", 0, "(000[259]\\d{6})$|(?:(?:003768)0?)|0", "$1"], "KE": ["254", "000", "(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}", [7, 8, 9, 10], [["(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0"], "KG": ["996", "00", "8\\d{9}|[235-9]\\d{8}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["3(?:1[346]|[24-79])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-79]|88"], "0$1"], ["(\\d{3})(\\d{3})(\\d)(\\d{2,3})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "KH": ["855", "00[14-9]", "1\\d{9}|[1-9]\\d{7,8}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "KI": ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0"], "KM": ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]]], "KN": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869"], "KP": ["850", "00|99", "85\\d{6}|(?:19\\d|[2-7])\\d{7}", [8, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"]], "0"], "KR": ["82", "00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", [5, 6, 8, 9, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3,4})", "$1-$2", ["(?:3[1-3]|[46][1-4]|5[1-5])1"], "0$1"], ["(\\d{4})(\\d{4})", "$1-$2", ["1"]], ["(\\d)(\\d{3,4})(\\d{4})", "$1-$2-$3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[36]0|8"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1-$2-$3", ["[1346]|5[1-5]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{2})(\\d{5})(\\d{4})", "$1-$2-$3", ["5"], "0$1"]], "0", 0, "0(8(?:[1-46-8]|5\\d\\d))?"], "KW": ["965", "00", "18\\d{5}|(?:[2569]\\d|41)\\d{6}", [7, 8], [["(\\d{4})(\\d{3,4})", "$1 $2", ["[169]|2(?:[235]|4[1-35-9])|52"]], ["(\\d{3})(\\d{5})", "$1 $2", ["[245]"]]]], "KY": ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345"], "KZ": ["7", "810", "(?:33622|8\\d{8})\\d{5}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "33622|7", 0, "8~10"], "LA": ["856", "00", "[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2[13]|3[14]|[4-8]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["3"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0"], "LB": ["961", "00", "[27-9]\\d{7}|[13-9]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[13-69]|7(?:[2-57]|62|8[0-6]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0"], "LC": ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758"], "LI": ["423", "00", "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", [7, 9], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2379]|8(?:0[09]|7)", "[2379]|8(?:0(?:02|9)|7)"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["69"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]], "0", 0, "(1001)|0"], "LK": ["94", "00", "[1-9]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[1-689]"], "0$1"]], "0"], "LR": ["231", "00", "(?:[2457]\\d|33|88)\\d{7}|(?:2\\d|[4-6])\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["4[67]|[56]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-578]"], "0$1"]], "0"], "LS": ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]]], "LT": ["370", "00", "(?:[3469]\\d|52|[78]0)\\d{6}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["52[0-7]"], "(0-$1)", 1], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0 $1", 1], ["(\\d{2})(\\d{6})", "$1 $2", ["37|4(?:[15]|6[1-8])"], "(0-$1)", 1], ["(\\d{3})(\\d{5})", "$1 $2", ["[3-6]"], "(0-$1)", 1]], "0", 0, "[08]"], "LU": ["352", "00", "35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}", [4, 5, 6, 7, 8, 9, 10, 11], [["(\\d{2})(\\d{3})", "$1 $2", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["20[2-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4", ["2(?:[0367]|4[3-8])"]], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["80[01]|90[015]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["20"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4 $5", ["2(?:[0367]|4[3-8])"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})", "$1 $2 $3 $4", ["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]], 0, 0, "(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"], "LV": ["371", "00", "(?:[268]\\d|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[269]|8[01]"]]]], "LY": ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0"], "MA": ["212", "00", "[5-8]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5[45]"], "0$1"], ["(\\d{4})(\\d{5})", "$1-$2", ["5(?:2[2-46-9]|3[3-9]|9)|8(?:0[89]|92)"], "0$1"], ["(\\d{2})(\\d{7})", "$1-$2", ["8"], "0$1"], ["(\\d{3})(\\d{6})", "$1-$2", ["[5-7]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["5(?:2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"], ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-8]|5[0-3]|8[0-7]))\\d{6}"], ["80[0-7]\\d{6}"], ["89\\d{7}"], 0, 0, 0, 0, ["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]], "MC": ["377", "00", "(?:[3489]|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["4"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[389]"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["6"], "0$1"]], "0"], "MD": ["373", "00", "(?:[235-7]\\d|[89]0)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["22|3"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[25-7]"], "0$1"]], "0"], "ME": ["382", "00", "(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "0$1"]], "0"], "MF": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "MG": ["261", "00", "[23]\\d{8}", [9], [["(\\d{2})(\\d{2})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, "([24-9]\\d{6})$|0", "20$1"], "MH": ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1"], "MK": ["389", "00", "[2-578]\\d{7}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2|34[47]|4(?:[37]7|5[47]|64)"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[347]"], "0$1"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[58]"], "0$1"]], "0"], "ML": ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]]], "MM": ["95", "00", "1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}", [6, 7, 8, 9, 10], [["(\\d)(\\d{2})(\\d{3})", "$1 $2 $3", ["16|2"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["4(?:[2-46]|5[3-5])|5|6(?:[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-5]|(?:60|86)[23]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|452|678|86", "[12]|452|6788|86"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[4-7]|8[1-35]"], "0$1"], ["(\\d)(\\d{3})(\\d{4,6})", "$1 $2 $3", ["9(?:2[0-4]|[35-9]|4[137-9])"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["92"], "0$1"], ["(\\d)(\\d{5})(\\d{4})", "$1 $2 $3", ["9"], "0$1"]], "0"], "MN": ["976", "001", "[12]\\d{7,9}|[5-9]\\d{7}", [8, 9, 10], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[12]1"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[5-9]"]], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[12]2[1-3]"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["[12](?:27|3[2-8]|4[2-68]|5[1-4689])", "[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["[12]"], "0$1"]], "0"], "MO": ["853", "00", "0800\\d{3}|(?:28|[68]\\d)\\d{6}", [7, 8], [["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[268]"]]]], "MP": ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670"], "MQ": ["596", "00", "(?:596\\d|7091)\\d{5}|(?:69|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "MR": ["222", "00", "(?:[2-4]\\d\\d|800)\\d{5}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-48]"]]]], "MS": ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664"], "MT": ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]]], "MU": ["230", "0(?:0|[24-7]0|3[03])", "(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-46]|8[013]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[57]"]], ["(\\d{5})(\\d{5})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, 0, "020"], "MV": ["960", "0(?:0|19)", "(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}", [7, 10], [["(\\d{3})(\\d{4})", "$1-$2", ["[34679]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "MW": ["265", "00", "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}", [7, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["1[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[137-9]"], "0$1"]], "0"], "MX": ["52", "0[09]", "[2-9]\\d{9}", [10], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["33|5[56]|81"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "MY": ["60", "00", "1\\d{8,9}|(?:3\\d|[4-9])\\d{7}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1-$2 $3", ["[4-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1-$2 $3", ["1(?:[02469]|[378][1-9]|53)|8", "1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2 $3", ["3"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3-$4", ["1(?:[367]|80)"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2 $3", ["15"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2 $3", ["1"], "0$1"]], "0"], "MZ": ["258", "00", "(?:2|8\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2|8[2-79]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], "NA": ["264", "00", "[68]\\d{7,8}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["87"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], "NC": ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]]], "NE": ["227", "00", "[027-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["08"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[089]|2[013]|7[0467]"]]]], "NF": ["672", "00", "[13]\\d{5}", [6], [["(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], ["(\\d)(\\d{5})", "$1 $2", ["[13]"]]], 0, 0, "([0-258]\\d{4})$", "3$1"], "NG": ["234", "009", "(?:20|9\\d)\\d{8}|[78]\\d{9,13}", [10, 11, 12, 13, 14], [["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[7-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], ["(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{3})(\\d{5})(\\d{5,6})", "$1 $2 $3", ["[78]"], "0$1"]], "0"], "NI": ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]]], "NL": ["31", "00", "(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}", [5, 6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], ["(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], ["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], "0"], "NO": ["47", "00", "(?:0|[2-9]\\d{3})\\d{4}", [5, 8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], 0, 0, 0, 0, 0, "[02-689]|7[0-8]"], "NP": ["977", "00", "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", [8, 10, 11], [["(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], ["(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"], ["(\\d{3})(\\d{7})", "$1-$2", ["9"]]], "0"], "NR": ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]]], "NU": ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]]], "NZ": ["64", "0(?:0|161)", "[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,8})", "$1 $2", ["8[1-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["50[036-8]|8|90", "50(?:[0367]|88)|8|90"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["24|[346]|7[2-57-9]|9[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:10|74)|[589]"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1|2[028]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,5})", "$1 $2 $3", ["2(?:[169]|7[0-35-9])|7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "00"], "OM": ["968", "00", "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", [7, 8, 9], [["(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], ["(\\d{2})(\\d{6})", "$1 $2", ["2"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]]], "PA": ["507", "00", "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", [7, 8, 10, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[1-57-9]"]], ["(\\d{4})(\\d{4})", "$1-$2", ["[68]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]]], "PE": ["51", "00|19(?:1[124]|77|90)00", "(?:[14-8]|9\\d)\\d{7}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["80"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["1"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[4-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"]]], "0", 0, 0, 0, 0, 0, 0, "00", " Anexo "], "PF": ["689", "00", "4\\d{5}(?:\\d{2})?|8\\d{7,8}", [6, 8, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["44"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4|8[7-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], "PG": ["675", "00|140[1-3]", "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "PH": ["63", "00", "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", [6, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{5})", "$1 $2", ["2"], "(0$1)"], ["(\\d{4})(\\d{4,6})", "$1 $2", ["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2", "3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"], "(0$1)"], ["(\\d{5})(\\d{4})", "$1 $2", ["346|4(?:27|9[35])|883", "3469|4(?:279|9(?:30|56))|8834"], "(0$1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|8[2-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["1"]]], "0"], "PK": ["92", "00", "122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,7})", "$1 $2 $3", ["[89]0"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["1"]], ["(\\d{3})(\\d{6,7})", "$1 $2", ["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])", "9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"], "(0$1)"], ["(\\d{2})(\\d{7,8})", "$1 $2", ["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"], "(0$1)"], ["(\\d{5})(\\d{5})", "$1 $2", ["58"], "(0$1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[24-9]"], "(0$1)"]], "0"], "PL": ["48", "00", "(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{5})", "$1", ["19"]], ["(\\d{3})(\\d{3})", "$1 $2", ["11|20|64"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1", "(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["64"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]]], "PM": ["508", "00", "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[45]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "PR": ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939"], "PS": ["970", "00", "[2489]2\\d{6}|(?:1\\d|5)\\d{8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2489]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "PT": ["351", "00", "1693\\d{5}|(?:[26-9]\\d|30)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["2[12]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["16|[236-9]"]]]], "PW": ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "PY": ["595", "00", "59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3,6})", "$1 $2", ["[2-9]0"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"], "(0$1)"], ["(\\d{3})(\\d{4,5})", "$1 $2", ["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["87"]], ["(\\d{3})(\\d{6})", "$1 $2", ["9(?:[5-79]|8[1-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"]]], "0"], "QA": ["974", "00", "800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}", [7, 8, 9, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["2[136]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]]], "RE": ["262", "00", "709\\d{6}|(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"], ["(?:69(?:2\\d\\d|3(?:[06][0-6]|1[0-3]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-6]|76(?:2[278]|3[0-37]))\\d{4}"], ["8(?:1[019]|2[0156]|84|90)\\d{6}"]]], "RO": ["40", "00", "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", [6, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["2[3-6]", "2[3-6]\\d9"], "0$1"], ["(\\d{2})(\\d{4})", "$1 $2", ["219|31"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[23]1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[236-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, " int "], "RS": ["381", "00", "38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}", [6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{3,9})", "$1 $2", ["(?:2[389]|39)0|[7-9]"], "0$1"], ["(\\d{2})(\\d{5,10})", "$1 $2", ["[1-36]"], "0$1"]], "0"], "RU": ["7", "810", "8\\d{13}|[347-9]\\d{9}", [10, 14], [["(\\d{4})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-8]|2[1-9])", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"], "8 ($1)", 1], ["(\\d{5})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-68]|2[1-9])", "7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))", "7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[349]|8(?:[02-7]|1[1-8])"], "8 ($1)", 1], ["(\\d{4})(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["8"], "8 ($1)"]], "8", 0, 0, 0, 0, 0, [["336(?:[013-9]\\d|2[013-9])\\d{5}|(?:3(?:0[12]|4[1-35-79]|5[1-3]|65|8[1-58]|9[0145])|4(?:01|1[1356]|2[13467]|7[1-5]|8[1-7]|9[1-689])|8(?:1[1-8]|2[01]|3[13-6]|4[0-8]|5[15-7]|6[0-35-79]|7[1-37-9]))\\d{7}", [10]], ["9\\d{9}", [10]], ["8(?:0[04]|108\\d{3})\\d{7}"], ["80[39]\\d{7}", [10]], ["808\\d{7}", [10]]], "8~10"], "RW": ["250", "00", "(?:06|[27]\\d\\d|[89]00)\\d{6}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0$1"]], "0"], "SA": ["966", "00", "(?:[15]\\d|800|92)\\d{7}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["9"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0"], "SB": ["677", "0[01]", "[6-9]\\d{6}|[1-6]\\d{4}", [5, 7], [["(\\d{2})(\\d{5})", "$1 $2", ["6[89]|7|8[4-9]|9(?:[1-8]|9[0-8])"]]]], "SC": ["248", "010|0[0-2]", "(?:[2489]\\d|64)\\d{5}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[246]|9[57]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "SD": ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], "SE": ["46", "00", "(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}", [6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1", 0, "$1 $2"], ["(\\d{2})(\\d{3})(\\d{2})", "$1-$2 $3", ["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3"], ["(\\d)(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{2,3})(\\d{3})", "$1-$2 $3", ["9(?:00|39|44)"], "0$1", 0, "$1 $2 $3"], ["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["10|7"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{3})", "$1-$2 $3 $4", ["9"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4 $5", ["[26]"], "0$1", 0, "$1 $2 $3 $4 $5"]], "0"], "SG": ["65", "0[0-3]\\d", "(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{4})(\\d{4})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], "SH": ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]"], "SI": ["386", "00|10(?:22|66|88|99)", "[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}", [5, 6, 7, 8], [["(\\d{2})(\\d{3,6})", "$1 $2", ["8[09]|9"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["59|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37][01]|4[0139]|51|6"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-57]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, 0, "00"], "SJ": ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79"], "SK": ["421", "00", "[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", [6, 7, 9], [["(\\d)(\\d{2})(\\d{3,4})", "$1 $2 $3", ["21"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["[3-5][1-8]1", "[3-5][1-8]1[67]"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1/$2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[689]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1/$2 $3 $4", ["[3-5]"], "0$1"]], "0"], "SL": ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0"], "SM": ["378", "00", "(?:0549|[5-7]\\d)\\d{6}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]"]], ["(\\d{4})(\\d{6})", "$1 $2", ["0"]]], 0, 0, "([89]\\d{5})$", "0549$1"], "SN": ["221", "00", "(?:[378]\\d|93)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[379]"]]]], "SO": ["252", "00", "[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}", [6, 7, 8, 9], [["(\\d{2})(\\d{4})", "$1 $2", ["8[125]"]], ["(\\d{6})", "$1", ["[134]"]], ["(\\d)(\\d{6})", "$1 $2", ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]], ["(\\d)(\\d{7})", "$1 $2", ["(?:2|90)4|[67]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[348]|64|79|90"]], ["(\\d{2})(\\d{5,7})", "$1 $2", ["1|28|6[0-35-9]|7[67]|9[2-9]"]]], "0"], "SR": ["597", "00", "(?:[2-5]|68|[78]\\d|90)\\d{5}", [6, 7], [["(\\d{2})(\\d{2})(\\d{2})", "$1-$2-$3", ["56"]], ["(\\d{3})(\\d{3})", "$1-$2", ["[2-5]"]], ["(\\d{3})(\\d{4})", "$1-$2", ["[6-9]"]]]], "SS": ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], "ST": ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]]], "SV": ["503", "00", "[267]\\d{7}|(?:80\\d|900)\\d{4}(?:\\d{4})?", [7, 8, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[89]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[267]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[89]"]]]], "SX": ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721"], "SY": ["963", "00", "[1-39]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-5]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1", 1]], "0"], "SZ": ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], "TA": ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], "TC": ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], "TD": ["235", "00|16", "(?:22|30|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[236-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "TG": ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]]], "TH": ["66", "00[1-9]", "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", [8, 9, 10, 13], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[13-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "TJ": ["992", "810", "[0-57-9]\\d{8}", [9], [["(\\d{6})(\\d)(\\d{2})", "$1 $2 $3", ["331", "3317"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["44[02-479]|[34]7"]], ["(\\d{4})(\\d)(\\d{4})", "$1 $2 $3", ["3(?:[1245]|3[12])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[0-57-9]"]]], 0, 0, 0, 0, 0, 0, 0, "8~10"], "TK": ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7]], "TL": ["670", "00", "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], ["(\\d{4})(\\d{4})", "$1 $2", ["7"]]]], "TM": ["993", "810", "(?:[1-6]\\d|71)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["12"], "(8 $1)"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-5]"], "(8 $1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[67]"], "8 $1"]], "8", 0, 0, 0, 0, 0, 0, "8~10"], "TN": ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]]], "TO": ["676", "00", "(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}", [5, 7], [["(\\d{2})(\\d{3})", "$1-$2", ["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], ["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[5-9]"]]]], "TR": ["90", "00", "4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}", [7, 10, 12, 13], [["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["512|8[01589]|90"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5(?:[0-59]|61)", "5(?:[0-59]|61[06])", "5(?:[0-59]|61[06]1)"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24][1-8]|3[1-9]"], "(0$1)", 1], ["(\\d{3})(\\d{3})(\\d{6,7})", "$1 $2 $3", ["80"], "0$1", 1]], "0"], "TT": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868"], "TV": ["688", "00", "(?:2|7\\d\\d|90)\\d{4}", [5, 6, 7], [["(\\d{2})(\\d{3})", "$1 $2", ["2"]], ["(\\d{2})(\\d{4})", "$1 $2", ["90"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], "TW": ["886", "0(?:0[25-79]|19)", "[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}", [7, 8, 9, 10, 11], [["(\\d{2})(\\d)(\\d{4})", "$1 $2 $3", ["202"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[258]0"], "0$1"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]", "[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, "#"], "TZ": ["255", "00[056]", "(?:[25-8]\\d|41|90)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[24]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["5"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[67]"], "0$1"]], "0"], "UA": ["380", "00", "[89]\\d{9}|[3-9]\\d{8}", [9, 10], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]", "6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])", "3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|89|9[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "0~0"], "UG": ["256", "00[057]", "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", [9], [["(\\d{4})(\\d{5})", "$1 $2", ["202", "2024"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[27-9]|4(?:6[45]|[7-9])"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[34]"], "0$1"]], "0"], "US": ["1", "011", "[2-9]\\d{9}|3\\d{6}", [10], [["(\\d{3})(\\d{4})", "$1-$2", ["310"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "($1) $2-$3", ["[2-9]"], 0, 1, "$1-$2-$3"]], "1", 0, 0, 0, 0, 0, [["(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[0-68]))\\d{4}|(?:2742|305[3-9]|472[247-9]|505[2-57-9]|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[0135-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-247]|4[0378]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[0168]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-3589]|8[04-69]))[2-9]\\d{6}"], [""], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"], ["900[2-9]\\d{6}"], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"], 0, 0, 0, ["305209\\d{4}"]]], "UY": ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}", [6, 7, 8, 9, 10, 11, 12, 13], [["(\\d{3})(\\d{3,4})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[49]0|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[124]"]], ["(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3 $4", ["0"]]], "0", 0, 0, 0, 0, 0, 0, "00", " int. "], "UZ": ["998", "00", "(?:20|33|[5-9]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[235-9]"]]]], "VA": ["39", "00", "0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}", [6, 7, 8, 9, 10, 11, 12], 0, 0, 0, 0, 0, 0, "06698"], "VC": ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784"], "VE": ["58", "00", "[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}", [10], [["(\\d{3})(\\d{7})", "$1-$2", ["[24-689]"], "0$1"]], "0"], "VG": ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284"], "VI": ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340"], "VN": ["84", "00", "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["80"], "0$1", 1], ["(\\d{4})(\\d{4,6})", "$1 $2", ["1"], 0, 1], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["6"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[357-9]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["2[48]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["2"], "0$1", 1]], "0"], "VU": ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]]], "WF": ["681", "00", "(?:40|72|8\\d{4})\\d{4}|[89]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[47-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], "WS": ["685", "0", "(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}", [5, 6, 7, 10], [["(\\d{5})", "$1", ["[2-5]|6[1-9]"]], ["(\\d{3})(\\d{3,7})", "$1 $2", ["[68]"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], "XK": ["383", "00", "2\\d{7,8}|3\\d{7,11}|(?:4\\d\\d|[89]00)\\d{5}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2|39"], "0$1"], ["(\\d{2})(\\d{7,10})", "$1 $2", ["3"], "0$1"]], "0"], "YE": ["967", "00", "(?:1|7\\d)\\d{7}|[1-7]\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-6]|7(?:[24-6]|8[0-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"], "0$1"]], "0"], "YT": ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [["269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}"], ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}"], ["80\\d{7}"], 0, 0, 0, 0, 0, ["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]], "ZA": ["27", "00", "[1-79]\\d{8}|8\\d{4,9}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,4})", "$1 $2", ["8[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["8[1-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["860"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], "ZM": ["260", "00", "800\\d{6}|(?:21|[579]\\d|63)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[579]"], "0$1"]], "0"], "ZW": ["263", "00", "2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}", [5, 6, 7, 8, 9, 10], [["(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], ["(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], ["(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], "0"] }, "nonGeographic": { "800": ["800", 0, "(?:00|[1-9]\\d)\\d{6}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["\\d"]]], 0, 0, 0, 0, 0, 0, [0, 0, ["(?:00|[1-9]\\d)\\d{6}"]]], "808": ["808", 0, "[1-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, 0, ["[1-9]\\d{7}"]]], "870": ["870", 0, "7\\d{11}|[235-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"], 0, 0, 0, 0, 0, 0, ["2\\d{8}", [9]]]], "878": ["878", 0, "10\\d{10}", [12], [["(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["10\\d{10}"]]], "881": ["881", 0, "6\\d{9}|[0-36-9]\\d{8}", [9, 10], [["(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], ["(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], 0, 0, 0, 0, 0, 0, [0, ["6\\d{9}|[0-36-9]\\d{8}"]]], "882": ["882", 0, "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5})", "$1 $2", ["16|342"]], ["(\\d{2})(\\d{6})", "$1 $2", ["49"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["1[36]|9"]], ["(\\d{2})(\\d{4})(\\d{3})", "$1 $2 $3", ["3[23]"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["16"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|23|3(?:[15]|4[57])|4|51"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["34"]], ["(\\d{2})(\\d{4,5})(\\d{5})", "$1 $2 $3", ["[1-35]"]]], 0, 0, 0, 0, 0, 0, [0, ["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}", [7, 8, 9, 10, 12]], 0, 0, 0, ["348[57]\\d{7}", [11]], 0, 0, ["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]], "883": ["883", 0, "(?:[1-4]\\d|51)\\d{6,10}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,8})", "$1 $2 $3", ["[14]|2[24-689]|3[02-689]|51[24-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["510"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["21"]], ["(\\d{4})(\\d{4})(\\d{4})", "$1 $2 $3", ["51[13]"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[235]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]], "888": ["888", 0, "\\d{11}", [11], [["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, ["\\d{11}"]]], "979": ["979", 0, "[1359]\\d{8}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, ["[1359]\\d{8}"]]] } };
|
|
21603
|
+
const metadata = { "version": 4, "country_calling_codes": { "1": ["US", "AG", "AI", "AS", "BB", "BM", "BS", "CA", "DM", "DO", "GD", "GU", "JM", "KN", "KY", "LC", "MP", "MS", "PR", "SX", "TC", "TT", "VC", "VG", "VI"], "7": ["RU", "KZ"], "20": ["EG"], "27": ["ZA"], "30": ["GR"], "31": ["NL"], "32": ["BE"], "33": ["FR"], "34": ["ES"], "36": ["HU"], "39": ["IT", "VA"], "40": ["RO"], "41": ["CH"], "43": ["AT"], "44": ["GB", "GG", "IM", "JE"], "45": ["DK"], "46": ["SE"], "47": ["NO", "SJ"], "48": ["PL"], "49": ["DE"], "51": ["PE"], "52": ["MX"], "53": ["CU"], "54": ["AR"], "55": ["BR"], "56": ["CL"], "57": ["CO"], "58": ["VE"], "60": ["MY"], "61": ["AU", "CC", "CX"], "62": ["ID"], "63": ["PH"], "64": ["NZ"], "65": ["SG"], "66": ["TH"], "81": ["JP"], "82": ["KR"], "84": ["VN"], "86": ["CN"], "90": ["TR"], "91": ["IN"], "92": ["PK"], "93": ["AF"], "94": ["LK"], "95": ["MM"], "98": ["IR"], "211": ["SS"], "212": ["MA", "EH"], "213": ["DZ"], "216": ["TN"], "218": ["LY"], "220": ["GM"], "221": ["SN"], "222": ["MR"], "223": ["ML"], "224": ["GN"], "225": ["CI"], "226": ["BF"], "227": ["NE"], "228": ["TG"], "229": ["BJ"], "230": ["MU"], "231": ["LR"], "232": ["SL"], "233": ["GH"], "234": ["NG"], "235": ["TD"], "236": ["CF"], "237": ["CM"], "238": ["CV"], "239": ["ST"], "240": ["GQ"], "241": ["GA"], "242": ["CG"], "243": ["CD"], "244": ["AO"], "245": ["GW"], "246": ["IO"], "247": ["AC"], "248": ["SC"], "249": ["SD"], "250": ["RW"], "251": ["ET"], "252": ["SO"], "253": ["DJ"], "254": ["KE"], "255": ["TZ"], "256": ["UG"], "257": ["BI"], "258": ["MZ"], "260": ["ZM"], "261": ["MG"], "262": ["RE", "YT"], "263": ["ZW"], "264": ["NA"], "265": ["MW"], "266": ["LS"], "267": ["BW"], "268": ["SZ"], "269": ["KM"], "290": ["SH", "TA"], "291": ["ER"], "297": ["AW"], "298": ["FO"], "299": ["GL"], "350": ["GI"], "351": ["PT"], "352": ["LU"], "353": ["IE"], "354": ["IS"], "355": ["AL"], "356": ["MT"], "357": ["CY"], "358": ["FI", "AX"], "359": ["BG"], "370": ["LT"], "371": ["LV"], "372": ["EE"], "373": ["MD"], "374": ["AM"], "375": ["BY"], "376": ["AD"], "377": ["MC"], "378": ["SM"], "380": ["UA"], "381": ["RS"], "382": ["ME"], "383": ["XK"], "385": ["HR"], "386": ["SI"], "387": ["BA"], "389": ["MK"], "420": ["CZ"], "421": ["SK"], "423": ["LI"], "500": ["FK"], "501": ["BZ"], "502": ["GT"], "503": ["SV"], "504": ["HN"], "505": ["NI"], "506": ["CR"], "507": ["PA"], "508": ["PM"], "509": ["HT"], "590": ["GP", "BL", "MF"], "591": ["BO"], "592": ["GY"], "593": ["EC"], "594": ["GF"], "595": ["PY"], "596": ["MQ"], "597": ["SR"], "598": ["UY"], "599": ["CW", "BQ"], "670": ["TL"], "672": ["NF"], "673": ["BN"], "674": ["NR"], "675": ["PG"], "676": ["TO"], "677": ["SB"], "678": ["VU"], "679": ["FJ"], "680": ["PW"], "681": ["WF"], "682": ["CK"], "683": ["NU"], "685": ["WS"], "686": ["KI"], "687": ["NC"], "688": ["TV"], "689": ["PF"], "690": ["TK"], "691": ["FM"], "692": ["MH"], "850": ["KP"], "852": ["HK"], "853": ["MO"], "855": ["KH"], "856": ["LA"], "880": ["BD"], "886": ["TW"], "960": ["MV"], "961": ["LB"], "962": ["JO"], "963": ["SY"], "964": ["IQ"], "965": ["KW"], "966": ["SA"], "967": ["YE"], "968": ["OM"], "970": ["PS"], "971": ["AE"], "972": ["IL"], "973": ["BH"], "974": ["QA"], "975": ["BT"], "976": ["MN"], "977": ["NP"], "992": ["TJ"], "993": ["TM"], "994": ["AZ"], "995": ["GE"], "996": ["KG"], "998": ["UZ"] }, "countries": { "AC": ["247", "00", "(?:[01589]\\d|[46])\\d{4}", [5, 6]], "AD": ["376", "00", "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", [6, 8, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["[135-9]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["1"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]]], "AE": ["971", "00", "(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{2,9})", "$1 $2", ["60|8"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[236]|[479][2-8]"], "0$1"], ["(\\d{3})(\\d)(\\d{5})", "$1 $2 $3", ["[479]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"]], "0"], "AF": ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0"], "AG": ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268"], "AI": ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264"], "AL": ["355", "00", "(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}", [6, 7, 8, 9], [["(\\d{3})(\\d{3,4})", "$1 $2", ["80|9"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["4[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2358][2-5]|4"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["[23578]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["6"], "0$1"]], "0"], "AM": ["374", "00", "(?:[1-489]\\d|55|60|77)\\d{6}", [8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[89]0"], "0 $1"], ["(\\d{3})(\\d{5})", "$1 $2", ["2|3[12]"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["1|47"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[3-9]"], "0$1"]], "0"], "AO": ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]]], "AR": ["54", "00", "(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}", [10, 11], [["(\\d{4})(\\d{2})(\\d{4})", "$1 $2-$3", ["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])", "2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["1"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[68]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2-$3", ["[23]"], "0$1", 1], ["(\\d)(\\d{4})(\\d{2})(\\d{4})", "$2 15-$3-$4", ["9(?:2[2-469]|3[3-578])", "9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))", "9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d)(\\d{2})(\\d{4})(\\d{4})", "$2 15-$3-$4", ["91"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d{3})(\\d{3})(\\d{5})", "$1-$2-$3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{4})", "$2 15-$3-$4", ["9"], "0$1", 0, "$1 $2 $3-$4"]], "0", 0, "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?", "9$1"], "AS": ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684"], "AT": ["43", "00", "1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{3,12})", "$1 $2", ["1(?:11|[2-9])"], "0$1"], ["(\\d{3})(\\d{2})", "$1 $2", ["517"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["5[079]"], "0$1"], ["(\\d{3})(\\d{3,10})", "$1 $2", ["(?:31|4)6|51|6(?:48|5[0-3579]|[6-9])|7(?:20|32|8)|[89]", "(?:31|4)6|51|6(?:485|5[0-3579]|[6-9])|7(?:20|32|8)|[89]"], "0$1"], ["(\\d{4})(\\d{3,9})", "$1 $2", ["[2-467]|5[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,7})", "$1 $2 $3", ["5"], "0$1"]], "0"], "AU": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}", [5, 6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{3,4})", "$1 $2", ["16"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["16"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["14|4"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[2378]"], "(0$1)"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:30|[89])"]]], "0", 0, "(183[12])|0", 0, 0, 0, [["(?:(?:241|349)0\\d\\d|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4])|[34]\\d\\d)|91(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79]))))\\d{3}|(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8])|8(?:55|6[0-8]|[78]\\d|9[02-9]))\\d{6}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, ["163\\d{2,6}", [5, 6, 7, 8, 9]], ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "AW": ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]]], "AX": ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}", [5, 6, 7, 8, 9, 10, 11, 12], 0, "0", 0, 0, 0, 0, "18", 0, "00"], "AZ": ["994", "00", "365\\d{6}|(?:[124579]\\d|60|88)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[28]|2|365|46", "1[28]|2|365[45]|46", "1[28]|2|365(?:4|5[02])|46"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[13-9]"], "0$1"]], "0"], "BA": ["387", "00", "6\\d{8}|(?:[35689]\\d|49|70)\\d{6}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[1-3]|[7-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2-$3", ["[3-5]|6[56]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["6"], "0$1"]], "0"], "BB": ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246"], "BD": ["880", "00", "[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1-$2", ["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"], "0$1"], ["(\\d{4})(\\d{3,6})", "$1-$2", ["[13-9]|2[23]"], "0$1"], ["(\\d)(\\d{7,8})", "$1-$2", ["2"], "0$1"]], "0"], "BE": ["32", "00", "4\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:80|9)0"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[239]|4[23]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[15-8]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4"], "0$1"]], "0"], "BF": ["226", "00", "(?:[025-7]\\d|44)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[024-7]"]]]], "BG": ["359", "00", "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", [6, 7, 8, 9, 12], [["(\\d)(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["43[1-6]|70[1-9]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:70|8)0"], "0$1"], ["(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3", ["43[1-7]|7"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[48]|9[08]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"]], "0"], "BH": ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]]], "BI": ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]]], "BJ": ["229", "00", "(?:01\\d|8)\\d{7}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["0"]]]], "BL": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "BM": ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441"], "BN": ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]]], "BO": ["591", "00(?:1\\d)?", "8001\\d{5}|(?:[2-467]\\d|50)\\d{6}", [8, 9], [["(\\d)(\\d{7})", "$1 $2", ["[235]|4[46]"]], ["(\\d{8})", "$1", ["[67]"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, "0(1\\d)?"], "BQ": ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]"], "BR": ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "[1-467]\\d{9,10}|55[0-46-9]\\d{8}|[34]\\d{7}|55\\d{7,8}|(?:5[0-46-9]|[89]\\d)\\d{7,9}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37|86)", "300|4(?:0(?:0|20)|370|864)"]], ["(\\d{3})(\\d{2,3})(\\d{4})", "$1 $2 $3", ["(?:[358]|90)0"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"], "($1)"], ["(\\d{2})(\\d{5})(\\d{4})", "$1 $2-$3", ["[16][1-9]|[2-57-9]"], "($1)"]], "0", 0, "(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?", "$2"], "BS": ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242"], "BT": ["975", "00", "[178]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-6]|7[246]|8[2-4]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|[78]"]]]], "BW": ["267", "00", "(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["90"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[24-6]|3[15-9]"]], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37]"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["8"]]]], "BY": ["375", "810", "(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3})", "$1 $2", ["800"], "8 $1"], ["(\\d{3})(\\d{2})(\\d{2,4})", "$1 $2 $3", ["800"], "8 $1"], ["(\\d{4})(\\d{2})(\\d{3})", "$1 $2-$3", ["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])", "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"], "8 0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["1(?:[56]|7[467])|2[1-3]"], "8 0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-4]"], "8 0$1"], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[89]"], "8 $1"]], "8", 0, "0|80?", 0, 0, 0, 0, "8~10"], "BZ": ["501", "00", "(?:0800\\d|[2-8])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], ["(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]]], "CA": ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [["(?:2(?:04|[23]6|[48]9|5[07]|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [10]], ["", [10]], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", [10]], ["900[2-9]\\d{6}", [10]], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:2[125-9]|33|44|66|77|88)|6(?:22|33))[2-9]\\d{6}", [10]], 0, ["310\\d{4}", [7]], 0, ["600[2-9]\\d{6}", [10]]]], "CC": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "CD": ["243", "00", "(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[1-6]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], "0"], "CF": ["236", "00", "(?:[27]\\d{3}|8776)\\d{4}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]]], "CG": ["242", "00", "222\\d{6}|(?:0\\d|80)\\d{7}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]]], "CH": ["41", "00", "8\\d{11}|[2-9]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8[047]|90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]|81"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["8"], "0$1"]], "0"], "CI": ["225", "00", "[02]\\d{9}", [10], [["(\\d{2})(\\d{2})(\\d)(\\d{5})", "$1 $2 $3 $4", ["2"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3 $4", ["0"]]]], "CK": ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]]], "CL": ["56", "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", [9, 10, 11], [["(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["60|809"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9(?:10|[2-9])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-8]|[1-9])"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]]], "CM": ["237", "00", "[26]\\d{8}|88\\d{6,7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["88"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[26]|88"]]]], "CN": ["86", "00|1(?:[12]\\d|79)\\d\\d00", "(?:(?:1[03-689]|2\\d)\\d\\d|6)\\d{8}|1\\d{10}|[126]\\d{6}(?:\\d(?:\\d{2})?)?|86\\d{5,6}|(?:[3-579]\\d|8[0-57-9])\\d{5,9}", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5,6})", "$1 $2", ["(?:10|2[0-57-9])[19]|3(?:[157]|35|49|9[1-68])|4(?:1[124-9]|2[179]|6[47-9]|7|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:07|1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3|4[13]|5[1-5]|7[0-79]|9[0-35-9])|(?:4[35]|59|85)[1-9]", "(?:10|2[0-57-9])(?:1[02]|9[56])|8078|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))1", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|80781|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))12", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|807812|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:078|1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123"], "0$1"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]", "(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]", "85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])", "85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["(?:4|80)0"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|2(?:[02-57-9]|1[1-9])", "10|2(?:[02-57-9]|1[1-9])", "10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"], "0$1", 1], ["(\\d{3})(\\d{7,8})", "$1 $2", ["9"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["80"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[3-578]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["1[3-9]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["[12]"], "0$1", 1]], "0", 0, "(1(?:[12]\\d|79)\\d\\d)|0", 0, 0, 0, 0, "00"], "CO": ["57", "00(?:4(?:[14]4|56)|[579])", "(?:46|60\\d\\d)\\d{6}|(?:1\\d|[39])\\d{9}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["46"]], ["(\\d{3})(\\d{7})", "$1 $2", ["6|90"], "($1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3[0-357]|9[14]"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?"], "CR": ["506", "00", "(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}", [8, 10], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[3-9]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[89]"]]], 0, 0, "(19(?:0[0-2468]|1[09]|20|66|77|99))"], "CU": ["53", "119", "(?:[2-7]|8\\d\\d)\\d{7}|[2-47]\\d{6}|[34]\\d{5}", [6, 7, 8, 10], [["(\\d{2})(\\d{4,6})", "$1 $2", ["2[1-4]|[34]"], "(0$1)"], ["(\\d)(\\d{6,7})", "$1 $2", ["7"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["[56]"], "0$1"], ["(\\d{3})(\\d{7})", "$1 $2", ["8"], "0$1"]], "0"], "CV": ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]]], "CW": ["599", "00", "(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[3467]"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["9[4-8]"]]], 0, 0, 0, 0, 0, "[69]"], "CX": ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], "CY": ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]]], "CZ": ["420", "00", "(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}", [9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]|9[015-7]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["96"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]]], "DE": ["49", "00", "[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [["(\\d{2})(\\d{3,13})", "$1 $2", ["3[02]|40|[68]9"], "0$1"], ["(\\d{3})(\\d{3,12})", "$1 $2", ["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1", "2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"], "0$1"], ["(\\d{4})(\\d{2,11})", "$1 $2", ["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]", "[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["138"], "0$1"], ["(\\d{5})(\\d{2,10})", "$1 $2", ["3"], "0$1"], ["(\\d{3})(\\d{5,11})", "$1 $2", ["181"], "0$1"], ["(\\d{3})(\\d)(\\d{4,10})", "$1 $2 $3", ["1(?:3|80)|9"], "0$1"], ["(\\d{3})(\\d{7,8})", "$1 $2", ["1[67]"], "0$1"], ["(\\d{3})(\\d{7,12})", "$1 $2", ["8"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["185", "1850", "18500"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["18[68]"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["15[1279]"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["15[03568]", "15(?:[0568]|3[13])"], "0$1"], ["(\\d{3})(\\d{8})", "$1 $2", ["18"], "0$1"], ["(\\d{3})(\\d{2})(\\d{7,8})", "$1 $2 $3", ["1(?:6[023]|7)"], "0$1"], ["(\\d{4})(\\d{2})(\\d{7})", "$1 $2 $3", ["15[279]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{8})", "$1 $2 $3", ["15"], "0$1"]], "0"], "DJ": ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]]], "DK": ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]]], "DM": ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767"], "DO": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9"], "DZ": ["213", "00", "(?:[1-4]|[5-79]\\d|80)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["9"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-8]"], "0$1"]], "0"], "EC": ["593", "00", "1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}", [8, 9, 10, 11], [["(\\d)(\\d{3})(\\d{4})", "$1 $2-$3", ["[2-7]"], "(0$1)", 0, "$1-$2-$3"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1"]]], "0"], "EE": ["372", "00", "8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88", "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]], ["(\\d{4})(\\d{3,4})", "$1 $2", ["[45]|8(?:00|[1-49])", "[45]|8(?:00[1-9]|[1-49])"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], "EG": ["20", "00", "[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}", [8, 9, 10], [["(\\d)(\\d{7,8})", "$1 $2", ["[23]"], "0$1"], ["(\\d{2})(\\d{6,7})", "$1 $2", ["1[35]|[4-6]|8[2468]|9[235-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{8})", "$1 $2", ["1"], "0$1"]], "0"], "EH": ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, "528[89]"], "ER": ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0"], "ES": ["34", "00", "[5-9]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]00"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-9]"]]]], "ET": ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0"], "FI": ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{5})", "$1", ["20[2-59]"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1 $2", ["(?:[1-3]0|[68])0|70[07-9]"], "0$1"], ["(\\d{2})(\\d{4,8})", "$1 $2", ["[14]|2[09]|50|7[135]"], "0$1"], ["(\\d{2})(\\d{6,10})", "$1 $2", ["7"], "0$1"], ["(\\d)(\\d{4,9})", "$1 $2", ["(?:19|[2568])[1-8]|3(?:0[1-9]|[1-9])|9"], "0$1"]], "0", 0, 0, 0, 0, "1[03-79]|[2-9]", 0, "00"], "FJ": ["679", "0(?:0|52)", "45\\d{5}|(?:0800\\d|[235-9])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[235-9]|45"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "FK": ["500", "00", "[2-7]\\d{4}", [5]], "FM": ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]]], "FO": ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))"], "FR": ["33", "00", "[1-9]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0 $1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[1-79]"], "0$1"]], "0"], "GA": ["241", "00", "(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}", [7, 8], [["(\\d)(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-7]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["11|[67]"], "0$1"]], 0, 0, "0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})", "$1"], "GB": ["44", "00", "[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}", [7, 9, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["800", "8001", "80011", "800111", "8001111"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["845", "8454", "84546", "845464"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["800"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["1(?:38|5[23]|69|76|94)", "1(?:(?:38|69)7|5(?:24|39)|768|946)", "1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["1(?:[2-69][02-9]|[78])"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[25]|7(?:0|6[02-9])", "[25]|7(?:0|6(?:[03-9]|2[356]))"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1389]"], "0$1"]], "0", 0, "0|180020", 0, 0, 0, [["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0-5])|4(?:(?:[0-5]\\d|70)\\d|69[7-9])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|5[01]))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-3]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}", [9, 10]], ["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]], 0, " x"], "GD": ["1", "011", "(?:473|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "473$1", 0, "473"], "GE": ["995", "00", "(?:[3-57]\\d\\d|800)\\d{6}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["32"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[57]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[348]"], "0$1"]], "0"], "GF": ["594", "00", "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|9[47]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], "0"], "GG": ["44", "00", "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", [7, 9, 10], 0, "0", 0, "([25-9]\\d{5})$|0|180020", "1481$1", 0, 0, [["1481[25-9]\\d{5}", [10]], ["7(?:(?:781|839)\\d|911[17])\\d{5}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]]], "GH": ["233", "00", "(?:[235]\\d{3}|800)\\d{5}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], "0"], "GI": ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]]], "GL": ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]]], "GM": ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "GN": ["224", "00", "722\\d{6}|(?:3|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]]], "GP": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0", 0, 0, 0, 0, 0, [["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "GQ": ["240", "00", "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], ["(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]]], "GR": ["30", "00", "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", [10, 11, 12], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["21|7"]], ["(\\d{4})(\\d{6})", "$1 $2", ["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2689]"]], ["(\\d{3})(\\d{3,4})(\\d{5})", "$1 $2 $3", ["8"]]]], "GT": ["502", "00", "80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-8]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], "GU": ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671"], "GW": ["245", "00", "[49]\\d{8}|4\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["40"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"]]]], "GY": ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "HK": ["852", "00(?:30|5[09]|[126-9]?)", "8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}", [5, 6, 7, 8, 9, 11], [["(\\d{3})(\\d{2,5})", "$1 $2", ["900", "9003"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{3})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "HN": ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]]], "HR": ["385", "00", "[2-69]\\d{8}|80\\d{5,7}|[1-79]\\d{7}|6\\d{6}", [7, 8, 9], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["6[01]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{4})(\\d{3})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6|7[245]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-57]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"]], "0"], "HT": ["509", "00", "[2-589]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]]], "HU": ["36", "00", "[235-7]\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "06 $1"]], "06"], "ID": ["62", "00[89]", "00[1-9]\\d{9,14}|(?:[1-36]|8\\d{5})\\d{6}|00\\d{9}|[1-9]\\d{8,10}|[2-9]\\d{7}", [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["15"]], ["(\\d{2})(\\d{5,9})", "$1 $2", ["2[124]|[36]1"], "(0$1)"], ["(\\d{3})(\\d{5,7})", "$1 $2", ["800"], "0$1"], ["(\\d{3})(\\d{5,8})", "$1 $2", ["[2-79]"], "(0$1)"], ["(\\d{3})(\\d{3,4})(\\d{3})", "$1-$2-$3", ["8[1-35-9]"], "0$1"], ["(\\d{3})(\\d{6,8})", "$1 $2", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["804"], "0$1"], ["(\\d{3})(\\d)(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["80"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1-$2-$3", ["8"], "0$1"]], "0"], "IE": ["353", "00", "(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["2[24-9]|47|58|6[237-9]|9[35-9]"], "(0$1)"], ["(\\d{3})(\\d{5})", "$1 $2", ["[45]0"], "(0$1)"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2569]|4[1-69]|7[14]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["81"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], ["(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "IL": ["972", "0(?:0|1[2-9])", "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", [7, 8, 9, 10, 11, 12], [["(\\d{4})(\\d{3})", "$1-$2", ["125"]], ["(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], ["(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], ["(\\d{4})(\\d{6})", "$1-$2", ["159"]], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], ["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], "0"], "IM": ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0|180020", "1624$1", 0, "74576|(?:16|7[56])24"], "IN": ["91", "00", "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", [8, 9, 10, 11, 12, 13], [["(\\d{8})", "$1", ["5(?:0|2[23]|3[03]|[67]1|88)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"], 0, 1], ["(\\d{4})(\\d{4,5})", "$1 $2", ["180", "1800"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["140"], 0, 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["11|2[02]|33|4[04]|79[1-7]|80[2-46]", "11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])", "11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"], "0$1", 1], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807", "1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]", "1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"], "0$1", 1], ["(\\d{5})(\\d{5})", "$1 $2", ["[6-9]"], "0$1", 1], ["(\\d{4})(\\d{2,4})(\\d{4})", "$1 $2 $3", ["1(?:6|8[06])", "1(?:6|8[06]0)"], 0, 1], ["(\\d{4})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["18"], 0, 1]], "0"], "IO": ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]]], "IQ": ["964", "00", "(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-6]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], "IR": ["98", "00", "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", [4, 5, 6, 7, 10], [["(\\d{4,5})", "$1", ["96"], "0$1"], ["(\\d{2})(\\d{4,5})", "$1 $2", ["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[1-8]"], "0$1"]], "0"], "IS": ["354", "00|1(?:0(?:01|[12]0)|100)", "(?:38\\d|[4-9])\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "IT": ["39", "00", "0\\d{5,11}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:43|55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?", [6, 7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{4,6})", "$1 $2", ["0[26]"]], ["(\\d{3})(\\d{3,6})", "$1 $2", ["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])", "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]], ["(\\d{4})(\\d{2,6})", "$1 $2", ["0(?:[13-579][2-46-8]|8[236-8])"]], ["(\\d{4})(\\d{4})", "$1 $2", ["894"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[26]|5"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1(?:44|[679])|[378]|43"]], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[13-57-9][0159]|14"]], ["(\\d{2})(\\d{4})(\\d{5})", "$1 $2 $3", ["0[26]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[03]"]]], 0, 0, 0, 0, 0, 0, [["0(?:669[0-79]\\d{1,6}|831\\d{2,8})|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[2356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"], ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]], ["80(?:0\\d{3}|3)\\d{3}", [6, 9]], ["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}", [6, 8, 9, 10]], ["1(?:78\\d|99)\\d{6}", [9, 10]], ["3[2-8]\\d{9,10}", [11, 12]], 0, 0, ["55\\d{8}", [10]], ["84(?:[08]\\d{3}|[17])\\d{3}", [6, 9]]]], "JE": ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0|180020", "1534$1", 0, 0, [["1534[0-24-8]\\d{5}"], ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"], ["80(?:07(?:35|81)|8901)\\d{4}"], ["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"], ["701511\\d{4}"], 0, ["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"], ["56\\d{8}"]]], "JM": ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876"], "JO": ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|427|53)\\d{6}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2356]|87"], "(0$1)"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["70"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[47]"], "0$1"]], "0"], "JP": ["81", "010", "00[1-9]\\d{6,14}|[25-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}", [8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3", ["(?:12|57|99)0"], "0$1"], ["(\\d{4})(\\d)(\\d{4})", "$1-$2-$3", ["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["60"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2-$3", ["3|4(?:2[09]|7[01])|6[1-9]", "3|4(?:2(?:0|9[02-69])|7(?:0[019]|1))|6[1-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3", ["[14]|[289][2-9]|5[3-9]|7[2-4679]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["800"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[25-9]"], "0$1"]], "0", 0, "(000[2569]\\d{4,6})$|(?:(?:003768)0?)|0", "$1"], "KE": ["254", "000", "(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}", [7, 8, 9, 10], [["(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0"], "KG": ["996", "00", "8\\d{9}|[235-9]\\d{8}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["3(?:1[346]|[24-79])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-79]|88"], "0$1"], ["(\\d{3})(\\d{3})(\\d)(\\d{2,3})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "KH": ["855", "00[14-9]", "1\\d{9}|[1-9]\\d{7,8}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "KI": ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0"], "KM": ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]]], "KN": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869"], "KP": ["850", "00|99", "85\\d{6}|(?:19\\d|[2-7])\\d{7}", [8, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"]], "0"], "KR": ["82", "00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", [5, 6, 8, 9, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3,4})", "$1-$2", ["(?:3[1-3]|[46][1-4]|5[1-5])1"], "0$1"], ["(\\d{4})(\\d{4})", "$1-$2", ["1"]], ["(\\d)(\\d{3,4})(\\d{4})", "$1-$2-$3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[36]0|8"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1-$2-$3", ["[1346]|5[1-5]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{2})(\\d{5})(\\d{4})", "$1-$2-$3", ["5"], "0$1"]], "0", 0, "0(8(?:[1-46-8]|5\\d\\d))?"], "KW": ["965", "00", "18\\d{5}|(?:[2569]\\d|41)\\d{6}", [7, 8], [["(\\d{4})(\\d{3,4})", "$1 $2", ["[169]|2(?:[235]|4[1-35-9])|52"]], ["(\\d{3})(\\d{5})", "$1 $2", ["[245]"]]]], "KY": ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345"], "KZ": ["7", "810", "(?:33622|8\\d{8})\\d{5}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "33622|7", 0, "8~10"], "LA": ["856", "00", "[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2[13]|3[14]|[4-8]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["3"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0"], "LB": ["961", "00", "[27-9]\\d{7}|[13-9]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[13-69]|7(?:[2-57]|62|8[0-6]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0"], "LC": ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758"], "LI": ["423", "00", "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", [7, 9], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2379]|8(?:0[09]|7)", "[2379]|8(?:0(?:02|9)|7)"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["69"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]], "0", 0, "(1001)|0"], "LK": ["94", "00", "[1-9]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[1-689]"], "0$1"]], "0"], "LR": ["231", "00", "(?:[2457]\\d|33|88)\\d{7}|(?:2\\d|[4-6])\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["4[67]|[56]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-578]"], "0$1"]], "0"], "LS": ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]]], "LT": ["370", "00", "(?:[3469]\\d|52|[78]0)\\d{6}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["52[0-7]"], "(0-$1)", 1], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0 $1", 1], ["(\\d{2})(\\d{6})", "$1 $2", ["37|4(?:[15]|6[1-8])"], "(0-$1)", 1], ["(\\d{3})(\\d{5})", "$1 $2", ["[3-6]"], "(0-$1)", 1]], "0", 0, "[08]"], "LU": ["352", "00", "35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}", [4, 5, 6, 7, 8, 9, 10, 11], [["(\\d{2})(\\d{3})", "$1 $2", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["20[2-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4", ["2(?:[0367]|4[3-8])"]], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["80[01]|90[015]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["20"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4 $5", ["2(?:[0367]|4[3-8])"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})", "$1 $2 $3 $4", ["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]], 0, 0, "(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"], "LV": ["371", "00", "(?:[268]\\d|78|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2679]|8[01]"]]]], "LY": ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0"], "MA": ["212", "00", "[5-8]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5[45]"], "0$1"], ["(\\d{4})(\\d{5})", "$1-$2", ["5(?:2[2-46-9]|3[3-9]|9)|8(?:0[89]|92)"], "0$1"], ["(\\d{2})(\\d{7})", "$1-$2", ["8"], "0$1"], ["(\\d{3})(\\d{6})", "$1-$2", ["[5-7]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["5(?:2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"], ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-8]|5[0-5]|8[0-7]))\\d{6}"], ["80[0-7]\\d{6}"], ["89\\d{7}"], 0, 0, 0, 0, ["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]], "MC": ["377", "00", "(?:[3489]|[67]\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["4"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[389]"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[67]"], "0$1"]], "0"], "MD": ["373", "00", "(?:[235-7]\\d|[89]0)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["22|3"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[25-7]"], "0$1"]], "0"], "ME": ["382", "00", "(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "0$1"]], "0"], "MF": ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], "MG": ["261", "00", "[23]\\d{8}", [9], [["(\\d{2})(\\d{2})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, "([24-9]\\d{6})$|0", "20$1"], "MH": ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1"], "MK": ["389", "00", "[2-578]\\d{7}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2|34[47]|4(?:[37]7|5[47]|64)"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[347]"], "0$1"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[58]"], "0$1"]], "0"], "ML": ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]]], "MM": ["95", "00", "1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}", [6, 7, 8, 9, 10], [["(\\d)(\\d{2})(\\d{3})", "$1 $2 $3", ["16|2"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["4(?:[2-46]|5[3-5])|5|6(?:[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-5]|(?:60|86)[23]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|452|678|86", "[12]|452|6788|86"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[4-7]|8[1-35]"], "0$1"], ["(\\d)(\\d{3})(\\d{4,6})", "$1 $2 $3", ["9(?:2[0-4]|[35-9]|4[137-9])"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["92"], "0$1"], ["(\\d)(\\d{5})(\\d{4})", "$1 $2 $3", ["9"], "0$1"]], "0"], "MN": ["976", "001", "[12]\\d{7,9}|[5-9]\\d{7}", [8, 9, 10], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[12]1"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[5-9]"]], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[12]2[1-3]"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["[12](?:27|3[2-8]|4[2-68]|5[1-4689])", "[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["[12]"], "0$1"]], "0"], "MO": ["853", "00", "0800\\d{3}|(?:28|[68]\\d)\\d{6}", [7, 8], [["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[268]"]]]], "MP": ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670"], "MQ": ["596", "00", "(?:596\\d|7091)\\d{5}|(?:69|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "MR": ["222", "00", "(?:[2-4]\\d\\d|800)\\d{5}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-48]"]]]], "MS": ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664"], "MT": ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]]], "MU": ["230", "0(?:0|[24-7]0|3[03])", "(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-46]|8[013]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[57]"]], ["(\\d{5})(\\d{5})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, 0, "020"], "MV": ["960", "0(?:0|19)", "(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}", [7, 10], [["(\\d{3})(\\d{4})", "$1-$2", ["[34679]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "MW": ["265", "00", "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}", [7, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["1[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[137-9]"], "0$1"]], "0"], "MX": ["52", "0[09]", "[2-9]\\d{9}", [10], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["33|5[56]|81"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "MY": ["60", "00", "1\\d{8,9}|(?:3\\d|[4-9])\\d{7}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1-$2 $3", ["[4-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1-$2 $3", ["1(?:[02469]|[378][1-9]|53)|8", "1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2 $3", ["3"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3-$4", ["1(?:[367]|80)"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2 $3", ["15"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2 $3", ["1"], "0$1"]], "0"], "MZ": ["258", "00", "(?:2|8\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2|8[2-79]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], "NA": ["264", "00", "[68]\\d{7,8}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["87"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], "NC": ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]]], "NE": ["227", "00", "[027-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["08"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[089]|2[013]|7[0467]"]]]], "NF": ["672", "00", "[13]\\d{5}", [6], [["(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], ["(\\d)(\\d{5})", "$1 $2", ["[13]"]]], 0, 0, "([0-258]\\d{4})$", "3$1"], "NG": ["234", "009", "(?:20|9\\d)\\d{8}|[78]\\d{9,13}", [10, 11, 12, 13, 14], [["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[7-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], ["(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{3})(\\d{5})(\\d{5,6})", "$1 $2 $3", ["[78]"], "0$1"]], "0"], "NI": ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]]], "NL": ["31", "00", "(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}", [5, 6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], ["(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], ["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], "0"], "NO": ["47", "00", "(?:0|[2-9]\\d{3})\\d{4}", [5, 8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], 0, 0, 0, 0, 0, "[02-689]|7[0-8]"], "NP": ["977", "00", "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", [8, 10, 11], [["(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], ["(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"], ["(\\d{3})(\\d{7})", "$1-$2", ["9"]]], "0"], "NR": ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]]], "NU": ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]]], "NZ": ["64", "0(?:0|161)", "[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,8})", "$1 $2", ["8[1-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["50[036-8]|8|90", "50(?:[0367]|88)|8|90"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["24|[346]|7[2-57-9]|9[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:10|74)|[589]"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1|2[028]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,5})", "$1 $2 $3", ["2(?:[169]|7[0-35-9])|7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "00"], "OM": ["968", "00", "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", [7, 8, 9], [["(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], ["(\\d{2})(\\d{6})", "$1 $2", ["2"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]]], "PA": ["507", "00", "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", [7, 8, 10, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[1-57-9]"]], ["(\\d{4})(\\d{4})", "$1-$2", ["[68]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]]], "PE": ["51", "00|19(?:1[124]|77|90)00", "(?:[14-8]|9\\d)\\d{7}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["80"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["1"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[4-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"]]], "0", 0, 0, 0, 0, 0, 0, "00", " Anexo "], "PF": ["689", "00", "4\\d{5}(?:\\d{2})?|8\\d{7,8}", [6, 8, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["44"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4|8[7-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], "PG": ["675", "00|140[1-3]", "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "PH": ["63", "00", "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", [6, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{5})", "$1 $2", ["2"], "(0$1)"], ["(\\d{4})(\\d{4,6})", "$1 $2", ["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2", "3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"], "(0$1)"], ["(\\d{5})(\\d{4})", "$1 $2", ["346|4(?:27|9[35])|883", "3469|4(?:279|9(?:30|56))|8834"], "(0$1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|8[2-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["1"]]], "0"], "PK": ["92", "00", "122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,7})", "$1 $2 $3", ["[89]0"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["1"]], ["(\\d{3})(\\d{6,7})", "$1 $2", ["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])", "9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"], "(0$1)"], ["(\\d{2})(\\d{7,8})", "$1 $2", ["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"], "(0$1)"], ["(\\d{5})(\\d{5})", "$1 $2", ["58"], "(0$1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[24-9]"], "(0$1)"]], "0"], "PL": ["48", "00", "(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{5})", "$1", ["19"]], ["(\\d{3})(\\d{3})", "$1 $2", ["11|20|64"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1", "(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["64"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]]], "PM": ["508", "00", "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[45]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], "PR": ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939"], "PS": ["970", "00", "[2489]2\\d{6}|(?:1\\d|5)\\d{8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2489]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "PT": ["351", "00", "1693\\d{5}|(?:[26-9]\\d|30)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["2[12]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["16|[236-9]"]]]], "PW": ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], "PY": ["595", "00", "59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3,6})", "$1 $2", ["[2-9]0"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"], "(0$1)"], ["(\\d{3})(\\d{4,5})", "$1 $2", ["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["87"]], ["(\\d{3})(\\d{6})", "$1 $2", ["9(?:[5-79]|8[1-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"]]], "0"], "QA": ["974", "00", "800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}", [7, 8, 9, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["2[136]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]]], "RE": ["262", "00", "709\\d{6}|(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"], ["(?:69(?:2\\d\\d|3(?:[06][0-6]|1[0-3]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-6]|76(?:2[278]|3[0-37]))\\d{4}"], ["8(?:1[019]|2[0156]|84|90)\\d{6}"]]], "RO": ["40", "00", "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", [6, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["2[3-6]", "2[3-6]\\d9"], "0$1"], ["(\\d{2})(\\d{4})", "$1 $2", ["219|31"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[23]1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[236-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, " int "], "RS": ["381", "00", "38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}", [6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{3,9})", "$1 $2", ["(?:2[389]|39)0|[7-9]"], "0$1"], ["(\\d{2})(\\d{5,10})", "$1 $2", ["[1-36]"], "0$1"]], "0"], "RU": ["7", "810", "8\\d{13}|[347-9]\\d{9}", [10, 14], [["(\\d{4})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-8]|2[1-9])", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"], "8 ($1)", 1], ["(\\d{5})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-68]|2[1-9])", "7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))", "7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[349]|8(?:[02-7]|1[1-8])"], "8 ($1)", 1], ["(\\d{4})(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["8"], "8 ($1)"]], "8", 0, 0, 0, 0, 0, [["336(?:[013-9]\\d|2[013-9])\\d{5}|(?:3(?:0[12]|4[1-35-79]|5[1-3]|65|8[1-58]|9[0145])|4(?:01|1[1356]|2[13467]|7[1-5]|8[1-7]|9[1-689])|8(?:1[1-8]|2[01]|3[13-6]|4[0-8]|5[15-7]|6[0-35-79]|7[1-37-9]))\\d{7}", [10]], ["9\\d{9}", [10]], ["8(?:0[04]|108\\d{3})\\d{7}"], ["80[39]\\d{7}", [10]], ["808\\d{7}", [10]]], "8~10"], "RW": ["250", "00", "(?:06|[27]\\d\\d|[89]00)\\d{6}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0$1"]], "0"], "SA": ["966", "00", "(?:[15]\\d|800|92)\\d{7}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["9"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0"], "SB": ["677", "0[01]", "[6-9]\\d{6}|[1-6]\\d{4}", [5, 7], [["(\\d{2})(\\d{5})", "$1 $2", ["6[89]|7|8[4-9]|9(?:[1-8]|9[0-8])"]]]], "SC": ["248", "010|0[0-2]", "(?:[2489]\\d|64)\\d{5}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[246]|9[57]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "SD": ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], "SE": ["46", "00", "(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}", [6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1", 0, "$1 $2"], ["(\\d{2})(\\d{3})(\\d{2})", "$1-$2 $3", ["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3"], ["(\\d)(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{2,3})(\\d{3})", "$1-$2 $3", ["9(?:00|39|44)"], "0$1", 0, "$1 $2 $3"], ["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["10|7"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{3})", "$1-$2 $3 $4", ["9"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4 $5", ["[26]"], "0$1", 0, "$1 $2 $3 $4 $5"]], "0"], "SG": ["65", "0[0-3]\\d", "(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{4})(\\d{4})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], "SH": ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]"], "SI": ["386", "00|10(?:22|66|88|99)", "[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}", [5, 6, 7, 8], [["(\\d{2})(\\d{3,6})", "$1 $2", ["8[09]|9"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["59|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37][01]|4[0139]|51|6"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-57]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, 0, "00"], "SJ": ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79"], "SK": ["421", "00", "[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", [6, 7, 9], [["(\\d)(\\d{2})(\\d{3,4})", "$1 $2 $3", ["21"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["[3-5][1-8]1", "[3-5][1-8]1[67]"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1/$2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[689]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1/$2 $3 $4", ["[3-5]"], "0$1"]], "0"], "SL": ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0"], "SM": ["378", "00", "(?:0549|[5-7]\\d)\\d{6}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]"]], ["(\\d{4})(\\d{6})", "$1 $2", ["0"]]], 0, 0, "([89]\\d{5})$", "0549$1"], "SN": ["221", "00", "(?:[378]\\d|93)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[379]"]]]], "SO": ["252", "00", "[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}", [6, 7, 8, 9], [["(\\d{2})(\\d{4})", "$1 $2", ["8[125]"]], ["(\\d{6})", "$1", ["[134]"]], ["(\\d)(\\d{6})", "$1 $2", ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]], ["(\\d)(\\d{7})", "$1 $2", ["(?:2|90)4|[67]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[348]|64|79|90"]], ["(\\d{2})(\\d{5,7})", "$1 $2", ["1|28|6[0-35-9]|7[67]|9[2-9]"]]], "0"], "SR": ["597", "00", "(?:[2-5]|[6-8]\\d|90)\\d{5}", [6, 7], [["(\\d{2})(\\d{2})(\\d{2})", "$1-$2-$3", ["56"]], ["(\\d{3})(\\d{3})", "$1-$2", ["[2-5]"]], ["(\\d{3})(\\d{4})", "$1-$2", ["[6-9]"]]]], "SS": ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], "ST": ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]]], "SV": ["503", "00", "(?:[267]\\d\\d|500)\\d{5}|(?:80\\d|900)\\d{4}(?:\\d{4})?", [7, 8, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[89]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[25-7]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[89]"]]]], "SX": ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721"], "SY": ["963", "00", "[1-359]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-4]|5[1-3]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[59]"], "0$1", 1]], "0"], "SZ": ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], "TA": ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], "TC": ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], "TD": ["235", "00|16", "(?:22|30|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[236-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], "TG": ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]]], "TH": ["66", "00[1-9]", "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", [8, 9, 10, 13], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[13-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], "TJ": ["992", "810", "(?:[0-57-9]\\d|66)\\d{7}", [9], [["(\\d{6})(\\d)(\\d{2})", "$1 $2 $3", ["331", "3317"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["44[02-479]|[34]7"]], ["(\\d{4})(\\d)(\\d{4})", "$1 $2 $3", ["3(?:[1245]|3[12])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["\\d"]]], 0, 0, 0, 0, 0, 0, 0, "8~10"], "TK": ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7]], "TL": ["670", "00", "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], ["(\\d{4})(\\d{4})", "$1 $2", ["7"]]]], "TM": ["993", "810", "(?:[1-6]\\d|71)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["12"], "(8 $1)"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-5]"], "(8 $1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[67]"], "8 $1"]], "8", 0, 0, 0, 0, 0, 0, "8~10"], "TN": ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]]], "TO": ["676", "00", "(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}", [5, 7], [["(\\d{2})(\\d{3})", "$1-$2", ["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], ["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[5-9]"]]]], "TR": ["90", "00", "4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}", [7, 10, 12, 13], [["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["512|8[01589]|90"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5(?:[0-59]|61)", "5(?:[0-59]|61[06])", "5(?:[0-59]|61[06]1)"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24][1-8]|3[1-9]"], "(0$1)", 1], ["(\\d{3})(\\d{3})(\\d{6,7})", "$1 $2 $3", ["80"], "0$1", 1]], "0"], "TT": ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868"], "TV": ["688", "00", "(?:2|7\\d\\d|90)\\d{4}", [5, 6, 7], [["(\\d{2})(\\d{3})", "$1 $2", ["2"]], ["(\\d{2})(\\d{4})", "$1 $2", ["90"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], "TW": ["886", "0(?:0[25-79]|19)", "[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}", [7, 8, 9, 10, 11], [["(\\d{2})(\\d)(\\d{4})", "$1 $2 $3", ["202"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[258]0"], "0$1"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]", "[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, "#"], "TZ": ["255", "00[056]", "(?:[25-8]\\d|41|90)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[24]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["5"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[67]"], "0$1"]], "0"], "UA": ["380", "00", "[89]\\d{9}|[3-9]\\d{8}", [9, 10], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]", "6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])", "3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|89|9[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "0~0"], "UG": ["256", "00[057]", "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", [9], [["(\\d{4})(\\d{5})", "$1 $2", ["202", "2024"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[27-9]|4(?:6[45]|[7-9])"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[34]"], "0$1"]], "0"], "US": ["1", "011", "[2-9]\\d{9}|3\\d{6}", [10], [["(\\d{3})(\\d{4})", "$1-$2", ["310"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "($1) $2-$3", ["[2-9]"], 0, 1, "$1-$2-$3"]], "1", 0, 0, 0, 0, 0, [["3052(?:0[0-8]|[1-9]\\d)\\d{4}|(?:2742|305[3-9])\\d{6}|(?:472|983)[2-47-9]\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[013-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-269])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-247]|4[0378]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[0168]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-3589]|8[04-69]))[2-9]\\d{6}"], [""], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"], ["900[2-9]\\d{6}"], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"], 0, 0, 0, ["305209\\d{4}"]]], "UY": ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|2\\d{3,4}|(?:[49]\\d|80)\\d{5}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d{4,5})", "$1", ["21"]], ["(\\d{3})(\\d{3,4})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[49]0|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[124]"]], ["(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3 $4", ["0"]]], "0", 0, 0, 0, 0, 0, 0, "00", " int. "], "UZ": ["998", "00", "(?:20|33|[5-9]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[235-9]"]]]], "VA": ["39", "00", "0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}", [6, 7, 8, 9, 10, 11, 12], 0, 0, 0, 0, 0, 0, "06698"], "VC": ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784"], "VE": ["58", "00", "[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}", [10], [["(\\d{3})(\\d{7})", "$1-$2", ["[24-689]"], "0$1"]], "0"], "VG": ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284"], "VI": ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340"], "VN": ["84", "00", "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["80"], "0$1", 1], ["(\\d{4})(\\d{4,6})", "$1 $2", ["1"], 0, 1], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["6"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[357-9]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["2[48]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["2"], "0$1", 1]], "0"], "VU": ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]]], "WF": ["681", "00", "(?:40|72|8\\d{4})\\d{4}|[89]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[47-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], "WS": ["685", "0", "(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}", [5, 6, 7, 10], [["(\\d{5})", "$1", ["[2-5]|6[1-9]"]], ["(\\d{3})(\\d{3,7})", "$1 $2", ["[68]"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], "XK": ["383", "00", "2\\d{7,8}|3\\d{7,11}|(?:4\\d\\d|[89]00)\\d{5}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2|39"], "0$1"], ["(\\d{2})(\\d{7,10})", "$1 $2", ["3"], "0$1"]], "0"], "YE": ["967", "00", "(?:1|7\\d)\\d{7}|[1-7]\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-6]|7(?:[24-6]|8[0-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"], "0$1"]], "0"], "YT": ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [["269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}"], ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}"], ["80\\d{7}"], 0, 0, 0, 0, 0, ["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]], "ZA": ["27", "00", "[1-79]\\d{8}|8\\d{4,9}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,4})", "$1 $2", ["8[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["8[1-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["860"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], "ZM": ["260", "00", "800\\d{6}|(?:21|[579]\\d|63)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[579]"], "0$1"]], "0"], "ZW": ["263", "00", "2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}", [5, 6, 7, 8, 9, 10], [["(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], ["(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], ["(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], "0"] }, "nonGeographic": { "800": ["800", 0, "(?:00|[1-9]\\d)\\d{6}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["\\d"]]], 0, 0, 0, 0, 0, 0, [0, 0, ["(?:00|[1-9]\\d)\\d{6}"]]], "808": ["808", 0, "[1-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, 0, ["[1-9]\\d{7}"]]], "870": ["870", 0, "7\\d{11}|[235-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"], 0, 0, 0, 0, 0, 0, ["2\\d{8}", [9]]]], "878": ["878", 0, "10\\d{10}", [12], [["(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["10\\d{10}"]]], "881": ["881", 0, "6\\d{9}|[0-36-9]\\d{8}", [9, 10], [["(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], ["(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], 0, 0, 0, 0, 0, 0, [0, ["6\\d{9}|[0-36-9]\\d{8}"]]], "882": ["882", 0, "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5})", "$1 $2", ["16|342"]], ["(\\d{2})(\\d{6})", "$1 $2", ["49"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["1[36]|9"]], ["(\\d{2})(\\d{4})(\\d{3})", "$1 $2 $3", ["3[23]"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["16"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|23|3(?:[15]|4[57])|4|51"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["34"]], ["(\\d{2})(\\d{4,5})(\\d{5})", "$1 $2 $3", ["[1-35]"]]], 0, 0, 0, 0, 0, 0, [0, ["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}", [7, 8, 9, 10, 12]], 0, 0, 0, ["348[57]\\d{7}", [11]], 0, 0, ["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]], "883": ["883", 0, "(?:[1-4]\\d|51)\\d{6,10}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,8})", "$1 $2 $3", ["[14]|2[24-689]|3[02-689]|51[24-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["510"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["21"]], ["(\\d{4})(\\d{4})(\\d{4})", "$1 $2 $3", ["51[13]"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[235]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]], "888": ["888", 0, "\\d{11}", [11], [["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, ["\\d{11}"]]], "979": ["979", 0, "[1359]\\d{8}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, ["[1359]\\d{8}"]]] } };
|
|
21489
21604
|
function withMetadataArgument(func, _arguments) {
|
|
21490
21605
|
var args = Array.prototype.slice.call(_arguments);
|
|
21491
21606
|
args.push(metadata);
|
|
@@ -21513,32 +21628,39 @@ var objectConstructor = {}.constructor;
|
|
|
21513
21628
|
function isObject(object) {
|
|
21514
21629
|
return object !== void 0 && object !== null && object.constructor === objectConstructor;
|
|
21515
21630
|
}
|
|
21516
|
-
function _typeof$
|
|
21631
|
+
function _typeof$7(o) {
|
|
21517
21632
|
"@babel/helpers - typeof";
|
|
21518
|
-
return _typeof$
|
|
21519
|
-
return typeof
|
|
21520
|
-
} : function(
|
|
21521
|
-
return
|
|
21522
|
-
}, _typeof$
|
|
21633
|
+
return _typeof$7 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
21634
|
+
return typeof o2;
|
|
21635
|
+
} : function(o2) {
|
|
21636
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
21637
|
+
}, _typeof$7(o);
|
|
21523
21638
|
}
|
|
21524
|
-
function _classCallCheck$2(
|
|
21525
|
-
if (!(
|
|
21526
|
-
throw new TypeError("Cannot call a class as a function");
|
|
21527
|
-
}
|
|
21639
|
+
function _classCallCheck$2(a, n) {
|
|
21640
|
+
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
21528
21641
|
}
|
|
21529
|
-
function _defineProperties$1(
|
|
21530
|
-
for (var
|
|
21531
|
-
var
|
|
21532
|
-
|
|
21533
|
-
descriptor.configurable = true;
|
|
21534
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
21535
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
21642
|
+
function _defineProperties$1(e, r) {
|
|
21643
|
+
for (var t2 = 0; t2 < r.length; t2++) {
|
|
21644
|
+
var o = r[t2];
|
|
21645
|
+
o.enumerable = o.enumerable || false, o.configurable = true, "value" in o && (o.writable = true), Object.defineProperty(e, _toPropertyKey$6(o.key), o);
|
|
21536
21646
|
}
|
|
21537
21647
|
}
|
|
21538
|
-
function _createClass$2(
|
|
21539
|
-
|
|
21540
|
-
|
|
21541
|
-
|
|
21648
|
+
function _createClass$2(e, r, t2) {
|
|
21649
|
+
return r && _defineProperties$1(e.prototype, r), Object.defineProperty(e, "prototype", { writable: false }), e;
|
|
21650
|
+
}
|
|
21651
|
+
function _toPropertyKey$6(t2) {
|
|
21652
|
+
var i = _toPrimitive$6(t2, "string");
|
|
21653
|
+
return "symbol" == _typeof$7(i) ? i : i + "";
|
|
21654
|
+
}
|
|
21655
|
+
function _toPrimitive$6(t2, r) {
|
|
21656
|
+
if ("object" != _typeof$7(t2) || !t2) return t2;
|
|
21657
|
+
var e = t2[Symbol.toPrimitive];
|
|
21658
|
+
if (void 0 !== e) {
|
|
21659
|
+
var i = e.call(t2, r);
|
|
21660
|
+
if ("object" != _typeof$7(i)) return i;
|
|
21661
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
21662
|
+
}
|
|
21663
|
+
return String(t2);
|
|
21542
21664
|
}
|
|
21543
21665
|
var V3 = "1.2.0";
|
|
21544
21666
|
var V4 = "1.7.35";
|
|
@@ -21551,7 +21673,7 @@ var Metadata = /* @__PURE__ */ function() {
|
|
|
21551
21673
|
this.metadata = metadata2;
|
|
21552
21674
|
setVersion.call(this, metadata2);
|
|
21553
21675
|
}
|
|
21554
|
-
_createClass$2(Metadata2, [{
|
|
21676
|
+
return _createClass$2(Metadata2, [{
|
|
21555
21677
|
key: "getCountries",
|
|
21556
21678
|
value: function getCountries() {
|
|
21557
21679
|
return Object.keys(this.metadata.countries).filter(function(_) {
|
|
@@ -21756,7 +21878,6 @@ var Metadata = /* @__PURE__ */ function() {
|
|
|
21756
21878
|
return this.numberingPlan !== void 0;
|
|
21757
21879
|
}
|
|
21758
21880
|
}]);
|
|
21759
|
-
return Metadata2;
|
|
21760
21881
|
}();
|
|
21761
21882
|
var NumberingPlan = /* @__PURE__ */ function() {
|
|
21762
21883
|
function NumberingPlan2(metadata2, globalMetadataObject) {
|
|
@@ -21765,7 +21886,7 @@ var NumberingPlan = /* @__PURE__ */ function() {
|
|
|
21765
21886
|
this.metadata = metadata2;
|
|
21766
21887
|
setVersion.call(this, globalMetadataObject.metadata);
|
|
21767
21888
|
}
|
|
21768
|
-
_createClass$2(NumberingPlan2, [{
|
|
21889
|
+
return _createClass$2(NumberingPlan2, [{
|
|
21769
21890
|
key: "callingCode",
|
|
21770
21891
|
value: function callingCode() {
|
|
21771
21892
|
return this.metadata[0];
|
|
@@ -21904,7 +22025,6 @@ var NumberingPlan = /* @__PURE__ */ function() {
|
|
|
21904
22025
|
return this.metadata[13] || DEFAULT_EXT_PREFIX;
|
|
21905
22026
|
}
|
|
21906
22027
|
}]);
|
|
21907
|
-
return NumberingPlan2;
|
|
21908
22028
|
}();
|
|
21909
22029
|
var Format = /* @__PURE__ */ function() {
|
|
21910
22030
|
function Format2(format2, metadata2) {
|
|
@@ -21912,7 +22032,7 @@ var Format = /* @__PURE__ */ function() {
|
|
|
21912
22032
|
this._format = format2;
|
|
21913
22033
|
this.metadata = metadata2;
|
|
21914
22034
|
}
|
|
21915
|
-
_createClass$2(Format2, [{
|
|
22035
|
+
return _createClass$2(Format2, [{
|
|
21916
22036
|
key: "pattern",
|
|
21917
22037
|
value: function pattern() {
|
|
21918
22038
|
return this._format[0];
|
|
@@ -21955,7 +22075,6 @@ var Format = /* @__PURE__ */ function() {
|
|
|
21955
22075
|
return this._format[5] || this.format();
|
|
21956
22076
|
}
|
|
21957
22077
|
}]);
|
|
21958
|
-
return Format2;
|
|
21959
22078
|
}();
|
|
21960
22079
|
var FIRST_GROUP_ONLY_PREFIX_PATTERN = /^\(?\$1\)?$/;
|
|
21961
22080
|
var Type = /* @__PURE__ */ function() {
|
|
@@ -21964,7 +22083,7 @@ var Type = /* @__PURE__ */ function() {
|
|
|
21964
22083
|
this.type = type;
|
|
21965
22084
|
this.metadata = metadata2;
|
|
21966
22085
|
}
|
|
21967
|
-
_createClass$2(Type2, [{
|
|
22086
|
+
return _createClass$2(Type2, [{
|
|
21968
22087
|
key: "pattern",
|
|
21969
22088
|
value: function pattern() {
|
|
21970
22089
|
if (this.metadata.v1) return this.type;
|
|
@@ -21977,7 +22096,6 @@ var Type = /* @__PURE__ */ function() {
|
|
|
21977
22096
|
return this.type[1] || this.metadata.possibleLengths();
|
|
21978
22097
|
}
|
|
21979
22098
|
}]);
|
|
21980
|
-
return Type2;
|
|
21981
22099
|
}();
|
|
21982
22100
|
function getType(types, type) {
|
|
21983
22101
|
switch (type) {
|
|
@@ -22012,12 +22130,12 @@ function validateMetadata(metadata2) {
|
|
|
22012
22130
|
}
|
|
22013
22131
|
}
|
|
22014
22132
|
var typeOf = function typeOf2(_) {
|
|
22015
|
-
return _typeof$
|
|
22133
|
+
return _typeof$7(_);
|
|
22016
22134
|
};
|
|
22017
22135
|
function getCountryCallingCode(country, metadata2) {
|
|
22018
22136
|
metadata2 = new Metadata(metadata2);
|
|
22019
22137
|
if (metadata2.hasCountry(country)) {
|
|
22020
|
-
return metadata2.
|
|
22138
|
+
return metadata2.selectNumberingPlan(country).countryCallingCode();
|
|
22021
22139
|
}
|
|
22022
22140
|
throw new Error("Unknown country: ".concat(country));
|
|
22023
22141
|
}
|
|
@@ -22043,10 +22161,14 @@ function setVersion(metadata2) {
|
|
|
22043
22161
|
}
|
|
22044
22162
|
}
|
|
22045
22163
|
}
|
|
22046
|
-
function checkNumberLength(nationalNumber, metadata2) {
|
|
22047
|
-
return checkNumberLengthForType(nationalNumber, void 0, metadata2);
|
|
22164
|
+
function checkNumberLength(nationalNumber, country, metadata2) {
|
|
22165
|
+
return checkNumberLengthForType(nationalNumber, country, void 0, metadata2);
|
|
22048
22166
|
}
|
|
22049
|
-
function checkNumberLengthForType(nationalNumber, type, metadata2) {
|
|
22167
|
+
function checkNumberLengthForType(nationalNumber, country, type, metadata2) {
|
|
22168
|
+
if (country) {
|
|
22169
|
+
metadata2 = new Metadata(metadata2.metadata);
|
|
22170
|
+
metadata2.selectNumberingPlan(country);
|
|
22171
|
+
}
|
|
22050
22172
|
var type_info = metadata2.type(type);
|
|
22051
22173
|
var possible_lengths = type_info && type_info.possibleLengths() || metadata2.possibleLengths();
|
|
22052
22174
|
if (!possible_lengths) {
|
|
@@ -22083,7 +22205,7 @@ function isPossiblePhoneNumber$2(input, options, metadata2) {
|
|
|
22083
22205
|
if (!metadata2.hasCountry(input.country)) {
|
|
22084
22206
|
throw new Error("Unknown country: ".concat(input.country));
|
|
22085
22207
|
}
|
|
22086
|
-
metadata2.
|
|
22208
|
+
metadata2.selectNumberingPlan(input.country);
|
|
22087
22209
|
} else {
|
|
22088
22210
|
if (!input.countryCallingCode) {
|
|
22089
22211
|
throw new Error("Invalid phone number object passed");
|
|
@@ -22092,7 +22214,7 @@ function isPossiblePhoneNumber$2(input, options, metadata2) {
|
|
|
22092
22214
|
}
|
|
22093
22215
|
}
|
|
22094
22216
|
if (metadata2.possibleLengths()) {
|
|
22095
|
-
return isPossibleNumber(input.phone || input.nationalNumber, metadata2);
|
|
22217
|
+
return isPossibleNumber(input.phone || input.nationalNumber, input.country, metadata2);
|
|
22096
22218
|
} else {
|
|
22097
22219
|
if (input.countryCallingCode && metadata2.isNonGeographicCallingCode(input.countryCallingCode)) {
|
|
22098
22220
|
return true;
|
|
@@ -22101,45 +22223,41 @@ function isPossiblePhoneNumber$2(input, options, metadata2) {
|
|
|
22101
22223
|
}
|
|
22102
22224
|
}
|
|
22103
22225
|
}
|
|
22104
|
-
function isPossibleNumber(nationalNumber, metadata2) {
|
|
22105
|
-
switch (checkNumberLength(nationalNumber, metadata2)) {
|
|
22226
|
+
function isPossibleNumber(nationalNumber, country, metadata2) {
|
|
22227
|
+
switch (checkNumberLength(nationalNumber, country, metadata2)) {
|
|
22106
22228
|
case "IS_POSSIBLE":
|
|
22107
22229
|
return true;
|
|
22108
22230
|
default:
|
|
22109
22231
|
return false;
|
|
22110
22232
|
}
|
|
22111
22233
|
}
|
|
22112
|
-
function matchesEntirely(text2,
|
|
22234
|
+
function matchesEntirely(text2, regularExpressionText) {
|
|
22113
22235
|
text2 = text2 || "";
|
|
22114
|
-
return new RegExp("^(?:" +
|
|
22115
|
-
}
|
|
22116
|
-
function _createForOfIteratorHelperLoose$
|
|
22117
|
-
var
|
|
22118
|
-
if (
|
|
22119
|
-
if (Array.isArray(
|
|
22120
|
-
|
|
22121
|
-
var
|
|
22236
|
+
return new RegExp("^(?:" + regularExpressionText + ")$").test(text2);
|
|
22237
|
+
}
|
|
22238
|
+
function _createForOfIteratorHelperLoose$2(r, e) {
|
|
22239
|
+
var t2 = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
22240
|
+
if (t2) return (t2 = t2.call(r)).next.bind(t2);
|
|
22241
|
+
if (Array.isArray(r) || (t2 = _unsupportedIterableToArray$3(r)) || e) {
|
|
22242
|
+
t2 && (r = t2);
|
|
22243
|
+
var o = 0;
|
|
22122
22244
|
return function() {
|
|
22123
|
-
|
|
22124
|
-
return { done: false, value: o[i++] };
|
|
22245
|
+
return o >= r.length ? { done: true } : { done: false, value: r[o++] };
|
|
22125
22246
|
};
|
|
22126
22247
|
}
|
|
22127
22248
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
22128
22249
|
}
|
|
22129
|
-
function _unsupportedIterableToArray$
|
|
22130
|
-
if (
|
|
22131
|
-
|
|
22132
|
-
|
|
22133
|
-
|
|
22134
|
-
if (n === "Map" || n === "Set") return Array.from(o);
|
|
22135
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$4(o, minLen);
|
|
22136
|
-
}
|
|
22137
|
-
function _arrayLikeToArray$4(arr, len) {
|
|
22138
|
-
if (len == null || len > arr.length) len = arr.length;
|
|
22139
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
22140
|
-
arr2[i] = arr[i];
|
|
22250
|
+
function _unsupportedIterableToArray$3(r, a) {
|
|
22251
|
+
if (r) {
|
|
22252
|
+
if ("string" == typeof r) return _arrayLikeToArray$3(r, a);
|
|
22253
|
+
var t2 = {}.toString.call(r).slice(8, -1);
|
|
22254
|
+
return "Object" === t2 && r.constructor && (t2 = r.constructor.name), "Map" === t2 || "Set" === t2 ? Array.from(r) : "Arguments" === t2 || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t2) ? _arrayLikeToArray$3(r, a) : void 0;
|
|
22141
22255
|
}
|
|
22142
|
-
|
|
22256
|
+
}
|
|
22257
|
+
function _arrayLikeToArray$3(r, a) {
|
|
22258
|
+
(null == a || a > r.length) && (a = r.length);
|
|
22259
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
22260
|
+
return n;
|
|
22143
22261
|
}
|
|
22144
22262
|
var NON_FIXED_LINE_PHONE_TYPES = ["MOBILE", "PREMIUM_RATE", "TOLL_FREE", "SHARED_COST", "VOIP", "PERSONAL_NUMBER", "PAGER", "UAN", "VOICEMAIL"];
|
|
22145
22263
|
function getNumberType(input, options, metadata2) {
|
|
@@ -22165,7 +22283,7 @@ function getNumberType(input, options, metadata2) {
|
|
|
22165
22283
|
}
|
|
22166
22284
|
return "FIXED_LINE";
|
|
22167
22285
|
}
|
|
22168
|
-
for (var _iterator = _createForOfIteratorHelperLoose$
|
|
22286
|
+
for (var _iterator = _createForOfIteratorHelperLoose$2(NON_FIXED_LINE_PHONE_TYPES), _step; !(_step = _iterator()).done; ) {
|
|
22169
22287
|
var type = _step.value;
|
|
22170
22288
|
if (isNumberTypeEqualTo(nationalNumber, type, metadata2)) {
|
|
22171
22289
|
return type;
|
|
@@ -22284,7 +22402,63 @@ function extractNationalNumberFromPossiblyIncompleteNumber(number2, metadata2) {
|
|
|
22284
22402
|
nationalNumber: number2
|
|
22285
22403
|
};
|
|
22286
22404
|
}
|
|
22287
|
-
function
|
|
22405
|
+
function _createForOfIteratorHelperLoose$1(r, e) {
|
|
22406
|
+
var t2 = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
22407
|
+
if (t2) return (t2 = t2.call(r)).next.bind(t2);
|
|
22408
|
+
if (Array.isArray(r) || (t2 = _unsupportedIterableToArray$2(r)) || e) {
|
|
22409
|
+
t2 && (r = t2);
|
|
22410
|
+
var o = 0;
|
|
22411
|
+
return function() {
|
|
22412
|
+
return o >= r.length ? { done: true } : { done: false, value: r[o++] };
|
|
22413
|
+
};
|
|
22414
|
+
}
|
|
22415
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
22416
|
+
}
|
|
22417
|
+
function _unsupportedIterableToArray$2(r, a) {
|
|
22418
|
+
if (r) {
|
|
22419
|
+
if ("string" == typeof r) return _arrayLikeToArray$2(r, a);
|
|
22420
|
+
var t2 = {}.toString.call(r).slice(8, -1);
|
|
22421
|
+
return "Object" === t2 && r.constructor && (t2 = r.constructor.name), "Map" === t2 || "Set" === t2 ? Array.from(r) : "Arguments" === t2 || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t2) ? _arrayLikeToArray$2(r, a) : void 0;
|
|
22422
|
+
}
|
|
22423
|
+
}
|
|
22424
|
+
function _arrayLikeToArray$2(r, a) {
|
|
22425
|
+
(null == a || a > r.length) && (a = r.length);
|
|
22426
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
22427
|
+
return n;
|
|
22428
|
+
}
|
|
22429
|
+
function getCountryByNationalNumber(nationalPhoneNumber, _ref) {
|
|
22430
|
+
var countries = _ref.countries, metadata2 = _ref.metadata;
|
|
22431
|
+
metadata2 = new Metadata(metadata2);
|
|
22432
|
+
for (var _iterator = _createForOfIteratorHelperLoose$1(countries), _step; !(_step = _iterator()).done; ) {
|
|
22433
|
+
var country = _step.value;
|
|
22434
|
+
metadata2.selectNumberingPlan(country);
|
|
22435
|
+
if (metadata2.leadingDigits()) {
|
|
22436
|
+
if (nationalPhoneNumber && nationalPhoneNumber.search(metadata2.leadingDigits()) === 0) {
|
|
22437
|
+
return country;
|
|
22438
|
+
}
|
|
22439
|
+
} else if (getNumberType({
|
|
22440
|
+
phone: nationalPhoneNumber,
|
|
22441
|
+
country
|
|
22442
|
+
}, void 0, metadata2.metadata)) {
|
|
22443
|
+
return country;
|
|
22444
|
+
}
|
|
22445
|
+
}
|
|
22446
|
+
}
|
|
22447
|
+
function getCountryByCallingCode(callingCode, _ref) {
|
|
22448
|
+
var nationalPhoneNumber = _ref.nationalNumber, metadata2 = _ref.metadata;
|
|
22449
|
+
var possibleCountries = metadata2.getCountryCodesForCallingCode(callingCode);
|
|
22450
|
+
if (!possibleCountries) {
|
|
22451
|
+
return;
|
|
22452
|
+
}
|
|
22453
|
+
if (possibleCountries.length === 1) {
|
|
22454
|
+
return possibleCountries[0];
|
|
22455
|
+
}
|
|
22456
|
+
return getCountryByNationalNumber(nationalPhoneNumber, {
|
|
22457
|
+
countries: possibleCountries,
|
|
22458
|
+
metadata: metadata2.metadata
|
|
22459
|
+
});
|
|
22460
|
+
}
|
|
22461
|
+
function extractNationalNumber(number2, country, metadata2) {
|
|
22288
22462
|
var _extractNationalNumbe = extractNationalNumberFromPossiblyIncompleteNumber(number2, metadata2), carrierCode = _extractNationalNumbe.carrierCode, nationalNumber = _extractNationalNumbe.nationalNumber;
|
|
22289
22463
|
if (nationalNumber !== number2) {
|
|
22290
22464
|
if (!shouldHaveExtractedNationalPrefix(number2, nationalNumber, metadata2)) {
|
|
@@ -22292,8 +22466,14 @@ function extractNationalNumber(number2, metadata2) {
|
|
|
22292
22466
|
nationalNumber: number2
|
|
22293
22467
|
};
|
|
22294
22468
|
}
|
|
22295
|
-
if (metadata2.possibleLengths()) {
|
|
22296
|
-
if (!
|
|
22469
|
+
if (metadata2.numberingPlan.possibleLengths()) {
|
|
22470
|
+
if (!country) {
|
|
22471
|
+
country = getCountryByCallingCode(metadata2.numberingPlan.callingCode(), {
|
|
22472
|
+
nationalNumber,
|
|
22473
|
+
metadata: metadata2
|
|
22474
|
+
});
|
|
22475
|
+
}
|
|
22476
|
+
if (!isPossibleIncompleteNationalNumber(nationalNumber, country, metadata2)) {
|
|
22297
22477
|
return {
|
|
22298
22478
|
nationalNumber: number2
|
|
22299
22479
|
};
|
|
@@ -22311,8 +22491,8 @@ function shouldHaveExtractedNationalPrefix(nationalNumberBefore, nationalNumberA
|
|
|
22311
22491
|
}
|
|
22312
22492
|
return true;
|
|
22313
22493
|
}
|
|
22314
|
-
function isPossibleIncompleteNationalNumber(nationalNumber, metadata2) {
|
|
22315
|
-
switch (checkNumberLength(nationalNumber, metadata2)) {
|
|
22494
|
+
function isPossibleIncompleteNationalNumber(nationalNumber, country, metadata2) {
|
|
22495
|
+
switch (checkNumberLength(nationalNumber, country, metadata2)) {
|
|
22316
22496
|
case "TOO_SHORT":
|
|
22317
22497
|
case "INVALID_LENGTH":
|
|
22318
22498
|
return false;
|
|
@@ -22320,15 +22500,15 @@ function isPossibleIncompleteNationalNumber(nationalNumber, metadata2) {
|
|
|
22320
22500
|
return true;
|
|
22321
22501
|
}
|
|
22322
22502
|
}
|
|
22323
|
-
function extractCountryCallingCodeFromInternationalNumberWithoutPlusSign(number2, country,
|
|
22324
|
-
var countryCallingCode =
|
|
22503
|
+
function extractCountryCallingCodeFromInternationalNumberWithoutPlusSign(number2, country, defaultCountry, defaultCallingCode, metadata2) {
|
|
22504
|
+
var countryCallingCode = defaultCountry ? getCountryCallingCode(defaultCountry, metadata2) : defaultCallingCode;
|
|
22325
22505
|
if (number2.indexOf(countryCallingCode) === 0) {
|
|
22326
22506
|
metadata2 = new Metadata(metadata2);
|
|
22327
|
-
metadata2.selectNumberingPlan(
|
|
22507
|
+
metadata2.selectNumberingPlan(defaultCountry, countryCallingCode);
|
|
22328
22508
|
var possibleShorterNumber = number2.slice(countryCallingCode.length);
|
|
22329
|
-
var _extractNationalNumbe = extractNationalNumber(possibleShorterNumber, metadata2), possibleShorterNationalNumber = _extractNationalNumbe.nationalNumber;
|
|
22330
|
-
var _extractNationalNumbe2 = extractNationalNumber(number2, metadata2), nationalNumber = _extractNationalNumbe2.nationalNumber;
|
|
22331
|
-
if (!matchesEntirely(nationalNumber, metadata2.nationalNumberPattern()) && matchesEntirely(possibleShorterNationalNumber, metadata2.nationalNumberPattern()) || checkNumberLength(nationalNumber, metadata2) === "TOO_LONG") {
|
|
22509
|
+
var _extractNationalNumbe = extractNationalNumber(possibleShorterNumber, country, metadata2), possibleShorterNationalNumber = _extractNationalNumbe.nationalNumber;
|
|
22510
|
+
var _extractNationalNumbe2 = extractNationalNumber(number2, country, metadata2), nationalNumber = _extractNationalNumbe2.nationalNumber;
|
|
22511
|
+
if (!matchesEntirely(nationalNumber, metadata2.nationalNumberPattern()) && matchesEntirely(possibleShorterNationalNumber, metadata2.nationalNumberPattern()) || checkNumberLength(nationalNumber, country, metadata2) === "TOO_LONG") {
|
|
22332
22512
|
return {
|
|
22333
22513
|
countryCallingCode,
|
|
22334
22514
|
number: possibleShorterNumber
|
|
@@ -22339,19 +22519,19 @@ function extractCountryCallingCodeFromInternationalNumberWithoutPlusSign(number2
|
|
|
22339
22519
|
number: number2
|
|
22340
22520
|
};
|
|
22341
22521
|
}
|
|
22342
|
-
function extractCountryCallingCode(number2, country,
|
|
22522
|
+
function extractCountryCallingCode(number2, country, defaultCountry, defaultCallingCode, metadata2) {
|
|
22343
22523
|
if (!number2) {
|
|
22344
22524
|
return {};
|
|
22345
22525
|
}
|
|
22346
22526
|
var isNumberWithIddPrefix;
|
|
22347
22527
|
if (number2[0] !== "+") {
|
|
22348
|
-
var numberWithoutIDD = stripIddPrefix(number2,
|
|
22528
|
+
var numberWithoutIDD = stripIddPrefix(number2, defaultCountry, defaultCallingCode, metadata2);
|
|
22349
22529
|
if (numberWithoutIDD && numberWithoutIDD !== number2) {
|
|
22350
22530
|
isNumberWithIddPrefix = true;
|
|
22351
22531
|
number2 = "+" + numberWithoutIDD;
|
|
22352
22532
|
} else {
|
|
22353
|
-
if (
|
|
22354
|
-
var _extractCountryCallin = extractCountryCallingCodeFromInternationalNumberWithoutPlusSign(number2, country,
|
|
22533
|
+
if (defaultCountry || defaultCallingCode) {
|
|
22534
|
+
var _extractCountryCallin = extractCountryCallingCodeFromInternationalNumberWithoutPlusSign(number2, country, defaultCountry, defaultCallingCode, metadata2), countryCallingCode = _extractCountryCallin.countryCallingCode, shorterNumber = _extractCountryCallin.number;
|
|
22355
22535
|
if (countryCallingCode) {
|
|
22356
22536
|
return {
|
|
22357
22537
|
countryCallingCodeSource: "FROM_NUMBER_WITHOUT_PLUS_SIGN",
|
|
@@ -22475,63 +22655,6 @@ function formatRFC3966(_ref) {
|
|
|
22475
22655
|
}
|
|
22476
22656
|
return "tel:".concat(number2).concat(ext ? ";ext=" + ext : "");
|
|
22477
22657
|
}
|
|
22478
|
-
function _createForOfIteratorHelperLoose$2(o, allowArrayLike) {
|
|
22479
|
-
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
22480
|
-
if (it) return (it = it.call(o)).next.bind(it);
|
|
22481
|
-
if (Array.isArray(o) || (it = _unsupportedIterableToArray$3(o)) || allowArrayLike) {
|
|
22482
|
-
if (it) o = it;
|
|
22483
|
-
var i = 0;
|
|
22484
|
-
return function() {
|
|
22485
|
-
if (i >= o.length) return { done: true };
|
|
22486
|
-
return { done: false, value: o[i++] };
|
|
22487
|
-
};
|
|
22488
|
-
}
|
|
22489
|
-
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
22490
|
-
}
|
|
22491
|
-
function _unsupportedIterableToArray$3(o, minLen) {
|
|
22492
|
-
if (!o) return;
|
|
22493
|
-
if (typeof o === "string") return _arrayLikeToArray$3(o, minLen);
|
|
22494
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
22495
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
22496
|
-
if (n === "Map" || n === "Set") return Array.from(o);
|
|
22497
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$3(o, minLen);
|
|
22498
|
-
}
|
|
22499
|
-
function _arrayLikeToArray$3(arr, len) {
|
|
22500
|
-
if (len == null || len > arr.length) len = arr.length;
|
|
22501
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
22502
|
-
arr2[i] = arr[i];
|
|
22503
|
-
}
|
|
22504
|
-
return arr2;
|
|
22505
|
-
}
|
|
22506
|
-
function ownKeys$6(object, enumerableOnly) {
|
|
22507
|
-
var keys = Object.keys(object);
|
|
22508
|
-
if (Object.getOwnPropertySymbols) {
|
|
22509
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
|
22510
|
-
enumerableOnly && (symbols = symbols.filter(function(sym) {
|
|
22511
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
22512
|
-
})), keys.push.apply(keys, symbols);
|
|
22513
|
-
}
|
|
22514
|
-
return keys;
|
|
22515
|
-
}
|
|
22516
|
-
function _objectSpread$6(target) {
|
|
22517
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
22518
|
-
var source = null != arguments[i] ? arguments[i] : {};
|
|
22519
|
-
i % 2 ? ownKeys$6(Object(source), true).forEach(function(key) {
|
|
22520
|
-
_defineProperty$6(target, key, source[key]);
|
|
22521
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$6(Object(source)).forEach(function(key) {
|
|
22522
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
22523
|
-
});
|
|
22524
|
-
}
|
|
22525
|
-
return target;
|
|
22526
|
-
}
|
|
22527
|
-
function _defineProperty$6(obj, key, value) {
|
|
22528
|
-
if (key in obj) {
|
|
22529
|
-
Object.defineProperty(obj, key, { value, enumerable: true, configurable: true, writable: true });
|
|
22530
|
-
} else {
|
|
22531
|
-
obj[key] = value;
|
|
22532
|
-
}
|
|
22533
|
-
return obj;
|
|
22534
|
-
}
|
|
22535
22658
|
var DEFAULT_OPTIONS = {
|
|
22536
22659
|
formatExtension: function formatExtension(formattedNumber, extension, metadata2) {
|
|
22537
22660
|
return "".concat(formattedNumber).concat(metadata2.ext()).concat(extension);
|
|
@@ -22539,7 +22662,7 @@ var DEFAULT_OPTIONS = {
|
|
|
22539
22662
|
};
|
|
22540
22663
|
function formatNumber(input, format2, options, metadata2) {
|
|
22541
22664
|
if (options) {
|
|
22542
|
-
options =
|
|
22665
|
+
options = merge({}, DEFAULT_OPTIONS, options);
|
|
22543
22666
|
} else {
|
|
22544
22667
|
options = DEFAULT_OPTIONS;
|
|
22545
22668
|
}
|
|
@@ -22548,7 +22671,7 @@ function formatNumber(input, format2, options, metadata2) {
|
|
|
22548
22671
|
if (!metadata2.hasCountry(input.country)) {
|
|
22549
22672
|
throw new Error("Unknown country: ".concat(input.country));
|
|
22550
22673
|
}
|
|
22551
|
-
metadata2.
|
|
22674
|
+
metadata2.selectNumberingPlan(input.country);
|
|
22552
22675
|
} else if (input.countryCallingCode) {
|
|
22553
22676
|
metadata2.selectNumberingPlan(input.countryCallingCode);
|
|
22554
22677
|
} else return input.phone || "";
|
|
@@ -22596,19 +22719,16 @@ function formatNationalNumber(number2, carrierCode, formatAs, metadata2, options
|
|
|
22596
22719
|
withNationalPrefix: format2.nationalPrefixIsOptionalWhenFormattingInNationalFormat() && options && options.nationalPrefix === false ? false : true
|
|
22597
22720
|
});
|
|
22598
22721
|
}
|
|
22599
|
-
function chooseFormatForNumber(availableFormats,
|
|
22600
|
-
|
|
22601
|
-
var format2 = _step.value;
|
|
22722
|
+
function chooseFormatForNumber(availableFormats, nationalNumber) {
|
|
22723
|
+
return pickFirstMatchingElement(availableFormats, function(format2) {
|
|
22602
22724
|
if (format2.leadingDigitsPatterns().length > 0) {
|
|
22603
22725
|
var lastLeadingDigitsPattern = format2.leadingDigitsPatterns()[format2.leadingDigitsPatterns().length - 1];
|
|
22604
|
-
if (
|
|
22605
|
-
|
|
22726
|
+
if (nationalNumber.search(lastLeadingDigitsPattern) !== 0) {
|
|
22727
|
+
return false;
|
|
22606
22728
|
}
|
|
22607
22729
|
}
|
|
22608
|
-
|
|
22609
|
-
|
|
22610
|
-
}
|
|
22611
|
-
}
|
|
22730
|
+
return matchesEntirely(nationalNumber, format2.pattern());
|
|
22731
|
+
});
|
|
22612
22732
|
}
|
|
22613
22733
|
function addExtension(formattedNumber, ext, metadata2, formatExtension2) {
|
|
22614
22734
|
return ext ? formatExtension2(formattedNumber, ext, metadata2) : formattedNumber;
|
|
@@ -22627,53 +22747,87 @@ function formatIDD(nationalNumber, carrierCode, countryCallingCode, fromCountry,
|
|
|
22627
22747
|
return "".concat(iddPrefix, " ").concat(countryCallingCode, " ").concat(formatNationalNumber(nationalNumber, null, "INTERNATIONAL", metadata2));
|
|
22628
22748
|
}
|
|
22629
22749
|
}
|
|
22630
|
-
function
|
|
22631
|
-
var
|
|
22632
|
-
|
|
22633
|
-
|
|
22634
|
-
enumerableOnly && (symbols = symbols.filter(function(sym) {
|
|
22635
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
22636
|
-
})), keys.push.apply(keys, symbols);
|
|
22750
|
+
function merge() {
|
|
22751
|
+
var i = 1;
|
|
22752
|
+
for (var _len = arguments.length, objects = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
22753
|
+
objects[_key] = arguments[_key];
|
|
22637
22754
|
}
|
|
22638
|
-
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
|
|
22642
|
-
|
|
22643
|
-
|
|
22644
|
-
|
|
22645
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$5(Object(source)).forEach(function(key) {
|
|
22646
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
22647
|
-
});
|
|
22755
|
+
while (i < objects.length) {
|
|
22756
|
+
if (objects[i]) {
|
|
22757
|
+
for (var key in objects[i]) {
|
|
22758
|
+
objects[0][key] = objects[i][key];
|
|
22759
|
+
}
|
|
22760
|
+
}
|
|
22761
|
+
i++;
|
|
22648
22762
|
}
|
|
22649
|
-
return
|
|
22763
|
+
return objects[0];
|
|
22650
22764
|
}
|
|
22651
|
-
function
|
|
22652
|
-
|
|
22653
|
-
|
|
22654
|
-
|
|
22655
|
-
|
|
22765
|
+
function pickFirstMatchingElement(elements, testFunction) {
|
|
22766
|
+
var i = 0;
|
|
22767
|
+
while (i < elements.length) {
|
|
22768
|
+
if (testFunction(elements[i])) {
|
|
22769
|
+
return elements[i];
|
|
22770
|
+
}
|
|
22771
|
+
i++;
|
|
22656
22772
|
}
|
|
22657
|
-
return obj;
|
|
22658
22773
|
}
|
|
22659
|
-
function
|
|
22660
|
-
|
|
22661
|
-
|
|
22774
|
+
function _typeof$6(o) {
|
|
22775
|
+
"@babel/helpers - typeof";
|
|
22776
|
+
return _typeof$6 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
22777
|
+
return typeof o2;
|
|
22778
|
+
} : function(o2) {
|
|
22779
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
22780
|
+
}, _typeof$6(o);
|
|
22781
|
+
}
|
|
22782
|
+
function ownKeys$5(e, r) {
|
|
22783
|
+
var t2 = Object.keys(e);
|
|
22784
|
+
if (Object.getOwnPropertySymbols) {
|
|
22785
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
22786
|
+
r && (o = o.filter(function(r2) {
|
|
22787
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
22788
|
+
})), t2.push.apply(t2, o);
|
|
22789
|
+
}
|
|
22790
|
+
return t2;
|
|
22791
|
+
}
|
|
22792
|
+
function _objectSpread$5(e) {
|
|
22793
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
22794
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
22795
|
+
r % 2 ? ownKeys$5(Object(t2), true).forEach(function(r2) {
|
|
22796
|
+
_defineProperty$5(e, r2, t2[r2]);
|
|
22797
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys$5(Object(t2)).forEach(function(r2) {
|
|
22798
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
22799
|
+
});
|
|
22662
22800
|
}
|
|
22801
|
+
return e;
|
|
22802
|
+
}
|
|
22803
|
+
function _defineProperty$5(e, r, t2) {
|
|
22804
|
+
return (r = _toPropertyKey$5(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
22663
22805
|
}
|
|
22664
|
-
function
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
|
|
22670
|
-
Object.defineProperty(
|
|
22806
|
+
function _classCallCheck$1(a, n) {
|
|
22807
|
+
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
22808
|
+
}
|
|
22809
|
+
function _defineProperties(e, r) {
|
|
22810
|
+
for (var t2 = 0; t2 < r.length; t2++) {
|
|
22811
|
+
var o = r[t2];
|
|
22812
|
+
o.enumerable = o.enumerable || false, o.configurable = true, "value" in o && (o.writable = true), Object.defineProperty(e, _toPropertyKey$5(o.key), o);
|
|
22671
22813
|
}
|
|
22672
22814
|
}
|
|
22673
|
-
function _createClass$1(
|
|
22674
|
-
|
|
22675
|
-
|
|
22676
|
-
|
|
22815
|
+
function _createClass$1(e, r, t2) {
|
|
22816
|
+
return r && _defineProperties(e.prototype, r), Object.defineProperty(e, "prototype", { writable: false }), e;
|
|
22817
|
+
}
|
|
22818
|
+
function _toPropertyKey$5(t2) {
|
|
22819
|
+
var i = _toPrimitive$5(t2, "string");
|
|
22820
|
+
return "symbol" == _typeof$6(i) ? i : i + "";
|
|
22821
|
+
}
|
|
22822
|
+
function _toPrimitive$5(t2, r) {
|
|
22823
|
+
if ("object" != _typeof$6(t2) || !t2) return t2;
|
|
22824
|
+
var e = t2[Symbol.toPrimitive];
|
|
22825
|
+
if (void 0 !== e) {
|
|
22826
|
+
var i = e.call(t2, r);
|
|
22827
|
+
if ("object" != _typeof$6(i)) return i;
|
|
22828
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
22829
|
+
}
|
|
22830
|
+
return String(t2);
|
|
22677
22831
|
}
|
|
22678
22832
|
var PhoneNumber = /* @__PURE__ */ function() {
|
|
22679
22833
|
function PhoneNumber2(countryOrCountryCallingCode, nationalNumber, metadata2) {
|
|
@@ -22693,7 +22847,7 @@ var PhoneNumber = /* @__PURE__ */ function() {
|
|
|
22693
22847
|
if (!E164_NUMBER_REGEXP.test(e164Number)) {
|
|
22694
22848
|
throw new Error('Invalid `number` argument passed: must consist of a "+" followed by digits');
|
|
22695
22849
|
}
|
|
22696
|
-
var _extractCountryCallin = extractCountryCallingCode(e164Number, void 0, void 0, metadata2), _countryCallingCode = _extractCountryCallin.countryCallingCode, number2 = _extractCountryCallin.number;
|
|
22850
|
+
var _extractCountryCallin = extractCountryCallingCode(e164Number, void 0, void 0, void 0, metadata2), _countryCallingCode = _extractCountryCallin.countryCallingCode, number2 = _extractCountryCallin.number;
|
|
22697
22851
|
nationalNumber = number2;
|
|
22698
22852
|
countryOrCountryCallingCode = _countryCallingCode;
|
|
22699
22853
|
if (!nationalNumber) {
|
|
@@ -22716,7 +22870,7 @@ var PhoneNumber = /* @__PURE__ */ function() {
|
|
|
22716
22870
|
return metadata2;
|
|
22717
22871
|
};
|
|
22718
22872
|
}
|
|
22719
|
-
_createClass$1(PhoneNumber2, [{
|
|
22873
|
+
return _createClass$1(PhoneNumber2, [{
|
|
22720
22874
|
key: "setExt",
|
|
22721
22875
|
value: function setExt(ext) {
|
|
22722
22876
|
this.ext = ext;
|
|
@@ -22800,7 +22954,6 @@ var PhoneNumber = /* @__PURE__ */ function() {
|
|
|
22800
22954
|
return this.format("RFC3966", options);
|
|
22801
22955
|
}
|
|
22802
22956
|
}]);
|
|
22803
|
-
return PhoneNumber2;
|
|
22804
22957
|
}();
|
|
22805
22958
|
var isCountryCode = function isCountryCode2(value) {
|
|
22806
22959
|
return /^[A-Z]{2}$/.test(value);
|
|
@@ -22822,131 +22975,95 @@ function getCountryAndCountryCallingCode(countryOrCountryCallingCode, metadataJs
|
|
|
22822
22975
|
};
|
|
22823
22976
|
}
|
|
22824
22977
|
var E164_NUMBER_REGEXP = /^\+\d+$/;
|
|
22825
|
-
function _typeof(
|
|
22978
|
+
function _typeof$5(o) {
|
|
22826
22979
|
"@babel/helpers - typeof";
|
|
22827
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(
|
|
22828
|
-
return typeof
|
|
22829
|
-
} : function(
|
|
22830
|
-
return
|
|
22831
|
-
}, _typeof(
|
|
22832
|
-
}
|
|
22833
|
-
function _createClass(
|
|
22834
|
-
Object.defineProperty(
|
|
22835
|
-
|
|
22836
|
-
|
|
22837
|
-
|
|
22838
|
-
|
|
22839
|
-
|
|
22840
|
-
|
|
22841
|
-
}
|
|
22842
|
-
function
|
|
22843
|
-
if (
|
|
22844
|
-
|
|
22845
|
-
|
|
22846
|
-
|
|
22847
|
-
|
|
22848
|
-
if (
|
|
22849
|
-
|
|
22850
|
-
|
|
22851
|
-
|
|
22852
|
-
|
|
22853
|
-
|
|
22854
|
-
|
|
22855
|
-
|
|
22856
|
-
|
|
22857
|
-
|
|
22858
|
-
|
|
22859
|
-
|
|
22860
|
-
|
|
22861
|
-
|
|
22862
|
-
|
|
22863
|
-
function _possibleConstructorReturn(self2, call) {
|
|
22864
|
-
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
22865
|
-
return call;
|
|
22866
|
-
} else if (call !== void 0) {
|
|
22867
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
22868
|
-
}
|
|
22869
|
-
return _assertThisInitialized(self2);
|
|
22870
|
-
}
|
|
22871
|
-
function _assertThisInitialized(self2) {
|
|
22872
|
-
if (self2 === void 0) {
|
|
22873
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
22874
|
-
}
|
|
22875
|
-
return self2;
|
|
22876
|
-
}
|
|
22877
|
-
function _wrapNativeSuper(Class) {
|
|
22878
|
-
var _cache = typeof Map === "function" ? /* @__PURE__ */ new Map() : void 0;
|
|
22879
|
-
_wrapNativeSuper = function _wrapNativeSuper2(Class2) {
|
|
22880
|
-
if (Class2 === null || !_isNativeFunction(Class2)) return Class2;
|
|
22881
|
-
if (typeof Class2 !== "function") {
|
|
22882
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
22883
|
-
}
|
|
22884
|
-
if (typeof _cache !== "undefined") {
|
|
22885
|
-
if (_cache.has(Class2)) return _cache.get(Class2);
|
|
22886
|
-
_cache.set(Class2, Wrapper);
|
|
22980
|
+
return _typeof$5 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
22981
|
+
return typeof o2;
|
|
22982
|
+
} : function(o2) {
|
|
22983
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
22984
|
+
}, _typeof$5(o);
|
|
22985
|
+
}
|
|
22986
|
+
function _createClass(e, r, t2) {
|
|
22987
|
+
return Object.defineProperty(e, "prototype", { writable: false }), e;
|
|
22988
|
+
}
|
|
22989
|
+
function _classCallCheck(a, n) {
|
|
22990
|
+
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
22991
|
+
}
|
|
22992
|
+
function _callSuper(t2, o, e) {
|
|
22993
|
+
return o = _getPrototypeOf(o), _possibleConstructorReturn(t2, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t2).constructor) : o.apply(t2, e));
|
|
22994
|
+
}
|
|
22995
|
+
function _possibleConstructorReturn(t2, e) {
|
|
22996
|
+
if (e && ("object" == _typeof$5(e) || "function" == typeof e)) return e;
|
|
22997
|
+
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
|
22998
|
+
return _assertThisInitialized(t2);
|
|
22999
|
+
}
|
|
23000
|
+
function _assertThisInitialized(e) {
|
|
23001
|
+
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
23002
|
+
return e;
|
|
23003
|
+
}
|
|
23004
|
+
function _inherits(t2, e) {
|
|
23005
|
+
if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
|
|
23006
|
+
t2.prototype = Object.create(e && e.prototype, { constructor: { value: t2, writable: true, configurable: true } }), Object.defineProperty(t2, "prototype", { writable: false }), e && _setPrototypeOf(t2, e);
|
|
23007
|
+
}
|
|
23008
|
+
function _wrapNativeSuper(t2) {
|
|
23009
|
+
var r = "function" == typeof Map ? /* @__PURE__ */ new Map() : void 0;
|
|
23010
|
+
return _wrapNativeSuper = function _wrapNativeSuper2(t3) {
|
|
23011
|
+
if (null === t3 || !_isNativeFunction(t3)) return t3;
|
|
23012
|
+
if ("function" != typeof t3) throw new TypeError("Super expression must either be null or a function");
|
|
23013
|
+
if (void 0 !== r) {
|
|
23014
|
+
if (r.has(t3)) return r.get(t3);
|
|
23015
|
+
r.set(t3, Wrapper);
|
|
22887
23016
|
}
|
|
22888
23017
|
function Wrapper() {
|
|
22889
|
-
return _construct(
|
|
23018
|
+
return _construct(t3, arguments, _getPrototypeOf(this).constructor);
|
|
22890
23019
|
}
|
|
22891
|
-
Wrapper.prototype = Object.create(
|
|
22892
|
-
|
|
22893
|
-
};
|
|
22894
|
-
return _wrapNativeSuper(Class);
|
|
23020
|
+
return Wrapper.prototype = Object.create(t3.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }), _setPrototypeOf(Wrapper, t3);
|
|
23021
|
+
}, _wrapNativeSuper(t2);
|
|
22895
23022
|
}
|
|
22896
|
-
function _construct(
|
|
22897
|
-
if (_isNativeReflectConstruct())
|
|
22898
|
-
|
|
22899
|
-
|
|
22900
|
-
|
|
22901
|
-
|
|
22902
|
-
a.push.apply(a, args2);
|
|
22903
|
-
var Constructor = Function.bind.apply(Parent2, a);
|
|
22904
|
-
var instance = new Constructor();
|
|
22905
|
-
if (Class2) _setPrototypeOf(instance, Class2.prototype);
|
|
22906
|
-
return instance;
|
|
22907
|
-
};
|
|
22908
|
-
}
|
|
22909
|
-
return _construct.apply(null, arguments);
|
|
23023
|
+
function _construct(t2, e, r) {
|
|
23024
|
+
if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments);
|
|
23025
|
+
var o = [null];
|
|
23026
|
+
o.push.apply(o, e);
|
|
23027
|
+
var p = new (t2.bind.apply(t2, o))();
|
|
23028
|
+
return r && _setPrototypeOf(p, r.prototype), p;
|
|
22910
23029
|
}
|
|
22911
23030
|
function _isNativeReflectConstruct() {
|
|
22912
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
22913
|
-
if (Reflect.construct.sham) return false;
|
|
22914
|
-
if (typeof Proxy === "function") return true;
|
|
22915
23031
|
try {
|
|
22916
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {
|
|
23032
|
+
var t2 = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {
|
|
22917
23033
|
}));
|
|
22918
|
-
|
|
22919
|
-
} catch (e) {
|
|
22920
|
-
return false;
|
|
23034
|
+
} catch (t3) {
|
|
22921
23035
|
}
|
|
23036
|
+
return (_isNativeReflectConstruct = function _isNativeReflectConstruct2() {
|
|
23037
|
+
return !!t2;
|
|
23038
|
+
})();
|
|
22922
23039
|
}
|
|
22923
|
-
function _isNativeFunction(
|
|
22924
|
-
|
|
23040
|
+
function _isNativeFunction(t2) {
|
|
23041
|
+
try {
|
|
23042
|
+
return -1 !== Function.toString.call(t2).indexOf("[native code]");
|
|
23043
|
+
} catch (n) {
|
|
23044
|
+
return "function" == typeof t2;
|
|
23045
|
+
}
|
|
22925
23046
|
}
|
|
22926
|
-
function _setPrototypeOf(
|
|
22927
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
22928
|
-
|
|
22929
|
-
|
|
22930
|
-
};
|
|
22931
|
-
return _setPrototypeOf(o, p);
|
|
23047
|
+
function _setPrototypeOf(t2, e) {
|
|
23048
|
+
return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(t3, e2) {
|
|
23049
|
+
return t3.__proto__ = e2, t3;
|
|
23050
|
+
}, _setPrototypeOf(t2, e);
|
|
22932
23051
|
}
|
|
22933
|
-
function _getPrototypeOf(
|
|
22934
|
-
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function
|
|
22935
|
-
return
|
|
22936
|
-
};
|
|
22937
|
-
return _getPrototypeOf(o);
|
|
23052
|
+
function _getPrototypeOf(t2) {
|
|
23053
|
+
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(t3) {
|
|
23054
|
+
return t3.__proto__ || Object.getPrototypeOf(t3);
|
|
23055
|
+
}, _getPrototypeOf(t2);
|
|
22938
23056
|
}
|
|
22939
23057
|
var ParseError = /* @__PURE__ */ function(_Error) {
|
|
22940
|
-
_inherits(ParseError2, _Error);
|
|
22941
|
-
var _super = _createSuper(ParseError2);
|
|
22942
23058
|
function ParseError2(code2) {
|
|
22943
23059
|
var _this;
|
|
22944
23060
|
_classCallCheck(this, ParseError2);
|
|
22945
|
-
_this =
|
|
22946
|
-
Object.setPrototypeOf(
|
|
23061
|
+
_this = _callSuper(this, ParseError2, [code2]);
|
|
23062
|
+
Object.setPrototypeOf(_this, ParseError2.prototype);
|
|
22947
23063
|
_this.name = _this.constructor.name;
|
|
22948
23064
|
return _this;
|
|
22949
23065
|
}
|
|
23066
|
+
_inherits(ParseError2, _Error);
|
|
22950
23067
|
return _createClass(ParseError2);
|
|
22951
23068
|
}(/* @__PURE__ */ _wrapNativeSuper(Error));
|
|
22952
23069
|
var EXTN_PATTERN = new RegExp("(?:" + createExtensionPattern() + ")$", "i");
|
|
@@ -23043,43 +23160,39 @@ var DIGITS = {
|
|
|
23043
23160
|
function parseDigit(character) {
|
|
23044
23161
|
return DIGITS[character];
|
|
23045
23162
|
}
|
|
23046
|
-
function _createForOfIteratorHelperLoose
|
|
23047
|
-
var
|
|
23048
|
-
if (
|
|
23049
|
-
if (Array.isArray(
|
|
23050
|
-
|
|
23051
|
-
var
|
|
23163
|
+
function _createForOfIteratorHelperLoose(r, e) {
|
|
23164
|
+
var t2 = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
23165
|
+
if (t2) return (t2 = t2.call(r)).next.bind(t2);
|
|
23166
|
+
if (Array.isArray(r) || (t2 = _unsupportedIterableToArray$1(r)) || e) {
|
|
23167
|
+
t2 && (r = t2);
|
|
23168
|
+
var o = 0;
|
|
23052
23169
|
return function() {
|
|
23053
|
-
|
|
23054
|
-
return { done: false, value: o[i++] };
|
|
23170
|
+
return o >= r.length ? { done: true } : { done: false, value: r[o++] };
|
|
23055
23171
|
};
|
|
23056
23172
|
}
|
|
23057
23173
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
23058
23174
|
}
|
|
23059
|
-
function _unsupportedIterableToArray$
|
|
23060
|
-
if (
|
|
23061
|
-
|
|
23062
|
-
|
|
23063
|
-
|
|
23064
|
-
if (n === "Map" || n === "Set") return Array.from(o);
|
|
23065
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$2(o, minLen);
|
|
23066
|
-
}
|
|
23067
|
-
function _arrayLikeToArray$2(arr, len) {
|
|
23068
|
-
if (len == null || len > arr.length) len = arr.length;
|
|
23069
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
23070
|
-
arr2[i] = arr[i];
|
|
23175
|
+
function _unsupportedIterableToArray$1(r, a) {
|
|
23176
|
+
if (r) {
|
|
23177
|
+
if ("string" == typeof r) return _arrayLikeToArray$1(r, a);
|
|
23178
|
+
var t2 = {}.toString.call(r).slice(8, -1);
|
|
23179
|
+
return "Object" === t2 && r.constructor && (t2 = r.constructor.name), "Map" === t2 || "Set" === t2 ? Array.from(r) : "Arguments" === t2 || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t2) ? _arrayLikeToArray$1(r, a) : void 0;
|
|
23071
23180
|
}
|
|
23072
|
-
|
|
23181
|
+
}
|
|
23182
|
+
function _arrayLikeToArray$1(r, a) {
|
|
23183
|
+
(null == a || a > r.length) && (a = r.length);
|
|
23184
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
23185
|
+
return n;
|
|
23073
23186
|
}
|
|
23074
23187
|
function parseIncompletePhoneNumber(string) {
|
|
23075
23188
|
var result2 = "";
|
|
23076
|
-
for (var _iterator = _createForOfIteratorHelperLoose
|
|
23189
|
+
for (var _iterator = _createForOfIteratorHelperLoose(string.split("")), _step; !(_step = _iterator()).done; ) {
|
|
23077
23190
|
var character = _step.value;
|
|
23078
23191
|
result2 += parsePhoneNumberCharacter(character, result2) || "";
|
|
23079
23192
|
}
|
|
23080
23193
|
return result2;
|
|
23081
23194
|
}
|
|
23082
|
-
function parsePhoneNumberCharacter(character, prevParsedCharacters,
|
|
23195
|
+
function parsePhoneNumberCharacter(character, prevParsedCharacters, eventListener) {
|
|
23083
23196
|
if (character === "+") {
|
|
23084
23197
|
if (prevParsedCharacters) {
|
|
23085
23198
|
return;
|
|
@@ -23088,66 +23201,6 @@ function parsePhoneNumberCharacter(character, prevParsedCharacters, emitEvent2)
|
|
|
23088
23201
|
}
|
|
23089
23202
|
return parseDigit(character);
|
|
23090
23203
|
}
|
|
23091
|
-
function _createForOfIteratorHelperLoose(o, allowArrayLike) {
|
|
23092
|
-
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
23093
|
-
if (it) return (it = it.call(o)).next.bind(it);
|
|
23094
|
-
if (Array.isArray(o) || (it = _unsupportedIterableToArray$1(o)) || allowArrayLike) {
|
|
23095
|
-
if (it) o = it;
|
|
23096
|
-
var i = 0;
|
|
23097
|
-
return function() {
|
|
23098
|
-
if (i >= o.length) return { done: true };
|
|
23099
|
-
return { done: false, value: o[i++] };
|
|
23100
|
-
};
|
|
23101
|
-
}
|
|
23102
|
-
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
23103
|
-
}
|
|
23104
|
-
function _unsupportedIterableToArray$1(o, minLen) {
|
|
23105
|
-
if (!o) return;
|
|
23106
|
-
if (typeof o === "string") return _arrayLikeToArray$1(o, minLen);
|
|
23107
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
23108
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
23109
|
-
if (n === "Map" || n === "Set") return Array.from(o);
|
|
23110
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen);
|
|
23111
|
-
}
|
|
23112
|
-
function _arrayLikeToArray$1(arr, len) {
|
|
23113
|
-
if (len == null || len > arr.length) len = arr.length;
|
|
23114
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
23115
|
-
arr2[i] = arr[i];
|
|
23116
|
-
}
|
|
23117
|
-
return arr2;
|
|
23118
|
-
}
|
|
23119
|
-
function getCountryByNationalNumber(nationalPhoneNumber, _ref) {
|
|
23120
|
-
var countries = _ref.countries, metadata2 = _ref.metadata;
|
|
23121
|
-
metadata2 = new Metadata(metadata2);
|
|
23122
|
-
for (var _iterator = _createForOfIteratorHelperLoose(countries), _step; !(_step = _iterator()).done; ) {
|
|
23123
|
-
var country = _step.value;
|
|
23124
|
-
metadata2.country(country);
|
|
23125
|
-
if (metadata2.leadingDigits()) {
|
|
23126
|
-
if (nationalPhoneNumber && nationalPhoneNumber.search(metadata2.leadingDigits()) === 0) {
|
|
23127
|
-
return country;
|
|
23128
|
-
}
|
|
23129
|
-
} else if (getNumberType({
|
|
23130
|
-
phone: nationalPhoneNumber,
|
|
23131
|
-
country
|
|
23132
|
-
}, void 0, metadata2.metadata)) {
|
|
23133
|
-
return country;
|
|
23134
|
-
}
|
|
23135
|
-
}
|
|
23136
|
-
}
|
|
23137
|
-
function getCountryByCallingCode(callingCode, _ref) {
|
|
23138
|
-
var nationalPhoneNumber = _ref.nationalNumber, metadata2 = _ref.metadata;
|
|
23139
|
-
var possibleCountries = metadata2.getCountryCodesForCallingCode(callingCode);
|
|
23140
|
-
if (!possibleCountries) {
|
|
23141
|
-
return;
|
|
23142
|
-
}
|
|
23143
|
-
if (possibleCountries.length === 1) {
|
|
23144
|
-
return possibleCountries[0];
|
|
23145
|
-
}
|
|
23146
|
-
return getCountryByNationalNumber(nationalPhoneNumber, {
|
|
23147
|
-
countries: possibleCountries,
|
|
23148
|
-
metadata: metadata2.metadata
|
|
23149
|
-
});
|
|
23150
|
-
}
|
|
23151
23204
|
var PLUS_SIGN = "+";
|
|
23152
23205
|
var RFC3966_VISUAL_SEPARATOR_ = "[\\-\\.\\(\\)]?";
|
|
23153
23206
|
var RFC3966_PHONE_DIGIT_ = "([" + VALID_DIGITS + "]|" + RFC3966_VISUAL_SEPARATOR_ + ")";
|
|
@@ -23283,7 +23336,7 @@ function parse(text2, options, metadata2) {
|
|
|
23283
23336
|
countryCallingCode,
|
|
23284
23337
|
carrierCode,
|
|
23285
23338
|
valid,
|
|
23286
|
-
possible: valid ? true : options.extended === true && metadata2.possibleLengths() && isPossibleNumber(nationalNumber, metadata2) ? true : false,
|
|
23339
|
+
possible: valid ? true : options.extended === true && metadata2.possibleLengths() && isPossibleNumber(nationalNumber, country, metadata2) ? true : false,
|
|
23287
23340
|
phone: nationalNumber,
|
|
23288
23341
|
ext
|
|
23289
23342
|
};
|
|
@@ -23343,7 +23396,7 @@ function result(country, nationalNumber, ext) {
|
|
|
23343
23396
|
return result2;
|
|
23344
23397
|
}
|
|
23345
23398
|
function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCallingCode, metadata2) {
|
|
23346
|
-
var _extractCountryCallin = extractCountryCallingCode(parseIncompletePhoneNumber(formattedPhoneNumber), defaultCountry, defaultCallingCode, metadata2.metadata), countryCallingCodeSource = _extractCountryCallin.countryCallingCodeSource, countryCallingCode = _extractCountryCallin.countryCallingCode, number2 = _extractCountryCallin.number;
|
|
23399
|
+
var _extractCountryCallin = extractCountryCallingCode(parseIncompletePhoneNumber(formattedPhoneNumber), void 0, defaultCountry, defaultCallingCode, metadata2.metadata), countryCallingCodeSource = _extractCountryCallin.countryCallingCodeSource, countryCallingCode = _extractCountryCallin.countryCallingCode, number2 = _extractCountryCallin.number;
|
|
23347
23400
|
var country;
|
|
23348
23401
|
if (countryCallingCode) {
|
|
23349
23402
|
metadata2.selectNumberingPlan(countryCallingCode);
|
|
@@ -23360,7 +23413,7 @@ function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCalling
|
|
|
23360
23413
|
countryCallingCode
|
|
23361
23414
|
};
|
|
23362
23415
|
}
|
|
23363
|
-
var _extractNationalNumbe = extractNationalNumber(parseIncompletePhoneNumber(number2), metadata2), nationalNumber = _extractNationalNumbe.nationalNumber, carrierCode = _extractNationalNumbe.carrierCode;
|
|
23416
|
+
var _extractNationalNumbe = extractNationalNumber(parseIncompletePhoneNumber(number2), country, metadata2), nationalNumber = _extractNationalNumbe.nationalNumber, carrierCode = _extractNationalNumbe.carrierCode;
|
|
23364
23417
|
var exactCountry = getCountryByCallingCode(countryCallingCode, {
|
|
23365
23418
|
nationalNumber,
|
|
23366
23419
|
metadata: metadata2
|
|
@@ -23369,7 +23422,7 @@ function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCalling
|
|
|
23369
23422
|
country = exactCountry;
|
|
23370
23423
|
if (exactCountry === "001") ;
|
|
23371
23424
|
else {
|
|
23372
|
-
metadata2.
|
|
23425
|
+
metadata2.selectNumberingPlan(country);
|
|
23373
23426
|
}
|
|
23374
23427
|
}
|
|
23375
23428
|
return {
|
|
@@ -23380,116 +23433,142 @@ function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCalling
|
|
|
23380
23433
|
carrierCode
|
|
23381
23434
|
};
|
|
23382
23435
|
}
|
|
23383
|
-
function
|
|
23384
|
-
|
|
23436
|
+
function _typeof$4(o) {
|
|
23437
|
+
"@babel/helpers - typeof";
|
|
23438
|
+
return _typeof$4 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
23439
|
+
return typeof o2;
|
|
23440
|
+
} : function(o2) {
|
|
23441
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
23442
|
+
}, _typeof$4(o);
|
|
23443
|
+
}
|
|
23444
|
+
function ownKeys$4(e, r) {
|
|
23445
|
+
var t2 = Object.keys(e);
|
|
23385
23446
|
if (Object.getOwnPropertySymbols) {
|
|
23386
|
-
var
|
|
23387
|
-
|
|
23388
|
-
return Object.getOwnPropertyDescriptor(
|
|
23389
|
-
})),
|
|
23390
|
-
}
|
|
23391
|
-
return
|
|
23392
|
-
}
|
|
23393
|
-
function _objectSpread$4(
|
|
23394
|
-
for (var
|
|
23395
|
-
var
|
|
23396
|
-
|
|
23397
|
-
_defineProperty$4(
|
|
23398
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
23399
|
-
Object.defineProperty(
|
|
23447
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
23448
|
+
r && (o = o.filter(function(r2) {
|
|
23449
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
23450
|
+
})), t2.push.apply(t2, o);
|
|
23451
|
+
}
|
|
23452
|
+
return t2;
|
|
23453
|
+
}
|
|
23454
|
+
function _objectSpread$4(e) {
|
|
23455
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
23456
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
23457
|
+
r % 2 ? ownKeys$4(Object(t2), true).forEach(function(r2) {
|
|
23458
|
+
_defineProperty$4(e, r2, t2[r2]);
|
|
23459
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys$4(Object(t2)).forEach(function(r2) {
|
|
23460
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
23400
23461
|
});
|
|
23401
23462
|
}
|
|
23402
|
-
return
|
|
23463
|
+
return e;
|
|
23403
23464
|
}
|
|
23404
|
-
function _defineProperty$4(
|
|
23405
|
-
|
|
23406
|
-
|
|
23407
|
-
|
|
23408
|
-
|
|
23465
|
+
function _defineProperty$4(e, r, t2) {
|
|
23466
|
+
return (r = _toPropertyKey$4(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
23467
|
+
}
|
|
23468
|
+
function _toPropertyKey$4(t2) {
|
|
23469
|
+
var i = _toPrimitive$4(t2, "string");
|
|
23470
|
+
return "symbol" == _typeof$4(i) ? i : i + "";
|
|
23471
|
+
}
|
|
23472
|
+
function _toPrimitive$4(t2, r) {
|
|
23473
|
+
if ("object" != _typeof$4(t2) || !t2) return t2;
|
|
23474
|
+
var e = t2[Symbol.toPrimitive];
|
|
23475
|
+
if (void 0 !== e) {
|
|
23476
|
+
var i = e.call(t2, r);
|
|
23477
|
+
if ("object" != _typeof$4(i)) return i;
|
|
23478
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23409
23479
|
}
|
|
23410
|
-
return
|
|
23480
|
+
return ("string" === r ? String : Number)(t2);
|
|
23411
23481
|
}
|
|
23412
23482
|
function parsePhoneNumberWithError(text2, options, metadata2) {
|
|
23413
23483
|
return parse(text2, _objectSpread$4(_objectSpread$4({}, options), {}, {
|
|
23414
23484
|
v2: true
|
|
23415
23485
|
}), metadata2);
|
|
23416
23486
|
}
|
|
23417
|
-
function
|
|
23418
|
-
|
|
23487
|
+
function _typeof$3(o) {
|
|
23488
|
+
"@babel/helpers - typeof";
|
|
23489
|
+
return _typeof$3 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
23490
|
+
return typeof o2;
|
|
23491
|
+
} : function(o2) {
|
|
23492
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
23493
|
+
}, _typeof$3(o);
|
|
23494
|
+
}
|
|
23495
|
+
function ownKeys$3(e, r) {
|
|
23496
|
+
var t2 = Object.keys(e);
|
|
23419
23497
|
if (Object.getOwnPropertySymbols) {
|
|
23420
|
-
var
|
|
23421
|
-
|
|
23422
|
-
return Object.getOwnPropertyDescriptor(
|
|
23423
|
-
})),
|
|
23424
|
-
}
|
|
23425
|
-
return
|
|
23426
|
-
}
|
|
23427
|
-
function _objectSpread$3(
|
|
23428
|
-
for (var
|
|
23429
|
-
var
|
|
23430
|
-
|
|
23431
|
-
_defineProperty$3(
|
|
23432
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
23433
|
-
Object.defineProperty(
|
|
23498
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
23499
|
+
r && (o = o.filter(function(r2) {
|
|
23500
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
23501
|
+
})), t2.push.apply(t2, o);
|
|
23502
|
+
}
|
|
23503
|
+
return t2;
|
|
23504
|
+
}
|
|
23505
|
+
function _objectSpread$3(e) {
|
|
23506
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
23507
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
23508
|
+
r % 2 ? ownKeys$3(Object(t2), true).forEach(function(r2) {
|
|
23509
|
+
_defineProperty$3(e, r2, t2[r2]);
|
|
23510
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys$3(Object(t2)).forEach(function(r2) {
|
|
23511
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
23434
23512
|
});
|
|
23435
23513
|
}
|
|
23436
|
-
return
|
|
23514
|
+
return e;
|
|
23437
23515
|
}
|
|
23438
|
-
function _defineProperty$3(
|
|
23439
|
-
|
|
23440
|
-
|
|
23441
|
-
|
|
23442
|
-
|
|
23516
|
+
function _defineProperty$3(e, r, t2) {
|
|
23517
|
+
return (r = _toPropertyKey$3(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
23518
|
+
}
|
|
23519
|
+
function _toPropertyKey$3(t2) {
|
|
23520
|
+
var i = _toPrimitive$3(t2, "string");
|
|
23521
|
+
return "symbol" == _typeof$3(i) ? i : i + "";
|
|
23522
|
+
}
|
|
23523
|
+
function _toPrimitive$3(t2, r) {
|
|
23524
|
+
if ("object" != _typeof$3(t2) || !t2) return t2;
|
|
23525
|
+
var e = t2[Symbol.toPrimitive];
|
|
23526
|
+
if (void 0 !== e) {
|
|
23527
|
+
var i = e.call(t2, r);
|
|
23528
|
+
if ("object" != _typeof$3(i)) return i;
|
|
23529
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23443
23530
|
}
|
|
23444
|
-
return
|
|
23531
|
+
return ("string" === r ? String : Number)(t2);
|
|
23445
23532
|
}
|
|
23446
|
-
function _slicedToArray(
|
|
23447
|
-
return _arrayWithHoles(
|
|
23533
|
+
function _slicedToArray(r, e) {
|
|
23534
|
+
return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
|
|
23448
23535
|
}
|
|
23449
23536
|
function _nonIterableRest() {
|
|
23450
23537
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
23451
23538
|
}
|
|
23452
|
-
function _unsupportedIterableToArray(
|
|
23453
|
-
if (
|
|
23454
|
-
|
|
23455
|
-
|
|
23456
|
-
|
|
23457
|
-
|
|
23458
|
-
|
|
23459
|
-
|
|
23460
|
-
|
|
23461
|
-
|
|
23462
|
-
|
|
23463
|
-
|
|
23464
|
-
|
|
23465
|
-
|
|
23466
|
-
|
|
23467
|
-
|
|
23468
|
-
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
23469
|
-
if (_i == null) return;
|
|
23470
|
-
var _arr = [];
|
|
23471
|
-
var _n = true;
|
|
23472
|
-
var _d = false;
|
|
23473
|
-
var _s, _e;
|
|
23474
|
-
try {
|
|
23475
|
-
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
23476
|
-
_arr.push(_s.value);
|
|
23477
|
-
if (i && _arr.length === i) break;
|
|
23478
|
-
}
|
|
23479
|
-
} catch (err) {
|
|
23480
|
-
_d = true;
|
|
23481
|
-
_e = err;
|
|
23482
|
-
} finally {
|
|
23539
|
+
function _unsupportedIterableToArray(r, a) {
|
|
23540
|
+
if (r) {
|
|
23541
|
+
if ("string" == typeof r) return _arrayLikeToArray(r, a);
|
|
23542
|
+
var t2 = {}.toString.call(r).slice(8, -1);
|
|
23543
|
+
return "Object" === t2 && r.constructor && (t2 = r.constructor.name), "Map" === t2 || "Set" === t2 ? Array.from(r) : "Arguments" === t2 || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t2) ? _arrayLikeToArray(r, a) : void 0;
|
|
23544
|
+
}
|
|
23545
|
+
}
|
|
23546
|
+
function _arrayLikeToArray(r, a) {
|
|
23547
|
+
(null == a || a > r.length) && (a = r.length);
|
|
23548
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
23549
|
+
return n;
|
|
23550
|
+
}
|
|
23551
|
+
function _iterableToArrayLimit(r, l) {
|
|
23552
|
+
var t2 = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
23553
|
+
if (null != t2) {
|
|
23554
|
+
var e, n, i, u, a = [], f = true, o = false;
|
|
23483
23555
|
try {
|
|
23484
|
-
if (
|
|
23556
|
+
if (i = (t2 = t2.call(r)).next, 0 === l) ;
|
|
23557
|
+
else for (; !(f = (e = i.call(t2)).done) && (a.push(e.value), a.length !== l); f = true) ;
|
|
23558
|
+
} catch (r2) {
|
|
23559
|
+
o = true, n = r2;
|
|
23485
23560
|
} finally {
|
|
23486
|
-
|
|
23561
|
+
try {
|
|
23562
|
+
if (!f && null != t2["return"] && (u = t2["return"](), Object(u) !== u)) return;
|
|
23563
|
+
} finally {
|
|
23564
|
+
if (o) throw n;
|
|
23565
|
+
}
|
|
23487
23566
|
}
|
|
23567
|
+
return a;
|
|
23488
23568
|
}
|
|
23489
|
-
return _arr;
|
|
23490
23569
|
}
|
|
23491
|
-
function _arrayWithHoles(
|
|
23492
|
-
if (Array.isArray(
|
|
23570
|
+
function _arrayWithHoles(r) {
|
|
23571
|
+
if (Array.isArray(r)) return r;
|
|
23493
23572
|
}
|
|
23494
23573
|
function normalizeArguments(args) {
|
|
23495
23574
|
var _Array$prototype$slic = Array.prototype.slice.call(args), _Array$prototype$slic2 = _slicedToArray(_Array$prototype$slic, 4), arg_1 = _Array$prototype$slic2[0], arg_2 = _Array$prototype$slic2[1], arg_3 = _Array$prototype$slic2[2], arg_4 = _Array$prototype$slic2[3];
|
|
@@ -23526,34 +23605,51 @@ function normalizeArguments(args) {
|
|
|
23526
23605
|
metadata: metadata2
|
|
23527
23606
|
};
|
|
23528
23607
|
}
|
|
23529
|
-
function
|
|
23530
|
-
|
|
23608
|
+
function _typeof$2(o) {
|
|
23609
|
+
"@babel/helpers - typeof";
|
|
23610
|
+
return _typeof$2 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
23611
|
+
return typeof o2;
|
|
23612
|
+
} : function(o2) {
|
|
23613
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
23614
|
+
}, _typeof$2(o);
|
|
23615
|
+
}
|
|
23616
|
+
function ownKeys$2(e, r) {
|
|
23617
|
+
var t2 = Object.keys(e);
|
|
23531
23618
|
if (Object.getOwnPropertySymbols) {
|
|
23532
|
-
var
|
|
23533
|
-
|
|
23534
|
-
return Object.getOwnPropertyDescriptor(
|
|
23535
|
-
})),
|
|
23536
|
-
}
|
|
23537
|
-
return
|
|
23538
|
-
}
|
|
23539
|
-
function _objectSpread$2(
|
|
23540
|
-
for (var
|
|
23541
|
-
var
|
|
23542
|
-
|
|
23543
|
-
_defineProperty$2(
|
|
23544
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
23545
|
-
Object.defineProperty(
|
|
23619
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
23620
|
+
r && (o = o.filter(function(r2) {
|
|
23621
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
23622
|
+
})), t2.push.apply(t2, o);
|
|
23623
|
+
}
|
|
23624
|
+
return t2;
|
|
23625
|
+
}
|
|
23626
|
+
function _objectSpread$2(e) {
|
|
23627
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
23628
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
23629
|
+
r % 2 ? ownKeys$2(Object(t2), true).forEach(function(r2) {
|
|
23630
|
+
_defineProperty$2(e, r2, t2[r2]);
|
|
23631
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys$2(Object(t2)).forEach(function(r2) {
|
|
23632
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
23546
23633
|
});
|
|
23547
23634
|
}
|
|
23548
|
-
return
|
|
23635
|
+
return e;
|
|
23549
23636
|
}
|
|
23550
|
-
function _defineProperty$2(
|
|
23551
|
-
|
|
23552
|
-
|
|
23553
|
-
|
|
23554
|
-
|
|
23637
|
+
function _defineProperty$2(e, r, t2) {
|
|
23638
|
+
return (r = _toPropertyKey$2(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
23639
|
+
}
|
|
23640
|
+
function _toPropertyKey$2(t2) {
|
|
23641
|
+
var i = _toPrimitive$2(t2, "string");
|
|
23642
|
+
return "symbol" == _typeof$2(i) ? i : i + "";
|
|
23643
|
+
}
|
|
23644
|
+
function _toPrimitive$2(t2, r) {
|
|
23645
|
+
if ("object" != _typeof$2(t2) || !t2) return t2;
|
|
23646
|
+
var e = t2[Symbol.toPrimitive];
|
|
23647
|
+
if (void 0 !== e) {
|
|
23648
|
+
var i = e.call(t2, r);
|
|
23649
|
+
if ("object" != _typeof$2(i)) return i;
|
|
23650
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23555
23651
|
}
|
|
23556
|
-
return
|
|
23652
|
+
return ("string" === r ? String : Number)(t2);
|
|
23557
23653
|
}
|
|
23558
23654
|
function parsePhoneNumber(text2, options, metadata2) {
|
|
23559
23655
|
if (options && options.defaultCountry && !isSupportedCountry(options.defaultCountry, metadata2)) {
|
|
@@ -23570,34 +23666,51 @@ function parsePhoneNumber(text2, options, metadata2) {
|
|
|
23570
23666
|
}
|
|
23571
23667
|
}
|
|
23572
23668
|
}
|
|
23573
|
-
function
|
|
23574
|
-
|
|
23669
|
+
function _typeof$1(o) {
|
|
23670
|
+
"@babel/helpers - typeof";
|
|
23671
|
+
return _typeof$1 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
23672
|
+
return typeof o2;
|
|
23673
|
+
} : function(o2) {
|
|
23674
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
23675
|
+
}, _typeof$1(o);
|
|
23676
|
+
}
|
|
23677
|
+
function ownKeys$1(e, r) {
|
|
23678
|
+
var t2 = Object.keys(e);
|
|
23575
23679
|
if (Object.getOwnPropertySymbols) {
|
|
23576
|
-
var
|
|
23577
|
-
|
|
23578
|
-
return Object.getOwnPropertyDescriptor(
|
|
23579
|
-
})),
|
|
23580
|
-
}
|
|
23581
|
-
return
|
|
23582
|
-
}
|
|
23583
|
-
function _objectSpread$1(
|
|
23584
|
-
for (var
|
|
23585
|
-
var
|
|
23586
|
-
|
|
23587
|
-
_defineProperty$1(
|
|
23588
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
23589
|
-
Object.defineProperty(
|
|
23680
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
23681
|
+
r && (o = o.filter(function(r2) {
|
|
23682
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
23683
|
+
})), t2.push.apply(t2, o);
|
|
23684
|
+
}
|
|
23685
|
+
return t2;
|
|
23686
|
+
}
|
|
23687
|
+
function _objectSpread$1(e) {
|
|
23688
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
23689
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
23690
|
+
r % 2 ? ownKeys$1(Object(t2), true).forEach(function(r2) {
|
|
23691
|
+
_defineProperty$1(e, r2, t2[r2]);
|
|
23692
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys$1(Object(t2)).forEach(function(r2) {
|
|
23693
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
23590
23694
|
});
|
|
23591
23695
|
}
|
|
23592
|
-
return
|
|
23696
|
+
return e;
|
|
23593
23697
|
}
|
|
23594
|
-
function _defineProperty$1(
|
|
23595
|
-
|
|
23596
|
-
|
|
23597
|
-
|
|
23598
|
-
|
|
23698
|
+
function _defineProperty$1(e, r, t2) {
|
|
23699
|
+
return (r = _toPropertyKey$1(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
23700
|
+
}
|
|
23701
|
+
function _toPropertyKey$1(t2) {
|
|
23702
|
+
var i = _toPrimitive$1(t2, "string");
|
|
23703
|
+
return "symbol" == _typeof$1(i) ? i : i + "";
|
|
23704
|
+
}
|
|
23705
|
+
function _toPrimitive$1(t2, r) {
|
|
23706
|
+
if ("object" != _typeof$1(t2) || !t2) return t2;
|
|
23707
|
+
var e = t2[Symbol.toPrimitive];
|
|
23708
|
+
if (void 0 !== e) {
|
|
23709
|
+
var i = e.call(t2, r);
|
|
23710
|
+
if ("object" != _typeof$1(i)) return i;
|
|
23711
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23599
23712
|
}
|
|
23600
|
-
return
|
|
23713
|
+
return ("string" === r ? String : Number)(t2);
|
|
23601
23714
|
}
|
|
23602
23715
|
function isValidPhoneNumber$1() {
|
|
23603
23716
|
var _normalizeArguments = normalizeArguments(arguments), text2 = _normalizeArguments.text, options = _normalizeArguments.options, metadata2 = _normalizeArguments.metadata;
|
|
@@ -23607,34 +23720,51 @@ function isValidPhoneNumber$1() {
|
|
|
23607
23720
|
var phoneNumber = parsePhoneNumber(text2, options, metadata2);
|
|
23608
23721
|
return phoneNumber && phoneNumber.isValid() || false;
|
|
23609
23722
|
}
|
|
23610
|
-
function
|
|
23611
|
-
|
|
23723
|
+
function _typeof(o) {
|
|
23724
|
+
"@babel/helpers - typeof";
|
|
23725
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
23726
|
+
return typeof o2;
|
|
23727
|
+
} : function(o2) {
|
|
23728
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
23729
|
+
}, _typeof(o);
|
|
23730
|
+
}
|
|
23731
|
+
function ownKeys(e, r) {
|
|
23732
|
+
var t2 = Object.keys(e);
|
|
23612
23733
|
if (Object.getOwnPropertySymbols) {
|
|
23613
|
-
var
|
|
23614
|
-
|
|
23615
|
-
return Object.getOwnPropertyDescriptor(
|
|
23616
|
-
})),
|
|
23617
|
-
}
|
|
23618
|
-
return
|
|
23619
|
-
}
|
|
23620
|
-
function _objectSpread(
|
|
23621
|
-
for (var
|
|
23622
|
-
var
|
|
23623
|
-
|
|
23624
|
-
_defineProperty(
|
|
23625
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
23626
|
-
Object.defineProperty(
|
|
23734
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
23735
|
+
r && (o = o.filter(function(r2) {
|
|
23736
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
23737
|
+
})), t2.push.apply(t2, o);
|
|
23738
|
+
}
|
|
23739
|
+
return t2;
|
|
23740
|
+
}
|
|
23741
|
+
function _objectSpread(e) {
|
|
23742
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
23743
|
+
var t2 = null != arguments[r] ? arguments[r] : {};
|
|
23744
|
+
r % 2 ? ownKeys(Object(t2), true).forEach(function(r2) {
|
|
23745
|
+
_defineProperty(e, r2, t2[r2]);
|
|
23746
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t2)) : ownKeys(Object(t2)).forEach(function(r2) {
|
|
23747
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t2, r2));
|
|
23627
23748
|
});
|
|
23628
23749
|
}
|
|
23629
|
-
return
|
|
23750
|
+
return e;
|
|
23630
23751
|
}
|
|
23631
|
-
function _defineProperty(
|
|
23632
|
-
|
|
23633
|
-
|
|
23634
|
-
|
|
23635
|
-
|
|
23752
|
+
function _defineProperty(e, r, t2) {
|
|
23753
|
+
return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t2, enumerable: true, configurable: true, writable: true }) : e[r] = t2, e;
|
|
23754
|
+
}
|
|
23755
|
+
function _toPropertyKey(t2) {
|
|
23756
|
+
var i = _toPrimitive(t2, "string");
|
|
23757
|
+
return "symbol" == _typeof(i) ? i : i + "";
|
|
23758
|
+
}
|
|
23759
|
+
function _toPrimitive(t2, r) {
|
|
23760
|
+
if ("object" != _typeof(t2) || !t2) return t2;
|
|
23761
|
+
var e = t2[Symbol.toPrimitive];
|
|
23762
|
+
if (void 0 !== e) {
|
|
23763
|
+
var i = e.call(t2, r);
|
|
23764
|
+
if ("object" != _typeof(i)) return i;
|
|
23765
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23636
23766
|
}
|
|
23637
|
-
return
|
|
23767
|
+
return ("string" === r ? String : Number)(t2);
|
|
23638
23768
|
}
|
|
23639
23769
|
function isPossiblePhoneNumber$1() {
|
|
23640
23770
|
var _normalizeArguments = normalizeArguments(arguments), text2 = _normalizeArguments.text, options = _normalizeArguments.options, metadata2 = _normalizeArguments.metadata;
|
|
@@ -24089,7 +24219,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
24089
24219
|
]),
|
|
24090
24220
|
createElementVNode("div", _hoisted_11$1, [
|
|
24091
24221
|
createElementVNode("div", _hoisted_12$1, [
|
|
24092
|
-
!
|
|
24222
|
+
!__props.hideBack ? (openBlock(), createElementBlock("div", {
|
|
24093
24223
|
key: 0,
|
|
24094
24224
|
onClick: _cache[1] || (_cache[1] = ($event) => emits("back"))
|
|
24095
24225
|
}, [
|
|
@@ -24117,7 +24247,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
24117
24247
|
}
|
|
24118
24248
|
});
|
|
24119
24249
|
const MFA = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-vue-layout-gitcode"]]);
|
|
24120
|
-
const SlidCaptcha = defineAsyncComponent(() => import("./index-
|
|
24250
|
+
const SlidCaptcha = defineAsyncComponent(() => import("./index-DPtyg6To.js"));
|
|
24121
24251
|
const useSlidCaptcha = () => {
|
|
24122
24252
|
const { mount, unMount } = usePopup("slid-captcha-popup");
|
|
24123
24253
|
const open = (config) => {
|
|
@@ -24136,7 +24266,7 @@ const useSlidCaptcha = () => {
|
|
|
24136
24266
|
close: unMount
|
|
24137
24267
|
};
|
|
24138
24268
|
};
|
|
24139
|
-
const YunpianCaptcha = defineAsyncComponent(() => import("./index-
|
|
24269
|
+
const YunpianCaptcha = defineAsyncComponent(() => import("./index-BFMUY2xH.js"));
|
|
24140
24270
|
const useYunpianCaptcha = () => {
|
|
24141
24271
|
const { mount, unMount } = usePopup("yunpian-captcha-popup");
|
|
24142
24272
|
const open = (config) => {
|
|
@@ -24165,7 +24295,7 @@ const useYunpianCaptcha = () => {
|
|
|
24165
24295
|
const _sfc_main$3 = {};
|
|
24166
24296
|
const _hoisted_1$2 = { class: "content-loading" };
|
|
24167
24297
|
function _sfc_render(_ctx, _cache) {
|
|
24168
|
-
return openBlock(), createElementBlock("div", _hoisted_1$2, _cache[0] || (_cache[0] = [
|
|
24298
|
+
return openBlock(), createElementBlock("div", _hoisted_1$2, [..._cache[0] || (_cache[0] = [
|
|
24169
24299
|
createElementVNode("div", { class: "content-loading-title" }, [
|
|
24170
24300
|
createElementVNode("div", { class: "w-full flex-center" }, [
|
|
24171
24301
|
createElementVNode("img", {
|
|
@@ -24176,7 +24306,7 @@ function _sfc_render(_ctx, _cache) {
|
|
|
24176
24306
|
]),
|
|
24177
24307
|
createElementVNode("span", null, "loading...")
|
|
24178
24308
|
], -1)
|
|
24179
|
-
]));
|
|
24309
|
+
])]);
|
|
24180
24310
|
}
|
|
24181
24311
|
const ContentLoading = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render], ["__scopeId", "data-v-vue-layout-gitcode"]]);
|
|
24182
24312
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
@@ -24192,15 +24322,15 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
24192
24322
|
setup(__props) {
|
|
24193
24323
|
return (_ctx, _cache) => {
|
|
24194
24324
|
return openBlock(), createElementBlock("div", {
|
|
24195
|
-
class: normalizeClass(["g-data-panel i-data-panel", { "g-card":
|
|
24325
|
+
class: normalizeClass(["g-data-panel i-data-panel", { "g-card": __props.card, "g-border": __props.border }])
|
|
24196
24326
|
}, [
|
|
24197
24327
|
renderSlot(_ctx.$slots, "header", {}, void 0, true),
|
|
24198
|
-
|
|
24199
|
-
|
|
24328
|
+
__props.loading ? renderSlot(_ctx.$slots, "loading", { key: 0 }, () => [
|
|
24329
|
+
__props.skeleton ? (openBlock(), createBlock(unref(Skeleton), {
|
|
24200
24330
|
key: 0,
|
|
24201
24331
|
class: "p-20",
|
|
24202
|
-
rows:
|
|
24203
|
-
}, null, 8, ["rows"])) :
|
|
24332
|
+
rows: __props.skeletonRow
|
|
24333
|
+
}, null, 8, ["rows"])) : __props.animation ? (openBlock(), createBlock(ContentLoading, {
|
|
24204
24334
|
key: 1,
|
|
24205
24335
|
name: "loading",
|
|
24206
24336
|
class: "w-full h-full flex-center"
|
|
@@ -25550,11 +25680,11 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
25550
25680
|
modelValue: unref(vModels),
|
|
25551
25681
|
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => isRef(vModels) ? vModels.value = $event : null),
|
|
25552
25682
|
"show-close": false,
|
|
25553
|
-
"lock-scroll":
|
|
25554
|
-
draggable:
|
|
25555
|
-
escapable:
|
|
25683
|
+
"lock-scroll": __props.lockScroll,
|
|
25684
|
+
draggable: __props.draggable,
|
|
25685
|
+
escapable: __props.escapable,
|
|
25556
25686
|
"before-close": handleClose,
|
|
25557
|
-
"append-to-body":
|
|
25687
|
+
"append-to-body": __props.appendToBody,
|
|
25558
25688
|
class: normalizeClass([
|
|
25559
25689
|
"login-modal",
|
|
25560
25690
|
formType.value === "login" ? "login-modal-l" : "login-modal-r",
|
|
@@ -25790,7 +25920,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
25790
25920
|
])
|
|
25791
25921
|
], 2),
|
|
25792
25922
|
createElementVNode("div", _hoisted_41, [
|
|
25793
|
-
|
|
25923
|
+
__props.openHarmonyGuide ? (openBlock(), createElementBlock("div", {
|
|
25794
25924
|
key: 0,
|
|
25795
25925
|
class: "text-[var(--theme-link)] flex items-center mt-[12px] cursor-pointer",
|
|
25796
25926
|
onClick: withModifiers(handleRegisterHarmony, ["stop"])
|
|
@@ -25891,7 +26021,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
25891
26021
|
class: "login-modal-title flex-1"
|
|
25892
26022
|
}, null, 8, ["icon", "title", "show-title", "show-back"]),
|
|
25893
26023
|
createElementVNode("div", _hoisted_2, [
|
|
25894
|
-
|
|
26024
|
+
__props.showClose && !showProtoCheck.value ? (openBlock(), createBlock(GIcon, {
|
|
25895
26025
|
key: 0,
|
|
25896
26026
|
onClick: onClickModalClose,
|
|
25897
26027
|
name: "gt-close",
|