@bagelink/vue 0.0.769 → 0.0.773
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Pill.vue.d.ts +53 -0
- package/dist/components/Pill.vue.d.ts.map +1 -0
- package/dist/components/TableSchema.vue.d.ts +4 -2
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +813 -623
- package/dist/index.mjs +813 -623
- package/dist/style.css +169 -90
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +12 -12
- package/src/components/Btn.vue +2 -2
- package/src/components/Pill.vue +180 -0
- package/src/components/TableSchema.vue +43 -38
- package/src/components/index.ts +2 -1
- package/src/styles/layout.css +8 -0
- package/src/styles/mobilLayout.css +8 -0
- package/src/styles/theme.css +4 -0
- package/src/utils/index.ts +0 -1
package/dist/index.mjs
CHANGED
|
@@ -38,7 +38,7 @@ const bagelFormUtils = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defi
|
|
|
38
38
|
return txtField;
|
|
39
39
|
}
|
|
40
40
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
41
|
-
const _sfc_main$
|
|
41
|
+
const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
42
42
|
__name: "Accordion",
|
|
43
43
|
setup(__props) {
|
|
44
44
|
const state2 = reactive({
|
|
@@ -52,11 +52,11 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
|
-
const _hoisted_1$
|
|
56
|
-
const _hoisted_2$
|
|
57
|
-
const _hoisted_3$
|
|
58
|
-
const _hoisted_4$
|
|
59
|
-
const _sfc_main$
|
|
55
|
+
const _hoisted_1$K = { class: "accordion-item" };
|
|
56
|
+
const _hoisted_2$u = ["aria-expanded", "aria-controls"];
|
|
57
|
+
const _hoisted_3$l = { class: "accordion-label" };
|
|
58
|
+
const _hoisted_4$f = ["id", "aria-hidden"];
|
|
59
|
+
const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
60
60
|
__name: "AccordionItem",
|
|
61
61
|
props: {
|
|
62
62
|
label: {},
|
|
@@ -93,7 +93,7 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
93
93
|
else if (accordionState.openItem === id) accordionState.openItem = null;
|
|
94
94
|
}
|
|
95
95
|
return (_ctx, _cache) => {
|
|
96
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
96
|
+
return openBlock(), createElementBlock("div", _hoisted_1$K, [
|
|
97
97
|
createElementVNode("button", {
|
|
98
98
|
"aria-expanded": unref(isOpen) ? "true" : "false",
|
|
99
99
|
class: "accordion-head",
|
|
@@ -101,14 +101,14 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
101
101
|
onClick: _cache[0] || (_cache[0] = ($event) => toggle())
|
|
102
102
|
}, [
|
|
103
103
|
renderSlot(_ctx.$slots, "head", {}, () => [
|
|
104
|
-
createElementVNode("span", _hoisted_3$
|
|
104
|
+
createElementVNode("span", _hoisted_3$l, toDisplayString(_ctx.label), 1)
|
|
105
105
|
], true),
|
|
106
106
|
createElementVNode("div", {
|
|
107
107
|
class: normalizeClass(["accordion-icon", { open: unref(isOpen) }])
|
|
108
108
|
}, [
|
|
109
|
-
createVNode(unref(_sfc_main$
|
|
109
|
+
createVNode(unref(_sfc_main$c), { icon: "expand_more" })
|
|
110
110
|
], 2)
|
|
111
|
-
], 8, _hoisted_2$
|
|
111
|
+
], 8, _hoisted_2$u),
|
|
112
112
|
createVNode(Transition, { name: "expand" }, {
|
|
113
113
|
default: withCtx(() => [
|
|
114
114
|
unref(isOpen) ? (openBlock(), createElementBlock("div", {
|
|
@@ -118,7 +118,7 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
118
118
|
"aria-hidden": unref(isOpen) ? "false" : "true"
|
|
119
119
|
}, [
|
|
120
120
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
121
|
-
], 8, _hoisted_4$
|
|
121
|
+
], 8, _hoisted_4$f)) : createCommentVNode("", true)
|
|
122
122
|
]),
|
|
123
123
|
_: 3
|
|
124
124
|
})
|
|
@@ -133,9 +133,9 @@ const _export_sfc = (sfc, props2) => {
|
|
|
133
133
|
}
|
|
134
134
|
return target;
|
|
135
135
|
};
|
|
136
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
137
|
-
const _hoisted_1$
|
|
138
|
-
const _sfc_main$
|
|
136
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-f87b579d"]]);
|
|
137
|
+
const _hoisted_1$J = { class: "relative" };
|
|
138
|
+
const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
139
139
|
__name: "AddressSearch",
|
|
140
140
|
emits: ["addressSelected"],
|
|
141
141
|
setup(__props, { emit: __emit }) {
|
|
@@ -157,8 +157,8 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
157
157
|
(_a2 = suggestion.value) == null ? void 0 : _a2.show();
|
|
158
158
|
}
|
|
159
159
|
return (_ctx, _cache) => {
|
|
160
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
161
|
-
createVNode(unref(_sfc_main$
|
|
160
|
+
return openBlock(), createElementBlock("div", _hoisted_1$J, [
|
|
161
|
+
createVNode(unref(_sfc_main$K), {
|
|
162
162
|
ref_key: "suggestion",
|
|
163
163
|
ref: suggestion,
|
|
164
164
|
noAutoFocus: true,
|
|
@@ -176,7 +176,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
176
176
|
createVNode(unref(ListView), { class: "-mt-2 hm-300px" }, {
|
|
177
177
|
default: withCtx(() => [
|
|
178
178
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(unref(searchResults), (result2, index2) => {
|
|
179
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
179
|
+
return openBlock(), createBlock(unref(_sfc_main$f), {
|
|
180
180
|
key: index2,
|
|
181
181
|
icon: "location_on",
|
|
182
182
|
title: result2.display_name,
|
|
@@ -193,15 +193,15 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
193
193
|
};
|
|
194
194
|
}
|
|
195
195
|
});
|
|
196
|
-
const _hoisted_1$
|
|
196
|
+
const _hoisted_1$I = {
|
|
197
197
|
key: 0,
|
|
198
198
|
class: "loading"
|
|
199
199
|
};
|
|
200
|
-
const _hoisted_2$
|
|
200
|
+
const _hoisted_2$t = {
|
|
201
201
|
key: 1,
|
|
202
202
|
class: "bgl_btn-flex"
|
|
203
203
|
};
|
|
204
|
-
const _sfc_main$
|
|
204
|
+
const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
205
205
|
__name: "Btn",
|
|
206
206
|
props: {
|
|
207
207
|
disabled: { type: Boolean, default: false },
|
|
@@ -225,8 +225,8 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
225
225
|
},
|
|
226
226
|
setup(__props) {
|
|
227
227
|
useCssVars((_ctx) => ({
|
|
228
|
-
"
|
|
229
|
-
"
|
|
228
|
+
"a09b41ba": computedBackgroundColor.value,
|
|
229
|
+
"31d09c3e": cumputedTextColor.value
|
|
230
230
|
}));
|
|
231
231
|
const props2 = __props;
|
|
232
232
|
const isComponent = computed(() => {
|
|
@@ -295,8 +295,8 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
295
295
|
onClick: withModifiers(_ctx.onClick, ["stop"])
|
|
296
296
|
}, {
|
|
297
297
|
default: withCtx(() => [
|
|
298
|
-
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
299
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
298
|
+
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_1$I)) : (openBlock(), createElementBlock("div", _hoisted_2$t, [
|
|
299
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
300
300
|
key: 0,
|
|
301
301
|
icon: _ctx.icon
|
|
302
302
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
@@ -304,7 +304,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
304
304
|
!unref(slots).default && _ctx.value ? (openBlock(), createElementBlock(Fragment$1, { key: 1 }, [
|
|
305
305
|
createTextVNode(toDisplayString(_ctx.value), 1)
|
|
306
306
|
], 64)) : createCommentVNode("", true),
|
|
307
|
-
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$
|
|
307
|
+
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
308
308
|
key: 2,
|
|
309
309
|
icon: props2["icon.end"]
|
|
310
310
|
}, null, 8, ["icon"])) : createCommentVNode("", true)
|
|
@@ -315,10 +315,10 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
315
315
|
};
|
|
316
316
|
}
|
|
317
317
|
});
|
|
318
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
319
|
-
const _hoisted_1$
|
|
320
|
-
const _hoisted_2$
|
|
321
|
-
const _sfc_main$
|
|
318
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-17faf037"]]);
|
|
319
|
+
const _hoisted_1$H = ["dismissable"];
|
|
320
|
+
const _hoisted_2$s = { class: "m-0" };
|
|
321
|
+
const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
322
322
|
__name: "Alert",
|
|
323
323
|
props: {
|
|
324
324
|
message: {},
|
|
@@ -339,14 +339,14 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
339
339
|
class: normalizeClass(["alert", [_ctx.type]]),
|
|
340
340
|
dismissable: _ctx.dismissable
|
|
341
341
|
}, [
|
|
342
|
-
_ctx.icon !== "none" ? (openBlock(), createBlock(unref(_sfc_main$
|
|
342
|
+
_ctx.icon !== "none" ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
343
343
|
key: 0,
|
|
344
344
|
class: "alert_icon",
|
|
345
345
|
icon: _ctx.icon || _ctx.type,
|
|
346
346
|
size: 2,
|
|
347
347
|
color: color2[_ctx.type]
|
|
348
348
|
}, null, 8, ["icon", "color"])) : createCommentVNode("", true),
|
|
349
|
-
createElementVNode("p", _hoisted_2$
|
|
349
|
+
createElementVNode("p", _hoisted_2$s, toDisplayString(_ctx.message), 1),
|
|
350
350
|
createVNode(Btn, {
|
|
351
351
|
flat: "",
|
|
352
352
|
thin: "",
|
|
@@ -354,13 +354,13 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
354
354
|
icon: "close",
|
|
355
355
|
onClick: _cache[0] || (_cache[0] = ($event) => isDismissed.value = true)
|
|
356
356
|
})
|
|
357
|
-
], 10, _hoisted_1$
|
|
357
|
+
], 10, _hoisted_1$H)) : createCommentVNode("", true);
|
|
358
358
|
};
|
|
359
359
|
}
|
|
360
360
|
});
|
|
361
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
362
|
-
const _hoisted_1$
|
|
363
|
-
const _sfc_main$
|
|
361
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-1322d9e1"]]);
|
|
362
|
+
const _hoisted_1$G = ["src", "alt"];
|
|
363
|
+
const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
364
364
|
__name: "Avatar",
|
|
365
365
|
props: {
|
|
366
366
|
fallback: {},
|
|
@@ -378,7 +378,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
378
378
|
key: 0,
|
|
379
379
|
src: _ctx.src,
|
|
380
380
|
alt: _ctx.name
|
|
381
|
-
}, null, 8, _hoisted_1$
|
|
381
|
+
}, null, 8, _hoisted_1$G)) : (openBlock(), createElementBlock("p", {
|
|
382
382
|
key: 1,
|
|
383
383
|
style: normalizeStyle({ "line-height": `${_ctx.size}px`, "font-size": `calc(1.5rem * ${_ctx.size} / 50)` })
|
|
384
384
|
}, toDisplayString((_ctx.fallback || unref(initials)(_ctx.name || "")).toUpperCase()), 5))
|
|
@@ -386,8 +386,8 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
386
386
|
};
|
|
387
387
|
}
|
|
388
388
|
});
|
|
389
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
390
|
-
const _sfc_main$
|
|
389
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-46ad8c25"]]);
|
|
390
|
+
const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
391
391
|
__name: "Badge",
|
|
392
392
|
props: {
|
|
393
393
|
color: {},
|
|
@@ -403,13 +403,13 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
403
403
|
return openBlock(), createElementBlock("div", {
|
|
404
404
|
class: normalizeClass(["pill", [_ctx.color]])
|
|
405
405
|
}, [
|
|
406
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
406
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
407
407
|
key: 0,
|
|
408
408
|
class: "inline",
|
|
409
409
|
icon: _ctx.icon
|
|
410
410
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
411
411
|
createTextVNode(" " + toDisplayString(_ctx.text) + " ", 1),
|
|
412
|
-
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$
|
|
412
|
+
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
413
413
|
key: 1,
|
|
414
414
|
class: "inline",
|
|
415
415
|
icon: props2["icon.end"]
|
|
@@ -418,10 +418,10 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
418
418
|
};
|
|
419
419
|
}
|
|
420
420
|
});
|
|
421
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
422
|
-
const _hoisted_1$
|
|
423
|
-
const _hoisted_2$
|
|
424
|
-
const _sfc_main$
|
|
421
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-40a0b03a"]]);
|
|
422
|
+
const _hoisted_1$F = ["src"];
|
|
423
|
+
const _hoisted_2$r = ["src", "autoplay", "muted", "loop", "controls"];
|
|
424
|
+
const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
425
425
|
__name: "BglVideo",
|
|
426
426
|
props: {
|
|
427
427
|
src: {},
|
|
@@ -476,7 +476,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
476
476
|
allowfullscreen: "",
|
|
477
477
|
title: "Video",
|
|
478
478
|
allow: "autoplay"
|
|
479
|
-
}, null, 12, _hoisted_1$
|
|
479
|
+
}, null, 12, _hoisted_1$F)) : _ctx.src ? (openBlock(), createElementBlock("video", {
|
|
480
480
|
key: 1,
|
|
481
481
|
src: _ctx.src,
|
|
482
482
|
autoplay: _ctx.autoplay,
|
|
@@ -485,17 +485,17 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
485
485
|
style: normalizeStyle({ aspectRatio: aspectRatio.value }),
|
|
486
486
|
controls: _ctx.controls,
|
|
487
487
|
playsinline: ""
|
|
488
|
-
}, null, 12, _hoisted_2$
|
|
488
|
+
}, null, 12, _hoisted_2$r)) : createCommentVNode("", true)
|
|
489
489
|
], 2);
|
|
490
490
|
};
|
|
491
491
|
}
|
|
492
492
|
});
|
|
493
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
494
|
-
const _hoisted_1$
|
|
493
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-8495afe2"]]);
|
|
494
|
+
const _hoisted_1$E = {
|
|
495
495
|
key: 0,
|
|
496
496
|
class: "card_label"
|
|
497
497
|
};
|
|
498
|
-
const _sfc_main$
|
|
498
|
+
const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
499
499
|
__name: "Card",
|
|
500
500
|
props: {
|
|
501
501
|
label: {},
|
|
@@ -523,7 +523,7 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
|
|
|
523
523
|
}])
|
|
524
524
|
}, {
|
|
525
525
|
default: withCtx(() => [
|
|
526
|
-
_ctx.label ? (openBlock(), createElementBlock("span", _hoisted_1$
|
|
526
|
+
_ctx.label ? (openBlock(), createElementBlock("span", _hoisted_1$E, toDisplayString(_ctx.label), 1)) : createCommentVNode("", true),
|
|
527
527
|
renderSlot(_ctx.$slots, "default")
|
|
528
528
|
]),
|
|
529
529
|
_: 3
|
|
@@ -531,12 +531,12 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
|
|
|
531
531
|
};
|
|
532
532
|
}
|
|
533
533
|
});
|
|
534
|
-
const _hoisted_1$
|
|
534
|
+
const _hoisted_1$D = {
|
|
535
535
|
key: 0,
|
|
536
536
|
class: "blocker"
|
|
537
537
|
};
|
|
538
|
-
const _hoisted_2$
|
|
539
|
-
const _sfc_main$
|
|
538
|
+
const _hoisted_2$q = { class: "Handlers" };
|
|
539
|
+
const _sfc_main$N = /* @__PURE__ */ defineComponent({
|
|
540
540
|
__name: "Carousel",
|
|
541
541
|
props: {
|
|
542
542
|
autoHeight: {
|
|
@@ -684,10 +684,10 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
684
684
|
onScrollend: scrollEnd,
|
|
685
685
|
onMousedown: startDragging
|
|
686
686
|
}, [
|
|
687
|
-
unref(isDragging) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
687
|
+
unref(isDragging) ? (openBlock(), createElementBlock("div", _hoisted_1$D)) : createCommentVNode("", true),
|
|
688
688
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
689
689
|
], 34),
|
|
690
|
-
createElementVNode("div", _hoisted_2$
|
|
690
|
+
createElementVNode("div", _hoisted_2$q, [
|
|
691
691
|
createElementVNode("span", { onClick: prev }, [
|
|
692
692
|
renderSlot(_ctx.$slots, "prev", {
|
|
693
693
|
prev,
|
|
@@ -705,7 +705,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
705
705
|
};
|
|
706
706
|
}
|
|
707
707
|
});
|
|
708
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
708
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-1f9c6644"]]);
|
|
709
709
|
function _isPlaceholder(a2) {
|
|
710
710
|
return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
|
|
711
711
|
}
|
|
@@ -5613,7 +5613,7 @@ const _hoisted_4$2$1 = {
|
|
|
5613
5613
|
};
|
|
5614
5614
|
const _hoisted_5$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5615
5615
|
const _hoisted_6$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5616
|
-
const _hoisted_7$
|
|
5616
|
+
const _hoisted_7$7 = ["x1", "y1", "x2", "y2"];
|
|
5617
5617
|
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5618
5618
|
return _ctx.data.length ? (openBlock(), createElementBlock("g", {
|
|
5619
5619
|
key: 0,
|
|
@@ -5669,7 +5669,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5669
5669
|
y1: _ctx.canvas.y,
|
|
5670
5670
|
x2: _ctx.canvas.width - 1,
|
|
5671
5671
|
y2: _ctx.canvas.height
|
|
5672
|
-
}, null, 8, _hoisted_7$
|
|
5672
|
+
}, null, 8, _hoisted_7$7)
|
|
5673
5673
|
])
|
|
5674
5674
|
], 8, _hoisted_1$4$1)) : createCommentVNode("v-if", true);
|
|
5675
5675
|
}
|
|
@@ -6536,10 +6536,10 @@ const _hoisted_1$1$1 = {
|
|
|
6536
6536
|
style: { display: "flex", position: "relative" }
|
|
6537
6537
|
};
|
|
6538
6538
|
const _hoisted_2$1$1 = ["width", "height", "viewBox"];
|
|
6539
|
-
const _hoisted_3$
|
|
6540
|
-
const _hoisted_4$
|
|
6541
|
-
const _hoisted_5$
|
|
6542
|
-
const _hoisted_6$
|
|
6539
|
+
const _hoisted_3$k = { class: "layer-rectangles" };
|
|
6540
|
+
const _hoisted_4$e = ["transform", "onMouseover"];
|
|
6541
|
+
const _hoisted_5$d = ["width", "height"];
|
|
6542
|
+
const _hoisted_6$a = {
|
|
6543
6543
|
x: 0 + 10,
|
|
6544
6544
|
y: 0 + 20,
|
|
6545
6545
|
"font-size": `15px`,
|
|
@@ -6554,7 +6554,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6554
6554
|
viewBox: `0 0 ${_ctx.size.width} ${_ctx.size.height}`,
|
|
6555
6555
|
ref: "el"
|
|
6556
6556
|
}, [
|
|
6557
|
-
createElementVNode("g", _hoisted_3$
|
|
6557
|
+
createElementVNode("g", _hoisted_3$k, [
|
|
6558
6558
|
(openBlock(true), createElementBlock(
|
|
6559
6559
|
Fragment$1,
|
|
6560
6560
|
null,
|
|
@@ -6575,21 +6575,21 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6575
6575
|
y: 0,
|
|
6576
6576
|
width: r2.width,
|
|
6577
6577
|
height: r2.height
|
|
6578
|
-
}), null, 16, _hoisted_5$
|
|
6578
|
+
}), null, 16, _hoisted_5$d),
|
|
6579
6579
|
renderSlot(_ctx.$slots, "text", {
|
|
6580
6580
|
r: r2,
|
|
6581
6581
|
selected: _ctx.selected === i2
|
|
6582
6582
|
}, () => [
|
|
6583
6583
|
createElementVNode(
|
|
6584
6584
|
"text",
|
|
6585
|
-
_hoisted_6$
|
|
6585
|
+
_hoisted_6$a,
|
|
6586
6586
|
toDisplayString(r2.data.name),
|
|
6587
6587
|
1
|
|
6588
6588
|
/* TEXT */
|
|
6589
6589
|
)
|
|
6590
6590
|
])
|
|
6591
6591
|
])
|
|
6592
|
-
], 42, _hoisted_4$
|
|
6592
|
+
], 42, _hoisted_4$e);
|
|
6593
6593
|
}),
|
|
6594
6594
|
128
|
|
6595
6595
|
/* KEYED_FRAGMENT */
|
|
@@ -6646,25 +6646,25 @@ var script = defineComponent({
|
|
|
6646
6646
|
return { bar, canvas, direction, mouse };
|
|
6647
6647
|
}
|
|
6648
6648
|
});
|
|
6649
|
-
const _hoisted_1$
|
|
6649
|
+
const _hoisted_1$C = {
|
|
6650
6650
|
key: 0,
|
|
6651
6651
|
class: "layer-hover-bar"
|
|
6652
6652
|
};
|
|
6653
|
-
const _hoisted_2$
|
|
6653
|
+
const _hoisted_2$p = ["x", "y", "width", "height"];
|
|
6654
6654
|
function render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6655
|
-
return _ctx.mouse.hover ? (openBlock(), createElementBlock("g", _hoisted_1$
|
|
6655
|
+
return _ctx.mouse.hover ? (openBlock(), createElementBlock("g", _hoisted_1$C, [
|
|
6656
6656
|
createElementVNode("rect", mergeProps({ class: "hover-bar" }, _ctx.barStyle, {
|
|
6657
6657
|
x: _ctx.bar.x,
|
|
6658
6658
|
y: _ctx.bar.y,
|
|
6659
6659
|
width: _ctx.bar.width > 0 ? _ctx.bar.width : 0,
|
|
6660
6660
|
height: _ctx.bar.height > 0 ? _ctx.bar.height : 0
|
|
6661
|
-
}), null, 16, _hoisted_2$
|
|
6661
|
+
}), null, 16, _hoisted_2$p)
|
|
6662
6662
|
])) : createCommentVNode("v-if", true);
|
|
6663
6663
|
}
|
|
6664
6664
|
script.render = render$e;
|
|
6665
6665
|
script.__file = "src/components/HoverBar/index.vue";
|
|
6666
6666
|
const BRAND_COLOR = "var(--bgl-primary)";
|
|
6667
|
-
const _sfc_main$
|
|
6667
|
+
const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
6668
6668
|
__name: "Lineart",
|
|
6669
6669
|
props: {
|
|
6670
6670
|
data: {},
|
|
@@ -6804,28 +6804,28 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
|
|
|
6804
6804
|
};
|
|
6805
6805
|
}
|
|
6806
6806
|
});
|
|
6807
|
-
const _hoisted_1$
|
|
6807
|
+
const _hoisted_1$B = {
|
|
6808
6808
|
key: 0,
|
|
6809
6809
|
class: "data"
|
|
6810
6810
|
};
|
|
6811
|
-
const _hoisted_2$
|
|
6811
|
+
const _hoisted_2$o = {
|
|
6812
6812
|
key: 0,
|
|
6813
6813
|
class: "data-row m_py-05"
|
|
6814
6814
|
};
|
|
6815
|
-
const _hoisted_3$
|
|
6816
|
-
const _hoisted_4$
|
|
6817
|
-
const _hoisted_5$
|
|
6818
|
-
const _hoisted_6$
|
|
6815
|
+
const _hoisted_3$j = { class: "key" };
|
|
6816
|
+
const _hoisted_4$d = { class: "m-0" };
|
|
6817
|
+
const _hoisted_5$c = { key: 1 };
|
|
6818
|
+
const _hoisted_6$9 = {
|
|
6819
6819
|
key: 0,
|
|
6820
6820
|
class: "data-row"
|
|
6821
6821
|
};
|
|
6822
|
-
const _hoisted_7$
|
|
6823
|
-
const _hoisted_8$
|
|
6822
|
+
const _hoisted_7$6 = { class: "key" };
|
|
6823
|
+
const _hoisted_8$4 = { class: "m-0" };
|
|
6824
6824
|
const _hoisted_9$3 = {
|
|
6825
6825
|
key: 0,
|
|
6826
6826
|
class: "m-0"
|
|
6827
6827
|
};
|
|
6828
|
-
const _sfc_main$
|
|
6828
|
+
const _sfc_main$L = /* @__PURE__ */ defineComponent({
|
|
6829
6829
|
__name: "DataPreview",
|
|
6830
6830
|
props: /* @__PURE__ */ mergeModels({
|
|
6831
6831
|
showFields: {},
|
|
@@ -6861,7 +6861,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
6861
6861
|
const computedSchema = computed(() => getFallbackSchema([itemData.value], props2.showFields));
|
|
6862
6862
|
return (_ctx, _cache) => {
|
|
6863
6863
|
var _a2;
|
|
6864
|
-
return __props.data ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
6864
|
+
return __props.data ? (openBlock(), createElementBlock("div", _hoisted_1$B, [
|
|
6865
6865
|
_ctx.title ? (openBlock(), createBlock(unref(_sfc_main$3), {
|
|
6866
6866
|
key: 0,
|
|
6867
6867
|
label: _ctx.title
|
|
@@ -6870,11 +6870,11 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
6870
6870
|
return openBlock(), createElementBlock(Fragment$1, {
|
|
6871
6871
|
key: field.id
|
|
6872
6872
|
}, [
|
|
6873
|
-
unref(iffer)(field, itemData.value) ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
6874
|
-
createElementVNode("div", _hoisted_3$
|
|
6875
|
-
createElementVNode("p", _hoisted_4$
|
|
6873
|
+
unref(iffer)(field, itemData.value) ? (openBlock(), createElementBlock("div", _hoisted_2$o, [
|
|
6874
|
+
createElementVNode("div", _hoisted_3$j, [
|
|
6875
|
+
createElementVNode("p", _hoisted_4$d, toDisplayString((field == null ? void 0 : field.label) || unref(keyToLabel)(field.id)), 1)
|
|
6876
6876
|
]),
|
|
6877
|
-
createVNode(unref(_sfc_main$
|
|
6877
|
+
createVNode(unref(_sfc_main$I), {
|
|
6878
6878
|
modelValue: itemData.value,
|
|
6879
6879
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => itemData.value = $event),
|
|
6880
6880
|
label: "",
|
|
@@ -6884,12 +6884,12 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
6884
6884
|
])) : createCommentVNode("", true)
|
|
6885
6885
|
], 64);
|
|
6886
6886
|
}), 128)),
|
|
6887
|
-
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("div", _hoisted_5$
|
|
6887
|
+
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("div", _hoisted_5$c, [
|
|
6888
6888
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(computedSchema.value, ({ id, label }) => {
|
|
6889
6889
|
return openBlock(), createElementBlock(Fragment$1, { key: id }, [
|
|
6890
|
-
!isUnset(itemData.value[id]) ? (openBlock(), createElementBlock("div", _hoisted_6$
|
|
6891
|
-
createElementVNode("div", _hoisted_7$
|
|
6892
|
-
createElementVNode("p", _hoisted_8$
|
|
6890
|
+
!isUnset(itemData.value[id]) ? (openBlock(), createElementBlock("div", _hoisted_6$9, [
|
|
6891
|
+
createElementVNode("div", _hoisted_7$6, [
|
|
6892
|
+
createElementVNode("p", _hoisted_8$4, toDisplayString(label), 1)
|
|
6893
6893
|
]),
|
|
6894
6894
|
createElementVNode("div", null, [
|
|
6895
6895
|
id ? (openBlock(), createElementBlock("p", _hoisted_9$3, toDisplayString(dataTransform(itemData.value[id])), 1)) : createCommentVNode("", true)
|
|
@@ -6903,7 +6903,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
6903
6903
|
};
|
|
6904
6904
|
}
|
|
6905
6905
|
});
|
|
6906
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6906
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-2da95d24"]]);
|
|
6907
6907
|
const sides = ["top", "right", "bottom", "left"];
|
|
6908
6908
|
const alignments = ["start", "end"];
|
|
6909
6909
|
const placements$1 = /* @__PURE__ */ sides.reduce((acc, side) => acc.concat(side, side + "-" + alignments[0], side + "-" + alignments[1]), []);
|
|
@@ -9445,7 +9445,7 @@ const Gt$1 = {
|
|
|
9445
9445
|
install: Ct$1,
|
|
9446
9446
|
options: h
|
|
9447
9447
|
};
|
|
9448
|
-
const _sfc_main$
|
|
9448
|
+
const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
9449
9449
|
__name: "Dropdown",
|
|
9450
9450
|
props: {
|
|
9451
9451
|
value: {},
|
|
@@ -9502,7 +9502,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
|
|
|
9502
9502
|
};
|
|
9503
9503
|
}
|
|
9504
9504
|
});
|
|
9505
|
-
const _sfc_main$
|
|
9505
|
+
const _sfc_main$J = /* @__PURE__ */ defineComponent({
|
|
9506
9506
|
__name: "Flag",
|
|
9507
9507
|
props: {
|
|
9508
9508
|
country: {},
|
|
@@ -9532,8 +9532,8 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
9532
9532
|
};
|
|
9533
9533
|
}
|
|
9534
9534
|
});
|
|
9535
|
-
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9536
|
-
const _sfc_main$
|
|
9535
|
+
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-f99f1900"]]);
|
|
9536
|
+
const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
9537
9537
|
__name: "BglField",
|
|
9538
9538
|
props: {
|
|
9539
9539
|
field: {},
|
|
@@ -9548,8 +9548,8 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
9548
9548
|
if (props2.field.$el === "select") return SelectInput;
|
|
9549
9549
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
9550
9550
|
if (props2.field.$el === "check") return CheckInput;
|
|
9551
|
-
if (props2.field.$el === "richtext") return _sfc_main$
|
|
9552
|
-
if (props2.field.$el === "date") return _sfc_main$
|
|
9551
|
+
if (props2.field.$el === "richtext") return _sfc_main$v;
|
|
9552
|
+
if (props2.field.$el === "date") return _sfc_main$C;
|
|
9553
9553
|
return props2.field.$el ?? "div";
|
|
9554
9554
|
});
|
|
9555
9555
|
const formData = computed({
|
|
@@ -9633,7 +9633,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
9633
9633
|
};
|
|
9634
9634
|
}
|
|
9635
9635
|
});
|
|
9636
|
-
const _sfc_main$
|
|
9636
|
+
const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
9637
9637
|
__name: "BglForm",
|
|
9638
9638
|
props: {
|
|
9639
9639
|
label: {},
|
|
@@ -9731,7 +9731,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
9731
9731
|
label: _ctx.label
|
|
9732
9732
|
}, null, 8, ["label"])) : createCommentVNode("", true),
|
|
9733
9733
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(computedSchema.value, (field, i2) => {
|
|
9734
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
9734
|
+
return openBlock(), createBlock(unref(_sfc_main$I), {
|
|
9735
9735
|
key: field.id || `${i2}p`,
|
|
9736
9736
|
modelValue: unref(data2),
|
|
9737
9737
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -9755,7 +9755,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
9755
9755
|
label: _ctx.label
|
|
9756
9756
|
}, null, 8, ["label"])) : createCommentVNode("", true),
|
|
9757
9757
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(computedSchema.value, (field, i2) => {
|
|
9758
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
9758
|
+
return openBlock(), createBlock(unref(_sfc_main$I), {
|
|
9759
9759
|
key: field.id || `${i2}p`,
|
|
9760
9760
|
modelValue: unref(data2),
|
|
9761
9761
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -9774,8 +9774,8 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
9774
9774
|
};
|
|
9775
9775
|
}
|
|
9776
9776
|
});
|
|
9777
|
-
const _hoisted_1$
|
|
9778
|
-
const _sfc_main$
|
|
9777
|
+
const _hoisted_1$A = { key: 0 };
|
|
9778
|
+
const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
9779
9779
|
__name: "BglMultiStepForm",
|
|
9780
9780
|
props: /* @__PURE__ */ mergeModels({
|
|
9781
9781
|
bagelFormProps: { default: () => ({}) },
|
|
@@ -9842,8 +9842,8 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
9842
9842
|
mode: "out-in"
|
|
9843
9843
|
}, {
|
|
9844
9844
|
default: withCtx(() => [
|
|
9845
|
-
!unref(isStepping) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
9846
|
-
createVNode(unref(_sfc_main$
|
|
9845
|
+
!unref(isStepping) ? (openBlock(), createElementBlock("div", _hoisted_1$A, [
|
|
9846
|
+
createVNode(unref(_sfc_main$H), mergeProps({
|
|
9847
9847
|
ref_key: "formRef",
|
|
9848
9848
|
ref: formRef,
|
|
9849
9849
|
modelValue: formData.value,
|
|
@@ -9882,8 +9882,8 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
9882
9882
|
};
|
|
9883
9883
|
}
|
|
9884
9884
|
});
|
|
9885
|
-
const _hoisted_1$
|
|
9886
|
-
const _sfc_main$
|
|
9885
|
+
const _hoisted_1$z = { class: "primary-checkbox" };
|
|
9886
|
+
const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
9887
9887
|
__name: "Checkbox",
|
|
9888
9888
|
props: {
|
|
9889
9889
|
"modelValue": { type: Boolean, ...{ default: false } },
|
|
@@ -9893,7 +9893,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
9893
9893
|
setup(__props) {
|
|
9894
9894
|
const val = useModel(__props, "modelValue");
|
|
9895
9895
|
return (_ctx, _cache) => {
|
|
9896
|
-
return openBlock(), createElementBlock("label", _hoisted_1$
|
|
9896
|
+
return openBlock(), createElementBlock("label", _hoisted_1$z, [
|
|
9897
9897
|
renderSlot(_ctx.$slots, "label", {}, void 0, true),
|
|
9898
9898
|
withDirectives(createElementVNode("input", {
|
|
9899
9899
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => val.value = $event),
|
|
@@ -9905,11 +9905,11 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
9905
9905
|
};
|
|
9906
9906
|
}
|
|
9907
9907
|
});
|
|
9908
|
-
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9909
|
-
const _hoisted_1$
|
|
9910
|
-
const _hoisted_2$
|
|
9911
|
-
const _hoisted_3$
|
|
9912
|
-
const _sfc_main$
|
|
9908
|
+
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-73f1d9ad"]]);
|
|
9909
|
+
const _hoisted_1$y = ["title"];
|
|
9910
|
+
const _hoisted_2$n = ["id", "value", "required"];
|
|
9911
|
+
const _hoisted_3$i = ["for"];
|
|
9912
|
+
const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
9913
9913
|
__name: "CheckInput",
|
|
9914
9914
|
props: /* @__PURE__ */ mergeModels({
|
|
9915
9915
|
label: {},
|
|
@@ -9943,22 +9943,22 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
9943
9943
|
required: _ctx.required,
|
|
9944
9944
|
type: "checkbox",
|
|
9945
9945
|
class: "me-05"
|
|
9946
|
-
}, null, 8, _hoisted_2$
|
|
9946
|
+
}, null, 8, _hoisted_2$n), [
|
|
9947
9947
|
[vModelCheckbox, checked.value]
|
|
9948
9948
|
]),
|
|
9949
9949
|
createElementVNode("label", { for: inputId.value }, [
|
|
9950
9950
|
renderSlot(_ctx.$slots, "label", {}, () => [
|
|
9951
9951
|
createTextVNode(toDisplayString(_ctx.label), 1)
|
|
9952
9952
|
], true)
|
|
9953
|
-
], 8, _hoisted_3$
|
|
9954
|
-
], 10, _hoisted_1$
|
|
9953
|
+
], 8, _hoisted_3$i)
|
|
9954
|
+
], 10, _hoisted_1$y);
|
|
9955
9955
|
};
|
|
9956
9956
|
}
|
|
9957
9957
|
});
|
|
9958
|
-
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9959
|
-
const _hoisted_1$
|
|
9960
|
-
const _hoisted_2$
|
|
9961
|
-
const _sfc_main$
|
|
9958
|
+
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-1b4d18c6"]]);
|
|
9959
|
+
const _hoisted_1$x = ["title"];
|
|
9960
|
+
const _hoisted_2$m = ["id", "placeholder", "required"];
|
|
9961
|
+
const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
9962
9962
|
__name: "ColorPicker",
|
|
9963
9963
|
props: {
|
|
9964
9964
|
label: {},
|
|
@@ -9996,11 +9996,11 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
9996
9996
|
placeholder: _ctx.placeholder || _ctx.label,
|
|
9997
9997
|
class: { "no-edit": !_ctx.editMode },
|
|
9998
9998
|
required: _ctx.required
|
|
9999
|
-
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$
|
|
9999
|
+
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$m), [
|
|
10000
10000
|
[vModelText, inputVal.value]
|
|
10001
10001
|
])
|
|
10002
10002
|
])
|
|
10003
|
-
], 10, _hoisted_1$
|
|
10003
|
+
], 10, _hoisted_1$x)) : createCommentVNode("", true);
|
|
10004
10004
|
};
|
|
10005
10005
|
}
|
|
10006
10006
|
});
|
|
@@ -18443,9 +18443,9 @@ const eo = ({
|
|
|
18443
18443
|
Object.entries(go).forEach(([e, t]) => {
|
|
18444
18444
|
e !== "default" && (Hn[e] = t);
|
|
18445
18445
|
});
|
|
18446
|
-
const _hoisted_1$
|
|
18447
|
-
const _hoisted_2$
|
|
18448
|
-
const _sfc_main$
|
|
18446
|
+
const _hoisted_1$w = ["title"];
|
|
18447
|
+
const _hoisted_2$l = { key: 0 };
|
|
18448
|
+
const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
18449
18449
|
__name: "DateInput",
|
|
18450
18450
|
props: {
|
|
18451
18451
|
required: { type: Boolean },
|
|
@@ -18487,7 +18487,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
18487
18487
|
class: normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
18488
18488
|
title: _ctx.label
|
|
18489
18489
|
}, [
|
|
18490
|
-
_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$
|
|
18490
|
+
_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$l, toDisplayString(_ctx.label), 1)) : createCommentVNode("", true),
|
|
18491
18491
|
createVNode(unref(Hn), mergeProps({
|
|
18492
18492
|
ref_key: "datePicker",
|
|
18493
18493
|
ref: datePicker,
|
|
@@ -18503,19 +18503,19 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
18503
18503
|
"minutes-grid-increment": _ctx.minutesGridIncrement,
|
|
18504
18504
|
"start-time": { hours: 8, minutes: 0 }
|
|
18505
18505
|
}), null, 16, ["modelValue", "required", "enable-time-picker", "allowed-dates", "time-picker-inline", "minutes-increment", "minutes-grid-increment"])
|
|
18506
|
-
], 10, _hoisted_1$
|
|
18506
|
+
], 10, _hoisted_1$w);
|
|
18507
18507
|
};
|
|
18508
18508
|
}
|
|
18509
18509
|
});
|
|
18510
|
-
const _hoisted_1$
|
|
18511
|
-
const _hoisted_2$
|
|
18512
|
-
const _hoisted_3$
|
|
18510
|
+
const _hoisted_1$v = { class: "datetime-wrap" };
|
|
18511
|
+
const _hoisted_2$k = { class: "date-wrap" };
|
|
18512
|
+
const _hoisted_3$h = {
|
|
18513
18513
|
key: 0,
|
|
18514
18514
|
class: "time-wrap"
|
|
18515
18515
|
};
|
|
18516
|
-
const _hoisted_4$
|
|
18517
|
-
const _hoisted_5$
|
|
18518
|
-
const _sfc_main$
|
|
18516
|
+
const _hoisted_4$c = ["id", "name", "value"];
|
|
18517
|
+
const _hoisted_5$b = ["for"];
|
|
18518
|
+
const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
18519
18519
|
__name: "DatePicker",
|
|
18520
18520
|
props: {
|
|
18521
18521
|
label: {},
|
|
@@ -18543,8 +18543,8 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
18543
18543
|
return `${hour}:${minute}`;
|
|
18544
18544
|
});
|
|
18545
18545
|
return (_ctx, _cache) => {
|
|
18546
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
18547
|
-
createElementVNode("div", _hoisted_2$
|
|
18546
|
+
return openBlock(), createElementBlock("div", _hoisted_1$v, [
|
|
18547
|
+
createElementVNode("div", _hoisted_2$k, [
|
|
18548
18548
|
createVNode(unref(Hn), mergeProps({
|
|
18549
18549
|
modelValue: selectedDate.value,
|
|
18550
18550
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedDate.value = $event),
|
|
@@ -18562,7 +18562,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
18562
18562
|
_: 1
|
|
18563
18563
|
}, 16, ["modelValue", "allowed-dates", "disabled-dates"])
|
|
18564
18564
|
]),
|
|
18565
|
-
_ctx.showTimeWrap ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
18565
|
+
_ctx.showTimeWrap ? (openBlock(), createElementBlock("div", _hoisted_3$h, [
|
|
18566
18566
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(unref(hours), (hr2) => {
|
|
18567
18567
|
return openBlock(), createElementBlock(Fragment$1, { key: hr2 }, [
|
|
18568
18568
|
withDirectives(createElementVNode("input", {
|
|
@@ -18571,12 +18571,12 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
18571
18571
|
type: "radio",
|
|
18572
18572
|
name: _ctx.label,
|
|
18573
18573
|
value: hr2
|
|
18574
|
-
}, null, 8, _hoisted_4$
|
|
18574
|
+
}, null, 8, _hoisted_4$c), [
|
|
18575
18575
|
[vModelRadio, selectedHour.value]
|
|
18576
18576
|
]),
|
|
18577
18577
|
createElementVNode("label", {
|
|
18578
18578
|
for: `${hr2}_${_ctx.id}`
|
|
18579
|
-
}, toDisplayString(hr2), 9, _hoisted_5$
|
|
18579
|
+
}, toDisplayString(hr2), 9, _hoisted_5$b)
|
|
18580
18580
|
], 64);
|
|
18581
18581
|
}), 128))
|
|
18582
18582
|
])) : createCommentVNode("", true)
|
|
@@ -18584,20 +18584,20 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
18584
18584
|
};
|
|
18585
18585
|
}
|
|
18586
18586
|
});
|
|
18587
|
-
const _hoisted_1$
|
|
18588
|
-
const _hoisted_2$
|
|
18587
|
+
const _hoisted_1$u = { class: "bagel-input" };
|
|
18588
|
+
const _hoisted_2$j = {
|
|
18589
18589
|
key: 0,
|
|
18590
18590
|
class: "bgl-multi-preview"
|
|
18591
18591
|
};
|
|
18592
|
-
const _hoisted_3$
|
|
18593
|
-
const _hoisted_4$
|
|
18594
|
-
const _hoisted_5$
|
|
18595
|
-
const _hoisted_6$
|
|
18596
|
-
const _hoisted_7$
|
|
18592
|
+
const _hoisted_3$g = ["src"];
|
|
18593
|
+
const _hoisted_4$b = { class: "m-0" };
|
|
18594
|
+
const _hoisted_5$a = ["width", "src"];
|
|
18595
|
+
const _hoisted_6$8 = { class: "no-margin multi-preview-txt" };
|
|
18596
|
+
const _hoisted_7$5 = {
|
|
18597
18597
|
key: 0,
|
|
18598
18598
|
class: "progress"
|
|
18599
18599
|
};
|
|
18600
|
-
const _hoisted_8$
|
|
18600
|
+
const _hoisted_8$3 = {
|
|
18601
18601
|
key: 1,
|
|
18602
18602
|
class: "bgl-single-preview"
|
|
18603
18603
|
};
|
|
@@ -18608,7 +18608,7 @@ const _hoisted_10$2 = {
|
|
|
18608
18608
|
};
|
|
18609
18609
|
const _hoisted_11$1 = ["src"];
|
|
18610
18610
|
const _hoisted_12 = { class: "p-1 flex column hover fileUploadPlaceHolder justify-content-center mb-05" };
|
|
18611
|
-
const _sfc_main$
|
|
18611
|
+
const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
18612
18612
|
__name: "FileUpload",
|
|
18613
18613
|
props: {
|
|
18614
18614
|
label: {},
|
|
@@ -18757,7 +18757,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18757
18757
|
}
|
|
18758
18758
|
return (_ctx, _cache) => {
|
|
18759
18759
|
const _directive_lightbox = resolveDirective("lightbox");
|
|
18760
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
18760
|
+
return openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
18761
18761
|
createElementVNode("label", null, toDisplayString(_ctx.label), 1),
|
|
18762
18762
|
createElementVNode("div", {
|
|
18763
18763
|
class: normalizeClass(["fileUploadWrap", {
|
|
@@ -18775,7 +18775,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18775
18775
|
files: storageFiles.value,
|
|
18776
18776
|
fileQueue: fileQueue.value
|
|
18777
18777
|
}, () => [
|
|
18778
|
-
_ctx.multiple ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
18778
|
+
_ctx.multiple ? (openBlock(), createElementBlock("div", _hoisted_2$j, [
|
|
18779
18779
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(storageFiles.value, (file) => {
|
|
18780
18780
|
return openBlock(), createElementBlock("div", {
|
|
18781
18781
|
key: file.id,
|
|
@@ -18786,14 +18786,14 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18786
18786
|
class: "multi-preview",
|
|
18787
18787
|
src: file.url,
|
|
18788
18788
|
alt: ""
|
|
18789
|
-
}, null, 8, _hoisted_3$
|
|
18789
|
+
}, null, 8, _hoisted_3$g)), [
|
|
18790
18790
|
[_directive_lightbox]
|
|
18791
|
-
]) : (openBlock(), createBlock(unref(_sfc_main$
|
|
18791
|
+
]) : (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
18792
18792
|
key: 1,
|
|
18793
18793
|
icon: "draft",
|
|
18794
18794
|
class: "multi-preview"
|
|
18795
18795
|
})),
|
|
18796
|
-
createElementVNode("p", _hoisted_4$
|
|
18796
|
+
createElementVNode("p", _hoisted_4$b, toDisplayString(file.name), 1),
|
|
18797
18797
|
createVNode(unref(Btn), {
|
|
18798
18798
|
thin: "",
|
|
18799
18799
|
flat: "",
|
|
@@ -18815,19 +18815,19 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18815
18815
|
class: "multi-preview",
|
|
18816
18816
|
src: fileToUrl(fileQ.file),
|
|
18817
18817
|
alt: ""
|
|
18818
|
-
}, null, 8, _hoisted_5$
|
|
18819
|
-
], 64)) : (openBlock(), createBlock(unref(_sfc_main$
|
|
18818
|
+
}, null, 8, _hoisted_5$a)) : createCommentVNode("", true)
|
|
18819
|
+
], 64)) : (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
18820
18820
|
key: 1,
|
|
18821
18821
|
icon: "draft",
|
|
18822
18822
|
class: "multi-preview"
|
|
18823
18823
|
})),
|
|
18824
|
-
createElementVNode("p", _hoisted_6$
|
|
18824
|
+
createElementVNode("p", _hoisted_6$8, toDisplayString(fileQ.name), 1),
|
|
18825
18825
|
createElementVNode("div", {
|
|
18826
18826
|
class: normalizeClass(["pie", { complete: fileQ.progress === 100 }]),
|
|
18827
18827
|
style: normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
18828
18828
|
}, [
|
|
18829
|
-
fileQ.progress < 100 ? (openBlock(), createElementBlock("span", _hoisted_7$
|
|
18830
|
-
createVNode(unref(_sfc_main$
|
|
18829
|
+
fileQ.progress < 100 ? (openBlock(), createElementBlock("span", _hoisted_7$5, toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : createCommentVNode("", true),
|
|
18830
|
+
createVNode(unref(_sfc_main$c), {
|
|
18831
18831
|
class: "success",
|
|
18832
18832
|
icon: "check"
|
|
18833
18833
|
})
|
|
@@ -18835,7 +18835,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18835
18835
|
]);
|
|
18836
18836
|
}), 128))
|
|
18837
18837
|
])) : createCommentVNode("", true),
|
|
18838
|
-
!_ctx.multiple && (storageFiles.value.length > 0 || fileQueue.value.length > 0) ? (openBlock(), createElementBlock("div", _hoisted_8$
|
|
18838
|
+
!_ctx.multiple && (storageFiles.value.length > 0 || fileQueue.value.length > 0) ? (openBlock(), createElementBlock("div", _hoisted_8$3, [
|
|
18839
18839
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(storageFiles.value, (file) => {
|
|
18840
18840
|
return openBlock(), createElementBlock("div", {
|
|
18841
18841
|
key: file.id,
|
|
@@ -18848,7 +18848,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18848
18848
|
alt: ""
|
|
18849
18849
|
}, null, 8, _hoisted_9$2)), [
|
|
18850
18850
|
[_directive_lightbox]
|
|
18851
|
-
]) : (openBlock(), createBlock(unref(_sfc_main$
|
|
18851
|
+
]) : (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
18852
18852
|
key: 1,
|
|
18853
18853
|
size: 4,
|
|
18854
18854
|
weight: "2",
|
|
@@ -18867,7 +18867,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18867
18867
|
style: normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
18868
18868
|
}, [
|
|
18869
18869
|
fileQ.progress < 100 ? (openBlock(), createElementBlock("span", _hoisted_10$2, toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : createCommentVNode("", true),
|
|
18870
|
-
createVNode(unref(_sfc_main$
|
|
18870
|
+
createVNode(unref(_sfc_main$c), {
|
|
18871
18871
|
class: "success",
|
|
18872
18872
|
icon: "check"
|
|
18873
18873
|
})
|
|
@@ -18889,7 +18889,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18889
18889
|
browse
|
|
18890
18890
|
}, () => [
|
|
18891
18891
|
createElementVNode("p", _hoisted_12, [
|
|
18892
|
-
createVNode(unref(_sfc_main$
|
|
18892
|
+
createVNode(unref(_sfc_main$c), { icon: "upload_2" }),
|
|
18893
18893
|
_cache[0] || (_cache[0] = createTextVNode(" Drop files here or click to upload "))
|
|
18894
18894
|
])
|
|
18895
18895
|
], true) : createCommentVNode("", true)
|
|
@@ -18898,11 +18898,11 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
18898
18898
|
};
|
|
18899
18899
|
}
|
|
18900
18900
|
});
|
|
18901
|
-
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
18902
|
-
const _hoisted_1$
|
|
18903
|
-
const _hoisted_2$
|
|
18904
|
-
const _hoisted_3$
|
|
18905
|
-
const _sfc_main$
|
|
18901
|
+
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-be593d04"]]);
|
|
18902
|
+
const _hoisted_1$t = ["title"];
|
|
18903
|
+
const _hoisted_2$i = { key: 0 };
|
|
18904
|
+
const _hoisted_3$f = ["value", "placeholder"];
|
|
18905
|
+
const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
18906
18906
|
__name: "JSONInput",
|
|
18907
18907
|
props: {
|
|
18908
18908
|
description: { default: "" },
|
|
@@ -18925,7 +18925,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
18925
18925
|
class: normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
18926
18926
|
title: _ctx.description
|
|
18927
18927
|
}, [
|
|
18928
|
-
_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$
|
|
18928
|
+
_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$i, [
|
|
18929
18929
|
createVNode(_component_LangText, { input: _ctx.label }, null, 8, ["input"])
|
|
18930
18930
|
])) : createCommentVNode("", true),
|
|
18931
18931
|
createElementVNode("textarea", {
|
|
@@ -18933,14 +18933,14 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
18933
18933
|
class: normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18934
18934
|
placeholder: _ctx.placeholder,
|
|
18935
18935
|
onInput: handleInput
|
|
18936
|
-
}, null, 42, _hoisted_3$
|
|
18937
|
-
], 10, _hoisted_1$
|
|
18936
|
+
}, null, 42, _hoisted_3$f)
|
|
18937
|
+
], 10, _hoisted_1$t);
|
|
18938
18938
|
};
|
|
18939
18939
|
}
|
|
18940
18940
|
});
|
|
18941
|
-
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
18942
|
-
const _hoisted_1$
|
|
18943
|
-
const _sfc_main$
|
|
18941
|
+
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-1cbaeab2"]]);
|
|
18942
|
+
const _hoisted_1$s = { class: "relative" };
|
|
18943
|
+
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
18944
18944
|
__name: "PasswordInput",
|
|
18945
18945
|
props: /* @__PURE__ */ mergeModels({
|
|
18946
18946
|
id: {},
|
|
@@ -18980,7 +18980,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
18980
18980
|
);
|
|
18981
18981
|
const inputType = computed(() => showPwd.value ? "text" : "password");
|
|
18982
18982
|
return (_ctx, _cache) => {
|
|
18983
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
18983
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
18984
18984
|
createVNode(unref(TextInput), mergeProps({
|
|
18985
18985
|
modelValue: password.value,
|
|
18986
18986
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event)
|
|
@@ -19000,20 +19000,20 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
19000
19000
|
};
|
|
19001
19001
|
}
|
|
19002
19002
|
});
|
|
19003
|
-
const _hoisted_1$
|
|
19004
|
-
const _hoisted_2$
|
|
19005
|
-
const _hoisted_3$
|
|
19006
|
-
const _hoisted_4$
|
|
19007
|
-
const _hoisted_5$
|
|
19008
|
-
const _hoisted_6$
|
|
19003
|
+
const _hoisted_1$r = ["for"];
|
|
19004
|
+
const _hoisted_2$h = ["id", "name", "value"];
|
|
19005
|
+
const _hoisted_3$e = { class: "flex w-100 gap-1 flex-wrap m_gap-05 m_gap-row-025" };
|
|
19006
|
+
const _hoisted_4$a = ["src", "alt"];
|
|
19007
|
+
const _hoisted_5$9 = { class: "" };
|
|
19008
|
+
const _hoisted_6$7 = {
|
|
19009
19009
|
key: 0,
|
|
19010
19010
|
class: "m-0 m_txt-14"
|
|
19011
19011
|
};
|
|
19012
|
-
const _hoisted_7$
|
|
19012
|
+
const _hoisted_7$4 = {
|
|
19013
19013
|
key: 1,
|
|
19014
19014
|
class: "txt-gray txt-12 m-0"
|
|
19015
19015
|
};
|
|
19016
|
-
const _sfc_main$
|
|
19016
|
+
const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
19017
19017
|
__name: "RadioGroup",
|
|
19018
19018
|
props: /* @__PURE__ */ mergeModels({
|
|
19019
19019
|
groupName: {},
|
|
@@ -19041,20 +19041,20 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
19041
19041
|
type: "radio",
|
|
19042
19042
|
name: _ctx.groupName,
|
|
19043
19043
|
value: opt.value
|
|
19044
|
-
}, null, 8, _hoisted_2$
|
|
19044
|
+
}, null, 8, _hoisted_2$h), [
|
|
19045
19045
|
[vModelRadio, selectedOption.value]
|
|
19046
19046
|
]),
|
|
19047
|
-
createElementVNode("div", _hoisted_3$
|
|
19047
|
+
createElementVNode("div", _hoisted_3$e, [
|
|
19048
19048
|
opt.imgSrc ? (openBlock(), createElementBlock("img", {
|
|
19049
19049
|
key: 0,
|
|
19050
19050
|
class: "bg-popup shadow-light py-025 radius-05 m_w40",
|
|
19051
19051
|
width: "60",
|
|
19052
19052
|
src: opt.imgSrc,
|
|
19053
19053
|
alt: opt.imgAlt
|
|
19054
|
-
}, null, 8, _hoisted_4$
|
|
19055
|
-
createElementVNode("div", _hoisted_5$
|
|
19056
|
-
opt.label ? (openBlock(), createElementBlock("p", _hoisted_6$
|
|
19057
|
-
opt.subLabel ? (openBlock(), createElementBlock("p", _hoisted_7$
|
|
19054
|
+
}, null, 8, _hoisted_4$a)) : createCommentVNode("", true),
|
|
19055
|
+
createElementVNode("div", _hoisted_5$9, [
|
|
19056
|
+
opt.label ? (openBlock(), createElementBlock("p", _hoisted_6$7, toDisplayString(opt.label), 1)) : createCommentVNode("", true),
|
|
19057
|
+
opt.subLabel ? (openBlock(), createElementBlock("p", _hoisted_7$4, toDisplayString(opt.subLabel), 1)) : createCommentVNode("", true)
|
|
19058
19058
|
]),
|
|
19059
19059
|
renderSlot(_ctx.$slots, "radioItem", mergeProps({ ref_for: true }, opt), void 0, true)
|
|
19060
19060
|
]),
|
|
@@ -19066,19 +19066,19 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
19066
19066
|
icon: "delete",
|
|
19067
19067
|
onClick: ($event) => _ctx.$emit("delete", opt)
|
|
19068
19068
|
}, null, 8, ["onClick"])) : createCommentVNode("", true)
|
|
19069
|
-
], 8, _hoisted_1$
|
|
19069
|
+
], 8, _hoisted_1$r);
|
|
19070
19070
|
}), 128))
|
|
19071
19071
|
]);
|
|
19072
19072
|
};
|
|
19073
19073
|
}
|
|
19074
19074
|
});
|
|
19075
|
-
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19076
|
-
const _hoisted_1$
|
|
19077
|
-
const _hoisted_2$
|
|
19078
|
-
const _hoisted_3$
|
|
19079
|
-
const _hoisted_4$
|
|
19080
|
-
const _hoisted_5$
|
|
19081
|
-
const _sfc_main$
|
|
19075
|
+
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-3e9e030f"]]);
|
|
19076
|
+
const _hoisted_1$q = { class: "bagel-input" };
|
|
19077
|
+
const _hoisted_2$g = { class: "pb-025" };
|
|
19078
|
+
const _hoisted_3$d = { class: "flex gap-05 flex-wrap" };
|
|
19079
|
+
const _hoisted_4$9 = ["id", "name", "value", "checked"];
|
|
19080
|
+
const _hoisted_5$8 = ["for"];
|
|
19081
|
+
const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
19082
19082
|
__name: "RadioPillsInput",
|
|
19083
19083
|
props: {
|
|
19084
19084
|
options: {},
|
|
@@ -19119,9 +19119,9 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
19119
19119
|
selectedValue.value = props2.modelValue;
|
|
19120
19120
|
});
|
|
19121
19121
|
return (_ctx, _cache) => {
|
|
19122
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
19123
|
-
createElementVNode("label", _hoisted_2$
|
|
19124
|
-
createElementVNode("div", _hoisted_3$
|
|
19122
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q, [
|
|
19123
|
+
createElementVNode("label", _hoisted_2$g, toDisplayString(_ctx.label), 1),
|
|
19124
|
+
createElementVNode("div", _hoisted_3$d, [
|
|
19125
19125
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.options, (option2, index2) => {
|
|
19126
19126
|
return openBlock(), createElementBlock("div", {
|
|
19127
19127
|
key: index2,
|
|
@@ -19134,10 +19134,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
19134
19134
|
value: getValue(option2),
|
|
19135
19135
|
checked: unref(selectedValue) === getValue(option2),
|
|
19136
19136
|
onChange: handleSelect
|
|
19137
|
-
}, null, 40, _hoisted_4$
|
|
19137
|
+
}, null, 40, _hoisted_4$9),
|
|
19138
19138
|
createElementVNode("label", {
|
|
19139
19139
|
for: `${_ctx.id}-${getValue(option2)}`
|
|
19140
|
-
}, toDisplayString(getLabel(option2)), 9, _hoisted_5$
|
|
19140
|
+
}, toDisplayString(getLabel(option2)), 9, _hoisted_5$8)
|
|
19141
19141
|
]);
|
|
19142
19142
|
}), 128))
|
|
19143
19143
|
])
|
|
@@ -19145,7 +19145,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
19145
19145
|
};
|
|
19146
19146
|
}
|
|
19147
19147
|
});
|
|
19148
|
-
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19148
|
+
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-8cdfe758"]]);
|
|
19149
19149
|
function OrderedMap(content) {
|
|
19150
19150
|
this.content = content;
|
|
19151
19151
|
}
|
|
@@ -21612,7 +21612,7 @@ class DOMParser {
|
|
|
21612
21612
|
*/
|
|
21613
21613
|
parse(dom, options = {}) {
|
|
21614
21614
|
let context = new ParseContext(this, options, false);
|
|
21615
|
-
context.addAll(dom, options.from, options.to);
|
|
21615
|
+
context.addAll(dom, Mark$1.none, options.from, options.to);
|
|
21616
21616
|
return context.finish();
|
|
21617
21617
|
}
|
|
21618
21618
|
/**
|
|
@@ -21625,7 +21625,7 @@ class DOMParser {
|
|
|
21625
21625
|
*/
|
|
21626
21626
|
parseSlice(dom, options = {}) {
|
|
21627
21627
|
let context = new ParseContext(this, options, true);
|
|
21628
|
-
context.addAll(dom, options.from, options.to);
|
|
21628
|
+
context.addAll(dom, Mark$1.none, options.from, options.to);
|
|
21629
21629
|
return Slice.maxOpen(context.finish());
|
|
21630
21630
|
}
|
|
21631
21631
|
/**
|
|
@@ -21758,16 +21758,14 @@ function wsOptionsFor(type3, preserveWhitespace, base2) {
|
|
|
21758
21758
|
return type3 && type3.whitespace == "pre" ? OPT_PRESERVE_WS | OPT_PRESERVE_WS_FULL : base2 & ~OPT_OPEN_LEFT;
|
|
21759
21759
|
}
|
|
21760
21760
|
class NodeContext {
|
|
21761
|
-
constructor(type3, attrs, marks,
|
|
21761
|
+
constructor(type3, attrs, marks, solid, match2, options) {
|
|
21762
21762
|
this.type = type3;
|
|
21763
21763
|
this.attrs = attrs;
|
|
21764
21764
|
this.marks = marks;
|
|
21765
|
-
this.pendingMarks = pendingMarks;
|
|
21766
21765
|
this.solid = solid;
|
|
21767
21766
|
this.options = options;
|
|
21768
21767
|
this.content = [];
|
|
21769
21768
|
this.activeMarks = Mark$1.none;
|
|
21770
|
-
this.stashMarks = [];
|
|
21771
21769
|
this.match = match2 || (options & OPT_OPEN_LEFT ? null : type3.contentMatch);
|
|
21772
21770
|
}
|
|
21773
21771
|
findWrapping(node) {
|
|
@@ -21805,20 +21803,6 @@ class NodeContext {
|
|
|
21805
21803
|
content = content.append(this.match.fillBefore(Fragment.empty, true));
|
|
21806
21804
|
return this.type ? this.type.create(this.attrs, content, this.marks) : content;
|
|
21807
21805
|
}
|
|
21808
|
-
popFromStashMark(mark) {
|
|
21809
|
-
for (let i2 = this.stashMarks.length - 1; i2 >= 0; i2--)
|
|
21810
|
-
if (mark.eq(this.stashMarks[i2]))
|
|
21811
|
-
return this.stashMarks.splice(i2, 1)[0];
|
|
21812
|
-
}
|
|
21813
|
-
applyPending(nextType) {
|
|
21814
|
-
for (let i2 = 0, pending = this.pendingMarks; i2 < pending.length; i2++) {
|
|
21815
|
-
let mark = pending[i2];
|
|
21816
|
-
if ((this.type ? this.type.allowsMarkType(mark.type) : markMayApply(mark.type, nextType)) && !mark.isInSet(this.activeMarks)) {
|
|
21817
|
-
this.activeMarks = mark.addToSet(this.activeMarks);
|
|
21818
|
-
this.pendingMarks = mark.removeFromSet(this.pendingMarks);
|
|
21819
|
-
}
|
|
21820
|
-
}
|
|
21821
|
-
}
|
|
21822
21806
|
inlineContext(node) {
|
|
21823
21807
|
if (this.type)
|
|
21824
21808
|
return this.type.inlineContent;
|
|
@@ -21836,11 +21820,11 @@ class ParseContext {
|
|
|
21836
21820
|
let topNode = options.topNode, topContext;
|
|
21837
21821
|
let topOptions = wsOptionsFor(null, options.preserveWhitespace, 0) | (isOpen ? OPT_OPEN_LEFT : 0);
|
|
21838
21822
|
if (topNode)
|
|
21839
|
-
topContext = new NodeContext(topNode.type, topNode.attrs, Mark$1.none,
|
|
21823
|
+
topContext = new NodeContext(topNode.type, topNode.attrs, Mark$1.none, true, options.topMatch || topNode.type.contentMatch, topOptions);
|
|
21840
21824
|
else if (isOpen)
|
|
21841
|
-
topContext = new NodeContext(null, null, Mark$1.none,
|
|
21825
|
+
topContext = new NodeContext(null, null, Mark$1.none, true, null, topOptions);
|
|
21842
21826
|
else
|
|
21843
|
-
topContext = new NodeContext(parser.schema.topNodeType, null, Mark$1.none,
|
|
21827
|
+
topContext = new NodeContext(parser.schema.topNodeType, null, Mark$1.none, true, null, topOptions);
|
|
21844
21828
|
this.nodes = [topContext];
|
|
21845
21829
|
this.find = options.findPositions;
|
|
21846
21830
|
this.needsBlock = false;
|
|
@@ -21851,31 +21835,13 @@ class ParseContext {
|
|
|
21851
21835
|
// Add a DOM node to the content. Text is inserted as text node,
|
|
21852
21836
|
// otherwise, the node is passed to `addElement` or, if it has a
|
|
21853
21837
|
// `style` attribute, `addElementWithStyles`.
|
|
21854
|
-
addDOM(dom) {
|
|
21838
|
+
addDOM(dom, marks) {
|
|
21855
21839
|
if (dom.nodeType == 3)
|
|
21856
|
-
this.addTextNode(dom);
|
|
21840
|
+
this.addTextNode(dom, marks);
|
|
21857
21841
|
else if (dom.nodeType == 1)
|
|
21858
|
-
this.addElement(dom);
|
|
21859
|
-
}
|
|
21860
|
-
|
|
21861
|
-
let style2 = dom.style;
|
|
21862
|
-
if (!style2 || !style2.length)
|
|
21863
|
-
return f2();
|
|
21864
|
-
let marks = this.readStyles(dom.style);
|
|
21865
|
-
if (!marks)
|
|
21866
|
-
return;
|
|
21867
|
-
let [addMarks, removeMarks] = marks, top2 = this.top;
|
|
21868
|
-
for (let i2 = 0; i2 < removeMarks.length; i2++)
|
|
21869
|
-
this.removePendingMark(removeMarks[i2], top2);
|
|
21870
|
-
for (let i2 = 0; i2 < addMarks.length; i2++)
|
|
21871
|
-
this.addPendingMark(addMarks[i2]);
|
|
21872
|
-
f2();
|
|
21873
|
-
for (let i2 = 0; i2 < addMarks.length; i2++)
|
|
21874
|
-
this.removePendingMark(addMarks[i2], top2);
|
|
21875
|
-
for (let i2 = 0; i2 < removeMarks.length; i2++)
|
|
21876
|
-
this.addPendingMark(removeMarks[i2]);
|
|
21877
|
-
}
|
|
21878
|
-
addTextNode(dom) {
|
|
21842
|
+
this.addElement(dom, marks);
|
|
21843
|
+
}
|
|
21844
|
+
addTextNode(dom, marks) {
|
|
21879
21845
|
let value = dom.nodeValue;
|
|
21880
21846
|
let top2 = this.top;
|
|
21881
21847
|
if (top2.options & OPT_PRESERVE_WS_FULL || top2.inlineContext(dom) || /[^ \t\r\n\u000c]/.test(value)) {
|
|
@@ -21893,7 +21859,7 @@ class ParseContext {
|
|
|
21893
21859
|
value = value.replace(/\r\n?/g, "\n");
|
|
21894
21860
|
}
|
|
21895
21861
|
if (value)
|
|
21896
|
-
this.insertNode(this.parser.schema.text(value));
|
|
21862
|
+
this.insertNode(this.parser.schema.text(value), marks);
|
|
21897
21863
|
this.findInText(dom);
|
|
21898
21864
|
} else {
|
|
21899
21865
|
this.findInside(dom);
|
|
@@ -21901,14 +21867,14 @@ class ParseContext {
|
|
|
21901
21867
|
}
|
|
21902
21868
|
// Try to find a handler for the given tag and use that to parse. If
|
|
21903
21869
|
// none is found, the element's content nodes are added directly.
|
|
21904
|
-
addElement(dom, matchAfter) {
|
|
21870
|
+
addElement(dom, marks, matchAfter) {
|
|
21905
21871
|
let name = dom.nodeName.toLowerCase(), ruleID;
|
|
21906
21872
|
if (listTags.hasOwnProperty(name) && this.parser.normalizeLists)
|
|
21907
21873
|
normalizeList(dom);
|
|
21908
21874
|
let rule = this.options.ruleFromNode && this.options.ruleFromNode(dom) || (ruleID = this.parser.matchTag(dom, this, matchAfter));
|
|
21909
21875
|
if (rule ? rule.ignore : ignoreTags.hasOwnProperty(name)) {
|
|
21910
21876
|
this.findInside(dom);
|
|
21911
|
-
this.ignoreFallback(dom);
|
|
21877
|
+
this.ignoreFallback(dom, marks);
|
|
21912
21878
|
} else if (!rule || rule.skip || rule.closeParent) {
|
|
21913
21879
|
if (rule && rule.closeParent)
|
|
21914
21880
|
this.open = Math.max(0, this.open - 1);
|
|
@@ -21924,38 +21890,37 @@ class ParseContext {
|
|
|
21924
21890
|
if (!top2.type)
|
|
21925
21891
|
this.needsBlock = true;
|
|
21926
21892
|
} else if (!dom.firstChild) {
|
|
21927
|
-
this.leafFallback(dom);
|
|
21893
|
+
this.leafFallback(dom, marks);
|
|
21928
21894
|
return;
|
|
21929
21895
|
}
|
|
21930
|
-
|
|
21931
|
-
|
|
21932
|
-
|
|
21933
|
-
this.withStyleRules(dom, () => this.addAll(dom));
|
|
21896
|
+
let innerMarks = rule && rule.skip ? marks : this.readStyles(dom, marks);
|
|
21897
|
+
if (innerMarks)
|
|
21898
|
+
this.addAll(dom, innerMarks);
|
|
21934
21899
|
if (sync)
|
|
21935
21900
|
this.sync(top2);
|
|
21936
21901
|
this.needsBlock = oldNeedsBlock;
|
|
21937
21902
|
} else {
|
|
21938
|
-
this.
|
|
21939
|
-
|
|
21940
|
-
|
|
21903
|
+
let innerMarks = this.readStyles(dom, marks);
|
|
21904
|
+
if (innerMarks)
|
|
21905
|
+
this.addElementByRule(dom, rule, innerMarks, rule.consuming === false ? ruleID : void 0);
|
|
21941
21906
|
}
|
|
21942
21907
|
}
|
|
21943
21908
|
// Called for leaf DOM nodes that would otherwise be ignored
|
|
21944
|
-
leafFallback(dom) {
|
|
21909
|
+
leafFallback(dom, marks) {
|
|
21945
21910
|
if (dom.nodeName == "BR" && this.top.type && this.top.type.inlineContent)
|
|
21946
|
-
this.addTextNode(dom.ownerDocument.createTextNode("\n"));
|
|
21911
|
+
this.addTextNode(dom.ownerDocument.createTextNode("\n"), marks);
|
|
21947
21912
|
}
|
|
21948
21913
|
// Called for ignored nodes
|
|
21949
|
-
ignoreFallback(dom) {
|
|
21914
|
+
ignoreFallback(dom, marks) {
|
|
21950
21915
|
if (dom.nodeName == "BR" && (!this.top.type || !this.top.type.inlineContent))
|
|
21951
|
-
this.findPlace(this.parser.schema.text("-"));
|
|
21916
|
+
this.findPlace(this.parser.schema.text("-"), marks);
|
|
21952
21917
|
}
|
|
21953
21918
|
// Run any style parser associated with the node's styles. Either
|
|
21954
|
-
// return an array of marks, or null to indicate some of the
|
|
21955
|
-
// had a rule with `ignore` set.
|
|
21956
|
-
readStyles(
|
|
21957
|
-
let
|
|
21958
|
-
if (styles.length)
|
|
21919
|
+
// return an updated array of marks, or null to indicate some of the
|
|
21920
|
+
// styles had a rule with `ignore` set.
|
|
21921
|
+
readStyles(dom, marks) {
|
|
21922
|
+
let styles = dom.style;
|
|
21923
|
+
if (styles && styles.length)
|
|
21959
21924
|
for (let i2 = 0; i2 < this.parser.matchedStyles.length; i2++) {
|
|
21960
21925
|
let name = this.parser.matchedStyles[i2], value = styles.getPropertyValue(name);
|
|
21961
21926
|
if (value)
|
|
@@ -21965,47 +21930,46 @@ class ParseContext {
|
|
|
21965
21930
|
break;
|
|
21966
21931
|
if (rule.ignore)
|
|
21967
21932
|
return null;
|
|
21968
|
-
if (rule.clearMark)
|
|
21969
|
-
|
|
21970
|
-
|
|
21971
|
-
|
|
21972
|
-
});
|
|
21973
|
-
} else {
|
|
21974
|
-
add2 = this.parser.schema.marks[rule.mark].create(rule.attrs).addToSet(add2);
|
|
21975
|
-
}
|
|
21933
|
+
if (rule.clearMark)
|
|
21934
|
+
marks = marks.filter((m2) => !rule.clearMark(m2));
|
|
21935
|
+
else
|
|
21936
|
+
marks = marks.concat(this.parser.schema.marks[rule.mark].create(rule.attrs));
|
|
21976
21937
|
if (rule.consuming === false)
|
|
21977
21938
|
after = rule;
|
|
21978
21939
|
else
|
|
21979
21940
|
break;
|
|
21980
21941
|
}
|
|
21981
21942
|
}
|
|
21982
|
-
return
|
|
21943
|
+
return marks;
|
|
21983
21944
|
}
|
|
21984
21945
|
// Look up a handler for the given node. If none are found, return
|
|
21985
21946
|
// false. Otherwise, apply it, use its return value to drive the way
|
|
21986
21947
|
// the node's content is wrapped, and return true.
|
|
21987
|
-
addElementByRule(dom, rule, continueAfter) {
|
|
21988
|
-
let sync, nodeType
|
|
21948
|
+
addElementByRule(dom, rule, marks, continueAfter) {
|
|
21949
|
+
let sync, nodeType;
|
|
21989
21950
|
if (rule.node) {
|
|
21990
21951
|
nodeType = this.parser.schema.nodes[rule.node];
|
|
21991
21952
|
if (!nodeType.isLeaf) {
|
|
21992
|
-
|
|
21993
|
-
|
|
21994
|
-
|
|
21953
|
+
let inner = this.enter(nodeType, rule.attrs || null, marks, rule.preserveWhitespace);
|
|
21954
|
+
if (inner) {
|
|
21955
|
+
sync = true;
|
|
21956
|
+
marks = inner;
|
|
21957
|
+
}
|
|
21958
|
+
} else if (!this.insertNode(nodeType.create(rule.attrs), marks)) {
|
|
21959
|
+
this.leafFallback(dom, marks);
|
|
21995
21960
|
}
|
|
21996
21961
|
} else {
|
|
21997
21962
|
let markType = this.parser.schema.marks[rule.mark];
|
|
21998
|
-
|
|
21999
|
-
this.addPendingMark(mark);
|
|
21963
|
+
marks = marks.concat(markType.create(rule.attrs));
|
|
22000
21964
|
}
|
|
22001
21965
|
let startIn = this.top;
|
|
22002
21966
|
if (nodeType && nodeType.isLeaf) {
|
|
22003
21967
|
this.findInside(dom);
|
|
22004
21968
|
} else if (continueAfter) {
|
|
22005
|
-
this.addElement(dom, continueAfter);
|
|
21969
|
+
this.addElement(dom, marks, continueAfter);
|
|
22006
21970
|
} else if (rule.getContent) {
|
|
22007
21971
|
this.findInside(dom);
|
|
22008
|
-
rule.getContent(dom, this.parser.schema).forEach((node) => this.insertNode(node));
|
|
21972
|
+
rule.getContent(dom, this.parser.schema).forEach((node) => this.insertNode(node, marks));
|
|
22009
21973
|
} else {
|
|
22010
21974
|
let contentDOM = dom;
|
|
22011
21975
|
if (typeof rule.contentElement == "string")
|
|
@@ -22015,28 +21979,26 @@ class ParseContext {
|
|
|
22015
21979
|
else if (rule.contentElement)
|
|
22016
21980
|
contentDOM = rule.contentElement;
|
|
22017
21981
|
this.findAround(dom, contentDOM, true);
|
|
22018
|
-
this.addAll(contentDOM);
|
|
21982
|
+
this.addAll(contentDOM, marks);
|
|
22019
21983
|
}
|
|
22020
21984
|
if (sync && this.sync(startIn))
|
|
22021
21985
|
this.open--;
|
|
22022
|
-
if (mark)
|
|
22023
|
-
this.removePendingMark(mark, startIn);
|
|
22024
21986
|
}
|
|
22025
21987
|
// Add all child nodes between `startIndex` and `endIndex` (or the
|
|
22026
21988
|
// whole node, if not given). If `sync` is passed, use it to
|
|
22027
21989
|
// synchronize after every block element.
|
|
22028
|
-
addAll(parent, startIndex, endIndex) {
|
|
21990
|
+
addAll(parent, marks, startIndex, endIndex) {
|
|
22029
21991
|
let index2 = startIndex || 0;
|
|
22030
21992
|
for (let dom = startIndex ? parent.childNodes[startIndex] : parent.firstChild, end2 = endIndex == null ? null : parent.childNodes[endIndex]; dom != end2; dom = dom.nextSibling, ++index2) {
|
|
22031
21993
|
this.findAtPoint(parent, index2);
|
|
22032
|
-
this.addDOM(dom);
|
|
21994
|
+
this.addDOM(dom, marks);
|
|
22033
21995
|
}
|
|
22034
21996
|
this.findAtPoint(parent, index2);
|
|
22035
21997
|
}
|
|
22036
21998
|
// Try to find a way to fit the given node type into the current
|
|
22037
21999
|
// context. May add intermediate wrappers and/or leave non-solid
|
|
22038
22000
|
// nodes that we're in.
|
|
22039
|
-
findPlace(node) {
|
|
22001
|
+
findPlace(node, marks) {
|
|
22040
22002
|
let route, sync;
|
|
22041
22003
|
for (let depth = this.open; depth >= 0; depth--) {
|
|
22042
22004
|
let cx = this.nodes[depth];
|
|
@@ -22051,53 +22013,61 @@ class ParseContext {
|
|
|
22051
22013
|
break;
|
|
22052
22014
|
}
|
|
22053
22015
|
if (!route)
|
|
22054
|
-
return
|
|
22016
|
+
return null;
|
|
22055
22017
|
this.sync(sync);
|
|
22056
22018
|
for (let i2 = 0; i2 < route.length; i2++)
|
|
22057
|
-
this.enterInner(route[i2], null, false);
|
|
22058
|
-
return
|
|
22019
|
+
marks = this.enterInner(route[i2], null, marks, false);
|
|
22020
|
+
return marks;
|
|
22059
22021
|
}
|
|
22060
22022
|
// Try to insert the given node, adjusting the context when needed.
|
|
22061
|
-
insertNode(node) {
|
|
22023
|
+
insertNode(node, marks) {
|
|
22062
22024
|
if (node.isInline && this.needsBlock && !this.top.type) {
|
|
22063
22025
|
let block = this.textblockFromContext();
|
|
22064
22026
|
if (block)
|
|
22065
|
-
this.enterInner(block);
|
|
22027
|
+
marks = this.enterInner(block, null, marks);
|
|
22066
22028
|
}
|
|
22067
|
-
|
|
22029
|
+
let innerMarks = this.findPlace(node, marks);
|
|
22030
|
+
if (innerMarks) {
|
|
22068
22031
|
this.closeExtra();
|
|
22069
22032
|
let top2 = this.top;
|
|
22070
|
-
top2.applyPending(node.type);
|
|
22071
22033
|
if (top2.match)
|
|
22072
22034
|
top2.match = top2.match.matchType(node.type);
|
|
22073
|
-
let
|
|
22074
|
-
for (let
|
|
22075
|
-
if (
|
|
22076
|
-
|
|
22077
|
-
top2.content.push(node.mark(
|
|
22035
|
+
let nodeMarks = Mark$1.none;
|
|
22036
|
+
for (let m2 of innerMarks.concat(node.marks))
|
|
22037
|
+
if (top2.type ? top2.type.allowsMarkType(m2.type) : markMayApply(m2.type, node.type))
|
|
22038
|
+
nodeMarks = m2.addToSet(nodeMarks);
|
|
22039
|
+
top2.content.push(node.mark(nodeMarks));
|
|
22078
22040
|
return true;
|
|
22079
22041
|
}
|
|
22080
22042
|
return false;
|
|
22081
22043
|
}
|
|
22082
22044
|
// Try to start a node of the given type, adjusting the context when
|
|
22083
22045
|
// necessary.
|
|
22084
|
-
enter(type3, attrs, preserveWS) {
|
|
22085
|
-
let
|
|
22086
|
-
if (
|
|
22087
|
-
this.enterInner(type3, attrs, true, preserveWS);
|
|
22088
|
-
return
|
|
22046
|
+
enter(type3, attrs, marks, preserveWS) {
|
|
22047
|
+
let innerMarks = this.findPlace(type3.create(attrs), marks);
|
|
22048
|
+
if (innerMarks)
|
|
22049
|
+
innerMarks = this.enterInner(type3, attrs, marks, true, preserveWS);
|
|
22050
|
+
return innerMarks;
|
|
22089
22051
|
}
|
|
22090
22052
|
// Open a node of the given type
|
|
22091
|
-
enterInner(type3, attrs
|
|
22053
|
+
enterInner(type3, attrs, marks, solid = false, preserveWS) {
|
|
22092
22054
|
this.closeExtra();
|
|
22093
22055
|
let top2 = this.top;
|
|
22094
|
-
top2.applyPending(type3);
|
|
22095
22056
|
top2.match = top2.match && top2.match.matchType(type3);
|
|
22096
22057
|
let options = wsOptionsFor(type3, preserveWS, top2.options);
|
|
22097
22058
|
if (top2.options & OPT_OPEN_LEFT && top2.content.length == 0)
|
|
22098
22059
|
options |= OPT_OPEN_LEFT;
|
|
22099
|
-
|
|
22060
|
+
let applyMarks = Mark$1.none;
|
|
22061
|
+
marks = marks.filter((m2) => {
|
|
22062
|
+
if (top2.type ? top2.type.allowsMarkType(m2.type) : markMayApply(m2.type, type3)) {
|
|
22063
|
+
applyMarks = m2.addToSet(applyMarks);
|
|
22064
|
+
return false;
|
|
22065
|
+
}
|
|
22066
|
+
return true;
|
|
22067
|
+
});
|
|
22068
|
+
this.nodes.push(new NodeContext(type3, attrs, applyMarks, solid, null, options));
|
|
22100
22069
|
this.open++;
|
|
22070
|
+
return marks;
|
|
22101
22071
|
}
|
|
22102
22072
|
// Make sure all nodes above this.open are finished and added to
|
|
22103
22073
|
// their parents
|
|
@@ -22208,28 +22178,6 @@ class ParseContext {
|
|
|
22208
22178
|
return type3;
|
|
22209
22179
|
}
|
|
22210
22180
|
}
|
|
22211
|
-
addPendingMark(mark) {
|
|
22212
|
-
let found2 = findSameMarkInSet(mark, this.top.pendingMarks);
|
|
22213
|
-
if (found2)
|
|
22214
|
-
this.top.stashMarks.push(found2);
|
|
22215
|
-
this.top.pendingMarks = mark.addToSet(this.top.pendingMarks);
|
|
22216
|
-
}
|
|
22217
|
-
removePendingMark(mark, upto) {
|
|
22218
|
-
for (let depth = this.open; depth >= 0; depth--) {
|
|
22219
|
-
let level = this.nodes[depth];
|
|
22220
|
-
let found2 = level.pendingMarks.lastIndexOf(mark);
|
|
22221
|
-
if (found2 > -1) {
|
|
22222
|
-
level.pendingMarks = mark.removeFromSet(level.pendingMarks);
|
|
22223
|
-
} else {
|
|
22224
|
-
level.activeMarks = mark.removeFromSet(level.activeMarks);
|
|
22225
|
-
let stashMark = level.popFromStashMark(mark);
|
|
22226
|
-
if (stashMark && level.type && level.type.allowsMarkType(stashMark.type))
|
|
22227
|
-
level.activeMarks = stashMark.addToSet(level.activeMarks);
|
|
22228
|
-
}
|
|
22229
|
-
if (level == upto)
|
|
22230
|
-
break;
|
|
22231
|
-
}
|
|
22232
|
-
}
|
|
22233
22181
|
}
|
|
22234
22182
|
function normalizeList(dom) {
|
|
22235
22183
|
for (let child = dom.firstChild, prevItem = null; child; child = child.nextSibling) {
|
|
@@ -22273,12 +22221,6 @@ function markMayApply(markType, nodeType) {
|
|
|
22273
22221
|
return true;
|
|
22274
22222
|
}
|
|
22275
22223
|
}
|
|
22276
|
-
function findSameMarkInSet(mark, set2) {
|
|
22277
|
-
for (let i2 = 0; i2 < set2.length; i2++) {
|
|
22278
|
-
if (mark.eq(set2[i2]))
|
|
22279
|
-
return set2[i2];
|
|
22280
|
-
}
|
|
22281
|
-
}
|
|
22282
22224
|
class DOMSerializer {
|
|
22283
22225
|
/**
|
|
22284
22226
|
Create a serializer. `nodes` should map node names to functions
|
|
@@ -23381,7 +23323,8 @@ function setBlockType$1(tr2, from2, to2, type3, attrs) {
|
|
|
23381
23323
|
throw new RangeError("Type given to setBlockType should be a textblock");
|
|
23382
23324
|
let mapFrom = tr2.steps.length;
|
|
23383
23325
|
tr2.doc.nodesBetween(from2, to2, (node, pos) => {
|
|
23384
|
-
|
|
23326
|
+
let attrsHere = typeof attrs == "function" ? attrs(node) : attrs;
|
|
23327
|
+
if (node.isTextblock && !node.hasMarkup(type3, attrsHere) && canChangeType(tr2.doc, tr2.mapping.slice(mapFrom).map(pos), type3)) {
|
|
23385
23328
|
let convertNewlines = null;
|
|
23386
23329
|
if (type3.schema.linebreakReplacement) {
|
|
23387
23330
|
let pre = type3.whitespace == "pre", supportLinebreak = !!type3.contentMatch.matchType(type3.schema.linebreakReplacement);
|
|
@@ -23395,7 +23338,7 @@ function setBlockType$1(tr2, from2, to2, type3, attrs) {
|
|
|
23395
23338
|
clearIncompatible(tr2, tr2.mapping.slice(mapFrom).map(pos, 1), type3, void 0, convertNewlines === null);
|
|
23396
23339
|
let mapping = tr2.mapping.slice(mapFrom);
|
|
23397
23340
|
let startM = mapping.map(pos, 1), endM = mapping.map(pos + node.nodeSize, 1);
|
|
23398
|
-
tr2.step(new ReplaceAroundStep(startM, endM, startM + 1, endM - 1, new Slice(Fragment.from(type3.create(
|
|
23341
|
+
tr2.step(new ReplaceAroundStep(startM, endM, startM + 1, endM - 1, new Slice(Fragment.from(type3.create(attrsHere, null, node.marks)), 0, 0), 1, true));
|
|
23399
23342
|
if (convertNewlines === true)
|
|
23400
23343
|
replaceNewlines(tr2, node, pos, mapFrom);
|
|
23401
23344
|
return false;
|
|
@@ -25290,14 +25233,14 @@ function caretFromPoint(doc2, x2, y2) {
|
|
|
25290
25233
|
try {
|
|
25291
25234
|
let pos = doc2.caretPositionFromPoint(x2, y2);
|
|
25292
25235
|
if (pos)
|
|
25293
|
-
return { node: pos.offsetNode, offset: pos.offset };
|
|
25236
|
+
return { node: pos.offsetNode, offset: Math.min(nodeSize(pos.offsetNode), pos.offset) };
|
|
25294
25237
|
} catch (_2) {
|
|
25295
25238
|
}
|
|
25296
25239
|
}
|
|
25297
25240
|
if (doc2.caretRangeFromPoint) {
|
|
25298
25241
|
let range2 = doc2.caretRangeFromPoint(x2, y2);
|
|
25299
25242
|
if (range2)
|
|
25300
|
-
return { node: range2.startContainer, offset: range2.startOffset };
|
|
25243
|
+
return { node: range2.startContainer, offset: Math.min(nodeSize(range2.startContainer), range2.startOffset) };
|
|
25301
25244
|
}
|
|
25302
25245
|
}
|
|
25303
25246
|
const nav = typeof navigator != "undefined" ? navigator : null;
|
|
@@ -25751,6 +25694,8 @@ function endOfTextblockHorizontal(view, state2, dir) {
|
|
|
25751
25694
|
return false;
|
|
25752
25695
|
let offset2 = $head.parentOffset, atStart = !offset2, atEnd = offset2 == $head.parent.content.size;
|
|
25753
25696
|
let sel = view.domSelection();
|
|
25697
|
+
if (!sel)
|
|
25698
|
+
return $head.pos == $head.start() || $head.pos == $head.end();
|
|
25754
25699
|
if (!maybeRTL.test($head.parent.textContent) || !sel.modify)
|
|
25755
25700
|
return dir == "left" || dir == "backward" ? atStart : atEnd;
|
|
25756
25701
|
return withFlushedState(view, state2, () => {
|
|
@@ -26847,6 +26792,7 @@ class ViewTreeUpdater {
|
|
|
26847
26792
|
this.index++;
|
|
26848
26793
|
return true;
|
|
26849
26794
|
} else if (!locked && (updated = this.recreateWrapper(next, node, outerDeco, innerDeco, view, pos))) {
|
|
26795
|
+
this.destroyBetween(this.index, i2);
|
|
26850
26796
|
this.top.children[this.index] = updated;
|
|
26851
26797
|
if (updated.contentDOM) {
|
|
26852
26798
|
updated.dirty = CONTENT_DIRTY;
|
|
@@ -26865,7 +26811,7 @@ class ViewTreeUpdater {
|
|
|
26865
26811
|
// When a node with content is replaced by a different node with
|
|
26866
26812
|
// identical content, move over its children.
|
|
26867
26813
|
recreateWrapper(next, node, outerDeco, innerDeco, view, pos) {
|
|
26868
|
-
if (next.dirty || node.isAtom || !next.children.length || !next.node.content.eq(node.content))
|
|
26814
|
+
if (next.dirty || node.isAtom || !next.children.length || !next.node.content.eq(node.content) || !sameOuterDeco(outerDeco, next.outerDeco) || !innerDeco.eq(next.innerDeco))
|
|
26869
26815
|
return null;
|
|
26870
26816
|
let wrapper = NodeViewDesc.create(this.top, node, outerDeco, innerDeco, view, pos);
|
|
26871
26817
|
if (wrapper.contentDOM) {
|
|
@@ -27101,9 +27047,9 @@ function selectionFromDOM(view, origin2 = null) {
|
|
|
27101
27047
|
let head = view.docView.posFromDOM(domSel.focusNode, domSel.focusOffset, 1);
|
|
27102
27048
|
if (head < 0)
|
|
27103
27049
|
return null;
|
|
27104
|
-
let $head = doc2.resolve(head),
|
|
27050
|
+
let $head = doc2.resolve(head), anchor, selection;
|
|
27105
27051
|
if (selectionCollapsed(domSel)) {
|
|
27106
|
-
|
|
27052
|
+
anchor = head;
|
|
27107
27053
|
while (nearestDesc && !nearestDesc.node)
|
|
27108
27054
|
nearestDesc = nearestDesc.parent;
|
|
27109
27055
|
let nearestDescNode = nearestDesc.node;
|
|
@@ -27112,11 +27058,24 @@ function selectionFromDOM(view, origin2 = null) {
|
|
|
27112
27058
|
selection = new NodeSelection(head == pos ? $head : doc2.resolve(pos));
|
|
27113
27059
|
}
|
|
27114
27060
|
} else {
|
|
27115
|
-
|
|
27061
|
+
if (domSel instanceof view.dom.ownerDocument.defaultView.Selection && domSel.rangeCount > 1) {
|
|
27062
|
+
let min2 = head, max2 = head;
|
|
27063
|
+
for (let i2 = 0; i2 < domSel.rangeCount; i2++) {
|
|
27064
|
+
let range2 = domSel.getRangeAt(i2);
|
|
27065
|
+
min2 = Math.min(min2, view.docView.posFromDOM(range2.startContainer, range2.startOffset, 1));
|
|
27066
|
+
max2 = Math.max(max2, view.docView.posFromDOM(range2.endContainer, range2.endOffset, -1));
|
|
27067
|
+
}
|
|
27068
|
+
if (min2 < 0)
|
|
27069
|
+
return null;
|
|
27070
|
+
[anchor, head] = max2 == view.state.selection.anchor ? [max2, min2] : [min2, max2];
|
|
27071
|
+
$head = doc2.resolve(head);
|
|
27072
|
+
} else {
|
|
27073
|
+
anchor = view.docView.posFromDOM(domSel.anchorNode, domSel.anchorOffset, 1);
|
|
27074
|
+
}
|
|
27116
27075
|
if (anchor < 0)
|
|
27117
27076
|
return null;
|
|
27118
|
-
$anchor = doc2.resolve(anchor);
|
|
27119
27077
|
}
|
|
27078
|
+
let $anchor = doc2.resolve(anchor);
|
|
27120
27079
|
if (!selection) {
|
|
27121
27080
|
let bias = origin2 == "pointer" || view.state.selection.head < $head.pos && !inWidget ? 1 : -1;
|
|
27122
27081
|
selection = selectionBetween(view, $anchor, $head, bias);
|
|
@@ -27214,12 +27173,14 @@ function removeClassOnSelectionChange(view) {
|
|
|
27214
27173
|
}
|
|
27215
27174
|
function selectCursorWrapper(view) {
|
|
27216
27175
|
let domSel = view.domSelection(), range2 = document.createRange();
|
|
27176
|
+
if (!domSel)
|
|
27177
|
+
return;
|
|
27217
27178
|
let node = view.cursorWrapper.dom, img = node.nodeName == "IMG";
|
|
27218
27179
|
if (img)
|
|
27219
|
-
range2.
|
|
27180
|
+
range2.setStart(node.parentNode, domIndex(node) + 1);
|
|
27220
27181
|
else
|
|
27221
|
-
range2.
|
|
27222
|
-
range2.collapse(
|
|
27182
|
+
range2.setStart(node, 0);
|
|
27183
|
+
range2.collapse(true);
|
|
27223
27184
|
domSel.removeAllRanges();
|
|
27224
27185
|
domSel.addRange(range2);
|
|
27225
27186
|
if (!img && !view.state.selection.visible && ie$1 && ie_version <= 11) {
|
|
@@ -27465,6 +27426,8 @@ function setSelFocus(view, node, offset2) {
|
|
|
27465
27426
|
}
|
|
27466
27427
|
}
|
|
27467
27428
|
let sel = view.domSelection();
|
|
27429
|
+
if (!sel)
|
|
27430
|
+
return;
|
|
27468
27431
|
if (selectionCollapsed(sel)) {
|
|
27469
27432
|
let range2 = document.createRange();
|
|
27470
27433
|
range2.setEnd(node, offset2);
|
|
@@ -27782,6 +27745,12 @@ let _detachedDoc = null;
|
|
|
27782
27745
|
function detachedDoc() {
|
|
27783
27746
|
return _detachedDoc || (_detachedDoc = document.implementation.createHTMLDocument("title"));
|
|
27784
27747
|
}
|
|
27748
|
+
function maybeWrapTrusted(html) {
|
|
27749
|
+
let trustedTypes = window.trustedTypes;
|
|
27750
|
+
if (!trustedTypes)
|
|
27751
|
+
return html;
|
|
27752
|
+
return trustedTypes.createPolicy("detachedDocument", { createHTML: (s2) => s2 }).createHTML(html);
|
|
27753
|
+
}
|
|
27785
27754
|
function readHTML(html) {
|
|
27786
27755
|
let metas = /^(\s*<meta [^>]*>)*/.exec(html);
|
|
27787
27756
|
if (metas)
|
|
@@ -27790,7 +27759,7 @@ function readHTML(html) {
|
|
|
27790
27759
|
let firstTag = /<([a-z][^>\s]+)/i.exec(html), wrap2;
|
|
27791
27760
|
if (wrap2 = firstTag && wrapMap[firstTag[1].toLowerCase()])
|
|
27792
27761
|
html = wrap2.map((n2) => "<" + n2 + ">").join("") + html + wrap2.map((n2) => "</" + n2 + ">").reverse().join("");
|
|
27793
|
-
elt.innerHTML = html;
|
|
27762
|
+
elt.innerHTML = maybeWrapTrusted(html);
|
|
27794
27763
|
if (wrap2)
|
|
27795
27764
|
for (let i2 = 0; i2 < wrap2.length; i2++)
|
|
27796
27765
|
elt = elt.querySelector(wrap2[i2]) || elt;
|
|
@@ -27912,7 +27881,9 @@ editHandlers.keydown = (view, _event) => {
|
|
|
27912
27881
|
view.input.lastKeyCodeTime = Date.now();
|
|
27913
27882
|
if (android && chrome && event.keyCode == 13)
|
|
27914
27883
|
return;
|
|
27915
|
-
if (
|
|
27884
|
+
if (view.domObserver.selectionChanged(view.domSelectionRange()))
|
|
27885
|
+
view.domObserver.flush();
|
|
27886
|
+
else if (event.keyCode != 229)
|
|
27916
27887
|
view.domObserver.forceFlush();
|
|
27917
27888
|
if (ios && event.keyCode == 13 && !event.ctrlKey && !event.altKey && !event.metaKey) {
|
|
27918
27889
|
let now = Date.now();
|
|
@@ -27969,6 +27940,8 @@ function runHandlerOnContext(view, propName, pos, inside, event) {
|
|
|
27969
27940
|
function updateSelection(view, selection, origin2) {
|
|
27970
27941
|
if (!view.focused)
|
|
27971
27942
|
view.focus();
|
|
27943
|
+
if (view.state.selection.eq(selection))
|
|
27944
|
+
return;
|
|
27972
27945
|
let tr2 = view.state.tr.setSelection(selection);
|
|
27973
27946
|
tr2.setMeta("pointer", true);
|
|
27974
27947
|
view.dispatch(tr2);
|
|
@@ -28191,13 +28164,13 @@ const timeoutComposition = android ? 5e3 : -1;
|
|
|
28191
28164
|
editHandlers.compositionstart = editHandlers.compositionupdate = (view) => {
|
|
28192
28165
|
if (!view.composing) {
|
|
28193
28166
|
view.domObserver.flush();
|
|
28194
|
-
let { state: state2 } = view, $pos = state2.selection.$
|
|
28195
|
-
if (state2.selection
|
|
28167
|
+
let { state: state2 } = view, $pos = state2.selection.$to;
|
|
28168
|
+
if (state2.selection instanceof TextSelection && (state2.storedMarks || !$pos.textOffset && $pos.parentOffset && $pos.nodeBefore.marks.some((m2) => m2.type.spec.inclusive === false))) {
|
|
28196
28169
|
view.markCursor = view.state.storedMarks || $pos.marks();
|
|
28197
28170
|
endComposition(view, true);
|
|
28198
28171
|
view.markCursor = null;
|
|
28199
28172
|
} else {
|
|
28200
|
-
endComposition(view);
|
|
28173
|
+
endComposition(view, !state2.selection.empty);
|
|
28201
28174
|
if (gecko && state2.selection.empty && $pos.parentOffset && !$pos.textOffset && $pos.nodeBefore.marks.length) {
|
|
28202
28175
|
let sel = view.domSelectionRange();
|
|
28203
28176
|
for (let node = sel.focusNode, offset2 = sel.focusOffset; node && node.nodeType == 1 && offset2 != 0; ) {
|
|
@@ -28205,7 +28178,9 @@ editHandlers.compositionstart = editHandlers.compositionupdate = (view) => {
|
|
|
28205
28178
|
if (!before)
|
|
28206
28179
|
break;
|
|
28207
28180
|
if (before.nodeType == 3) {
|
|
28208
|
-
view.domSelection()
|
|
28181
|
+
let sel2 = view.domSelection();
|
|
28182
|
+
if (sel2)
|
|
28183
|
+
sel2.collapse(before, before.nodeValue.length);
|
|
28209
28184
|
break;
|
|
28210
28185
|
} else {
|
|
28211
28186
|
node = before;
|
|
@@ -28268,15 +28243,17 @@ function timestampFromCustomEvent() {
|
|
|
28268
28243
|
event.initEvent("event", true, true);
|
|
28269
28244
|
return event.timeStamp;
|
|
28270
28245
|
}
|
|
28271
|
-
function endComposition(view,
|
|
28246
|
+
function endComposition(view, restarting = false) {
|
|
28272
28247
|
if (android && view.domObserver.flushingSoon >= 0)
|
|
28273
28248
|
return;
|
|
28274
28249
|
view.domObserver.forceFlush();
|
|
28275
28250
|
clearComposition(view);
|
|
28276
|
-
if (
|
|
28251
|
+
if (restarting || view.docView && view.docView.dirty) {
|
|
28277
28252
|
let sel = selectionFromDOM(view);
|
|
28278
28253
|
if (sel && !sel.eq(view.state.selection))
|
|
28279
28254
|
view.dispatch(view.state.tr.setSelection(sel));
|
|
28255
|
+
else if ((view.markCursor || restarting) && !view.state.selection.empty)
|
|
28256
|
+
view.dispatch(view.state.tr.deleteSelection());
|
|
28280
28257
|
else
|
|
28281
28258
|
view.updateState(view.state);
|
|
28282
28259
|
return true;
|
|
@@ -28883,6 +28860,9 @@ class DecorationSet {
|
|
|
28883
28860
|
}
|
|
28884
28861
|
return result2;
|
|
28885
28862
|
}
|
|
28863
|
+
forEachSet(f2) {
|
|
28864
|
+
f2(this);
|
|
28865
|
+
}
|
|
28886
28866
|
}
|
|
28887
28867
|
DecorationSet.empty = new DecorationSet([], []);
|
|
28888
28868
|
DecorationSet.removeOverlap = removeOverlap;
|
|
@@ -28949,6 +28929,10 @@ class DecorationGroup {
|
|
|
28949
28929
|
return new DecorationGroup(members.every((m2) => m2 instanceof DecorationSet) ? members : members.reduce((r2, m2) => r2.concat(m2 instanceof DecorationSet ? m2 : m2.members), []));
|
|
28950
28930
|
}
|
|
28951
28931
|
}
|
|
28932
|
+
forEachSet(f2) {
|
|
28933
|
+
for (let i2 = 0; i2 < this.members.length; i2++)
|
|
28934
|
+
this.members[i2].forEachSet(f2);
|
|
28935
|
+
}
|
|
28952
28936
|
}
|
|
28953
28937
|
function mapChildren(oldChildren, newLocal, mapping, node, offset2, oldOffset, options) {
|
|
28954
28938
|
let children2 = oldChildren.slice();
|
|
@@ -29277,6 +29261,9 @@ class DOMObserver {
|
|
|
29277
29261
|
this.queue.push(mut);
|
|
29278
29262
|
return this.queue;
|
|
29279
29263
|
}
|
|
29264
|
+
selectionChanged(sel) {
|
|
29265
|
+
return !this.suppressingSelectionUpdates && !this.currentSelection.eq(sel) && hasFocusAndSelection(this.view) && !this.ignoreSelectionChange(sel);
|
|
29266
|
+
}
|
|
29280
29267
|
flush() {
|
|
29281
29268
|
let { view } = this;
|
|
29282
29269
|
if (!view.docView || this.flushingSoon > -1)
|
|
@@ -29284,8 +29271,7 @@ class DOMObserver {
|
|
|
29284
29271
|
let mutations = this.pendingRecords();
|
|
29285
29272
|
if (mutations.length)
|
|
29286
29273
|
this.queue = [];
|
|
29287
|
-
let sel = view.domSelectionRange();
|
|
29288
|
-
let newSel = !this.suppressingSelectionUpdates && !this.currentSelection.eq(sel) && hasFocusAndSelection(view) && !this.ignoreSelectionChange(sel);
|
|
29274
|
+
let sel = view.domSelectionRange(), newSel = this.selectionChanged(sel);
|
|
29289
29275
|
let from2 = -1, to2 = -1, typeOver = false, added = [];
|
|
29290
29276
|
if (view.editable) {
|
|
29291
29277
|
for (let i2 = 0; i2 < mutations.length; i2++) {
|
|
@@ -29528,6 +29514,8 @@ function readDOMChange(view, from2, to2, typeOver, addedNodes) {
|
|
|
29528
29514
|
}
|
|
29529
29515
|
view.input.lastKeyCode = null;
|
|
29530
29516
|
let change = findDiff(compare2.content, parse2.doc.content, parse2.from, preferredPos, preferredSide);
|
|
29517
|
+
if (change)
|
|
29518
|
+
view.input.domChangeCount++;
|
|
29531
29519
|
if ((ios && view.input.lastIOSEnter > Date.now() - 225 || android) && addedNodes.some((n2) => n2.nodeType == 1 && !isInline.test(n2.nodeName)) && (!change || change.endA >= change.endB) && view.someProp("handleKeyDown", (f2) => f2(view, keyEvent(13, "Enter")))) {
|
|
29532
29520
|
view.input.lastIOSEnter = 0;
|
|
29533
29521
|
return;
|
|
@@ -29548,7 +29536,6 @@ function readDOMChange(view, from2, to2, typeOver, addedNodes) {
|
|
|
29548
29536
|
return;
|
|
29549
29537
|
}
|
|
29550
29538
|
}
|
|
29551
|
-
view.input.domChangeCount++;
|
|
29552
29539
|
if (view.state.selection.from < view.state.selection.to && change.start == change.endB && view.state.selection instanceof TextSelection) {
|
|
29553
29540
|
if (change.start > view.state.selection.from && change.start <= view.state.selection.from + 2 && view.state.selection.from >= parse2.from) {
|
|
29554
29541
|
change.start = view.state.selection.from;
|
|
@@ -30154,6 +30141,8 @@ class EditorView {
|
|
|
30154
30141
|
*/
|
|
30155
30142
|
domSelectionRange() {
|
|
30156
30143
|
let sel = this.domSelection();
|
|
30144
|
+
if (!sel)
|
|
30145
|
+
return { focusNode: null, focusOffset: 0, anchorNode: null, anchorOffset: 0 };
|
|
30157
30146
|
return safari && this.root.nodeType === 11 && deepActiveElement(this.dom.ownerDocument) == this.dom && safariShadowSelectionRange(this, sel) || sel;
|
|
30158
30147
|
}
|
|
30159
30148
|
/**
|
|
@@ -30190,7 +30179,7 @@ function updateCursorWrapper(view) {
|
|
|
30190
30179
|
dom.className = "ProseMirror-separator";
|
|
30191
30180
|
dom.setAttribute("mark-placeholder", "true");
|
|
30192
30181
|
dom.setAttribute("alt", "");
|
|
30193
|
-
view.cursorWrapper = { dom, deco: Decoration.widget(view.state.selection.
|
|
30182
|
+
view.cursorWrapper = { dom, deco: Decoration.widget(view.state.selection.from, dom, { raw: true, marks: view.markCursor }) };
|
|
30194
30183
|
} else {
|
|
30195
30184
|
view.cursorWrapper = null;
|
|
30196
30185
|
}
|
|
@@ -30430,17 +30419,21 @@ const joinBackward$1 = (state2, dispatch, view) => {
|
|
|
30430
30419
|
return true;
|
|
30431
30420
|
}
|
|
30432
30421
|
let before = $cut.nodeBefore;
|
|
30433
|
-
if (
|
|
30422
|
+
if (deleteBarrier(state2, $cut, dispatch, -1))
|
|
30434
30423
|
return true;
|
|
30435
30424
|
if ($cursor.parent.content.size == 0 && (textblockAt(before, "end") || NodeSelection.isSelectable(before))) {
|
|
30436
|
-
let
|
|
30437
|
-
|
|
30438
|
-
if (
|
|
30439
|
-
|
|
30440
|
-
|
|
30441
|
-
|
|
30425
|
+
for (let depth = $cursor.depth; ; depth--) {
|
|
30426
|
+
let delStep = replaceStep(state2.doc, $cursor.before(depth), $cursor.after(depth), Slice.empty);
|
|
30427
|
+
if (delStep && delStep.slice.size < delStep.to - delStep.from) {
|
|
30428
|
+
if (dispatch) {
|
|
30429
|
+
let tr2 = state2.tr.step(delStep);
|
|
30430
|
+
tr2.setSelection(textblockAt(before, "end") ? Selection.findFrom(tr2.doc.resolve(tr2.mapping.map($cut.pos, -1)), -1) : NodeSelection.create(tr2.doc, $cut.pos - before.nodeSize));
|
|
30431
|
+
dispatch(tr2.scrollIntoView());
|
|
30432
|
+
}
|
|
30433
|
+
return true;
|
|
30442
30434
|
}
|
|
30443
|
-
|
|
30435
|
+
if (depth == 1 || $cursor.node(depth - 1).childCount > 1)
|
|
30436
|
+
break;
|
|
30444
30437
|
}
|
|
30445
30438
|
}
|
|
30446
30439
|
if (before.isAtom && $cut.depth == $cursor.depth - 1) {
|
|
@@ -30542,7 +30535,7 @@ const joinForward$1 = (state2, dispatch, view) => {
|
|
|
30542
30535
|
if (!$cut)
|
|
30543
30536
|
return false;
|
|
30544
30537
|
let after = $cut.nodeAfter;
|
|
30545
|
-
if (deleteBarrier(state2, $cut, dispatch))
|
|
30538
|
+
if (deleteBarrier(state2, $cut, dispatch, 1))
|
|
30546
30539
|
return true;
|
|
30547
30540
|
if ($cursor.parent.content.size == 0 && (textblockAt(after, "start") || NodeSelection.isSelectable(after))) {
|
|
30548
30541
|
let delStep = replaceStep(state2.doc, $cursor.before(), $cursor.after(), Slice.empty);
|
|
@@ -30721,13 +30714,12 @@ function joinMaybeClear(state2, $pos, dispatch) {
|
|
|
30721
30714
|
dispatch(state2.tr.clearIncompatible($pos.pos, before.type, before.contentMatchAt(before.childCount)).join($pos.pos).scrollIntoView());
|
|
30722
30715
|
return true;
|
|
30723
30716
|
}
|
|
30724
|
-
function deleteBarrier(state2, $cut, dispatch) {
|
|
30717
|
+
function deleteBarrier(state2, $cut, dispatch, dir) {
|
|
30725
30718
|
let before = $cut.nodeBefore, after = $cut.nodeAfter, conn, match2;
|
|
30726
|
-
|
|
30727
|
-
|
|
30728
|
-
if (joinMaybeClear(state2, $cut, dispatch))
|
|
30719
|
+
let isolated = before.type.spec.isolating || after.type.spec.isolating;
|
|
30720
|
+
if (!isolated && joinMaybeClear(state2, $cut, dispatch))
|
|
30729
30721
|
return true;
|
|
30730
|
-
let canDelAfter = $cut.parent.canReplace($cut.index(), $cut.index() + 1);
|
|
30722
|
+
let canDelAfter = !isolated && $cut.parent.canReplace($cut.index(), $cut.index() + 1);
|
|
30731
30723
|
if (canDelAfter && (conn = (match2 = before.contentMatchAt(before.childCount)).findWrapping(after.type)) && match2.matchType(conn[0] || after.type).validEnd) {
|
|
30732
30724
|
if (dispatch) {
|
|
30733
30725
|
let end2 = $cut.pos + after.nodeSize, wrap2 = Fragment.empty;
|
|
@@ -30742,7 +30734,7 @@ function deleteBarrier(state2, $cut, dispatch) {
|
|
|
30742
30734
|
}
|
|
30743
30735
|
return true;
|
|
30744
30736
|
}
|
|
30745
|
-
let selAfter = Selection.findFrom($cut, 1);
|
|
30737
|
+
let selAfter = after.type.spec.isolating || dir > 0 && isolated ? null : Selection.findFrom($cut, 1);
|
|
30746
30738
|
let range2 = selAfter && selAfter.$from.blockRange(selAfter.$to), target = range2 && liftTarget(range2);
|
|
30747
30739
|
if (target != null && target >= $cut.depth) {
|
|
30748
30740
|
if (dispatch)
|
|
@@ -31223,7 +31215,18 @@ function mergeAttributes(...objects) {
|
|
|
31223
31215
|
const insertClasses = valueClasses.filter((valueClass) => !existingClasses.includes(valueClass));
|
|
31224
31216
|
mergedAttributes[key] = [...existingClasses, ...insertClasses].join(" ");
|
|
31225
31217
|
} else if (key === "style") {
|
|
31226
|
-
|
|
31218
|
+
const newStyles = value ? value.split(";").map((style2) => style2.trim()).filter(Boolean) : [];
|
|
31219
|
+
const existingStyles = mergedAttributes[key] ? mergedAttributes[key].split(";").map((style2) => style2.trim()).filter(Boolean) : [];
|
|
31220
|
+
const styleMap = /* @__PURE__ */ new Map();
|
|
31221
|
+
existingStyles.forEach((style2) => {
|
|
31222
|
+
const [property, val] = style2.split(":").map((part) => part.trim());
|
|
31223
|
+
styleMap.set(property, val);
|
|
31224
|
+
});
|
|
31225
|
+
newStyles.forEach((style2) => {
|
|
31226
|
+
const [property, val] = style2.split(":").map((part) => part.trim());
|
|
31227
|
+
styleMap.set(property, val);
|
|
31228
|
+
});
|
|
31229
|
+
mergedAttributes[key] = Array.from(styleMap.entries()).map(([property, val]) => `${property}: ${val}`).join("; ");
|
|
31227
31230
|
} else {
|
|
31228
31231
|
mergedAttributes[key] = value;
|
|
31229
31232
|
}
|
|
@@ -31958,15 +31961,19 @@ class ExtensionManager {
|
|
|
31958
31961
|
if (!addNodeView) {
|
|
31959
31962
|
return [];
|
|
31960
31963
|
}
|
|
31961
|
-
const nodeview = (node, view, getPos, decorations) => {
|
|
31964
|
+
const nodeview = (node, view, getPos, decorations, innerDecorations) => {
|
|
31962
31965
|
const HTMLAttributes = getRenderedAttributes(node, extensionAttributes);
|
|
31963
31966
|
return addNodeView()({
|
|
31964
|
-
|
|
31967
|
+
// pass-through
|
|
31965
31968
|
node,
|
|
31969
|
+
view,
|
|
31966
31970
|
getPos,
|
|
31967
31971
|
decorations,
|
|
31968
|
-
|
|
31969
|
-
|
|
31972
|
+
innerDecorations,
|
|
31973
|
+
// tiptap-specific
|
|
31974
|
+
editor,
|
|
31975
|
+
extension,
|
|
31976
|
+
HTMLAttributes
|
|
31970
31977
|
});
|
|
31971
31978
|
};
|
|
31972
31979
|
return [extension.name, nodeview];
|
|
@@ -33507,10 +33514,14 @@ const toggleNode = (typeOrName, toggleTypeOrName, attributes = {}) => ({ state:
|
|
|
33507
33514
|
const type3 = getNodeType(typeOrName, state2.schema);
|
|
33508
33515
|
const toggleType = getNodeType(toggleTypeOrName, state2.schema);
|
|
33509
33516
|
const isActive2 = isNodeActive(state2, type3, attributes);
|
|
33517
|
+
let attributesToCopy;
|
|
33518
|
+
if (state2.selection.$anchor.sameParent(state2.selection.$head)) {
|
|
33519
|
+
attributesToCopy = state2.selection.$anchor.parent.attrs;
|
|
33520
|
+
}
|
|
33510
33521
|
if (isActive2) {
|
|
33511
|
-
return commands2.setNode(toggleType);
|
|
33522
|
+
return commands2.setNode(toggleType, attributesToCopy);
|
|
33512
33523
|
}
|
|
33513
|
-
return commands2.setNode(type3, attributes);
|
|
33524
|
+
return commands2.setNode(type3, { ...attributesToCopy, ...attributes });
|
|
33514
33525
|
};
|
|
33515
33526
|
const toggleWrap = (typeOrName, attributes = {}) => ({ state: state2, commands: commands2 }) => {
|
|
33516
33527
|
const type3 = getNodeType(typeOrName, state2.schema);
|
|
@@ -33816,7 +33827,8 @@ const Keymap = Extension.create({
|
|
|
33816
33827
|
key: new PluginKey("clearDocument"),
|
|
33817
33828
|
appendTransaction: (transactions, oldState, newState) => {
|
|
33818
33829
|
const docChanges = transactions.some((transaction) => transaction.docChanged) && !oldState.doc.eq(newState.doc);
|
|
33819
|
-
|
|
33830
|
+
const ignoreTr = transactions.some((transaction) => transaction.getMeta("preventClearDocument"));
|
|
33831
|
+
if (!docChanges || ignoreTr) {
|
|
33820
33832
|
return;
|
|
33821
33833
|
}
|
|
33822
33834
|
const { empty: empty2, from: from2, to: to2 } = oldState.selection;
|
|
@@ -33826,7 +33838,7 @@ const Keymap = Extension.create({
|
|
|
33826
33838
|
if (empty2 || !allWasSelected) {
|
|
33827
33839
|
return;
|
|
33828
33840
|
}
|
|
33829
|
-
const isEmpty2 =
|
|
33841
|
+
const isEmpty2 = isNodeEmpty(newState.doc);
|
|
33830
33842
|
if (!isEmpty2) {
|
|
33831
33843
|
return;
|
|
33832
33844
|
}
|
|
@@ -34029,6 +34041,26 @@ class NodePos {
|
|
|
34029
34041
|
this.editor.chain().setTextSelection(this.from).updateAttributes(this.node.type.name, attributes).setTextSelection(oldSelection.from).run();
|
|
34030
34042
|
}
|
|
34031
34043
|
}
|
|
34044
|
+
const DropPlugin = (onDrop) => {
|
|
34045
|
+
return new Plugin({
|
|
34046
|
+
key: new PluginKey("tiptapDrop"),
|
|
34047
|
+
props: {
|
|
34048
|
+
handleDrop: (_2, e, slice4, moved2) => {
|
|
34049
|
+
onDrop(e, slice4, moved2);
|
|
34050
|
+
}
|
|
34051
|
+
}
|
|
34052
|
+
});
|
|
34053
|
+
};
|
|
34054
|
+
const PastePlugin = (onPaste) => {
|
|
34055
|
+
return new Plugin({
|
|
34056
|
+
key: new PluginKey("tiptapPaste"),
|
|
34057
|
+
props: {
|
|
34058
|
+
handlePaste: (_view, e, slice4) => {
|
|
34059
|
+
onPaste(e, slice4);
|
|
34060
|
+
}
|
|
34061
|
+
}
|
|
34062
|
+
});
|
|
34063
|
+
};
|
|
34032
34064
|
const style = `.ProseMirror {
|
|
34033
34065
|
position: relative;
|
|
34034
34066
|
}
|
|
@@ -34149,7 +34181,9 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34149
34181
|
onDestroy: () => null,
|
|
34150
34182
|
onContentError: ({ error }) => {
|
|
34151
34183
|
throw error;
|
|
34152
|
-
}
|
|
34184
|
+
},
|
|
34185
|
+
onPaste: () => null,
|
|
34186
|
+
onDrop: () => null
|
|
34153
34187
|
};
|
|
34154
34188
|
this.isCapturingTransaction = false;
|
|
34155
34189
|
this.capturedTransaction = null;
|
|
@@ -34169,6 +34203,12 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34169
34203
|
this.on("focus", this.options.onFocus);
|
|
34170
34204
|
this.on("blur", this.options.onBlur);
|
|
34171
34205
|
this.on("destroy", this.options.onDestroy);
|
|
34206
|
+
if (this.options.onPaste) {
|
|
34207
|
+
this.registerPlugin(PastePlugin(this.options.onPaste));
|
|
34208
|
+
}
|
|
34209
|
+
if (this.options.onDrop) {
|
|
34210
|
+
this.registerPlugin(DropPlugin(this.options.onDrop));
|
|
34211
|
+
}
|
|
34172
34212
|
window.setTimeout(() => {
|
|
34173
34213
|
if (this.isDestroyed) {
|
|
34174
34214
|
return;
|
|
@@ -34254,20 +34294,23 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34254
34294
|
*
|
|
34255
34295
|
* @param plugin A ProseMirror plugin
|
|
34256
34296
|
* @param handlePlugins Control how to merge the plugin into the existing plugins.
|
|
34297
|
+
* @returns The new editor state
|
|
34257
34298
|
*/
|
|
34258
34299
|
registerPlugin(plugin, handlePlugins) {
|
|
34259
34300
|
const plugins2 = isFunction$1(handlePlugins) ? handlePlugins(plugin, [...this.state.plugins]) : [...this.state.plugins, plugin];
|
|
34260
34301
|
const state2 = this.state.reconfigure({ plugins: plugins2 });
|
|
34261
34302
|
this.view.updateState(state2);
|
|
34303
|
+
return state2;
|
|
34262
34304
|
}
|
|
34263
34305
|
/**
|
|
34264
34306
|
* Unregister a ProseMirror plugin.
|
|
34265
34307
|
*
|
|
34266
34308
|
* @param nameOrPluginKey The plugins name
|
|
34309
|
+
* @returns The new editor state or undefined if the editor is destroyed
|
|
34267
34310
|
*/
|
|
34268
34311
|
unregisterPlugin(nameOrPluginKey) {
|
|
34269
34312
|
if (this.isDestroyed) {
|
|
34270
|
-
return;
|
|
34313
|
+
return void 0;
|
|
34271
34314
|
}
|
|
34272
34315
|
const name = typeof nameOrPluginKey === "string" ? `${nameOrPluginKey}$` : nameOrPluginKey.key;
|
|
34273
34316
|
const state2 = this.state.reconfigure({
|
|
@@ -34275,6 +34318,7 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34275
34318
|
plugins: this.state.plugins.filter((plugin) => !plugin.key.startsWith(name))
|
|
34276
34319
|
});
|
|
34277
34320
|
this.view.updateState(state2);
|
|
34321
|
+
return state2;
|
|
34278
34322
|
}
|
|
34279
34323
|
/**
|
|
34280
34324
|
* Creates an extension manager.
|
|
@@ -34290,7 +34334,12 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34290
34334
|
FocusEvents,
|
|
34291
34335
|
Keymap,
|
|
34292
34336
|
Tabindex
|
|
34293
|
-
]
|
|
34337
|
+
].filter((ext) => {
|
|
34338
|
+
if (typeof this.options.enableCoreExtensions === "object") {
|
|
34339
|
+
return this.options.enableCoreExtensions[ext.name] !== false;
|
|
34340
|
+
}
|
|
34341
|
+
return true;
|
|
34342
|
+
}) : [];
|
|
34294
34343
|
const allExtensions = [...coreExtensions, ...this.options.extensions].filter((extension) => {
|
|
34295
34344
|
return ["extension", "node", "mark"].includes(extension === null || extension === void 0 ? void 0 : extension.type);
|
|
34296
34345
|
});
|
|
@@ -42801,15 +42850,21 @@ class Editor extends Editor$1 {
|
|
|
42801
42850
|
* Register a ProseMirror plugin.
|
|
42802
42851
|
*/
|
|
42803
42852
|
registerPlugin(plugin, handlePlugins) {
|
|
42804
|
-
super.registerPlugin(plugin, handlePlugins);
|
|
42805
|
-
this.reactiveState
|
|
42853
|
+
const nextState = super.registerPlugin(plugin, handlePlugins);
|
|
42854
|
+
if (this.reactiveState) {
|
|
42855
|
+
this.reactiveState.value = nextState;
|
|
42856
|
+
}
|
|
42857
|
+
return nextState;
|
|
42806
42858
|
}
|
|
42807
42859
|
/**
|
|
42808
42860
|
* Unregister a ProseMirror plugin.
|
|
42809
42861
|
*/
|
|
42810
42862
|
unregisterPlugin(nameOrPluginKey) {
|
|
42811
|
-
super.unregisterPlugin(nameOrPluginKey);
|
|
42812
|
-
this.reactiveState
|
|
42863
|
+
const nextState = super.unregisterPlugin(nameOrPluginKey);
|
|
42864
|
+
if (this.reactiveState && nextState) {
|
|
42865
|
+
this.reactiveState.value = nextState;
|
|
42866
|
+
}
|
|
42867
|
+
return nextState;
|
|
42813
42868
|
}
|
|
42814
42869
|
}
|
|
42815
42870
|
const EditorContent = defineComponent({
|
|
@@ -42964,12 +43019,12 @@ defineComponent({
|
|
|
42964
43019
|
}, (_b = (_a2 = this.$slots).default) === null || _b === void 0 ? void 0 : _b.call(_a2));
|
|
42965
43020
|
}
|
|
42966
43021
|
});
|
|
42967
|
-
const _hoisted_1$
|
|
42968
|
-
const _hoisted_2$
|
|
43022
|
+
const _hoisted_1$p = { class: "RichText" };
|
|
43023
|
+
const _hoisted_2$f = {
|
|
42969
43024
|
key: 0,
|
|
42970
43025
|
class: "RichText-tools"
|
|
42971
43026
|
};
|
|
42972
|
-
const _sfc_main$
|
|
43027
|
+
const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
42973
43028
|
__name: "RichText",
|
|
42974
43029
|
props: {
|
|
42975
43030
|
modelValue: {}
|
|
@@ -43194,8 +43249,8 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
43194
43249
|
});
|
|
43195
43250
|
return (_ctx, _cache) => {
|
|
43196
43251
|
const _directive_tooltip = resolveDirective("tooltip");
|
|
43197
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
43198
|
-
unref(editor) ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
43252
|
+
return openBlock(), createElementBlock("div", _hoisted_1$p, [
|
|
43253
|
+
unref(editor) ? (openBlock(), createElementBlock("div", _hoisted_2$f, [
|
|
43199
43254
|
(openBlock(), createElementBlock(Fragment$1, null, renderList(config, (item) => {
|
|
43200
43255
|
var _a2;
|
|
43201
43256
|
return withDirectives(createVNode(unref(Btn), {
|
|
@@ -43388,17 +43443,17 @@ function createTable() {
|
|
|
43388
43443
|
}
|
|
43389
43444
|
}
|
|
43390
43445
|
}
|
|
43391
|
-
const _hoisted_1$
|
|
43392
|
-
const _hoisted_2$
|
|
43393
|
-
const _hoisted_3$
|
|
43394
|
-
const _hoisted_4$
|
|
43446
|
+
const _hoisted_1$o = { class: "flex gap-05" };
|
|
43447
|
+
const _hoisted_2$e = ["disabled"];
|
|
43448
|
+
const _hoisted_3$c = { key: 1 };
|
|
43449
|
+
const _hoisted_4$8 = {
|
|
43395
43450
|
key: 2,
|
|
43396
43451
|
class: "ms-auto ps-05 me-05"
|
|
43397
43452
|
};
|
|
43398
|
-
const _hoisted_5$
|
|
43399
|
-
const _hoisted_6$
|
|
43400
|
-
const _hoisted_7$
|
|
43401
|
-
const _sfc_main$
|
|
43453
|
+
const _hoisted_5$7 = ["value"];
|
|
43454
|
+
const _hoisted_6$6 = ["aria-selected", "onClick", "onKeydown"];
|
|
43455
|
+
const _hoisted_7$3 = { class: "block" };
|
|
43456
|
+
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
43402
43457
|
__name: "SelectInput",
|
|
43403
43458
|
props: {
|
|
43404
43459
|
options: {},
|
|
@@ -43537,7 +43592,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43537
43592
|
}
|
|
43538
43593
|
});
|
|
43539
43594
|
return (_ctx, _cache) => {
|
|
43540
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
43595
|
+
return openBlock(), createBlock(unref(_sfc_main$K), {
|
|
43541
43596
|
ref_key: "dropdown",
|
|
43542
43597
|
ref: dropdown,
|
|
43543
43598
|
placement: "bottom-start",
|
|
@@ -43547,7 +43602,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43547
43602
|
trigger: withCtx(() => [
|
|
43548
43603
|
createElementVNode("label", null, [
|
|
43549
43604
|
createTextVNode(toDisplayString(_ctx.label) + " ", 1),
|
|
43550
|
-
createElementVNode("div", _hoisted_1$
|
|
43605
|
+
createElementVNode("div", _hoisted_1$o, [
|
|
43551
43606
|
createElementVNode("button", {
|
|
43552
43607
|
disabled: _ctx.disabled,
|
|
43553
43608
|
type: "button",
|
|
@@ -43555,12 +43610,12 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43555
43610
|
onKeydown: openOptions,
|
|
43556
43611
|
onClick: _cache[1] || (_cache[1] = ($event) => updateOpen(true))
|
|
43557
43612
|
}, [
|
|
43558
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
43613
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
43559
43614
|
key: 0,
|
|
43560
43615
|
icon: _ctx.icon
|
|
43561
43616
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
43562
|
-
!_ctx.hideLabel ? (openBlock(), createElementBlock("p", _hoisted_3$
|
|
43563
|
-
_ctx.clearable && selectedItemCount.value > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
43617
|
+
!_ctx.hideLabel ? (openBlock(), createElementBlock("p", _hoisted_3$c, toDisplayString(selectedLabel.value), 1)) : createCommentVNode("", true),
|
|
43618
|
+
_ctx.clearable && selectedItemCount.value > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$8, [
|
|
43564
43619
|
createVNode(unref(Btn), {
|
|
43565
43620
|
flat: "",
|
|
43566
43621
|
thin: "",
|
|
@@ -43572,11 +43627,11 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43572
43627
|
})
|
|
43573
43628
|
})
|
|
43574
43629
|
])) : createCommentVNode("", true),
|
|
43575
|
-
!_ctx.disabled ? (openBlock(), createBlock(unref(_sfc_main$
|
|
43630
|
+
!_ctx.disabled ? (openBlock(), createBlock(unref(_sfc_main$c), mergeProps({
|
|
43576
43631
|
key: 3,
|
|
43577
43632
|
thin: ""
|
|
43578
43633
|
}, { icon: unref(open) ? "unfold_less" : "unfold_more" }), null, 16)) : createCommentVNode("", true)
|
|
43579
|
-
], 42, _hoisted_2$
|
|
43634
|
+
], 42, _hoisted_2$e),
|
|
43580
43635
|
_ctx.required ? (openBlock(), createElementBlock("input", {
|
|
43581
43636
|
key: 0,
|
|
43582
43637
|
tabindex: "-1",
|
|
@@ -43584,12 +43639,12 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43584
43639
|
value: unref(selectedItems),
|
|
43585
43640
|
required: "",
|
|
43586
43641
|
onInput: _cache[2] || (_cache[2] = ($event) => updateOpen(true))
|
|
43587
|
-
}, null, 40, _hoisted_5$
|
|
43642
|
+
}, null, 40, _hoisted_5$7)) : createCommentVNode("", true)
|
|
43588
43643
|
])
|
|
43589
43644
|
])
|
|
43590
43645
|
]),
|
|
43591
43646
|
default: withCtx(() => [
|
|
43592
|
-
createVNode(unref(_sfc_main$
|
|
43647
|
+
createVNode(unref(_sfc_main$O), {
|
|
43593
43648
|
class: "p-05",
|
|
43594
43649
|
style: normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
43595
43650
|
}, {
|
|
@@ -43618,20 +43673,20 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43618
43673
|
onKeydown: withKeys(($event) => select2(option2), ["enter"])
|
|
43619
43674
|
}, [
|
|
43620
43675
|
_ctx.multiselect ? (openBlock(), createElementBlock(Fragment$1, { key: 0 }, [
|
|
43621
|
-
isSelected(option2) ? (openBlock(), createBlock(unref(_sfc_main$
|
|
43676
|
+
isSelected(option2) ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
43622
43677
|
key: 0,
|
|
43623
43678
|
size: 1.1,
|
|
43624
43679
|
icon: "select_check_box"
|
|
43625
43680
|
})) : createCommentVNode("", true),
|
|
43626
|
-
!isSelected(option2) ? (openBlock(), createBlock(unref(_sfc_main$
|
|
43681
|
+
!isSelected(option2) ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
43627
43682
|
key: 1,
|
|
43628
43683
|
class: "opacity-3",
|
|
43629
43684
|
icon: "check_box_outline_blank",
|
|
43630
43685
|
size: 1.1
|
|
43631
43686
|
})) : createCommentVNode("", true)
|
|
43632
43687
|
], 64)) : createCommentVNode("", true),
|
|
43633
|
-
createElementVNode("span", _hoisted_7$
|
|
43634
|
-
], 42, _hoisted_6$
|
|
43688
|
+
createElementVNode("span", _hoisted_7$3, toDisplayString(getLabel(option2)), 1)
|
|
43689
|
+
], 42, _hoisted_6$6);
|
|
43635
43690
|
}), 128))
|
|
43636
43691
|
], 2),
|
|
43637
43692
|
renderSlot(_ctx.$slots, "last", {}, void 0, true)
|
|
@@ -43644,12 +43699,12 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
43644
43699
|
};
|
|
43645
43700
|
}
|
|
43646
43701
|
});
|
|
43647
|
-
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
43648
|
-
const _hoisted_1$
|
|
43702
|
+
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-841bf0ec"]]);
|
|
43703
|
+
const _hoisted_1$n = {
|
|
43649
43704
|
class: "toolbar flex gap-025 pb-05 flex-wrap",
|
|
43650
43705
|
role: "toolbar"
|
|
43651
43706
|
};
|
|
43652
|
-
const _sfc_main$
|
|
43707
|
+
const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
43653
43708
|
__name: "Toolbar",
|
|
43654
43709
|
props: {
|
|
43655
43710
|
config: {}
|
|
@@ -43679,7 +43734,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
43679
43734
|
}
|
|
43680
43735
|
return (_ctx, _cache) => {
|
|
43681
43736
|
const _directive_tooltip = resolveDirective("tooltip");
|
|
43682
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
43737
|
+
return openBlock(), createElementBlock("div", _hoisted_1$n, [
|
|
43683
43738
|
createVNode(SelectInput, {
|
|
43684
43739
|
class: "m-0 w150",
|
|
43685
43740
|
options: ["Text", "Heading 1", "Heading 2", "Heading 3", "Heading 4", "Heading 5", "Heading 6", "Blockquote", "Code"],
|
|
@@ -43708,14 +43763,14 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
43708
43763
|
};
|
|
43709
43764
|
}
|
|
43710
43765
|
});
|
|
43711
|
-
const _hoisted_1$
|
|
43712
|
-
const _hoisted_2$
|
|
43713
|
-
const _hoisted_3$
|
|
43714
|
-
const _hoisted_4$
|
|
43766
|
+
const _hoisted_1$m = { class: "rich-text-editor rounded pt-05 px-1 pb-1" };
|
|
43767
|
+
const _hoisted_2$d = { class: "editor-container flex flex-stretch gap-1 m_column" };
|
|
43768
|
+
const _hoisted_3$b = { class: "content-area radius-05 p-1 shadow-light w-100 grid" };
|
|
43769
|
+
const _hoisted_4$7 = {
|
|
43715
43770
|
key: 0,
|
|
43716
43771
|
class: "preview-area w-100 radius-05 p-1"
|
|
43717
43772
|
};
|
|
43718
|
-
const _sfc_main$
|
|
43773
|
+
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
43719
43774
|
__name: "index",
|
|
43720
43775
|
props: {
|
|
43721
43776
|
modelValue: {},
|
|
@@ -43842,13 +43897,13 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
43842
43897
|
}
|
|
43843
43898
|
}
|
|
43844
43899
|
return (_ctx, _cache) => {
|
|
43845
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
43846
|
-
createVNode(_sfc_main$
|
|
43900
|
+
return openBlock(), createElementBlock("div", _hoisted_1$m, [
|
|
43901
|
+
createVNode(_sfc_main$t, {
|
|
43847
43902
|
config: config.value,
|
|
43848
43903
|
onAction: handleToolbarAction
|
|
43849
43904
|
}, null, 8, ["config"]),
|
|
43850
|
-
createElementVNode("div", _hoisted_2$
|
|
43851
|
-
createElementVNode("div", _hoisted_3$
|
|
43905
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
43906
|
+
createElementVNode("div", _hoisted_3$b, [
|
|
43852
43907
|
unref(isCodeView) ? withDirectives((openBlock(), createElementBlock("textarea", {
|
|
43853
43908
|
key: 0,
|
|
43854
43909
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(contentHtml) ? contentHtml.value = $event : contentHtml = $event),
|
|
@@ -43868,13 +43923,13 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
43868
43923
|
onKeydown: handleKeyDown2
|
|
43869
43924
|
}, null, 544))
|
|
43870
43925
|
]),
|
|
43871
|
-
unref(isSplitView) ? (openBlock(), createElementBlock("code", _hoisted_4$
|
|
43926
|
+
unref(isSplitView) ? (openBlock(), createElementBlock("code", _hoisted_4$7, toDisplayString(unref(contentHtml)), 1)) : createCommentVNode("", true)
|
|
43872
43927
|
])
|
|
43873
43928
|
]);
|
|
43874
43929
|
};
|
|
43875
43930
|
}
|
|
43876
43931
|
});
|
|
43877
|
-
const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
43932
|
+
const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-9c94183b"]]);
|
|
43878
43933
|
/*!
|
|
43879
43934
|
* Signature Pad v5.0.3 | https://github.com/szimek/signature_pad
|
|
43880
43935
|
* (c) 2024 Szymon Nowak | Released under the MIT license
|
|
@@ -44468,8 +44523,8 @@ class SignaturePad extends SignatureEventTarget {
|
|
|
44468
44523
|
return svg.outerHTML;
|
|
44469
44524
|
}
|
|
44470
44525
|
}
|
|
44471
|
-
const _hoisted_1$
|
|
44472
|
-
const _sfc_main$
|
|
44526
|
+
const _hoisted_1$l = ["disabled"];
|
|
44527
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
44473
44528
|
__name: "SignaturePad",
|
|
44474
44529
|
props: {
|
|
44475
44530
|
sigOption: {},
|
|
@@ -44601,7 +44656,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
44601
44656
|
ref: vCanvas,
|
|
44602
44657
|
class: "canvas",
|
|
44603
44658
|
disabled: _ctx.disabled
|
|
44604
|
-
}, null, 8, _hoisted_1$
|
|
44659
|
+
}, null, 8, _hoisted_1$l)
|
|
44605
44660
|
], 34);
|
|
44606
44661
|
};
|
|
44607
44662
|
}
|
|
@@ -47085,13 +47140,13 @@ const VueDraggableNext = defineComponent({
|
|
|
47085
47140
|
}
|
|
47086
47141
|
}
|
|
47087
47142
|
});
|
|
47088
|
-
const _hoisted_1$
|
|
47089
|
-
const _hoisted_2$
|
|
47090
|
-
const _hoisted_3$
|
|
47091
|
-
const _hoisted_4$
|
|
47092
|
-
const _hoisted_5$
|
|
47093
|
-
const _hoisted_6$
|
|
47094
|
-
const _sfc_main$
|
|
47143
|
+
const _hoisted_1$k = ["title"];
|
|
47144
|
+
const _hoisted_2$c = { class: "bagel-input" };
|
|
47145
|
+
const _hoisted_3$a = { class: "table-side-scroll" };
|
|
47146
|
+
const _hoisted_4$6 = { class: "table-header" };
|
|
47147
|
+
const _hoisted_5$6 = { class: "table-reorder" };
|
|
47148
|
+
const _hoisted_6$5 = { class: "table-action" };
|
|
47149
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
47095
47150
|
__name: "TableField",
|
|
47096
47151
|
props: {
|
|
47097
47152
|
description: { default: "" },
|
|
@@ -47156,11 +47211,11 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
47156
47211
|
class: "table-field-wrap",
|
|
47157
47212
|
title: _ctx.description
|
|
47158
47213
|
}, [
|
|
47159
|
-
createElementVNode("div", _hoisted_2$
|
|
47214
|
+
createElementVNode("div", _hoisted_2$c, [
|
|
47160
47215
|
createElementVNode("label", null, toDisplayString((_a2 = unref(fieldMeta)) == null ? void 0 : _a2.label), 1)
|
|
47161
47216
|
]),
|
|
47162
|
-
createElementVNode("div", _hoisted_3$
|
|
47163
|
-
createElementVNode("div", _hoisted_4$
|
|
47217
|
+
createElementVNode("div", _hoisted_3$a, [
|
|
47218
|
+
createElementVNode("div", _hoisted_4$6, [
|
|
47164
47219
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList((_b = unref(entityMeta)) == null ? void 0 : _b.fields, (field) => {
|
|
47165
47220
|
return openBlock(), createElementBlock("div", {
|
|
47166
47221
|
key: `${field.fieldname}header`,
|
|
@@ -47187,8 +47242,8 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
47187
47242
|
key: row.id,
|
|
47188
47243
|
class: "flex table-row"
|
|
47189
47244
|
}, [
|
|
47190
|
-
createElementVNode("div", _hoisted_5$
|
|
47191
|
-
createVNode(unref(_sfc_main$
|
|
47245
|
+
createElementVNode("div", _hoisted_5$6, [
|
|
47246
|
+
createVNode(unref(_sfc_main$c), { icon: "more_vert" })
|
|
47192
47247
|
]),
|
|
47193
47248
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList((_a3 = unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
|
|
47194
47249
|
return openBlock(), createElementBlock("div", {
|
|
@@ -47204,8 +47259,8 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
47204
47259
|
}, null, 8, ["field-meta", "bagel-app", "model-value", "onUpdate:modelValue"])
|
|
47205
47260
|
], 2);
|
|
47206
47261
|
}), 128)),
|
|
47207
|
-
createElementVNode("div", _hoisted_6$
|
|
47208
|
-
createVNode(unref(_sfc_main$
|
|
47262
|
+
createElementVNode("div", _hoisted_6$5, [
|
|
47263
|
+
createVNode(unref(_sfc_main$c), {
|
|
47209
47264
|
icon: "delete",
|
|
47210
47265
|
onClick: ($event) => removeRow2(index2)
|
|
47211
47266
|
}, null, 8, ["onClick"])
|
|
@@ -47231,11 +47286,11 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
47231
47286
|
])),
|
|
47232
47287
|
_: 1
|
|
47233
47288
|
})
|
|
47234
|
-
], 8, _hoisted_1$
|
|
47289
|
+
], 8, _hoisted_1$k);
|
|
47235
47290
|
};
|
|
47236
47291
|
}
|
|
47237
47292
|
});
|
|
47238
|
-
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
47293
|
+
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-24816da2"]]);
|
|
47239
47294
|
function bind(fn3, thisArg) {
|
|
47240
47295
|
return function wrap2() {
|
|
47241
47296
|
return fn3.apply(thisArg, arguments);
|
|
@@ -49616,7 +49671,7 @@ axios$1.formToJSON = (thing) => formDataToJSON(utils$1.isHTMLForm(thing) ? new F
|
|
|
49616
49671
|
axios$1.getAdapter = adapters.getAdapter;
|
|
49617
49672
|
axios$1.HttpStatusCode = HttpStatusCode;
|
|
49618
49673
|
axios$1.default = axios$1;
|
|
49619
|
-
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", "[24-689]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-689]"]]]], "BL": ["590", "00", "590\\d{6}|(?: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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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-8]\\d|90)\\d{8}|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])|90[25])[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(?:00|2[125-9]|33|44|66|77|88)|622)[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])", "(?:60\\d\\d|9101)\\d{6}|(?:1\\d|3)\\d{9}", [10, 11], [["(\\d{3})(\\d{7})", "$1 $2", ["6"], "($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", ["(?:1[49]|[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{6}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[56]|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{6}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[569]"], "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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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-4]|5[01]|8[0-3]))\\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{6}|(?: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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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", ["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]"], "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{6}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[569]"], "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|80\\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", "(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2689]"], "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]))\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-5]|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]|77|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-39]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-5]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1", 1]], "0"], "SZ": ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], "TA": ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], "TC": ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], "TD": ["235", "00|16", "(?:22|[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[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|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[013569]|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[1247]|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-79]\\d|88)\\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)\\d{4}|8\\d{5}(?:\\d{3})?", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[478]"]], ["(\\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", "(?: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])\\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|63|[79]\\d)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[79]"], "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}|[35-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[35-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]], "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}"]]] } };
|
|
49674
|
+
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", "[24-689]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-689]"]]]], "BL": ["590", "00", "590\\d{6}|(?: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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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-8]\\d|90)\\d{8}|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])|90[25])[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(?:00|2[125-9]|33|44|66|77|88)|622)[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])", "60\\d{8}|(?:1\\d|[39])\\d{9}", [10, 11], [["(\\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", ["(?:1[49]|[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{6}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[56]|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{6}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[569]"], "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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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-4]|5[01]|8[0-3]))\\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{6}|(?: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))\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\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", ["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]"], "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{6}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[569]"], "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|80\\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", "(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2689]"], "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]))\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-5]|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]|77|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-39]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-5]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1", 1]], "0"], "SZ": ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], "TA": ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], "TC": ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], "TD": ["235", "00|16", "(?:22|[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[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|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[013569]|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[1247]|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-79]\\d|88)\\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)\\d{4}|8\\d{5}(?:\\d{3})?", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[478]"]], ["(\\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", "(?: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])\\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|63|[79]\\d)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[79]"], "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}|[35-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[35-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]], "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}"]]] } };
|
|
49620
49675
|
function withMetadataArgument(func, _arguments) {
|
|
49621
49676
|
var args = Array.prototype.slice.call(_arguments);
|
|
49622
49677
|
args.push(metadata);
|
|
@@ -51702,13 +51757,13 @@ function parsePhoneNumber$1() {
|
|
|
51702
51757
|
function parsePhoneNumber() {
|
|
51703
51758
|
return withMetadataArgument(parsePhoneNumber$1, arguments);
|
|
51704
51759
|
}
|
|
51705
|
-
const _hoisted_1$
|
|
51706
|
-
const _hoisted_2$
|
|
51707
|
-
const _hoisted_3$
|
|
51708
|
-
const _hoisted_4$
|
|
51709
|
-
const _hoisted_5$
|
|
51710
|
-
const _hoisted_6$
|
|
51711
|
-
const _sfc_main$
|
|
51760
|
+
const _hoisted_1$j = ["aria-expanded"];
|
|
51761
|
+
const _hoisted_2$b = { class: "p-075 tel-countryp-dropdown" };
|
|
51762
|
+
const _hoisted_3$9 = ["aria-selected", "onClick", "onMousemove"];
|
|
51763
|
+
const _hoisted_4$5 = { class: "tel-country" };
|
|
51764
|
+
const _hoisted_5$5 = { key: 1 };
|
|
51765
|
+
const _hoisted_6$4 = ["id", "required", "placeholder", "disabled", "autocomplete", "pattern", "minlength", "maxlength", "name", "readonly", "tabindex", "aria-describedby"];
|
|
51766
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
51712
51767
|
__name: "TelInput",
|
|
51713
51768
|
props: /* @__PURE__ */ mergeModels({
|
|
51714
51769
|
label: {},
|
|
@@ -51969,7 +52024,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
51969
52024
|
withKeys(reset, ["tab"])
|
|
51970
52025
|
]
|
|
51971
52026
|
}, [
|
|
51972
|
-
!computedDropDownOptions.value.hide ? (openBlock(), createBlock(unref(_sfc_main$
|
|
52027
|
+
!computedDropDownOptions.value.hide ? (openBlock(), createBlock(unref(_sfc_main$K), {
|
|
51973
52028
|
key: 0,
|
|
51974
52029
|
ref_key: "phoneDropdown",
|
|
51975
52030
|
ref: phoneDropdown,
|
|
@@ -51982,7 +52037,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
51982
52037
|
class: "flex gap-05",
|
|
51983
52038
|
onClick: _cache[0] || (_cache[0] = ($event) => isRef(open) ? open.value = true : open = true)
|
|
51984
52039
|
}, [
|
|
51985
|
-
createVNode(unref(_sfc_main$
|
|
52040
|
+
createVNode(unref(_sfc_main$c), {
|
|
51986
52041
|
icon: unref(open) ? "collapse_all" : "expand_all"
|
|
51987
52042
|
}, null, 8, ["icon"]),
|
|
51988
52043
|
computedDropDownOptions.value.showFlags && unref(activeCountryCode) ? (openBlock(), createBlock(unref(Flag), {
|
|
@@ -51992,7 +52047,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
51992
52047
|
])
|
|
51993
52048
|
]),
|
|
51994
52049
|
default: withCtx(() => [
|
|
51995
|
-
createElementVNode("div", _hoisted_2$
|
|
52050
|
+
createElementVNode("div", _hoisted_2$b, [
|
|
51996
52051
|
_ctx.searchable ? (openBlock(), createBlock(unref(TextInput), {
|
|
51997
52052
|
key: 0,
|
|
51998
52053
|
modelValue: searchQuery.value,
|
|
@@ -52020,9 +52075,9 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
52020
52075
|
key: 0,
|
|
52021
52076
|
country: pb.iso2
|
|
52022
52077
|
}, null, 8, ["country"])) : createCommentVNode("", true),
|
|
52023
|
-
createElementVNode("p", _hoisted_4$
|
|
52024
|
-
computedDropDownOptions.value.showDialCodeInList ? (openBlock(), createElementBlock("span", _hoisted_5$
|
|
52025
|
-
], 40, _hoisted_3$
|
|
52078
|
+
createElementVNode("p", _hoisted_4$5, toDisplayString(pb.name), 1),
|
|
52079
|
+
computedDropDownOptions.value.showDialCodeInList ? (openBlock(), createElementBlock("span", _hoisted_5$5, " +" + toDisplayString(pb.dialCode), 1)) : createCommentVNode("", true)
|
|
52080
|
+
], 40, _hoisted_3$9);
|
|
52026
52081
|
}), 128))
|
|
52027
52082
|
], 2)
|
|
52028
52083
|
])
|
|
@@ -52053,22 +52108,22 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
52053
52108
|
withKeys(onSpace, ["space"])
|
|
52054
52109
|
],
|
|
52055
52110
|
onKeydown: handleInput
|
|
52056
|
-
}, null, 44, _hoisted_6$
|
|
52111
|
+
}, null, 44, _hoisted_6$4), [
|
|
52057
52112
|
[vModelText, phone.value]
|
|
52058
52113
|
])
|
|
52059
|
-
], 40, _hoisted_1$
|
|
52114
|
+
], 40, _hoisted_1$j)
|
|
52060
52115
|
])
|
|
52061
52116
|
], 2);
|
|
52062
52117
|
};
|
|
52063
52118
|
}
|
|
52064
52119
|
});
|
|
52065
|
-
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52066
|
-
const _hoisted_1$
|
|
52067
|
-
const _hoisted_2$
|
|
52068
|
-
const _hoisted_3$
|
|
52069
|
-
const _hoisted_4$
|
|
52070
|
-
const _hoisted_5$
|
|
52071
|
-
const _sfc_main$
|
|
52120
|
+
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-41e27ddf"]]);
|
|
52121
|
+
const _hoisted_1$i = ["title"];
|
|
52122
|
+
const _hoisted_2$a = ["for"];
|
|
52123
|
+
const _hoisted_3$8 = ["id", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
|
|
52124
|
+
const _hoisted_4$4 = ["id", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
|
|
52125
|
+
const _hoisted_5$4 = { key: 2 };
|
|
52126
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
52072
52127
|
__name: "TextInput",
|
|
52073
52128
|
props: {
|
|
52074
52129
|
id: {},
|
|
@@ -52161,7 +52216,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
52161
52216
|
onFocusout: _cache[1] || (_cache[1] = //@ts-ignore
|
|
52162
52217
|
(...args) => _ctx.onFocusout && _ctx.onFocusout(...args)),
|
|
52163
52218
|
onInput: updateInputVal
|
|
52164
|
-
}), null, 16, _hoisted_3$
|
|
52219
|
+
}), null, 16, _hoisted_3$8)), [
|
|
52165
52220
|
[
|
|
52166
52221
|
vModelDynamic,
|
|
52167
52222
|
unref(inputVal),
|
|
@@ -52185,29 +52240,29 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
52185
52240
|
onInput: updateInputVal,
|
|
52186
52241
|
onFocusout: _cache[3] || (_cache[3] = //@ts-ignore
|
|
52187
52242
|
(...args) => _ctx.onFocusout && _ctx.onFocusout(...args))
|
|
52188
|
-
}), null, 16, _hoisted_4$
|
|
52243
|
+
}), null, 16, _hoisted_4$4)), [
|
|
52189
52244
|
[vModelText, unref(inputVal)]
|
|
52190
52245
|
]),
|
|
52191
|
-
_ctx.helptext ? (openBlock(), createElementBlock("p", _hoisted_5$
|
|
52192
|
-
], 8, _hoisted_2$
|
|
52193
|
-
_ctx.iconStart ? (openBlock(), createBlock(unref(_sfc_main$
|
|
52246
|
+
_ctx.helptext ? (openBlock(), createElementBlock("p", _hoisted_5$4, toDisplayString(_ctx.helptext), 1)) : createCommentVNode("", true)
|
|
52247
|
+
], 8, _hoisted_2$a),
|
|
52248
|
+
_ctx.iconStart ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
52194
52249
|
key: 0,
|
|
52195
52250
|
class: "iconStart",
|
|
52196
52251
|
icon: _ctx.iconStart
|
|
52197
52252
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
52198
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
52253
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
52199
52254
|
key: 1,
|
|
52200
52255
|
icon: _ctx.icon
|
|
52201
52256
|
}, null, 8, ["icon"])) : createCommentVNode("", true)
|
|
52202
|
-
], 10, _hoisted_1$
|
|
52257
|
+
], 10, _hoisted_1$i);
|
|
52203
52258
|
};
|
|
52204
52259
|
}
|
|
52205
52260
|
});
|
|
52206
|
-
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52207
|
-
const _hoisted_1$
|
|
52208
|
-
const _hoisted_2$
|
|
52209
|
-
const _hoisted_3$
|
|
52210
|
-
const _sfc_main$
|
|
52261
|
+
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-739e3acb"]]);
|
|
52262
|
+
const _hoisted_1$h = ["title"];
|
|
52263
|
+
const _hoisted_2$9 = ["id", "required"];
|
|
52264
|
+
const _hoisted_3$7 = ["for"];
|
|
52265
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
52211
52266
|
__name: "ToggleInput",
|
|
52212
52267
|
props: /* @__PURE__ */ mergeModels({
|
|
52213
52268
|
label: {},
|
|
@@ -52243,28 +52298,28 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
52243
52298
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => checked.value = $event),
|
|
52244
52299
|
type: "checkbox",
|
|
52245
52300
|
required: _ctx.required
|
|
52246
|
-
}, null, 8, _hoisted_2$
|
|
52301
|
+
}, null, 8, _hoisted_2$9), [
|
|
52247
52302
|
[vModelCheckbox, checked.value]
|
|
52248
52303
|
]),
|
|
52249
52304
|
createElementVNode("label", { for: inputId.value }, [
|
|
52250
52305
|
renderSlot(_ctx.$slots, "label", {}, () => [
|
|
52251
52306
|
createTextVNode(toDisplayString(_ctx.label), 1)
|
|
52252
52307
|
], true)
|
|
52253
|
-
], 8, _hoisted_3$
|
|
52254
|
-
], 10, _hoisted_1$
|
|
52308
|
+
], 8, _hoisted_3$7)
|
|
52309
|
+
], 10, _hoisted_1$h);
|
|
52255
52310
|
};
|
|
52256
52311
|
}
|
|
52257
52312
|
});
|
|
52258
|
-
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52259
|
-
const _hoisted_1$
|
|
52260
|
-
const _sfc_main$
|
|
52313
|
+
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-683b2f6d"]]);
|
|
52314
|
+
const _hoisted_1$g = { class: "m-0 pb-025 txt14 line-height-1" };
|
|
52315
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
52261
52316
|
__name: "BottomMenu",
|
|
52262
52317
|
props: {
|
|
52263
52318
|
navLinks: {}
|
|
52264
52319
|
},
|
|
52265
52320
|
setup(__props) {
|
|
52266
52321
|
return (_ctx, _cache) => {
|
|
52267
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
52322
|
+
return openBlock(), createBlock(unref(_sfc_main$O), { class: "hide m_grid gap-05 bgl_bottombar px-1 txt14 justify-content-start align-items-center overflow-x" }, {
|
|
52268
52323
|
default: withCtx(() => [
|
|
52269
52324
|
renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
52270
52325
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.navLinks, (nav2, i2) => {
|
|
@@ -52275,12 +52330,12 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
52275
52330
|
onClick: nav2.onClick
|
|
52276
52331
|
}, {
|
|
52277
52332
|
default: withCtx(() => [
|
|
52278
|
-
createVNode(unref(_sfc_main$
|
|
52333
|
+
createVNode(unref(_sfc_main$c), {
|
|
52279
52334
|
icon: nav2.icon,
|
|
52280
52335
|
size: 1.4,
|
|
52281
52336
|
class: "m-0"
|
|
52282
52337
|
}, null, 8, ["icon"]),
|
|
52283
|
-
createElementVNode("p", _hoisted_1$
|
|
52338
|
+
createElementVNode("p", _hoisted_1$g, toDisplayString(nav2.label), 1)
|
|
52284
52339
|
]),
|
|
52285
52340
|
_: 2
|
|
52286
52341
|
}, 1032, ["to", "onClick"]);
|
|
@@ -52291,8 +52346,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
52291
52346
|
};
|
|
52292
52347
|
}
|
|
52293
52348
|
});
|
|
52294
|
-
const BottomMenu = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52295
|
-
const _sfc_main$
|
|
52349
|
+
const BottomMenu = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-564c7855"]]);
|
|
52350
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
52296
52351
|
__name: "Layout",
|
|
52297
52352
|
props: {
|
|
52298
52353
|
gap: { default: 1 },
|
|
@@ -52333,9 +52388,9 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
52333
52388
|
};
|
|
52334
52389
|
}
|
|
52335
52390
|
});
|
|
52336
|
-
const Layout = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52337
|
-
const _hoisted_1$
|
|
52338
|
-
const _sfc_main$
|
|
52391
|
+
const Layout = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-f1781965"]]);
|
|
52392
|
+
const _hoisted_1$f = { key: 0 };
|
|
52393
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
52339
52394
|
__name: "SidebarMenu",
|
|
52340
52395
|
props: {
|
|
52341
52396
|
navLinks: {},
|
|
@@ -52364,7 +52419,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
52364
52419
|
icon: "keyboard_arrow_right",
|
|
52365
52420
|
onClick: toggleMenu
|
|
52366
52421
|
}),
|
|
52367
|
-
createVNode(unref(_sfc_main$
|
|
52422
|
+
createVNode(unref(_sfc_main$O), { class: "py-1 px-05 h-100 flex column gap-05 rounded relative bg-primary font-light overflow-y" }, {
|
|
52368
52423
|
default: withCtx(() => [
|
|
52369
52424
|
!unref(isOpen) || !unref(slots)["brand-open"] ? renderSlot(_ctx.$slots, "brand", { key: 0 }, void 0, true) : createCommentVNode("", true),
|
|
52370
52425
|
unref(isOpen) ? renderSlot(_ctx.$slots, "brand-open", { key: 1 }, void 0, true) : createCommentVNode("", true),
|
|
@@ -52376,13 +52431,13 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
52376
52431
|
class: "nav-button px-075 me-auto w-100"
|
|
52377
52432
|
}, {
|
|
52378
52433
|
default: withCtx(() => [
|
|
52379
|
-
createVNode(unref(_sfc_main$
|
|
52434
|
+
createVNode(unref(_sfc_main$c), {
|
|
52380
52435
|
icon: nav2.icon,
|
|
52381
52436
|
size: 1.4
|
|
52382
52437
|
}, null, 8, ["icon"]),
|
|
52383
52438
|
createVNode(Transition, { name: "showP" }, {
|
|
52384
52439
|
default: withCtx(() => [
|
|
52385
|
-
_ctx.open ? (openBlock(), createElementBlock("p", _hoisted_1$
|
|
52440
|
+
_ctx.open ? (openBlock(), createElementBlock("p", _hoisted_1$f, toDisplayString(nav2.label), 1)) : createCommentVNode("", true)
|
|
52386
52441
|
]),
|
|
52387
52442
|
_: 2
|
|
52388
52443
|
}, 1024)
|
|
@@ -52410,11 +52465,11 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
52410
52465
|
};
|
|
52411
52466
|
}
|
|
52412
52467
|
});
|
|
52413
|
-
const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52414
|
-
const _hoisted_1$
|
|
52415
|
-
const _hoisted_2$
|
|
52416
|
-
const _hoisted_3$
|
|
52417
|
-
const _sfc_main$
|
|
52468
|
+
const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-3ee4f3f7"]]);
|
|
52469
|
+
const _hoisted_1$e = { class: "bgl_card tabs-top" };
|
|
52470
|
+
const _hoisted_2$8 = { class: "tabs grid auto-flow-columns fit-content" };
|
|
52471
|
+
const _hoisted_3$6 = ["onClick"];
|
|
52472
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
52418
52473
|
__name: "TabbedLayout",
|
|
52419
52474
|
props: {
|
|
52420
52475
|
title: {},
|
|
@@ -52447,9 +52502,9 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
52447
52502
|
return openBlock(), createElementBlock("div", {
|
|
52448
52503
|
class: normalizeClass(["h-100 grid list-view gap-1", { "side-tabs": _ctx.sideTabs }])
|
|
52449
52504
|
}, [
|
|
52450
|
-
createElementVNode("div", _hoisted_1$
|
|
52505
|
+
createElementVNode("div", _hoisted_1$e, [
|
|
52451
52506
|
renderSlot(_ctx.$slots, "top-section", {}, void 0, true),
|
|
52452
|
-
createElementVNode("div", _hoisted_2$
|
|
52507
|
+
createElementVNode("div", _hoisted_2$8, [
|
|
52453
52508
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.tabs, (tab) => {
|
|
52454
52509
|
var _a2;
|
|
52455
52510
|
return openBlock(), createElementBlock("div", {
|
|
@@ -52458,7 +52513,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
52458
52513
|
active: tab === unref(activeTab) || tab === ((_a2 = _ctx.router) == null ? void 0 : _a2.currentRoute.value.path.split("/").slice(-1)[0])
|
|
52459
52514
|
}, "tab"]),
|
|
52460
52515
|
onClick: ($event) => changeTab(tab)
|
|
52461
|
-
}, toDisplayString(tab), 11, _hoisted_3$
|
|
52516
|
+
}, toDisplayString(tab), 11, _hoisted_3$6);
|
|
52462
52517
|
}), 128))
|
|
52463
52518
|
])
|
|
52464
52519
|
]),
|
|
@@ -52474,7 +52529,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
52474
52529
|
};
|
|
52475
52530
|
}
|
|
52476
52531
|
});
|
|
52477
|
-
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52532
|
+
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-75e0b322"]]);
|
|
52478
52533
|
const state$1 = reactive(/* @__PURE__ */ new Map());
|
|
52479
52534
|
function useTabs(group) {
|
|
52480
52535
|
if (!state$1.has(group)) {
|
|
@@ -52488,8 +52543,8 @@ function useTabs(group) {
|
|
|
52488
52543
|
});
|
|
52489
52544
|
return { currentTab };
|
|
52490
52545
|
}
|
|
52491
|
-
const _hoisted_1$
|
|
52492
|
-
const _sfc_main$
|
|
52546
|
+
const _hoisted_1$d = { key: 0 };
|
|
52547
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
52493
52548
|
__name: "Tabs",
|
|
52494
52549
|
props: {
|
|
52495
52550
|
tabs: {},
|
|
@@ -52531,15 +52586,15 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
52531
52586
|
group: unref(group),
|
|
52532
52587
|
class: "mb-05"
|
|
52533
52588
|
}, null, 8, ["modelValue", "flat", "tabs", "group"]),
|
|
52534
|
-
unref(currentTab) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
52589
|
+
unref(currentTab) ? (openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
52535
52590
|
unref(slots)[unref(currentTab)] ? renderSlot(_ctx.$slots, unref(currentTab), { key: 0 }) : unref(currentTab) ? (openBlock(), createBlock(resolveDynamicComponent(unref(tabComponent)), { key: 1 })) : createCommentVNode("", true)
|
|
52536
52591
|
])) : createCommentVNode("", true)
|
|
52537
52592
|
], 64);
|
|
52538
52593
|
};
|
|
52539
52594
|
}
|
|
52540
52595
|
});
|
|
52541
|
-
const _hoisted_1$
|
|
52542
|
-
const _sfc_main$
|
|
52596
|
+
const _hoisted_1$c = { key: 0 };
|
|
52597
|
+
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
52543
52598
|
__name: "TabsBody",
|
|
52544
52599
|
props: {
|
|
52545
52600
|
group: {}
|
|
@@ -52548,14 +52603,14 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
52548
52603
|
const props2 = __props;
|
|
52549
52604
|
const { currentTab } = useTabs(props2.group);
|
|
52550
52605
|
return (_ctx, _cache) => {
|
|
52551
|
-
return unref(currentTab) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
52606
|
+
return unref(currentTab) ? (openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
52552
52607
|
renderSlot(_ctx.$slots, unref(currentTab))
|
|
52553
52608
|
])) : createCommentVNode("", true);
|
|
52554
52609
|
};
|
|
52555
52610
|
}
|
|
52556
52611
|
});
|
|
52557
|
-
const _hoisted_1$
|
|
52558
|
-
const _sfc_main$
|
|
52612
|
+
const _hoisted_1$b = ["onClick"];
|
|
52613
|
+
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
52559
52614
|
__name: "TabsNav",
|
|
52560
52615
|
props: {
|
|
52561
52616
|
title: {},
|
|
@@ -52629,21 +52684,21 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
52629
52684
|
class: normalizeClass([{ active: isActive2(tab) }, "bgl_tab relative z-1"]),
|
|
52630
52685
|
onClick: ($event) => selectTab(tab)
|
|
52631
52686
|
}, [
|
|
52632
|
-
typeof tab !== "string" && tab.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
52687
|
+
typeof tab !== "string" && tab.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
52633
52688
|
key: 0,
|
|
52634
52689
|
icon: tab.icon
|
|
52635
52690
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
52636
52691
|
createTextVNode(" " + toDisplayString(tabLabel(tab)), 1)
|
|
52637
|
-
], 10, _hoisted_1$
|
|
52692
|
+
], 10, _hoisted_1$b);
|
|
52638
52693
|
}), 128))
|
|
52639
52694
|
], 2);
|
|
52640
52695
|
};
|
|
52641
52696
|
}
|
|
52642
52697
|
});
|
|
52643
|
-
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52644
|
-
const _hoisted_1$
|
|
52645
|
-
const _hoisted_2$
|
|
52646
|
-
const _sfc_main$
|
|
52698
|
+
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-d4d64201"]]);
|
|
52699
|
+
const _hoisted_1$a = { class: "no-margin ellipsis line-height-14 pb-025" };
|
|
52700
|
+
const _hoisted_2$7 = { class: "txt12 no-margin txt-gray ellipsis" };
|
|
52701
|
+
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
52647
52702
|
__name: "ListItem",
|
|
52648
52703
|
props: {
|
|
52649
52704
|
src: {},
|
|
@@ -52670,18 +52725,18 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
52670
52725
|
src: _ctx.src,
|
|
52671
52726
|
size: 40
|
|
52672
52727
|
}, null, 8, ["name", "src"])) : createCommentVNode("", true),
|
|
52673
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
52728
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
52674
52729
|
key: 1,
|
|
52675
52730
|
size: "1.2",
|
|
52676
52731
|
class: "color-primary",
|
|
52677
52732
|
icon: _ctx.icon
|
|
52678
52733
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
52679
52734
|
createElementVNode("div", null, [
|
|
52680
|
-
createElementVNode("p", _hoisted_1$
|
|
52735
|
+
createElementVNode("p", _hoisted_1$a, [
|
|
52681
52736
|
createTextVNode(toDisplayString(_ctx.title) + " ", 1),
|
|
52682
52737
|
renderSlot(_ctx.$slots, "default")
|
|
52683
52738
|
]),
|
|
52684
|
-
createElementVNode("p", _hoisted_2$
|
|
52739
|
+
createElementVNode("p", _hoisted_2$7, [
|
|
52685
52740
|
createTextVNode(toDisplayString(_ctx.subtitle) + " ", 1),
|
|
52686
52741
|
renderSlot(_ctx.$slots, "subtitle")
|
|
52687
52742
|
])
|
|
@@ -52692,25 +52747,25 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
52692
52747
|
};
|
|
52693
52748
|
}
|
|
52694
52749
|
});
|
|
52695
|
-
const _sfc_main$
|
|
52696
|
-
const _hoisted_1$
|
|
52697
|
-
const _hoisted_2$
|
|
52698
|
-
const _hoisted_3$
|
|
52750
|
+
const _sfc_main$e = {};
|
|
52751
|
+
const _hoisted_1$9 = { class: "list-wrap bgl_card thin grid overflow-hidden h-100 pt-0 pb-05 px-0 m_pb-0" };
|
|
52752
|
+
const _hoisted_2$6 = { class: "p-1" };
|
|
52753
|
+
const _hoisted_3$5 = { class: "list-content auto-flow-rows align-items-start overflow-y h-100" };
|
|
52699
52754
|
function _sfc_render$2(_ctx, _cache) {
|
|
52700
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
52701
|
-
createElementVNode("div", _hoisted_2$
|
|
52755
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
52756
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
52702
52757
|
renderSlot(_ctx.$slots, "header")
|
|
52703
52758
|
]),
|
|
52704
|
-
createElementVNode("div", _hoisted_3$
|
|
52759
|
+
createElementVNode("div", _hoisted_3$5, [
|
|
52705
52760
|
renderSlot(_ctx.$slots, "default")
|
|
52706
52761
|
])
|
|
52707
52762
|
]);
|
|
52708
52763
|
}
|
|
52709
|
-
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52710
|
-
const _hoisted_1$
|
|
52764
|
+
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$2]]);
|
|
52765
|
+
const _hoisted_1$8 = ["id"];
|
|
52711
52766
|
const defaultMarkerSVG = '<svg id="eCJDQPwuXje1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 36 36" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" project-id="ac827abc0a8c4922b76bac4df7bd7646" export-id="2cc86932ccbc4825a31fd063b3e75478" cached="false"><style><![CDATA[#eCJDQPwuXje3_ts {animation: eCJDQPwuXje3_ts__ts 3000ms linear infinite normal forwards}@keyframes eCJDQPwuXje3_ts__ts { 0% {transform: translate(18px,18px) scale(1,1)} 3.333333% {transform: translate(18px,18px) scale(1,1);animation-timing-function: cubic-bezier(0.42,0,0.58,1)} 100% {transform: translate(18px,18px) scale(1.8,1.8)}} #eCJDQPwuXje3 {animation: eCJDQPwuXje3_c_o 3000ms linear infinite normal forwards}@keyframes eCJDQPwuXje3_c_o { 0% {opacity: 0} 3.333333% {opacity: 1;animation-timing-function: cubic-bezier(0.42,0,0.58,1)} 100% {opacity: 0}}]]></style><ellipse rx="10.049312" ry="10.049312" transform="translate(18 18)" fill="#2e5bff" stroke-width="0"/><g id="eCJDQPwuXje3_ts" transform="translate(18,18) scale(1,1)"><ellipse id="eCJDQPwuXje3" rx="10.049312" ry="10.049312" transform="translate(0,0)" opacity="0" fill="#2e5bff" stroke-width="0"/></g></svg>';
|
|
52712
52767
|
const leafletScriptUrl = "https://unpkg.com/leaflet@1.9.4/dist/leaflet.js";
|
|
52713
|
-
const _sfc_main$
|
|
52768
|
+
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
52714
52769
|
__name: "MapEmbed",
|
|
52715
52770
|
props: {
|
|
52716
52771
|
center: { default: () => [31.7683, 35.2137] },
|
|
@@ -52781,11 +52836,11 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
52781
52836
|
id: id.value,
|
|
52782
52837
|
class: "leaflet-map",
|
|
52783
52838
|
style: normalizeStyle({ height: `${props2.height || 400}px` })
|
|
52784
|
-
}, null, 12, _hoisted_1$
|
|
52839
|
+
}, null, 12, _hoisted_1$8);
|
|
52785
52840
|
};
|
|
52786
52841
|
}
|
|
52787
52842
|
});
|
|
52788
|
-
const _sfc_main$
|
|
52843
|
+
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
52789
52844
|
__name: "MaterialIcon",
|
|
52790
52845
|
props: {
|
|
52791
52846
|
icon: {},
|
|
@@ -52803,19 +52858,19 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
52803
52858
|
};
|
|
52804
52859
|
}
|
|
52805
52860
|
});
|
|
52806
|
-
const _hoisted_1$
|
|
52861
|
+
const _hoisted_1$7 = {
|
|
52807
52862
|
key: 0,
|
|
52808
52863
|
class: "tool-bar"
|
|
52809
52864
|
};
|
|
52810
|
-
const _hoisted_2$
|
|
52865
|
+
const _hoisted_2$5 = {
|
|
52811
52866
|
key: 1,
|
|
52812
52867
|
class: "sticky bg-popup z-index-999 -mt-1 -ms-1 px-025 h-30px pt-025 modal-no-title"
|
|
52813
52868
|
};
|
|
52814
|
-
const _hoisted_3$
|
|
52869
|
+
const _hoisted_3$4 = {
|
|
52815
52870
|
key: 2,
|
|
52816
52871
|
class: "modal-footer mt-1"
|
|
52817
52872
|
};
|
|
52818
|
-
const _sfc_main$
|
|
52873
|
+
const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
52819
52874
|
__name: "Modal",
|
|
52820
52875
|
props: {
|
|
52821
52876
|
side: { type: Boolean },
|
|
@@ -52871,7 +52926,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
52871
52926
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
52872
52927
|
onKeydown: withKeys(closeModal, ["esc"])
|
|
52873
52928
|
}, [
|
|
52874
|
-
createVNode(unref(_sfc_main$
|
|
52929
|
+
createVNode(unref(_sfc_main$O), {
|
|
52875
52930
|
class: "modal",
|
|
52876
52931
|
style: normalizeStyle({ ...maxWidth.value }),
|
|
52877
52932
|
onClick: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
@@ -52880,7 +52935,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
52880
52935
|
default: withCtx(() => {
|
|
52881
52936
|
var _a2;
|
|
52882
52937
|
return [
|
|
52883
|
-
unref(slots).toolbar || _ctx.title ? (openBlock(), createElementBlock("header", _hoisted_1$
|
|
52938
|
+
unref(slots).toolbar || _ctx.title ? (openBlock(), createElementBlock("header", _hoisted_1$7, [
|
|
52884
52939
|
renderSlot(_ctx.$slots, "toolbar"),
|
|
52885
52940
|
createVNode(unref(Btn), {
|
|
52886
52941
|
style: normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
@@ -52894,7 +52949,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
52894
52949
|
tag: "h3",
|
|
52895
52950
|
label: _ctx.title
|
|
52896
52951
|
}, null, 8, ["label"])) : createCommentVNode("", true)
|
|
52897
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_2$
|
|
52952
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_2$5, [
|
|
52898
52953
|
createVNode(unref(Btn), {
|
|
52899
52954
|
class: "position-start",
|
|
52900
52955
|
icon: "close",
|
|
@@ -52904,7 +52959,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
52904
52959
|
})
|
|
52905
52960
|
])),
|
|
52906
52961
|
renderSlot(_ctx.$slots, "default"),
|
|
52907
|
-
unref(slots).footer || ((_a2 = _ctx.actions) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("footer", _hoisted_3$
|
|
52962
|
+
unref(slots).footer || ((_a2 = _ctx.actions) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("footer", _hoisted_3$4, [
|
|
52908
52963
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.actions, (action, i2) => {
|
|
52909
52964
|
return openBlock(), createBlock(unref(Btn), mergeProps({
|
|
52910
52965
|
key: i2,
|
|
@@ -52922,8 +52977,8 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
52922
52977
|
};
|
|
52923
52978
|
}
|
|
52924
52979
|
});
|
|
52925
|
-
const _hoisted_1$
|
|
52926
|
-
const _sfc_main$
|
|
52980
|
+
const _hoisted_1$6 = { class: "pb-05 pretty" };
|
|
52981
|
+
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
52927
52982
|
__name: "ModalConfirm",
|
|
52928
52983
|
props: {
|
|
52929
52984
|
title: {},
|
|
@@ -52939,7 +52994,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
52939
52994
|
emit2("update:visible");
|
|
52940
52995
|
}
|
|
52941
52996
|
return (_ctx, _cache) => {
|
|
52942
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
52997
|
+
return openBlock(), createBlock(unref(_sfc_main$b), {
|
|
52943
52998
|
title: _ctx.title,
|
|
52944
52999
|
width: "380px",
|
|
52945
53000
|
dismissable: false,
|
|
@@ -52960,14 +53015,14 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
52960
53015
|
})
|
|
52961
53016
|
]),
|
|
52962
53017
|
default: withCtx(() => [
|
|
52963
|
-
createElementVNode("p", _hoisted_1$
|
|
53018
|
+
createElementVNode("p", _hoisted_1$6, toDisplayString(_ctx.message), 1)
|
|
52964
53019
|
]),
|
|
52965
53020
|
_: 1
|
|
52966
53021
|
}, 8, ["title"]);
|
|
52967
53022
|
};
|
|
52968
53023
|
}
|
|
52969
53024
|
});
|
|
52970
|
-
const _sfc_main$
|
|
53025
|
+
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
52971
53026
|
__name: "ModalForm",
|
|
52972
53027
|
props: /* @__PURE__ */ mergeModels({
|
|
52973
53028
|
side: { type: Boolean },
|
|
@@ -53028,7 +53083,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
53028
53083
|
}
|
|
53029
53084
|
__expose({ setFormValues });
|
|
53030
53085
|
return (_ctx, _cache) => {
|
|
53031
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
53086
|
+
return openBlock(), createBlock(unref(_sfc_main$b), {
|
|
53032
53087
|
ref_key: "modal",
|
|
53033
53088
|
ref: modal,
|
|
53034
53089
|
side: _ctx.side,
|
|
@@ -53039,7 +53094,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
53039
53094
|
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => emit2("update:visible", $event))
|
|
53040
53095
|
}, createSlots({
|
|
53041
53096
|
default: withCtx(() => [
|
|
53042
|
-
createVNode(unref(_sfc_main$
|
|
53097
|
+
createVNode(unref(_sfc_main$H), {
|
|
53043
53098
|
ref_key: "form",
|
|
53044
53099
|
ref: form,
|
|
53045
53100
|
modelValue: formData.value,
|
|
@@ -53081,14 +53136,14 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
53081
53136
|
};
|
|
53082
53137
|
}
|
|
53083
53138
|
});
|
|
53084
|
-
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
53085
|
-
const _hoisted_1$
|
|
53086
|
-
const _hoisted_2$
|
|
53087
|
-
const _hoisted_3$
|
|
53088
|
-
const _hoisted_4$
|
|
53089
|
-
const _hoisted_5$
|
|
53090
|
-
const _hoisted_6$
|
|
53091
|
-
const _sfc_main$
|
|
53139
|
+
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-083a1b2d"]]);
|
|
53140
|
+
const _hoisted_1$5 = { class: "full-nav" };
|
|
53141
|
+
const _hoisted_2$4 = { class: "nav-scroll" };
|
|
53142
|
+
const _hoisted_3$3 = { class: "nav-links-wrapper" };
|
|
53143
|
+
const _hoisted_4$3 = { class: "tooltip" };
|
|
53144
|
+
const _hoisted_5$3 = { class: "bot-buttons-wrapper" };
|
|
53145
|
+
const _hoisted_6$3 = { class: "tooltip" };
|
|
53146
|
+
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
53092
53147
|
__name: "NavBar",
|
|
53093
53148
|
props: {
|
|
53094
53149
|
footerLinks: { default: () => [] },
|
|
@@ -53120,14 +53175,14 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
53120
53175
|
onClick: toggleMenu,
|
|
53121
53176
|
onKeypress: withKeys(toggleMenu, ["enter"])
|
|
53122
53177
|
}, [
|
|
53123
|
-
createVNode(unref(_sfc_main$
|
|
53178
|
+
createVNode(unref(_sfc_main$c), {
|
|
53124
53179
|
icon: "chevron_right",
|
|
53125
53180
|
class: "top-arrow"
|
|
53126
53181
|
})
|
|
53127
53182
|
], 32),
|
|
53128
|
-
createElementVNode("div", _hoisted_1$
|
|
53129
|
-
createElementVNode("div", _hoisted_2$
|
|
53130
|
-
createElementVNode("div", _hoisted_3$
|
|
53183
|
+
createElementVNode("div", _hoisted_1$5, [
|
|
53184
|
+
createElementVNode("div", _hoisted_2$4, [
|
|
53185
|
+
createElementVNode("div", _hoisted_3$3, [
|
|
53131
53186
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.links, (link) => {
|
|
53132
53187
|
return openBlock(), createBlock(resolveDynamicComponent(link.to ? "router-link" : "div"), {
|
|
53133
53188
|
key: link.label,
|
|
@@ -53139,17 +53194,17 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
53139
53194
|
}
|
|
53140
53195
|
}, {
|
|
53141
53196
|
default: withCtx(() => [
|
|
53142
|
-
createVNode(unref(_sfc_main$
|
|
53197
|
+
createVNode(unref(_sfc_main$c), {
|
|
53143
53198
|
icon: link.icon
|
|
53144
53199
|
}, null, 8, ["icon"]),
|
|
53145
|
-
createElementVNode("div", _hoisted_4$
|
|
53200
|
+
createElementVNode("div", _hoisted_4$3, toDisplayString(link.label), 1)
|
|
53146
53201
|
]),
|
|
53147
53202
|
_: 2
|
|
53148
53203
|
}, 1032, ["to", "onClick"]);
|
|
53149
53204
|
}), 128))
|
|
53150
53205
|
])
|
|
53151
53206
|
]),
|
|
53152
|
-
createElementVNode("div", _hoisted_5$
|
|
53207
|
+
createElementVNode("div", _hoisted_5$3, [
|
|
53153
53208
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.footerLinks, (link) => {
|
|
53154
53209
|
return openBlock(), createBlock(resolveDynamicComponent(link.to ? "router-link" : "div"), {
|
|
53155
53210
|
key: link.label,
|
|
@@ -53161,10 +53216,10 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
53161
53216
|
}
|
|
53162
53217
|
}, {
|
|
53163
53218
|
default: withCtx(() => [
|
|
53164
|
-
createVNode(unref(_sfc_main$
|
|
53219
|
+
createVNode(unref(_sfc_main$c), {
|
|
53165
53220
|
icon: link.icon
|
|
53166
53221
|
}, null, 8, ["icon"]),
|
|
53167
|
-
createElementVNode("div", _hoisted_6$
|
|
53222
|
+
createElementVNode("div", _hoisted_6$3, toDisplayString(link.label), 1)
|
|
53168
53223
|
]),
|
|
53169
53224
|
_: 2
|
|
53170
53225
|
}, 1032, ["to", "onClick"]);
|
|
@@ -53176,10 +53231,10 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
53176
53231
|
};
|
|
53177
53232
|
}
|
|
53178
53233
|
});
|
|
53179
|
-
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
53180
|
-
const _hoisted_1$
|
|
53181
|
-
const _hoisted_2$
|
|
53182
|
-
const _sfc_main$
|
|
53234
|
+
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-a03e64ba"]]);
|
|
53235
|
+
const _hoisted_1$4 = { class: "page-top" };
|
|
53236
|
+
const _hoisted_2$3 = { class: "top-title m-0" };
|
|
53237
|
+
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
53183
53238
|
__name: "PageTitle",
|
|
53184
53239
|
props: {
|
|
53185
53240
|
value: {
|
|
@@ -53189,8 +53244,8 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
53189
53244
|
},
|
|
53190
53245
|
setup(__props) {
|
|
53191
53246
|
return (_ctx, _cache) => {
|
|
53192
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
53193
|
-
createElementVNode("h1", _hoisted_2$
|
|
53247
|
+
return openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
53248
|
+
createElementVNode("h1", _hoisted_2$3, [
|
|
53194
53249
|
renderSlot(_ctx.$slots, "default"),
|
|
53195
53250
|
createTextVNode(" " + toDisplayString(__props.value), 1)
|
|
53196
53251
|
])
|
|
@@ -53198,6 +53253,139 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
53198
53253
|
};
|
|
53199
53254
|
}
|
|
53200
53255
|
});
|
|
53256
|
+
const _hoisted_1$3 = ["disabled"];
|
|
53257
|
+
const _hoisted_2$2 = { class: "bgl_pill-flex" };
|
|
53258
|
+
const _hoisted_3$2 = {
|
|
53259
|
+
key: 0,
|
|
53260
|
+
class: "loading"
|
|
53261
|
+
};
|
|
53262
|
+
const _hoisted_4$2 = { key: 1 };
|
|
53263
|
+
const _hoisted_5$2 = {
|
|
53264
|
+
key: 0,
|
|
53265
|
+
class: "flex h-100"
|
|
53266
|
+
};
|
|
53267
|
+
const _hoisted_6$2 = {
|
|
53268
|
+
key: 5,
|
|
53269
|
+
class: "loading"
|
|
53270
|
+
};
|
|
53271
|
+
const _hoisted_7$2 = { key: 6 };
|
|
53272
|
+
const _hoisted_8$2 = {
|
|
53273
|
+
key: 0,
|
|
53274
|
+
class: "flex h-100"
|
|
53275
|
+
};
|
|
53276
|
+
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
53277
|
+
__name: "Pill",
|
|
53278
|
+
props: {
|
|
53279
|
+
disabled: { type: Boolean, default: false },
|
|
53280
|
+
icon: {},
|
|
53281
|
+
iconEnd: {},
|
|
53282
|
+
color: {},
|
|
53283
|
+
theme: {},
|
|
53284
|
+
flat: { type: Boolean },
|
|
53285
|
+
border: { type: Boolean, default: false },
|
|
53286
|
+
outline: { type: Boolean, default: false },
|
|
53287
|
+
loading: { type: Boolean, default: false },
|
|
53288
|
+
value: {},
|
|
53289
|
+
round: { type: Boolean, default: false },
|
|
53290
|
+
btnStart: { type: Boolean, default: true },
|
|
53291
|
+
btnEnd: { type: Boolean }
|
|
53292
|
+
},
|
|
53293
|
+
setup(__props) {
|
|
53294
|
+
useCssVars((_ctx) => ({
|
|
53295
|
+
"4d2f98bb": computedBackgroundColor.value,
|
|
53296
|
+
"1dbee7d6": cumputedTextColor.value
|
|
53297
|
+
}));
|
|
53298
|
+
const props2 = __props;
|
|
53299
|
+
const slots = useSlots();
|
|
53300
|
+
const computedTheme = computed(
|
|
53301
|
+
() => {
|
|
53302
|
+
if (props2.disabled) return "gray-light";
|
|
53303
|
+
return props2.color || props2.theme;
|
|
53304
|
+
}
|
|
53305
|
+
);
|
|
53306
|
+
const computedDefaultColors = computed(
|
|
53307
|
+
() => ({
|
|
53308
|
+
backgroundColor: "var(--bgl-primary)",
|
|
53309
|
+
color: props2.flat ? "var(--bgl-text-color)" : "var(--bgl-light-text)"
|
|
53310
|
+
})
|
|
53311
|
+
);
|
|
53312
|
+
function getThemeColors(theme) {
|
|
53313
|
+
return {
|
|
53314
|
+
...computedDefaultColors.value,
|
|
53315
|
+
...theme,
|
|
53316
|
+
color: props2.flat ? theme.backgroundColor : theme.color
|
|
53317
|
+
};
|
|
53318
|
+
}
|
|
53319
|
+
const themes = {
|
|
53320
|
+
"red": getThemeColors({ backgroundColor: "var(--bgl-red)" }),
|
|
53321
|
+
"white": getThemeColors({ backgroundColor: "var(--bgl-white)", color: "var(--bgl-black)" }),
|
|
53322
|
+
"black": getThemeColors({ backgroundColor: "var(--bgl-black)", color: "var(--bgl-white)" }),
|
|
53323
|
+
"green": getThemeColors({ backgroundColor: "var(--bgl-green)", color: "var(--bgl-white)" }),
|
|
53324
|
+
"primary": getThemeColors({ backgroundColor: "var(--bgl-primary)", color: "var(--bgl-white)" }),
|
|
53325
|
+
"gray": getThemeColors({ backgroundColor: "var(--bgl-gray-light)", color: "var(--bgl-black)" }),
|
|
53326
|
+
"light": getThemeColors({ backgroundColor: "var(--bgl-primary-light)", color: "var(--bgl-primary)" }),
|
|
53327
|
+
"gray-light": getThemeColors({ backgroundColor: "var(--bgl-gray-light)", color: "var(--bgl-gray)" }),
|
|
53328
|
+
"blue": getThemeColors({})
|
|
53329
|
+
};
|
|
53330
|
+
const cumputedTextColor = computed(
|
|
53331
|
+
() => {
|
|
53332
|
+
var _a2;
|
|
53333
|
+
return ((_a2 = themes[computedTheme.value]) == null ? void 0 : _a2.color) ?? computedDefaultColors.value.color;
|
|
53334
|
+
}
|
|
53335
|
+
);
|
|
53336
|
+
const computedBackgroundColor = computed(
|
|
53337
|
+
() => {
|
|
53338
|
+
var _a2;
|
|
53339
|
+
return ((_a2 = themes[computedTheme.value]) == null ? void 0 : _a2.backgroundColor) ?? computedDefaultColors.value.backgroundColor;
|
|
53340
|
+
}
|
|
53341
|
+
);
|
|
53342
|
+
return (_ctx, _cache) => {
|
|
53343
|
+
return openBlock(), createElementBlock("div", {
|
|
53344
|
+
disabled: _ctx.disabled,
|
|
53345
|
+
class: normalizeClass({
|
|
53346
|
+
"bgl_pill": !_ctx.icon || unref(slots).default || _ctx.value,
|
|
53347
|
+
round: _ctx.round,
|
|
53348
|
+
"bgl_flatPill": _ctx.flat,
|
|
53349
|
+
"bgl_pill-border": _ctx.border || _ctx.outline
|
|
53350
|
+
})
|
|
53351
|
+
}, [
|
|
53352
|
+
createElementVNode("div", _hoisted_2$2, [
|
|
53353
|
+
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_3$2)) : (openBlock(), createElementBlock("div", _hoisted_4$2, [
|
|
53354
|
+
_ctx.btnStart ? (openBlock(), createElementBlock("div", _hoisted_5$2, [
|
|
53355
|
+
createVNode(unref(Btn), {
|
|
53356
|
+
class: "bgl_pill-btn",
|
|
53357
|
+
thin: "",
|
|
53358
|
+
icon: "close"
|
|
53359
|
+
})
|
|
53360
|
+
])) : createCommentVNode("", true)
|
|
53361
|
+
])),
|
|
53362
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
53363
|
+
key: 2,
|
|
53364
|
+
icon: _ctx.icon
|
|
53365
|
+
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
53366
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true),
|
|
53367
|
+
!unref(slots).default && _ctx.value ? (openBlock(), createElementBlock(Fragment$1, { key: 3 }, [
|
|
53368
|
+
createTextVNode(toDisplayString(_ctx.value), 1)
|
|
53369
|
+
], 64)) : createCommentVNode("", true),
|
|
53370
|
+
props2.iconEnd ? (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
53371
|
+
key: 4,
|
|
53372
|
+
icon: props2.iconEnd
|
|
53373
|
+
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
53374
|
+
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_6$2)) : (openBlock(), createElementBlock("div", _hoisted_7$2, [
|
|
53375
|
+
props2.btnEnd ? (openBlock(), createElementBlock("div", _hoisted_8$2, [
|
|
53376
|
+
createVNode(unref(Btn), {
|
|
53377
|
+
class: "bgl_pill-btn",
|
|
53378
|
+
thin: "",
|
|
53379
|
+
icon: "close"
|
|
53380
|
+
})
|
|
53381
|
+
])) : createCommentVNode("", true)
|
|
53382
|
+
]))
|
|
53383
|
+
])
|
|
53384
|
+
], 10, _hoisted_1$3);
|
|
53385
|
+
};
|
|
53386
|
+
}
|
|
53387
|
+
});
|
|
53388
|
+
const Pill = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-95cf3171"]]);
|
|
53201
53389
|
const _sfc_main$5 = {};
|
|
53202
53390
|
function _sfc_render$1(_ctx, _cache) {
|
|
53203
53391
|
const _component_router_view = resolveComponent("router-view");
|
|
@@ -53245,12 +53433,12 @@ function tryOnMounted(fn3, sync = true, target) {
|
|
|
53245
53433
|
else
|
|
53246
53434
|
nextTick(fn3);
|
|
53247
53435
|
}
|
|
53436
|
+
const defaultWindow = isClient ? window : void 0;
|
|
53248
53437
|
function unrefElement(elRef) {
|
|
53249
53438
|
var _a2;
|
|
53250
53439
|
const plain = toValue(elRef);
|
|
53251
53440
|
return (_a2 = plain == null ? void 0 : plain.$el) != null ? _a2 : plain;
|
|
53252
53441
|
}
|
|
53253
|
-
const defaultWindow = isClient ? window : void 0;
|
|
53254
53442
|
function useMounted() {
|
|
53255
53443
|
const isMounted = ref(false);
|
|
53256
53444
|
const instance = getCurrentInstance();
|
|
@@ -53553,21 +53741,23 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53553
53741
|
props: /* @__PURE__ */ mergeModels({
|
|
53554
53742
|
data: {},
|
|
53555
53743
|
schema: {},
|
|
53556
|
-
showFields: {}
|
|
53744
|
+
showFields: {},
|
|
53745
|
+
useServerSort: { type: Boolean, default: false },
|
|
53746
|
+
disableSelect: { type: Boolean, default: false }
|
|
53557
53747
|
}, {
|
|
53558
53748
|
"loading": { default: false },
|
|
53559
53749
|
"loadingModifiers": {},
|
|
53560
53750
|
"itemHeight": { default: 50 },
|
|
53561
53751
|
"itemHeightModifiers": {},
|
|
53562
53752
|
"selectedItems": {
|
|
53563
|
-
default:
|
|
53753
|
+
default: []
|
|
53564
53754
|
},
|
|
53565
53755
|
"selectedItemsModifiers": {}
|
|
53566
53756
|
}),
|
|
53567
53757
|
emits: /* @__PURE__ */ mergeModels(["update:selectedItems", "orderBy", "select"], ["update:loading", "update:itemHeight", "update:selectedItems"]),
|
|
53568
53758
|
setup(__props, { emit: __emit }) {
|
|
53569
53759
|
useCssVars((_ctx) => ({
|
|
53570
|
-
"
|
|
53760
|
+
"74f52484": unref(computedItemHiehgt)
|
|
53571
53761
|
}));
|
|
53572
53762
|
const emit2 = __emit;
|
|
53573
53763
|
const slots = useSlots();
|
|
@@ -53586,7 +53776,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53586
53776
|
}
|
|
53587
53777
|
}
|
|
53588
53778
|
);
|
|
53589
|
-
const isSelectable = computed(() => Array.isArray(selectedItems.value));
|
|
53779
|
+
const isSelectable = computed(() => __props.disableSelect === false && Array.isArray(selectedItems.value));
|
|
53590
53780
|
const computedSortField = computed(() => `_transformed_${sortField.value}`);
|
|
53591
53781
|
const computedSchema = computed(() => useBglSchema({
|
|
53592
53782
|
schema: __props.schema,
|
|
@@ -53608,11 +53798,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53608
53798
|
return obj;
|
|
53609
53799
|
}
|
|
53610
53800
|
const computedData = computed(() => {
|
|
53611
|
-
|
|
53612
|
-
|
|
53613
|
-
|
|
53801
|
+
if (!sortField.value || __props.useServerSort === true) return __props.data.map(transform);
|
|
53802
|
+
return __props.data.map(transform).sort(
|
|
53803
|
+
(a2, z2) => {
|
|
53614
53804
|
let aValue = a2[computedSortField.value] ?? a2[sortField.value] ?? "";
|
|
53615
|
-
let bValue =
|
|
53805
|
+
let bValue = z2[computedSortField.value] ?? z2[sortField.value] ?? "";
|
|
53616
53806
|
if (isDate(aValue) && isDate(bValue)) {
|
|
53617
53807
|
aValue = new Date(aValue).getTime();
|
|
53618
53808
|
bValue = new Date(bValue).getTime();
|
|
@@ -53629,9 +53819,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53629
53819
|
}
|
|
53630
53820
|
if (sortDirection.value === "ASC") return aValue < bValue ? -1 : 1;
|
|
53631
53821
|
return aValue < bValue ? 1 : -1;
|
|
53632
|
-
}
|
|
53633
|
-
|
|
53634
|
-
return dta;
|
|
53822
|
+
}
|
|
53823
|
+
);
|
|
53635
53824
|
});
|
|
53636
53825
|
function sort2(fieldname) {
|
|
53637
53826
|
if (sortField.value === fieldname) {
|
|
@@ -53715,7 +53904,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53715
53904
|
createElementVNode("div", {
|
|
53716
53905
|
class: normalizeClass(["list-arrows", { sorted: unref(sortField) === field.id }])
|
|
53717
53906
|
}, [
|
|
53718
|
-
createVNode(unref(_sfc_main$
|
|
53907
|
+
createVNode(unref(_sfc_main$c), {
|
|
53719
53908
|
class: normalizeClass({ desc: unref(sortDirection) === "DESC" }),
|
|
53720
53909
|
icon: "keyboard_arrow_up"
|
|
53721
53910
|
}, null, 8, ["class"])
|
|
@@ -53755,7 +53944,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53755
53944
|
row,
|
|
53756
53945
|
field
|
|
53757
53946
|
}, void 0, true) : (openBlock(), createElementBlock("div", _hoisted_10$1, [
|
|
53758
|
-
createVNode(unref(_sfc_main$
|
|
53947
|
+
createVNode(unref(_sfc_main$I), {
|
|
53759
53948
|
class: "embedded-field",
|
|
53760
53949
|
field,
|
|
53761
53950
|
modelValue: row,
|
|
@@ -53773,7 +53962,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
53773
53962
|
};
|
|
53774
53963
|
}
|
|
53775
53964
|
});
|
|
53776
|
-
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-
|
|
53965
|
+
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-e5cc6a73"]]);
|
|
53777
53966
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
53778
53967
|
__name: "Title",
|
|
53779
53968
|
props: {
|
|
@@ -54698,7 +54887,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
54698
54887
|
src: item.src,
|
|
54699
54888
|
alt: "",
|
|
54700
54889
|
onClick: ($event) => selectItem(index2)
|
|
54701
|
-
}, null, 10, _hoisted_11)) : (openBlock(), createBlock(unref(_sfc_main$
|
|
54890
|
+
}, null, 10, _hoisted_11)) : (openBlock(), createBlock(unref(_sfc_main$c), {
|
|
54702
54891
|
key: 1,
|
|
54703
54892
|
class: normalizeClass(["thumbnail object-fit-cover hover opacity-5 ed flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: unref(currentIndex) === index2 }]),
|
|
54704
54893
|
icon: "description",
|
|
@@ -54893,7 +55082,7 @@ function frmRow(...children2) {
|
|
|
54893
55082
|
function bglForm(idOrField, ...schema) {
|
|
54894
55083
|
if (typeof idOrField === "string") {
|
|
54895
55084
|
return {
|
|
54896
|
-
$el: markRaw(_sfc_main$
|
|
55085
|
+
$el: markRaw(_sfc_main$H),
|
|
54897
55086
|
id: idOrField,
|
|
54898
55087
|
attrs: {
|
|
54899
55088
|
schema: [idOrField, ...schema]
|
|
@@ -54901,7 +55090,7 @@ function bglForm(idOrField, ...schema) {
|
|
|
54901
55090
|
};
|
|
54902
55091
|
}
|
|
54903
55092
|
return {
|
|
54904
|
-
$el: markRaw(_sfc_main$
|
|
55093
|
+
$el: markRaw(_sfc_main$H),
|
|
54905
55094
|
attrs: {
|
|
54906
55095
|
schema: [idOrField, ...schema]
|
|
54907
55096
|
}
|
|
@@ -55166,9 +55355,9 @@ const ModalPlugin = {
|
|
|
55166
55355
|
case "modalForm":
|
|
55167
55356
|
return h$2(ModalForm, props2, modal.componentSlots);
|
|
55168
55357
|
case "confirmModal":
|
|
55169
|
-
return h$2(_sfc_main$
|
|
55358
|
+
return h$2(_sfc_main$a, props2, {});
|
|
55170
55359
|
default:
|
|
55171
|
-
return h$2(_sfc_main$
|
|
55360
|
+
return h$2(_sfc_main$b, props2, modal.componentSlots);
|
|
55172
55361
|
}
|
|
55173
55362
|
});
|
|
55174
55363
|
}
|
|
@@ -55503,61 +55692,62 @@ const IMAGE_FORMATS_REGEXP = new RegExp(`(${IMAGE_FORMATS.join("|")})$`, "i");
|
|
|
55503
55692
|
const VIDEO_FORMATS = ["mp4", "webm", "ogg", "mov", "avi", "flv", "wmv", "mkv", "ts", "m3u8"];
|
|
55504
55693
|
const VIDEO_FORMATS_REGEXP = new RegExp(`(${VIDEO_FORMATS.join("|")})$`, "i");
|
|
55505
55694
|
export {
|
|
55506
|
-
_sfc_main$
|
|
55695
|
+
_sfc_main$W as Accordion,
|
|
55507
55696
|
AccordionItem,
|
|
55508
|
-
_sfc_main$
|
|
55697
|
+
_sfc_main$U as AddressSearch,
|
|
55509
55698
|
Alert,
|
|
55510
55699
|
Avatar,
|
|
55511
55700
|
Badge,
|
|
55512
|
-
_sfc_main$
|
|
55701
|
+
_sfc_main$H as BagelForm,
|
|
55513
55702
|
BagelVue,
|
|
55514
|
-
_sfc_main$
|
|
55515
|
-
_sfc_main$
|
|
55516
|
-
_sfc_main$
|
|
55703
|
+
_sfc_main$I as BglField,
|
|
55704
|
+
_sfc_main$H as BglForm,
|
|
55705
|
+
_sfc_main$G as BglMultiStepForm,
|
|
55517
55706
|
BglVideo,
|
|
55518
55707
|
BottomMenu,
|
|
55519
55708
|
Btn,
|
|
55520
|
-
_sfc_main$
|
|
55709
|
+
_sfc_main$O as Card,
|
|
55521
55710
|
Carousel,
|
|
55522
55711
|
CheckInput,
|
|
55523
55712
|
Checkbox,
|
|
55524
|
-
_sfc_main$
|
|
55713
|
+
_sfc_main$D as ColorPicker,
|
|
55525
55714
|
DataPreview,
|
|
55526
|
-
_sfc_main$
|
|
55527
|
-
_sfc_main$
|
|
55528
|
-
_sfc_main$
|
|
55715
|
+
_sfc_main$C as DateInput,
|
|
55716
|
+
_sfc_main$B as DatePicker,
|
|
55717
|
+
_sfc_main$K as Dropdown,
|
|
55529
55718
|
$el as FileUpload,
|
|
55530
55719
|
Flag,
|
|
55531
55720
|
IMAGE_FORMATS,
|
|
55532
55721
|
IMAGE_FORMATS_REGEXP,
|
|
55533
|
-
_sfc_main$
|
|
55722
|
+
_sfc_main$c as Icon,
|
|
55534
55723
|
JSONInput,
|
|
55535
55724
|
Layout,
|
|
55536
|
-
_sfc_main$
|
|
55537
|
-
_sfc_main$
|
|
55725
|
+
_sfc_main$M as Lineart,
|
|
55726
|
+
_sfc_main$f as ListItem,
|
|
55538
55727
|
ListView,
|
|
55539
|
-
_sfc_main$
|
|
55540
|
-
_sfc_main$
|
|
55541
|
-
_sfc_main$
|
|
55542
|
-
_sfc_main$
|
|
55728
|
+
_sfc_main$d as MapEmbed,
|
|
55729
|
+
_sfc_main$c as MaterialIcon,
|
|
55730
|
+
_sfc_main$b as Modal,
|
|
55731
|
+
_sfc_main$a as ModalConfirm,
|
|
55543
55732
|
ModalForm,
|
|
55544
55733
|
ModalPlugin,
|
|
55545
55734
|
NavBar,
|
|
55546
|
-
_sfc_main$
|
|
55547
|
-
_sfc_main$
|
|
55735
|
+
_sfc_main$7 as PageTitle,
|
|
55736
|
+
_sfc_main$y as PasswordInput,
|
|
55737
|
+
Pill,
|
|
55548
55738
|
RadioGroup,
|
|
55549
55739
|
RadioPillsInput,
|
|
55550
|
-
_sfc_main$
|
|
55740
|
+
_sfc_main$v as RichText,
|
|
55551
55741
|
index$1 as RichText2,
|
|
55552
55742
|
RouterWrapper,
|
|
55553
55743
|
SelectInput,
|
|
55554
55744
|
SidebarMenu,
|
|
55555
|
-
_sfc_main$
|
|
55745
|
+
_sfc_main$r as SignaturePad,
|
|
55556
55746
|
TabbedLayout,
|
|
55557
55747
|
TableField,
|
|
55558
55748
|
TableSchema,
|
|
55559
|
-
_sfc_main$
|
|
55560
|
-
_sfc_main$
|
|
55749
|
+
_sfc_main$i as Tabs,
|
|
55750
|
+
_sfc_main$h as TabsBody,
|
|
55561
55751
|
TabsNav,
|
|
55562
55752
|
TelInput,
|
|
55563
55753
|
TextInput,
|