vue-layout-gitcode 1.1.20 → 1.1.21

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.
@@ -1,4 +1,4 @@
1
- import { defineComponent, computed, openBlock, createBlock, unref, normalizeProps, mergeProps, createElementBlock, normalizeClass, renderSlot, normalizeStyle, createElementVNode, reactive, readonly, inject, h, getCurrentInstance, effectScope, onMounted, onUnmounted, shallowRef, ref, onBeforeMount, watch, Fragment, isRef, createVNode, Text, provide, withCtx, toDisplayString as toDisplayString$1, createCommentVNode, renderList, createTextVNode, Transition, withModifiers, render, resolveComponent, watchEffect, guardReactiveProps, onBeforeUnmount, nextTick, defineAsyncComponent, withDirectives, vShow, withKeys, resolveDynamicComponent, toRaw, mergeModels, useModel as useModel$1, watchPostEffect, createSlots } from "vue";
1
+ import { defineComponent, computed, createBlock, createElementBlock, openBlock, unref, normalizeProps, mergeProps, normalizeClass, renderSlot, normalizeStyle, createElementVNode, reactive, readonly, inject, effectScope, ref, shallowRef, watch, isRef, getCurrentInstance, h, Fragment, onBeforeMount, onMounted, onUnmounted, createVNode, Text, provide, createCommentVNode, withCtx, toDisplayString as toDisplayString$1, renderList, createTextVNode, Transition, withModifiers, render, resolveComponent, watchEffect, guardReactiveProps, onBeforeUnmount, nextTick, defineAsyncComponent, withDirectives, vShow, withKeys, resolveDynamicComponent, toRaw, mergeModels, useModel as useModel$1, watchPostEffect, createSlots } from "vue";
2
2
  import { Button } from "vue-devui-lal/button";
3
3
  import { Popover } from "vue-devui-lal/popover";
4
4
  import { Tooltip } from "vue-devui-lal/tooltip";
@@ -91,7 +91,6 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
91
91
  };
92
92
  }
93
93
  });
94
- const index_vue_vue_type_style_index_0_scoped_2115280a_lang = "";
95
94
  const _export_sfc = (sfc, props) => {
96
95
  const target = sfc.__vccOpts || sfc;
97
96
  for (const [key, val] of props) {
@@ -99,7 +98,7 @@ const _export_sfc = (sfc, props) => {
99
98
  }
100
99
  return target;
101
100
  };
102
- const GIcon = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-2115280a"]]);
101
+ const GIcon = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-gitcode-layout-lib"]]);
103
102
  const defaultConfig = {
104
103
  VITE_ENV: "production",
105
104
  VITE_HOST: "https://gitcode.com",
@@ -252,8 +251,7 @@ function sha1$1(s) {
252
251
  const l = (data.length + 8 >>> 6 << 4) + 16;
253
252
  var s = new Uint8Array(l << 2);
254
253
  s.set(new Uint8Array(data.buffer)), s = new Uint32Array(s.buffer);
255
- for (t2 = new DataView(s.buffer), i = 0; i < l; i++)
256
- s[i] = t2.getUint32(i << 2);
254
+ for (t2 = new DataView(s.buffer), i = 0; i < l; i++) s[i] = t2.getUint32(i << 2);
257
255
  s[data.length >> 2] |= 128 << 24 - (data.length & 3) * 8;
258
256
  s[l - 1] = data.length << 3;
259
257
  const w = [];
@@ -282,12 +280,10 @@ function sha1$1(s) {
282
280
  for (j = 0; j < 80; j++) {
283
281
  w[j] = j < 16 ? s[i + j] : rol(w[j - 3] ^ w[j - 8] ^ w[j - 14] ^ w[j - 16], 1), t2 = rol(m[0], 5) + f[j / 20 | 0]() + m[4] + w[j] + k[j / 20 | 0] | 0, m[1] = rol(m[1], 30), m.pop(), m.unshift(t2);
284
282
  }
285
- for (j = 0; j < 5; j++)
286
- m[j] = m[j] + o[j] | 0;
283
+ for (j = 0; j < 5; j++) m[j] = m[j] + o[j] | 0;
287
284
  }
288
285
  t2 = new DataView(new Uint32Array(m).buffer);
289
- for (var i = 0; i < 5; i++)
290
- m[i] = t2.getUint32(i << 2);
286
+ for (var i = 0; i < 5; i++) m[i] = t2.getUint32(i << 2);
291
287
  const hex = Array.prototype.map.call(new Uint8Array(new Uint32Array(m).buffer), function(e) {
292
288
  return (e < 16 ? "0" : "") + e.toString(16);
293
289
  }).join("");
@@ -299,15 +295,12 @@ function encodeUTF8(s) {
299
295
  let c;
300
296
  let x;
301
297
  for (i = 0; i < s.length; i++) {
302
- if ((c = s.charCodeAt(i)) < 128)
303
- r.push(c);
304
- else if (c < 2048)
305
- r.push(192 + (c >> 6 & 31), 128 + (c & 63));
298
+ if ((c = s.charCodeAt(i)) < 128) r.push(c);
299
+ else if (c < 2048) r.push(192 + (c >> 6 & 31), 128 + (c & 63));
306
300
  else {
307
301
  if ((x = c ^ 55296) >> 10 === 0) {
308
302
  c = (x << 10) + (s.charCodeAt(++i) ^ 56320) + 65536, r.push(240 + (c >> 18 & 7), 128 + (c >> 12 & 63));
309
- } else
310
- r.push(224 + (c >> 12 & 15));
303
+ } else r.push(224 + (c >> 12 & 15));
311
304
  r.push(128 + (c >> 6 & 63), 128 + (c & 63));
312
305
  }
313
306
  }
@@ -315,8 +308,7 @@ function encodeUTF8(s) {
315
308
  }
316
309
  function udeskInit(config = {}) {
317
310
  var _a, _b, _c;
318
- if (window.ud)
319
- return;
311
+ if (window.ud) return;
320
312
  const randomNum = generateRandomString(16);
321
313
  const nowTimeStr = Date.now().toString();
322
314
  const userInfo = localStorage$2.getItem("userInfo") || "";
@@ -373,16 +365,8 @@ var SceneValue = /* @__PURE__ */ ((SceneValue2) => {
373
365
  const REPO_PAGE_SIZE = {
374
366
  // 仓库页面头部高度
375
367
  HEADERS_HEIGHT: 56,
376
- // 仓库页面头部高度(包含安全区域)
377
- HEADERS_SAFE_HEIGHT: 96,
378
368
  // 仓库页面tabs菜单高度
379
- REPO_INFO_HEIGHT: 52,
380
- // 仓库页面文件列表距离顶部距离
381
- GAP_TOP: 32,
382
- // 仓库页面文件列表距离底部距离
383
- GAP_BOTTOM: 36,
384
- // 仓库页面文件列表距离左右距离
385
- PADDING_NORMAl: 16
369
+ REPO_INFO_HEIGHT: 52
386
370
  };
387
371
  var ToolsFloatDisplayItem = /* @__PURE__ */ ((ToolsFloatDisplayItem2) => {
388
372
  ToolsFloatDisplayItem2["GROWTH_CENTER"] = "0301";
@@ -628,20 +612,11 @@ var EXPRESSIONS = /* @__PURE__ */ Object.freeze({
628
612
  });
629
613
  const NODE_TYPE = {
630
614
  element: 1,
631
- attribute: 2,
632
615
  text: 3,
633
- cdataSection: 4,
634
- entityReference: 5,
635
- // Deprecated
636
- entityNode: 6,
637
616
  // Deprecated
638
617
  progressingInstruction: 7,
639
618
  comment: 8,
640
- document: 9,
641
- documentType: 10,
642
- documentFragment: 11,
643
- notation: 12
644
- // Deprecated
619
+ document: 9
645
620
  };
646
621
  const getGlobal = function getGlobal2() {
647
622
  return typeof window === "undefined" ? null : window;
@@ -1161,10 +1136,8 @@ function createDOMPurify() {
1161
1136
  if (SANITIZE_DOM && (lcName === "id" || lcName === "name") && (value in document2 || value in formElement)) {
1162
1137
  return false;
1163
1138
  }
1164
- if (ALLOW_DATA_ATTR && !FORBID_ATTR[lcName] && regExpTest(DATA_ATTR2, lcName))
1165
- ;
1166
- else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR2, lcName))
1167
- ;
1139
+ if (ALLOW_DATA_ATTR && !FORBID_ATTR[lcName] && regExpTest(DATA_ATTR2, lcName)) ;
1140
+ else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR2, lcName)) ;
1168
1141
  else if (!ALLOWED_ATTR[lcName] || FORBID_ATTR[lcName]) {
1169
1142
  if (
1170
1143
  // First condition does a very basic check if a) it's basically a valid custom element tagname AND
@@ -1173,23 +1146,17 @@ function createDOMPurify() {
1173
1146
  _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
1174
1147
  // the value passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
1175
1148
  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))
1176
- )
1177
- ;
1149
+ ) ;
1178
1150
  else {
1179
1151
  return false;
1180
1152
  }
1181
- } else if (URI_SAFE_ATTRIBUTES[lcName])
1182
- ;
1183
- else if (regExpTest(IS_ALLOWED_URI$1, stringReplace(value, ATTR_WHITESPACE2, "")))
1184
- ;
1185
- else if ((lcName === "src" || lcName === "xlink:href" || lcName === "href") && lcTag !== "script" && stringIndexOf(value, "data:") === 0 && DATA_URI_TAGS[lcTag])
1186
- ;
1187
- else if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA2, stringReplace(value, ATTR_WHITESPACE2, "")))
1188
- ;
1153
+ } else if (URI_SAFE_ATTRIBUTES[lcName]) ;
1154
+ else if (regExpTest(IS_ALLOWED_URI$1, stringReplace(value, ATTR_WHITESPACE2, ""))) ;
1155
+ else if ((lcName === "src" || lcName === "xlink:href" || lcName === "href") && lcTag !== "script" && stringIndexOf(value, "data:") === 0 && DATA_URI_TAGS[lcTag]) ;
1156
+ else if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA2, stringReplace(value, ATTR_WHITESPACE2, ""))) ;
1189
1157
  else if (value) {
1190
1158
  return false;
1191
- } else
1192
- ;
1159
+ } else ;
1193
1160
  return true;
1194
1161
  };
1195
1162
  const _isBasicCustomElement = function _isBasicCustomElement2(tagName) {
@@ -1255,8 +1222,7 @@ function createDOMPurify() {
1255
1222
  continue;
1256
1223
  }
1257
1224
  if (trustedTypesPolicy && typeof trustedTypes === "object" && typeof trustedTypes.getAttributeType === "function") {
1258
- if (namespaceURI)
1259
- ;
1225
+ if (namespaceURI) ;
1260
1226
  else {
1261
1227
  switch (trustedTypes.getAttributeType(lcTag, lcName)) {
1262
1228
  case "TrustedHTML": {
@@ -1446,13 +1412,11 @@ if (typeof purify.addHook === "function" && typeof document !== "undefined" && d
1446
1412
  });
1447
1413
  }
1448
1414
  function xssPurify(str) {
1449
- if (typeof window === "undefined")
1450
- return str;
1415
+ if (typeof window === "undefined") return str;
1451
1416
  return purify.sanitize(str, purifyConfig);
1452
1417
  }
1453
1418
  const highlightWords = (Word, title, inherit) => {
1454
- if (!Word)
1455
- return xssPurify(title || "");
1419
+ if (!Word) return xssPurify(title || "");
1456
1420
  title = title ? xssPurify(title) : "";
1457
1421
  const color = inherit ? `inherit` : "var(--theme-link)";
1458
1422
  const regexPattern = new RegExp(`(${Word.replace(/([.?*+^$[\]\\(){}|-])/gi, "\\$1")})`, "gi");
@@ -1557,7 +1521,7 @@ function init(converter, defaultAttributes) {
1557
1521
  }
1558
1522
  var api = init(defaultConverter, { path: "/" });
1559
1523
  /*!
1560
- * shared v9.14.4
1524
+ * shared v9.14.3
1561
1525
  * (c) 2025 kazuya kawaguchi
1562
1526
  * Released under the MIT License.
1563
1527
  */
@@ -1731,7 +1695,7 @@ function deepCopy(src, des) {
1731
1695
  }
1732
1696
  }
1733
1697
  /*!
1734
- * message-compiler v9.14.4
1698
+ * message-compiler v9.14.3
1735
1699
  * (c) 2025 kazuya kawaguchi
1736
1700
  * Released under the MIT License.
1737
1701
  */
@@ -1740,9 +1704,6 @@ function createPosition(line, column, offset) {
1740
1704
  }
1741
1705
  function createLocation(start, end, source) {
1742
1706
  const loc = { start, end };
1743
- if (source != null) {
1744
- loc.source = source;
1745
- }
1746
1707
  return loc;
1747
1708
  }
1748
1709
  const RE_ARGS = /\{([0-9a-zA-Z]+)\}/g;
@@ -1771,7 +1732,7 @@ const warnMessages$2 = {
1771
1732
  [CompileWarnCodes.USE_MODULO_SYNTAX]: `Use modulo before '{{0}}'.`
1772
1733
  };
1773
1734
  function createCompileWarn(code2, loc, ...args) {
1774
- const msg = format$1(warnMessages$2[code2] || "", ...args || []);
1735
+ const msg = format$1(warnMessages$2[code2], ...args || []);
1775
1736
  const message = { message: String(msg), code: code2 };
1776
1737
  if (loc) {
1777
1738
  message.location = loc;
@@ -2636,9 +2597,6 @@ function createParser(options = {}) {
2636
2597
  return node;
2637
2598
  }
2638
2599
  function endNode(node, offset, pos, type) {
2639
- if (type) {
2640
- node.type = type;
2641
- }
2642
2600
  if (location) {
2643
2601
  node.end = offset;
2644
2602
  if (node.loc) {
@@ -3078,7 +3036,7 @@ function minify(node) {
3078
3036
  }
3079
3037
  const ERROR_DOMAIN = "parser";
3080
3038
  function createCodeGenerator(ast, options) {
3081
- const { sourceMap, filename, breakLineCode, needIndent: _needIndent } = options;
3039
+ const { filename, breakLineCode, needIndent: _needIndent } = options;
3082
3040
  const location = options.location !== false;
3083
3041
  const _context = {
3084
3042
  filename,
@@ -3242,14 +3200,12 @@ function generateNode(generator, node) {
3242
3200
  const generate = (ast, options = {}) => {
3243
3201
  const mode = isString$1(options.mode) ? options.mode : "normal";
3244
3202
  const filename = isString$1(options.filename) ? options.filename : "message.intl";
3245
- const sourceMap = !!options.sourceMap;
3203
+ !!options.sourceMap;
3246
3204
  const breakLineCode = options.breakLineCode != null ? options.breakLineCode : mode === "arrow" ? ";" : "\n";
3247
3205
  const needIndent = options.needIndent ? options.needIndent : mode !== "arrow";
3248
3206
  const helpers = ast.helpers || [];
3249
3207
  const generator = createCodeGenerator(ast, {
3250
- mode,
3251
3208
  filename,
3252
- sourceMap,
3253
3209
  breakLineCode,
3254
3210
  needIndent
3255
3211
  });
@@ -3289,7 +3245,7 @@ function baseCompile$1(source, options = {}) {
3289
3245
  }
3290
3246
  }
3291
3247
  /*!
3292
- * core-base v9.14.4
3248
+ * core-base v9.14.3
3293
3249
  * (c) 2025 kazuya kawaguchi
3294
3250
  * Released under the MIT License.
3295
3251
  */
@@ -3304,76 +3260,6 @@ function initFeatureFlags$1() {
3304
3260
  getGlobalThis().__INTLIFY_DROP_MESSAGE_COMPILER__ = false;
3305
3261
  }
3306
3262
  }
3307
- function isMessageAST(val) {
3308
- return isObject$b(val) && resolveType(val) === 0 && (hasOwn(val, "b") || hasOwn(val, "body"));
3309
- }
3310
- const PROPS_BODY = ["b", "body"];
3311
- function resolveBody(node) {
3312
- return resolveProps(node, PROPS_BODY);
3313
- }
3314
- const PROPS_CASES = ["c", "cases"];
3315
- function resolveCases(node) {
3316
- return resolveProps(node, PROPS_CASES, []);
3317
- }
3318
- const PROPS_STATIC = ["s", "static"];
3319
- function resolveStatic(node) {
3320
- return resolveProps(node, PROPS_STATIC);
3321
- }
3322
- const PROPS_ITEMS = ["i", "items"];
3323
- function resolveItems(node) {
3324
- return resolveProps(node, PROPS_ITEMS, []);
3325
- }
3326
- const PROPS_TYPE = ["t", "type"];
3327
- function resolveType(node) {
3328
- return resolveProps(node, PROPS_TYPE);
3329
- }
3330
- const PROPS_VALUE = ["v", "value"];
3331
- function resolveValue$1(node, type) {
3332
- const resolved = resolveProps(node, PROPS_VALUE);
3333
- if (resolved != null) {
3334
- return resolved;
3335
- } else {
3336
- throw createUnhandleNodeError(type);
3337
- }
3338
- }
3339
- const PROPS_MODIFIER = ["m", "modifier"];
3340
- function resolveLinkedModifier(node) {
3341
- return resolveProps(node, PROPS_MODIFIER);
3342
- }
3343
- const PROPS_KEY = ["k", "key"];
3344
- function resolveLinkedKey(node) {
3345
- const resolved = resolveProps(node, PROPS_KEY);
3346
- if (resolved) {
3347
- return resolved;
3348
- } else {
3349
- throw createUnhandleNodeError(
3350
- 6
3351
- /* NodeTypes.Linked */
3352
- );
3353
- }
3354
- }
3355
- function resolveProps(node, props, defaultValue) {
3356
- for (let i = 0; i < props.length; i++) {
3357
- const prop = props[i];
3358
- if (hasOwn(node, prop) && node[prop] != null) {
3359
- return node[prop];
3360
- }
3361
- }
3362
- return defaultValue;
3363
- }
3364
- const AST_NODE_PROPS_KEYS = [
3365
- ...PROPS_BODY,
3366
- ...PROPS_CASES,
3367
- ...PROPS_STATIC,
3368
- ...PROPS_ITEMS,
3369
- ...PROPS_KEY,
3370
- ...PROPS_MODIFIER,
3371
- ...PROPS_VALUE,
3372
- ...PROPS_TYPE
3373
- ];
3374
- function createUnhandleNodeError(type) {
3375
- return new Error(`unhandled node type: ${type}`);
3376
- }
3377
3263
  const pathStateMachine = [];
3378
3264
  pathStateMachine[
3379
3265
  0
@@ -3780,7 +3666,7 @@ const cache = /* @__PURE__ */ new Map();
3780
3666
  function resolveWithKeyValue(obj, path) {
3781
3667
  return isObject$b(obj) ? obj[path] : null;
3782
3668
  }
3783
- function resolveValue(obj, path) {
3669
+ function resolveValue$1(obj, path) {
3784
3670
  if (!isObject$b(obj)) {
3785
3671
  return null;
3786
3672
  }
@@ -3798,11 +3684,7 @@ function resolveValue(obj, path) {
3798
3684
  let last = obj;
3799
3685
  let i = 0;
3800
3686
  while (i < len) {
3801
- const key = hit[i];
3802
- if (AST_NODE_PROPS_KEYS.includes(key) && isMessageAST(last)) {
3803
- return null;
3804
- }
3805
- const val = last[key];
3687
+ const val = last[hit[i]];
3806
3688
  if (val === void 0) {
3807
3689
  return null;
3808
3690
  }
@@ -4096,7 +3978,7 @@ function appendItemToChain(chain, target, blocks) {
4096
3978
  }
4097
3979
  return follow;
4098
3980
  }
4099
- const VERSION$2 = "9.14.4";
3981
+ const VERSION$3 = "9.14.3";
4100
3982
  const NOT_REOSLVED = -1;
4101
3983
  const DEFAULT_LOCALE = "en-US";
4102
3984
  const MISSING_RESOLVE_VALUE = "";
@@ -4139,7 +4021,7 @@ const getFallbackContext = () => _fallbackContext;
4139
4021
  let _cid = 0;
4140
4022
  function createCoreContext(options = {}) {
4141
4023
  const onWarn = isFunction$4(options.onWarn) ? options.onWarn : warn;
4142
- const version = isString$2(options.version) ? options.version : VERSION$2;
4024
+ const version = isString$2(options.version) ? options.version : VERSION$3;
4143
4025
  const locale2 = isString$2(options.locale) || isFunction$4(options.locale) ? options.locale : DEFAULT_LOCALE;
4144
4026
  const _locale = isFunction$4(locale2) ? DEFAULT_LOCALE : locale2;
4145
4027
  const fallbackLocale = isArray$5(options.fallbackLocale) || isPlainObject$1(options.fallbackLocale) || isString$2(options.fallbackLocale) || options.fallbackLocale === false ? options.fallbackLocale : _locale;
@@ -4283,6 +4165,14 @@ function formatParts(ctx, ast) {
4283
4165
  return formatMessageParts(ctx, body);
4284
4166
  }
4285
4167
  }
4168
+ const PROPS_BODY = ["b", "body"];
4169
+ function resolveBody(node) {
4170
+ return resolveProps(node, PROPS_BODY);
4171
+ }
4172
+ const PROPS_CASES = ["c", "cases"];
4173
+ function resolveCases(node) {
4174
+ return resolveProps(node, PROPS_CASES, []);
4175
+ }
4286
4176
  function formatMessageParts(ctx, node) {
4287
4177
  const static_ = resolveStatic(node);
4288
4178
  if (static_ != null) {
@@ -4292,14 +4182,22 @@ function formatMessageParts(ctx, node) {
4292
4182
  return ctx.normalize(messages);
4293
4183
  }
4294
4184
  }
4185
+ const PROPS_STATIC = ["s", "static"];
4186
+ function resolveStatic(node) {
4187
+ return resolveProps(node, PROPS_STATIC);
4188
+ }
4189
+ const PROPS_ITEMS = ["i", "items"];
4190
+ function resolveItems(node) {
4191
+ return resolveProps(node, PROPS_ITEMS, []);
4192
+ }
4295
4193
  function formatMessagePart(ctx, node) {
4296
4194
  const type = resolveType(node);
4297
4195
  switch (type) {
4298
4196
  case 3: {
4299
- return resolveValue$1(node, type);
4197
+ return resolveValue(node, type);
4300
4198
  }
4301
4199
  case 9: {
4302
- return resolveValue$1(node, type);
4200
+ return resolveValue(node, type);
4303
4201
  }
4304
4202
  case 4: {
4305
4203
  const named = node;
@@ -4328,15 +4226,56 @@ function formatMessagePart(ctx, node) {
4328
4226
  return ctx.linked(formatMessagePart(ctx, key), modifier ? formatMessagePart(ctx, modifier) : void 0, ctx.type);
4329
4227
  }
4330
4228
  case 7: {
4331
- return resolveValue$1(node, type);
4229
+ return resolveValue(node, type);
4332
4230
  }
4333
4231
  case 8: {
4334
- return resolveValue$1(node, type);
4232
+ return resolveValue(node, type);
4335
4233
  }
4336
4234
  default:
4337
4235
  throw new Error(`unhandled node on format message part: ${type}`);
4338
4236
  }
4339
4237
  }
4238
+ const PROPS_TYPE = ["t", "type"];
4239
+ function resolveType(node) {
4240
+ return resolveProps(node, PROPS_TYPE);
4241
+ }
4242
+ const PROPS_VALUE = ["v", "value"];
4243
+ function resolveValue(node, type) {
4244
+ const resolved = resolveProps(node, PROPS_VALUE);
4245
+ if (resolved) {
4246
+ return resolved;
4247
+ } else {
4248
+ throw createUnhandleNodeError(type);
4249
+ }
4250
+ }
4251
+ const PROPS_MODIFIER = ["m", "modifier"];
4252
+ function resolveLinkedModifier(node) {
4253
+ return resolveProps(node, PROPS_MODIFIER);
4254
+ }
4255
+ const PROPS_KEY = ["k", "key"];
4256
+ function resolveLinkedKey(node) {
4257
+ const resolved = resolveProps(node, PROPS_KEY);
4258
+ if (resolved) {
4259
+ return resolved;
4260
+ } else {
4261
+ throw createUnhandleNodeError(
4262
+ 6
4263
+ /* NodeTypes.Linked */
4264
+ );
4265
+ }
4266
+ }
4267
+ function resolveProps(node, props, defaultValue) {
4268
+ for (let i = 0; i < props.length; i++) {
4269
+ const prop = props[i];
4270
+ if (hasOwn(node, prop) && node[prop] != null) {
4271
+ return node[prop];
4272
+ }
4273
+ }
4274
+ return defaultValue;
4275
+ }
4276
+ function createUnhandleNodeError(type) {
4277
+ return new Error(`unhandled node type: ${type}`);
4278
+ }
4340
4279
  const WARN_MESSAGE = `Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.`;
4341
4280
  function checkHtmlMessage(source, warnHtmlMessage) {
4342
4281
  if (warnHtmlMessage && detectHtmlTag(source)) {
@@ -4352,6 +4291,9 @@ reference: https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-forma
4352
4291
  (message compiler warning message: ${_warn.message})`);
4353
4292
  }
4354
4293
  }
4294
+ function isMessageAST(val) {
4295
+ return isObject$b(val) && resolveType(val) === 0 && (hasOwn(val, "b") || hasOwn(val, "body"));
4296
+ }
4355
4297
  function baseCompile(message, options = {}) {
4356
4298
  let detectError = false;
4357
4299
  const onError = options.onError || defaultOnError;
@@ -5180,11 +5122,11 @@ function setupDevtoolsPlugin(pluginDescriptor, setupFn) {
5180
5122
  }
5181
5123
  }
5182
5124
  /*!
5183
- * vue-i18n v9.14.4
5125
+ * vue-i18n v9.14.3
5184
5126
  * (c) 2025 kazuya kawaguchi
5185
5127
  * Released under the MIT License.
5186
5128
  */
5187
- const VERSION$1 = "9.14.4";
5129
+ const VERSION$2 = "9.14.3";
5188
5130
  function initFeatureFlags() {
5189
5131
  if (typeof __VUE_I18N_FULL_INSTALL__ !== "boolean") {
5190
5132
  getGlobalThis().__VUE_I18N_FULL_INSTALL__ = true;
@@ -5317,9 +5259,6 @@ function handleFlatJson(obj) {
5317
5259
  if (!isObject$b(obj)) {
5318
5260
  return obj;
5319
5261
  }
5320
- if (isMessageAST(obj)) {
5321
- return obj;
5322
- }
5323
5262
  for (const key in obj) {
5324
5263
  if (!hasOwn(obj, key)) {
5325
5264
  continue;
@@ -5350,20 +5289,11 @@ function handleFlatJson(obj) {
5350
5289
  currentObj = currentObj[subKeys[i]];
5351
5290
  }
5352
5291
  if (!hasStringValue) {
5353
- if (!isMessageAST(currentObj)) {
5354
- currentObj[subKeys[lastIndex]] = obj[key];
5355
- delete obj[key];
5356
- } else {
5357
- if (!AST_NODE_PROPS_KEYS.includes(subKeys[lastIndex])) {
5358
- delete obj[key];
5359
- }
5360
- }
5292
+ currentObj[subKeys[lastIndex]] = obj[key];
5293
+ delete obj[key];
5361
5294
  }
5362
- if (!isMessageAST(currentObj)) {
5363
- const target = currentObj[subKeys[lastIndex]];
5364
- if (isObject$b(target)) {
5365
- handleFlatJson(target);
5366
- }
5295
+ if (isObject$b(currentObj[subKeys[lastIndex]])) {
5296
+ handleFlatJson(currentObj[subKeys[lastIndex]]);
5367
5297
  }
5368
5298
  }
5369
5299
  }
@@ -5375,10 +5305,10 @@ function getLocaleMessages(locale2, options) {
5375
5305
  if (isArray$5(__i18n)) {
5376
5306
  __i18n.forEach((custom) => {
5377
5307
  if ("locale" in custom && "resource" in custom) {
5378
- const { locale: locale3, resource } = custom;
5379
- if (locale3) {
5380
- ret[locale3] = ret[locale3] || create();
5381
- deepCopy(resource, ret[locale3]);
5308
+ const { locale: locale22, resource } = custom;
5309
+ if (locale22) {
5310
+ ret[locale22] = ret[locale22] || create();
5311
+ deepCopy(resource, ret[locale22]);
5382
5312
  } else {
5383
5313
  deepCopy(resource, ret);
5384
5314
  }
@@ -5487,7 +5417,7 @@ function createComposer(options = {}, VueI18nLegacy) {
5487
5417
  const getCoreContext = () => {
5488
5418
  _isGlobal && setFallbackContext(null);
5489
5419
  const ctxOptions = {
5490
- version: VERSION$1,
5420
+ version: VERSION$2,
5491
5421
  locale: _locale.value,
5492
5422
  fallbackLocale: _fallbackLocale.value,
5493
5423
  messages: _messages.value,
@@ -5579,8 +5509,7 @@ function createComposer(options = {}, VueI18nLegacy) {
5579
5509
  }
5580
5510
  ret = fn(_context);
5581
5511
  } finally {
5582
- if (process.env.NODE_ENV !== "production" || __INTLIFY_PROD_DEVTOOLS__)
5583
- ;
5512
+ if (process.env.NODE_ENV !== "production" || __INTLIFY_PROD_DEVTOOLS__) ;
5584
5513
  if (!_isGlobal) {
5585
5514
  _context.fallbackContext = void 0;
5586
5515
  }
@@ -5686,17 +5615,17 @@ function createComposer(options = {}, VueI18nLegacy) {
5686
5615
  _pluralRules = rules;
5687
5616
  _context.pluralRules = _pluralRules;
5688
5617
  }
5689
- function te(key, locale3) {
5618
+ function te(key, locale22) {
5690
5619
  return wrapWithDeps(() => {
5691
5620
  if (!key) {
5692
5621
  return false;
5693
5622
  }
5694
- const targetLocale = isString$2(locale3) ? locale3 : _locale.value;
5623
+ const targetLocale = isString$2(locale22) ? locale22 : _locale.value;
5695
5624
  const message = getLocaleMessage(targetLocale);
5696
5625
  const resolved = _context.messageResolver(message, key);
5697
5626
  return !translateExistCompatible ? isMessageAST(resolved) || isMessageFunction(resolved) || isString$2(resolved) : resolved != null;
5698
5627
  }, () => [key], "translate exists", (root2) => {
5699
- return Reflect.apply(root2.te, root2, [key, locale3]);
5628
+ return Reflect.apply(root2.te, root2, [key, locale22]);
5700
5629
  }, NOOP_RETURN_FALSE, (val) => isBoolean$1(val));
5701
5630
  }
5702
5631
  function resolveMessages(key) {
@@ -5716,25 +5645,25 @@ function createComposer(options = {}, VueI18nLegacy) {
5716
5645
  const messages2 = resolveMessages(key);
5717
5646
  return messages2 != null ? messages2 : __root ? __root.tm(key) || {} : {};
5718
5647
  }
5719
- function getLocaleMessage(locale3) {
5720
- return _messages.value[locale3] || {};
5648
+ function getLocaleMessage(locale22) {
5649
+ return _messages.value[locale22] || {};
5721
5650
  }
5722
- function setLocaleMessage(locale3, message) {
5651
+ function setLocaleMessage(locale22, message) {
5723
5652
  if (flatJson) {
5724
- const _message = { [locale3]: message };
5653
+ const _message = { [locale22]: message };
5725
5654
  for (const key in _message) {
5726
5655
  if (hasOwn(_message, key)) {
5727
5656
  handleFlatJson(_message[key]);
5728
5657
  }
5729
5658
  }
5730
- message = _message[locale3];
5659
+ message = _message[locale22];
5731
5660
  }
5732
- _messages.value[locale3] = message;
5661
+ _messages.value[locale22] = message;
5733
5662
  _context.messages = _messages.value;
5734
5663
  }
5735
- function mergeLocaleMessage(locale3, message) {
5736
- _messages.value[locale3] = _messages.value[locale3] || {};
5737
- const _message = { [locale3]: message };
5664
+ function mergeLocaleMessage(locale22, message) {
5665
+ _messages.value[locale22] = _messages.value[locale22] || {};
5666
+ const _message = { [locale22]: message };
5738
5667
  if (flatJson) {
5739
5668
  for (const key in _message) {
5740
5669
  if (hasOwn(_message, key)) {
@@ -5742,35 +5671,35 @@ function createComposer(options = {}, VueI18nLegacy) {
5742
5671
  }
5743
5672
  }
5744
5673
  }
5745
- message = _message[locale3];
5746
- deepCopy(message, _messages.value[locale3]);
5674
+ message = _message[locale22];
5675
+ deepCopy(message, _messages.value[locale22]);
5747
5676
  _context.messages = _messages.value;
5748
5677
  }
5749
- function getDateTimeFormat(locale3) {
5750
- return _datetimeFormats.value[locale3] || {};
5678
+ function getDateTimeFormat(locale22) {
5679
+ return _datetimeFormats.value[locale22] || {};
5751
5680
  }
5752
- function setDateTimeFormat(locale3, format2) {
5753
- _datetimeFormats.value[locale3] = format2;
5681
+ function setDateTimeFormat(locale22, format2) {
5682
+ _datetimeFormats.value[locale22] = format2;
5754
5683
  _context.datetimeFormats = _datetimeFormats.value;
5755
- clearDateTimeFormat(_context, locale3, format2);
5684
+ clearDateTimeFormat(_context, locale22, format2);
5756
5685
  }
5757
- function mergeDateTimeFormat(locale3, format2) {
5758
- _datetimeFormats.value[locale3] = assign$1(_datetimeFormats.value[locale3] || {}, format2);
5686
+ function mergeDateTimeFormat(locale22, format2) {
5687
+ _datetimeFormats.value[locale22] = assign$1(_datetimeFormats.value[locale22] || {}, format2);
5759
5688
  _context.datetimeFormats = _datetimeFormats.value;
5760
- clearDateTimeFormat(_context, locale3, format2);
5689
+ clearDateTimeFormat(_context, locale22, format2);
5761
5690
  }
5762
- function getNumberFormat(locale3) {
5763
- return _numberFormats.value[locale3] || {};
5691
+ function getNumberFormat(locale22) {
5692
+ return _numberFormats.value[locale22] || {};
5764
5693
  }
5765
- function setNumberFormat(locale3, format2) {
5766
- _numberFormats.value[locale3] = format2;
5694
+ function setNumberFormat(locale22, format2) {
5695
+ _numberFormats.value[locale22] = format2;
5767
5696
  _context.numberFormats = _numberFormats.value;
5768
- clearNumberFormat(_context, locale3, format2);
5697
+ clearNumberFormat(_context, locale22, format2);
5769
5698
  }
5770
- function mergeNumberFormat(locale3, format2) {
5771
- _numberFormats.value[locale3] = assign$1(_numberFormats.value[locale3] || {}, format2);
5699
+ function mergeNumberFormat(locale22, format2) {
5700
+ _numberFormats.value[locale22] = assign$1(_numberFormats.value[locale22] || {}, format2);
5772
5701
  _context.numberFormats = _numberFormats.value;
5773
- clearNumberFormat(_context, locale3, format2);
5702
+ clearNumberFormat(_context, locale22, format2);
5774
5703
  }
5775
5704
  composerID++;
5776
5705
  if (__root && inBrowser) {
@@ -5921,9 +5850,9 @@ function convertComposerOptions(options) {
5921
5850
  if (isPlainObject$1(options.sharedMessages)) {
5922
5851
  const sharedMessages = options.sharedMessages;
5923
5852
  const locales = Object.keys(sharedMessages);
5924
- messages = locales.reduce((messages2, locale3) => {
5925
- const message = messages2[locale3] || (messages2[locale3] = {});
5926
- assign$1(message, sharedMessages[locale3]);
5853
+ messages = locales.reduce((messages2, locale22) => {
5854
+ const message = messages2[locale22] || (messages2[locale22] = {});
5855
+ assign$1(message, sharedMessages[locale22]);
5927
5856
  return messages2;
5928
5857
  }, messages || {});
5929
5858
  }
@@ -7325,49 +7254,49 @@ function useI18nForLegacy(instance, scope, root2, options = {}) {
7325
7254
  function tm(key) {
7326
7255
  return _composer.value ? _composer.value.tm(key) : {};
7327
7256
  }
7328
- function te(key, locale3) {
7329
- return _composer.value ? _composer.value.te(key, locale3) : false;
7257
+ function te(key, locale22) {
7258
+ return _composer.value ? _composer.value.te(key, locale22) : false;
7330
7259
  }
7331
- function getLocaleMessage(locale3) {
7332
- return _composer.value ? _composer.value.getLocaleMessage(locale3) : {};
7260
+ function getLocaleMessage(locale22) {
7261
+ return _composer.value ? _composer.value.getLocaleMessage(locale22) : {};
7333
7262
  }
7334
- function setLocaleMessage(locale3, message) {
7263
+ function setLocaleMessage(locale22, message) {
7335
7264
  if (_composer.value) {
7336
- _composer.value.setLocaleMessage(locale3, message);
7337
- _messages.value[locale3] = message;
7265
+ _composer.value.setLocaleMessage(locale22, message);
7266
+ _messages.value[locale22] = message;
7338
7267
  }
7339
7268
  }
7340
- function mergeLocaleMessage(locale3, message) {
7269
+ function mergeLocaleMessage(locale22, message) {
7341
7270
  if (_composer.value) {
7342
- _composer.value.mergeLocaleMessage(locale3, message);
7271
+ _composer.value.mergeLocaleMessage(locale22, message);
7343
7272
  }
7344
7273
  }
7345
- function getDateTimeFormat(locale3) {
7346
- return _composer.value ? _composer.value.getDateTimeFormat(locale3) : {};
7274
+ function getDateTimeFormat(locale22) {
7275
+ return _composer.value ? _composer.value.getDateTimeFormat(locale22) : {};
7347
7276
  }
7348
- function setDateTimeFormat(locale3, format2) {
7277
+ function setDateTimeFormat(locale22, format2) {
7349
7278
  if (_composer.value) {
7350
- _composer.value.setDateTimeFormat(locale3, format2);
7351
- _datetimeFormats.value[locale3] = format2;
7279
+ _composer.value.setDateTimeFormat(locale22, format2);
7280
+ _datetimeFormats.value[locale22] = format2;
7352
7281
  }
7353
7282
  }
7354
- function mergeDateTimeFormat(locale3, format2) {
7283
+ function mergeDateTimeFormat(locale22, format2) {
7355
7284
  if (_composer.value) {
7356
- _composer.value.mergeDateTimeFormat(locale3, format2);
7285
+ _composer.value.mergeDateTimeFormat(locale22, format2);
7357
7286
  }
7358
7287
  }
7359
- function getNumberFormat(locale3) {
7360
- return _composer.value ? _composer.value.getNumberFormat(locale3) : {};
7288
+ function getNumberFormat(locale22) {
7289
+ return _composer.value ? _composer.value.getNumberFormat(locale22) : {};
7361
7290
  }
7362
- function setNumberFormat(locale3, format2) {
7291
+ function setNumberFormat(locale22, format2) {
7363
7292
  if (_composer.value) {
7364
- _composer.value.setNumberFormat(locale3, format2);
7365
- _numberFormats.value[locale3] = format2;
7293
+ _composer.value.setNumberFormat(locale22, format2);
7294
+ _numberFormats.value[locale22] = format2;
7366
7295
  }
7367
7296
  }
7368
- function mergeNumberFormat(locale3, format2) {
7297
+ function mergeNumberFormat(locale22, format2) {
7369
7298
  if (_composer.value) {
7370
- _composer.value.mergeNumberFormat(locale3, format2);
7299
+ _composer.value.mergeNumberFormat(locale22, format2);
7371
7300
  }
7372
7301
  }
7373
7302
  const wrapper3 = {
@@ -7470,14 +7399,14 @@ function useI18nForLegacy(instance, scope, root2, options = {}) {
7470
7399
  function sync(composer) {
7471
7400
  composer.locale.value = _locale.value;
7472
7401
  composer.fallbackLocale.value = _fallbackLocale.value;
7473
- Object.keys(_messages.value).forEach((locale3) => {
7474
- composer.mergeLocaleMessage(locale3, _messages.value[locale3]);
7402
+ Object.keys(_messages.value).forEach((locale22) => {
7403
+ composer.mergeLocaleMessage(locale22, _messages.value[locale22]);
7475
7404
  });
7476
- Object.keys(_datetimeFormats.value).forEach((locale3) => {
7477
- composer.mergeDateTimeFormat(locale3, _datetimeFormats.value[locale3]);
7405
+ Object.keys(_datetimeFormats.value).forEach((locale22) => {
7406
+ composer.mergeDateTimeFormat(locale22, _datetimeFormats.value[locale22]);
7478
7407
  });
7479
- Object.keys(_numberFormats.value).forEach((locale3) => {
7480
- composer.mergeNumberFormat(locale3, _numberFormats.value[locale3]);
7408
+ Object.keys(_numberFormats.value).forEach((locale22) => {
7409
+ composer.mergeNumberFormat(locale22, _numberFormats.value[locale22]);
7481
7410
  });
7482
7411
  composer.escapeParameter = _escapeParameter;
7483
7412
  composer.fallbackFormat = _fallbackFormat;
@@ -7555,15 +7484,14 @@ if (__INTLIFY_JIT_COMPILATION__) {
7555
7484
  } else {
7556
7485
  registerMessageCompiler(compileToFunction);
7557
7486
  }
7558
- registerMessageResolver(resolveValue);
7487
+ registerMessageResolver(resolveValue$1);
7559
7488
  registerLocaleFallbacker(fallbackWithLocaleChain);
7560
7489
  if (process.env.NODE_ENV !== "production" || __INTLIFY_PROD_DEVTOOLS__) {
7561
7490
  const target = getGlobalThis();
7562
7491
  target.__INTLIFY__ = true;
7563
7492
  setDevToolsHook(target.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__);
7564
7493
  }
7565
- if (process.env.NODE_ENV !== "production")
7566
- ;
7494
+ if (process.env.NODE_ENV !== "production") ;
7567
7495
  const gitCodeLayout$1 = {
7568
7496
  home: {
7569
7497
  alreadyFollowed: "已关注",
@@ -7781,7 +7709,9 @@ const gitCodeLayout$1 = {
7781
7709
  toUseGit: "才能使用GitCode。",
7782
7710
  ifYouDoNotAgrWe: "如果您不同意,很遗憾我们无法为您提供服务。",
7783
7711
  disAndQui: "不同意并退出",
7784
- agrAndSigIn: "同意并登录"
7712
+ agrAndSigIn: "同意并登录",
7713
+ unusualLogin: "检测到异地登录,本次请使用",
7714
+ smsLogin: "短信登录"
7785
7715
  },
7786
7716
  link: {
7787
7717
  agreement: "用户协议",
@@ -8054,7 +7984,9 @@ const gitCodeLayout = {
8054
7984
  toUseGit: "to use GitCode.",
8055
7985
  ifYouDoNotAgrWe: "If you do not agree, unfortunately, we cannot provide you with services.",
8056
7986
  disAndQui: "Disagree and Exit",
8057
- agrAndSigIn: "Agree and Login"
7987
+ agrAndSigIn: "Agree and Login",
7988
+ unusualLogin: "unusual location login, ",
7989
+ smsLogin: "verify with SMS"
8058
7990
  },
8059
7991
  link: {
8060
7992
  agreement: "User Agreement",
@@ -8181,8 +8113,7 @@ const handleAvatarRedPoint = (type, other) => {
8181
8113
  }
8182
8114
  };
8183
8115
  function extractRepoInfoWithURL(repoUrl) {
8184
- if (!repoUrl)
8185
- return "";
8116
+ if (!repoUrl) return "";
8186
8117
  const url = new URL(repoUrl);
8187
8118
  const pathname = url.pathname.replace(/^\//, "");
8188
8119
  const parts = pathname.replace(/.git$/, "").split("/").filter(Boolean);
@@ -8210,8 +8141,7 @@ const isTrustedRepo = (topics) => {
8210
8141
  };
8211
8142
  const INCUBATION_TOPICS = layoutConfig$4.VITE_INCUBATION_TOPIC || "";
8212
8143
  const isIncubationRepo = (topics = []) => {
8213
- if (!topics)
8214
- return false;
8144
+ if (!topics) return false;
8215
8145
  const incubationIds = INCUBATION_TOPICS.split(",");
8216
8146
  if (topics.some((e) => /孵化项目/.test(e.name) || incubationIds.includes(e.topic_id || e.id))) {
8217
8147
  return true;
@@ -8302,7 +8232,7 @@ function mitt(n) {
8302
8232
  const emitter = mitt();
8303
8233
  const addEventListener = (evtName, callback) => emitter.on(evtName, callback);
8304
8234
  const emitEvent = (evtName, payload) => emitter.emit(evtName, payload);
8305
- const offEvent = (evtName, handler) => emitter.off(evtName, handler || void 0);
8235
+ const offEvent = (evtName, handler) => emitter.off(evtName, void 0);
8306
8236
  function bind(fn, thisArg) {
8307
8237
  return function wrap() {
8308
8238
  return fn.apply(thisArg, arguments);
@@ -8310,8 +8240,7 @@ function bind(fn, thisArg) {
8310
8240
  }
8311
8241
  const { toString } = Object.prototype;
8312
8242
  const { getPrototypeOf } = Object;
8313
- const { iterator, toStringTag } = Symbol;
8314
- const kindOf = ((cache2) => (thing) => {
8243
+ const kindOf = /* @__PURE__ */ ((cache2) => (thing) => {
8315
8244
  const str = toString.call(thing);
8316
8245
  return cache2[str] || (cache2[str] = str.slice(8, -1).toLowerCase());
8317
8246
  })(/* @__PURE__ */ Object.create(null));
@@ -8345,7 +8274,7 @@ const isPlainObject = (val) => {
8345
8274
  return false;
8346
8275
  }
8347
8276
  const prototype2 = getPrototypeOf(val);
8348
- return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(toStringTag in val) && !(iterator in val);
8277
+ return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);
8349
8278
  };
8350
8279
  const isDate$2 = kindOfTest("Date");
8351
8280
  const isFile = kindOfTest("File");
@@ -8397,8 +8326,7 @@ function findKey(obj, key) {
8397
8326
  return null;
8398
8327
  }
8399
8328
  const _global = (() => {
8400
- if (typeof globalThis !== "undefined")
8401
- return globalThis;
8329
+ if (typeof globalThis !== "undefined") return globalThis;
8402
8330
  return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : global;
8403
8331
  })();
8404
8332
  const isContextDefined = (context) => !isUndefined$1(context) && context !== _global;
@@ -8452,8 +8380,7 @@ const toFlatObject = (sourceObj, destObj, filter2, propFilter) => {
8452
8380
  let prop;
8453
8381
  const merged = {};
8454
8382
  destObj = destObj || {};
8455
- if (sourceObj == null)
8456
- return destObj;
8383
+ if (sourceObj == null) return destObj;
8457
8384
  do {
8458
8385
  props = Object.getOwnPropertyNames(sourceObj);
8459
8386
  i = props.length;
@@ -8478,29 +8405,26 @@ const endsWith = (str, searchString, position) => {
8478
8405
  return lastIndex !== -1 && lastIndex === position;
8479
8406
  };
8480
8407
  const toArray = (thing) => {
8481
- if (!thing)
8482
- return null;
8483
- if (isArray$4(thing))
8484
- return thing;
8408
+ if (!thing) return null;
8409
+ if (isArray$4(thing)) return thing;
8485
8410
  let i = thing.length;
8486
- if (!isNumber(i))
8487
- return null;
8411
+ if (!isNumber(i)) return null;
8488
8412
  const arr = new Array(i);
8489
8413
  while (i-- > 0) {
8490
8414
  arr[i] = thing[i];
8491
8415
  }
8492
8416
  return arr;
8493
8417
  };
8494
- const isTypedArray$2 = ((TypedArray) => {
8418
+ const isTypedArray$2 = /* @__PURE__ */ ((TypedArray) => {
8495
8419
  return (thing) => {
8496
8420
  return TypedArray && thing instanceof TypedArray;
8497
8421
  };
8498
8422
  })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
8499
8423
  const forEachEntry = (obj, fn) => {
8500
- const generator = obj && obj[iterator];
8501
- const _iterator = generator.call(obj);
8424
+ const generator = obj && obj[Symbol.iterator];
8425
+ const iterator = generator.call(obj);
8502
8426
  let result2;
8503
- while ((result2 = _iterator.next()) && !result2.done) {
8427
+ while ((result2 = iterator.next()) && !result2.done) {
8504
8428
  const pair = result2.value;
8505
8429
  fn.call(obj, pair[0], pair[1]);
8506
8430
  }
@@ -8541,8 +8465,7 @@ const freezeMethods = (obj) => {
8541
8465
  return false;
8542
8466
  }
8543
8467
  const value = obj[name];
8544
- if (!isFunction$3(value))
8545
- return;
8468
+ if (!isFunction$3(value)) return;
8546
8469
  descriptor.enumerable = false;
8547
8470
  if ("writable" in descriptor) {
8548
8471
  descriptor.writable = false;
@@ -8571,7 +8494,7 @@ const toFiniteNumber = (value, defaultValue) => {
8571
8494
  return value != null && Number.isFinite(value = +value) ? value : defaultValue;
8572
8495
  };
8573
8496
  function isSpecCompliantForm(thing) {
8574
- return !!(thing && isFunction$3(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]);
8497
+ return !!(thing && isFunction$3(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator]);
8575
8498
  }
8576
8499
  const toJSONObject = (obj) => {
8577
8500
  const stack = new Array(10);
@@ -8617,7 +8540,6 @@ const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
8617
8540
  isFunction$3(_global.postMessage)
8618
8541
  );
8619
8542
  const asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
8620
- const isIterable = (thing) => thing != null && isFunction$3(thing[iterator]);
8621
8543
  const utils$1 = {
8622
8544
  isArray: isArray$4,
8623
8545
  isArrayBuffer,
@@ -8674,10 +8596,9 @@ const utils$1 = {
8674
8596
  isAsyncFn,
8675
8597
  isThenable,
8676
8598
  setImmediate: _setImmediate,
8677
- asap,
8678
- isIterable
8599
+ asap
8679
8600
  };
8680
- function AxiosError(message, code2, config, request, response) {
8601
+ function AxiosError$1(message, code2, config, request, response) {
8681
8602
  Error.call(this);
8682
8603
  if (Error.captureStackTrace) {
8683
8604
  Error.captureStackTrace(this, this.constructor);
@@ -8694,7 +8615,7 @@ function AxiosError(message, code2, config, request, response) {
8694
8615
  this.status = response.status ? response.status : null;
8695
8616
  }
8696
8617
  }
8697
- utils$1.inherits(AxiosError, Error, {
8618
+ utils$1.inherits(AxiosError$1, Error, {
8698
8619
  toJSON: function toJSON() {
8699
8620
  return {
8700
8621
  // Standard
@@ -8715,7 +8636,7 @@ utils$1.inherits(AxiosError, Error, {
8715
8636
  };
8716
8637
  }
8717
8638
  });
8718
- const prototype$1 = AxiosError.prototype;
8639
+ const prototype$1 = AxiosError$1.prototype;
8719
8640
  const descriptors = {};
8720
8641
  [
8721
8642
  "ERR_BAD_OPTION_VALUE",
@@ -8734,16 +8655,16 @@ const descriptors = {};
8734
8655
  ].forEach((code2) => {
8735
8656
  descriptors[code2] = { value: code2 };
8736
8657
  });
8737
- Object.defineProperties(AxiosError, descriptors);
8658
+ Object.defineProperties(AxiosError$1, descriptors);
8738
8659
  Object.defineProperty(prototype$1, "isAxiosError", { value: true });
8739
- AxiosError.from = (error, code2, config, request, response, customProps) => {
8660
+ AxiosError$1.from = (error, code2, config, request, response, customProps) => {
8740
8661
  const axiosError = Object.create(prototype$1);
8741
8662
  utils$1.toFlatObject(error, axiosError, function filter2(obj) {
8742
8663
  return obj !== Error.prototype;
8743
8664
  }, (prop) => {
8744
8665
  return prop !== "isAxiosError";
8745
8666
  });
8746
- AxiosError.call(axiosError, error.message, code2, config, request, response);
8667
+ AxiosError$1.call(axiosError, error.message, code2, config, request, response);
8747
8668
  axiosError.cause = error;
8748
8669
  axiosError.name = error.name;
8749
8670
  customProps && Object.assign(axiosError, customProps);
@@ -8757,8 +8678,7 @@ function removeBrackets(key) {
8757
8678
  return utils$1.endsWith(key, "[]") ? key.slice(0, -2) : key;
8758
8679
  }
8759
8680
  function renderKey(path, key, dots) {
8760
- if (!path)
8761
- return key;
8681
+ if (!path) return key;
8762
8682
  return path.concat(key).map(function each(token, i) {
8763
8683
  token = removeBrackets(token);
8764
8684
  return !dots && i ? "[" + token + "]" : token;
@@ -8770,7 +8690,7 @@ function isFlatArray(arr) {
8770
8690
  const predicates = utils$1.toFlatObject(utils$1, {}, null, function filter(prop) {
8771
8691
  return /^is[A-Z]/.test(prop);
8772
8692
  });
8773
- function toFormData(obj, formData, options) {
8693
+ function toFormData$1(obj, formData, options) {
8774
8694
  if (!utils$1.isObject(obj)) {
8775
8695
  throw new TypeError("target must be an object");
8776
8696
  }
@@ -8792,13 +8712,12 @@ function toFormData(obj, formData, options) {
8792
8712
  throw new TypeError("visitor must be a function");
8793
8713
  }
8794
8714
  function convertValue(value) {
8795
- if (value === null)
8796
- return "";
8715
+ if (value === null) return "";
8797
8716
  if (utils$1.isDate(value)) {
8798
8717
  return value.toISOString();
8799
8718
  }
8800
8719
  if (!useBlob && utils$1.isBlob(value)) {
8801
- throw new AxiosError("Blob is not supported. Use a Buffer instead.");
8720
+ throw new AxiosError$1("Blob is not supported. Use a Buffer instead.");
8802
8721
  }
8803
8722
  if (utils$1.isArrayBuffer(value) || utils$1.isTypedArray(value)) {
8804
8723
  return useBlob && typeof Blob === "function" ? new Blob([value]) : Buffer.from(value);
@@ -8836,8 +8755,7 @@ function toFormData(obj, formData, options) {
8836
8755
  isVisitable
8837
8756
  });
8838
8757
  function build(value, path) {
8839
- if (utils$1.isUndefined(value))
8840
- return;
8758
+ if (utils$1.isUndefined(value)) return;
8841
8759
  if (stack.indexOf(value) !== -1) {
8842
8760
  throw Error("Circular reference detected in " + path.join("."));
8843
8761
  }
@@ -8878,7 +8796,7 @@ function encode$1(str) {
8878
8796
  }
8879
8797
  function AxiosURLSearchParams(params, options) {
8880
8798
  this._pairs = [];
8881
- params && toFormData(params, this, options);
8799
+ params && toFormData$1(params, this, options);
8882
8800
  }
8883
8801
  const prototype = AxiosURLSearchParams.prototype;
8884
8802
  prototype.append = function append(name, value) {
@@ -8982,7 +8900,6 @@ class InterceptorManager {
8982
8900
  });
8983
8901
  }
8984
8902
  }
8985
- const InterceptorManager$1 = InterceptorManager;
8986
8903
  const transitionalDefaults = {
8987
8904
  silentJSONParsing: true,
8988
8905
  forcedJSONParsing: true,
@@ -9021,7 +8938,7 @@ const platform = {
9021
8938
  ...platform$1
9022
8939
  };
9023
8940
  function toURLEncodedForm(data, options) {
9024
- return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({
8941
+ return toFormData$1(data, new platform.classes.URLSearchParams(), Object.assign({
9025
8942
  visitor: function(value, key, path, helpers) {
9026
8943
  if (platform.isNode && utils$1.isBuffer(value)) {
9027
8944
  this.append(key, value.toString("base64"));
@@ -9051,8 +8968,7 @@ function arrayToObject(arr) {
9051
8968
  function formDataToJSON(formData) {
9052
8969
  function buildPath(path, value, target, index2) {
9053
8970
  let name = path[index2++];
9054
- if (name === "__proto__")
9055
- return true;
8971
+ if (name === "__proto__") return true;
9056
8972
  const isNumericKey = Number.isFinite(+name);
9057
8973
  const isLast = index2 >= path.length;
9058
8974
  name = !name && utils$1.isArray(target) ? target.length : name;
@@ -9126,7 +9042,7 @@ const defaults = {
9126
9042
  }
9127
9043
  if ((isFileList2 = utils$1.isFileList(data)) || contentType.indexOf("multipart/form-data") > -1) {
9128
9044
  const _FormData = this.env && this.env.FormData;
9129
- return toFormData(
9045
+ return toFormData$1(
9130
9046
  isFileList2 ? { "files[]": data } : data,
9131
9047
  _FormData && new _FormData(),
9132
9048
  this.formSerializer
@@ -9154,7 +9070,7 @@ const defaults = {
9154
9070
  } catch (e) {
9155
9071
  if (strictJSONParsing) {
9156
9072
  if (e.name === "SyntaxError") {
9157
- throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);
9073
+ throw AxiosError$1.from(e, AxiosError$1.ERR_BAD_RESPONSE, this, null, this.response);
9158
9074
  }
9159
9075
  throw e;
9160
9076
  }
@@ -9188,7 +9104,6 @@ const defaults = {
9188
9104
  utils$1.forEach(["delete", "get", "head", "post", "put", "patch"], (method) => {
9189
9105
  defaults.headers[method] = {};
9190
9106
  });
9191
- const defaults$1 = defaults;
9192
9107
  const ignoreDuplicateOf = utils$1.toObjectSet([
9193
9108
  "age",
9194
9109
  "authorization",
@@ -9259,8 +9174,7 @@ function matchHeaderValue(context, value, header, filter2, isHeaderNameFilter) {
9259
9174
  if (isHeaderNameFilter) {
9260
9175
  value = header;
9261
9176
  }
9262
- if (!utils$1.isString(value))
9263
- return;
9177
+ if (!utils$1.isString(value)) return;
9264
9178
  if (utils$1.isString(filter2)) {
9265
9179
  return value.indexOf(filter2) !== -1;
9266
9180
  }
@@ -9284,7 +9198,7 @@ function buildAccessors(obj, header) {
9284
9198
  });
9285
9199
  });
9286
9200
  }
9287
- class AxiosHeaders {
9201
+ let AxiosHeaders$1 = class AxiosHeaders {
9288
9202
  constructor(headers) {
9289
9203
  headers && this.set(headers);
9290
9204
  }
@@ -9305,15 +9219,10 @@ class AxiosHeaders {
9305
9219
  setHeaders(header, valueOrRewrite);
9306
9220
  } else if (utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
9307
9221
  setHeaders(parseHeaders(header), valueOrRewrite);
9308
- } else if (utils$1.isObject(header) && utils$1.isIterable(header)) {
9309
- let obj = {}, dest, key;
9310
- for (const entry of header) {
9311
- if (!utils$1.isArray(entry)) {
9312
- throw TypeError("Object iterator must return a key-value pair");
9313
- }
9314
- obj[key = entry[0]] = (dest = obj[key]) ? utils$1.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1];
9222
+ } else if (utils$1.isHeaders(header)) {
9223
+ for (const [key, value] of header.entries()) {
9224
+ setHeader(value, key, rewrite);
9315
9225
  }
9316
- setHeaders(obj, valueOrRewrite);
9317
9226
  } else {
9318
9227
  header != null && setHeader(valueOrRewrite, header, rewrite);
9319
9228
  }
@@ -9417,9 +9326,6 @@ class AxiosHeaders {
9417
9326
  toString() {
9418
9327
  return Object.entries(this.toJSON()).map(([header, value]) => header + ": " + value).join("\n");
9419
9328
  }
9420
- getSetCookie() {
9421
- return this.get("set-cookie") || [];
9422
- }
9423
9329
  get [Symbol.toStringTag]() {
9424
9330
  return "AxiosHeaders";
9425
9331
  }
@@ -9447,9 +9353,9 @@ class AxiosHeaders {
9447
9353
  utils$1.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
9448
9354
  return this;
9449
9355
  }
9450
- }
9451
- AxiosHeaders.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
9452
- utils$1.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
9356
+ };
9357
+ AxiosHeaders$1.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
9358
+ utils$1.reduceDescriptors(AxiosHeaders$1.prototype, ({ value }, key) => {
9453
9359
  let mapped = key[0].toUpperCase() + key.slice(1);
9454
9360
  return {
9455
9361
  get: () => value,
@@ -9458,10 +9364,9 @@ utils$1.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
9458
9364
  }
9459
9365
  };
9460
9366
  });
9461
- utils$1.freezeMethods(AxiosHeaders);
9462
- const AxiosHeaders$1 = AxiosHeaders;
9367
+ utils$1.freezeMethods(AxiosHeaders$1);
9463
9368
  function transformData(fns, response) {
9464
- const config = this || defaults$1;
9369
+ const config = this || defaults;
9465
9370
  const context = response || config;
9466
9371
  const headers = AxiosHeaders$1.from(context.headers);
9467
9372
  let data = context.data;
@@ -9471,14 +9376,14 @@ function transformData(fns, response) {
9471
9376
  headers.normalize();
9472
9377
  return data;
9473
9378
  }
9474
- function isCancel(value) {
9379
+ function isCancel$1(value) {
9475
9380
  return !!(value && value.__CANCEL__);
9476
9381
  }
9477
- function CanceledError(message, config, request) {
9478
- AxiosError.call(this, message == null ? "canceled" : message, AxiosError.ERR_CANCELED, config, request);
9382
+ function CanceledError$1(message, config, request) {
9383
+ AxiosError$1.call(this, message == null ? "canceled" : message, AxiosError$1.ERR_CANCELED, config, request);
9479
9384
  this.name = "CanceledError";
9480
9385
  }
9481
- utils$1.inherits(CanceledError, AxiosError, {
9386
+ utils$1.inherits(CanceledError$1, AxiosError$1, {
9482
9387
  __CANCEL__: true
9483
9388
  });
9484
9389
  function settle(resolve, reject, response) {
@@ -9486,9 +9391,9 @@ function settle(resolve, reject, response) {
9486
9391
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
9487
9392
  resolve(response);
9488
9393
  } else {
9489
- reject(new AxiosError(
9394
+ reject(new AxiosError$1(
9490
9395
  "Request failed with status code " + response.status,
9491
- [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
9396
+ [AxiosError$1.ERR_BAD_REQUEST, AxiosError$1.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
9492
9397
  response.config,
9493
9398
  response.request,
9494
9399
  response
@@ -9597,7 +9502,7 @@ const progressEventDecorator = (total, throttled) => {
9597
9502
  }), throttled[1]];
9598
9503
  };
9599
9504
  const asyncDecorator = (fn) => (...args) => utils$1.asap(() => fn(...args));
9600
- const isURLSameOrigin = platform.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url) => {
9505
+ const isURLSameOrigin = platform.hasStandardBrowserEnv ? /* @__PURE__ */ ((origin2, isMSIE) => (url) => {
9601
9506
  url = new URL(url, platform.origin);
9602
9507
  return origin2.protocol === url.protocol && origin2.host === url.host && (isMSIE || origin2.port === url.port);
9603
9508
  })(
@@ -9649,7 +9554,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
9649
9554
  return requestedURL;
9650
9555
  }
9651
9556
  const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
9652
- function mergeConfig(config1, config2) {
9557
+ function mergeConfig$1(config1, config2) {
9653
9558
  config2 = config2 || {};
9654
9559
  const config = {};
9655
9560
  function getMergedValue(target, source, prop, caseless) {
@@ -9727,7 +9632,7 @@ function mergeConfig(config1, config2) {
9727
9632
  return config;
9728
9633
  }
9729
9634
  const resolveConfig = (config) => {
9730
- const newConfig = mergeConfig({}, config);
9635
+ const newConfig = mergeConfig$1({}, config);
9731
9636
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
9732
9637
  newConfig.headers = headers = AxiosHeaders$1.from(headers);
9733
9638
  newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
@@ -9818,11 +9723,11 @@ const xhrAdapter = isXHRAdapterSupported && function(config) {
9818
9723
  if (!request) {
9819
9724
  return;
9820
9725
  }
9821
- reject(new AxiosError("Request aborted", AxiosError.ECONNABORTED, config, request));
9726
+ reject(new AxiosError$1("Request aborted", AxiosError$1.ECONNABORTED, config, request));
9822
9727
  request = null;
9823
9728
  };
9824
9729
  request.onerror = function handleError() {
9825
- reject(new AxiosError("Network Error", AxiosError.ERR_NETWORK, config, request));
9730
+ reject(new AxiosError$1("Network Error", AxiosError$1.ERR_NETWORK, config, request));
9826
9731
  request = null;
9827
9732
  };
9828
9733
  request.ontimeout = function handleTimeout() {
@@ -9831,9 +9736,9 @@ const xhrAdapter = isXHRAdapterSupported && function(config) {
9831
9736
  if (_config.timeoutErrorMessage) {
9832
9737
  timeoutErrorMessage = _config.timeoutErrorMessage;
9833
9738
  }
9834
- reject(new AxiosError(
9739
+ reject(new AxiosError$1(
9835
9740
  timeoutErrorMessage,
9836
- transitional2.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
9741
+ transitional2.clarifyTimeoutError ? AxiosError$1.ETIMEDOUT : AxiosError$1.ECONNABORTED,
9837
9742
  config,
9838
9743
  request
9839
9744
  ));
@@ -9865,7 +9770,7 @@ const xhrAdapter = isXHRAdapterSupported && function(config) {
9865
9770
  if (!request) {
9866
9771
  return;
9867
9772
  }
9868
- reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
9773
+ reject(!cancel || cancel.type ? new CanceledError$1(null, config, request) : cancel);
9869
9774
  request.abort();
9870
9775
  request = null;
9871
9776
  };
@@ -9876,7 +9781,7 @@ const xhrAdapter = isXHRAdapterSupported && function(config) {
9876
9781
  }
9877
9782
  const protocol = parseProtocol(_config.url);
9878
9783
  if (protocol && platform.protocols.indexOf(protocol) === -1) {
9879
- reject(new AxiosError("Unsupported protocol " + protocol + ":", AxiosError.ERR_BAD_REQUEST, config));
9784
+ reject(new AxiosError$1("Unsupported protocol " + protocol + ":", AxiosError$1.ERR_BAD_REQUEST, config));
9880
9785
  return;
9881
9786
  }
9882
9787
  request.send(requestData || null);
@@ -9892,12 +9797,12 @@ const composeSignals = (signals, timeout) => {
9892
9797
  aborted = true;
9893
9798
  unsubscribe();
9894
9799
  const err = reason instanceof Error ? reason : this.reason;
9895
- controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
9800
+ controller.abort(err instanceof AxiosError$1 ? err : new CanceledError$1(err instanceof Error ? err.message : err));
9896
9801
  }
9897
9802
  };
9898
9803
  let timer = timeout && setTimeout(() => {
9899
9804
  timer = null;
9900
- onabort(new AxiosError(`timeout ${timeout} of ms exceeded`, AxiosError.ETIMEDOUT));
9805
+ onabort(new AxiosError$1(`timeout ${timeout} of ms exceeded`, AxiosError$1.ETIMEDOUT));
9901
9806
  }, timeout);
9902
9807
  const unsubscribe = () => {
9903
9808
  if (signals) {
@@ -9915,10 +9820,9 @@ const composeSignals = (signals, timeout) => {
9915
9820
  return signal;
9916
9821
  }
9917
9822
  };
9918
- const composeSignals$1 = composeSignals;
9919
9823
  const streamChunk = function* (chunk, chunkSize) {
9920
9824
  let len = chunk.byteLength;
9921
- if (!chunkSize || len < chunkSize) {
9825
+ if (len < chunkSize) {
9922
9826
  yield chunk;
9923
9827
  return;
9924
9828
  }
@@ -9954,7 +9858,7 @@ const readStream = async function* (stream) {
9954
9858
  }
9955
9859
  };
9956
9860
  const trackStream = (stream, chunkSize, onProgress, onFinish) => {
9957
- const iterator2 = readBytes(stream, chunkSize);
9861
+ const iterator = readBytes(stream, chunkSize);
9958
9862
  let bytes = 0;
9959
9863
  let done;
9960
9864
  let _onFinish = (e) => {
@@ -9966,7 +9870,7 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
9966
9870
  return new ReadableStream({
9967
9871
  async pull(controller) {
9968
9872
  try {
9969
- const { done: done2, value } = await iterator2.next();
9873
+ const { done: done2, value } = await iterator.next();
9970
9874
  if (done2) {
9971
9875
  _onFinish();
9972
9876
  controller.close();
@@ -9985,7 +9889,7 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
9985
9889
  },
9986
9890
  cancel(reason) {
9987
9891
  _onFinish(reason);
9988
- return iterator2.return();
9892
+ return iterator.return();
9989
9893
  }
9990
9894
  }, {
9991
9895
  highWaterMark: 2
@@ -9993,7 +9897,7 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
9993
9897
  };
9994
9898
  const isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
9995
9899
  const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
9996
- const encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : async (str) => new Uint8Array(await new Response(str).arrayBuffer()));
9900
+ const encodeText = isFetchSupported && (typeof TextEncoder === "function" ? /* @__PURE__ */ ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : async (str) => new Uint8Array(await new Response(str).arrayBuffer()));
9997
9901
  const test = (fn, ...args) => {
9998
9902
  try {
9999
9903
  return !!fn(...args);
@@ -10021,7 +9925,7 @@ const resolvers = {
10021
9925
  isFetchSupported && ((res) => {
10022
9926
  ["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => {
10023
9927
  !resolvers[type] && (resolvers[type] = utils$1.isFunction(res[type]) ? (res2) => res2[type]() : (_, config) => {
10024
- throw new AxiosError(`Response type '${type}' is not supported`, AxiosError.ERR_NOT_SUPPORT, config);
9928
+ throw new AxiosError$1(`Response type '${type}' is not supported`, AxiosError$1.ERR_NOT_SUPPORT, config);
10025
9929
  });
10026
9930
  });
10027
9931
  })(new Response());
@@ -10069,7 +9973,7 @@ const fetchAdapter = isFetchSupported && (async (config) => {
10069
9973
  fetchOptions
10070
9974
  } = resolveConfig(config);
10071
9975
  responseType = responseType ? (responseType + "").toLowerCase() : "text";
10072
- let composedSignal = composeSignals$1([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
9976
+ let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
10073
9977
  let request;
10074
9978
  const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
10075
9979
  composedSignal.unsubscribe();
@@ -10142,15 +10046,15 @@ const fetchAdapter = isFetchSupported && (async (config) => {
10142
10046
  });
10143
10047
  } catch (err) {
10144
10048
  unsubscribe && unsubscribe();
10145
- if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
10049
+ if (err && err.name === "TypeError" && /fetch/i.test(err.message)) {
10146
10050
  throw Object.assign(
10147
- new AxiosError("Network Error", AxiosError.ERR_NETWORK, config, request),
10051
+ new AxiosError$1("Network Error", AxiosError$1.ERR_NETWORK, config, request),
10148
10052
  {
10149
10053
  cause: err.cause || err
10150
10054
  }
10151
10055
  );
10152
10056
  }
10153
- throw AxiosError.from(err, err && err.code, config, request);
10057
+ throw AxiosError$1.from(err, err && err.code, config, request);
10154
10058
  }
10155
10059
  });
10156
10060
  const knownAdapters = {
@@ -10183,7 +10087,7 @@ const adapters = {
10183
10087
  if (!isResolvedHandle(nameOrAdapter)) {
10184
10088
  adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
10185
10089
  if (adapter === void 0) {
10186
- throw new AxiosError(`Unknown adapter '${id}'`);
10090
+ throw new AxiosError$1(`Unknown adapter '${id}'`);
10187
10091
  }
10188
10092
  }
10189
10093
  if (adapter) {
@@ -10196,7 +10100,7 @@ const adapters = {
10196
10100
  ([id, state]) => `adapter ${id} ` + (state === false ? "is not supported by the environment" : "is not available in the build")
10197
10101
  );
10198
10102
  let s = length ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified";
10199
- throw new AxiosError(
10103
+ throw new AxiosError$1(
10200
10104
  `There is no suitable adapter to dispatch the request ` + s,
10201
10105
  "ERR_NOT_SUPPORT"
10202
10106
  );
@@ -10210,7 +10114,7 @@ function throwIfCancellationRequested(config) {
10210
10114
  config.cancelToken.throwIfRequested();
10211
10115
  }
10212
10116
  if (config.signal && config.signal.aborted) {
10213
- throw new CanceledError(null, config);
10117
+ throw new CanceledError$1(null, config);
10214
10118
  }
10215
10119
  }
10216
10120
  function dispatchRequest(config) {
@@ -10223,7 +10127,7 @@ function dispatchRequest(config) {
10223
10127
  if (["post", "put", "patch"].indexOf(config.method) !== -1) {
10224
10128
  config.headers.setContentType("application/x-www-form-urlencoded", false);
10225
10129
  }
10226
- const adapter = adapters.getAdapter(config.adapter || defaults$1.adapter);
10130
+ const adapter = adapters.getAdapter(config.adapter || defaults.adapter);
10227
10131
  return adapter(config).then(function onAdapterResolution(response) {
10228
10132
  throwIfCancellationRequested(config);
10229
10133
  response.data = transformData.call(
@@ -10234,7 +10138,7 @@ function dispatchRequest(config) {
10234
10138
  response.headers = AxiosHeaders$1.from(response.headers);
10235
10139
  return response;
10236
10140
  }, function onAdapterRejection(reason) {
10237
- if (!isCancel(reason)) {
10141
+ if (!isCancel$1(reason)) {
10238
10142
  throwIfCancellationRequested(config);
10239
10143
  if (reason && reason.response) {
10240
10144
  reason.response.data = transformData.call(
@@ -10248,7 +10152,7 @@ function dispatchRequest(config) {
10248
10152
  return Promise.reject(reason);
10249
10153
  });
10250
10154
  }
10251
- const VERSION = "1.9.0";
10155
+ const VERSION$1 = "1.8.4";
10252
10156
  const validators$1 = {};
10253
10157
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
10254
10158
  validators$1[type] = function validator2(thing) {
@@ -10258,13 +10162,13 @@ const validators$1 = {};
10258
10162
  const deprecatedWarnings = {};
10259
10163
  validators$1.transitional = function transitional(validator2, version, message) {
10260
10164
  function formatMessage(opt, desc) {
10261
- return "[Axios v" + VERSION + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
10165
+ return "[Axios v" + VERSION$1 + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
10262
10166
  }
10263
10167
  return (value, opt, opts) => {
10264
10168
  if (validator2 === false) {
10265
- throw new AxiosError(
10169
+ throw new AxiosError$1(
10266
10170
  formatMessage(opt, " has been removed" + (version ? " in " + version : "")),
10267
- AxiosError.ERR_DEPRECATED
10171
+ AxiosError$1.ERR_DEPRECATED
10268
10172
  );
10269
10173
  }
10270
10174
  if (version && !deprecatedWarnings[opt]) {
@@ -10287,7 +10191,7 @@ validators$1.spelling = function spelling(correctSpelling) {
10287
10191
  };
10288
10192
  function assertOptions(options, schema, allowUnknown) {
10289
10193
  if (typeof options !== "object") {
10290
- throw new AxiosError("options must be an object", AxiosError.ERR_BAD_OPTION_VALUE);
10194
+ throw new AxiosError$1("options must be an object", AxiosError$1.ERR_BAD_OPTION_VALUE);
10291
10195
  }
10292
10196
  const keys2 = Object.keys(options);
10293
10197
  let i = keys2.length;
@@ -10298,12 +10202,12 @@ function assertOptions(options, schema, allowUnknown) {
10298
10202
  const value = options[opt];
10299
10203
  const result2 = value === void 0 || validator2(value, opt, options);
10300
10204
  if (result2 !== true) {
10301
- throw new AxiosError("option " + opt + " must be " + result2, AxiosError.ERR_BAD_OPTION_VALUE);
10205
+ throw new AxiosError$1("option " + opt + " must be " + result2, AxiosError$1.ERR_BAD_OPTION_VALUE);
10302
10206
  }
10303
10207
  continue;
10304
10208
  }
10305
10209
  if (allowUnknown !== true) {
10306
- throw new AxiosError("Unknown option " + opt, AxiosError.ERR_BAD_OPTION);
10210
+ throw new AxiosError$1("Unknown option " + opt, AxiosError$1.ERR_BAD_OPTION);
10307
10211
  }
10308
10212
  }
10309
10213
  }
@@ -10312,12 +10216,12 @@ const validator = {
10312
10216
  validators: validators$1
10313
10217
  };
10314
10218
  const validators = validator.validators;
10315
- class Axios {
10219
+ let Axios$1 = class Axios {
10316
10220
  constructor(instanceConfig) {
10317
- this.defaults = instanceConfig || {};
10221
+ this.defaults = instanceConfig;
10318
10222
  this.interceptors = {
10319
- request: new InterceptorManager$1(),
10320
- response: new InterceptorManager$1()
10223
+ request: new InterceptorManager(),
10224
+ response: new InterceptorManager()
10321
10225
  };
10322
10226
  }
10323
10227
  /**
@@ -10355,7 +10259,7 @@ class Axios {
10355
10259
  } else {
10356
10260
  config = configOrUrl || {};
10357
10261
  }
10358
- config = mergeConfig(this.defaults, config);
10262
+ config = mergeConfig$1(this.defaults, config);
10359
10263
  const { transitional: transitional2, paramsSerializer, headers } = config;
10360
10264
  if (transitional2 !== void 0) {
10361
10265
  validator.assertOptions(transitional2, {
@@ -10376,8 +10280,7 @@ class Axios {
10376
10280
  }, true);
10377
10281
  }
10378
10282
  }
10379
- if (config.allowAbsoluteUrls !== void 0)
10380
- ;
10283
+ if (config.allowAbsoluteUrls !== void 0) ;
10381
10284
  else if (this.defaults.allowAbsoluteUrls !== void 0) {
10382
10285
  config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
10383
10286
  } else {
@@ -10452,14 +10355,14 @@ class Axios {
10452
10355
  return promise;
10453
10356
  }
10454
10357
  getUri(config) {
10455
- config = mergeConfig(this.defaults, config);
10358
+ config = mergeConfig$1(this.defaults, config);
10456
10359
  const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
10457
10360
  return buildURL(fullPath, config.params, config.paramsSerializer);
10458
10361
  }
10459
- }
10362
+ };
10460
10363
  utils$1.forEach(["delete", "get", "head", "options"], function forEachMethodNoData(method) {
10461
- Axios.prototype[method] = function(url, config) {
10462
- return this.request(mergeConfig(config || {}, {
10364
+ Axios$1.prototype[method] = function(url, config) {
10365
+ return this.request(mergeConfig$1(config || {}, {
10463
10366
  method,
10464
10367
  url,
10465
10368
  data: (config || {}).data
@@ -10469,7 +10372,7 @@ utils$1.forEach(["delete", "get", "head", "options"], function forEachMethodNoDa
10469
10372
  utils$1.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
10470
10373
  function generateHTTPMethod(isForm) {
10471
10374
  return function httpMethod(url, data, config) {
10472
- return this.request(mergeConfig(config || {}, {
10375
+ return this.request(mergeConfig$1(config || {}, {
10473
10376
  method,
10474
10377
  headers: isForm ? {
10475
10378
  "Content-Type": "multipart/form-data"
@@ -10479,11 +10382,10 @@ utils$1.forEach(["post", "put", "patch"], function forEachMethodWithData(method)
10479
10382
  }));
10480
10383
  };
10481
10384
  }
10482
- Axios.prototype[method] = generateHTTPMethod();
10483
- Axios.prototype[method + "Form"] = generateHTTPMethod(true);
10385
+ Axios$1.prototype[method] = generateHTTPMethod();
10386
+ Axios$1.prototype[method + "Form"] = generateHTTPMethod(true);
10484
10387
  });
10485
- const Axios$1 = Axios;
10486
- class CancelToken {
10388
+ let CancelToken$1 = class CancelToken {
10487
10389
  constructor(executor) {
10488
10390
  if (typeof executor !== "function") {
10489
10391
  throw new TypeError("executor must be a function.");
@@ -10494,8 +10396,7 @@ class CancelToken {
10494
10396
  });
10495
10397
  const token = this;
10496
10398
  this.promise.then((cancel) => {
10497
- if (!token._listeners)
10498
- return;
10399
+ if (!token._listeners) return;
10499
10400
  let i = token._listeners.length;
10500
10401
  while (i-- > 0) {
10501
10402
  token._listeners[i](cancel);
@@ -10517,7 +10418,7 @@ class CancelToken {
10517
10418
  if (token.reason) {
10518
10419
  return;
10519
10420
  }
10520
- token.reason = new CanceledError(message, config, request);
10421
+ token.reason = new CanceledError$1(message, config, request);
10521
10422
  resolvePromise(token.reason);
10522
10423
  });
10523
10424
  }
@@ -10578,17 +10479,16 @@ class CancelToken {
10578
10479
  cancel
10579
10480
  };
10580
10481
  }
10581
- }
10582
- const CancelToken$1 = CancelToken;
10583
- function spread(callback) {
10482
+ };
10483
+ function spread$1(callback) {
10584
10484
  return function wrap(arr) {
10585
10485
  return callback.apply(null, arr);
10586
10486
  };
10587
10487
  }
10588
- function isAxiosError(payload) {
10488
+ function isAxiosError$1(payload) {
10589
10489
  return utils$1.isObject(payload) && payload.isAxiosError === true;
10590
10490
  }
10591
- const HttpStatusCode = {
10491
+ const HttpStatusCode$1 = {
10592
10492
  Continue: 100,
10593
10493
  SwitchingProtocols: 101,
10594
10494
  Processing: 102,
@@ -10653,41 +10553,57 @@ const HttpStatusCode = {
10653
10553
  NotExtended: 510,
10654
10554
  NetworkAuthenticationRequired: 511
10655
10555
  };
10656
- Object.entries(HttpStatusCode).forEach(([key, value]) => {
10657
- HttpStatusCode[value] = key;
10556
+ Object.entries(HttpStatusCode$1).forEach(([key, value]) => {
10557
+ HttpStatusCode$1[value] = key;
10658
10558
  });
10659
- const HttpStatusCode$1 = HttpStatusCode;
10660
10559
  function createInstance(defaultConfig2) {
10661
10560
  const context = new Axios$1(defaultConfig2);
10662
10561
  const instance = bind(Axios$1.prototype.request, context);
10663
10562
  utils$1.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
10664
10563
  utils$1.extend(instance, context, null, { allOwnKeys: true });
10665
10564
  instance.create = function create2(instanceConfig) {
10666
- return createInstance(mergeConfig(defaultConfig2, instanceConfig));
10565
+ return createInstance(mergeConfig$1(defaultConfig2, instanceConfig));
10667
10566
  };
10668
10567
  return instance;
10669
10568
  }
10670
- const axios = createInstance(defaults$1);
10569
+ const axios = createInstance(defaults);
10671
10570
  axios.Axios = Axios$1;
10672
- axios.CanceledError = CanceledError;
10571
+ axios.CanceledError = CanceledError$1;
10673
10572
  axios.CancelToken = CancelToken$1;
10674
- axios.isCancel = isCancel;
10675
- axios.VERSION = VERSION;
10676
- axios.toFormData = toFormData;
10677
- axios.AxiosError = AxiosError;
10573
+ axios.isCancel = isCancel$1;
10574
+ axios.VERSION = VERSION$1;
10575
+ axios.toFormData = toFormData$1;
10576
+ axios.AxiosError = AxiosError$1;
10678
10577
  axios.Cancel = axios.CanceledError;
10679
10578
  axios.all = function all(promises) {
10680
10579
  return Promise.all(promises);
10681
10580
  };
10682
- axios.spread = spread;
10683
- axios.isAxiosError = isAxiosError;
10684
- axios.mergeConfig = mergeConfig;
10581
+ axios.spread = spread$1;
10582
+ axios.isAxiosError = isAxiosError$1;
10583
+ axios.mergeConfig = mergeConfig$1;
10685
10584
  axios.AxiosHeaders = AxiosHeaders$1;
10686
10585
  axios.formToJSON = (thing) => formDataToJSON(utils$1.isHTMLForm(thing) ? new FormData(thing) : thing);
10687
10586
  axios.getAdapter = adapters.getAdapter;
10688
10587
  axios.HttpStatusCode = HttpStatusCode$1;
10689
10588
  axios.default = axios;
10690
- const axios$1 = axios;
10589
+ const {
10590
+ Axios: Axios2,
10591
+ AxiosError,
10592
+ CanceledError,
10593
+ isCancel,
10594
+ CancelToken: CancelToken2,
10595
+ VERSION,
10596
+ all: all2,
10597
+ Cancel,
10598
+ isAxiosError,
10599
+ spread,
10600
+ toFormData,
10601
+ AxiosHeaders: AxiosHeaders2,
10602
+ HttpStatusCode,
10603
+ formToJSON,
10604
+ getAdapter,
10605
+ mergeConfig
10606
+ } = axios;
10691
10607
  function isPhone() {
10692
10608
  if (typeof window !== "undefined" && window.navigator) {
10693
10609
  const flag = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(window.navigator.userAgent);
@@ -10743,20 +10659,13 @@ const getOSVersion = () => {
10743
10659
  }
10744
10660
  break;
10745
10661
  case "Windows":
10746
- if (userAgent.indexOf("Windows NT 10.0") > -1)
10747
- version = "10";
10748
- else if (userAgent.indexOf("Windows NT 6.3") > -1)
10749
- version = "8.1";
10750
- else if (userAgent.indexOf("Windows NT 6.2") > -1)
10751
- version = "8";
10752
- else if (userAgent.indexOf("Windows NT 6.1") > -1)
10753
- version = "7";
10754
- else if (userAgent.indexOf("Windows NT 6.0") > -1)
10755
- version = "Vista";
10756
- else if (userAgent.indexOf("Windows NT 5.1") > -1)
10757
- version = "XP";
10758
- else if (userAgent.indexOf("Windows NT 5.0") > -1)
10759
- version = "2000";
10662
+ if (userAgent.indexOf("Windows NT 10.0") > -1) version = "10";
10663
+ else if (userAgent.indexOf("Windows NT 6.3") > -1) version = "8.1";
10664
+ else if (userAgent.indexOf("Windows NT 6.2") > -1) version = "8";
10665
+ else if (userAgent.indexOf("Windows NT 6.1") > -1) version = "7";
10666
+ else if (userAgent.indexOf("Windows NT 6.0") > -1) version = "Vista";
10667
+ else if (userAgent.indexOf("Windows NT 5.1") > -1) version = "XP";
10668
+ else if (userAgent.indexOf("Windows NT 5.0") > -1) version = "2000";
10760
10669
  break;
10761
10670
  case "Android":
10762
10671
  if (userAgent.match(/Android (\d+)\.?(\d+)?/)) {
@@ -10814,7 +10723,7 @@ const setPassportPrefix = (url, method) => {
10814
10723
  return url;
10815
10724
  };
10816
10725
  const proxyService = (params, customConfigs) => {
10817
- const service = axios$1.create({
10726
+ const service = axios.create({
10818
10727
  baseURL: layoutConfig$3.VITE_API_HOST,
10819
10728
  timeout: (customConfigs == null ? void 0 : customConfigs.customTimeout) || 3e4,
10820
10729
  withCredentials: true
@@ -10851,6 +10760,7 @@ const proxyService = (params, customConfigs) => {
10851
10760
  },
10852
10761
  async (error) => {
10853
10762
  const { response } = error;
10763
+ const { config } = response || {};
10854
10764
  if (response) {
10855
10765
  const errData = response.data;
10856
10766
  errData.http_status = response.status;
@@ -10978,8 +10888,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
10978
10888
  npsPopVisible.value = nps_global.expire && nps_global.expire < Date.now();
10979
10889
  }
10980
10890
  const swTab = (item) => {
10981
- if (rateNow.value === null && item.index === 1)
10982
- return;
10891
+ if (rateNow.value === null && item.index === 1) return;
10983
10892
  NPSOffsetOptions.crossAxis = item.offset_x;
10984
10893
  opinionStep.value = item.index;
10985
10894
  window.dispatchEvent(new Event("resize"));
@@ -11321,9 +11230,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
11321
11230
  };
11322
11231
  }
11323
11232
  });
11324
- const index_vue_vue_type_style_index_0_scoped_1ef34c7b_lang = "";
11325
- const index_vue_vue_type_style_index_1_lang$3 = "";
11326
- const ToolsFloat = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-1ef34c7b"]]);
11233
+ const ToolsFloat = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-gitcode-layout-lib"]]);
11327
11234
  function usePopup(className, rootElement) {
11328
11235
  const root2 = rootElement || document.getElementById("app");
11329
11236
  let cacheClass = "popup-container";
@@ -11437,8 +11344,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
11437
11344
  };
11438
11345
  }
11439
11346
  });
11440
- const index_vue_vue_type_style_index_0_scoped_c4346995_lang = "";
11441
- const GLink = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-c4346995"]]);
11347
+ const GLink = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-gitcode-layout-lib"]]);
11442
11348
  const black = {
11443
11349
  "theme-stress-text": "#f0f6fc",
11444
11350
  "theme-text": "#D2D8E4",
@@ -11880,8 +11786,7 @@ class Theme {
11880
11786
  }
11881
11787
  applyTheme() {
11882
11788
  const isAutoTheme = this.getIsAutoTheme();
11883
- if (!isAutoTheme)
11884
- return;
11789
+ if (!isAutoTheme) return;
11885
11790
  if (this.darkModeMediaQuery.matches) {
11886
11791
  console.log("dark");
11887
11792
  setTheme(ThemeType.BLACK);
@@ -11944,7 +11849,7 @@ const usePageResize = () => {
11944
11849
  });
11945
11850
  return { widthType, width, widthConfig, isMobile };
11946
11851
  };
11947
- const _imports_0 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQuMDAwMDAwIiBoZWlnaHQ9IjI0LjAwMDAwMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KCTxkZXNjPgoJCQlDcmVhdGVkIHdpdGggUGl4c28uCgk8L2Rlc2M+Cgk8ZGVmcy8+Cgk8ZyBvcGFjaXR5PSIwLjYwMDAwMCI+CgkJPHBhdGggaWQ9IlZlY3RvciIgZD0iTTIyIDEzLjg5QzIyIDExLjgyIDIwLjcyIDEwLjAxIDE4LjgxIDkuMkMxOS4wOCAxMC4xIDE5LjI3IDExIDE5LjI3IDExLjkxQzE5LjI3IDE0LjcgMTggMTcuMjMgMTUuOSAxOC44NkMxNi4xOCAxOC45NSAxNi41NCAxOC45NSAxNi45IDE4Ljk1QzE3LjU0IDE4Ljk1IDIwLjI3IDE5LjA0IDIxLjM2IDE5LjEzQzIxLjU0IDE5LjEzIDIxLjYzIDE4Ljk1IDIxLjU0IDE4Ljc3QzIxLjA4IDE4LjQxIDIwLjQ1IDE3LjU5IDIwLjcyIDE3LjIzQzIxLjU0IDE2LjMzIDIyIDE1LjE2IDIyIDEzLjg5TDIyIDEzLjg5WiIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1vcGFjaXR5PSIxLjAwMDAwMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cgk8L2c+Cgk8cGF0aCBpZD0i5YeP5Y676aG25bGCIiBkPSJNMTAuMTgxNiAzLjg3NUM1LjYzNjcyIDMuODc1IDIgNy40ODYwOCAyIDExLjkwOTdDMiAxMy45ODYxIDIuNzI2NTYgMTUuNzkxNiA0IDE3LjIzNjFDNC4zNjMyOCAxNy42ODc1IDQgMTguNTkwMyAzLjU0NDkyIDE5LjMxMjVDMy4zNjMyOCAxOS42NzM2IDMuNTQ0OTIgMjAuMTI1IDQgMjAuMTI1QzUuNzI2NTYgMjAuMTI1IDkuMTgxNjQgMjAuMDM0NyAxMC4xODE2IDIwLjAzNDdDMTQuNzI2NiAyMC4wMzQ3IDE4LjM2MzMgMTYuNDIzNiAxOC4zNjMzIDExLjkwOTdDMTguMzYzMyA3LjQ4NjA4IDE0LjcyNjYgMy44NzUgMTAuMTgxNiAzLjg3NVpNMTEuOTc0NiAxNS4xNDI3TDEwLjU3NjIgOS41OTIwNEMxMC41MjM0IDkuMzgzMDYgMTAuNDAyMyA5LjE5NzUxIDEwLjIzMjQgOS4wNjQ5NEMxMC4wNjA1IDguOTMyMjUgOS44NDk2MSA4Ljg2MDM1IDkuNjMyODEgOC44NjAyM0w3LjY4NTU1IDguODYwMjNDNy40Njg3NSA4Ljg2MDM1IDcuMjU3ODEgOC45MzIyNSA3LjA4NTk0IDkuMDY0OTRDNi45MTYwMiA5LjE5NzUxIDYuNzk0OTIgOS4zODMwNiA2Ljc0MjE5IDkuNTkyMDRMNS4zNDM3NSAxNS4xNDI3TDcuMzUxNTYgMTUuMTQyN0w3LjU5Mzc1IDE0LjE3Nkw5LjcyNDYxIDE0LjE3Nkw5Ljk2NjggMTUuMTQyN0wxMS45NzQ2IDE1LjE0MjdaTTE0Ljk4NjMgOC44NjAzNUwxNC45ODYzIDE1LjE0MzdMMTMuMDQxIDE1LjE0MzdMMTMuMDQxIDguODYwMzVMMTQuOTg2MyA4Ljg2MDM1Wk04LjQ0NTMxIDEwLjc5MzFMOC44NzMwNSAxMC43OTMxTDkuMjM4MjggMTIuMjQzTDguMDgwMDggMTIuMjQzTDguNDQ1MzEgMTAuNzkzMVoiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1vcGFjaXR5PSIxLjAwMDAwMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=";
11852
+ const _imports_0 = "data:image/svg+xml,%3csvg%20width='24.000000'%20height='24.000000'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdesc%3e%20Created%20with%20Pixso.%20%3c/desc%3e%3cdefs/%3e%3cg%20opacity='0.600000'%3e%3cpath%20id='Vector'%20d='M22%2013.89C22%2011.82%2020.72%2010.01%2018.81%209.2C19.08%2010.1%2019.27%2011%2019.27%2011.91C19.27%2014.7%2018%2017.23%2015.9%2018.86C16.18%2018.95%2016.54%2018.95%2016.9%2018.95C17.54%2018.95%2020.27%2019.04%2021.36%2019.13C21.54%2019.13%2021.63%2018.95%2021.54%2018.77C21.08%2018.41%2020.45%2017.59%2020.72%2017.23C21.54%2016.33%2022%2015.16%2022%2013.89L22%2013.89Z'%20fill='%23FFFFFF'%20fill-opacity='1.000000'%20fill-rule='evenodd'/%3e%3c/g%3e%3cpath%20id='减去顶层'%20d='M10.1816%203.875C5.63672%203.875%202%207.48608%202%2011.9097C2%2013.9861%202.72656%2015.7916%204%2017.2361C4.36328%2017.6875%204%2018.5903%203.54492%2019.3125C3.36328%2019.6736%203.54492%2020.125%204%2020.125C5.72656%2020.125%209.18164%2020.0347%2010.1816%2020.0347C14.7266%2020.0347%2018.3633%2016.4236%2018.3633%2011.9097C18.3633%207.48608%2014.7266%203.875%2010.1816%203.875ZM11.9746%2015.1427L10.5762%209.59204C10.5234%209.38306%2010.4023%209.19751%2010.2324%209.06494C10.0605%208.93225%209.84961%208.86035%209.63281%208.86023L7.68555%208.86023C7.46875%208.86035%207.25781%208.93225%207.08594%209.06494C6.91602%209.19751%206.79492%209.38306%206.74219%209.59204L5.34375%2015.1427L7.35156%2015.1427L7.59375%2014.176L9.72461%2014.176L9.9668%2015.1427L11.9746%2015.1427ZM14.9863%208.86035L14.9863%2015.1437L13.041%2015.1437L13.041%208.86035L14.9863%208.86035ZM8.44531%2010.7931L8.87305%2010.7931L9.23828%2012.243L8.08008%2012.243L8.44531%2010.7931Z'%20clip-rule='evenodd'%20fill='%23FFFFFF'%20fill-opacity='1.000000'%20fill-rule='evenodd'/%3e%3c/svg%3e";
11948
11853
  const _imports_1 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAYAAACohjseAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAmsSURBVHgB7VpdbxxnFT7nfccmRam6/gXZXIBy1y3qRe8YR6kUoUpdbhACJNtShFJUSCyBBFd2I1ClAoklVAE32BYXRAJqIwEyUOrNL4h70dtm+wvqNG7deGbe03PO+7Gzlr27/kpzsSeazO5kZvZ95jnnOR8TgLGNbWxjG9vYDjWEp8zyNjUg22lBiS1TuOeNo5YFbBgyTUMAFgz4PXYnDEzf3XimO+h+GTwFls9S43G5O2NLaLtqp2VKaJiSCB0yGEQEJAHFIMkwKXxMjl8AopwvXxl07y8V4EvXdnMo3cye+6xtK3jOVISmYCAlb/KZgTBT4Pd8TD+TfGegiApyiH0pAF+6vpvzOhegoNxUvNiSwZS88II32VcAniVhTIAya6AgeS9/AK0AFXKH2BMFmN+kxqfF4wVXwA0snQdUgQcXtwoFgLJk/T6xqG7Kx2w4xi5Mw37ziQF88fXd/NHe58scZxfYBdGzBQkYFkxVpSBQAXkXZJC8CYMUXTQCxZEU0sATsG/c+PwOL3/TVnhBY0vYqyABk7jjGJSnvc0L72qMeQaxB8gIWGGPgtjw+fRw2G+fKYMv/nQ3dwUuG2VNGfPMCagYd+yiWFGXH8Dcfzae7cRr2y/vzHJKuM3gGh4cX+tUXKAHHLvD1nDqAFuLnMc+ezyLlXnVFS5XN4ziUQpbAgySqGAF3Qmqpjc2prr1+6z/7/zK917e2XJg70eXtMFtmT3vtkDbw9ZzKon+0pvUnHhc5FTiDC+a8xg1AqAeuCIATIqpqUCUcva/G+dXD7v39y/v3WGtvGlDHhT2VGD4+zkwU0sdHAjyWAxeukPN0rk2L/J5jp0c98omRcGoakCKnoik3BZFpRQmDHz1XPGPQb9ljemgo5uqrME1hRWpZIaBOzLA5u+paQtYLsX1Ks8ABpZEJDAy0wcuuWUQFU0FZFBiCmh9fWrgIvmah2iikqJPH8j3Q3h/lDWPrKLNt9n1CrrP+csn5+hyhVN2cE/VkIL7UQIXXJKBkX8QoTLhLeNE/cqVR/nABRpq8oNgl/R50fKDsfp0cG2UdY8EsLnMMVXBGi/4OSvMFE4XbXnxtopMyTEXlNFFEQmqGR6IVigQVVBSAWQ2mxn023zWgj4MERjJg6wslv3OTMC9UdY+EsDsISx4qYeecIgCMns+j0VBCUAkaSc2fcxZ513MahaLUs/XOJz5zpXdhf2/eZO7imt5cYfBNbkk89UN/2Wt7jtLG8NThD6gYSc0WVAy5x54twzMiEDsOS8a+/KaFXctqFah+PhM8aN1pCFflYSqhUQMcIvBrPDnh/xvF9glZxUcqKCw2PBemBOA6OZ+/e9sBUawoQC/dts9QGEvyb1DDyLGmcP+dKAu7MWHY9CD6wGJUh9rTHG/UHv6mtMBxHNDyabgBJjN+GEZ7L71L3MRRrSBKvr13xJX/K5py6CWQe49uAgUA9CacqrCgiRxBReSMwYwmBbv/PFQY1I6FyXeQu3JMafgdOPjhlbhCHYoQMl1VLhFLFMq6CXp0ss+ps91Nw0PoFIgqXAOe5V7jF2BB5diUhllcCgs8lkh5lBc0wOELv/CCpwGQCroDvbnsH4gyhz0qpJ6T1ehFxBfYlESlBqbsWnt6xS0BZIYkwTvgSX2BCSz98t3TBeOYAfG4KU3ixwcbpr9zNVbnCIJSmSOcE/Usq8TT66Zvke2yAMSN62XXypE/CVL4CiIC3Z/9ffRYw8GMUgOb2S9uDuIuRCLdRfl4YmLAKJi1kQDtFHt7+sAUroQcJzEGQhhxh8YEMeegGOWeZ9N4DQcww4EyMm8lUQlxlMCF5SzSK7pK5Z6zGm+gygUDLWW96AmJnXBAc+c5jmvmOgFRkYT8Mbi3dHy3n47MNEjuG/bgrZToSzlWFBOTfBclmEsrKtQRGs745N4HDlEoKl/A8+irXUF0uvptfyFFRJqiklh3731N7sIx7QDGfxgcXKr9fPdF0xpZpjJpq14CZXTeQlUjmeU1LAFflNd1Lugd0+o5bveyCG5pSWsl2qQ4s5qKsAAKqgmPzQ+MTPuDTiBHbsfnH7lExlB5LXRQm3EkJJ5YJFrVj8Ng16CD6ADY3W19PUmCeDuwl+OLix1O/ZMxpbY6WND48r/8SoJyT2TgjrwM5U4ejBQT+ReVEL8yT7LTsae2LFHFnzhPaxJvwmioi2NqqKh9AB6M03vxj7PxdoSA3PskqKerJiqoPJvpgMntJEYlPcFl9uP1vJv8TuDYBs8IGK366TOoDfew1ploqzG2EsTamFuXxKXOLS6MThR0Azu/WLleMpZt6EM6ssQ+HQTKmhxLPFnSPkoq9w8w7kfhAXrc0uLWC/HQicuSokQSi8VFE0DNpRk1gNX0BO4DqdgZhRwnAZakhZ4LfnVq70OnCdfW8aZeY0pCnNLrSf9GyDjAjBhTjvx0BHYmkpmQWgyVKDqnpnQX440kjg2wDo4yYVZSuDY14G/8+65JSbjlk/aRgXEhpFEHL2r+5rohqjllzKVEZhYivETUbCBwZ/9YaIDZwkQYIcHtk7BCQvowhgdcLZ9ld8K1ezuu88sctjMsQt/JC6JFAe0Rl2Vi2Sf2zxbJHspx2RLzPnc5/OhwQ6ckh0K0Mo7uirlLazFklQvy9+9utusn//n9yZXVt+bvIhEcxnRvfSiJDSrPgWI/OsGsQyzNbeMdSczuwVnDfD//3x2+vxXqqmswhdSJ06hM+BRAlRm8wdXuOvYZ3/qTK78sZNNy1CWF7uqOU3Z8e6X1DMd90OkkOxD/JmRBkonAigmM0t+yg27r8XxsQVNbjs2Zy/vLV87AKgMZTNrHphepRJryyQq3j1DUpcyLdNOovvjpdNR0KEAxfg3W2mkUJuraCog7Q1moMLNH+buw+t5P1BTYybLVDUpxCKpm6ZeT87V7kEGSieuXo4EkJ/zq71SLPV2aHsvJH1sAl3k5JD33TxUK6FhpSyopWctdQuh7lT3nH/t9mjTslFtaKKX/+Vgomv29pReK8euHczK2x1c7Lv5pNOXzCE1qFJpM5tRck3f97FqUjn/o99Mnpq4jASwnX/cCFVJlxN6B8m9n7lJjo9ShrGbCSgquLn91xumS1XReLc0me/5bOr54GNm+dbrS2YJzsgGAlzvTG2323Txr+v9b3Gu57vgaBJC4bx6EDi9eVZ9pNWo1pYI/eCwU1mc+8nSyevNQXbsfvC13K2xi24fBk5scZYaWUUfcgxOxZqT43Cbg3d+/nenG2uH2Zn/T6e3ZvdarCJrIjA8w181k9nS/NLw93pjG9vYxja2p8G+ADz7MtW/3lU1AAAAAElFTkSuQmCC";
11949
11854
  const _sfc_main$x = /* @__PURE__ */ defineComponent({
11950
11855
  ...{
@@ -11987,14 +11892,12 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
11987
11892
  };
11988
11893
  }
11989
11894
  });
11990
- const index_vue_vue_type_style_index_0_lang$1 = "";
11991
11895
  var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
11992
11896
  function getDefaultExportFromCjs(x) {
11993
11897
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
11994
11898
  }
11995
11899
  function getAugmentedNamespace(n) {
11996
- if (n.__esModule)
11997
- return n;
11900
+ if (n.__esModule) return n;
11998
11901
  var f = n.default;
11999
11902
  if (typeof f == "function") {
12000
11903
  var a = function a2() {
@@ -12004,8 +11907,7 @@ function getAugmentedNamespace(n) {
12004
11907
  return f.apply(this, arguments);
12005
11908
  };
12006
11909
  a.prototype = f.prototype;
12007
- } else
12008
- a = {};
11910
+ } else a = {};
12009
11911
  Object.defineProperty(a, "__esModule", { value: true });
12010
11912
  Object.keys(n).forEach(function(k) {
12011
11913
  var d = Object.getOwnPropertyDescriptor(n, k);
@@ -12031,8 +11933,7 @@ const __viteBrowserExternal$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Ob
12031
11933
  const require$$0 = /* @__PURE__ */ getAugmentedNamespace(__viteBrowserExternal$1);
12032
11934
  var hasRequiredCore;
12033
11935
  function requireCore() {
12034
- if (hasRequiredCore)
12035
- return core.exports;
11936
+ if (hasRequiredCore) return core.exports;
12036
11937
  hasRequiredCore = 1;
12037
11938
  (function(module, exports) {
12038
11939
  (function(root2, factory) {
@@ -12080,7 +11981,7 @@ function requireCore() {
12080
11981
  }
12081
11982
  throw new Error("Native crypto module could not be used to get secure random number.");
12082
11983
  };
12083
- var create2 = Object.create || function() {
11984
+ var create2 = Object.create || /* @__PURE__ */ function() {
12084
11985
  function F() {
12085
11986
  }
12086
11987
  return function(obj) {
@@ -12093,7 +11994,7 @@ function requireCore() {
12093
11994
  }();
12094
11995
  var C = {};
12095
11996
  var C_lib = C.lib = {};
12096
- var Base = C_lib.Base = function() {
11997
+ var Base = C_lib.Base = /* @__PURE__ */ function() {
12097
11998
  return {
12098
11999
  /**
12099
12000
  * Creates a new object that inherits from this object.
@@ -12639,8 +12540,7 @@ function requireCore() {
12639
12540
  var encBase64 = { exports: {} };
12640
12541
  var hasRequiredEncBase64;
12641
12542
  function requireEncBase64() {
12642
- if (hasRequiredEncBase64)
12643
- return encBase64.exports;
12543
+ if (hasRequiredEncBase64) return encBase64.exports;
12644
12544
  hasRequiredEncBase64 = 1;
12645
12545
  (function(module, exports) {
12646
12546
  (function(root2, factory) {
@@ -12747,8 +12647,7 @@ function requireEncBase64() {
12747
12647
  var md5 = { exports: {} };
12748
12648
  var hasRequiredMd5;
12749
12649
  function requireMd5() {
12750
- if (hasRequiredMd5)
12751
- return md5.exports;
12650
+ if (hasRequiredMd5) return md5.exports;
12752
12651
  hasRequiredMd5 = 1;
12753
12652
  (function(module, exports) {
12754
12653
  (function(root2, factory) {
@@ -12927,8 +12826,7 @@ var evpkdf = { exports: {} };
12927
12826
  var sha1 = { exports: {} };
12928
12827
  var hasRequiredSha1;
12929
12828
  function requireSha1() {
12930
- if (hasRequiredSha1)
12931
- return sha1.exports;
12829
+ if (hasRequiredSha1) return sha1.exports;
12932
12830
  hasRequiredSha1 = 1;
12933
12831
  (function(module, exports) {
12934
12832
  (function(root2, factory) {
@@ -13018,8 +12916,7 @@ function requireSha1() {
13018
12916
  var hmac = { exports: {} };
13019
12917
  var hasRequiredHmac;
13020
12918
  function requireHmac() {
13021
- if (hasRequiredHmac)
13022
- return hmac.exports;
12919
+ if (hasRequiredHmac) return hmac.exports;
13023
12920
  hasRequiredHmac = 1;
13024
12921
  (function(module, exports) {
13025
12922
  (function(root2, factory) {
@@ -13124,8 +13021,7 @@ function requireHmac() {
13124
13021
  }
13125
13022
  var hasRequiredEvpkdf;
13126
13023
  function requireEvpkdf() {
13127
- if (hasRequiredEvpkdf)
13128
- return evpkdf.exports;
13024
+ if (hasRequiredEvpkdf) return evpkdf.exports;
13129
13025
  hasRequiredEvpkdf = 1;
13130
13026
  (function(module, exports) {
13131
13027
  (function(root2, factory, undef) {
@@ -13215,8 +13111,7 @@ function requireEvpkdf() {
13215
13111
  var cipherCore = { exports: {} };
13216
13112
  var hasRequiredCipherCore;
13217
13113
  function requireCipherCore() {
13218
- if (hasRequiredCipherCore)
13219
- return cipherCore.exports;
13114
+ if (hasRequiredCipherCore) return cipherCore.exports;
13220
13115
  hasRequiredCipherCore = 1;
13221
13116
  (function(module, exports) {
13222
13117
  (function(root2, factory, undef) {
@@ -13358,7 +13253,7 @@ function requireCipherCore() {
13358
13253
  *
13359
13254
  * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES);
13360
13255
  */
13361
- _createHelper: function() {
13256
+ _createHelper: /* @__PURE__ */ function() {
13362
13257
  function selectCipherStrategy(key) {
13363
13258
  if (typeof key == "string") {
13364
13259
  return PasswordBasedCipher;
@@ -14529,9 +14424,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
14529
14424
  };
14530
14425
  }
14531
14426
  });
14532
- const AiHubMenus_vue_vue_type_style_index_0_scoped_b21e73c1_lang = "";
14533
- const AiHubMenus_vue_vue_type_style_index_1_lang = "";
14534
- const AiHubMenus = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-b21e73c1"]]);
14427
+ const AiHubMenus = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-gitcode-layout-lib"]]);
14535
14428
  const _hoisted_1$q = ["src"];
14536
14429
  const _sfc_main$v = /* @__PURE__ */ defineComponent({
14537
14430
  ...{ name: "FlashTag" },
@@ -14586,7 +14479,6 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
14586
14479
  };
14587
14480
  }
14588
14481
  });
14589
- const FlashTag_vue_vue_type_style_index_0_lang = "";
14590
14482
  function listCacheClear$1() {
14591
14483
  this.__data__ = [];
14592
14484
  this.size = 0;
@@ -15040,7 +14932,7 @@ var baseIsArguments = _baseIsArguments, isObjectLike$5 = isObjectLike_1;
15040
14932
  var objectProto$6 = Object.prototype;
15041
14933
  var hasOwnProperty$4 = objectProto$6.hasOwnProperty;
15042
14934
  var propertyIsEnumerable$1 = objectProto$6.propertyIsEnumerable;
15043
- var isArguments$1 = baseIsArguments(function() {
14935
+ var isArguments$1 = baseIsArguments(/* @__PURE__ */ function() {
15044
14936
  return arguments;
15045
14937
  }()) ? baseIsArguments : function(value) {
15046
14938
  return isObjectLike$5(value) && hasOwnProperty$4.call(value, "callee") && !propertyIsEnumerable$1.call(value, "callee");
@@ -15447,7 +15339,7 @@ function initCloneByTag$1(object, tag, isDeep) {
15447
15339
  var _initCloneByTag = initCloneByTag$1;
15448
15340
  var isObject$4 = isObject_1;
15449
15341
  var objectCreate = Object.create;
15450
- var baseCreate$1 = function() {
15342
+ var baseCreate$1 = /* @__PURE__ */ function() {
15451
15343
  function object() {
15452
15344
  }
15453
15345
  return function(proto2) {
@@ -15627,8 +15519,7 @@ var relativeTime$1 = { exports: {} };
15627
15519
  break;
15628
15520
  }
15629
15521
  }
15630
- if (n2)
15631
- return a;
15522
+ if (n2) return a;
15632
15523
  var M2 = s ? l.future : l.past;
15633
15524
  return "function" == typeof M2 ? M2(a) : M2.replace("%s", a);
15634
15525
  }, n.to = function(r2, e2) {
@@ -15684,8 +15575,7 @@ const en = {
15684
15575
  };
15685
15576
  var padStart = function padStart2(string, length, pad) {
15686
15577
  var s = String(string);
15687
- if (!s || s.length >= length)
15688
- return string;
15578
+ if (!s || s.length >= length) return string;
15689
15579
  return "" + Array(length + 1 - s.length).join(pad) + string;
15690
15580
  };
15691
15581
  var padZoneStr = function padZoneStr2(instance) {
@@ -15696,8 +15586,7 @@ var padZoneStr = function padZoneStr2(instance) {
15696
15586
  return (negMinutes <= 0 ? "+" : "-") + padStart(hourOffset, 2, "0") + ":" + padStart(minuteOffset, 2, "0");
15697
15587
  };
15698
15588
  var monthDiff = function monthDiff2(a, b) {
15699
- if (a.date() < b.date())
15700
- return -monthDiff2(b, a);
15589
+ if (a.date() < b.date()) return -monthDiff2(b, a);
15701
15590
  var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month());
15702
15591
  var anchor = a.clone().add(wholeMonthDiff, M);
15703
15592
  var c = b - anchor < 0;
@@ -15742,8 +15631,7 @@ var isDayjs = function isDayjs2(d) {
15742
15631
  };
15743
15632
  var parseLocale = function parseLocale2(preset, object, isLocal) {
15744
15633
  var l;
15745
- if (!preset)
15746
- return L;
15634
+ if (!preset) return L;
15747
15635
  if (typeof preset === "string") {
15748
15636
  var presetLower = preset.toLowerCase();
15749
15637
  if (Ls[presetLower]) {
@@ -15762,8 +15650,7 @@ var parseLocale = function parseLocale2(preset, object, isLocal) {
15762
15650
  Ls[name] = preset;
15763
15651
  l = name;
15764
15652
  }
15765
- if (!isLocal && l)
15766
- L = l;
15653
+ if (!isLocal && l) L = l;
15767
15654
  return l || !isLocal && L;
15768
15655
  };
15769
15656
  var dayjs = function dayjs2(date, c) {
@@ -15790,12 +15677,9 @@ Utils.i = isDayjs;
15790
15677
  Utils.w = wrapper;
15791
15678
  var parseDate = function parseDate2(cfg) {
15792
15679
  var date = cfg.date, utc2 = cfg.utc;
15793
- if (date === null)
15794
- return /* @__PURE__ */ new Date(NaN);
15795
- if (Utils.u(date))
15796
- return /* @__PURE__ */ new Date();
15797
- if (date instanceof Date)
15798
- return new Date(date);
15680
+ if (date === null) return /* @__PURE__ */ new Date(NaN);
15681
+ if (Utils.u(date)) return /* @__PURE__ */ new Date();
15682
+ if (date instanceof Date) return new Date(date);
15799
15683
  if (typeof date === "string" && !/Z$/i.test(date)) {
15800
15684
  var d = date.match(REGEX_PARSE);
15801
15685
  if (d) {
@@ -15849,8 +15733,7 @@ var Dayjs = /* @__PURE__ */ function() {
15849
15733
  return this.endOf(units) < dayjs(that);
15850
15734
  };
15851
15735
  _proto.$g = function $g(input, get, set) {
15852
- if (Utils.u(input))
15853
- return this[get];
15736
+ if (Utils.u(input)) return this[get];
15854
15737
  return this.set(set, input);
15855
15738
  };
15856
15739
  _proto.unix = function unix() {
@@ -15915,8 +15798,7 @@ var Dayjs = /* @__PURE__ */ function() {
15915
15798
  date.$d[name](arg);
15916
15799
  date.init();
15917
15800
  this.$d = date.set(DATE, Math.min(this.$D, date.daysInMonth())).$d;
15918
- } else if (name)
15919
- this.$d[name](arg);
15801
+ } else if (name) this.$d[name](arg);
15920
15802
  this.init();
15921
15803
  return this;
15922
15804
  };
@@ -15956,8 +15838,7 @@ var Dayjs = /* @__PURE__ */ function() {
15956
15838
  _proto.format = function format2(formatStr) {
15957
15839
  var _this3 = this;
15958
15840
  var locale2 = this.$locale();
15959
- if (!this.isValid())
15960
- return locale2.invalidDate || INVALID_DATE_STRING;
15841
+ if (!this.isValid()) return locale2.invalidDate || INVALID_DATE_STRING;
15961
15842
  var str = formatStr || FORMAT_DEFAULT;
15962
15843
  var zoneStr = Utils.z(this);
15963
15844
  var $H = this.$H, $m = this.$m, $M = this.$M;
@@ -16080,12 +15961,10 @@ var Dayjs = /* @__PURE__ */ function() {
16080
15961
  return Ls[this.$L];
16081
15962
  };
16082
15963
  _proto.locale = function locale2(preset, object) {
16083
- if (!preset)
16084
- return this.$L;
15964
+ if (!preset) return this.$L;
16085
15965
  var that = this.clone();
16086
15966
  var nextLocaleName = parseLocale(preset, object, true);
16087
- if (nextLocaleName)
16088
- that.$L = nextLocaleName;
15967
+ if (nextLocaleName) that.$L = nextLocaleName;
16089
15968
  return that;
16090
15969
  };
16091
15970
  _proto.clone = function clone2() {
@@ -16214,8 +16093,7 @@ var timezone = { exports: {} };
16214
16093
  f.tz = function(t3, e2) {
16215
16094
  void 0 === t3 && (t3 = r);
16216
16095
  var n2, i2 = this.utcOffset(), a2 = this.toDate(), u2 = a2.toLocaleString("en-US", { timeZone: t3 }), f2 = Math.round((a2 - new Date(u2)) / 1e3 / 60), s2 = 15 * -Math.round(a2.getTimezoneOffset() / 15) - f2;
16217
- if (!Number(s2))
16218
- n2 = this.utcOffset(0, e2);
16096
+ if (!Number(s2)) n2 = this.utcOffset(0, e2);
16219
16097
  else if (n2 = o(u2, { locale: this.$L }).$set("millisecond", this.$ms).utcOffset(s2, true), e2) {
16220
16098
  var m = n2.utcOffset();
16221
16099
  n2 = n2.add(i2 - m, "minute");
@@ -16229,18 +16107,15 @@ var timezone = { exports: {} };
16229
16107
  };
16230
16108
  var s = f.startOf;
16231
16109
  f.startOf = function(t3, e2) {
16232
- if (!this.$x || !this.$x.$timezone)
16233
- return s.call(this, t3, e2);
16110
+ if (!this.$x || !this.$x.$timezone) return s.call(this, t3, e2);
16234
16111
  var n2 = o(this.format("YYYY-MM-DD HH:mm:ss:SSS"), { locale: this.$L });
16235
16112
  return s.call(n2, t3, e2).tz(this.$x.$timezone, true);
16236
16113
  }, o.tz = function(t3, e2, n2) {
16237
16114
  var i2 = n2 && e2, a2 = n2 || e2 || r, f2 = u(+o(), a2);
16238
- if ("string" != typeof t3)
16239
- return o(t3).tz(a2);
16115
+ if ("string" != typeof t3) return o(t3).tz(a2);
16240
16116
  var s2 = function(t4, e3, n3) {
16241
16117
  var i3 = t4 - 60 * e3 * 1e3, o2 = u(i3, n3);
16242
- if (e3 === o2)
16243
- return [i3, e3];
16118
+ if (e3 === o2) return [i3, e3];
16244
16119
  var r2 = u(i3 -= 60 * (o2 - e3) * 1e3, n3);
16245
16120
  return o2 === r2 ? [i3, o2] : [t4 - 60 * Math.min(o2, r2) * 1e3, Math.max(o2, r2)];
16246
16121
  }(o.utc(t3, i2).valueOf(), f2, a2), m = s2[0], c = s2[1], d = o(m).utcOffset(c);
@@ -16281,31 +16156,25 @@ var utc$1 = { exports: {} };
16281
16156
  if (this.$u) {
16282
16157
  var t3 = this.$d;
16283
16158
  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();
16284
- } else
16285
- r.call(this);
16159
+ } else r.call(this);
16286
16160
  };
16287
16161
  var a = u.utcOffset;
16288
16162
  u.utcOffset = function(s2, f2) {
16289
16163
  var n2 = this.$utils().u;
16290
- if (n2(s2))
16291
- return this.$u ? 0 : n2(this.$offset) ? a.call(this) : this.$offset;
16164
+ if (n2(s2)) return this.$u ? 0 : n2(this.$offset) ? a.call(this) : this.$offset;
16292
16165
  if ("string" == typeof s2 && (s2 = function(t3) {
16293
16166
  void 0 === t3 && (t3 = "");
16294
16167
  var s3 = t3.match(i);
16295
- if (!s3)
16296
- return null;
16168
+ if (!s3) return null;
16297
16169
  var f3 = ("" + s3[0]).match(e) || ["-", 0, 0], n3 = f3[0], u3 = 60 * +f3[1] + +f3[2];
16298
16170
  return 0 === u3 ? 0 : "+" === n3 ? u3 : -u3;
16299
- }(s2), null === s2))
16300
- return this;
16171
+ }(s2), null === s2)) return this;
16301
16172
  var u2 = Math.abs(s2) <= 16 ? 60 * s2 : s2, o2 = this;
16302
- if (f2)
16303
- return o2.$offset = u2, o2.$u = 0 === s2, o2;
16173
+ if (f2) return o2.$offset = u2, o2.$u = 0 === s2, o2;
16304
16174
  if (0 !== s2) {
16305
16175
  var r2 = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
16306
16176
  (o2 = this.local().add(u2 + r2, t2)).$offset = u2, o2.$x.$localOffset = r2;
16307
- } else
16308
- o2 = this.utc();
16177
+ } else o2 = this.utc();
16309
16178
  return o2;
16310
16179
  };
16311
16180
  var h2 = u.format;
@@ -16328,8 +16197,7 @@ var utc$1 = { exports: {} };
16328
16197
  };
16329
16198
  var c = u.diff;
16330
16199
  u.diff = function(t3, i2, e2) {
16331
- if (t3 && this.$u === t3.$u)
16332
- return c.call(this, t3, i2, e2);
16200
+ if (t3 && this.$u === t3.$u) return c.call(this, t3, i2, e2);
16333
16201
  var s2 = this.local(), f2 = n(t3).local();
16334
16202
  return c.call(s2, f2, i2, e2);
16335
16203
  };
@@ -16356,14 +16224,12 @@ dayjs$1.extend(utc);
16356
16224
  dayjs$1.tz.setDefault("Asia/Shanghai");
16357
16225
  const useTimeFormat = () => {
16358
16226
  const formatTimeFromNow = (time) => {
16359
- if (!time)
16360
- return "-";
16227
+ if (!time) return "-";
16361
16228
  const targetDate = isDate$1(time) ? time : new Date(time);
16362
16229
  return formatTimeDifference(targetDate);
16363
16230
  };
16364
16231
  const formatTime = (time, format2) => {
16365
- if (!time)
16366
- return "-";
16232
+ if (!time) return "-";
16367
16233
  return dayjs$1(time).format(format2);
16368
16234
  };
16369
16235
  return {
@@ -16464,8 +16330,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16464
16330
  const inAIHub = computed(() => aiHubSceneValue.includes(props.scene));
16465
16331
  const emits = __emit;
16466
16332
  const handleOrgFollow = (val) => {
16467
- if (props.scene !== SceneValue.org)
16468
- return;
16333
+ if (props.scene !== SceneValue.org) return;
16469
16334
  if (!props.isLogin) {
16470
16335
  emitEvent("login", { triggerType: "关注组织" });
16471
16336
  return;
@@ -16474,8 +16339,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16474
16339
  };
16475
16340
  const topicTag = computed(() => {
16476
16341
  var _a, _b;
16477
- if (props.scene !== SceneValue.repo)
16478
- return false;
16342
+ if (props.scene !== SceneValue.repo) return false;
16479
16343
  let repoType = 1;
16480
16344
  repoType = Number((_a = repoInfo.value) == null ? void 0 : _a.repo_type) - 1;
16481
16345
  if ((_b = props.repoProps) == null ? void 0 : _b.isSpaces) {
@@ -16506,10 +16370,8 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16506
16370
  return false;
16507
16371
  });
16508
16372
  const toAiHub = () => {
16509
- if (props.scene !== SceneValue.repo)
16510
- return;
16511
- if (!topicTag.value)
16512
- return;
16373
+ if (props.scene !== SceneValue.repo) return;
16374
+ if (!topicTag.value) return;
16513
16375
  const aiUrl = `${layoutConfig2.VITE_AI_HOST}${topicTag.value.linkUrl}`;
16514
16376
  if (typeof window !== "undefined" && window.location) {
16515
16377
  window.location.href = aiUrl;
@@ -16517,8 +16379,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16517
16379
  };
16518
16380
  const showTimeTopic = computed(() => {
16519
16381
  var _a, _b;
16520
- if (props.scene !== SceneValue.repo)
16521
- return false;
16382
+ if (props.scene !== SceneValue.repo) return false;
16522
16383
  if (!((_a = repoInfo.value) == null ? void 0 : _a.last_activity_at)) {
16523
16384
  return false;
16524
16385
  }
@@ -16533,8 +16394,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16533
16394
  return formatTimeFromNow((_a = repoInfo.value) == null ? void 0 : _a.last_activity_at);
16534
16395
  });
16535
16396
  const handleFollowUser = () => {
16536
- if (props.scene !== SceneValue.user)
16537
- return;
16397
+ if (props.scene !== SceneValue.user) return;
16538
16398
  emits("followUser");
16539
16399
  };
16540
16400
  return (_ctx, _cache) => {
@@ -16781,9 +16641,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
16781
16641
  };
16782
16642
  }
16783
16643
  });
16784
- const HeaderCustom_vue_vue_type_style_index_0_scoped_b1bd3db4_lang = "";
16785
- const HeaderCustom_vue_vue_type_style_index_1_lang = "";
16786
- const HeaderCustom = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-b1bd3db4"]]);
16644
+ const HeaderCustom = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-gitcode-layout-lib"]]);
16787
16645
  const logo = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANgAAAAkCAYAAADrcPSPAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAA8USURBVHgB7V1NbCRHFX6vemx+DmQWIgJc0j5kQ4RQvGeUeHyE2LteEJwixY4EydomthGIG7YvKEIRa7P2ZgEpHitXBLP2rpAipJ1NDjnaOUE2SG6iiEuQcASbLJ7pKt6r7p6p7unf8exidvuT2jPTXf26+lW9V6++et0GKFGixF0DQh84sGvVFsAUgnxSAtq0a9QQ6CiAQzp2dQis5ojTdKBEiQcUhQzsll2bBlDP0VbLfxY2AeT2aeetOpQo8YAhl4G9a9dotFIXybBs6B80somlx51mA0qUeECQamAcCrZBbSlQUzA4rJ123lyCe4SpRVWFdjeEBQmHjcu4DyXuK5ydd1eUwuXODiFndi9V6vA/hkg6QMZlt0DtDdi4GIvv2mN/gHuENhmXq9SNYFMoF6BEiXuEWAPzjevGMUPCRFC4OfWeXatBiRL3OXoMzGMIB2Fc2CRDSgwFFbg2lChxn6PHwNogl+OMCwGJnEAHUkATukOPNVQzp52b4xWw6sllLQdKlLjPUTF/EA0/qkAuxhVsAy49QWtaHNrROpft794/7TQTCQNaAzu8ZY81Y2h95zGn2YQTCE2KHIHtBmt7Ag4tchyNDXYcfcibVaOuIH1JqPJvS4BDWt9vrOFh4jkvKpvOqQW/6fr7ATGj5Zl1k+D0Q9rQfdoukz9+vYL7zKpbgqzB6ywiq596nQRUwj+Zik9HUcNwAWdIQUbIiU3eBwPC1LyquQjnwCX56HcWgjWEM9QgTiE5Si27LTVqyqFYlu4BYHJO8o+6NSRWs+Ryh5NHsKBQLbpAnY9kBHyty99bWl4TlNzevdzLdGnjQrUV/JaoVql+VarflmtGF1w31LIcVFgXw7CeabhDsABSTdN9eveI4fvMqltIXldntRAf3dUZ1UU1cunMrBuoHv0H9bIULg2CBT47qxYQZYddlkIc7l7CTHZ7ck59DRF+Tl8v7Gzg37PKd0JEj3QosoCcDzzqUbg4MgRCbxw6PjGA7A72cqRwzQxSoyxSAzPbWTO23GBlazneedXkksgd84DKL6fVi8uQca2ky2IjElvUYJlOjelnv352QhGbr0fX3eORKa6A7sCW2tO6Sq9Xp25p9zlBxwydJaHq62zv7BwnKMSDj+WsGzlTkpVSrzzgupO+1iTVLdjIkG9mnXduXn2dWPXfKameoM/ffntRfTnrnI6BKUhWAME5rlFwytSg0qZ0J8bMxs2FyVk1zcoucg53Zvbe0f26E3v1yurAprTFyQvuIgwGNnXmG3EHqAP31MubM1PIitDUn9GaJdwn6ww9B5IXVepf9W9Ru0UPsM74GBTQGderX52xMUfrTr9XdzcwMwGCRtJvCISHgP4oBV9pt+BXZxfUI2nnmCRHLakQjdLbcIJAnZjX0ToNojsKdRJBDRVs4HWebGDYG5IsCj/UEoUiZyjMHOFPatEZjHRADtd66mXBcrRe1BlWQ7IQz/sduguBy3oekwlVV4jjJOvU7qbAhLrZk3PhzjfhGYlt7pN0jzubguWM7G6Icf60XBzx7r8LIr2meqoR0Zm+H6qHvkfauI5xOrOwd7Qmw98KiwKnR2csC8P1yq+zLnxjDjlTNq6dDWslz/nXNvCKVPgKjbR0eeRB6Uvgyl+cf1F9MekcPQcjan60BdJOKOM87ry5AicE7D0hPA9piGE93yo8AZ6cb0/R+bYpa+eyOB9TlBu3ziEpdB2Rzd49mMjr0Qu4bh64o4ghHN9ZE06MrMbEvLuC3cyDqmxrcmkFEhDXEfy5yD5duylphOqST3iO/nQ6EkqwQ3MkMojrG1bPqN24gg4Z4xJ1HdOAQnqN6p+MYf3ahhUdTRz+QwbQkC1dr2DkqnH00SFsPJ3VutXSOjtDOou2pdY/6WyNdBYkClTdlpw27zMNfogcHsVJD3mNK8C1TfwljZ4tqdTzyOOTgkdcIVe/+UP1sz9ewg+j5bWBuXpNKilrKj8TxMnAZNXcuKFQwA9FdDiCIN8hX7bfN4uI3VCWGyTBIPKJAmRGtANrOH2SSx71PIVg/wx++969yd/dijsKqhsQkIdLJVmoU66QwY6Bb7A0zxqDxHrSfaZ0BDYMGrXWqWQwQtTYuyc6HQWjkFgv3d7NpOPUp86B6tbLqoiVpKJ8fTKoGZ43BftclDXwR0mTKdWiySGlOcoKXYsM9jnlGwlp+0nIAdaFHzrbwT5tzBXsq+/svmpdmpx1j6gvPqvoDyI+XJHyp5M/UC/v/gb/YZbVPUIlT565E+YKD4mOJyXKLc7SoM02N7rCqEeg0HyHOgEtBdy4ZT99cMt+ahoKAg3jVUquwjFAnbrbQAquZjFdfuM3O3WRaHfrhWanzUVRk/c3J9aJnZ6cVhMyQExdPbTjqNum1jBE5xfViTm5NznbnuZRWG9EjuQJudAcvaheWZEDj1ZmeGcaBQppPua0n0v/qDr9kciJGuSAe6TDUNu4lpNlzFnYvWz9WqF8jfSBUu8RD6th+dJ3l9TnzXIVv6LVpPGrEonJ4+CHmKNQDDbd6hYZ5hgxi7lpe2UM8ZY43mI1NXxVBd5YqM596jAIe+dYPRA04e1WzO4K7urMD00OYs9XoV/VlHr+DTLAneUs0eId/YiuPD5G4dW6EV55joqYQjdQQMv70NS6Yicir8bR9OSUqkbF3wm+9CTbhs7pfqc5zKnOfhCPBrKoTOceec6IKp6sUTl11pHFjCOG82mFwvNFlnCScG2jwkzrEXEeU1JJGsjgC/85ki88c+HwyvVXqzrSERkymPnLtPI7eQmFWKhpGs0yqWoGd9bQjkov81XoyrqzHEdA8sh/0sDzJJ4v5Sha1UseeglBHiTR/hpCFW930ymZu7EbehdA9oiL8qPoPr3wPyhYeiQn4xLa9BXCnduPPPRJcFiPYDRZc3gc6xdM4dP8a4YfxuRwE4vnMS7S+dtpWSEanyZDbsHAQMTBYeARpdlYAkKhYBKEUk6sXBVpeMyWdVz484zUDsdGRk5qrV2RixTSPuk7CDvlFLvd0oztmdijsuuglKQ+JLJDWVJ6p41RyY+UP/c3R7aKhEMygiYMALub1ho5CuYFap2dxACTvvaPO4pNzLdnlITv0dfbZMjU7cUHHw7DlbdX8E5QRhuYAPdQJpIc+UDGUaePevCbM/Lb4bi3ygm+FBYsxOU6Ko8wSDWwaBjkes95OWnnUCOOJhE4SudWemszaMzH/DWRBhSA8ur+nP/dDkgGJiBo1zjcZbhttxYKSCrxuvTrsxh3zAvNmJlDk0gaNdlS0ymZbOXuZayD0f65gHDYiTYROiSPzzIOTGe0/DBDLOueMb1gZ7R1nGsQyfECDVfPkj5ua30oeF+1YP3tTfzELKcNzAKrKeNHMJuz6/OEiVH4i8pOdD/Jq7dBHaieRU98FHLA78g174fiOUWGIeBCsiz5Dl03iM/1RD/Nq/kkgFnvw2CirFDsY7fnVd0jl+XW+5HVF5TohNk+YVBYVsAgkhM7Z7YP9Y0adEZ0JmY6hM5oUZ2ZZWnU2+fh3kfVNOQ8siCnznyWddVgWRk1XqwmRnANCoLmdfPky56n/sfGRZG3cu58Vrz8xiZ+HC2rXZ5nQPE31k5ht/oBX4tGjh7vSgufp/KcH2Heamkr+hNeSo0NiRBN8xdTuampRi21x2lQwQZGY1doxEBzLoriYlzmgpbF4RwxW6Ys3yALgzulvz5nB/tovr1t1puOK3NjQiJNpkqZU0sQpkOrcghZRGdm2Si76XqhW7ws0hld60ZIZ+38mTwcKgLELvDbUAATc+6PSEMvKZrAg+af1MFDnxXLb7yCt+PKd5J9yRBvYkw2h/IWHZswIHgPc2qPGIKAfIQFrYWskXKNR8Px4uQsryfJqwGr6Hph4bms3Er22Dqx1Vg85oYjb1cHZsgULXiirDK17HpPdocWKU1vbDB1ncVji9Z/qG4NYKeg/MVTi2S1mKUMZXw4YtjKFZJGjIkTgCORAMn6VLfjsvcOsYugyZ0Fougdily6Wfr+qxU4eRciTkkYjoh1RvKcYGmHQ0h2TKSzpqkz8oRjLkafhlf1hrHwzjqj87aNkNTTf4LOMJwlQ2uDmEtnAY4bKj4z514gNuPHdPF/cwY2sYfvfe4z+JPXE4yL0TGwYRBrLf0sWBSq9hf7qcWvOm8VHkrj0E7M2I+s4yTAb5Sl0HCvE33FVIdyLjCf5Oxs0tWNcMiK096HlwYfDZ55pKJFyp6lBTZ+fyHUDteNwlDssilR8HpeY62SM6RDGxJIJF2vGAqanGQ0PKpqip6OeE8J6NEbEmQ60bCNCOmZCI1uR3UWbQJv7Un0rFvS+t0i6WysqM64DlAQOlScVzOkcPOVFblDRVER16GtneMpEPKW+li89PpmsnHpc4Iv/jxrPb4QXmQjg2OC1rwSXqCD9UwG0QAP95yvlqdsTw5bBOzBqVOOY84RVHcUpRcpe8qz8Qu3kKxDzgnMeiwkFzgXcwjPxD3KUURfMTJ7vLueqyGeL6SzocHpjK99rc9nzTSBpSLz9pyh4u46vj8k8DsUHv4JPxbf33kN/5V1TmgdbAjECibE32xkbCAc4kFB8KMwXqZHN1fPhAtYuPE51YiTU0nmdmzjUOfgpFNiRzOf8dFG5noJqnGUepBMzEnASZ24I4u85M6mGAlkJehTJ7SSrJHrm0Un2XKd8xKDzU+yPcUJu1mpWawvXgvLcDqO8JOK02RyRw10FievR2cpdYvqLK4MXyPQ2W7B0DAKa1gnIpvtEoSKmfj9Jfzg2qY1m8e4GD2x1F/t2hSxRqlvfSKSosFv7uWcwriRx3vdG5Mj7ijR8qlzIQoCVgeRTBxhmELsUsQ75WKezHOOu15S9PrRTJIiGd8F62XqbKD3ea9lFWUYY8ofu85xiJ2svGs/zSPZMuSEMt7VQd6vqnI+28Pv+XjMudl3su79intlYCXuPmJTpXhE4ZEFcsJM7M1rXHTWfmWArw4oUeIkIjEXsaiRFQPuDwGO97OAXaLE/xNSk329uZGgUWagsen6aefmmdK4SjwIyLVg9GdiDi3vdW7HeO00v4gUV0/q69pKlLgbyL8iC4GhcdZDvn9hpN9JAUA0umiUhlXiQUQhA4uC17eCLHl+aNMTKGgdRb8scr/853slSpQoUeKu4b/VMDt15riwZwAAAABJRU5ErkJggg==";
16788
16646
  const _hoisted_1$o = ["src"];
16789
16647
  const _sfc_main$t = /* @__PURE__ */ defineComponent({
@@ -16810,8 +16668,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
16810
16668
  };
16811
16669
  }
16812
16670
  });
16813
- const ChatBot_vue_vue_type_style_index_0_scoped_4e1ce39a_lang = "";
16814
- const ChatBot = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-4e1ce39a"]]);
16671
+ const ChatBot = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-gitcode-layout-lib"]]);
16815
16672
  const _hoisted_1$n = { class: "devui-select__item g-option-link" };
16816
16673
  const _sfc_main$s = /* @__PURE__ */ defineComponent({
16817
16674
  ...{
@@ -16842,9 +16699,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
16842
16699
  };
16843
16700
  }
16844
16701
  });
16845
- const index_vue_vue_type_style_index_0_scoped_7712be3b_lang = "";
16846
- const OptionLink = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-7712be3b"]]);
16847
- const index_vue_vue_type_style_index_0_scoped_8c5cf616_lang = "";
16702
+ const OptionLink = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-gitcode-layout-lib"]]);
16848
16703
  const _sfc_main$r = /* @__PURE__ */ Object.assign({
16849
16704
  name: "Create"
16850
16705
  }, {
@@ -16934,7 +16789,7 @@ const _sfc_main$r = /* @__PURE__ */ Object.assign({
16934
16789
  };
16935
16790
  }
16936
16791
  });
16937
- const Create = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-8c5cf616"]]);
16792
+ const Create = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-gitcode-layout-lib"]]);
16938
16793
  const _sfc_main$q = /* @__PURE__ */ defineComponent({
16939
16794
  ...{
16940
16795
  name: "DocumentCenter"
@@ -16961,8 +16816,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
16961
16816
  };
16962
16817
  }
16963
16818
  });
16964
- const DocumentCenter_vue_vue_type_style_index_0_scoped_47994d3a_lang = "";
16965
- const DocumentCenter = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-47994d3a"]]);
16819
+ const DocumentCenter = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-gitcode-layout-lib"]]);
16966
16820
  var root = _root;
16967
16821
  var now$1 = function() {
16968
16822
  return root.Date.now();
@@ -17159,8 +17013,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
17159
17013
  };
17160
17014
  }
17161
17015
  });
17162
- const Notice_vue_vue_type_style_index_0_scoped_5dc62369_lang = "";
17163
- const Notice = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-5dc62369"]]);
17016
+ const Notice = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-gitcode-layout-lib"]]);
17164
17017
  const _hoisted_1$m = {
17165
17018
  key: 0,
17166
17019
  class: "user-level-avatar-badge"
@@ -17243,8 +17096,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
17243
17096
  };
17244
17097
  }
17245
17098
  });
17246
- const UserLevel_vue_vue_type_style_index_0_scoped_b57b4f46_lang = "";
17247
- const UserLevel = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-b57b4f46"]]);
17099
+ const UserLevel = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-gitcode-layout-lib"]]);
17248
17100
  const _hoisted_1$l = { class: "g-user-drawer-info-list pl-[16px]" };
17249
17101
  const _hoisted_2$f = { class: "max-w-[200px]" };
17250
17102
  const _hoisted_3$c = ["title"];
@@ -17358,7 +17210,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
17358
17210
  }
17359
17211
  }
17360
17212
  const getVisit = async (value) => {
17361
- const visitedDate = value || localStorage$2.getItem(AVATAR_VISITED_DATE);
17213
+ const visitedDate = localStorage$2.getItem(AVATAR_VISITED_DATE);
17362
17214
  const nowDate = (/* @__PURE__ */ new Date()).toLocaleDateString("zh-CN");
17363
17215
  const nowUserName = localStorage$2.getItem(AVATAR_VISITED_USERNAME);
17364
17216
  if (visitedDate === nowDate && nowUserName === props.accountInfo.username) {
@@ -17431,8 +17283,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
17431
17283
  };
17432
17284
  }
17433
17285
  });
17434
- const UserAvatarMenu_vue_vue_type_style_index_0_scoped_f5353edc_lang = "";
17435
- const UserAvatarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-f5353edc"]]);
17286
+ const UserAvatarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-gitcode-layout-lib"]]);
17436
17287
  const _hoisted_1$k = { class: "g-user-avatar flex-center ml-1" };
17437
17288
  const _hoisted_2$e = {
17438
17289
  key: 0,
@@ -17476,14 +17327,14 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
17476
17327
  handleAvatarRedPoint(CLICK_TIME_MODULE.GROWTH_CENTER, accountInfo.value.username);
17477
17328
  };
17478
17329
  const getVisit = async (value) => {
17479
- const visitedDate = value || localStorage$2.getItem(AVATAR_VISITED_DATE);
17330
+ const visitedDate = localStorage$2.getItem(AVATAR_VISITED_DATE);
17480
17331
  const nowDate = (/* @__PURE__ */ new Date()).toLocaleDateString("zh-CN");
17481
17332
  const nowUserName = localStorage$2.getItem(AVATAR_VISITED_USERNAME);
17482
17333
  if (visitedDate === nowDate && nowUserName === accountInfo.value.username) {
17483
17334
  haveVisited.value = true;
17484
17335
  }
17485
17336
  };
17486
- getVisit("");
17337
+ getVisit();
17487
17338
  const getScrollDom = () => {
17488
17339
  if (typeof document !== "undefined" && document.getElementById) {
17489
17340
  const appDom = document.getElementById("app");
@@ -17552,9 +17403,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
17552
17403
  };
17553
17404
  }
17554
17405
  });
17555
- const UserAvatar_vue_vue_type_style_index_0_scoped_11438075_lang = "";
17556
- const UserAvatar_vue_vue_type_style_index_1_lang = "";
17557
- const UserAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-11438075"]]);
17406
+ const UserAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-gitcode-layout-lib"]]);
17558
17407
  var EVENT_NAME = /* @__PURE__ */ ((EVENT_NAME2) => {
17559
17408
  EVENT_NAME2["START_SEARCH"] = "开始搜索";
17560
17409
  EVENT_NAME2["SEARCH"] = "搜索";
@@ -17613,7 +17462,7 @@ function _frEventTrack(eventName, type = "custom") {
17613
17462
  }
17614
17463
  }
17615
17464
  const setlocalVistHistory = (data, localType) => {
17616
- const storeName = localType || "localVistList";
17465
+ const storeName = localType;
17617
17466
  const localData = localStorage$2.getItem(storeName);
17618
17467
  let cur = [];
17619
17468
  if (localData) {
@@ -17631,18 +17480,13 @@ const setlocalVistHistory = (data, localType) => {
17631
17480
  cur.splice(cur.indexOf(target), 1);
17632
17481
  cur.unshift(target);
17633
17482
  }
17634
- } else {
17635
- if (!cur.some((ele) => ele === data || data.label && ele.label === data.label)) {
17636
- cur.unshift(data);
17637
- }
17638
17483
  }
17639
17484
  } catch (e) {
17640
17485
  }
17641
17486
  } else {
17642
17487
  cur = [data];
17643
17488
  }
17644
- const isLocalSearch = localType === "localSearchText";
17645
- const storageCount = isLocalSearch ? 10 : 5;
17489
+ const storageCount = 10;
17646
17490
  cur.splice(storageCount);
17647
17491
  localStorage$2.setItem(storeName, JSON.stringify(cur));
17648
17492
  return cur;
@@ -17724,13 +17568,13 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
17724
17568
  setup(__props) {
17725
17569
  var _a;
17726
17570
  const { t: $t } = i18n.global;
17727
- const ProjectSearch = defineAsyncComponent(() => import("./ProjectSearch-c7870826.js"));
17728
- const UserSearch = defineAsyncComponent(() => import("./UserSearch-e2475cfa.js"));
17729
- const GloabarSearch = defineAsyncComponent(() => import("./GloabarSearch-1b95a82c.js"));
17730
- const SearchHistoryList = defineAsyncComponent(() => import("./SearchHistoryList-a82bd4dc.js"));
17731
- const SearchScopeList = defineAsyncComponent(() => import("./SearchScopeList-63acd70f.js"));
17732
- const SearchPrefixTag = defineAsyncComponent(() => import("./SearchPrefixTag-7bb9c58a.js"));
17733
- const SearchRecommed = defineAsyncComponent(() => import("./SearchRecommed-db928fc8.js"));
17571
+ const ProjectSearch = defineAsyncComponent(() => import("./ProjectSearch-Df6SVTL3.js"));
17572
+ const UserSearch = defineAsyncComponent(() => import("./UserSearch-BSGSjBV9.js"));
17573
+ const GloabarSearch = defineAsyncComponent(() => import("./GloabarSearch-Dr0VSu2v.js"));
17574
+ const SearchHistoryList = defineAsyncComponent(() => import("./SearchHistoryList-BS5aTLKu.js"));
17575
+ const SearchScopeList = defineAsyncComponent(() => import("./SearchScopeList-BrmprIad.js"));
17576
+ const SearchPrefixTag = defineAsyncComponent(() => import("./SearchPrefixTag-LSqh_YHt.js"));
17577
+ const SearchRecommed = defineAsyncComponent(() => import("./SearchRecommed-C2E23CZf.js"));
17734
17578
  const props = __props;
17735
17579
  const repoInfo = inject("repoInfo");
17736
17580
  const orgInfo = inject("orgInfo");
@@ -18249,10 +18093,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
18249
18093
  };
18250
18094
  }
18251
18095
  });
18252
- const index_vue_vue_type_style_index_0_scoped_3074798a_lang = "";
18253
- const index_vue_vue_type_style_index_1_lang$2 = "";
18254
- const Search = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-3074798a"]]);
18255
- const NoticeModal = defineAsyncComponent(() => import("./notice-d0534d5e.js"));
18096
+ const Search = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-gitcode-layout-lib"]]);
18097
+ const NoticeModal = defineAsyncComponent(() => import("./notice-kPXHskSq.js"));
18256
18098
  function clearNotice() {
18257
18099
  if (localStorage$2.getItem("validator_email")) {
18258
18100
  localStorage$2.removeItem("validator_email");
@@ -18592,8 +18434,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
18592
18434
  };
18593
18435
  }
18594
18436
  });
18595
- const index_vue_vue_type_style_index_0_scoped_7f0c99aa_lang = "";
18596
- const GitCodeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-7f0c99aa"]]);
18437
+ const GitCodeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-gitcode-layout-lib"]]);
18597
18438
  const createSetting = () => {
18598
18439
  const { t: t2 } = i18n.global;
18599
18440
  const settings = {
@@ -18641,7 +18482,6 @@ if (isBrowser) {
18641
18482
  }
18642
18483
  };
18643
18484
  }
18644
- const sessionStorage$1 = sessionStorage;
18645
18485
  const _hoisted_1$h = { class: "tools-item-wrapper" };
18646
18486
  const _hoisted_2$b = { class: "tools-item-wrapper-checkbox" };
18647
18487
  const _hoisted_3$8 = ["onClick", "title"];
@@ -18653,12 +18493,11 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
18653
18493
  const router2 = useRouter();
18654
18494
  const { t: t2 } = i18n.global;
18655
18495
  const handleClick = (linkItem) => {
18656
- if (lang.value === linkItem.value)
18657
- return;
18496
+ if (lang.value === linkItem.value) return;
18658
18497
  lang.value = linkItem.value;
18659
18498
  const isHomePage = router2.currentRoute.value.name === "home";
18660
18499
  if (isHomePage) {
18661
- sessionStorage$1.setItem("page_reload", "changedLang");
18500
+ sessionStorage.setItem("page_reload", "changedLang");
18662
18501
  }
18663
18502
  window.location.reload();
18664
18503
  };
@@ -18705,8 +18544,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
18705
18544
  { value: ThemeType.BLACK, icon: "gt-line-dark" }
18706
18545
  ]);
18707
18546
  const handleClick = (themeItem) => {
18708
- if (activeTheme.value === themeItem.value)
18709
- return;
18547
+ if (activeTheme.value === themeItem.value) return;
18710
18548
  activeTheme.value = themeItem.value;
18711
18549
  if (themeItem.value === "System") {
18712
18550
  theme.startAutoTheme();
@@ -18743,7 +18581,6 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
18743
18581
  };
18744
18582
  }
18745
18583
  });
18746
- const Theme_vue_vue_type_style_index_0_lang = "";
18747
18584
  const loadAsideData = async (requestFn, params = {}, dataType = "project") => {
18748
18585
  var _a, _b;
18749
18586
  try {
@@ -18788,16 +18625,14 @@ const loadAsideData = async (requestFn, params = {}, dataType = "project") => {
18788
18625
  };
18789
18626
  const layoutConfig$1 = useLayoutConfig();
18790
18627
  const transWebUrl = (url, params) => {
18791
- if (!url)
18792
- return url;
18628
+ if (!url) return url;
18793
18629
  let processedUrl = url;
18794
18630
  if (layoutConfig$1.VITE_ENV !== "production") {
18795
18631
  const regex = /^(?:https?:\/\/)?(?:www\.)?([^\/]+)(\/.*)$/;
18796
18632
  const match = url.match(regex);
18797
18633
  processedUrl = match ? match[2] : url || "/";
18798
18634
  }
18799
- if (!params)
18800
- return processedUrl;
18635
+ if (!params) return processedUrl;
18801
18636
  const separator = processedUrl.includes("?") ? "&" : "?";
18802
18637
  if (typeof params === "string") {
18803
18638
  return `${processedUrl}${separator}${params}`;
@@ -18972,8 +18807,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
18972
18807
  if (inputIng.value) {
18973
18808
  return;
18974
18809
  }
18975
- if (scTimer)
18976
- clearTimeout(scTimer);
18810
+ if (scTimer) clearTimeout(scTimer);
18977
18811
  scTimer = setTimeout(() => {
18978
18812
  if (props.type === "project") {
18979
18813
  searchProject();
@@ -19153,9 +18987,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
19153
18987
  };
19154
18988
  }
19155
18989
  });
19156
- const ProjectMenuList_vue_vue_type_style_index_0_scoped_78f758d1_lang = "";
19157
- const ProjectMenuList_vue_vue_type_style_index_1_lang = "";
19158
- const ProjectMenuList = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-78f758d1"]]);
18990
+ const ProjectMenuList = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-gitcode-layout-lib"]]);
19159
18991
  const _hoisted_1$e = { class: "side-bar-label" };
19160
18992
  const _hoisted_2$8 = {
19161
18993
  key: 0,
@@ -19246,18 +19078,15 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
19246
19078
  };
19247
19079
  const username = computed(() => (userInfo == null ? void 0 : userInfo.username) || JSON.parse(localStorage$2.getItem("userInfo") || "{}").username);
19248
19080
  const showPreferencesSetting = computed(() => {
19249
- if (props.showPreferencesSetting !== void 0)
19250
- return !props.asideSetShowLittle && props.showPreferencesSetting;
19081
+ if (props.showPreferencesSetting !== void 0) return !props.asideSetShowLittle && props.showPreferencesSetting;
19251
19082
  return !props.asideSetShowLittle && route.name !== AICopilot_ROUTE_NAME && isModuleVisible(AsideDisplayItem.PREFERENCE);
19252
19083
  });
19253
19084
  const showThemeSetting = computed(() => {
19254
- if (props.showPreferencesSetting !== void 0 && props.showThemeSetting !== void 0)
19255
- return props.showThemeSetting;
19085
+ if (props.showPreferencesSetting !== void 0 && props.showThemeSetting !== void 0) return props.showThemeSetting;
19256
19086
  return ![SceneValue.aiHome, SceneValue.aiGuide].includes(props.sceneValue);
19257
19087
  });
19258
19088
  const showLangSetting = computed(() => {
19259
- if (props.showPreferencesSetting !== void 0 && props.showLangSetting !== void 0)
19260
- return props.showLangSetting;
19089
+ if (props.showPreferencesSetting !== void 0 && props.showLangSetting !== void 0) return props.showLangSetting;
19261
19090
  return true;
19262
19091
  });
19263
19092
  const isEn = computed(() => {
@@ -19446,16 +19275,14 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
19446
19275
  emits("onMenuClick");
19447
19276
  };
19448
19277
  function checkMenu() {
19449
- if (!route)
19450
- return;
19278
+ if (!route) return;
19451
19279
  const name = route == null ? void 0 : route.name;
19452
19280
  if (MENU_ITEM_ROUTE_NAME.includes(name)) {
19453
19281
  defaultSelectKeys.value = [name];
19454
19282
  console.log(defaultSelectKeys.value);
19455
19283
  } else {
19456
19284
  const basePath = route.meta.basePath;
19457
- if (basePath)
19458
- defaultSelectKeys.value = [basePath];
19285
+ if (basePath) defaultSelectKeys.value = [basePath];
19459
19286
  }
19460
19287
  }
19461
19288
  watch(
@@ -19476,8 +19303,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
19476
19303
  const timer = ref(null);
19477
19304
  const handleScroll = () => {
19478
19305
  isScroll.value = true;
19479
- if (timer.value)
19480
- clearTimeout(timer.value);
19306
+ if (timer.value) clearTimeout(timer.value);
19481
19307
  timer.value = setTimeout(() => {
19482
19308
  isScroll.value = false;
19483
19309
  }, 1e3);
@@ -19754,9 +19580,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
19754
19580
  };
19755
19581
  }
19756
19582
  });
19757
- const asideContent_vue_vue_type_style_index_0_scoped_76d7f3fb_lang = "";
19758
- const asideContent_vue_vue_type_style_index_1_lang = "";
19759
- const AsideContent = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-76d7f3fb"]]);
19583
+ const AsideContent = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-gitcode-layout-lib"]]);
19760
19584
  const _hoisted_1$d = { class: "p-[16px] flex justify-between items-center h-[60px]" };
19761
19585
  const _sfc_main$f = /* @__PURE__ */ defineComponent({
19762
19586
  __name: "index",
@@ -19783,8 +19607,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
19783
19607
  provide("userInfo", computed(() => props.userInfo));
19784
19608
  provide("useReport", useReport2);
19785
19609
  const showBgColor = computed(() => {
19786
- if (route.meta.showBgColor)
19787
- return true;
19610
+ if (route.meta.showBgColor) return true;
19788
19611
  return false;
19789
19612
  });
19790
19613
  const asideSetShow = computed(() => {
@@ -19890,9 +19713,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
19890
19713
  };
19891
19714
  }
19892
19715
  });
19893
- const index_vue_vue_type_style_index_0_scoped_db4c58e3_lang = "";
19894
- const index_vue_vue_type_style_index_1_lang$1 = "";
19895
- const GitCodeAside = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-db4c58e3"]]);
19716
+ const GitCodeAside = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-gitcode-layout-lib"]]);
19896
19717
  const repoInfoData = {
19897
19718
  "star_count": 0,
19898
19719
  "forks_count": 0,
@@ -20567,7 +20388,6 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
20567
20388
  };
20568
20389
  }
20569
20390
  });
20570
- const home_vue_vue_type_style_index_0_lang = "";
20571
20391
  const _hoisted_1$b = { class: "home-wrapper" };
20572
20392
  const _sfc_main$d = /* @__PURE__ */ defineComponent({
20573
20393
  __name: "login",
@@ -20614,7 +20434,6 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
20614
20434
  };
20615
20435
  }
20616
20436
  });
20617
- const login_vue_vue_type_style_index_0_lang = "";
20618
20437
  const routes = [
20619
20438
  {
20620
20439
  path: "/",
@@ -20702,7 +20521,7 @@ async function csdnloginCheck(route, loginCallback, request) {
20702
20521
  localStorage$2.setItem("cache_loginTimes", `${Number(loginTimes) + 1}`);
20703
20522
  window.page_title = ((_f = route.meta) == null ? void 0 : _f.reportTitle) || "";
20704
20523
  await useReport("pageview", {}, request);
20705
- sessionStorage$1.setItem(GOTO_QUICK_LOGIN, "1");
20524
+ sessionStorage.setItem(GOTO_QUICK_LOGIN, "1");
20706
20525
  loginCallback();
20707
20526
  return true;
20708
20527
  }
@@ -20712,6 +20531,7 @@ async function csdnloginCheck(route, loginCallback, request) {
20712
20531
  const layoutConfig = useLayoutConfig();
20713
20532
  const { t: t$2 } = i18n.global;
20714
20533
  const GRAPH_CODE = 400007;
20534
+ const REMOTE_LOGIN_CODE = 400015;
20715
20535
  const createLoginConfig = (request) => {
20716
20536
  const API = headRequest(request);
20717
20537
  return {
@@ -20721,8 +20541,7 @@ const createLoginConfig = (request) => {
20721
20541
  }, failFunc = () => {
20722
20542
  } } = param;
20723
20543
  const check = validFunc ? await validFunc() : true;
20724
- if (!check)
20725
- return;
20544
+ if (!check) return;
20726
20545
  const result2 = await API.loginByMobile(loginParams);
20727
20546
  if (!result2.error) {
20728
20547
  const resultData = result2.data.data;
@@ -20733,19 +20552,22 @@ const createLoginConfig = (request) => {
20733
20552
  }
20734
20553
  },
20735
20554
  // 密码登录
20736
- async password(param, loginParams, graphValidate) {
20737
- var _a;
20555
+ async password(param, loginParams, graphValidate, lintRemoteLogin) {
20556
+ var _a, _b;
20738
20557
  const { validFunc, successFunc = () => {
20739
20558
  }, failFunc = () => {
20740
20559
  } } = param;
20741
20560
  const check = validFunc ? await validFunc() : true;
20742
- if (!check)
20743
- return;
20561
+ if (!check) return;
20744
20562
  const result2 = await API.toLogin(loginParams);
20745
20563
  if (((_a = result2 == null ? void 0 : result2.error) == null ? void 0 : _a.error_code) === GRAPH_CODE) {
20746
20564
  graphValidate();
20747
20565
  return;
20748
20566
  }
20567
+ if (((_b = result2 == null ? void 0 : result2.error) == null ? void 0 : _b.error_code) === REMOTE_LOGIN_CODE) {
20568
+ lintRemoteLogin();
20569
+ return;
20570
+ }
20749
20571
  if (!result2.error) {
20750
20572
  const resultData = result2.data.data;
20751
20573
  const { user_status_enum } = resultData;
@@ -20784,8 +20606,7 @@ const createLoginConfig = (request) => {
20784
20606
  beforeCsdnLogin(param) {
20785
20607
  const { type, validFunc } = param;
20786
20608
  const check = validFunc ? validFunc() : true;
20787
- if (!check)
20788
- return;
20609
+ if (!check) return;
20789
20610
  saveStatusBeforeLogin(param);
20790
20611
  goAuthPage(type);
20791
20612
  },
@@ -20811,8 +20632,7 @@ const createLoginConfig = (request) => {
20811
20632
  async beforeWechatLogin(param) {
20812
20633
  const { validFunc, type } = param;
20813
20634
  const check = validFunc == null ? void 0 : validFunc();
20814
- if (!check)
20815
- return;
20635
+ if (!check) return;
20816
20636
  saveStatusBeforeLogin(param);
20817
20637
  goAuthPage(type);
20818
20638
  },
@@ -20824,8 +20644,7 @@ const createLoginConfig = (request) => {
20824
20644
  beforeOtherLogin(param) {
20825
20645
  const { type, validFunc } = param;
20826
20646
  const check = validFunc ? validFunc() : true;
20827
- if (!check)
20828
- return;
20647
+ if (!check) return;
20829
20648
  saveStatusBeforeLogin(param);
20830
20649
  goAuthPage(type);
20831
20650
  },
@@ -20852,7 +20671,7 @@ function saveSignPath() {
20852
20671
  localStorage$2.setItem("sign_path", (window == null ? void 0 : window.location.href) || "");
20853
20672
  }
20854
20673
  function saveLoginType(triggerType = "") {
20855
- sessionStorage$1.setItem("loginType", triggerType);
20674
+ sessionStorage.setItem("loginType", triggerType);
20856
20675
  }
20857
20676
  function getLoginReturnUrl() {
20858
20677
  return api.get("third_utm_source_sign_path") || localStorage$2.getItem("loginReturnUrl") || "/";
@@ -21031,57 +20850,57 @@ const HandleParentWindowGetLoginInfo = (request) => {
21031
20850
  }
21032
20851
  };
21033
20852
  };
21034
- const logoBack = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWMv5bem5aSH5Lu9PC90aXRsZT4KICAgIDxnIGlkPSJQQ+erryIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjAyLeeZu+W9leazqOWGjC3nmbvlvZXjgIHms6jlhowiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNTMsIC0xODU1KSIgZmlsbD0iIzhBOEU5OSIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC04IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjUsIDE4MzApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJpYy/lt6blpIfku70iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMxLjEzOTMsIDI4Ljk2OTcpIj4KICAgICAgICAgICAgICAgICAgICA8cG9seWdvbiBpZD0i6Lev5b6EIiBwb2ludHM9IjguMDMwMjkxMjEgMy41NTI3MTM2OGUtMTUgOS4wOTEwMjkxNCAxLjA2MDU4MjQgMi44NzI1IDcuMjc5NSAxNy44NjA2NjAyIDcuMjgwMjkxMiAxNy44NjA2NjAyIDguNzgwMjkxMiAyLjg2OTUgOC43Nzk1IDkuMDkxMDI5MTQgMTQuOTk5OTIyMiA4LjAzMDM2ODk4IDE2LjA2MDY2MDIgMCA4LjAzMTQ2ODg0Ij48L3BvbHlnb24+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==";
20853
+ const logoBack = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3ctitle%3eic/左备份%3c/title%3e%3cg%20id='PC端'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='02-登录注册-登录、注册'%20transform='translate(-153,%20-1855)'%20fill='%238A8E99'%20fill-rule='nonzero'%3e%3cg%20id='编组-8'%20transform='translate(125,%201830)'%3e%3cg%20id='ic/左备份'%20transform='translate(31.1393,%2028.9697)'%3e%3cpolygon%20id='路径'%20points='8.03029121%203.55271368e-15%209.09102914%201.0605824%202.8725%207.2795%2017.8606602%207.2802912%2017.8606602%208.7802912%202.8695%208.7795%209.09102914%2014.9999222%208.03036898%2016.0606602%200%208.03146884'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
21035
20854
  const __vite_glob_0_0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21036
20855
  __proto__: null,
21037
20856
  default: logoBack
21038
20857
  }, Symbol.toStringTag, { value: "Module" }));
21039
- const logoCsdn = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSIzMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWMvY3NkbjwvdGl0bGU+CiAgICA8ZyBpZD0iaWMvY3NkbiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0LjczODU2MTIsMjEuODE4NzkxIEMyNC40NzI4MjA2LDIxLjU2NjI0MzIgMjQuMTA5MDc2MywyMS40MjY3NzY1IDIzLjc1NzU4MjUsMjEuNDM0MzE1MiBDMjMuMzk2NjY1MywyMS40Mzk5NjkzIDIzLjA2OTY3MjQsMjEuNTkwNzQ0MSAyMi44Mzc4NTYyLDIxLjg1NTU0MjQgQzIwLjc1ODEwNjEsMjQuMjM0OTU3NCAxNy4xMzQ3OTg4LDI0LjQ5MjIxNjkgMTUuNjczMjI1NCwyNC40OTIyMTY5IEMxMi45NjExNjM0LDI0LjQ5MjIxNjkgMTAuODg2MTI1LDIzLjgwNDMwNjkgOS41MDU1OTMxNSwyMi40NTAxNjA1IEM4LjE5Mzg1MjI1LDIxLjE2Mzg2MjkgNy41MDU5NDIxNiwxOS4yNjc4Njk2IDcuNDYwNzA5NzIsMTYuODE2ODM2NSBDNy4zNTUxNjczNSwxMS4xMzQ1MTA3IDEwLjU3MzI2NzMsNS4yNTgwNjIyNiAxNi4xMzk2ODUsNS4yNTgwNjIyNiBDMTguNzk4MDMzNSw1LjI1ODA2MjI2IDIwLjg2MjcwNjEsNy4xNDM2ODk3OSAyMS42MjYwMDM2LDcuOTU0MTA0NDMgQzIxLjg5MTc0NDIsOC4yMzU4NjQ4NiAyMi4yNTgzMTU1LDguMzk3OTQ3NzkgMjIuNjM1MjUyNSw4LjM5OTgzMjQ3IEMyMy4wMTMxMzE5LDguNDA5MjU1OSAyMy4zNjI3NDEsOC4yNDE1MTg5MiAyMy41OTkyNjksNy45NjE2NDMxNyBMMjMuODE2MDA3OCw3LjcwNTMyNTk4IEMyNC4yNjA3OTM1LDcuMTgyMzI1ODQgMjQuNDYwNTcwMSw2LjUwNTcyMzg2IDI0LjM4MDQ3MSw1LjgwMTc5Mzk0IEMyNC4yOTg0ODcyLDUuMDkxMjY3NjMgMjMuOTQyMjgxNyw0LjQ0MjkzNTkyIDIzLjM3NzgxODUsMy45NzQ1OTE2NSBDMjIuMDEzMzA2NCwyLjg0NDcyMjg4IDE5LjY5NTE0MzYsMS41IDE2LjM5Njk0NDUsMS41IEMxMi45NzE1MjkyLDEuNSA5LjU4NzU3Njk1LDMuMDc0NjU0NDcgNy4xMTI5ODUzLDUuODI0NDEwMTYgQzQuNTEzMDYyMDgsOC43MTI2OTAyMSAzLjEyNDA0OTEsMTIuNjQ0MTQzNSAzLjIwMzIwNTg4LDE2Ljg5NTA1MSBDMy4yNjYzNDI4MywyMC4zMDYzMzExIDQuMzg0OTAzNDksMjMuMTcyOTM3MyA2LjQ0MDE1MjY5LDI1LjE4ODYwODEgQzguNjQ4MDYxMzgsMjcuMzU1MDUzNyAxMS44ODIxODEyLDI4LjUgMTUuNzk0Nzg3NiwyOC41IEMyMC4zODQ5Mzg0LDI4LjUgMjMuMjI4OTI4MywyNy4xNDAxOTk2IDI0LjgwODI5NDUsMjYuMDAwOTA3NCBDMjUuNDE5ODc0OSwyNS41NjA4MzM0IDI1Ljc4NDU2MTUsMjQuODY0NDQyMyAyNS44MTI4MzE3LDI0LjA5MzYwNiBDMjUuODM5MjE3MywyMy4zMTkwMDA0IDI1LjUyMjU5MDIsMjIuNTYwNDE0NiAyNC45NDMwNDk1LDIyLjAxMTk3MTIgTDI0LjczODU2MTIsMjEuODE4NzkxIFoiIGlkPSJGaWxsLTEiIGZpbGw9IiNGQzU1MzMiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+";
20858
+ const logoCsdn = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='30px'%20height='30px'%20viewBox='0%200%2030%2030'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3ctitle%3eic/csdn%3c/title%3e%3cg%20id='ic/csdn'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M24.7385612,21.818791%20C24.4728206,21.5662432%2024.1090763,21.4267765%2023.7575825,21.4343152%20C23.3966653,21.4399693%2023.0696724,21.5907441%2022.8378562,21.8555424%20C20.7581061,24.2349574%2017.1347988,24.4922169%2015.6732254,24.4922169%20C12.9611634,24.4922169%2010.886125,23.8043069%209.50559315,22.4501605%20C8.19385225,21.1638629%207.50594216,19.2678696%207.46070972,16.8168365%20C7.35516735,11.1345107%2010.5732673,5.25806226%2016.139685,5.25806226%20C18.7980335,5.25806226%2020.8627061,7.14368979%2021.6260036,7.95410443%20C21.8917442,8.23586486%2022.2583155,8.39794779%2022.6352525,8.39983247%20C23.0131319,8.4092559%2023.362741,8.24151892%2023.599269,7.96164317%20L23.8160078,7.70532598%20C24.2607935,7.18232584%2024.4605701,6.50572386%2024.380471,5.80179394%20C24.2984872,5.09126763%2023.9422817,4.44293592%2023.3778185,3.97459165%20C22.0133064,2.84472288%2019.6951436,1.5%2016.3969445,1.5%20C12.9715292,1.5%209.58757695,3.07465447%207.1129853,5.82441016%20C4.51306208,8.71269021%203.1240491,12.6441435%203.20320588,16.895051%20C3.26634283,20.3063311%204.38490349,23.1729373%206.44015269,25.1886081%20C8.64806138,27.3550537%2011.8821812,28.5%2015.7947876,28.5%20C20.3849384,28.5%2023.2289283,27.1401996%2024.8082945,26.0009074%20C25.4198749,25.5608334%2025.7845615,24.8644423%2025.8128317,24.093606%20C25.8392173,23.3190004%2025.5225902,22.5604146%2024.9430495,22.0119712%20L24.7385612,21.818791%20Z'%20id='Fill-1'%20fill='%23FC5533'%3e%3c/path%3e%3c/g%3e%3c/svg%3e";
21040
20859
  const __vite_glob_0_1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21041
20860
  __proto__: null,
21042
20861
  default: logoCsdn
21043
20862
  }, Symbol.toStringTag, { value: "Module" }));
21044
- const logoGit = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwODRfMjg2KSI+CjxwYXRoIGQ9Ik0zNS4yODY4IDE2LjM5ODNMMTkuNTgzOSAwLjY5NjIyOUMxOC42Nzk4IC0wLjIwODYzOSAxNy4yMTMyIC0wLjIwODYzOSAxNi4zMDgzIDAuNjk2MjI5TDEyLjY2IDQuMzQ0NDdMMTUuNDA1NiA3LjA5QzE1Ljg0NTggNi44NzkyNSAxNi4zMzg1IDYuNzYxMjggMTYuODU5MyA2Ljc2MTI4QzE4LjcyMTUgNi43NjEyOCAyMC4yMzEzIDguMjcxMDcgMjAuMjMxMyAxMC4xMzMzQzIwLjIzMTMgMTAuNjU0MSAyMC4xMTMzIDExLjE0NjggMTkuOTAyNiAxMS41ODdMMjQuMzk3NCAxNi4wODE4QzI0LjgzNzYgMTUuODcxMSAyNS4zMzAzIDE1Ljc1MzEgMjUuODUxMSAxNS43NTMxQzI3LjcxMzQgMTUuNzUzMSAyOS4yMjMxIDE3LjI2MjkgMjkuMjIzMSAxOS4xMjUyQzI5LjIyMzEgMjAuOTg3NCAyNy43MTM0IDIyLjQ5NzIgMjUuODUxMSAyMi40OTcyQzIzLjk4ODkgMjIuNDk3MiAyMi40NzkxIDIwLjk4NzQgMjIuNDc5MSAxOS4xMjUyQzIyLjQ3OTEgMTguNjA0NCAyMi41OTcgMTguMTExNyAyMi44MDc4IDE3LjY3MTVMMTguMzEzIDEzLjE3NjZDMTguMjA1OCAxMy4yMjc3IDE4LjA5NTcgMTMuMjczIDE3Ljk4MzUgMTMuMzEyNlYyMi42ODkyQzE5LjI5MjYgMjMuMTUyNSAyMC4yMzEzIDI0LjQwMDQgMjAuMjMxMyAyNS44Njg1QzIwLjIzMTMgMjcuNzMwOCAxOC43MjE1IDI5LjI0MDUgMTYuODU5MyAyOS4yNDA1QzE0Ljk5NyAyOS4yNDA1IDEzLjQ4NzIgMjcuNzMwOCAxMy40ODcyIDI1Ljg2ODVDMTMuNDg3MiAyNC40MDA0IDE0LjQyNTkgMjMuMTUyNSAxNS43MzUgMjIuNjg5MlYxMy4zMTI2QzE0LjQyNTkgMTIuODQ5NCAxMy40ODcyIDExLjYwMTQgMTMuNDg3MiAxMC4xMzMzQzEzLjQ4NzIgOS42MTI1NSAxMy42MDUyIDkuMTE5ODQgMTMuODE1OSA4LjY3OTYzTDExLjA3MDQgNS45MzQxTDAuNjc4MTExIDE2LjMyNTdDLTAuMjI2MDM3IDE3LjIzMTMgLTAuMjI2MDM3IDE4LjY5NzkgMC42NzgxMTEgMTkuNjAyMUwxNi4zODE3IDM1LjMwNDJDMTcuMjg1OCAzNi4yMDgzIDE4Ljc1MTcgMzYuMjA4MyAxOS42NTczIDM1LjMwNDJMMzUuMjg2OCAxOS42NzQ3QzM2LjE5MTYgMTguNzY5OCAzNi4xOTE2IDE3LjMwMjUgMzUuMjg2OCAxNi4zOTgzWiIgZmlsbD0iI0Y3NEUyNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzUwODRfMjg2Ij4KPHJlY3Qgd2lkdGg9IjM2IiBoZWlnaHQ9IjM2IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=";
20863
+ const logoGit = "data:image/svg+xml,%3csvg%20width='36'%20height='36'%20viewBox='0%200%2036%2036'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_5084_286)'%3e%3cpath%20d='M35.2868%2016.3983L19.5839%200.696229C18.6798%20-0.208639%2017.2132%20-0.208639%2016.3083%200.696229L12.66%204.34447L15.4056%207.09C15.8458%206.87925%2016.3385%206.76128%2016.8593%206.76128C18.7215%206.76128%2020.2313%208.27107%2020.2313%2010.1333C20.2313%2010.6541%2020.1133%2011.1468%2019.9026%2011.587L24.3974%2016.0818C24.8376%2015.8711%2025.3303%2015.7531%2025.8511%2015.7531C27.7134%2015.7531%2029.2231%2017.2629%2029.2231%2019.1252C29.2231%2020.9874%2027.7134%2022.4972%2025.8511%2022.4972C23.9889%2022.4972%2022.4791%2020.9874%2022.4791%2019.1252C22.4791%2018.6044%2022.597%2018.1117%2022.8078%2017.6715L18.313%2013.1766C18.2058%2013.2277%2018.0957%2013.273%2017.9835%2013.3126V22.6892C19.2926%2023.1525%2020.2313%2024.4004%2020.2313%2025.8685C20.2313%2027.7308%2018.7215%2029.2405%2016.8593%2029.2405C14.997%2029.2405%2013.4872%2027.7308%2013.4872%2025.8685C13.4872%2024.4004%2014.4259%2023.1525%2015.735%2022.6892V13.3126C14.4259%2012.8494%2013.4872%2011.6014%2013.4872%2010.1333C13.4872%209.61255%2013.6052%209.11984%2013.8159%208.67963L11.0704%205.9341L0.678111%2016.3257C-0.226037%2017.2313%20-0.226037%2018.6979%200.678111%2019.6021L16.3817%2035.3042C17.2858%2036.2083%2018.7517%2036.2083%2019.6573%2035.3042L35.2868%2019.6747C36.1916%2018.7698%2036.1916%2017.3025%2035.2868%2016.3983Z'%20fill='%23F74E27'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_5084_286'%3e%3crect%20width='36'%20height='36'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
21045
20864
  const __vite_glob_0_2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21046
20865
  __proto__: null,
21047
20866
  default: logoGit
21048
20867
  }, Symbol.toStringTag, { value: "Module" }));
21049
- const logoGitee = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjk4ODA1NjY0NzU1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYxMTYiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggZD0iTTUxMiA1MTJtLTQ5NC45MzMzMzMgMGE0OTQuOTMzMzMzIDQ5NC45MzMzMzMgMCAxIDAgOTg5Ljg2NjY2NiAwIDQ5NC45MzMzMzMgNDk0LjkzMzMzMyAwIDEgMC05ODkuODY2NjY2IDBaIiBmaWxsPSIjQzcxRDIzIiBwLWlkPSI2MTE3Ij48L3BhdGg+PHBhdGggZD0iTTc2Mi41Mzg2NjcgNDU3LjA0NTMzM2gtMjgxLjA4OGEyNC40NzM2IDI0LjQ3MzYgMCAwIDAtMjQuNDM5NDY3IDI0LjQwNTMzNHY2MS4wOTg2NjZjLTAuMDM0MTMzIDEzLjUxNjggMTAuOTIyNjY3IDI0LjQzOTQ2NyAyNC40MDUzMzMgMjQuNDM5NDY3aDE3MS4xMTA0YzEzLjUxNjggMCAyNC40Mzk0NjcgMTAuOTIyNjY3IDI0LjQzOTQ2NyAyNC40Mzk0Njd2MTIuMjE5NzMzYTczLjMxODQgNzMuMzE4NCAwIDAgMS03My4zMTg0IDczLjMxODRoLTIzMi4yMDkwNjdhMjQuNDM5NDY3IDI0LjQzOTQ2NyAwIDAgMS0yNC40Mzk0NjYtMjQuNDM5NDY3di0yMzIuMTc0OTMzYTczLjMxODQgNzMuMzE4NCAwIDAgMSA3My4zMTg0LTczLjMxODRoMzQyLjE1MjUzM2MxMy40ODI2NjcgMCAyNC40MDUzMzMtMTAuOTIyNjY3IDI0LjQzOTQ2Ny0yNC40Mzk0NjdsMC4wMzQxMzMtNjEuMDk4NjY2YTI0LjQwNTMzMyAyNC40MDUzMzMgMCAwIDAtMjQuNDA1MzMzLTI0LjQzOTQ2N0g0MjAuMzUyYTE4My4yOTYgMTgzLjI5NiAwIDAgMC0xODMuMjk2IDE4My4yOTZWNzYyLjUzODY2N2MwIDEzLjQ4MjY2NyAxMC45MjI2NjcgMjQuNDM5NDY3IDI0LjQwNTMzMyAyNC40Mzk0NjZoMzYwLjUxNjI2N2ExNjQuOTY2NCAxNjQuOTY2NCAwIDAgMCAxNjUuMDAwNTMzLTE2NS4wMDA1MzN2LTE0MC41MjY5MzNhMjQuNDM5NDY3IDI0LjQzOTQ2NyAwIDAgMC0yNC40Mzk0NjYtMjQuNDM5NDY3eiIgZmlsbD0iI0ZGRkZGRiIgcC1pZD0iNjExOCI+PC9wYXRoPjwvc3ZnPg==";
20868
+ const logoGitee = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1698805664755'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='6116'%20width='128'%20height='128'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath%20d='M512%20512m-494.933333%200a494.933333%20494.933333%200%201%200%20989.866666%200%20494.933333%20494.933333%200%201%200-989.866666%200Z'%20fill='%23C71D23'%20p-id='6117'%3e%3c/path%3e%3cpath%20d='M762.538667%20457.045333h-281.088a24.4736%2024.4736%200%200%200-24.439467%2024.405334v61.098666c-0.034133%2013.5168%2010.922667%2024.439467%2024.405333%2024.439467h171.1104c13.5168%200%2024.439467%2010.922667%2024.439467%2024.439467v12.219733a73.3184%2073.3184%200%200%201-73.3184%2073.3184h-232.209067a24.439467%2024.439467%200%200%201-24.439466-24.439467v-232.174933a73.3184%2073.3184%200%200%201%2073.3184-73.3184h342.152533c13.482667%200%2024.405333-10.922667%2024.439467-24.439467l0.034133-61.098666a24.405333%2024.405333%200%200%200-24.405333-24.439467H420.352a183.296%20183.296%200%200%200-183.296%20183.296V762.538667c0%2013.482667%2010.922667%2024.439467%2024.405333%2024.439466h360.516267a164.9664%20164.9664%200%200%200%20165.000533-165.000533v-140.526933a24.439467%2024.439467%200%200%200-24.439466-24.439467z'%20fill='%23FFFFFF'%20p-id='6118'%3e%3c/path%3e%3c/svg%3e";
21050
20869
  const __vite_glob_0_3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21051
20870
  __proto__: null,
21052
20871
  default: logoGitee
21053
20872
  }, Symbol.toStringTag, { value: "Module" }));
21054
- const logoGithubWhite = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNzI4NDY4MDkyNTQ4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjI3NTk5IiBpZD0ibXhfbl8xNzI4NDY4MDkyNTQ5IiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPjxwYXRoIGQ9Ik01MzMuMzEyIDMyQTQ5MC40OTYgNDkwLjQ5NiAwIDAgMCA0Mi42ODggNTIyLjY4OGE0OTAuMjQgNDkwLjI0IDAgMCAwIDMzNS40ODggNDY1LjQ3MmMyNC41MTIgNC4yODggMzMuNjY0LTEwLjQzMiAzMy42NjQtMjMuMjk2IDAtMTEuNjQ4LTAuNTc2LTUwLjI0LTAuNTc2LTkxLjM5Mi0xMjMuMjY0IDIyLjcyLTE1NS4xMzYtMzAuMDgtMTY0LjkyOC01Ny42LTUuNTY4LTE0LjA4LTI5LjQ0LTU3LjY2NC01MC4zNjgtNjkuMzEyLTE3LjE1Mi05LjIxNi00MS42NjQtMzEuOTM2LTAuNjQtMzIuNTEyIDM4LjcyLTAuNjQgNjYuMzA0IDM1LjU4NCA3NS41MiA1MC4zMDQgNDQuMTYgNzQuMjQgMTE0LjY4OCA1My4zMTIgMTQyLjkxMiA0MC40NDggNC4yMjQtMzEuODcyIDE3LjE1Mi01My4zNzYgMzEuMjMyLTY1LjY2NC0xMDkuMTg0LTEyLjIyNC0yMjMuMjMyLTU0LjUyOC0yMjMuMjMyLTI0Mi4yNCAwLTUzLjMxMiAxOS4wMDgtOTcuNDcyIDUwLjMwNC0xMzEuODQtNC45MjgtMTIuMjg4LTIyLjA4LTYyLjU5MiA0Ljg2NC0xMzAuMDQ4IDAgMCA0MS4wODgtMTIuODY0IDEzNC45NzYgNTAuMzA0YTQ1NC43MiA0NTQuNzIgMCAwIDEgMTIyLjY4OC0xNi41NzZjNDEuNjY0IDAgODMuMzkyIDUuNTY4IDEyMi42MjQgMTYuNTc2IDkzLjg4OC02My44MDggMTM0LjkxMi01MC4zMDQgMTM0LjkxMi01MC4zMDQgMjcuMDA4IDY3LjQ1NiA5Ljg1NiAxMTcuNzYgNC45MjggMTMwLjA0OCAzMS4yOTYgMzQuMzY4IDUwLjMwNCA3Ny44ODggNTAuMzA0IDEzMS44NCAwIDE4OC4yODgtMTE0LjY4OCAyMjkuOTUyLTIyMy44NzIgMjQyLjI0IDE3Ljc5MiAxNS4zNiAzMy4wODggNDQuOCAzMy4wODggOTAuODE2IDAgNjUuNi0wLjU3NiAxMTguNC0wLjU3NiAxMzQuOTEyIDAgMTIuODY0IDkuMjE2IDI4LjIyNCAzMy43MjggMjMuMzZBNDkxLjQ1NiA0OTEuNDU2IDAgMCAwIDEwMjQgNTIyLjY4OCA0OTAuNDk2IDQ5MC40OTYgMCAwIDAgNTMzLjMxMiAzMnoiIHAtaWQ9IjI3NjAwIiBmaWxsPSIjZjBmNmZjIj48L3BhdGg+PC9zdmc+";
20873
+ const logoGithubWhite = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1728468092548'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='27599'%20id='mx_n_1728468092549'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='200'%20height='200'%3e%3cpath%20d='M533.312%2032A490.496%20490.496%200%200%200%2042.688%20522.688a490.24%20490.24%200%200%200%20335.488%20465.472c24.512%204.288%2033.664-10.432%2033.664-23.296%200-11.648-0.576-50.24-0.576-91.392-123.264%2022.72-155.136-30.08-164.928-57.6-5.568-14.08-29.44-57.664-50.368-69.312-17.152-9.216-41.664-31.936-0.64-32.512%2038.72-0.64%2066.304%2035.584%2075.52%2050.304%2044.16%2074.24%20114.688%2053.312%20142.912%2040.448%204.224-31.872%2017.152-53.376%2031.232-65.664-109.184-12.224-223.232-54.528-223.232-242.24%200-53.312%2019.008-97.472%2050.304-131.84-4.928-12.288-22.08-62.592%204.864-130.048%200%200%2041.088-12.864%20134.976%2050.304a454.72%20454.72%200%200%201%20122.688-16.576c41.664%200%2083.392%205.568%20122.624%2016.576%2093.888-63.808%20134.912-50.304%20134.912-50.304%2027.008%2067.456%209.856%20117.76%204.928%20130.048%2031.296%2034.368%2050.304%2077.888%2050.304%20131.84%200%20188.288-114.688%20229.952-223.872%20242.24%2017.792%2015.36%2033.088%2044.8%2033.088%2090.816%200%2065.6-0.576%20118.4-0.576%20134.912%200%2012.864%209.216%2028.224%2033.728%2023.36A491.456%20491.456%200%200%200%201024%20522.688%20490.496%20490.496%200%200%200%20533.312%2032z'%20p-id='27600'%20fill='%23f0f6fc'%3e%3c/path%3e%3c/svg%3e";
21055
20874
  const __vite_glob_0_4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21056
20875
  __proto__: null,
21057
20876
  default: logoGithubWhite
21058
20877
  }, Symbol.toStringTag, { value: "Module" }));
21059
- const logoGithub = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSIzMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWMvZ2l0aHViPC90aXRsZT4KICAgIDxnIGlkPSJpYy9naXRodWIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik0xNS4wMTE5OTgsMC41IEM2Ljk4NzIzOCwwLjUgMC41LDcuMDM1MDYyNzcgMC41LDE1LjExOTgyNjYgQzAuNSwyMS41ODI0MDk2IDQuNjU2NTk2OTcsMjcuMDUyODUxMiAxMC40MjI4OTg3LDI4Ljk4OTAxMjEgQzExLjE0MzgzNSwyOS4xMzQ1NjU3IDExLjQwNzkxMDksMjguNjc0NDM3OSAxMS40MDc5MTA5LDI4LjI4NzM4NCBDMTEuNDA3OTEwOSwyNy45NDg0NTE4IDExLjM4NDE0NzEsMjYuNzg2Njk1OSAxMS4zODQxNDcxLDI1LjU3NjIyNDEgQzcuMzQ3MjYwNTUsMjYuNDQ3NzYzOCA2LjUwNjYxMzgzLDIzLjgzMzQ0MTYgNi41MDY2MTM4MywyMy44MzM0NDE2IEM1Ljg1Nzg2MDMzLDIyLjEzOTA3ODEgNC44OTY2MTIwMSwyMS43MDM2MDUzIDQuODk2NjEyMDEsMjEuNzAzNjA1MyBDMy41NzUzNDExMywyMC44MDgwMDQ2IDQuOTkyODU1NjYsMjAuODA4MDA0NiA0Ljk5Mjg1NTY2LDIwLjgwODAwNDYgQzYuNDU4NDkyMDEsMjAuOTA0ODQyNCA3LjIyNzU1MDA4LDIyLjMwODY5MjcgNy4yMjc1NTAwOCwyMi4zMDg2OTI3IEM4LjUyNDc2MDA0LDI0LjUzNTM2NjggMTAuNjE1MDg5LDIzLjkwNjIxODUgMTEuNDU2MDMyNywyMy41MTg4Njc1IEMxMS41NzYwNDAzLDIyLjU3NDg0OCAxMS45NjA3MTc4LDIxLjkyMTM0MTcgMTIuMzY5MTU5MiwyMS41NTgzNDg2IEM5LjE0OTQ1MjYzLDIxLjIxOTQxNjUgNS43NjE5MTM3MywxOS45NjA4MjI4IDUuNzYxOTEzNzMsMTQuMzQ1MTI0NiBDNS43NjE5MTM3MywxMi43NDc1OTg4IDYuMzM4MTg3NDQsMTEuNDQwNTg2MiA3LjI1MTMxMzk0LDEwLjQyNDA4NjkgQzcuMTA3MjQ1NTEsMTAuMDYxMDkzOSA2LjYwMjU2MDQ0LDguNTYwMTA4NzkgNy4zOTU2Nzk0Miw2LjU1MTE3MTA4IEM3LjM5NTY3OTQyLDYuNTUxMTcxMDggOC42MjEwMDM2OSw2LjE2MzgyMDA5IDExLjM4Mzg1LDguMDUxODU5MTMgQzEyLjU2NjcyMjgsNy43MzE4Mzc4OCAxMy43ODY2MDAzLDcuNTY5MDQxMDYgMTUuMDExOTk4LDcuNTY3NjcwMzkgQzE2LjIzNzMyMjMsNy41Njc2NzAzOSAxNy40ODY0MTA0LDcuNzM3Mjg0OTcgMTguNjM5ODQ5LDguMDUxODU5MTMgQzIxLjQwMjk5MjQsNi4xNjM4MjAwOSAyMi42MjgzMTY2LDYuNTUxMTcxMDggMjIuNjI4MzE2Niw2LjU1MTE3MTA4IEMyMy40MjE0MzU2LDguNTYwMTA4NzkgMjIuOTE2NDUzNSwxMC4wNjEwOTM5IDIyLjc3MjM4NTEsMTAuNDI0MDg2OSBDMjMuNzA5NTcyNSwxMS40NDA1ODYyIDI0LjI2MjA4MjMsMTIuNzQ3NTk4OCAyNC4yNjIwODIzLDE0LjM0NTEyNDYgQzI0LjI2MjA4MjMsMTkuOTYwODIyOCAyMC44NzQ1NDM0LDIxLjE5NTA1ODYgMTcuNjMwNzc1OSwyMS41NTgzNDg2IEMxOC4xNTk1MjE5LDIyLjAxODE3OTQgMTguNjE1Nzg4MSwyMi44ODk0MjIxIDE4LjYxNTc4ODEsMjQuMjY5MjExNSBDMTguNjE1Nzg4MSwyNi4yMjk3MzAzIDE4LjU5MjAyNDIsMjcuODAzMTk1MiAxOC41OTIwMjQyLDI4LjI4NzA4NjkgQzE4LjU5MjAyNDIsMjguNjc0NDM3OSAxOC44NTYzOTcyLDI5LjEzNDU2NTcgMTkuNTc3MDM2NCwyOC45ODkzMDkxIEMyNS4zNDMzMzgyLDI3LjA1MjU1NDEgMjkuNSwyMS41ODI0MDk2IDI5LjUsMTUuMTE5ODI2NiBDMjkuNTIzNjk5LDcuMDM1MDYyNzcgMjMuMDEyNjk3MiwwLjUgMTUuMDExOTk4LDAuNSBaIiBpZD0i6Lev5b6EIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==";
20878
+ const logoGithub = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='30px'%20height='30px'%20viewBox='0%200%2030%2030'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3ctitle%3eic/github%3c/title%3e%3cg%20id='ic/github'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M15.011998,0.5%20C6.987238,0.5%200.5,7.03506277%200.5,15.1198266%20C0.5,21.5824096%204.65659697,27.0528512%2010.4228987,28.9890121%20C11.143835,29.1345657%2011.4079109,28.6744379%2011.4079109,28.287384%20C11.4079109,27.9484518%2011.3841471,26.7866959%2011.3841471,25.5762241%20C7.34726055,26.4477638%206.50661383,23.8334416%206.50661383,23.8334416%20C5.85786033,22.1390781%204.89661201,21.7036053%204.89661201,21.7036053%20C3.57534113,20.8080046%204.99285566,20.8080046%204.99285566,20.8080046%20C6.45849201,20.9048424%207.22755008,22.3086927%207.22755008,22.3086927%20C8.52476004,24.5353668%2010.615089,23.9062185%2011.4560327,23.5188675%20C11.5760403,22.574848%2011.9607178,21.9213417%2012.3691592,21.5583486%20C9.14945263,21.2194165%205.76191373,19.9608228%205.76191373,14.3451246%20C5.76191373,12.7475988%206.33818744,11.4405862%207.25131394,10.4240869%20C7.10724551,10.0610939%206.60256044,8.56010879%207.39567942,6.55117108%20C7.39567942,6.55117108%208.62100369,6.16382009%2011.38385,8.05185913%20C12.5667228,7.73183788%2013.7866003,7.56904106%2015.011998,7.56767039%20C16.2373223,7.56767039%2017.4864104,7.73728497%2018.639849,8.05185913%20C21.4029924,6.16382009%2022.6283166,6.55117108%2022.6283166,6.55117108%20C23.4214356,8.56010879%2022.9164535,10.0610939%2022.7723851,10.4240869%20C23.7095725,11.4405862%2024.2620823,12.7475988%2024.2620823,14.3451246%20C24.2620823,19.9608228%2020.8745434,21.1950586%2017.6307759,21.5583486%20C18.1595219,22.0181794%2018.6157881,22.8894221%2018.6157881,24.2692115%20C18.6157881,26.2297303%2018.5920242,27.8031952%2018.5920242,28.2870869%20C18.5920242,28.6744379%2018.8563972,29.1345657%2019.5770364,28.9893091%20C25.3433382,27.0525541%2029.5,21.5824096%2029.5,15.1198266%20C29.523699,7.03506277%2023.0126972,0.5%2015.011998,0.5%20Z'%20id='路径'%20fill='%23000000'%3e%3c/path%3e%3c/g%3e%3c/svg%3e";
21060
20879
  const __vite_glob_0_5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21061
20880
  __proto__: null,
21062
20881
  default: logoGithub
21063
20882
  }, Symbol.toStringTag, { value: "Module" }));
21064
- const logoGitlab = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMyLjc3NzIgMTkuOTYxTDMxLjExNzMgMTQuODUyNkwyNy44Mjc3IDQuNzI3NjhDMjcuNjU4NSA0LjIwNjc2IDI2LjkyMTUgNC4yMDY3NiAyNi43NTIyIDQuNzI3NjhMMjMuNDYyMyAxNC44NTI1SDEyLjUzODFMOS4yNDgyOSA0LjcyNzZDOS4wNzkwOSA0LjIwNjY4IDguMzQyMDkgNC4yMDY2OCA4LjE3Mjc1IDQuNzI3Nkw0Ljg4MzA3IDE0Ljg1MjVMMy4yMjMzMyAxOS45NjExQzMuMTQ5NTIgMjAuMTg4MiAzLjE0OTUyIDIwLjQzMjggMy4yMjMzMSAyMC42NkMzLjI5NzA5IDIwLjg4NzEgMy40NDA4OSAyMS4wODUgMy42MzQwOSAyMS4yMjU0TDE3Ljk5OTkgMzEuNjYyOUwzMi4zNjU4IDIxLjIyNTVDMzIuNzYyMSAyMC45Mzc1IDMyLjkyOCAyMC40MjcgMzIuNzc2NiAxOS45NjExIiBmaWxsPSIjRkM2RDI2Ii8+CjxwYXRoIGQ9Ik0xOC4wMDAyIDMxLjY2MjNMMjMuNDYyMyAxNC44NTE2SDEyLjUzODFMMTguMDAwMiAzMS42NjIzWiIgZmlsbD0iI0UyNDMyOSIvPgo8cGF0aCBkPSJNMTcuOTk5NyAzMS42NjI3TDEyLjUzNzYgMTQuODUyNUg0Ljg4MjgxTDE3Ljk5OTcgMzEuNjYyN1oiIGZpbGw9IiNGQzZEMjYiLz4KPHBhdGggZD0iTTQuODgzMjEgMTQuODUyNUwzLjIyMzMyIDE5Ljk2MTFDMy4xNDk1MiAyMC4xODgyIDMuMTQ5NTIgMjAuNDMyOSAzLjIyMzMyIDIwLjY2QzMuMjk3MTIgMjAuODg3MSAzLjQ0MDk0IDIxLjA4NSAzLjYzNDE2IDIxLjIyNTRMMTggMzEuNjYzTDQuODgzMjEgMTQuODUyNVoiIGZpbGw9IiNGQ0EzMjYiLz4KPHBhdGggZD0iTTQuODgyODEgMTQuODUxNkgxMi41Mzc2TDkuMjQ3ODEgNC43MjY2OEM5LjA3ODYxIDQuMjA1NjkgOC4zNDE1NSA0LjIwNTY5IDguMTcyMzUgNC43MjY2OEw0Ljg4MjgxIDE0Ljg1MTZaIiBmaWxsPSIjRTI0MzI5Ii8+CjxwYXRoIGQ9Ik0xOC4wMDAxIDMxLjY2MjdMMjMuNDYyMiAxNC44NTI1SDMxLjExN0wxOC4wMDAxIDMxLjY2MjdaIiBmaWxsPSIjRkM2RDI2Ii8+CjxwYXRoIGQ9Ik0zMS4xMTc4IDE0Ljg1MjVMMzIuNzc3NyAxOS45NjExQzMyLjg1MTUgMjAuMTg4MiAzMi44NTE1IDIwLjQzMjkgMzIuNzc3NyAyMC42NkMzMi43MDM5IDIwLjg4NzEgMzIuNTYwMSAyMS4wODUgMzIuMzY2OCAyMS4yMjU0TDE4LjAwMSAzMS42NjNMMzEuMTE3OCAxNC44NTI1WiIgZmlsbD0iI0ZDQTMyNiIvPgo8cGF0aCBkPSJNMzEuMTE2NyAxNC44NTE2SDIzLjQ2MTlMMjYuNzUxNyA0LjcyNjY4QzI2LjkyMSA0LjIwNTY5IDI3LjY1OCA0LjIwNTY5IDI3LjgyNzIgNC43MjY2OEwzMS4xMTY3IDE0Ljg1MTZaIiBmaWxsPSIjRTI0MzI5Ii8+Cjwvc3ZnPgo=";
20883
+ const logoGitlab = "data:image/svg+xml,%3csvg%20width='36'%20height='36'%20viewBox='0%200%2036%2036'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M32.7772%2019.961L31.1173%2014.8526L27.8277%204.72768C27.6585%204.20676%2026.9215%204.20676%2026.7522%204.72768L23.4623%2014.8525H12.5381L9.24829%204.7276C9.07909%204.20668%208.34209%204.20668%208.17275%204.7276L4.88307%2014.8525L3.22333%2019.9611C3.14952%2020.1882%203.14952%2020.4328%203.22331%2020.66C3.29709%2020.8871%203.44089%2021.085%203.63409%2021.2254L17.9999%2031.6629L32.3658%2021.2255C32.7621%2020.9375%2032.928%2020.427%2032.7766%2019.9611'%20fill='%23FC6D26'/%3e%3cpath%20d='M18.0002%2031.6623L23.4623%2014.8516H12.5381L18.0002%2031.6623Z'%20fill='%23E24329'/%3e%3cpath%20d='M17.9997%2031.6627L12.5376%2014.8525H4.88281L17.9997%2031.6627Z'%20fill='%23FC6D26'/%3e%3cpath%20d='M4.88321%2014.8525L3.22332%2019.9611C3.14952%2020.1882%203.14952%2020.4329%203.22332%2020.66C3.29712%2020.8871%203.44094%2021.085%203.63416%2021.2254L18%2031.663L4.88321%2014.8525Z'%20fill='%23FCA326'/%3e%3cpath%20d='M4.88281%2014.8516H12.5376L9.24781%204.72668C9.07861%204.20569%208.34155%204.20569%208.17235%204.72668L4.88281%2014.8516Z'%20fill='%23E24329'/%3e%3cpath%20d='M18.0001%2031.6627L23.4622%2014.8525H31.117L18.0001%2031.6627Z'%20fill='%23FC6D26'/%3e%3cpath%20d='M31.1178%2014.8525L32.7777%2019.9611C32.8515%2020.1882%2032.8515%2020.4329%2032.7777%2020.66C32.7039%2020.8871%2032.5601%2021.085%2032.3668%2021.2254L18.001%2031.663L31.1178%2014.8525Z'%20fill='%23FCA326'/%3e%3cpath%20d='M31.1167%2014.8516H23.4619L26.7517%204.72668C26.921%204.20569%2027.658%204.20569%2027.8272%204.72668L31.1167%2014.8516Z'%20fill='%23E24329'/%3e%3c/svg%3e";
21065
20884
  const __vite_glob_0_6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21066
20885
  __proto__: null,
21067
20886
  default: logoGitlab
21068
20887
  }, Symbol.toStringTag, { value: "Module" }));
21069
- const logoHb = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkwIiBoZWlnaHQ9IjI5MCIgdmlld0JveD0iMCAwIDI5MCAyOTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyOTAiIGhlaWdodD0iMjkwIiByeD0iMTQ1IiBmaWxsPSIjMUI5RjM1Ii8+CjxwYXRoIGQ9Ik0yMzIuNSA2OS41SDU3LjVMNzAuOTYyNSAyMjdMMTQ1IDI0NC41TDIxOS4wMzggMjI3TDIzMi41IDY5LjVaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNOTUgOTQuNUgxMDcuNVYxMzJIMTgyLjVWOTQuNUgxOTVWMTk0LjVIMTgyLjVWMTQ0LjVIMTA3LjVWMTk0LjVIOTVWOTQuNVoiIGZpbGw9IiMxQjlGMzUiLz4KPC9zdmc+Cg==";
20888
+ const logoHb = "data:image/svg+xml,%3csvg%20width='290'%20height='290'%20viewBox='0%200%20290%20290'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='290'%20height='290'%20rx='145'%20fill='%231B9F35'/%3e%3cpath%20d='M232.5%2069.5H57.5L70.9625%20227L145%20244.5L219.038%20227L232.5%2069.5Z'%20fill='white'/%3e%3cpath%20d='M95%2094.5H107.5V132H182.5V94.5H195V194.5H182.5V144.5H107.5V194.5H95V94.5Z'%20fill='%231B9F35'/%3e%3c/svg%3e";
21070
20889
  const __vite_glob_0_7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21071
20890
  __proto__: null,
21072
20891
  default: logoHb
21073
20892
  }, Symbol.toStringTag, { value: "Module" }));
21074
- const logoHuawei = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSIzMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWMvaHVhd2VpPC90aXRsZT4KICAgIDxnIGlkPSJpYy9odWF3ZWkiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik0xMi45MTk0MzA2LDIwLjEzNjE5MDYgQzEyLjk1MjI0NjUsMjAuMTA5NDY5MSAxMi45NjYzMTA0LDIwLjA2Mzk5NTYgMTIuOTQ0Mjc2OSwyMC4wMjYwMjMgQzEwLjY5Njg1OCwxNS4yMDMwMjY1IDcuODk1Nzg4NDMsMTAuNjU4NDk2MSA0LjU5NTQ0ODY4LDYuNDg0MzE2NDIgQzQuNTk1NDQ4NjgsNi40ODQzMTY0MiAxLjk3MTU4NDgxLDguOTY4OTQ3MiAyLjE1ODYzNTMyLDExLjQ2ODU3OTUgQzIuMjUyMzk0OTcsMTIuNjMyMTM2OCAyLjc5NDMyNTc2LDEzLjcxMjcxNjggMy42Nzg5NDgwOCwxNC40Njg4ODg0IEM1Ljk2NjY4MzU5LDE2LjY5ODk2MTcgMTEuNTA2NDcyNiwxOS41MTMxNTc3IDEyLjc5NDczMDMsMjAuMTUwNzIzMyBDMTIuODM1NTE1NywyMC4xNzMyMjU2IDEyLjg4NjYxNDcsMjAuMTY1NzI0OSAxMi45MTg0OTMsMjAuMTMxOTcxNCBNMTIuMDYzNDA1LDIyLjA0NDY2ODMgQzEyLjA0NjA1OTQsMjEuOTk0MDM4MSAxMS45OTg3MTA4LDIxLjk2MDI4NDYgMTEuOTQ0Nzk5LDIxLjk2MDI4NDYgTDExLjk0NDc5OSwyMS45NjMwOTc0IEwyLjcyMTY2MjAzLDIyLjI4NDIyNDIgQzMuNzIxNjA4NzIsMjQuMDY4MDAxNiA1LjQwNjAwMDg3LDI1LjQ1MjM2MjggNy4xNjExODE1NiwyNS4wMjg1NjkyIEM4LjM3MjA4NzQ2LDI0LjcyNTcyNTUgMTEuMTE2NDMyNSwyMi44MTIwOTEgMTIuMDE5ODA2NywyMi4xNjYwODcgTDEyLjAxODg2OTEsMjIuMTYyMzM2NiBDMTIuMDg3NzgyNSwyMi4wOTk5ODY1IDEyLjA2MjkzNjIsMjIuMDQ5ODI1MSAxMi4wNjI5MzYyLDIyLjA0OTgyNTEgTTEyLjIwMjE2OTMsMjEuMjIwMDUyMSBDMTIuMjQ2MjM2MywyMS4xNDczODg0IDEyLjE2NzQ3ODIsMjEuMDg1MDM4MiAxMi4xNjc0NzgyLDIxLjA4NTAzODIgTDEyLjE2ODQxNTgsMjEuMDgxMjg3OSBDOC4xMTc1MzAwMSwxOC4zNDQ5MTI0IDAuMjY2MDk2NzQsMTQuMTQ5NjM2OCAwLjI2NjA5Njc0LDE0LjE0OTYzNjggQy0wLjYxNjY1MDM4NCwxNi44Nzg5ODAyIDAuNzYzMDIyODk3LDE5LjgyNTg0NjEgMy40MjU3OTcwMiwyMC44OTQ3MDYyIEMzLjk4ODg1OTMyLDIxLjExODQ1NzQgNC41ODQ0NDI1MiwyMS4yNDk1NDI3IDUuMTg5NDE2MDcsMjEuMjgyODcxMSBDNS4zMjgxODAzNiwyMS4zMDg2NTUgMTAuNjc0MzU1NywyMS4yODU2ODM5IDEyLjEwNzAwMzIsMjEuMjc5MTIwNyBDMTIuMTQ3MzE5OSwyMS4yNzQ0MzI3IDEyLjE4Mjk0ODUsMjEuMjUwOTkyOCAxMi4yMDI2MzgxLDIxLjIxNDg5NTQgTTEyLjgxNDQxOTgsMi41MDA0Njg4IEMxMi40MTIxOTA5LDIuNTM1MTU5ODcgMTEuMzI4MzI5MywyLjc4MTc0Nzc1IDExLjMyODMyOTMsMi43ODE3NDc3NSBDOS44OTgwNTc4MSwzLjE0Njg1OTM0IDguNzU2ODY1NTQsNC4yMjMyMDUxIDguMzA4Nzk5Nyw1LjYyOTY5NzE5IEM4LjA1NTY0ODY0LDYuNTg4ODU4NDMgOC4wNjAzMzY2Miw3LjU5NzcxMjI5IDguMzIxNDU3MjUsOC41NTQ5OTgzMyBDOS4xMzU3NTk4MywxMi4xNzEzMDgxIDEzLjE0NzczNTMsMTguMTE1MjAxMyAxNC4wMDc5ODAyLDE5LjM2MTczNTggQzE0LjA2ODkyMzksMTkuNDIyNjc5NiAxNC4xMTkwODUzLDE5LjQwMDE3NzMgMTQuMTE5MDg1MywxOS40MDAxNzczIEMxNC4xNzE1OTA3LDE5LjM4NzUxOTcgMTQuMjA3MjE5NCwxOS4zMzkyMzM1IDE0LjIwNDQwNjYsMTkuMjg1MzIxNyBMMTQuMjA2MjgxOCwxOS4yODUzMjE3IEMxNS41MzIwNDMzLDYuMDE2OTI0NTUgMTIuODEzOTUxLDIuNSAxMi44MTM5NTEsMi41IE0xNS44NjcyMzQxLDE5LjM5NzM2NDUgQzE1LjkxNzg2NDMsMTkuNDE3NTIyOCAxNS45NzUwNTc3LDE5LjM5NjQyNjkgMTYuMDAwMzcyOCwxOS4zNDc2NzE5IEwxNi4wMDEzMTA0LDE5LjM0NzY3MTkgQzE2Ljg5MjAyNzEsMTguMDY2OTE1IDIwLjg3MzUzMDcsMTIuMTU2MzA2NiAyMS42ODQwODI5LDguNTU1OTM1OTMgQzIxLjkyNjIwODcsNy41OTY2NTQyNSAyMS45MzE1MTc5LDYuNTkyODkyODcgMjEuNjk5NTUzMiw1LjYzMTEwMzU4IEMyMS4yNDU5MjcyLDQuMjE3NzUyMTYgMjAuMDkyNDA3NSwzLjE0MDM0MTMzIDE4LjY1MTQyNjksMi43ODQwOTE3NSBDMTguNjUxNDI2OSwyLjc4NDA5MTc1IDE3Ljk0NjM1NDMsMi42MDU5NDg0MSAxNy4xOTkwODk5LDIuNTAxNDA2MzkgQzE3LjE5OTA4OTksMi41MDE0MDYzOSAxNC40NjUwNTg1LDYuMDIwMjA2MTQgMTUuNzk0NTcwMywxOS4yOTcwNDE3IEwxNS43OTY0NDU1LDE5LjI5NzA0MTcgQzE1Ljc5NjkxNDMsMTkuMzQyMDQ2MyAxNS44MjQ1NzM0LDE5LjM4MTQyNTQgMTUuODY2NzY1MywxOS4zOTc4MzMzIE0xOC4wNDk5NTg4LDIxLjk2MzA5NzQgQzE4LjA0OTk1ODgsMjEuOTYzMDk3NCAxNy45NjkzMjU1LDIxLjk3Mzg3OTcgMTcuOTQ2ODIzMSwyMi4wMzM0MTcxIEMxNy45MzYwNDA4LDIyLjA3ODg5MDYgMTcuOTQ5NjM1OSwyMi4xMjYyMzkyIDE3Ljk4MjQ1MTgsMjIuMTU5MDU1MSBMMTcuOTgxNTE0MiwyMi4xNTkwNTUxIEMxOC44NjM3OTI1LDIyLjc5MTkzMjcgMjEuNTQ0MzgxLDI0LjY2NDMxMyAyMi44MzA3NjM0LDI1LjAyNzE2MjggQzIyLjgzMDc2MzQsMjUuMDI3MTYyOCAyNS4yMTUwNzE0LDI1LjgzODE4MzggMjcuMjg2MjIyMSwyMi4yODE4ODAyIEwxOC4wNTA4OTY0LDIxLjk1OTgxNTggTDE4LjA0OTk1ODgsMjEuOTYzMDk3NCBaIE0yOS43NDE3ODc0LDE0LjEzMDQxNiBDMjkuNzQxNzg3NCwxNC4xMzA0MTYgMjEuOTAxMTM2NSwxOC4zMzY5NDI4IDE3Ljg0NjUwMDMsMjEuMDcyMzgwNyBMMTcuODQ3NDM3OSwyMS4wNzIzODA3IEMxNy44MDA1NTgxLDIxLjEwMjg1MjYgMTcuNzg2NDk0MSwyMS4xNTY3NjQ0IDE3LjgwMDU1ODEsMjEuMjA3Mzk0NiBDMTcuODAwNTU4MSwyMS4yMDczOTQ2IDE3LjgzODk5OTUsMjEuMjc2MzA3OSAxNy44OTYxOTI5LDIxLjI3NjMwNzkgTDE3Ljg5NjE5MjksMjEuMjc4MTgzMSBMMjQuOTc1MDQ2NywyMS4yNTk0MzEyIEMyNS41MTk2NDc1LDIxLjIxNjc2OTcgMjYuMDU0OTA0OSwyMS4wOTM1NDA0IDI2LjU2MzMzNTIsMjAuODkzNzY4NiBDMjcuODg3ODI4OSwyMC4zNzQ0NTI5IDI4Ljk1NDQ1NDQsMTkuMzU0MzEyMyAyOS41MzIyMzQ2LDE4LjA1NDI1NzUgQzMwLjA3NDg0MjksMTYuODE0NjQ5OCAzMC4xNDc5OTIsMTUuNDE5OTg1IDI5LjczODAzNywxNC4xMzA0MTYgTTE3LjEwMjA0ODcsMjAuMTMxMDMzOCBDMTcuMTM4MzM2MiwyMC4xNTc5MjY2IDE3LjE4Njg0ODEsMjAuMTYxNTc0MSAxNy4yMjY3NDksMjAuMTQwNDA5NyBMMTcuMjI2NzQ5LDIwLjE0MjI4NDkgQzE4LjU0NzgyMjUsMTkuNDgzMTU0NiAyNC4wNDYzNTczLDE2LjY4NzI0MTggMjYuMzIzMzEwNSwxNC40Njg0MTk2IEMyNy4yMDc0MzA0LDEzLjcwMTM1MzkgMjcuNzUzMjQzMSwxMi42MTY0NjcgMjcuODQyMjE2OCwxMS40NDkzNTg4IEMyOC4wMDgxNzE0LDguODcwOTY4MzYgMjUuNDA4MjE2Myw2LjQ3Nzc1MzI0IDI1LjQwODIxNjMsNi40Nzc3NTMyNCBDMjIuMTE2NjI4NiwxMC42NDAyNzA2IDE5LjMxOTc4MSwxNS4xNzExMDcgMTcuMDczOTIwOCwxOS45NzkxNDMxIEwxNy4wNzY3MzM2LDE5Ljk3OTE0MzEgQzE3LjA1MjM1MDEsMjAuMDI4MjcxOCAxNy4wNjIzODE2LDIwLjA4NzUxNDYgMTcuMTAxNTc5OSwyMC4xMjU4NzciIGlkPSLlvaLnirYiIGZpbGw9IiNFMTIyMjkiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+";
20893
+ const logoHuawei = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='30px'%20height='30px'%20viewBox='0%200%2030%2030'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3ctitle%3eic/huawei%3c/title%3e%3cg%20id='ic/huawei'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M12.9194306,20.1361906%20C12.9522465,20.1094691%2012.9663104,20.0639956%2012.9442769,20.026023%20C10.696858,15.2030265%207.89578843,10.6584961%204.59544868,6.48431642%20C4.59544868,6.48431642%201.97158481,8.9689472%202.15863532,11.4685795%20C2.25239497,12.6321368%202.79432576,13.7127168%203.67894808,14.4688884%20C5.96668359,16.6989617%2011.5064726,19.5131577%2012.7947303,20.1507233%20C12.8355157,20.1732256%2012.8866147,20.1657249%2012.918493,20.1319714%20M12.063405,22.0446683%20C12.0460594,21.9940381%2011.9987108,21.9602846%2011.944799,21.9602846%20L11.944799,21.9630974%20L2.72166203,22.2842242%20C3.72160872,24.0680016%205.40600087,25.4523628%207.16118156,25.0285692%20C8.37208746,24.7257255%2011.1164325,22.812091%2012.0198067,22.166087%20L12.0188691,22.1623366%20C12.0877825,22.0999865%2012.0629362,22.0498251%2012.0629362,22.0498251%20M12.2021693,21.2200521%20C12.2462363,21.1473884%2012.1674782,21.0850382%2012.1674782,21.0850382%20L12.1684158,21.0812879%20C8.11753001,18.3449124%200.26609674,14.1496368%200.26609674,14.1496368%20C-0.616650384,16.8789802%200.763022897,19.8258461%203.42579702,20.8947062%20C3.98885932,21.1184574%204.58444252,21.2495427%205.18941607,21.2828711%20C5.32818036,21.308655%2010.6743557,21.2856839%2012.1070032,21.2791207%20C12.1473199,21.2744327%2012.1829485,21.2509928%2012.2026381,21.2148954%20M12.8144198,2.5004688%20C12.4121909,2.53515987%2011.3283293,2.78174775%2011.3283293,2.78174775%20C9.89805781,3.14685934%208.75686554,4.2232051%208.3087997,5.62969719%20C8.05564864,6.58885843%208.06033662,7.59771229%208.32145725,8.55499833%20C9.13575983,12.1713081%2013.1477353,18.1152013%2014.0079802,19.3617358%20C14.0689239,19.4226796%2014.1190853,19.4001773%2014.1190853,19.4001773%20C14.1715907,19.3875197%2014.2072194,19.3392335%2014.2044066,19.2853217%20L14.2062818,19.2853217%20C15.5320433,6.01692455%2012.813951,2.5%2012.813951,2.5%20M15.8672341,19.3973645%20C15.9178643,19.4175228%2015.9750577,19.3964269%2016.0003728,19.3476719%20L16.0013104,19.3476719%20C16.8920271,18.066915%2020.8735307,12.1563066%2021.6840829,8.55593593%20C21.9262087,7.59665425%2021.9315179,6.59289287%2021.6995532,5.63110358%20C21.2459272,4.21775216%2020.0924075,3.14034133%2018.6514269,2.78409175%20C18.6514269,2.78409175%2017.9463543,2.60594841%2017.1990899,2.50140639%20C17.1990899,2.50140639%2014.4650585,6.02020614%2015.7945703,19.2970417%20L15.7964455,19.2970417%20C15.7969143,19.3420463%2015.8245734,19.3814254%2015.8667653,19.3978333%20M18.0499588,21.9630974%20C18.0499588,21.9630974%2017.9693255,21.9738797%2017.9468231,22.0334171%20C17.9360408,22.0788906%2017.9496359,22.1262392%2017.9824518,22.1590551%20L17.9815142,22.1590551%20C18.8637925,22.7919327%2021.544381,24.664313%2022.8307634,25.0271628%20C22.8307634,25.0271628%2025.2150714,25.8381838%2027.2862221,22.2818802%20L18.0508964,21.9598158%20L18.0499588,21.9630974%20Z%20M29.7417874,14.130416%20C29.7417874,14.130416%2021.9011365,18.3369428%2017.8465003,21.0723807%20L17.8474379,21.0723807%20C17.8005581,21.1028526%2017.7864941,21.1567644%2017.8005581,21.2073946%20C17.8005581,21.2073946%2017.8389995,21.2763079%2017.8961929,21.2763079%20L17.8961929,21.2781831%20L24.9750467,21.2594312%20C25.5196475,21.2167697%2026.0549049,21.0935404%2026.5633352,20.8937686%20C27.8878289,20.3744529%2028.9544544,19.3543123%2029.5322346,18.0542575%20C30.0748429,16.8146498%2030.147992,15.419985%2029.738037,14.130416%20M17.1020487,20.1310338%20C17.1383362,20.1579266%2017.1868481,20.1615741%2017.226749,20.1404097%20L17.226749,20.1422849%20C18.5478225,19.4831546%2024.0463573,16.6872418%2026.3233105,14.4684196%20C27.2074304,13.7013539%2027.7532431,12.616467%2027.8422168,11.4493588%20C28.0081714,8.87096836%2025.4082163,6.47775324%2025.4082163,6.47775324%20C22.1166286,10.6402706%2019.319781,15.171107%2017.0739208,19.9791431%20L17.0767336,19.9791431%20C17.0523501,20.0282718%2017.0623816,20.0875146%2017.1015799,20.125877'%20id='形状'%20fill='%23E12229'%3e%3c/path%3e%3c/g%3e%3c/svg%3e";
21075
20894
  const __vite_glob_0_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21076
20895
  __proto__: null,
21077
20896
  default: logoHuawei
21078
20897
  }, Symbol.toStringTag, { value: "Module" }));
21079
- const logoMobile = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjkzOTAwNTM0MTY0IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYwNDAiIGlkPSJteF9uXzE2OTM5MDA1MzQxNjYiIHdpZHRoPSI2NCIgaGVpZ2h0PSI2NCIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik0yOTAuMTMzMzMzIDM0LjEzMzMzM2g0NDMuNzMzMzM0YTEwMi40IDEwMi40IDAgMCAxIDEwMi40IDEwMi40djc1MC45MzMzMzRhMTAyLjQgMTAyLjQgMCAwIDEtMTAyLjQgMTAyLjRoLTQ0My43MzMzMzRhMTAyLjQgMTAyLjQgMCAwIDEtMTAyLjQtMTAyLjRWMTM2LjUzMzMzM2ExMDIuNCAxMDIuNCAwIDAgMSAxMDIuNC0xMDIuNHoiIGZpbGw9IiNFNEU5RjAiIHAtaWQ9IjYwNDEiPjwvcGF0aD48cGF0aCBkPSJNNzMzLjg2NjY2NyAzNC4xMzMzMzNhMTAyLjQgMTAyLjQgMCAwIDEgMTAyLjQgMTAyLjR2NzUwLjkzMzMzNGExMDIuNCAxMDIuNCAwIDAgMS0xMDIuNCAxMDIuNGgtNDQzLjczMzMzNGExMDIuNCAxMDIuNCAwIDAgMS0xMDIuNC0xMDIuNFYxMzYuNTMzMzMzYTEwMi40IDEwMi40IDAgMCAxIDEwMi40LTEwMi40aDQ0My43MzMzMzR6TTYxNC40IDExOS40NjY2NjdhMzQuMTMzMzMzIDM0LjEzMzMzMyAwIDAgMS0zNC4xMzMzMzMgMzQuMTMzMzMzaC0xMzYuNTMzMzM0YTM0LjEzMzMzMyAzNC4xMzMzMzMgMCAwIDEtMzQuMTMzMzMzLTM0LjEzMzMzM3YtMzQuMTMzMzM0SDI5MC4xMzMzMzNBNTEuMiA1MS4yIDAgMCAwIDIzOC45MzMzMzMgMTM2LjUzMzMzM3Y3NTAuOTMzMzM0YTUxLjIgNTEuMiAwIDAgMCA1MS4yIDUxLjJoNDQzLjczMzMzNEE1MS4yIDUxLjIgMCAwIDAgNzg1LjA2NjY2NyA4ODcuNDY2NjY3VjEzNi41MzMzMzNhNTEuMiA1MS4yIDAgMCAwLTUxLjItNTEuMkg2MTQuNHYzNC4xMzMzMzR6TTUxMiA3NTAuOTMzMzMzYTY4LjI2NjY2NyA2OC4yNjY2NjcgMCAxIDEgMCAxMzYuNTMzMzM0IDY4LjI2NjY2NyA2OC4yNjY2NjcgMCAwIDEgMC0xMzYuNTMzMzM0eiIgZmlsbD0iIzcwN0E4NyIgcC1pZD0iNjA0MiI+PC9wYXRoPjwvc3ZnPg==";
20898
+ const logoMobile = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1693900534164'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='6040'%20id='mx_n_1693900534166'%20width='64'%20height='64'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath%20d='M290.133333%2034.133333h443.733334a102.4%20102.4%200%200%201%20102.4%20102.4v750.933334a102.4%20102.4%200%200%201-102.4%20102.4h-443.733334a102.4%20102.4%200%200%201-102.4-102.4V136.533333a102.4%20102.4%200%200%201%20102.4-102.4z'%20fill='%23E4E9F0'%20p-id='6041'%3e%3c/path%3e%3cpath%20d='M733.866667%2034.133333a102.4%20102.4%200%200%201%20102.4%20102.4v750.933334a102.4%20102.4%200%200%201-102.4%20102.4h-443.733334a102.4%20102.4%200%200%201-102.4-102.4V136.533333a102.4%20102.4%200%200%201%20102.4-102.4h443.733334zM614.4%20119.466667a34.133333%2034.133333%200%200%201-34.133333%2034.133333h-136.533334a34.133333%2034.133333%200%200%201-34.133333-34.133333v-34.133334H290.133333A51.2%2051.2%200%200%200%20238.933333%20136.533333v750.933334a51.2%2051.2%200%200%200%2051.2%2051.2h443.733334A51.2%2051.2%200%200%200%20785.066667%20887.466667V136.533333a51.2%2051.2%200%200%200-51.2-51.2H614.4v34.133334zM512%20750.933333a68.266667%2068.266667%200%201%201%200%20136.533334%2068.266667%2068.266667%200%200%201%200-136.533334z'%20fill='%23707A87'%20p-id='6042'%3e%3c/path%3e%3c/svg%3e";
21080
20899
  const __vite_glob_0_9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21081
20900
  __proto__: null,
21082
20901
  default: logoMobile
21083
20902
  }, Symbol.toStringTag, { value: "Module" }));
21084
- const logoWechat = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE1MzJfMTgyKSI+CjxwYXRoIGQ9Ik01LjI3MTY1IDUuMzQxMDRDNC45OTQxOSA1LjM0MTA0IDQuNzE2NzQgNS41MjYwMSA0LjcxNjc0IDUuODAzNDdDNC43MTY3NCA2LjA4MDkzIDQuOTk0MTkgNi4yNjU5IDUuMjcxNjUgNi4yNjU5QzUuNTQ5MTEgNi4yNjU5IDUuNzM0MDggNi4wODA5MyA1LjczNDA4IDUuODAzNDdDNS43MzQwOCA1LjUxNDQ1IDUuNTQ5MTEgNS4zNDEwNCA1LjI3MTY1IDUuMzQxMDRaTTkuMDI4ODcgOC4wMjMxMkM4Ljg0MzkgOC4wMjMxMiA4LjY3MDQ5IDguMjE5NjUgOC42NzA0OSA4LjM5MzA2QzguNjcwNDkgOC41ODk2IDguODU1NDYgOC43NjMwMSA5LjAyODg3IDguNzYzMDFDOS4zMDYzMyA4Ljc2MzAxIDkuNDkxMyA4LjU3ODA0IDkuNDkxMyA4LjM5MzA2QzkuNDkxMyA4LjIwODA5IDkuMzA2MzMgOC4wMjMxMiA5LjAyODg3IDguMDIzMTJaTTcuODM4MTIgNi4yNjU5QzguMTE1NTggNi4yNjU5IDguMzAwNTUgNi4wNjkzNyA4LjMwMDU1IDUuODAzNDdDOC4zMDA1NSA1LjUyNjAxIDguMTE1NTggNS4zNDEwNCA3LjgzODEyIDUuMzQxMDRDNy41NjA2NyA1LjM0MTA0IDcuMjgzMjEgNS41MjYwMSA3LjI4MzIxIDUuODAzNDdDNy4yODMyMSA2LjA4MDkzIDcuNTYwNjcgNi4yNjU5IDcuODM4MTIgNi4yNjU5Wk0xMS4wNDA0IDguMDIzMTJDMTAuODU1NSA4LjAyMzEyIDEwLjY4MjEgOC4yMTk2NSAxMC42ODIxIDguMzkzMDZDMTAuNjgyMSA4LjU4OTYgMTAuODY3IDguNzYzMDEgMTEuMDQwNCA4Ljc2MzAxQzExLjMxNzkgOC43NjMwMSAxMS41MDI5IDguNTc4MDQgMTEuNTAyOSA4LjM5MzA2QzExLjUwMjkgOC4yMDgwOSAxMS4zMTc5IDguMDIzMTIgMTEuMDQwNCA4LjAyMzEyWiIgZmlsbD0iIzI4QzQ0NSIvPgo8cGF0aCBkPSJNNy45NzY4OCAwLjA0NjI0MThDMy41NzIyNSAwLjA0NjI0MTggMCAzLjYxODUgMCA4LjAyMzEyQzAgMTIuNDI3NyAzLjU3MjI1IDE2IDcuOTc2ODggMTZDMTIuMzgxNSAxNiAxNS45NTM4IDEyLjQyNzcgMTUuOTUzOCA4LjAyMzEyQzE1Ljk1MzggMy42MTg1IDEyLjM4MTUgMC4wNDYyNDE4IDcuOTc2ODggMC4wNDYyNDE4Wk02LjQ2MjQzIDEwLjA2OTRDNiAxMC4wNjk0IDUuNjMwMDYgOS45NzY4OCA1LjE5MDc1IDkuODcyODNMMy45MTkwOCAxMC41MjAyTDQuMjc3NDYgOS4zOTg4NEMzLjM2NDE2IDguNzUxNDQgMi44MDkyNSA3LjkwNzUxIDIuODA5MjUgNi45MDE3M0MyLjgwOTI1IDUuMTMyOTUgNC40NjI0MyAzLjc0NTY2IDYuNDYyNDMgMy43NDU2NkM4LjI1NDM0IDMuNzQ1NjYgOS44MzgxNSA0Ljg1NTQ5IDEwLjE1MDMgNi4zNDY4MkMxMC4wMzQ3IDYuMzM1MjYgOS45MTkwOCA2LjMyMzcgOS44MDM0NyA2LjMyMzdDOC4wNjkzNiA2LjM0NjgyIDYuNzA1MiA3LjY1MzE4IDYuNzA1MiA5LjI3MTY4QzYuNzA1MiA5LjUzNzU3IDYuNzUxNDUgOS43OTE5MSA2LjgyMDgxIDEwLjA0NjJDNi43MDUyIDEwLjA1NzggNi41NzgwMyAxMC4wNjk0IDYuNDYyNDMgMTAuMDY5NFpNMTEuODcyOCAxMS4zNjQyTDEyLjE1MDMgMTIuMjg5TDExLjE1NjEgMTEuNzM0MUMxMC43OTc3IDExLjgyNjYgMTAuNDI3NyAxMS45MTkxIDEwLjA1NzggMTEuOTE5MUM4LjMxMjE0IDExLjkxOTEgNi45MzY0MiAxMC43MTY4IDYuOTM2NDIgOS4yMjU0M0M2LjkyNDg2IDcuNzQ1NjYgOC4zMDA1OCA2LjU0MzM1IDEwLjAzNDcgNi41NDMzNUMxMS42ODc5IDYuNTQzMzUgMTMuMTQ0NSA3Ljc1NzIyIDEzLjE0NDUgOS4yMzY5OUMxMy4xNDQ1IDEwLjA2OTQgMTIuNjAxMiAxMC44MDkyIDExLjg3MjggMTEuMzY0MloiIGZpbGw9IiMyOEM0NDUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xNTMyXzE4MiI+CjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K";
20903
+ const logoWechat = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_1532_182)'%3e%3cpath%20d='M5.27165%205.34104C4.99419%205.34104%204.71674%205.52601%204.71674%205.80347C4.71674%206.08093%204.99419%206.2659%205.27165%206.2659C5.54911%206.2659%205.73408%206.08093%205.73408%205.80347C5.73408%205.51445%205.54911%205.34104%205.27165%205.34104ZM9.02887%208.02312C8.8439%208.02312%208.67049%208.21965%208.67049%208.39306C8.67049%208.5896%208.85546%208.76301%209.02887%208.76301C9.30633%208.76301%209.4913%208.57804%209.4913%208.39306C9.4913%208.20809%209.30633%208.02312%209.02887%208.02312ZM7.83812%206.2659C8.11558%206.2659%208.30055%206.06937%208.30055%205.80347C8.30055%205.52601%208.11558%205.34104%207.83812%205.34104C7.56067%205.34104%207.28321%205.52601%207.28321%205.80347C7.28321%206.08093%207.56067%206.2659%207.83812%206.2659ZM11.0404%208.02312C10.8555%208.02312%2010.6821%208.21965%2010.6821%208.39306C10.6821%208.5896%2010.867%208.76301%2011.0404%208.76301C11.3179%208.76301%2011.5029%208.57804%2011.5029%208.39306C11.5029%208.20809%2011.3179%208.02312%2011.0404%208.02312Z'%20fill='%2328C445'/%3e%3cpath%20d='M7.97688%200.0462418C3.57225%200.0462418%200%203.6185%200%208.02312C0%2012.4277%203.57225%2016%207.97688%2016C12.3815%2016%2015.9538%2012.4277%2015.9538%208.02312C15.9538%203.6185%2012.3815%200.0462418%207.97688%200.0462418ZM6.46243%2010.0694C6%2010.0694%205.63006%209.97688%205.19075%209.87283L3.91908%2010.5202L4.27746%209.39884C3.36416%208.75144%202.80925%207.90751%202.80925%206.90173C2.80925%205.13295%204.46243%203.74566%206.46243%203.74566C8.25434%203.74566%209.83815%204.85549%2010.1503%206.34682C10.0347%206.33526%209.91908%206.3237%209.80347%206.3237C8.06936%206.34682%206.7052%207.65318%206.7052%209.27168C6.7052%209.53757%206.75145%209.79191%206.82081%2010.0462C6.7052%2010.0578%206.57803%2010.0694%206.46243%2010.0694ZM11.8728%2011.3642L12.1503%2012.289L11.1561%2011.7341C10.7977%2011.8266%2010.4277%2011.9191%2010.0578%2011.9191C8.31214%2011.9191%206.93642%2010.7168%206.93642%209.22543C6.92486%207.74566%208.30058%206.54335%2010.0347%206.54335C11.6879%206.54335%2013.1445%207.75722%2013.1445%209.23699C13.1445%2010.0694%2012.6012%2010.8092%2011.8728%2011.3642Z'%20fill='%2328C445'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_1532_182'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
21085
20904
  const __vite_glob_0_10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21086
20905
  __proto__: null,
21087
20906
  default: logoWechat
@@ -21216,7 +21035,6 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
21216
21035
  };
21217
21036
  }
21218
21037
  });
21219
- const inputButton_vue_vue_type_style_index_0_lang = "";
21220
21038
  const _hoisted_1$9 = { class: "flex flex-1 g-input-select" };
21221
21039
  const _hoisted_2$6 = { class: "flex justify-between gap-[8px] flex-wrap" };
21222
21040
  const _sfc_main$b = /* @__PURE__ */ defineComponent({
@@ -21303,7 +21121,6 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
21303
21121
  };
21304
21122
  }
21305
21123
  });
21306
- const inputSelect_vue_vue_type_style_index_0_lang = "";
21307
21124
  const _sfc_main$a = /* @__PURE__ */ defineComponent({
21308
21125
  __name: "index",
21309
21126
  props: {
@@ -21592,7 +21409,6 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
21592
21409
  };
21593
21410
  }
21594
21411
  });
21595
- const index_vue_vue_type_style_index_0_lang = "";
21596
21412
  const _hoisted_1$8 = { class: "tips text-[var(--devui-disabled-text)]" };
21597
21413
  const _hoisted_2$5 = { class: "icons" };
21598
21414
  const _hoisted_3$3 = ["src", "alt", "onClick"];
@@ -21639,8 +21455,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
21639
21455
  };
21640
21456
  }
21641
21457
  });
21642
- const auth_vue_vue_type_style_index_0_scoped_e0abf97b_lang = "";
21643
- const GAuth = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-e0abf97b"]]);
21458
+ const GAuth = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-gitcode-layout-lib"]]);
21644
21459
  const _hoisted_1$7 = { class: "text-[var(--theme-placeholder)]" };
21645
21460
  const _hoisted_2$4 = { class: "text-[var(--theme-placeholder)]" };
21646
21461
  const _sfc_main$8 = /* @__PURE__ */ defineComponent({
@@ -21723,7 +21538,6 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
21723
21538
  };
21724
21539
  }
21725
21540
  });
21726
- const agreements_vue_vue_type_style_index_0_lang = "";
21727
21541
  const _hoisted_1$5 = { class: "text-center text-[18px] leading-[26px] font-bold mb-[24px] flex items-center justify-center relative" };
21728
21542
  const _hoisted_2$3 = { class: "back-img absolute mr-[24px] left-0" };
21729
21543
  const _hoisted_3$2 = ["src"];
@@ -21756,8 +21570,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
21756
21570
  };
21757
21571
  }
21758
21572
  });
21759
- const title_vue_vue_type_style_index_0_scoped_ac0f6963_lang = "";
21760
- const GTitle = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-ac0f6963"]]);
21573
+ const GTitle = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-gitcode-layout-lib"]]);
21761
21574
  const FindFileName = (path) => {
21762
21575
  var _a;
21763
21576
  const isName = /.*\/.*\/(.*\..*)/;
@@ -21768,7 +21581,7 @@ const TransAssetsUrl = (source, key, path) => {
21768
21581
  if (key) {
21769
21582
  let target = "";
21770
21583
  target = Object.keys(source).find((pathName) => {
21771
- const p = path ? `${path}${key}` : key;
21584
+ const p = key;
21772
21585
  return p === FindFileName(pathName);
21773
21586
  });
21774
21587
  if (target) {
@@ -21786,7 +21599,7 @@ const verifyCodeRegExp4 = /^\d{4}$/;
21786
21599
  const verifyCodeRegExp6 = /^\d{6}$/;
21787
21600
  const mobileRegExp = /^1[3-9]\d{9}$/;
21788
21601
  const usernameRegExp = /^(?!-)(?!.*-$)[a-zA-Z][a-zA-Z0-9_-]{1,18}[a-zA-Z0-9]$/;
21789
- 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]|4[02-9]|5[0135-9])|7(?:[013-57-9]\\d|2[0-8]))\\d|3(?:(?:[0-3589]\\d|6[1-9]|7[0-35-9])\\d|4(?:[0-578]\\d|90)))\\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])|3\\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-4])\\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{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[025-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-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37)", "4(?:02|37)0|[34]00"]], ["(\\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|50|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-4])\\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]|91"]], ["(\\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-4])\\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-489]\\d|55)\\d{6}", [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, "33|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", ["30[0135-9]"], "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-7]|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", "(?:[245]\\d|33|77|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-467]|5[0-3]|8[0-5]))\\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", "38\\d{6}|[78]\\d{9,13}|(?:20|9\\d)\\d{8}", [8, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["3"], "0$1"], ["(\\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[16]|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, "3[04-689]|[489]", 0, "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", "92\\d{7}|(?:[15]|8\\d)\\d{8}", [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{3,4})", "$1 $2 $3", ["81"], "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)\\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-8]"]]]], "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-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|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-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-468]))\\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[037]|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-389]|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}"]]] } };
21602
+ 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(?: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]|4[02-9]|5[0135-9])|7(?:[013-57-9]\\d|2[0-8]))\\d|3(?:(?:[0-3589]\\d|6[1-9]|7[0-35-9])\\d|4(?:[0-578]\\d|90)))\\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])|3\\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-4])\\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{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[025-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-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37)", "4(?:02|37)0|[34]00"]], ["(\\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|50|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-4])\\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]|91"]], ["(\\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-4])\\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", "(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}", [6, 7, 8, 9], [["(\\d{2})(\\d{2})(\\d{2,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-489]\\d|55)\\d{6}", [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, "33|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", ["30[0135-9]"], "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-7]|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", "(?:[245]\\d|33|77|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-467]|5[0-3]|8[0-5]))\\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", "38\\d{6}|[78]\\d{9,13}|(?:20|9\\d)\\d{8}", [8, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["3"], "0$1"], ["(\\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", "(?:444|(?:55|8\\d)\\d|666)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-68]"]]]], "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[16]|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[013]|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, "3[04-689]|[489]", 0, "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", "92\\d{7}|(?:[15]|8\\d)\\d{8}", [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{3,4})", "$1 $2 $3", ["81"], "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)\\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-8]"]]]], "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-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|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-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-468]))\\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[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|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-389]|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}"]]] } };
21790
21603
  function withMetadataArgument(func, _arguments) {
21791
21604
  var args = Array.prototype.slice.call(_arguments);
21792
21605
  args.push(metadata);
@@ -21800,14 +21613,10 @@ function compare(a, b) {
21800
21613
  for (var i = 0; i < 3; i++) {
21801
21614
  var na = Number(pa[i]);
21802
21615
  var nb = Number(pb[i]);
21803
- if (na > nb)
21804
- return 1;
21805
- if (nb > na)
21806
- return -1;
21807
- if (!isNaN(na) && isNaN(nb))
21808
- return 1;
21809
- if (isNaN(na) && !isNaN(nb))
21810
- return -1;
21616
+ if (na > nb) return 1;
21617
+ if (nb > na) return -1;
21618
+ if (!isNaN(na) && isNaN(nb)) return 1;
21619
+ if (isNaN(na) && !isNaN(nb)) return -1;
21811
21620
  }
21812
21621
  if (a[1] && b[1]) {
21813
21622
  return a[1] > b[1] ? 1 : a[1] < b[1] ? -1 : 0;
@@ -21831,21 +21640,17 @@ function _classCallCheck$2(instance, Constructor) {
21831
21640
  throw new TypeError("Cannot call a class as a function");
21832
21641
  }
21833
21642
  }
21834
- function _defineProperties$2(target, props) {
21643
+ function _defineProperties$1(target, props) {
21835
21644
  for (var i = 0; i < props.length; i++) {
21836
21645
  var descriptor = props[i];
21837
21646
  descriptor.enumerable = descriptor.enumerable || false;
21838
21647
  descriptor.configurable = true;
21839
- if ("value" in descriptor)
21840
- descriptor.writable = true;
21648
+ if ("value" in descriptor) descriptor.writable = true;
21841
21649
  Object.defineProperty(target, descriptor.key, descriptor);
21842
21650
  }
21843
21651
  }
21844
21652
  function _createClass$2(Constructor, protoProps, staticProps) {
21845
- if (protoProps)
21846
- _defineProperties$2(Constructor.prototype, protoProps);
21847
- if (staticProps)
21848
- _defineProperties$2(Constructor, staticProps);
21653
+ if (protoProps) _defineProperties$1(Constructor.prototype, protoProps);
21849
21654
  Object.defineProperty(Constructor, "prototype", { writable: false });
21850
21655
  return Constructor;
21851
21656
  }
@@ -21875,8 +21680,7 @@ var Metadata = /* @__PURE__ */ function() {
21875
21680
  }, {
21876
21681
  key: "nonGeographic",
21877
21682
  value: function nonGeographic() {
21878
- if (this.v1 || this.v2 || this.v3)
21879
- return;
21683
+ if (this.v1 || this.v2 || this.v3) return;
21880
21684
  return this.metadata.nonGeographic || this.metadata.nonGeographical;
21881
21685
  }
21882
21686
  }, {
@@ -22051,8 +21855,7 @@ var Metadata = /* @__PURE__ */ function() {
22051
21855
  }, {
22052
21856
  key: "countryCallingCodes",
22053
21857
  value: function countryCallingCodes() {
22054
- if (this.v1)
22055
- return this.metadata.country_phone_code_to_countries;
21858
+ if (this.v1) return this.metadata.country_phone_code_to_countries;
22056
21859
  return this.metadata.country_calling_codes;
22057
21860
  }
22058
21861
  // Deprecated.
@@ -22096,31 +21899,27 @@ var NumberingPlan = /* @__PURE__ */ function() {
22096
21899
  }, {
22097
21900
  key: "IDDPrefix",
22098
21901
  value: function IDDPrefix() {
22099
- if (this.v1 || this.v2)
22100
- return;
21902
+ if (this.v1 || this.v2) return;
22101
21903
  return this.metadata[1];
22102
21904
  }
22103
21905
  // Is only present when a country supports multiple IDD prefixes.
22104
21906
  }, {
22105
21907
  key: "defaultIDDPrefix",
22106
21908
  value: function defaultIDDPrefix() {
22107
- if (this.v1 || this.v2)
22108
- return;
21909
+ if (this.v1 || this.v2) return;
22109
21910
  return this.metadata[12];
22110
21911
  }
22111
21912
  }, {
22112
21913
  key: "nationalNumberPattern",
22113
21914
  value: function nationalNumberPattern() {
22114
- if (this.v1 || this.v2)
22115
- return this.metadata[1];
21915
+ if (this.v1 || this.v2) return this.metadata[1];
22116
21916
  return this.metadata[2];
22117
21917
  }
22118
21918
  // "possible length" data is always present in Google's metadata.
22119
21919
  }, {
22120
21920
  key: "possibleLengths",
22121
21921
  value: function possibleLengths() {
22122
- if (this.v1)
22123
- return;
21922
+ if (this.v1) return;
22124
21923
  return this.metadata[this.v2 ? 2 : 3];
22125
21924
  }
22126
21925
  }, {
@@ -22215,8 +22014,7 @@ var NumberingPlan = /* @__PURE__ */ function() {
22215
22014
  }, {
22216
22015
  key: "ext",
22217
22016
  value: function ext() {
22218
- if (this.v1 || this.v2)
22219
- return DEFAULT_EXT_PREFIX;
22017
+ if (this.v1 || this.v2) return DEFAULT_EXT_PREFIX;
22220
22018
  return this.metadata[13] || DEFAULT_EXT_PREFIX;
22221
22019
  }
22222
22020
  }]);
@@ -22283,15 +22081,13 @@ var Type = /* @__PURE__ */ function() {
22283
22081
  _createClass$2(Type2, [{
22284
22082
  key: "pattern",
22285
22083
  value: function pattern() {
22286
- if (this.metadata.v1)
22287
- return this.type;
22084
+ if (this.metadata.v1) return this.type;
22288
22085
  return this.type[0];
22289
22086
  }
22290
22087
  }, {
22291
22088
  key: "possibleLengths",
22292
22089
  value: function possibleLengths() {
22293
- if (this.metadata.v1)
22294
- return;
22090
+ if (this.metadata.v1) return;
22295
22091
  return this.type[1] || this.metadata.possibleLengths();
22296
22092
  }
22297
22093
  }]);
@@ -22361,55 +22157,6 @@ function setVersion(metadata2) {
22361
22157
  }
22362
22158
  }
22363
22159
  }
22364
- function _createForOfIteratorHelperLoose$4(o, allowArrayLike) {
22365
- var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
22366
- if (it)
22367
- return (it = it.call(o)).next.bind(it);
22368
- if (Array.isArray(o) || (it = _unsupportedIterableToArray$5(o)) || allowArrayLike && o && typeof o.length === "number") {
22369
- if (it)
22370
- o = it;
22371
- var i = 0;
22372
- return function() {
22373
- if (i >= o.length)
22374
- return { done: true };
22375
- return { done: false, value: o[i++] };
22376
- };
22377
- }
22378
- throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
22379
- }
22380
- function _unsupportedIterableToArray$5(o, minLen) {
22381
- if (!o)
22382
- return;
22383
- if (typeof o === "string")
22384
- return _arrayLikeToArray$5(o, minLen);
22385
- var n = Object.prototype.toString.call(o).slice(8, -1);
22386
- if (n === "Object" && o.constructor)
22387
- n = o.constructor.name;
22388
- if (n === "Map" || n === "Set")
22389
- return Array.from(o);
22390
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
22391
- return _arrayLikeToArray$5(o, minLen);
22392
- }
22393
- function _arrayLikeToArray$5(arr, len) {
22394
- if (len == null || len > arr.length)
22395
- len = arr.length;
22396
- for (var i = 0, arr2 = new Array(len); i < len; i++) {
22397
- arr2[i] = arr[i];
22398
- }
22399
- return arr2;
22400
- }
22401
- function mergeArrays(a, b) {
22402
- var merged = a.slice();
22403
- for (var _iterator = _createForOfIteratorHelperLoose$4(b), _step; !(_step = _iterator()).done; ) {
22404
- var element = _step.value;
22405
- if (a.indexOf(element) < 0) {
22406
- merged.push(element);
22407
- }
22408
- }
22409
- return merged.sort(function(a2, b2) {
22410
- return a2 - b2;
22411
- });
22412
- }
22413
22160
  function checkNumberLength(nationalNumber, metadata2) {
22414
22161
  return checkNumberLengthForType(nationalNumber, void 0, metadata2);
22415
22162
  }
@@ -22419,17 +22166,6 @@ function checkNumberLengthForType(nationalNumber, type, metadata2) {
22419
22166
  if (!possible_lengths) {
22420
22167
  return "IS_POSSIBLE";
22421
22168
  }
22422
- if (type === "FIXED_LINE_OR_MOBILE") {
22423
- if (!metadata2.type("FIXED_LINE")) {
22424
- return checkNumberLengthForType(nationalNumber, "MOBILE", metadata2);
22425
- }
22426
- var mobile_type = metadata2.type("MOBILE");
22427
- if (mobile_type) {
22428
- possible_lengths = mergeArrays(possible_lengths, mobile_type.possibleLengths());
22429
- }
22430
- } else if (type && !type_info) {
22431
- return "INVALID_LENGTH";
22432
- }
22433
22169
  var actual_length = nationalNumber.length;
22434
22170
  var minimum_length = possible_lengths[0];
22435
22171
  if (minimum_length === actual_length) {
@@ -22493,36 +22229,27 @@ function matchesEntirely(text2, regular_expression) {
22493
22229
  }
22494
22230
  function _createForOfIteratorHelperLoose$3(o, allowArrayLike) {
22495
22231
  var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
22496
- if (it)
22497
- return (it = it.call(o)).next.bind(it);
22498
- if (Array.isArray(o) || (it = _unsupportedIterableToArray$4(o)) || allowArrayLike && o && typeof o.length === "number") {
22499
- if (it)
22500
- o = it;
22232
+ if (it) return (it = it.call(o)).next.bind(it);
22233
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray$4(o)) || allowArrayLike) {
22234
+ if (it) o = it;
22501
22235
  var i = 0;
22502
22236
  return function() {
22503
- if (i >= o.length)
22504
- return { done: true };
22237
+ if (i >= o.length) return { done: true };
22505
22238
  return { done: false, value: o[i++] };
22506
22239
  };
22507
22240
  }
22508
22241
  throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
22509
22242
  }
22510
22243
  function _unsupportedIterableToArray$4(o, minLen) {
22511
- if (!o)
22512
- return;
22513
- if (typeof o === "string")
22514
- return _arrayLikeToArray$4(o, minLen);
22244
+ if (!o) return;
22245
+ if (typeof o === "string") return _arrayLikeToArray$4(o, minLen);
22515
22246
  var n = Object.prototype.toString.call(o).slice(8, -1);
22516
- if (n === "Object" && o.constructor)
22517
- n = o.constructor.name;
22518
- if (n === "Map" || n === "Set")
22519
- return Array.from(o);
22520
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
22521
- return _arrayLikeToArray$4(o, minLen);
22247
+ if (n === "Object" && o.constructor) n = o.constructor.name;
22248
+ if (n === "Map" || n === "Set") return Array.from(o);
22249
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$4(o, minLen);
22522
22250
  }
22523
22251
  function _arrayLikeToArray$4(arr, len) {
22524
- if (len == null || len > arr.length)
22525
- len = arr.length;
22252
+ if (len == null || len > arr.length) len = arr.length;
22526
22253
  for (var i = 0, arr2 = new Array(len); i < len; i++) {
22527
22254
  arr2[i] = arr[i];
22528
22255
  }
@@ -22779,8 +22506,6 @@ function applyInternationalSeparatorStyle(formattedNumber) {
22779
22506
  var FIRST_GROUP_PATTERN = /(\$\d)/;
22780
22507
  function formatNationalNumberUsingFormat(number2, format2, _ref) {
22781
22508
  var useInternationalFormat = _ref.useInternationalFormat, withNationalPrefix = _ref.withNationalPrefix;
22782
- _ref.carrierCode;
22783
- _ref.metadata;
22784
22509
  var formattedNumber = number2.replace(new RegExp(format2.pattern()), useInternationalFormat ? format2.internationalFormat() : (
22785
22510
  // This library doesn't use `domestic_carrier_code_formatting_rule`,
22786
22511
  // because that one is only used when formatting phone numbers
@@ -22866,36 +22591,27 @@ function formatRFC3966(_ref) {
22866
22591
  }
22867
22592
  function _createForOfIteratorHelperLoose$2(o, allowArrayLike) {
22868
22593
  var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
22869
- if (it)
22870
- return (it = it.call(o)).next.bind(it);
22871
- if (Array.isArray(o) || (it = _unsupportedIterableToArray$3(o)) || allowArrayLike && o && typeof o.length === "number") {
22872
- if (it)
22873
- o = it;
22594
+ if (it) return (it = it.call(o)).next.bind(it);
22595
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray$3(o)) || allowArrayLike) {
22596
+ if (it) o = it;
22874
22597
  var i = 0;
22875
22598
  return function() {
22876
- if (i >= o.length)
22877
- return { done: true };
22599
+ if (i >= o.length) return { done: true };
22878
22600
  return { done: false, value: o[i++] };
22879
22601
  };
22880
22602
  }
22881
22603
  throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
22882
22604
  }
22883
22605
  function _unsupportedIterableToArray$3(o, minLen) {
22884
- if (!o)
22885
- return;
22886
- if (typeof o === "string")
22887
- return _arrayLikeToArray$3(o, minLen);
22606
+ if (!o) return;
22607
+ if (typeof o === "string") return _arrayLikeToArray$3(o, minLen);
22888
22608
  var n = Object.prototype.toString.call(o).slice(8, -1);
22889
- if (n === "Object" && o.constructor)
22890
- n = o.constructor.name;
22891
- if (n === "Map" || n === "Set")
22892
- return Array.from(o);
22893
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
22894
- return _arrayLikeToArray$3(o, minLen);
22609
+ if (n === "Object" && o.constructor) n = o.constructor.name;
22610
+ if (n === "Map" || n === "Set") return Array.from(o);
22611
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$3(o, minLen);
22895
22612
  }
22896
22613
  function _arrayLikeToArray$3(arr, len) {
22897
- if (len == null || len > arr.length)
22898
- len = arr.length;
22614
+ if (len == null || len > arr.length) len = arr.length;
22899
22615
  for (var i = 0, arr2 = new Array(len); i < len; i++) {
22900
22616
  arr2[i] = arr[i];
22901
22617
  }
@@ -22949,8 +22665,7 @@ function formatNumber(input, format2, options, metadata2) {
22949
22665
  metadata2.country(input.country);
22950
22666
  } else if (input.countryCallingCode) {
22951
22667
  metadata2.selectNumberingPlan(input.countryCallingCode);
22952
- } else
22953
- return input.phone || "";
22668
+ } else return input.phone || "";
22954
22669
  var countryCallingCode = metadata2.countryCallingCode();
22955
22670
  var nationalNumber = options.v2 ? input.nationalNumber : input.phone;
22956
22671
  var number2;
@@ -22992,9 +22707,7 @@ function formatNationalNumber(number2, carrierCode, formatAs, metadata2, options
22992
22707
  }
22993
22708
  return formatNationalNumberUsingFormat(number2, format2, {
22994
22709
  useInternationalFormat: formatAs === "INTERNATIONAL",
22995
- withNationalPrefix: format2.nationalPrefixIsOptionalWhenFormattingInNationalFormat() && options && options.nationalPrefix === false ? false : true,
22996
- carrierCode,
22997
- metadata: metadata2
22710
+ withNationalPrefix: format2.nationalPrefixIsOptionalWhenFormattingInNationalFormat() && options && options.nationalPrefix === false ? false : true
22998
22711
  });
22999
22712
  }
23000
22713
  function chooseFormatForNumber(availableFormats, nationalNnumber) {
@@ -23062,21 +22775,17 @@ function _classCallCheck$1(instance, Constructor) {
23062
22775
  throw new TypeError("Cannot call a class as a function");
23063
22776
  }
23064
22777
  }
23065
- function _defineProperties$1(target, props) {
22778
+ function _defineProperties(target, props) {
23066
22779
  for (var i = 0; i < props.length; i++) {
23067
22780
  var descriptor = props[i];
23068
22781
  descriptor.enumerable = descriptor.enumerable || false;
23069
22782
  descriptor.configurable = true;
23070
- if ("value" in descriptor)
23071
- descriptor.writable = true;
22783
+ if ("value" in descriptor) descriptor.writable = true;
23072
22784
  Object.defineProperty(target, descriptor.key, descriptor);
23073
22785
  }
23074
22786
  }
23075
22787
  function _createClass$1(Constructor, protoProps, staticProps) {
23076
- if (protoProps)
23077
- _defineProperties$1(Constructor.prototype, protoProps);
23078
- if (staticProps)
23079
- _defineProperties$1(Constructor, staticProps);
22788
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
23080
22789
  Object.defineProperty(Constructor, "prototype", { writable: false });
23081
22790
  return Constructor;
23082
22791
  }
@@ -23237,21 +22946,7 @@ function _typeof(obj) {
23237
22946
  return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
23238
22947
  }, _typeof(obj);
23239
22948
  }
23240
- function _defineProperties(target, props) {
23241
- for (var i = 0; i < props.length; i++) {
23242
- var descriptor = props[i];
23243
- descriptor.enumerable = descriptor.enumerable || false;
23244
- descriptor.configurable = true;
23245
- if ("value" in descriptor)
23246
- descriptor.writable = true;
23247
- Object.defineProperty(target, descriptor.key, descriptor);
23248
- }
23249
- }
23250
22949
  function _createClass(Constructor, protoProps, staticProps) {
23251
- if (protoProps)
23252
- _defineProperties(Constructor.prototype, protoProps);
23253
- if (staticProps)
23254
- _defineProperties(Constructor, staticProps);
23255
22950
  Object.defineProperty(Constructor, "prototype", { writable: false });
23256
22951
  return Constructor;
23257
22952
  }
@@ -23266,8 +22961,7 @@ function _inherits(subClass, superClass) {
23266
22961
  }
23267
22962
  subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } });
23268
22963
  Object.defineProperty(subClass, "prototype", { writable: false });
23269
- if (superClass)
23270
- _setPrototypeOf(subClass, superClass);
22964
+ if (superClass) _setPrototypeOf(subClass, superClass);
23271
22965
  }
23272
22966
  function _createSuper(Derived) {
23273
22967
  var hasNativeReflectConstruct = _isNativeReflectConstruct();
@@ -23299,14 +22993,12 @@ function _assertThisInitialized(self2) {
23299
22993
  function _wrapNativeSuper(Class) {
23300
22994
  var _cache = typeof Map === "function" ? /* @__PURE__ */ new Map() : void 0;
23301
22995
  _wrapNativeSuper = function _wrapNativeSuper2(Class2) {
23302
- if (Class2 === null || !_isNativeFunction(Class2))
23303
- return Class2;
22996
+ if (Class2 === null || !_isNativeFunction(Class2)) return Class2;
23304
22997
  if (typeof Class2 !== "function") {
23305
22998
  throw new TypeError("Super expression must either be null or a function");
23306
22999
  }
23307
23000
  if (typeof _cache !== "undefined") {
23308
- if (_cache.has(Class2))
23309
- return _cache.get(Class2);
23001
+ if (_cache.has(Class2)) return _cache.get(Class2);
23310
23002
  _cache.set(Class2, Wrapper);
23311
23003
  }
23312
23004
  function Wrapper() {
@@ -23326,20 +23018,16 @@ function _construct(Parent, args, Class) {
23326
23018
  a.push.apply(a, args2);
23327
23019
  var Constructor = Function.bind.apply(Parent2, a);
23328
23020
  var instance = new Constructor();
23329
- if (Class2)
23330
- _setPrototypeOf(instance, Class2.prototype);
23021
+ if (Class2) _setPrototypeOf(instance, Class2.prototype);
23331
23022
  return instance;
23332
23023
  };
23333
23024
  }
23334
23025
  return _construct.apply(null, arguments);
23335
23026
  }
23336
23027
  function _isNativeReflectConstruct() {
23337
- if (typeof Reflect === "undefined" || !Reflect.construct)
23338
- return false;
23339
- if (Reflect.construct.sham)
23340
- return false;
23341
- if (typeof Proxy === "function")
23342
- return true;
23028
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
23029
+ if (Reflect.construct.sham) return false;
23030
+ if (typeof Proxy === "function") return true;
23343
23031
  try {
23344
23032
  Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {
23345
23033
  }));
@@ -23473,36 +23161,27 @@ function parseDigit(character) {
23473
23161
  }
23474
23162
  function _createForOfIteratorHelperLoose$1(o, allowArrayLike) {
23475
23163
  var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
23476
- if (it)
23477
- return (it = it.call(o)).next.bind(it);
23478
- if (Array.isArray(o) || (it = _unsupportedIterableToArray$2(o)) || allowArrayLike && o && typeof o.length === "number") {
23479
- if (it)
23480
- o = it;
23164
+ if (it) return (it = it.call(o)).next.bind(it);
23165
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray$2(o)) || allowArrayLike) {
23166
+ if (it) o = it;
23481
23167
  var i = 0;
23482
23168
  return function() {
23483
- if (i >= o.length)
23484
- return { done: true };
23169
+ if (i >= o.length) return { done: true };
23485
23170
  return { done: false, value: o[i++] };
23486
23171
  };
23487
23172
  }
23488
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.");
23489
23174
  }
23490
23175
  function _unsupportedIterableToArray$2(o, minLen) {
23491
- if (!o)
23492
- return;
23493
- if (typeof o === "string")
23494
- return _arrayLikeToArray$2(o, minLen);
23176
+ if (!o) return;
23177
+ if (typeof o === "string") return _arrayLikeToArray$2(o, minLen);
23495
23178
  var n = Object.prototype.toString.call(o).slice(8, -1);
23496
- if (n === "Object" && o.constructor)
23497
- n = o.constructor.name;
23498
- if (n === "Map" || n === "Set")
23499
- return Array.from(o);
23500
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
23501
- return _arrayLikeToArray$2(o, minLen);
23179
+ if (n === "Object" && o.constructor) n = o.constructor.name;
23180
+ if (n === "Map" || n === "Set") return Array.from(o);
23181
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$2(o, minLen);
23502
23182
  }
23503
23183
  function _arrayLikeToArray$2(arr, len) {
23504
- if (len == null || len > arr.length)
23505
- len = arr.length;
23184
+ if (len == null || len > arr.length) len = arr.length;
23506
23185
  for (var i = 0, arr2 = new Array(len); i < len; i++) {
23507
23186
  arr2[i] = arr[i];
23508
23187
  }
@@ -23519,9 +23198,6 @@ function parseIncompletePhoneNumber(string) {
23519
23198
  function parsePhoneNumberCharacter(character, prevParsedCharacters, emitEvent2) {
23520
23199
  if (character === "+") {
23521
23200
  if (prevParsedCharacters) {
23522
- if (typeof emitEvent2 === "function") {
23523
- emitEvent2("end");
23524
- }
23525
23201
  return;
23526
23202
  }
23527
23203
  return "+";
@@ -23530,45 +23206,34 @@ function parsePhoneNumberCharacter(character, prevParsedCharacters, emitEvent2)
23530
23206
  }
23531
23207
  function _createForOfIteratorHelperLoose(o, allowArrayLike) {
23532
23208
  var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
23533
- if (it)
23534
- return (it = it.call(o)).next.bind(it);
23535
- if (Array.isArray(o) || (it = _unsupportedIterableToArray$1(o)) || allowArrayLike && o && typeof o.length === "number") {
23536
- if (it)
23537
- o = it;
23209
+ if (it) return (it = it.call(o)).next.bind(it);
23210
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray$1(o)) || allowArrayLike) {
23211
+ if (it) o = it;
23538
23212
  var i = 0;
23539
23213
  return function() {
23540
- if (i >= o.length)
23541
- return { done: true };
23214
+ if (i >= o.length) return { done: true };
23542
23215
  return { done: false, value: o[i++] };
23543
23216
  };
23544
23217
  }
23545
23218
  throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
23546
23219
  }
23547
23220
  function _unsupportedIterableToArray$1(o, minLen) {
23548
- if (!o)
23549
- return;
23550
- if (typeof o === "string")
23551
- return _arrayLikeToArray$1(o, minLen);
23221
+ if (!o) return;
23222
+ if (typeof o === "string") return _arrayLikeToArray$1(o, minLen);
23552
23223
  var n = Object.prototype.toString.call(o).slice(8, -1);
23553
- if (n === "Object" && o.constructor)
23554
- n = o.constructor.name;
23555
- if (n === "Map" || n === "Set")
23556
- return Array.from(o);
23557
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
23558
- return _arrayLikeToArray$1(o, minLen);
23224
+ if (n === "Object" && o.constructor) n = o.constructor.name;
23225
+ if (n === "Map" || n === "Set") return Array.from(o);
23226
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen);
23559
23227
  }
23560
23228
  function _arrayLikeToArray$1(arr, len) {
23561
- if (len == null || len > arr.length)
23562
- len = arr.length;
23229
+ if (len == null || len > arr.length) len = arr.length;
23563
23230
  for (var i = 0, arr2 = new Array(len); i < len; i++) {
23564
23231
  arr2[i] = arr[i];
23565
23232
  }
23566
23233
  return arr2;
23567
23234
  }
23568
23235
  function getCountryByNationalNumber(nationalPhoneNumber, _ref) {
23569
- var countries = _ref.countries;
23570
- _ref.defaultCountry;
23571
- var metadata2 = _ref.metadata;
23236
+ var countries = _ref.countries, metadata2 = _ref.metadata;
23572
23237
  metadata2 = new Metadata(metadata2);
23573
23238
  for (var _iterator = _createForOfIteratorHelperLoose(countries), _step; !(_step = _iterator()).done; ) {
23574
23239
  var country = _step.value;
@@ -23585,14 +23250,8 @@ function getCountryByNationalNumber(nationalPhoneNumber, _ref) {
23585
23250
  }
23586
23251
  }
23587
23252
  }
23588
- var USE_NON_GEOGRAPHIC_COUNTRY_CODE = false;
23589
23253
  function getCountryByCallingCode(callingCode, _ref) {
23590
- var nationalPhoneNumber = _ref.nationalNumber, defaultCountry = _ref.defaultCountry, metadata2 = _ref.metadata;
23591
- if (USE_NON_GEOGRAPHIC_COUNTRY_CODE) {
23592
- if (metadata2.isNonGeographicCallingCode(callingCode)) {
23593
- return "001";
23594
- }
23595
- }
23254
+ var nationalPhoneNumber = _ref.nationalNumber, metadata2 = _ref.metadata;
23596
23255
  var possibleCountries = metadata2.getCountryCodesForCallingCode(callingCode);
23597
23256
  if (!possibleCountries) {
23598
23257
  return;
@@ -23602,7 +23261,6 @@ function getCountryByCallingCode(callingCode, _ref) {
23602
23261
  }
23603
23262
  return getCountryByNationalNumber(nationalPhoneNumber, {
23604
23263
  countries: possibleCountries,
23605
- defaultCountry,
23606
23264
  metadata: metadata2.metadata
23607
23265
  });
23608
23266
  }
@@ -23811,8 +23469,7 @@ function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCalling
23811
23469
  country = defaultCountry;
23812
23470
  }
23813
23471
  countryCallingCode = defaultCallingCode || getCountryCallingCode(defaultCountry, metadata2.metadata);
23814
- } else
23815
- return {};
23472
+ } else return {};
23816
23473
  if (!number2) {
23817
23474
  return {
23818
23475
  countryCallingCodeSource,
@@ -23822,13 +23479,11 @@ function parsePhoneNumber$1(formattedPhoneNumber, defaultCountry, defaultCalling
23822
23479
  var _extractNationalNumbe = extractNationalNumber(parseIncompletePhoneNumber(number2), metadata2), nationalNumber = _extractNationalNumbe.nationalNumber, carrierCode = _extractNationalNumbe.carrierCode;
23823
23480
  var exactCountry = getCountryByCallingCode(countryCallingCode, {
23824
23481
  nationalNumber,
23825
- defaultCountry,
23826
23482
  metadata: metadata2
23827
23483
  });
23828
23484
  if (exactCountry) {
23829
23485
  country = exactCountry;
23830
- if (exactCountry === "001")
23831
- ;
23486
+ if (exactCountry === "001") ;
23832
23487
  else {
23833
23488
  metadata2.country(country);
23834
23489
  }
@@ -23911,21 +23566,15 @@ function _nonIterableRest() {
23911
23566
  throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
23912
23567
  }
23913
23568
  function _unsupportedIterableToArray(o, minLen) {
23914
- if (!o)
23915
- return;
23916
- if (typeof o === "string")
23917
- return _arrayLikeToArray(o, minLen);
23569
+ if (!o) return;
23570
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
23918
23571
  var n = Object.prototype.toString.call(o).slice(8, -1);
23919
- if (n === "Object" && o.constructor)
23920
- n = o.constructor.name;
23921
- if (n === "Map" || n === "Set")
23922
- return Array.from(o);
23923
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
23924
- return _arrayLikeToArray(o, minLen);
23572
+ if (n === "Object" && o.constructor) n = o.constructor.name;
23573
+ if (n === "Map" || n === "Set") return Array.from(o);
23574
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
23925
23575
  }
23926
23576
  function _arrayLikeToArray(arr, len) {
23927
- if (len == null || len > arr.length)
23928
- len = arr.length;
23577
+ if (len == null || len > arr.length) len = arr.length;
23929
23578
  for (var i = 0, arr2 = new Array(len); i < len; i++) {
23930
23579
  arr2[i] = arr[i];
23931
23580
  }
@@ -23933,8 +23582,7 @@ function _arrayLikeToArray(arr, len) {
23933
23582
  }
23934
23583
  function _iterableToArrayLimit(arr, i) {
23935
23584
  var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
23936
- if (_i == null)
23937
- return;
23585
+ if (_i == null) return;
23938
23586
  var _arr = [];
23939
23587
  var _n = true;
23940
23588
  var _d = false;
@@ -23942,26 +23590,22 @@ function _iterableToArrayLimit(arr, i) {
23942
23590
  try {
23943
23591
  for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
23944
23592
  _arr.push(_s.value);
23945
- if (i && _arr.length === i)
23946
- break;
23593
+ if (i && _arr.length === i) break;
23947
23594
  }
23948
23595
  } catch (err) {
23949
23596
  _d = true;
23950
23597
  _e = err;
23951
23598
  } finally {
23952
23599
  try {
23953
- if (!_n && _i["return"] != null)
23954
- _i["return"]();
23600
+ if (!_n && _i["return"] != null) _i["return"]();
23955
23601
  } finally {
23956
- if (_d)
23957
- throw _e;
23602
+ if (_d) throw _e;
23958
23603
  }
23959
23604
  }
23960
23605
  return _arr;
23961
23606
  }
23962
23607
  function _arrayWithHoles(arr) {
23963
- if (Array.isArray(arr))
23964
- return arr;
23608
+ if (Array.isArray(arr)) return arr;
23965
23609
  }
23966
23610
  function normalizeArguments(args) {
23967
23611
  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];
@@ -23970,8 +23614,7 @@ function normalizeArguments(args) {
23970
23614
  var metadata2;
23971
23615
  if (typeof arg_1 === "string") {
23972
23616
  text2 = arg_1;
23973
- } else
23974
- throw new TypeError("A text for parsing must be a string.");
23617
+ } else throw new TypeError("A text for parsing must be a string.");
23975
23618
  if (!arg_2 || typeof arg_2 === "string") {
23976
23619
  if (arg_4) {
23977
23620
  options = arg_3;
@@ -23992,8 +23635,7 @@ function normalizeArguments(args) {
23992
23635
  } else {
23993
23636
  metadata2 = arg_2;
23994
23637
  }
23995
- } else
23996
- throw new Error("Invalid second argument: ".concat(arg_2));
23638
+ } else throw new Error("Invalid second argument: ".concat(arg_2));
23997
23639
  return {
23998
23640
  text: text2,
23999
23641
  options,
@@ -24038,8 +23680,7 @@ function parsePhoneNumber(text2, options, metadata2) {
24038
23680
  try {
24039
23681
  return parsePhoneNumberWithError(text2, options, metadata2);
24040
23682
  } catch (error) {
24041
- if (error instanceof ParseError)
24042
- ;
23683
+ if (error instanceof ParseError) ;
24043
23684
  else {
24044
23685
  throw error;
24045
23686
  }
@@ -24331,7 +23972,6 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
24331
23972
  };
24332
23973
  }
24333
23974
  });
24334
- const loginCheckModal_vue_vue_type_style_index_0_lang = "";
24335
23975
  const GIT_CODE_LOGO_WHITE = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPMAAAA4CAYAAAAo2c5IAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAA0wSURBVHgB7Z1fctQ6FsY/d26m5u3mruAqDzB1n2gWcMFZAWEFNCsgrCCdFRBWkGYFhBXEwAIIT1MTaipiBeS+zQykNee0ZHC7bUm2ZXeH6FelSrr9V2590tHRkQxEIpGfggQDcSlS8RXYoQvuKEDQX8nf0/9X2/T/rsyuEIlEWtOLmEm4O/8D0hHmDxWSNIESJNod+1HJOe0jE8zfbGMrI3FLRCIRb4KK+ZNIUwV1SOIdu8XrIsmA+au78v0MkUjESWcxcyv8DfNn9O9BdwFXIskYP4qijkTsdBLzhUgnZBa/6EnEZWQUdSRSTysxa2eWOiFxpRicZLaN5Cj2qSORZRqLmfvF1Jd9PVBrXIcERo/vyuwckUhkwajJzv8WD54pzM/WLGRGUIVyxhYCIpHIAm8xfxIPDq+BY2wOO2TqHyISiSzwMrO5Rd4wIedcbWO0e5sCTpRa+CmE+ZglSSIRicCjZSaP9XhYISeZov6w5847/1m/yT8IJGJB6ZL+PaN0YtIlfXdC6VY8g4idX2wbjdf6NYZBJhg9vSOzjD9ciAdeB/2dWmf85LCQoUUsKjZPzPd7iPQO/RZj+vPMsstHspbWYsVaxaz7pIuCVAs5w45GUFfUmj5yDVUpJDIpnE9/JlMRyatcxD9g89F+bdyemO4U1UL+vp0FH03uQWAraGLZnmFNXdJaMXNACHmMJ3CgSMh35Hu++eN/Uku+DZBZPh+TQH+nbZ+ptZX0XeNYazr2FQnd4eBSR9gwjMm7T+khtAh3sNwVkCa9gn+fV3juI7EmKvItCpu5wj036WWsdPrB0jL7eYpJtN8L6h9asJxO0ZG/YXTMYaJ1w2B03dM78t0MG4IpzIuwVtj78cKk1Bw3oz9HjgLuY31cWe6NTcP9ms2zLuIy+eayMkF9vvn71KQDOobLx/Mo6rBUOsB0q+w0cRckPTmg2Hwm031Pm9tL17ti0/6OfOvrJOsdKpwsYnZOTdH8eUwondE5Diz7zGAXtCRh2AJoWMiHNUmgJYV8uyqwqvth510cWgxITcu8GQ/ZRHjt6tlYEFTzXG1pk31j+snsTYa9D+WDoPSCzvUriXKl60DfXdG259Ae7DISbufXPQQmUL6ndB4W9h7nEZFOrIhZC2cu4I3qPaRy1Tm2GVBBZE//PsLxW90GKuwzul5mrpeL8yO0mewSQlDrKZCQc+KwWiBWxEyOpydowDW2MtxCqEC/QFghs6lsM7Vh+pjHaM4YgTCm8QRhkIitcjCq+swpvElmf9zC2UtUoCfQ/URfuLBK1Pd7eVsv48TGQRWk9TOOtGmDQyTsHvbHN9AJJrGhLLXMlyIdf21gYl8j2bihoYHw8SmwcF+i5C02ASATaM93LjJroTaCtFUeV8VABSM6Yc7/EHaemBDRIud0vtOKfX0CiPJ8H+ctbmHYquhwe+5w2i1hzpFSeoTVoS8+j6T0hrsj6IB5Fnyf/Ax3CufnxOU9mBVh8jTB8jAmStd8RXnK0JRP4s+DC/FA+aWHJ7iFcKus3Fwa0drOw+GZHxxe7OK+1uuV9j9T3TjpI9+0bYfSMaUpGkD7P6P0RflxqbTl1Ailn/GZx7n3HfuceV6vSZ5eK+UeXVpqmRUS5wE5HLWFAHDsN/0Z1zndOLpsji3Jnmy62fMN8GQ/c2zn+9tzmY9m+33cHHx8KdZ8m5bau3uidMvFFUsT34TgY+hYbu2e+/THlbZkWISu7oiAn3ViuxZfg/0tkwaHcf7HdOxjmzVTcoAl9xYBmm5kFw/z8rph88UDrJu+pbjawHxxV1+xmIpJ48zJeUJe9DlGb/8hs1MMhKkdXc4kVwDIjUP9MHFtzELm21yTBdbWeTeBFoDVwaZ+xL0H8St40DZPgtJrkx9ZtcOo4gAPWtjwBb5C8QIH0zaLHOhjFI87H5DIX5PJf3kh/pxgGFLH9qt1Bdn3jE/hC+0/eYHuXvixOY+NwYSs9AhIlzwJVMcaLFgSM7V2XpmilvENWmKiy7r+SEUE3fkJi3qAlUdc9/0WPyepY3sWuFWeINzwF/f1U8t1BAZANR8BqSOty0+pz+xXQyUd3PPcN+68vm814qteSmivx8X+XJFUlf0ZpR1KAn68JWFM0Y2Phf+LXtkq+J6vLMczAv7XC4FrtIDvl302fO8ptIfblkd+/rstrsNk0JV0PjLQtiFyXYstm0VXxfThef86X8G+ua8lrFMg6+iykJ6eLtmTnH8I+n5PjjJXZSdrvk/hL2aJjhSDT4x3NbXs/txj6ON3x/aQwzVcUIVjt72CI2hmWiqbF5k91Wkxn+rH8J2No3LFqrQnvlG4s1peHaaK58XuGeeNjnmK1eGqHK68Vlr5Up/Zy1Tq9MN9w9Zp0u+CAizovmLLh3KS3GYeOba/KXt0jUgzx3HlVi517C9rLKQMzdmH/TorfhbjtKsbMRKqYnWZRqtzGjoJkSPGvmF0Xy1uNMl6EvYBe8wRuYm4zNis5nuXH+dRoOu0wdY947H3k6oEe8CPKH+xZGaTsPjlbQJ2OovEhIBOit+x8+qbfjvkjsK1mBfmSetplsmvWNyb38L7/8X1BMOv+PCzViCuCjdkvoVj+3nD73PK9+jqOnxGOGwVRx4F1hSBUp5LDjDlk4EdbvVC90l3fyxsYIVXM9larEvm8ognKcKLmR+esGy3bbvJ/OXYLhAOV8VQV+4kup236fmaMEglXzKzR16Ora9rLLTcqm8j2XOZ56Me5vDCXVvXmUX8XLNCkrhZuMqFK/47JH36W24SK89hSczbnsv90PDSPtaItgq6Ba60RDq2j6vGAMmZwWF4e3lCvWNjU3GasHVjnz1Q18oJDHOdNvRRAa2cc8nMZpFciIeZq1+aIBmyJq7E4+XtEuHhys4VUcSe9Aw/F/lYtO2Zh8q3hF2YY1RXLi7xlY9xCUwgHLZnx9u8GtEiVTHaK+PMCeZvlO5vWlApr0iyrhVA9Hre89Sxm0RgzIB+BvuwBkfoHFYt/7MmOhdas2xRHqBRh1e+TQvOFWLdtE+XX6LOV+Ia0vrs+FwmZDeNg06EZbvXhBAXK0NTv2Br5jNcRKb2ybqGf3zeMdUl5NSBj4k8NcMLAuvH5bxyOBK/41M5cb4Pq/Kt9PRHFnE+0aBu9pErJPZJeYzVXC91HFdu/Vxdh7qwyTYit12L8xIkLmJFzHpVTK8Cy2+7cJmcweEX2NHPN3HsJvuaTWUmv0uPXSfQK1B+MPNRpybx+KFrGmVIXIX2iSrM/zWiW6mkPQMzmCmlqjxfYjlqaWzEXWYGe2PC93ZmIrjylp4rBgE7WemzT/ngPHBsN98rB2qw6I7RnBnseTqoq/zN78HbL11+icq4Sj38M7+EB3SC6R35bhCTkoWsvJatUU/vyvcz9IRH+GAXOD73ael6AloMdXAUUVXscZN7vTJJQJvApxXn4m0fENY5NC2b5m1CJh28rFpfzSPUtQ2ZcXKWrzWFX5648pXQv8UYy5ZT5blzkroN/xIPpon3A00yGi562tcEBzP/mYV84LG7vCvf7aJnlF4hpA/LJKiYzfFf0EyAR3WTPXrK91LlYSwDrjQEuiMp3a/qk/ZUKdeJOVSe9upi6WvDOfmNEv4eYZXyBAduOUNPQ2RHG5nzHzyFDH75HAbAxNP2YZG4+rhteNlw/9p+dA/5ZpGdl67B3z1G9yEdPr52cYIGXYfOBMxTbQObwIJZQ7tRzaXfOJGcVr8Mzg9eSoi86o/oPBPfN2sYXlKr7CX6UJj+JrdUIUxPFt20XPgCtMxNWwVeZOE32w6BWmgJy1JDpl/s0x+uIhey1WfQssWUlv2tpnCDJYpsVHaDEtdRzcztKngyBQ9rcKjo1vcHq7jAUIbmlJJFmt8j8ZKIydnQLqNyG6P761gjzIhtCr91sqrIoE3bzHL+1mIunKPutbBV7CaOBQc65ruy4qq5RtM1yjNKTxPPBRMaPpvFfVP6UrPdKubC9dgpmKIZEjpfWdVGp5gZEjQPV7UtqEMgrzHaW/ca3uZH4kKXLwdrgwsxjxqcJo75xIXCVod0FaDCeabQ4ZfCsitXuj7znJuel/O8svyw5zVS6FGAfcu5+b6PkjZL0+K7lVVcDrhIVjy30m8zqeqO8DLFXu9BM3mawL64Qh5U8sqVLy8xMxfi4YfAy/0EZHS/y4IJfWF+rB0s/1CLQpcEXGanDWp5be2chSe1SwCDMVvzc+cEy3PN+Tvfd+ka5WeT9f17VVyz8TPzFrP2KNNYGFQTc2cA+h2GikRuCt5izrkQD44xbNBDJTpKbfR4U18qF4kMTWMxM/zmC3JWDR79VWAj+siRyCbRZtkg3JHvj0lM5D31f1dQQF6y1zoKORJZplXLXMSsg33YcDy4BTzElRxFszoSqaazmHOMqJ/4rtHlTxRxJOJDMDHn8CSNX3C9rzB61CYAxESQnfO8ap6OuQEviotEbgTBxVyGQzOpYy6uMR8XVtksoP4i0UuFrcW42iaOF0cikUgkEolEIs34P3h7TBmol5dNAAAAAElFTkSuQmCC";
24336
23976
  const _hoisted_1$3 = { class: "mfa" };
24337
23977
  const _hoisted_2$1 = ["src"];
@@ -24426,8 +24066,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
24426
24066
  });
24427
24067
  const activeInputIndex = ref(0);
24428
24068
  const inputChange = (e, index2) => {
24429
- if (!e)
24430
- return;
24069
+ if (!e) return;
24431
24070
  activeInputIndex.value = index2 + 1;
24432
24071
  if (activeInputIndex.value >= inputList.value.length) {
24433
24072
  activeInputIndex.value = inputList.value.length - 1;
@@ -24441,15 +24080,13 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
24441
24080
  };
24442
24081
  const keyUp = (e, index2) => {
24443
24082
  activeInputIndex.value = index2;
24444
- if (e.key === "Tab")
24445
- return;
24083
+ if (e.key === "Tab") return;
24446
24084
  if (e.key === "Backspace") {
24447
24085
  inputList.value[activeInputIndex.value] && (inputList.value[activeInputIndex.value].value = "");
24448
24086
  if (!currentInputValue.value) {
24449
24087
  activeInputIndex.value--;
24450
24088
  }
24451
- if (activeInputIndex.value < 0)
24452
- activeInputIndex.value = 0;
24089
+ if (activeInputIndex.value < 0) activeInputIndex.value = 0;
24453
24090
  }
24454
24091
  focusInput();
24455
24092
  };
@@ -24597,10 +24234,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
24597
24234
  };
24598
24235
  }
24599
24236
  });
24600
- const MFA_vue_vue_type_style_index_0_lang = "";
24601
- const MFA_vue_vue_type_style_index_1_scoped_02a2d8c5_lang = "";
24602
- const MFA = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-02a2d8c5"]]);
24603
- const SlidCaptcha = defineAsyncComponent(() => import("./index-0fbe52d6.js"));
24237
+ const MFA = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-gitcode-layout-lib"]]);
24238
+ const SlidCaptcha = defineAsyncComponent(() => import("./index-DnIsQr7j.js"));
24604
24239
  const useSlidCaptcha = () => {
24605
24240
  const { mount, unMount } = usePopup("slid-captcha-popup");
24606
24241
  const open = (config) => {
@@ -24619,7 +24254,6 @@ const useSlidCaptcha = () => {
24619
24254
  close: unMount
24620
24255
  };
24621
24256
  };
24622
- const contentLoading_vue_vue_type_style_index_0_scoped_0985c44e_lang = "";
24623
24257
  const _sfc_main$3 = {};
24624
24258
  const _hoisted_1$2 = { class: "content-loading" };
24625
24259
  function _sfc_render(_ctx, _cache) {
@@ -24636,7 +24270,7 @@ function _sfc_render(_ctx, _cache) {
24636
24270
  ], -1)
24637
24271
  ]));
24638
24272
  }
24639
- const ContentLoading = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render], ["__scopeId", "data-v-0985c44e"]]);
24273
+ const ContentLoading = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render], ["__scopeId", "data-v-gitcode-layout-lib"]]);
24640
24274
  const _sfc_main$2 = /* @__PURE__ */ defineComponent({
24641
24275
  __name: "index",
24642
24276
  props: {
@@ -24668,15 +24302,13 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
24668
24302
  };
24669
24303
  }
24670
24304
  });
24671
- const index_vue_vue_type_style_index_0_scoped_98ddb697_lang = "";
24672
- const DataPanel = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-98ddb697"]]);
24305
+ const DataPanel = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-gitcode-layout-lib"]]);
24673
24306
  function useVisibilityPoll(pollFunction, options = {}, shouldPoll) {
24674
24307
  const { interval = 1e4, immediate = true } = options;
24675
24308
  const timer = ref(null);
24676
24309
  const isPageVisible = ref(true);
24677
24310
  const startPoll = () => {
24678
- if (shouldPoll !== void 0 && !shouldPoll.value)
24679
- return;
24311
+ if (shouldPoll !== void 0 && !shouldPoll.value) return;
24680
24312
  if (!timer.value && isPageVisible.value) {
24681
24313
  if (immediate) {
24682
24314
  pollFunction();
@@ -24985,8 +24617,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
24985
24617
  cb(new Error($t("gitCodeLayout.LoginModal.rule.username")));
24986
24618
  return;
24987
24619
  }
24988
- if (usernameCheckLoading.value)
24989
- return;
24620
+ if (usernameCheckLoading.value) return;
24990
24621
  usernameCheckLoading.value = true;
24991
24622
  try {
24992
24623
  const res = await API.checkUsername(val);
@@ -25256,14 +24887,20 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25256
24887
  loading.value = false;
25257
24888
  slidCaptcha.open({ onSuccess: (captchaData) => handleConfirm({ captchaId: captchaData.id }) });
25258
24889
  };
24890
+ const errForRemoteLogin = ref(false);
24891
+ const handleRemoteLogin = () => {
24892
+ errForRemoteLogin.value = true;
24893
+ };
24894
+ const goToVerifyCode = () => {
24895
+ tabPanel.value = "verifyCode";
24896
+ };
25259
24897
  const handleConfirm = async (info) => {
25260
24898
  var _a, _b;
25261
24899
  if (formType.value === "register") {
25262
24900
  useReport("signup_submit", {}, API.report);
25263
24901
  }
25264
24902
  const formData = await ((_a = FormRef.value) == null ? void 0 : _a.ValidateForm());
25265
- if (!formData || formData.type === "fail")
25266
- return false;
24903
+ if (!formData || formData.type === "fail") return false;
25267
24904
  const res = formData.forms;
25268
24905
  const { country } = ((_b = FormRef.value) == null ? void 0 : _b.Data) || {};
25269
24906
  const mobile = getPhone({ value: res.mobile, country });
@@ -25272,16 +24909,16 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25272
24909
  return;
25273
24910
  } else if (formType.value === "register") {
25274
24911
  const check = await LoginCheck();
25275
- if (!check)
25276
- return;
24912
+ if (!check) return;
25277
24913
  await registerAction(res, mobile);
25278
24914
  } else {
24915
+ errForRemoteLogin.value = false;
25279
24916
  const loginFunction = tabPanel.value === "password" ? LoginConfig.password : LoginConfig.phone;
25280
24917
  const params = tabPanel.value === "password" ? { ...res, captchaId: info == null ? void 0 : info.captchaId } : {
25281
24918
  mobile,
25282
24919
  code: res.code
25283
24920
  };
25284
- await loginFunction({ validFunc: LoginCheck, successFunc: loginSuccess, failFunc: loginFail, loginDeviceType: "pc" }, params, graphValidate);
24921
+ await loginFunction({ validFunc: LoginCheck, successFunc: loginSuccess, failFunc: loginFail, loginDeviceType: "pc" }, params, graphValidate, handleRemoteLogin);
25285
24922
  }
25286
24923
  setTimeout(() => {
25287
24924
  loading.value = false;
@@ -25359,6 +24996,12 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25359
24996
  slidCaptcha.open({ onSuccess: (captchaData) => handleCountDown({ ...conf, captchaId: captchaData.id, noVerificationRequired: true }) });
25360
24997
  return;
25361
24998
  }
24999
+ if (formType.value === "forget" && !conf.captchaId) {
25000
+ slidCaptcha.open({
25001
+ onSuccess: (captchaData) => handleCountDown({ ...conf, captchaId: captchaData.id })
25002
+ });
25003
+ return;
25004
+ }
25362
25005
  if (tabPanel.value === "verifyCode" || formType.value === "register" || formType.value === "forget") {
25363
25006
  const res = await handleCountDownSubmission(conf, mobile);
25364
25007
  if (formType.value === "login" && ((_b = res == null ? void 0 : res.error) == null ? void 0 : _b.error_code) === 400007) {
@@ -25367,10 +25010,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25367
25010
  }
25368
25011
  if (!res.error) {
25369
25012
  cacheForm.mobile = conf.value;
25370
- cacheForm.country = conf.country;
25013
+ cacheForm.country = conf.country || "";
25371
25014
  localStorage$2.setItem("cache_countdown", JSON.stringify({
25372
25015
  mobile: conf.value,
25373
- country: conf.country
25016
+ country: conf.country || ""
25374
25017
  }));
25375
25018
  if (Number((res == null ? void 0 : res.data.data.type) === 1)) {
25376
25019
  formType.value = "register";
@@ -25506,6 +25149,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25506
25149
  watch(
25507
25150
  () => [tabPanel.value, formType.value],
25508
25151
  (newVal, oldVal) => {
25152
+ errForRemoteLogin.value = false;
25509
25153
  if (FormRef.value) {
25510
25154
  FormRef.value.ClearForm();
25511
25155
  clearFormError();
@@ -25628,16 +25272,14 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25628
25272
  const fetchMiniProgramStatus = async () => {
25629
25273
  var _a;
25630
25274
  const res = await LoginConfig.miniProgramCheckStatus(miniProgramInfo.value.scene_id);
25631
- if (res.error)
25632
- return;
25275
+ if (res.error) return;
25633
25276
  const { status: miniProgramCurrentStatus } = ((_a = res == null ? void 0 : res.data) == null ? void 0 : _a.data) || "WAITING";
25634
25277
  miniProgramStatus.value = miniProgramCurrentStatus;
25635
25278
  if (miniProgramCurrentStatus === "TIMEOUT" || miniProgramCurrentStatus === "CANCEL") {
25636
25279
  stopPoll();
25637
25280
  return;
25638
25281
  }
25639
- if (miniProgramCurrentStatus !== "LOGIN")
25640
- return;
25282
+ if (miniProgramCurrentStatus !== "LOGIN") return;
25641
25283
  stopPoll();
25642
25284
  const loginResult = await LoginConfig.miniProgramLogin(miniProgramInfo.value.scene_id);
25643
25285
  if (!loginResult.success) {
@@ -25650,8 +25292,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25650
25292
  }, shouldMiniProgramPoll);
25651
25293
  const getMiniProgramQrCode = async () => {
25652
25294
  var _a;
25653
- if (miniProgramLoading.value)
25654
- return;
25295
+ if (miniProgramLoading.value) return;
25655
25296
  miniProgramLoading.value = true;
25656
25297
  stopPoll();
25657
25298
  miniProgramStatus.value = "WAITING";
@@ -25802,7 +25443,16 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25802
25443
  }, {
25803
25444
  submit: withCtx(() => [
25804
25445
  formType.value === "login" ? (openBlock(), createElementBlock("div", _hoisted_14, [
25805
- createElementVNode("div", _hoisted_15, toDisplayString$1(errorMsg.value), 1),
25446
+ createElementVNode("div", _hoisted_15, [
25447
+ createTextVNode(toDisplayString$1(errorMsg.value) + " ", 1),
25448
+ errForRemoteLogin.value ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
25449
+ createTextVNode(toDisplayString$1(unref($t)("gitCodeLayout.LoginModal.tips.unusualLogin")), 1),
25450
+ createElementVNode("span", {
25451
+ onClick: goToVerifyCode,
25452
+ class: "login-modal-info-left__link"
25453
+ }, toDisplayString$1(unref($t)("gitCodeLayout.LoginModal.tips.smsLogin")), 1)
25454
+ ], 64)) : createCommentVNode("", true)
25455
+ ]),
25806
25456
  withDirectives(createElementVNode("div", {
25807
25457
  class: "login-modal-info-right",
25808
25458
  onClick: _cache[4] || (_cache[4] = withModifiers(($event) => formType.value = "forget", ["stop"]))
@@ -25955,9 +25605,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
25955
25605
  };
25956
25606
  }
25957
25607
  });
25958
- const index_vue_vue_type_style_index_0_scoped_cbde7853_lang = "";
25959
- const index_vue_vue_type_style_index_1_lang = "";
25960
- const LoginModal = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-cbde7853"]]);
25608
+ const LoginModal = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-gitcode-layout-lib"]]);
25961
25609
  const { t } = i18n.global;
25962
25610
  function useLogin(request) {
25963
25611
  const successMsg = t("gitCodeLayout.common.tips.welcome");
@@ -26114,7 +25762,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
26114
25762
  };
26115
25763
  }
26116
25764
  });
26117
- const main = "";
26118
25765
  const GitCodeLayoutEmitter = emitter;
26119
25766
  const index = {
26120
25767
  install: (app) => {
@@ -26136,8 +25783,8 @@ export {
26136
25783
  TOPIC_TYPE as T,
26137
25784
  _export_sfc as _,
26138
25785
  i18n as a,
26139
- REPO_EVENT as b,
26140
- REPO_TYPE as c,
25786
+ REPO_TYPE as b,
25787
+ REPO_EVENT as c,
26141
25788
  debounce$1 as d,
26142
25789
  extractRepoInfoWithURL as e,
26143
25790
  useTimeFormat as f,