@bagelink/vue 0.0.771 → 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 +3 -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 +806 -616
- package/dist/index.mjs +806 -616
- package/dist/style.css +169 -90
- package/package.json +12 -12
- package/src/components/Btn.vue +2 -2
- package/src/components/Pill.vue +180 -0
- package/src/components/TableSchema.vue +8 -6
- 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/dist/index.cjs
CHANGED
|
@@ -40,7 +40,7 @@ const bagelFormUtils = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defi
|
|
|
40
40
|
return txtField;
|
|
41
41
|
}
|
|
42
42
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
43
|
-
const _sfc_main$
|
|
43
|
+
const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
|
|
44
44
|
__name: "Accordion",
|
|
45
45
|
setup(__props) {
|
|
46
46
|
const state2 = vue.reactive({
|
|
@@ -54,11 +54,11 @@ const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
|
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
});
|
|
57
|
-
const _hoisted_1$
|
|
58
|
-
const _hoisted_2$
|
|
59
|
-
const _hoisted_3$
|
|
60
|
-
const _hoisted_4$
|
|
61
|
-
const _sfc_main$
|
|
57
|
+
const _hoisted_1$K = { class: "accordion-item" };
|
|
58
|
+
const _hoisted_2$u = ["aria-expanded", "aria-controls"];
|
|
59
|
+
const _hoisted_3$l = { class: "accordion-label" };
|
|
60
|
+
const _hoisted_4$f = ["id", "aria-hidden"];
|
|
61
|
+
const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
|
|
62
62
|
__name: "AccordionItem",
|
|
63
63
|
props: {
|
|
64
64
|
label: {},
|
|
@@ -95,7 +95,7 @@ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
|
95
95
|
else if (accordionState.openItem === id) accordionState.openItem = null;
|
|
96
96
|
}
|
|
97
97
|
return (_ctx, _cache) => {
|
|
98
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
98
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$K, [
|
|
99
99
|
vue.createElementVNode("button", {
|
|
100
100
|
"aria-expanded": vue.unref(isOpen) ? "true" : "false",
|
|
101
101
|
class: "accordion-head",
|
|
@@ -103,14 +103,14 @@ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
|
103
103
|
onClick: _cache[0] || (_cache[0] = ($event) => toggle())
|
|
104
104
|
}, [
|
|
105
105
|
vue.renderSlot(_ctx.$slots, "head", {}, () => [
|
|
106
|
-
vue.createElementVNode("span", _hoisted_3$
|
|
106
|
+
vue.createElementVNode("span", _hoisted_3$l, vue.toDisplayString(_ctx.label), 1)
|
|
107
107
|
], true),
|
|
108
108
|
vue.createElementVNode("div", {
|
|
109
109
|
class: vue.normalizeClass(["accordion-icon", { open: vue.unref(isOpen) }])
|
|
110
110
|
}, [
|
|
111
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
111
|
+
vue.createVNode(vue.unref(_sfc_main$c), { icon: "expand_more" })
|
|
112
112
|
], 2)
|
|
113
|
-
], 8, _hoisted_2$
|
|
113
|
+
], 8, _hoisted_2$u),
|
|
114
114
|
vue.createVNode(vue.Transition, { name: "expand" }, {
|
|
115
115
|
default: vue.withCtx(() => [
|
|
116
116
|
vue.unref(isOpen) ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -120,7 +120,7 @@ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
|
120
120
|
"aria-hidden": vue.unref(isOpen) ? "false" : "true"
|
|
121
121
|
}, [
|
|
122
122
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
123
|
-
], 8, _hoisted_4$
|
|
123
|
+
], 8, _hoisted_4$f)) : vue.createCommentVNode("", true)
|
|
124
124
|
]),
|
|
125
125
|
_: 3
|
|
126
126
|
})
|
|
@@ -135,9 +135,9 @@ const _export_sfc = (sfc, props2) => {
|
|
|
135
135
|
}
|
|
136
136
|
return target;
|
|
137
137
|
};
|
|
138
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
139
|
-
const _hoisted_1$
|
|
140
|
-
const _sfc_main$
|
|
138
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-f87b579d"]]);
|
|
139
|
+
const _hoisted_1$J = { class: "relative" };
|
|
140
|
+
const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
141
141
|
__name: "AddressSearch",
|
|
142
142
|
emits: ["addressSelected"],
|
|
143
143
|
setup(__props, { emit: __emit }) {
|
|
@@ -159,8 +159,8 @@ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
|
159
159
|
(_a2 = suggestion.value) == null ? void 0 : _a2.show();
|
|
160
160
|
}
|
|
161
161
|
return (_ctx, _cache) => {
|
|
162
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
163
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
162
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$J, [
|
|
163
|
+
vue.createVNode(vue.unref(_sfc_main$K), {
|
|
164
164
|
ref_key: "suggestion",
|
|
165
165
|
ref: suggestion,
|
|
166
166
|
noAutoFocus: true,
|
|
@@ -178,7 +178,7 @@ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
|
178
178
|
vue.createVNode(vue.unref(ListView), { class: "-mt-2 hm-300px" }, {
|
|
179
179
|
default: vue.withCtx(() => [
|
|
180
180
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(searchResults), (result2, index2) => {
|
|
181
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
181
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$f), {
|
|
182
182
|
key: index2,
|
|
183
183
|
icon: "location_on",
|
|
184
184
|
title: result2.display_name,
|
|
@@ -195,15 +195,15 @@ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
|
195
195
|
};
|
|
196
196
|
}
|
|
197
197
|
});
|
|
198
|
-
const _hoisted_1$
|
|
198
|
+
const _hoisted_1$I = {
|
|
199
199
|
key: 0,
|
|
200
200
|
class: "loading"
|
|
201
201
|
};
|
|
202
|
-
const _hoisted_2$
|
|
202
|
+
const _hoisted_2$t = {
|
|
203
203
|
key: 1,
|
|
204
204
|
class: "bgl_btn-flex"
|
|
205
205
|
};
|
|
206
|
-
const _sfc_main$
|
|
206
|
+
const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
207
207
|
__name: "Btn",
|
|
208
208
|
props: {
|
|
209
209
|
disabled: { type: Boolean, default: false },
|
|
@@ -227,8 +227,8 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
227
227
|
},
|
|
228
228
|
setup(__props) {
|
|
229
229
|
vue.useCssVars((_ctx) => ({
|
|
230
|
-
"
|
|
231
|
-
"
|
|
230
|
+
"a09b41ba": computedBackgroundColor.value,
|
|
231
|
+
"31d09c3e": cumputedTextColor.value
|
|
232
232
|
}));
|
|
233
233
|
const props2 = __props;
|
|
234
234
|
const isComponent = vue.computed(() => {
|
|
@@ -297,8 +297,8 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
297
297
|
onClick: vue.withModifiers(_ctx.onClick, ["stop"])
|
|
298
298
|
}, {
|
|
299
299
|
default: vue.withCtx(() => [
|
|
300
|
-
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
301
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
300
|
+
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$I)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$t, [
|
|
301
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
302
302
|
key: 0,
|
|
303
303
|
icon: _ctx.icon
|
|
304
304
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -306,7 +306,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
306
306
|
!vue.unref(slots).default && _ctx.value ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
307
307
|
vue.createTextVNode(vue.toDisplayString(_ctx.value), 1)
|
|
308
308
|
], 64)) : vue.createCommentVNode("", true),
|
|
309
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
309
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
310
310
|
key: 2,
|
|
311
311
|
icon: props2["icon.end"]
|
|
312
312
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
@@ -317,10 +317,10 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
317
317
|
};
|
|
318
318
|
}
|
|
319
319
|
});
|
|
320
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
321
|
-
const _hoisted_1$
|
|
322
|
-
const _hoisted_2$
|
|
323
|
-
const _sfc_main$
|
|
320
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-17faf037"]]);
|
|
321
|
+
const _hoisted_1$H = ["dismissable"];
|
|
322
|
+
const _hoisted_2$s = { class: "m-0" };
|
|
323
|
+
const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
324
324
|
__name: "Alert",
|
|
325
325
|
props: {
|
|
326
326
|
message: {},
|
|
@@ -341,14 +341,14 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
341
341
|
class: vue.normalizeClass(["alert", [_ctx.type]]),
|
|
342
342
|
dismissable: _ctx.dismissable
|
|
343
343
|
}, [
|
|
344
|
-
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
344
|
+
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
345
345
|
key: 0,
|
|
346
346
|
class: "alert_icon",
|
|
347
347
|
icon: _ctx.icon || _ctx.type,
|
|
348
348
|
size: 2,
|
|
349
349
|
color: color2[_ctx.type]
|
|
350
350
|
}, null, 8, ["icon", "color"])) : vue.createCommentVNode("", true),
|
|
351
|
-
vue.createElementVNode("p", _hoisted_2$
|
|
351
|
+
vue.createElementVNode("p", _hoisted_2$s, vue.toDisplayString(_ctx.message), 1),
|
|
352
352
|
vue.createVNode(Btn, {
|
|
353
353
|
flat: "",
|
|
354
354
|
thin: "",
|
|
@@ -356,13 +356,13 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
356
356
|
icon: "close",
|
|
357
357
|
onClick: _cache[0] || (_cache[0] = ($event) => isDismissed.value = true)
|
|
358
358
|
})
|
|
359
|
-
], 10, _hoisted_1$
|
|
359
|
+
], 10, _hoisted_1$H)) : vue.createCommentVNode("", true);
|
|
360
360
|
};
|
|
361
361
|
}
|
|
362
362
|
});
|
|
363
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
364
|
-
const _hoisted_1$
|
|
365
|
-
const _sfc_main$
|
|
363
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-1322d9e1"]]);
|
|
364
|
+
const _hoisted_1$G = ["src", "alt"];
|
|
365
|
+
const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
366
366
|
__name: "Avatar",
|
|
367
367
|
props: {
|
|
368
368
|
fallback: {},
|
|
@@ -380,7 +380,7 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
380
380
|
key: 0,
|
|
381
381
|
src: _ctx.src,
|
|
382
382
|
alt: _ctx.name
|
|
383
|
-
}, null, 8, _hoisted_1$
|
|
383
|
+
}, null, 8, _hoisted_1$G)) : (vue.openBlock(), vue.createElementBlock("p", {
|
|
384
384
|
key: 1,
|
|
385
385
|
style: vue.normalizeStyle({ "line-height": `${_ctx.size}px`, "font-size": `calc(1.5rem * ${_ctx.size} / 50)` })
|
|
386
386
|
}, vue.toDisplayString((_ctx.fallback || vue.unref(initials)(_ctx.name || "")).toUpperCase()), 5))
|
|
@@ -388,8 +388,8 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
388
388
|
};
|
|
389
389
|
}
|
|
390
390
|
});
|
|
391
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
392
|
-
const _sfc_main$
|
|
391
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-46ad8c25"]]);
|
|
392
|
+
const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
393
393
|
__name: "Badge",
|
|
394
394
|
props: {
|
|
395
395
|
color: {},
|
|
@@ -405,13 +405,13 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
405
405
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
406
406
|
class: vue.normalizeClass(["pill", [_ctx.color]])
|
|
407
407
|
}, [
|
|
408
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
408
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
409
409
|
key: 0,
|
|
410
410
|
class: "inline",
|
|
411
411
|
icon: _ctx.icon
|
|
412
412
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
413
413
|
vue.createTextVNode(" " + vue.toDisplayString(_ctx.text) + " ", 1),
|
|
414
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
414
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
415
415
|
key: 1,
|
|
416
416
|
class: "inline",
|
|
417
417
|
icon: props2["icon.end"]
|
|
@@ -420,10 +420,10 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
420
420
|
};
|
|
421
421
|
}
|
|
422
422
|
});
|
|
423
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
424
|
-
const _hoisted_1$
|
|
425
|
-
const _hoisted_2$
|
|
426
|
-
const _sfc_main$
|
|
423
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-40a0b03a"]]);
|
|
424
|
+
const _hoisted_1$F = ["src"];
|
|
425
|
+
const _hoisted_2$r = ["src", "autoplay", "muted", "loop", "controls"];
|
|
426
|
+
const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
427
427
|
__name: "BglVideo",
|
|
428
428
|
props: {
|
|
429
429
|
src: {},
|
|
@@ -478,7 +478,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
478
478
|
allowfullscreen: "",
|
|
479
479
|
title: "Video",
|
|
480
480
|
allow: "autoplay"
|
|
481
|
-
}, null, 12, _hoisted_1$
|
|
481
|
+
}, null, 12, _hoisted_1$F)) : _ctx.src ? (vue.openBlock(), vue.createElementBlock("video", {
|
|
482
482
|
key: 1,
|
|
483
483
|
src: _ctx.src,
|
|
484
484
|
autoplay: _ctx.autoplay,
|
|
@@ -487,17 +487,17 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
487
487
|
style: vue.normalizeStyle({ aspectRatio: aspectRatio.value }),
|
|
488
488
|
controls: _ctx.controls,
|
|
489
489
|
playsinline: ""
|
|
490
|
-
}, null, 12, _hoisted_2$
|
|
490
|
+
}, null, 12, _hoisted_2$r)) : vue.createCommentVNode("", true)
|
|
491
491
|
], 2);
|
|
492
492
|
};
|
|
493
493
|
}
|
|
494
494
|
});
|
|
495
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
496
|
-
const _hoisted_1$
|
|
495
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-8495afe2"]]);
|
|
496
|
+
const _hoisted_1$E = {
|
|
497
497
|
key: 0,
|
|
498
498
|
class: "card_label"
|
|
499
499
|
};
|
|
500
|
-
const _sfc_main$
|
|
500
|
+
const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
501
501
|
__name: "Card",
|
|
502
502
|
props: {
|
|
503
503
|
label: {},
|
|
@@ -525,7 +525,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
525
525
|
}])
|
|
526
526
|
}, {
|
|
527
527
|
default: vue.withCtx(() => [
|
|
528
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
528
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$E, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
529
529
|
vue.renderSlot(_ctx.$slots, "default")
|
|
530
530
|
]),
|
|
531
531
|
_: 3
|
|
@@ -533,12 +533,12 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
533
533
|
};
|
|
534
534
|
}
|
|
535
535
|
});
|
|
536
|
-
const _hoisted_1$
|
|
536
|
+
const _hoisted_1$D = {
|
|
537
537
|
key: 0,
|
|
538
538
|
class: "blocker"
|
|
539
539
|
};
|
|
540
|
-
const _hoisted_2$
|
|
541
|
-
const _sfc_main$
|
|
540
|
+
const _hoisted_2$q = { class: "Handlers" };
|
|
541
|
+
const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
542
542
|
__name: "Carousel",
|
|
543
543
|
props: {
|
|
544
544
|
autoHeight: {
|
|
@@ -686,10 +686,10 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
686
686
|
onScrollend: scrollEnd,
|
|
687
687
|
onMousedown: startDragging
|
|
688
688
|
}, [
|
|
689
|
-
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
689
|
+
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$D)) : vue.createCommentVNode("", true),
|
|
690
690
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
691
691
|
], 34),
|
|
692
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
692
|
+
vue.createElementVNode("div", _hoisted_2$q, [
|
|
693
693
|
vue.createElementVNode("span", { onClick: prev }, [
|
|
694
694
|
vue.renderSlot(_ctx.$slots, "prev", {
|
|
695
695
|
prev,
|
|
@@ -707,7 +707,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
707
707
|
};
|
|
708
708
|
}
|
|
709
709
|
});
|
|
710
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
710
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-1f9c6644"]]);
|
|
711
711
|
function _isPlaceholder(a2) {
|
|
712
712
|
return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
|
|
713
713
|
}
|
|
@@ -5615,7 +5615,7 @@ const _hoisted_4$2$1 = {
|
|
|
5615
5615
|
};
|
|
5616
5616
|
const _hoisted_5$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5617
5617
|
const _hoisted_6$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5618
|
-
const _hoisted_7$
|
|
5618
|
+
const _hoisted_7$7 = ["x1", "y1", "x2", "y2"];
|
|
5619
5619
|
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5620
5620
|
return _ctx.data.length ? (vue.openBlock(), vue.createElementBlock("g", {
|
|
5621
5621
|
key: 0,
|
|
@@ -5671,7 +5671,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5671
5671
|
y1: _ctx.canvas.y,
|
|
5672
5672
|
x2: _ctx.canvas.width - 1,
|
|
5673
5673
|
y2: _ctx.canvas.height
|
|
5674
|
-
}, null, 8, _hoisted_7$
|
|
5674
|
+
}, null, 8, _hoisted_7$7)
|
|
5675
5675
|
])
|
|
5676
5676
|
], 8, _hoisted_1$4$1)) : vue.createCommentVNode("v-if", true);
|
|
5677
5677
|
}
|
|
@@ -6538,10 +6538,10 @@ const _hoisted_1$1$1 = {
|
|
|
6538
6538
|
style: { display: "flex", position: "relative" }
|
|
6539
6539
|
};
|
|
6540
6540
|
const _hoisted_2$1$1 = ["width", "height", "viewBox"];
|
|
6541
|
-
const _hoisted_3$
|
|
6542
|
-
const _hoisted_4$
|
|
6543
|
-
const _hoisted_5$
|
|
6544
|
-
const _hoisted_6$
|
|
6541
|
+
const _hoisted_3$k = { class: "layer-rectangles" };
|
|
6542
|
+
const _hoisted_4$e = ["transform", "onMouseover"];
|
|
6543
|
+
const _hoisted_5$d = ["width", "height"];
|
|
6544
|
+
const _hoisted_6$a = {
|
|
6545
6545
|
x: 0 + 10,
|
|
6546
6546
|
y: 0 + 20,
|
|
6547
6547
|
"font-size": `15px`,
|
|
@@ -6556,7 +6556,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6556
6556
|
viewBox: `0 0 ${_ctx.size.width} ${_ctx.size.height}`,
|
|
6557
6557
|
ref: "el"
|
|
6558
6558
|
}, [
|
|
6559
|
-
vue.createElementVNode("g", _hoisted_3$
|
|
6559
|
+
vue.createElementVNode("g", _hoisted_3$k, [
|
|
6560
6560
|
(vue.openBlock(true), vue.createElementBlock(
|
|
6561
6561
|
vue.Fragment,
|
|
6562
6562
|
null,
|
|
@@ -6577,21 +6577,21 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6577
6577
|
y: 0,
|
|
6578
6578
|
width: r2.width,
|
|
6579
6579
|
height: r2.height
|
|
6580
|
-
}), null, 16, _hoisted_5$
|
|
6580
|
+
}), null, 16, _hoisted_5$d),
|
|
6581
6581
|
vue.renderSlot(_ctx.$slots, "text", {
|
|
6582
6582
|
r: r2,
|
|
6583
6583
|
selected: _ctx.selected === i2
|
|
6584
6584
|
}, () => [
|
|
6585
6585
|
vue.createElementVNode(
|
|
6586
6586
|
"text",
|
|
6587
|
-
_hoisted_6$
|
|
6587
|
+
_hoisted_6$a,
|
|
6588
6588
|
vue.toDisplayString(r2.data.name),
|
|
6589
6589
|
1
|
|
6590
6590
|
/* TEXT */
|
|
6591
6591
|
)
|
|
6592
6592
|
])
|
|
6593
6593
|
])
|
|
6594
|
-
], 42, _hoisted_4$
|
|
6594
|
+
], 42, _hoisted_4$e);
|
|
6595
6595
|
}),
|
|
6596
6596
|
128
|
|
6597
6597
|
/* KEYED_FRAGMENT */
|
|
@@ -6648,25 +6648,25 @@ var script = vue.defineComponent({
|
|
|
6648
6648
|
return { bar, canvas, direction, mouse };
|
|
6649
6649
|
}
|
|
6650
6650
|
});
|
|
6651
|
-
const _hoisted_1$
|
|
6651
|
+
const _hoisted_1$C = {
|
|
6652
6652
|
key: 0,
|
|
6653
6653
|
class: "layer-hover-bar"
|
|
6654
6654
|
};
|
|
6655
|
-
const _hoisted_2$
|
|
6655
|
+
const _hoisted_2$p = ["x", "y", "width", "height"];
|
|
6656
6656
|
function render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6657
|
-
return _ctx.mouse.hover ? (vue.openBlock(), vue.createElementBlock("g", _hoisted_1$
|
|
6657
|
+
return _ctx.mouse.hover ? (vue.openBlock(), vue.createElementBlock("g", _hoisted_1$C, [
|
|
6658
6658
|
vue.createElementVNode("rect", vue.mergeProps({ class: "hover-bar" }, _ctx.barStyle, {
|
|
6659
6659
|
x: _ctx.bar.x,
|
|
6660
6660
|
y: _ctx.bar.y,
|
|
6661
6661
|
width: _ctx.bar.width > 0 ? _ctx.bar.width : 0,
|
|
6662
6662
|
height: _ctx.bar.height > 0 ? _ctx.bar.height : 0
|
|
6663
|
-
}), null, 16, _hoisted_2$
|
|
6663
|
+
}), null, 16, _hoisted_2$p)
|
|
6664
6664
|
])) : vue.createCommentVNode("v-if", true);
|
|
6665
6665
|
}
|
|
6666
6666
|
script.render = render$e;
|
|
6667
6667
|
script.__file = "src/components/HoverBar/index.vue";
|
|
6668
6668
|
const BRAND_COLOR = "var(--bgl-primary)";
|
|
6669
|
-
const _sfc_main$
|
|
6669
|
+
const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
6670
6670
|
__name: "Lineart",
|
|
6671
6671
|
props: {
|
|
6672
6672
|
data: {},
|
|
@@ -6806,28 +6806,28 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
6806
6806
|
};
|
|
6807
6807
|
}
|
|
6808
6808
|
});
|
|
6809
|
-
const _hoisted_1$
|
|
6809
|
+
const _hoisted_1$B = {
|
|
6810
6810
|
key: 0,
|
|
6811
6811
|
class: "data"
|
|
6812
6812
|
};
|
|
6813
|
-
const _hoisted_2$
|
|
6813
|
+
const _hoisted_2$o = {
|
|
6814
6814
|
key: 0,
|
|
6815
6815
|
class: "data-row m_py-05"
|
|
6816
6816
|
};
|
|
6817
|
-
const _hoisted_3$
|
|
6818
|
-
const _hoisted_4$
|
|
6819
|
-
const _hoisted_5$
|
|
6820
|
-
const _hoisted_6$
|
|
6817
|
+
const _hoisted_3$j = { class: "key" };
|
|
6818
|
+
const _hoisted_4$d = { class: "m-0" };
|
|
6819
|
+
const _hoisted_5$c = { key: 1 };
|
|
6820
|
+
const _hoisted_6$9 = {
|
|
6821
6821
|
key: 0,
|
|
6822
6822
|
class: "data-row"
|
|
6823
6823
|
};
|
|
6824
|
-
const _hoisted_7$
|
|
6825
|
-
const _hoisted_8$
|
|
6824
|
+
const _hoisted_7$6 = { class: "key" };
|
|
6825
|
+
const _hoisted_8$4 = { class: "m-0" };
|
|
6826
6826
|
const _hoisted_9$3 = {
|
|
6827
6827
|
key: 0,
|
|
6828
6828
|
class: "m-0"
|
|
6829
6829
|
};
|
|
6830
|
-
const _sfc_main$
|
|
6830
|
+
const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
6831
6831
|
__name: "DataPreview",
|
|
6832
6832
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
6833
6833
|
showFields: {},
|
|
@@ -6863,7 +6863,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
6863
6863
|
const computedSchema = vue.computed(() => getFallbackSchema([itemData.value], props2.showFields));
|
|
6864
6864
|
return (_ctx, _cache) => {
|
|
6865
6865
|
var _a2;
|
|
6866
|
-
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6866
|
+
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$B, [
|
|
6867
6867
|
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$3), {
|
|
6868
6868
|
key: 0,
|
|
6869
6869
|
label: _ctx.title
|
|
@@ -6872,11 +6872,11 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
6872
6872
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, {
|
|
6873
6873
|
key: field.id
|
|
6874
6874
|
}, [
|
|
6875
|
-
vue.unref(iffer)(field, itemData.value) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
6876
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
6877
|
-
vue.createElementVNode("p", _hoisted_4$
|
|
6875
|
+
vue.unref(iffer)(field, itemData.value) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$o, [
|
|
6876
|
+
vue.createElementVNode("div", _hoisted_3$j, [
|
|
6877
|
+
vue.createElementVNode("p", _hoisted_4$d, vue.toDisplayString((field == null ? void 0 : field.label) || vue.unref(keyToLabel)(field.id)), 1)
|
|
6878
6878
|
]),
|
|
6879
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6879
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
6880
6880
|
modelValue: itemData.value,
|
|
6881
6881
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => itemData.value = $event),
|
|
6882
6882
|
label: "",
|
|
@@ -6886,12 +6886,12 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
6886
6886
|
])) : vue.createCommentVNode("", true)
|
|
6887
6887
|
], 64);
|
|
6888
6888
|
}), 128)),
|
|
6889
|
-
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$
|
|
6889
|
+
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$c, [
|
|
6890
6890
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, ({ id, label }) => {
|
|
6891
6891
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: id }, [
|
|
6892
|
-
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$
|
|
6893
|
-
vue.createElementVNode("div", _hoisted_7$
|
|
6894
|
-
vue.createElementVNode("p", _hoisted_8$
|
|
6892
|
+
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$9, [
|
|
6893
|
+
vue.createElementVNode("div", _hoisted_7$6, [
|
|
6894
|
+
vue.createElementVNode("p", _hoisted_8$4, vue.toDisplayString(label), 1)
|
|
6895
6895
|
]),
|
|
6896
6896
|
vue.createElementVNode("div", null, [
|
|
6897
6897
|
id ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_9$3, vue.toDisplayString(dataTransform(itemData.value[id])), 1)) : vue.createCommentVNode("", true)
|
|
@@ -6905,7 +6905,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
6905
6905
|
};
|
|
6906
6906
|
}
|
|
6907
6907
|
});
|
|
6908
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6908
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-2da95d24"]]);
|
|
6909
6909
|
const sides = ["top", "right", "bottom", "left"];
|
|
6910
6910
|
const alignments = ["start", "end"];
|
|
6911
6911
|
const placements$1 = /* @__PURE__ */ sides.reduce((acc, side) => acc.concat(side, side + "-" + alignments[0], side + "-" + alignments[1]), []);
|
|
@@ -9447,7 +9447,7 @@ const Gt$1 = {
|
|
|
9447
9447
|
install: Ct$1,
|
|
9448
9448
|
options: h
|
|
9449
9449
|
};
|
|
9450
|
-
const _sfc_main$
|
|
9450
|
+
const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
9451
9451
|
__name: "Dropdown",
|
|
9452
9452
|
props: {
|
|
9453
9453
|
value: {},
|
|
@@ -9504,7 +9504,7 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
9504
9504
|
};
|
|
9505
9505
|
}
|
|
9506
9506
|
});
|
|
9507
|
-
const _sfc_main$
|
|
9507
|
+
const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
9508
9508
|
__name: "Flag",
|
|
9509
9509
|
props: {
|
|
9510
9510
|
country: {},
|
|
@@ -9534,8 +9534,8 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
9534
9534
|
};
|
|
9535
9535
|
}
|
|
9536
9536
|
});
|
|
9537
|
-
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9538
|
-
const _sfc_main$
|
|
9537
|
+
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-f99f1900"]]);
|
|
9538
|
+
const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
9539
9539
|
__name: "BglField",
|
|
9540
9540
|
props: {
|
|
9541
9541
|
field: {},
|
|
@@ -9550,8 +9550,8 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
9550
9550
|
if (props2.field.$el === "select") return SelectInput;
|
|
9551
9551
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
9552
9552
|
if (props2.field.$el === "check") return CheckInput;
|
|
9553
|
-
if (props2.field.$el === "richtext") return _sfc_main$
|
|
9554
|
-
if (props2.field.$el === "date") return _sfc_main$
|
|
9553
|
+
if (props2.field.$el === "richtext") return _sfc_main$v;
|
|
9554
|
+
if (props2.field.$el === "date") return _sfc_main$C;
|
|
9555
9555
|
return props2.field.$el ?? "div";
|
|
9556
9556
|
});
|
|
9557
9557
|
const formData = vue.computed({
|
|
@@ -9635,7 +9635,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
9635
9635
|
};
|
|
9636
9636
|
}
|
|
9637
9637
|
});
|
|
9638
|
-
const _sfc_main$
|
|
9638
|
+
const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
9639
9639
|
__name: "BglForm",
|
|
9640
9640
|
props: {
|
|
9641
9641
|
label: {},
|
|
@@ -9733,7 +9733,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
9733
9733
|
label: _ctx.label
|
|
9734
9734
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
9735
9735
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
9736
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
9736
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
9737
9737
|
key: field.id || `${i2}p`,
|
|
9738
9738
|
modelValue: vue.unref(data2),
|
|
9739
9739
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -9757,7 +9757,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
9757
9757
|
label: _ctx.label
|
|
9758
9758
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
9759
9759
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
9760
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
9760
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
9761
9761
|
key: field.id || `${i2}p`,
|
|
9762
9762
|
modelValue: vue.unref(data2),
|
|
9763
9763
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -9776,8 +9776,8 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
9776
9776
|
};
|
|
9777
9777
|
}
|
|
9778
9778
|
});
|
|
9779
|
-
const _hoisted_1$
|
|
9780
|
-
const _sfc_main$
|
|
9779
|
+
const _hoisted_1$A = { key: 0 };
|
|
9780
|
+
const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
9781
9781
|
__name: "BglMultiStepForm",
|
|
9782
9782
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
9783
9783
|
bagelFormProps: { default: () => ({}) },
|
|
@@ -9844,8 +9844,8 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
9844
9844
|
mode: "out-in"
|
|
9845
9845
|
}, {
|
|
9846
9846
|
default: vue.withCtx(() => [
|
|
9847
|
-
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
9848
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
9847
|
+
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$A, [
|
|
9848
|
+
vue.createVNode(vue.unref(_sfc_main$H), vue.mergeProps({
|
|
9849
9849
|
ref_key: "formRef",
|
|
9850
9850
|
ref: formRef,
|
|
9851
9851
|
modelValue: formData.value,
|
|
@@ -9884,8 +9884,8 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
9884
9884
|
};
|
|
9885
9885
|
}
|
|
9886
9886
|
});
|
|
9887
|
-
const _hoisted_1$
|
|
9888
|
-
const _sfc_main$
|
|
9887
|
+
const _hoisted_1$z = { class: "primary-checkbox" };
|
|
9888
|
+
const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
9889
9889
|
__name: "Checkbox",
|
|
9890
9890
|
props: {
|
|
9891
9891
|
"modelValue": { type: Boolean, ...{ default: false } },
|
|
@@ -9895,7 +9895,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
9895
9895
|
setup(__props) {
|
|
9896
9896
|
const val = vue.useModel(__props, "modelValue");
|
|
9897
9897
|
return (_ctx, _cache) => {
|
|
9898
|
-
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$
|
|
9898
|
+
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$z, [
|
|
9899
9899
|
vue.renderSlot(_ctx.$slots, "label", {}, void 0, true),
|
|
9900
9900
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
9901
9901
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => val.value = $event),
|
|
@@ -9907,11 +9907,11 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
9907
9907
|
};
|
|
9908
9908
|
}
|
|
9909
9909
|
});
|
|
9910
|
-
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9911
|
-
const _hoisted_1$
|
|
9912
|
-
const _hoisted_2$
|
|
9913
|
-
const _hoisted_3$
|
|
9914
|
-
const _sfc_main$
|
|
9910
|
+
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-73f1d9ad"]]);
|
|
9911
|
+
const _hoisted_1$y = ["title"];
|
|
9912
|
+
const _hoisted_2$n = ["id", "value", "required"];
|
|
9913
|
+
const _hoisted_3$i = ["for"];
|
|
9914
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
9915
9915
|
__name: "CheckInput",
|
|
9916
9916
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
9917
9917
|
label: {},
|
|
@@ -9945,22 +9945,22 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
9945
9945
|
required: _ctx.required,
|
|
9946
9946
|
type: "checkbox",
|
|
9947
9947
|
class: "me-05"
|
|
9948
|
-
}, null, 8, _hoisted_2$
|
|
9948
|
+
}, null, 8, _hoisted_2$n), [
|
|
9949
9949
|
[vue.vModelCheckbox, checked.value]
|
|
9950
9950
|
]),
|
|
9951
9951
|
vue.createElementVNode("label", { for: inputId.value }, [
|
|
9952
9952
|
vue.renderSlot(_ctx.$slots, "label", {}, () => [
|
|
9953
9953
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
9954
9954
|
], true)
|
|
9955
|
-
], 8, _hoisted_3$
|
|
9956
|
-
], 10, _hoisted_1$
|
|
9955
|
+
], 8, _hoisted_3$i)
|
|
9956
|
+
], 10, _hoisted_1$y);
|
|
9957
9957
|
};
|
|
9958
9958
|
}
|
|
9959
9959
|
});
|
|
9960
|
-
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9961
|
-
const _hoisted_1$
|
|
9962
|
-
const _hoisted_2$
|
|
9963
|
-
const _sfc_main$
|
|
9960
|
+
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-1b4d18c6"]]);
|
|
9961
|
+
const _hoisted_1$x = ["title"];
|
|
9962
|
+
const _hoisted_2$m = ["id", "placeholder", "required"];
|
|
9963
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
9964
9964
|
__name: "ColorPicker",
|
|
9965
9965
|
props: {
|
|
9966
9966
|
label: {},
|
|
@@ -9998,11 +9998,11 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
9998
9998
|
placeholder: _ctx.placeholder || _ctx.label,
|
|
9999
9999
|
class: { "no-edit": !_ctx.editMode },
|
|
10000
10000
|
required: _ctx.required
|
|
10001
|
-
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$
|
|
10001
|
+
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$m), [
|
|
10002
10002
|
[vue.vModelText, inputVal.value]
|
|
10003
10003
|
])
|
|
10004
10004
|
])
|
|
10005
|
-
], 10, _hoisted_1$
|
|
10005
|
+
], 10, _hoisted_1$x)) : vue.createCommentVNode("", true);
|
|
10006
10006
|
};
|
|
10007
10007
|
}
|
|
10008
10008
|
});
|
|
@@ -18445,9 +18445,9 @@ const eo = ({
|
|
|
18445
18445
|
Object.entries(go).forEach(([e, t]) => {
|
|
18446
18446
|
e !== "default" && (Hn[e] = t);
|
|
18447
18447
|
});
|
|
18448
|
-
const _hoisted_1$
|
|
18449
|
-
const _hoisted_2$
|
|
18450
|
-
const _sfc_main$
|
|
18448
|
+
const _hoisted_1$w = ["title"];
|
|
18449
|
+
const _hoisted_2$l = { key: 0 };
|
|
18450
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
18451
18451
|
__name: "DateInput",
|
|
18452
18452
|
props: {
|
|
18453
18453
|
required: { type: Boolean },
|
|
@@ -18489,7 +18489,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
18489
18489
|
class: vue.normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
18490
18490
|
title: _ctx.label
|
|
18491
18491
|
}, [
|
|
18492
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$
|
|
18492
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$l, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
18493
18493
|
vue.createVNode(vue.unref(Hn), vue.mergeProps({
|
|
18494
18494
|
ref_key: "datePicker",
|
|
18495
18495
|
ref: datePicker,
|
|
@@ -18505,19 +18505,19 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
18505
18505
|
"minutes-grid-increment": _ctx.minutesGridIncrement,
|
|
18506
18506
|
"start-time": { hours: 8, minutes: 0 }
|
|
18507
18507
|
}), null, 16, ["modelValue", "required", "enable-time-picker", "allowed-dates", "time-picker-inline", "minutes-increment", "minutes-grid-increment"])
|
|
18508
|
-
], 10, _hoisted_1$
|
|
18508
|
+
], 10, _hoisted_1$w);
|
|
18509
18509
|
};
|
|
18510
18510
|
}
|
|
18511
18511
|
});
|
|
18512
|
-
const _hoisted_1$
|
|
18513
|
-
const _hoisted_2$
|
|
18514
|
-
const _hoisted_3$
|
|
18512
|
+
const _hoisted_1$v = { class: "datetime-wrap" };
|
|
18513
|
+
const _hoisted_2$k = { class: "date-wrap" };
|
|
18514
|
+
const _hoisted_3$h = {
|
|
18515
18515
|
key: 0,
|
|
18516
18516
|
class: "time-wrap"
|
|
18517
18517
|
};
|
|
18518
|
-
const _hoisted_4$
|
|
18519
|
-
const _hoisted_5$
|
|
18520
|
-
const _sfc_main$
|
|
18518
|
+
const _hoisted_4$c = ["id", "name", "value"];
|
|
18519
|
+
const _hoisted_5$b = ["for"];
|
|
18520
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
18521
18521
|
__name: "DatePicker",
|
|
18522
18522
|
props: {
|
|
18523
18523
|
label: {},
|
|
@@ -18545,8 +18545,8 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
18545
18545
|
return `${hour}:${minute}`;
|
|
18546
18546
|
});
|
|
18547
18547
|
return (_ctx, _cache) => {
|
|
18548
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
18549
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
18548
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$v, [
|
|
18549
|
+
vue.createElementVNode("div", _hoisted_2$k, [
|
|
18550
18550
|
vue.createVNode(vue.unref(Hn), vue.mergeProps({
|
|
18551
18551
|
modelValue: selectedDate.value,
|
|
18552
18552
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedDate.value = $event),
|
|
@@ -18564,7 +18564,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
18564
18564
|
_: 1
|
|
18565
18565
|
}, 16, ["modelValue", "allowed-dates", "disabled-dates"])
|
|
18566
18566
|
]),
|
|
18567
|
-
_ctx.showTimeWrap ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
18567
|
+
_ctx.showTimeWrap ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$h, [
|
|
18568
18568
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(hours), (hr2) => {
|
|
18569
18569
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: hr2 }, [
|
|
18570
18570
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
@@ -18573,12 +18573,12 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
18573
18573
|
type: "radio",
|
|
18574
18574
|
name: _ctx.label,
|
|
18575
18575
|
value: hr2
|
|
18576
|
-
}, null, 8, _hoisted_4$
|
|
18576
|
+
}, null, 8, _hoisted_4$c), [
|
|
18577
18577
|
[vue.vModelRadio, selectedHour.value]
|
|
18578
18578
|
]),
|
|
18579
18579
|
vue.createElementVNode("label", {
|
|
18580
18580
|
for: `${hr2}_${_ctx.id}`
|
|
18581
|
-
}, vue.toDisplayString(hr2), 9, _hoisted_5$
|
|
18581
|
+
}, vue.toDisplayString(hr2), 9, _hoisted_5$b)
|
|
18582
18582
|
], 64);
|
|
18583
18583
|
}), 128))
|
|
18584
18584
|
])) : vue.createCommentVNode("", true)
|
|
@@ -18586,20 +18586,20 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
18586
18586
|
};
|
|
18587
18587
|
}
|
|
18588
18588
|
});
|
|
18589
|
-
const _hoisted_1$
|
|
18590
|
-
const _hoisted_2$
|
|
18589
|
+
const _hoisted_1$u = { class: "bagel-input" };
|
|
18590
|
+
const _hoisted_2$j = {
|
|
18591
18591
|
key: 0,
|
|
18592
18592
|
class: "bgl-multi-preview"
|
|
18593
18593
|
};
|
|
18594
|
-
const _hoisted_3$
|
|
18595
|
-
const _hoisted_4$
|
|
18596
|
-
const _hoisted_5$
|
|
18597
|
-
const _hoisted_6$
|
|
18598
|
-
const _hoisted_7$
|
|
18594
|
+
const _hoisted_3$g = ["src"];
|
|
18595
|
+
const _hoisted_4$b = { class: "m-0" };
|
|
18596
|
+
const _hoisted_5$a = ["width", "src"];
|
|
18597
|
+
const _hoisted_6$8 = { class: "no-margin multi-preview-txt" };
|
|
18598
|
+
const _hoisted_7$5 = {
|
|
18599
18599
|
key: 0,
|
|
18600
18600
|
class: "progress"
|
|
18601
18601
|
};
|
|
18602
|
-
const _hoisted_8$
|
|
18602
|
+
const _hoisted_8$3 = {
|
|
18603
18603
|
key: 1,
|
|
18604
18604
|
class: "bgl-single-preview"
|
|
18605
18605
|
};
|
|
@@ -18610,7 +18610,7 @@ const _hoisted_10$2 = {
|
|
|
18610
18610
|
};
|
|
18611
18611
|
const _hoisted_11$1 = ["src"];
|
|
18612
18612
|
const _hoisted_12 = { class: "p-1 flex column hover fileUploadPlaceHolder justify-content-center mb-05" };
|
|
18613
|
-
const _sfc_main$
|
|
18613
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
18614
18614
|
__name: "FileUpload",
|
|
18615
18615
|
props: {
|
|
18616
18616
|
label: {},
|
|
@@ -18759,7 +18759,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18759
18759
|
}
|
|
18760
18760
|
return (_ctx, _cache) => {
|
|
18761
18761
|
const _directive_lightbox = vue.resolveDirective("lightbox");
|
|
18762
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
18762
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$u, [
|
|
18763
18763
|
vue.createElementVNode("label", null, vue.toDisplayString(_ctx.label), 1),
|
|
18764
18764
|
vue.createElementVNode("div", {
|
|
18765
18765
|
class: vue.normalizeClass(["fileUploadWrap", {
|
|
@@ -18777,7 +18777,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18777
18777
|
files: storageFiles.value,
|
|
18778
18778
|
fileQueue: fileQueue.value
|
|
18779
18779
|
}, () => [
|
|
18780
|
-
_ctx.multiple ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
18780
|
+
_ctx.multiple ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$j, [
|
|
18781
18781
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(storageFiles.value, (file) => {
|
|
18782
18782
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
18783
18783
|
key: file.id,
|
|
@@ -18788,14 +18788,14 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18788
18788
|
class: "multi-preview",
|
|
18789
18789
|
src: file.url,
|
|
18790
18790
|
alt: ""
|
|
18791
|
-
}, null, 8, _hoisted_3$
|
|
18791
|
+
}, null, 8, _hoisted_3$g)), [
|
|
18792
18792
|
[_directive_lightbox]
|
|
18793
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
18793
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
18794
18794
|
key: 1,
|
|
18795
18795
|
icon: "draft",
|
|
18796
18796
|
class: "multi-preview"
|
|
18797
18797
|
})),
|
|
18798
|
-
vue.createElementVNode("p", _hoisted_4$
|
|
18798
|
+
vue.createElementVNode("p", _hoisted_4$b, vue.toDisplayString(file.name), 1),
|
|
18799
18799
|
vue.createVNode(vue.unref(Btn), {
|
|
18800
18800
|
thin: "",
|
|
18801
18801
|
flat: "",
|
|
@@ -18817,19 +18817,19 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18817
18817
|
class: "multi-preview",
|
|
18818
18818
|
src: fileToUrl(fileQ.file),
|
|
18819
18819
|
alt: ""
|
|
18820
|
-
}, null, 8, _hoisted_5$
|
|
18821
|
-
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
18820
|
+
}, null, 8, _hoisted_5$a)) : vue.createCommentVNode("", true)
|
|
18821
|
+
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
18822
18822
|
key: 1,
|
|
18823
18823
|
icon: "draft",
|
|
18824
18824
|
class: "multi-preview"
|
|
18825
18825
|
})),
|
|
18826
|
-
vue.createElementVNode("p", _hoisted_6$
|
|
18826
|
+
vue.createElementVNode("p", _hoisted_6$8, vue.toDisplayString(fileQ.name), 1),
|
|
18827
18827
|
vue.createElementVNode("div", {
|
|
18828
18828
|
class: vue.normalizeClass(["pie", { complete: fileQ.progress === 100 }]),
|
|
18829
18829
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
18830
18830
|
}, [
|
|
18831
|
-
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$
|
|
18832
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18831
|
+
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$5, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
18832
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
18833
18833
|
class: "success",
|
|
18834
18834
|
icon: "check"
|
|
18835
18835
|
})
|
|
@@ -18837,7 +18837,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18837
18837
|
]);
|
|
18838
18838
|
}), 128))
|
|
18839
18839
|
])) : vue.createCommentVNode("", true),
|
|
18840
|
-
!_ctx.multiple && (storageFiles.value.length > 0 || fileQueue.value.length > 0) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8$
|
|
18840
|
+
!_ctx.multiple && (storageFiles.value.length > 0 || fileQueue.value.length > 0) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8$3, [
|
|
18841
18841
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(storageFiles.value, (file) => {
|
|
18842
18842
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
18843
18843
|
key: file.id,
|
|
@@ -18850,7 +18850,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18850
18850
|
alt: ""
|
|
18851
18851
|
}, null, 8, _hoisted_9$2)), [
|
|
18852
18852
|
[_directive_lightbox]
|
|
18853
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
18853
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
18854
18854
|
key: 1,
|
|
18855
18855
|
size: 4,
|
|
18856
18856
|
weight: "2",
|
|
@@ -18869,7 +18869,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18869
18869
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
18870
18870
|
}, [
|
|
18871
18871
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_10$2, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
18872
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18872
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
18873
18873
|
class: "success",
|
|
18874
18874
|
icon: "check"
|
|
18875
18875
|
})
|
|
@@ -18891,7 +18891,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18891
18891
|
browse
|
|
18892
18892
|
}, () => [
|
|
18893
18893
|
vue.createElementVNode("p", _hoisted_12, [
|
|
18894
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18894
|
+
vue.createVNode(vue.unref(_sfc_main$c), { icon: "upload_2" }),
|
|
18895
18895
|
_cache[0] || (_cache[0] = vue.createTextVNode(" Drop files here or click to upload "))
|
|
18896
18896
|
])
|
|
18897
18897
|
], true) : vue.createCommentVNode("", true)
|
|
@@ -18900,11 +18900,11 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
18900
18900
|
};
|
|
18901
18901
|
}
|
|
18902
18902
|
});
|
|
18903
|
-
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
18904
|
-
const _hoisted_1$
|
|
18905
|
-
const _hoisted_2$
|
|
18906
|
-
const _hoisted_3$
|
|
18907
|
-
const _sfc_main$
|
|
18903
|
+
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-be593d04"]]);
|
|
18904
|
+
const _hoisted_1$t = ["title"];
|
|
18905
|
+
const _hoisted_2$i = { key: 0 };
|
|
18906
|
+
const _hoisted_3$f = ["value", "placeholder"];
|
|
18907
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
18908
18908
|
__name: "JSONInput",
|
|
18909
18909
|
props: {
|
|
18910
18910
|
description: { default: "" },
|
|
@@ -18927,7 +18927,7 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
18927
18927
|
class: vue.normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
18928
18928
|
title: _ctx.description
|
|
18929
18929
|
}, [
|
|
18930
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$
|
|
18930
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$i, [
|
|
18931
18931
|
vue.createVNode(_component_LangText, { input: _ctx.label }, null, 8, ["input"])
|
|
18932
18932
|
])) : vue.createCommentVNode("", true),
|
|
18933
18933
|
vue.createElementVNode("textarea", {
|
|
@@ -18935,14 +18935,14 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
18935
18935
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18936
18936
|
placeholder: _ctx.placeholder,
|
|
18937
18937
|
onInput: handleInput
|
|
18938
|
-
}, null, 42, _hoisted_3$
|
|
18939
|
-
], 10, _hoisted_1$
|
|
18938
|
+
}, null, 42, _hoisted_3$f)
|
|
18939
|
+
], 10, _hoisted_1$t);
|
|
18940
18940
|
};
|
|
18941
18941
|
}
|
|
18942
18942
|
});
|
|
18943
|
-
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
18944
|
-
const _hoisted_1$
|
|
18945
|
-
const _sfc_main$
|
|
18943
|
+
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-1cbaeab2"]]);
|
|
18944
|
+
const _hoisted_1$s = { class: "relative" };
|
|
18945
|
+
const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
18946
18946
|
__name: "PasswordInput",
|
|
18947
18947
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
18948
18948
|
id: {},
|
|
@@ -18982,7 +18982,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
18982
18982
|
);
|
|
18983
18983
|
const inputType = vue.computed(() => showPwd.value ? "text" : "password");
|
|
18984
18984
|
return (_ctx, _cache) => {
|
|
18985
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
18985
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$s, [
|
|
18986
18986
|
vue.createVNode(vue.unref(TextInput), vue.mergeProps({
|
|
18987
18987
|
modelValue: password.value,
|
|
18988
18988
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event)
|
|
@@ -19002,20 +19002,20 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
19002
19002
|
};
|
|
19003
19003
|
}
|
|
19004
19004
|
});
|
|
19005
|
-
const _hoisted_1$
|
|
19006
|
-
const _hoisted_2$
|
|
19007
|
-
const _hoisted_3$
|
|
19008
|
-
const _hoisted_4$
|
|
19009
|
-
const _hoisted_5$
|
|
19010
|
-
const _hoisted_6$
|
|
19005
|
+
const _hoisted_1$r = ["for"];
|
|
19006
|
+
const _hoisted_2$h = ["id", "name", "value"];
|
|
19007
|
+
const _hoisted_3$e = { class: "flex w-100 gap-1 flex-wrap m_gap-05 m_gap-row-025" };
|
|
19008
|
+
const _hoisted_4$a = ["src", "alt"];
|
|
19009
|
+
const _hoisted_5$9 = { class: "" };
|
|
19010
|
+
const _hoisted_6$7 = {
|
|
19011
19011
|
key: 0,
|
|
19012
19012
|
class: "m-0 m_txt-14"
|
|
19013
19013
|
};
|
|
19014
|
-
const _hoisted_7$
|
|
19014
|
+
const _hoisted_7$4 = {
|
|
19015
19015
|
key: 1,
|
|
19016
19016
|
class: "txt-gray txt-12 m-0"
|
|
19017
19017
|
};
|
|
19018
|
-
const _sfc_main$
|
|
19018
|
+
const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
19019
19019
|
__name: "RadioGroup",
|
|
19020
19020
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
19021
19021
|
groupName: {},
|
|
@@ -19043,20 +19043,20 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
19043
19043
|
type: "radio",
|
|
19044
19044
|
name: _ctx.groupName,
|
|
19045
19045
|
value: opt.value
|
|
19046
|
-
}, null, 8, _hoisted_2$
|
|
19046
|
+
}, null, 8, _hoisted_2$h), [
|
|
19047
19047
|
[vue.vModelRadio, selectedOption.value]
|
|
19048
19048
|
]),
|
|
19049
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
19049
|
+
vue.createElementVNode("div", _hoisted_3$e, [
|
|
19050
19050
|
opt.imgSrc ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
19051
19051
|
key: 0,
|
|
19052
19052
|
class: "bg-popup shadow-light py-025 radius-05 m_w40",
|
|
19053
19053
|
width: "60",
|
|
19054
19054
|
src: opt.imgSrc,
|
|
19055
19055
|
alt: opt.imgAlt
|
|
19056
|
-
}, null, 8, _hoisted_4$
|
|
19057
|
-
vue.createElementVNode("div", _hoisted_5$
|
|
19058
|
-
opt.label ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_6$
|
|
19059
|
-
opt.subLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_7$
|
|
19056
|
+
}, null, 8, _hoisted_4$a)) : vue.createCommentVNode("", true),
|
|
19057
|
+
vue.createElementVNode("div", _hoisted_5$9, [
|
|
19058
|
+
opt.label ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_6$7, vue.toDisplayString(opt.label), 1)) : vue.createCommentVNode("", true),
|
|
19059
|
+
opt.subLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_7$4, vue.toDisplayString(opt.subLabel), 1)) : vue.createCommentVNode("", true)
|
|
19060
19060
|
]),
|
|
19061
19061
|
vue.renderSlot(_ctx.$slots, "radioItem", vue.mergeProps({ ref_for: true }, opt), void 0, true)
|
|
19062
19062
|
]),
|
|
@@ -19068,19 +19068,19 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
19068
19068
|
icon: "delete",
|
|
19069
19069
|
onClick: ($event) => _ctx.$emit("delete", opt)
|
|
19070
19070
|
}, null, 8, ["onClick"])) : vue.createCommentVNode("", true)
|
|
19071
|
-
], 8, _hoisted_1$
|
|
19071
|
+
], 8, _hoisted_1$r);
|
|
19072
19072
|
}), 128))
|
|
19073
19073
|
]);
|
|
19074
19074
|
};
|
|
19075
19075
|
}
|
|
19076
19076
|
});
|
|
19077
|
-
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19078
|
-
const _hoisted_1$
|
|
19079
|
-
const _hoisted_2$
|
|
19080
|
-
const _hoisted_3$
|
|
19081
|
-
const _hoisted_4$
|
|
19082
|
-
const _hoisted_5$
|
|
19083
|
-
const _sfc_main$
|
|
19077
|
+
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-3e9e030f"]]);
|
|
19078
|
+
const _hoisted_1$q = { class: "bagel-input" };
|
|
19079
|
+
const _hoisted_2$g = { class: "pb-025" };
|
|
19080
|
+
const _hoisted_3$d = { class: "flex gap-05 flex-wrap" };
|
|
19081
|
+
const _hoisted_4$9 = ["id", "name", "value", "checked"];
|
|
19082
|
+
const _hoisted_5$8 = ["for"];
|
|
19083
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
19084
19084
|
__name: "RadioPillsInput",
|
|
19085
19085
|
props: {
|
|
19086
19086
|
options: {},
|
|
@@ -19121,9 +19121,9 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
19121
19121
|
selectedValue.value = props2.modelValue;
|
|
19122
19122
|
});
|
|
19123
19123
|
return (_ctx, _cache) => {
|
|
19124
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19125
|
-
vue.createElementVNode("label", _hoisted_2$
|
|
19126
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
19124
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$q, [
|
|
19125
|
+
vue.createElementVNode("label", _hoisted_2$g, vue.toDisplayString(_ctx.label), 1),
|
|
19126
|
+
vue.createElementVNode("div", _hoisted_3$d, [
|
|
19127
19127
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.options, (option2, index2) => {
|
|
19128
19128
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
19129
19129
|
key: index2,
|
|
@@ -19136,10 +19136,10 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
19136
19136
|
value: getValue(option2),
|
|
19137
19137
|
checked: vue.unref(selectedValue) === getValue(option2),
|
|
19138
19138
|
onChange: handleSelect
|
|
19139
|
-
}, null, 40, _hoisted_4$
|
|
19139
|
+
}, null, 40, _hoisted_4$9),
|
|
19140
19140
|
vue.createElementVNode("label", {
|
|
19141
19141
|
for: `${_ctx.id}-${getValue(option2)}`
|
|
19142
|
-
}, vue.toDisplayString(getLabel(option2)), 9, _hoisted_5$
|
|
19142
|
+
}, vue.toDisplayString(getLabel(option2)), 9, _hoisted_5$8)
|
|
19143
19143
|
]);
|
|
19144
19144
|
}), 128))
|
|
19145
19145
|
])
|
|
@@ -19147,7 +19147,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
19147
19147
|
};
|
|
19148
19148
|
}
|
|
19149
19149
|
});
|
|
19150
|
-
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19150
|
+
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-8cdfe758"]]);
|
|
19151
19151
|
function OrderedMap(content) {
|
|
19152
19152
|
this.content = content;
|
|
19153
19153
|
}
|
|
@@ -21614,7 +21614,7 @@ class DOMParser {
|
|
|
21614
21614
|
*/
|
|
21615
21615
|
parse(dom, options = {}) {
|
|
21616
21616
|
let context = new ParseContext(this, options, false);
|
|
21617
|
-
context.addAll(dom, options.from, options.to);
|
|
21617
|
+
context.addAll(dom, Mark$1.none, options.from, options.to);
|
|
21618
21618
|
return context.finish();
|
|
21619
21619
|
}
|
|
21620
21620
|
/**
|
|
@@ -21627,7 +21627,7 @@ class DOMParser {
|
|
|
21627
21627
|
*/
|
|
21628
21628
|
parseSlice(dom, options = {}) {
|
|
21629
21629
|
let context = new ParseContext(this, options, true);
|
|
21630
|
-
context.addAll(dom, options.from, options.to);
|
|
21630
|
+
context.addAll(dom, Mark$1.none, options.from, options.to);
|
|
21631
21631
|
return Slice.maxOpen(context.finish());
|
|
21632
21632
|
}
|
|
21633
21633
|
/**
|
|
@@ -21760,16 +21760,14 @@ function wsOptionsFor(type3, preserveWhitespace, base2) {
|
|
|
21760
21760
|
return type3 && type3.whitespace == "pre" ? OPT_PRESERVE_WS | OPT_PRESERVE_WS_FULL : base2 & ~OPT_OPEN_LEFT;
|
|
21761
21761
|
}
|
|
21762
21762
|
class NodeContext {
|
|
21763
|
-
constructor(type3, attrs, marks,
|
|
21763
|
+
constructor(type3, attrs, marks, solid, match2, options) {
|
|
21764
21764
|
this.type = type3;
|
|
21765
21765
|
this.attrs = attrs;
|
|
21766
21766
|
this.marks = marks;
|
|
21767
|
-
this.pendingMarks = pendingMarks;
|
|
21768
21767
|
this.solid = solid;
|
|
21769
21768
|
this.options = options;
|
|
21770
21769
|
this.content = [];
|
|
21771
21770
|
this.activeMarks = Mark$1.none;
|
|
21772
|
-
this.stashMarks = [];
|
|
21773
21771
|
this.match = match2 || (options & OPT_OPEN_LEFT ? null : type3.contentMatch);
|
|
21774
21772
|
}
|
|
21775
21773
|
findWrapping(node) {
|
|
@@ -21807,20 +21805,6 @@ class NodeContext {
|
|
|
21807
21805
|
content = content.append(this.match.fillBefore(Fragment.empty, true));
|
|
21808
21806
|
return this.type ? this.type.create(this.attrs, content, this.marks) : content;
|
|
21809
21807
|
}
|
|
21810
|
-
popFromStashMark(mark) {
|
|
21811
|
-
for (let i2 = this.stashMarks.length - 1; i2 >= 0; i2--)
|
|
21812
|
-
if (mark.eq(this.stashMarks[i2]))
|
|
21813
|
-
return this.stashMarks.splice(i2, 1)[0];
|
|
21814
|
-
}
|
|
21815
|
-
applyPending(nextType) {
|
|
21816
|
-
for (let i2 = 0, pending = this.pendingMarks; i2 < pending.length; i2++) {
|
|
21817
|
-
let mark = pending[i2];
|
|
21818
|
-
if ((this.type ? this.type.allowsMarkType(mark.type) : markMayApply(mark.type, nextType)) && !mark.isInSet(this.activeMarks)) {
|
|
21819
|
-
this.activeMarks = mark.addToSet(this.activeMarks);
|
|
21820
|
-
this.pendingMarks = mark.removeFromSet(this.pendingMarks);
|
|
21821
|
-
}
|
|
21822
|
-
}
|
|
21823
|
-
}
|
|
21824
21808
|
inlineContext(node) {
|
|
21825
21809
|
if (this.type)
|
|
21826
21810
|
return this.type.inlineContent;
|
|
@@ -21838,11 +21822,11 @@ class ParseContext {
|
|
|
21838
21822
|
let topNode = options.topNode, topContext;
|
|
21839
21823
|
let topOptions = wsOptionsFor(null, options.preserveWhitespace, 0) | (isOpen ? OPT_OPEN_LEFT : 0);
|
|
21840
21824
|
if (topNode)
|
|
21841
|
-
topContext = new NodeContext(topNode.type, topNode.attrs, Mark$1.none,
|
|
21825
|
+
topContext = new NodeContext(topNode.type, topNode.attrs, Mark$1.none, true, options.topMatch || topNode.type.contentMatch, topOptions);
|
|
21842
21826
|
else if (isOpen)
|
|
21843
|
-
topContext = new NodeContext(null, null, Mark$1.none,
|
|
21827
|
+
topContext = new NodeContext(null, null, Mark$1.none, true, null, topOptions);
|
|
21844
21828
|
else
|
|
21845
|
-
topContext = new NodeContext(parser.schema.topNodeType, null, Mark$1.none,
|
|
21829
|
+
topContext = new NodeContext(parser.schema.topNodeType, null, Mark$1.none, true, null, topOptions);
|
|
21846
21830
|
this.nodes = [topContext];
|
|
21847
21831
|
this.find = options.findPositions;
|
|
21848
21832
|
this.needsBlock = false;
|
|
@@ -21853,31 +21837,13 @@ class ParseContext {
|
|
|
21853
21837
|
// Add a DOM node to the content. Text is inserted as text node,
|
|
21854
21838
|
// otherwise, the node is passed to `addElement` or, if it has a
|
|
21855
21839
|
// `style` attribute, `addElementWithStyles`.
|
|
21856
|
-
addDOM(dom) {
|
|
21840
|
+
addDOM(dom, marks) {
|
|
21857
21841
|
if (dom.nodeType == 3)
|
|
21858
|
-
this.addTextNode(dom);
|
|
21842
|
+
this.addTextNode(dom, marks);
|
|
21859
21843
|
else if (dom.nodeType == 1)
|
|
21860
|
-
this.addElement(dom);
|
|
21861
|
-
}
|
|
21862
|
-
|
|
21863
|
-
let style2 = dom.style;
|
|
21864
|
-
if (!style2 || !style2.length)
|
|
21865
|
-
return f2();
|
|
21866
|
-
let marks = this.readStyles(dom.style);
|
|
21867
|
-
if (!marks)
|
|
21868
|
-
return;
|
|
21869
|
-
let [addMarks, removeMarks] = marks, top2 = this.top;
|
|
21870
|
-
for (let i2 = 0; i2 < removeMarks.length; i2++)
|
|
21871
|
-
this.removePendingMark(removeMarks[i2], top2);
|
|
21872
|
-
for (let i2 = 0; i2 < addMarks.length; i2++)
|
|
21873
|
-
this.addPendingMark(addMarks[i2]);
|
|
21874
|
-
f2();
|
|
21875
|
-
for (let i2 = 0; i2 < addMarks.length; i2++)
|
|
21876
|
-
this.removePendingMark(addMarks[i2], top2);
|
|
21877
|
-
for (let i2 = 0; i2 < removeMarks.length; i2++)
|
|
21878
|
-
this.addPendingMark(removeMarks[i2]);
|
|
21879
|
-
}
|
|
21880
|
-
addTextNode(dom) {
|
|
21844
|
+
this.addElement(dom, marks);
|
|
21845
|
+
}
|
|
21846
|
+
addTextNode(dom, marks) {
|
|
21881
21847
|
let value = dom.nodeValue;
|
|
21882
21848
|
let top2 = this.top;
|
|
21883
21849
|
if (top2.options & OPT_PRESERVE_WS_FULL || top2.inlineContext(dom) || /[^ \t\r\n\u000c]/.test(value)) {
|
|
@@ -21895,7 +21861,7 @@ class ParseContext {
|
|
|
21895
21861
|
value = value.replace(/\r\n?/g, "\n");
|
|
21896
21862
|
}
|
|
21897
21863
|
if (value)
|
|
21898
|
-
this.insertNode(this.parser.schema.text(value));
|
|
21864
|
+
this.insertNode(this.parser.schema.text(value), marks);
|
|
21899
21865
|
this.findInText(dom);
|
|
21900
21866
|
} else {
|
|
21901
21867
|
this.findInside(dom);
|
|
@@ -21903,14 +21869,14 @@ class ParseContext {
|
|
|
21903
21869
|
}
|
|
21904
21870
|
// Try to find a handler for the given tag and use that to parse. If
|
|
21905
21871
|
// none is found, the element's content nodes are added directly.
|
|
21906
|
-
addElement(dom, matchAfter) {
|
|
21872
|
+
addElement(dom, marks, matchAfter) {
|
|
21907
21873
|
let name = dom.nodeName.toLowerCase(), ruleID;
|
|
21908
21874
|
if (listTags.hasOwnProperty(name) && this.parser.normalizeLists)
|
|
21909
21875
|
normalizeList(dom);
|
|
21910
21876
|
let rule = this.options.ruleFromNode && this.options.ruleFromNode(dom) || (ruleID = this.parser.matchTag(dom, this, matchAfter));
|
|
21911
21877
|
if (rule ? rule.ignore : ignoreTags.hasOwnProperty(name)) {
|
|
21912
21878
|
this.findInside(dom);
|
|
21913
|
-
this.ignoreFallback(dom);
|
|
21879
|
+
this.ignoreFallback(dom, marks);
|
|
21914
21880
|
} else if (!rule || rule.skip || rule.closeParent) {
|
|
21915
21881
|
if (rule && rule.closeParent)
|
|
21916
21882
|
this.open = Math.max(0, this.open - 1);
|
|
@@ -21926,38 +21892,37 @@ class ParseContext {
|
|
|
21926
21892
|
if (!top2.type)
|
|
21927
21893
|
this.needsBlock = true;
|
|
21928
21894
|
} else if (!dom.firstChild) {
|
|
21929
|
-
this.leafFallback(dom);
|
|
21895
|
+
this.leafFallback(dom, marks);
|
|
21930
21896
|
return;
|
|
21931
21897
|
}
|
|
21932
|
-
|
|
21933
|
-
|
|
21934
|
-
|
|
21935
|
-
this.withStyleRules(dom, () => this.addAll(dom));
|
|
21898
|
+
let innerMarks = rule && rule.skip ? marks : this.readStyles(dom, marks);
|
|
21899
|
+
if (innerMarks)
|
|
21900
|
+
this.addAll(dom, innerMarks);
|
|
21936
21901
|
if (sync)
|
|
21937
21902
|
this.sync(top2);
|
|
21938
21903
|
this.needsBlock = oldNeedsBlock;
|
|
21939
21904
|
} else {
|
|
21940
|
-
this.
|
|
21941
|
-
|
|
21942
|
-
|
|
21905
|
+
let innerMarks = this.readStyles(dom, marks);
|
|
21906
|
+
if (innerMarks)
|
|
21907
|
+
this.addElementByRule(dom, rule, innerMarks, rule.consuming === false ? ruleID : void 0);
|
|
21943
21908
|
}
|
|
21944
21909
|
}
|
|
21945
21910
|
// Called for leaf DOM nodes that would otherwise be ignored
|
|
21946
|
-
leafFallback(dom) {
|
|
21911
|
+
leafFallback(dom, marks) {
|
|
21947
21912
|
if (dom.nodeName == "BR" && this.top.type && this.top.type.inlineContent)
|
|
21948
|
-
this.addTextNode(dom.ownerDocument.createTextNode("\n"));
|
|
21913
|
+
this.addTextNode(dom.ownerDocument.createTextNode("\n"), marks);
|
|
21949
21914
|
}
|
|
21950
21915
|
// Called for ignored nodes
|
|
21951
|
-
ignoreFallback(dom) {
|
|
21916
|
+
ignoreFallback(dom, marks) {
|
|
21952
21917
|
if (dom.nodeName == "BR" && (!this.top.type || !this.top.type.inlineContent))
|
|
21953
|
-
this.findPlace(this.parser.schema.text("-"));
|
|
21918
|
+
this.findPlace(this.parser.schema.text("-"), marks);
|
|
21954
21919
|
}
|
|
21955
21920
|
// Run any style parser associated with the node's styles. Either
|
|
21956
|
-
// return an array of marks, or null to indicate some of the
|
|
21957
|
-
// had a rule with `ignore` set.
|
|
21958
|
-
readStyles(
|
|
21959
|
-
let
|
|
21960
|
-
if (styles.length)
|
|
21921
|
+
// return an updated array of marks, or null to indicate some of the
|
|
21922
|
+
// styles had a rule with `ignore` set.
|
|
21923
|
+
readStyles(dom, marks) {
|
|
21924
|
+
let styles = dom.style;
|
|
21925
|
+
if (styles && styles.length)
|
|
21961
21926
|
for (let i2 = 0; i2 < this.parser.matchedStyles.length; i2++) {
|
|
21962
21927
|
let name = this.parser.matchedStyles[i2], value = styles.getPropertyValue(name);
|
|
21963
21928
|
if (value)
|
|
@@ -21967,47 +21932,46 @@ class ParseContext {
|
|
|
21967
21932
|
break;
|
|
21968
21933
|
if (rule.ignore)
|
|
21969
21934
|
return null;
|
|
21970
|
-
if (rule.clearMark)
|
|
21971
|
-
|
|
21972
|
-
|
|
21973
|
-
|
|
21974
|
-
});
|
|
21975
|
-
} else {
|
|
21976
|
-
add2 = this.parser.schema.marks[rule.mark].create(rule.attrs).addToSet(add2);
|
|
21977
|
-
}
|
|
21935
|
+
if (rule.clearMark)
|
|
21936
|
+
marks = marks.filter((m2) => !rule.clearMark(m2));
|
|
21937
|
+
else
|
|
21938
|
+
marks = marks.concat(this.parser.schema.marks[rule.mark].create(rule.attrs));
|
|
21978
21939
|
if (rule.consuming === false)
|
|
21979
21940
|
after = rule;
|
|
21980
21941
|
else
|
|
21981
21942
|
break;
|
|
21982
21943
|
}
|
|
21983
21944
|
}
|
|
21984
|
-
return
|
|
21945
|
+
return marks;
|
|
21985
21946
|
}
|
|
21986
21947
|
// Look up a handler for the given node. If none are found, return
|
|
21987
21948
|
// false. Otherwise, apply it, use its return value to drive the way
|
|
21988
21949
|
// the node's content is wrapped, and return true.
|
|
21989
|
-
addElementByRule(dom, rule, continueAfter) {
|
|
21990
|
-
let sync, nodeType
|
|
21950
|
+
addElementByRule(dom, rule, marks, continueAfter) {
|
|
21951
|
+
let sync, nodeType;
|
|
21991
21952
|
if (rule.node) {
|
|
21992
21953
|
nodeType = this.parser.schema.nodes[rule.node];
|
|
21993
21954
|
if (!nodeType.isLeaf) {
|
|
21994
|
-
|
|
21995
|
-
|
|
21996
|
-
|
|
21955
|
+
let inner = this.enter(nodeType, rule.attrs || null, marks, rule.preserveWhitespace);
|
|
21956
|
+
if (inner) {
|
|
21957
|
+
sync = true;
|
|
21958
|
+
marks = inner;
|
|
21959
|
+
}
|
|
21960
|
+
} else if (!this.insertNode(nodeType.create(rule.attrs), marks)) {
|
|
21961
|
+
this.leafFallback(dom, marks);
|
|
21997
21962
|
}
|
|
21998
21963
|
} else {
|
|
21999
21964
|
let markType = this.parser.schema.marks[rule.mark];
|
|
22000
|
-
|
|
22001
|
-
this.addPendingMark(mark);
|
|
21965
|
+
marks = marks.concat(markType.create(rule.attrs));
|
|
22002
21966
|
}
|
|
22003
21967
|
let startIn = this.top;
|
|
22004
21968
|
if (nodeType && nodeType.isLeaf) {
|
|
22005
21969
|
this.findInside(dom);
|
|
22006
21970
|
} else if (continueAfter) {
|
|
22007
|
-
this.addElement(dom, continueAfter);
|
|
21971
|
+
this.addElement(dom, marks, continueAfter);
|
|
22008
21972
|
} else if (rule.getContent) {
|
|
22009
21973
|
this.findInside(dom);
|
|
22010
|
-
rule.getContent(dom, this.parser.schema).forEach((node) => this.insertNode(node));
|
|
21974
|
+
rule.getContent(dom, this.parser.schema).forEach((node) => this.insertNode(node, marks));
|
|
22011
21975
|
} else {
|
|
22012
21976
|
let contentDOM = dom;
|
|
22013
21977
|
if (typeof rule.contentElement == "string")
|
|
@@ -22017,28 +21981,26 @@ class ParseContext {
|
|
|
22017
21981
|
else if (rule.contentElement)
|
|
22018
21982
|
contentDOM = rule.contentElement;
|
|
22019
21983
|
this.findAround(dom, contentDOM, true);
|
|
22020
|
-
this.addAll(contentDOM);
|
|
21984
|
+
this.addAll(contentDOM, marks);
|
|
22021
21985
|
}
|
|
22022
21986
|
if (sync && this.sync(startIn))
|
|
22023
21987
|
this.open--;
|
|
22024
|
-
if (mark)
|
|
22025
|
-
this.removePendingMark(mark, startIn);
|
|
22026
21988
|
}
|
|
22027
21989
|
// Add all child nodes between `startIndex` and `endIndex` (or the
|
|
22028
21990
|
// whole node, if not given). If `sync` is passed, use it to
|
|
22029
21991
|
// synchronize after every block element.
|
|
22030
|
-
addAll(parent, startIndex, endIndex) {
|
|
21992
|
+
addAll(parent, marks, startIndex, endIndex) {
|
|
22031
21993
|
let index2 = startIndex || 0;
|
|
22032
21994
|
for (let dom = startIndex ? parent.childNodes[startIndex] : parent.firstChild, end2 = endIndex == null ? null : parent.childNodes[endIndex]; dom != end2; dom = dom.nextSibling, ++index2) {
|
|
22033
21995
|
this.findAtPoint(parent, index2);
|
|
22034
|
-
this.addDOM(dom);
|
|
21996
|
+
this.addDOM(dom, marks);
|
|
22035
21997
|
}
|
|
22036
21998
|
this.findAtPoint(parent, index2);
|
|
22037
21999
|
}
|
|
22038
22000
|
// Try to find a way to fit the given node type into the current
|
|
22039
22001
|
// context. May add intermediate wrappers and/or leave non-solid
|
|
22040
22002
|
// nodes that we're in.
|
|
22041
|
-
findPlace(node) {
|
|
22003
|
+
findPlace(node, marks) {
|
|
22042
22004
|
let route, sync;
|
|
22043
22005
|
for (let depth = this.open; depth >= 0; depth--) {
|
|
22044
22006
|
let cx = this.nodes[depth];
|
|
@@ -22053,53 +22015,61 @@ class ParseContext {
|
|
|
22053
22015
|
break;
|
|
22054
22016
|
}
|
|
22055
22017
|
if (!route)
|
|
22056
|
-
return
|
|
22018
|
+
return null;
|
|
22057
22019
|
this.sync(sync);
|
|
22058
22020
|
for (let i2 = 0; i2 < route.length; i2++)
|
|
22059
|
-
this.enterInner(route[i2], null, false);
|
|
22060
|
-
return
|
|
22021
|
+
marks = this.enterInner(route[i2], null, marks, false);
|
|
22022
|
+
return marks;
|
|
22061
22023
|
}
|
|
22062
22024
|
// Try to insert the given node, adjusting the context when needed.
|
|
22063
|
-
insertNode(node) {
|
|
22025
|
+
insertNode(node, marks) {
|
|
22064
22026
|
if (node.isInline && this.needsBlock && !this.top.type) {
|
|
22065
22027
|
let block = this.textblockFromContext();
|
|
22066
22028
|
if (block)
|
|
22067
|
-
this.enterInner(block);
|
|
22029
|
+
marks = this.enterInner(block, null, marks);
|
|
22068
22030
|
}
|
|
22069
|
-
|
|
22031
|
+
let innerMarks = this.findPlace(node, marks);
|
|
22032
|
+
if (innerMarks) {
|
|
22070
22033
|
this.closeExtra();
|
|
22071
22034
|
let top2 = this.top;
|
|
22072
|
-
top2.applyPending(node.type);
|
|
22073
22035
|
if (top2.match)
|
|
22074
22036
|
top2.match = top2.match.matchType(node.type);
|
|
22075
|
-
let
|
|
22076
|
-
for (let
|
|
22077
|
-
if (
|
|
22078
|
-
|
|
22079
|
-
top2.content.push(node.mark(
|
|
22037
|
+
let nodeMarks = Mark$1.none;
|
|
22038
|
+
for (let m2 of innerMarks.concat(node.marks))
|
|
22039
|
+
if (top2.type ? top2.type.allowsMarkType(m2.type) : markMayApply(m2.type, node.type))
|
|
22040
|
+
nodeMarks = m2.addToSet(nodeMarks);
|
|
22041
|
+
top2.content.push(node.mark(nodeMarks));
|
|
22080
22042
|
return true;
|
|
22081
22043
|
}
|
|
22082
22044
|
return false;
|
|
22083
22045
|
}
|
|
22084
22046
|
// Try to start a node of the given type, adjusting the context when
|
|
22085
22047
|
// necessary.
|
|
22086
|
-
enter(type3, attrs, preserveWS) {
|
|
22087
|
-
let
|
|
22088
|
-
if (
|
|
22089
|
-
this.enterInner(type3, attrs, true, preserveWS);
|
|
22090
|
-
return
|
|
22048
|
+
enter(type3, attrs, marks, preserveWS) {
|
|
22049
|
+
let innerMarks = this.findPlace(type3.create(attrs), marks);
|
|
22050
|
+
if (innerMarks)
|
|
22051
|
+
innerMarks = this.enterInner(type3, attrs, marks, true, preserveWS);
|
|
22052
|
+
return innerMarks;
|
|
22091
22053
|
}
|
|
22092
22054
|
// Open a node of the given type
|
|
22093
|
-
enterInner(type3, attrs
|
|
22055
|
+
enterInner(type3, attrs, marks, solid = false, preserveWS) {
|
|
22094
22056
|
this.closeExtra();
|
|
22095
22057
|
let top2 = this.top;
|
|
22096
|
-
top2.applyPending(type3);
|
|
22097
22058
|
top2.match = top2.match && top2.match.matchType(type3);
|
|
22098
22059
|
let options = wsOptionsFor(type3, preserveWS, top2.options);
|
|
22099
22060
|
if (top2.options & OPT_OPEN_LEFT && top2.content.length == 0)
|
|
22100
22061
|
options |= OPT_OPEN_LEFT;
|
|
22101
|
-
|
|
22062
|
+
let applyMarks = Mark$1.none;
|
|
22063
|
+
marks = marks.filter((m2) => {
|
|
22064
|
+
if (top2.type ? top2.type.allowsMarkType(m2.type) : markMayApply(m2.type, type3)) {
|
|
22065
|
+
applyMarks = m2.addToSet(applyMarks);
|
|
22066
|
+
return false;
|
|
22067
|
+
}
|
|
22068
|
+
return true;
|
|
22069
|
+
});
|
|
22070
|
+
this.nodes.push(new NodeContext(type3, attrs, applyMarks, solid, null, options));
|
|
22102
22071
|
this.open++;
|
|
22072
|
+
return marks;
|
|
22103
22073
|
}
|
|
22104
22074
|
// Make sure all nodes above this.open are finished and added to
|
|
22105
22075
|
// their parents
|
|
@@ -22210,28 +22180,6 @@ class ParseContext {
|
|
|
22210
22180
|
return type3;
|
|
22211
22181
|
}
|
|
22212
22182
|
}
|
|
22213
|
-
addPendingMark(mark) {
|
|
22214
|
-
let found2 = findSameMarkInSet(mark, this.top.pendingMarks);
|
|
22215
|
-
if (found2)
|
|
22216
|
-
this.top.stashMarks.push(found2);
|
|
22217
|
-
this.top.pendingMarks = mark.addToSet(this.top.pendingMarks);
|
|
22218
|
-
}
|
|
22219
|
-
removePendingMark(mark, upto) {
|
|
22220
|
-
for (let depth = this.open; depth >= 0; depth--) {
|
|
22221
|
-
let level = this.nodes[depth];
|
|
22222
|
-
let found2 = level.pendingMarks.lastIndexOf(mark);
|
|
22223
|
-
if (found2 > -1) {
|
|
22224
|
-
level.pendingMarks = mark.removeFromSet(level.pendingMarks);
|
|
22225
|
-
} else {
|
|
22226
|
-
level.activeMarks = mark.removeFromSet(level.activeMarks);
|
|
22227
|
-
let stashMark = level.popFromStashMark(mark);
|
|
22228
|
-
if (stashMark && level.type && level.type.allowsMarkType(stashMark.type))
|
|
22229
|
-
level.activeMarks = stashMark.addToSet(level.activeMarks);
|
|
22230
|
-
}
|
|
22231
|
-
if (level == upto)
|
|
22232
|
-
break;
|
|
22233
|
-
}
|
|
22234
|
-
}
|
|
22235
22183
|
}
|
|
22236
22184
|
function normalizeList(dom) {
|
|
22237
22185
|
for (let child = dom.firstChild, prevItem = null; child; child = child.nextSibling) {
|
|
@@ -22275,12 +22223,6 @@ function markMayApply(markType, nodeType) {
|
|
|
22275
22223
|
return true;
|
|
22276
22224
|
}
|
|
22277
22225
|
}
|
|
22278
|
-
function findSameMarkInSet(mark, set2) {
|
|
22279
|
-
for (let i2 = 0; i2 < set2.length; i2++) {
|
|
22280
|
-
if (mark.eq(set2[i2]))
|
|
22281
|
-
return set2[i2];
|
|
22282
|
-
}
|
|
22283
|
-
}
|
|
22284
22226
|
class DOMSerializer {
|
|
22285
22227
|
/**
|
|
22286
22228
|
Create a serializer. `nodes` should map node names to functions
|
|
@@ -23383,7 +23325,8 @@ function setBlockType$1(tr2, from2, to2, type3, attrs) {
|
|
|
23383
23325
|
throw new RangeError("Type given to setBlockType should be a textblock");
|
|
23384
23326
|
let mapFrom = tr2.steps.length;
|
|
23385
23327
|
tr2.doc.nodesBetween(from2, to2, (node, pos) => {
|
|
23386
|
-
|
|
23328
|
+
let attrsHere = typeof attrs == "function" ? attrs(node) : attrs;
|
|
23329
|
+
if (node.isTextblock && !node.hasMarkup(type3, attrsHere) && canChangeType(tr2.doc, tr2.mapping.slice(mapFrom).map(pos), type3)) {
|
|
23387
23330
|
let convertNewlines = null;
|
|
23388
23331
|
if (type3.schema.linebreakReplacement) {
|
|
23389
23332
|
let pre = type3.whitespace == "pre", supportLinebreak = !!type3.contentMatch.matchType(type3.schema.linebreakReplacement);
|
|
@@ -23397,7 +23340,7 @@ function setBlockType$1(tr2, from2, to2, type3, attrs) {
|
|
|
23397
23340
|
clearIncompatible(tr2, tr2.mapping.slice(mapFrom).map(pos, 1), type3, void 0, convertNewlines === null);
|
|
23398
23341
|
let mapping = tr2.mapping.slice(mapFrom);
|
|
23399
23342
|
let startM = mapping.map(pos, 1), endM = mapping.map(pos + node.nodeSize, 1);
|
|
23400
|
-
tr2.step(new ReplaceAroundStep(startM, endM, startM + 1, endM - 1, new Slice(Fragment.from(type3.create(
|
|
23343
|
+
tr2.step(new ReplaceAroundStep(startM, endM, startM + 1, endM - 1, new Slice(Fragment.from(type3.create(attrsHere, null, node.marks)), 0, 0), 1, true));
|
|
23401
23344
|
if (convertNewlines === true)
|
|
23402
23345
|
replaceNewlines(tr2, node, pos, mapFrom);
|
|
23403
23346
|
return false;
|
|
@@ -25292,14 +25235,14 @@ function caretFromPoint(doc2, x2, y2) {
|
|
|
25292
25235
|
try {
|
|
25293
25236
|
let pos = doc2.caretPositionFromPoint(x2, y2);
|
|
25294
25237
|
if (pos)
|
|
25295
|
-
return { node: pos.offsetNode, offset: pos.offset };
|
|
25238
|
+
return { node: pos.offsetNode, offset: Math.min(nodeSize(pos.offsetNode), pos.offset) };
|
|
25296
25239
|
} catch (_2) {
|
|
25297
25240
|
}
|
|
25298
25241
|
}
|
|
25299
25242
|
if (doc2.caretRangeFromPoint) {
|
|
25300
25243
|
let range2 = doc2.caretRangeFromPoint(x2, y2);
|
|
25301
25244
|
if (range2)
|
|
25302
|
-
return { node: range2.startContainer, offset: range2.startOffset };
|
|
25245
|
+
return { node: range2.startContainer, offset: Math.min(nodeSize(range2.startContainer), range2.startOffset) };
|
|
25303
25246
|
}
|
|
25304
25247
|
}
|
|
25305
25248
|
const nav = typeof navigator != "undefined" ? navigator : null;
|
|
@@ -25753,6 +25696,8 @@ function endOfTextblockHorizontal(view, state2, dir) {
|
|
|
25753
25696
|
return false;
|
|
25754
25697
|
let offset2 = $head.parentOffset, atStart = !offset2, atEnd = offset2 == $head.parent.content.size;
|
|
25755
25698
|
let sel = view.domSelection();
|
|
25699
|
+
if (!sel)
|
|
25700
|
+
return $head.pos == $head.start() || $head.pos == $head.end();
|
|
25756
25701
|
if (!maybeRTL.test($head.parent.textContent) || !sel.modify)
|
|
25757
25702
|
return dir == "left" || dir == "backward" ? atStart : atEnd;
|
|
25758
25703
|
return withFlushedState(view, state2, () => {
|
|
@@ -26849,6 +26794,7 @@ class ViewTreeUpdater {
|
|
|
26849
26794
|
this.index++;
|
|
26850
26795
|
return true;
|
|
26851
26796
|
} else if (!locked && (updated = this.recreateWrapper(next, node, outerDeco, innerDeco, view, pos))) {
|
|
26797
|
+
this.destroyBetween(this.index, i2);
|
|
26852
26798
|
this.top.children[this.index] = updated;
|
|
26853
26799
|
if (updated.contentDOM) {
|
|
26854
26800
|
updated.dirty = CONTENT_DIRTY;
|
|
@@ -26867,7 +26813,7 @@ class ViewTreeUpdater {
|
|
|
26867
26813
|
// When a node with content is replaced by a different node with
|
|
26868
26814
|
// identical content, move over its children.
|
|
26869
26815
|
recreateWrapper(next, node, outerDeco, innerDeco, view, pos) {
|
|
26870
|
-
if (next.dirty || node.isAtom || !next.children.length || !next.node.content.eq(node.content))
|
|
26816
|
+
if (next.dirty || node.isAtom || !next.children.length || !next.node.content.eq(node.content) || !sameOuterDeco(outerDeco, next.outerDeco) || !innerDeco.eq(next.innerDeco))
|
|
26871
26817
|
return null;
|
|
26872
26818
|
let wrapper = NodeViewDesc.create(this.top, node, outerDeco, innerDeco, view, pos);
|
|
26873
26819
|
if (wrapper.contentDOM) {
|
|
@@ -27103,9 +27049,9 @@ function selectionFromDOM(view, origin2 = null) {
|
|
|
27103
27049
|
let head = view.docView.posFromDOM(domSel.focusNode, domSel.focusOffset, 1);
|
|
27104
27050
|
if (head < 0)
|
|
27105
27051
|
return null;
|
|
27106
|
-
let $head = doc2.resolve(head),
|
|
27052
|
+
let $head = doc2.resolve(head), anchor, selection;
|
|
27107
27053
|
if (selectionCollapsed(domSel)) {
|
|
27108
|
-
|
|
27054
|
+
anchor = head;
|
|
27109
27055
|
while (nearestDesc && !nearestDesc.node)
|
|
27110
27056
|
nearestDesc = nearestDesc.parent;
|
|
27111
27057
|
let nearestDescNode = nearestDesc.node;
|
|
@@ -27114,11 +27060,24 @@ function selectionFromDOM(view, origin2 = null) {
|
|
|
27114
27060
|
selection = new NodeSelection(head == pos ? $head : doc2.resolve(pos));
|
|
27115
27061
|
}
|
|
27116
27062
|
} else {
|
|
27117
|
-
|
|
27063
|
+
if (domSel instanceof view.dom.ownerDocument.defaultView.Selection && domSel.rangeCount > 1) {
|
|
27064
|
+
let min2 = head, max2 = head;
|
|
27065
|
+
for (let i2 = 0; i2 < domSel.rangeCount; i2++) {
|
|
27066
|
+
let range2 = domSel.getRangeAt(i2);
|
|
27067
|
+
min2 = Math.min(min2, view.docView.posFromDOM(range2.startContainer, range2.startOffset, 1));
|
|
27068
|
+
max2 = Math.max(max2, view.docView.posFromDOM(range2.endContainer, range2.endOffset, -1));
|
|
27069
|
+
}
|
|
27070
|
+
if (min2 < 0)
|
|
27071
|
+
return null;
|
|
27072
|
+
[anchor, head] = max2 == view.state.selection.anchor ? [max2, min2] : [min2, max2];
|
|
27073
|
+
$head = doc2.resolve(head);
|
|
27074
|
+
} else {
|
|
27075
|
+
anchor = view.docView.posFromDOM(domSel.anchorNode, domSel.anchorOffset, 1);
|
|
27076
|
+
}
|
|
27118
27077
|
if (anchor < 0)
|
|
27119
27078
|
return null;
|
|
27120
|
-
$anchor = doc2.resolve(anchor);
|
|
27121
27079
|
}
|
|
27080
|
+
let $anchor = doc2.resolve(anchor);
|
|
27122
27081
|
if (!selection) {
|
|
27123
27082
|
let bias = origin2 == "pointer" || view.state.selection.head < $head.pos && !inWidget ? 1 : -1;
|
|
27124
27083
|
selection = selectionBetween(view, $anchor, $head, bias);
|
|
@@ -27216,12 +27175,14 @@ function removeClassOnSelectionChange(view) {
|
|
|
27216
27175
|
}
|
|
27217
27176
|
function selectCursorWrapper(view) {
|
|
27218
27177
|
let domSel = view.domSelection(), range2 = document.createRange();
|
|
27178
|
+
if (!domSel)
|
|
27179
|
+
return;
|
|
27219
27180
|
let node = view.cursorWrapper.dom, img = node.nodeName == "IMG";
|
|
27220
27181
|
if (img)
|
|
27221
|
-
range2.
|
|
27182
|
+
range2.setStart(node.parentNode, domIndex(node) + 1);
|
|
27222
27183
|
else
|
|
27223
|
-
range2.
|
|
27224
|
-
range2.collapse(
|
|
27184
|
+
range2.setStart(node, 0);
|
|
27185
|
+
range2.collapse(true);
|
|
27225
27186
|
domSel.removeAllRanges();
|
|
27226
27187
|
domSel.addRange(range2);
|
|
27227
27188
|
if (!img && !view.state.selection.visible && ie$1 && ie_version <= 11) {
|
|
@@ -27467,6 +27428,8 @@ function setSelFocus(view, node, offset2) {
|
|
|
27467
27428
|
}
|
|
27468
27429
|
}
|
|
27469
27430
|
let sel = view.domSelection();
|
|
27431
|
+
if (!sel)
|
|
27432
|
+
return;
|
|
27470
27433
|
if (selectionCollapsed(sel)) {
|
|
27471
27434
|
let range2 = document.createRange();
|
|
27472
27435
|
range2.setEnd(node, offset2);
|
|
@@ -27784,6 +27747,12 @@ let _detachedDoc = null;
|
|
|
27784
27747
|
function detachedDoc() {
|
|
27785
27748
|
return _detachedDoc || (_detachedDoc = document.implementation.createHTMLDocument("title"));
|
|
27786
27749
|
}
|
|
27750
|
+
function maybeWrapTrusted(html) {
|
|
27751
|
+
let trustedTypes = window.trustedTypes;
|
|
27752
|
+
if (!trustedTypes)
|
|
27753
|
+
return html;
|
|
27754
|
+
return trustedTypes.createPolicy("detachedDocument", { createHTML: (s2) => s2 }).createHTML(html);
|
|
27755
|
+
}
|
|
27787
27756
|
function readHTML(html) {
|
|
27788
27757
|
let metas = /^(\s*<meta [^>]*>)*/.exec(html);
|
|
27789
27758
|
if (metas)
|
|
@@ -27792,7 +27761,7 @@ function readHTML(html) {
|
|
|
27792
27761
|
let firstTag = /<([a-z][^>\s]+)/i.exec(html), wrap2;
|
|
27793
27762
|
if (wrap2 = firstTag && wrapMap[firstTag[1].toLowerCase()])
|
|
27794
27763
|
html = wrap2.map((n2) => "<" + n2 + ">").join("") + html + wrap2.map((n2) => "</" + n2 + ">").reverse().join("");
|
|
27795
|
-
elt.innerHTML = html;
|
|
27764
|
+
elt.innerHTML = maybeWrapTrusted(html);
|
|
27796
27765
|
if (wrap2)
|
|
27797
27766
|
for (let i2 = 0; i2 < wrap2.length; i2++)
|
|
27798
27767
|
elt = elt.querySelector(wrap2[i2]) || elt;
|
|
@@ -27914,7 +27883,9 @@ editHandlers.keydown = (view, _event) => {
|
|
|
27914
27883
|
view.input.lastKeyCodeTime = Date.now();
|
|
27915
27884
|
if (android && chrome && event.keyCode == 13)
|
|
27916
27885
|
return;
|
|
27917
|
-
if (
|
|
27886
|
+
if (view.domObserver.selectionChanged(view.domSelectionRange()))
|
|
27887
|
+
view.domObserver.flush();
|
|
27888
|
+
else if (event.keyCode != 229)
|
|
27918
27889
|
view.domObserver.forceFlush();
|
|
27919
27890
|
if (ios && event.keyCode == 13 && !event.ctrlKey && !event.altKey && !event.metaKey) {
|
|
27920
27891
|
let now = Date.now();
|
|
@@ -27971,6 +27942,8 @@ function runHandlerOnContext(view, propName, pos, inside, event) {
|
|
|
27971
27942
|
function updateSelection(view, selection, origin2) {
|
|
27972
27943
|
if (!view.focused)
|
|
27973
27944
|
view.focus();
|
|
27945
|
+
if (view.state.selection.eq(selection))
|
|
27946
|
+
return;
|
|
27974
27947
|
let tr2 = view.state.tr.setSelection(selection);
|
|
27975
27948
|
tr2.setMeta("pointer", true);
|
|
27976
27949
|
view.dispatch(tr2);
|
|
@@ -28193,13 +28166,13 @@ const timeoutComposition = android ? 5e3 : -1;
|
|
|
28193
28166
|
editHandlers.compositionstart = editHandlers.compositionupdate = (view) => {
|
|
28194
28167
|
if (!view.composing) {
|
|
28195
28168
|
view.domObserver.flush();
|
|
28196
|
-
let { state: state2 } = view, $pos = state2.selection.$
|
|
28197
|
-
if (state2.selection
|
|
28169
|
+
let { state: state2 } = view, $pos = state2.selection.$to;
|
|
28170
|
+
if (state2.selection instanceof TextSelection && (state2.storedMarks || !$pos.textOffset && $pos.parentOffset && $pos.nodeBefore.marks.some((m2) => m2.type.spec.inclusive === false))) {
|
|
28198
28171
|
view.markCursor = view.state.storedMarks || $pos.marks();
|
|
28199
28172
|
endComposition(view, true);
|
|
28200
28173
|
view.markCursor = null;
|
|
28201
28174
|
} else {
|
|
28202
|
-
endComposition(view);
|
|
28175
|
+
endComposition(view, !state2.selection.empty);
|
|
28203
28176
|
if (gecko && state2.selection.empty && $pos.parentOffset && !$pos.textOffset && $pos.nodeBefore.marks.length) {
|
|
28204
28177
|
let sel = view.domSelectionRange();
|
|
28205
28178
|
for (let node = sel.focusNode, offset2 = sel.focusOffset; node && node.nodeType == 1 && offset2 != 0; ) {
|
|
@@ -28207,7 +28180,9 @@ editHandlers.compositionstart = editHandlers.compositionupdate = (view) => {
|
|
|
28207
28180
|
if (!before)
|
|
28208
28181
|
break;
|
|
28209
28182
|
if (before.nodeType == 3) {
|
|
28210
|
-
view.domSelection()
|
|
28183
|
+
let sel2 = view.domSelection();
|
|
28184
|
+
if (sel2)
|
|
28185
|
+
sel2.collapse(before, before.nodeValue.length);
|
|
28211
28186
|
break;
|
|
28212
28187
|
} else {
|
|
28213
28188
|
node = before;
|
|
@@ -28270,15 +28245,17 @@ function timestampFromCustomEvent() {
|
|
|
28270
28245
|
event.initEvent("event", true, true);
|
|
28271
28246
|
return event.timeStamp;
|
|
28272
28247
|
}
|
|
28273
|
-
function endComposition(view,
|
|
28248
|
+
function endComposition(view, restarting = false) {
|
|
28274
28249
|
if (android && view.domObserver.flushingSoon >= 0)
|
|
28275
28250
|
return;
|
|
28276
28251
|
view.domObserver.forceFlush();
|
|
28277
28252
|
clearComposition(view);
|
|
28278
|
-
if (
|
|
28253
|
+
if (restarting || view.docView && view.docView.dirty) {
|
|
28279
28254
|
let sel = selectionFromDOM(view);
|
|
28280
28255
|
if (sel && !sel.eq(view.state.selection))
|
|
28281
28256
|
view.dispatch(view.state.tr.setSelection(sel));
|
|
28257
|
+
else if ((view.markCursor || restarting) && !view.state.selection.empty)
|
|
28258
|
+
view.dispatch(view.state.tr.deleteSelection());
|
|
28282
28259
|
else
|
|
28283
28260
|
view.updateState(view.state);
|
|
28284
28261
|
return true;
|
|
@@ -28885,6 +28862,9 @@ class DecorationSet {
|
|
|
28885
28862
|
}
|
|
28886
28863
|
return result2;
|
|
28887
28864
|
}
|
|
28865
|
+
forEachSet(f2) {
|
|
28866
|
+
f2(this);
|
|
28867
|
+
}
|
|
28888
28868
|
}
|
|
28889
28869
|
DecorationSet.empty = new DecorationSet([], []);
|
|
28890
28870
|
DecorationSet.removeOverlap = removeOverlap;
|
|
@@ -28951,6 +28931,10 @@ class DecorationGroup {
|
|
|
28951
28931
|
return new DecorationGroup(members.every((m2) => m2 instanceof DecorationSet) ? members : members.reduce((r2, m2) => r2.concat(m2 instanceof DecorationSet ? m2 : m2.members), []));
|
|
28952
28932
|
}
|
|
28953
28933
|
}
|
|
28934
|
+
forEachSet(f2) {
|
|
28935
|
+
for (let i2 = 0; i2 < this.members.length; i2++)
|
|
28936
|
+
this.members[i2].forEachSet(f2);
|
|
28937
|
+
}
|
|
28954
28938
|
}
|
|
28955
28939
|
function mapChildren(oldChildren, newLocal, mapping, node, offset2, oldOffset, options) {
|
|
28956
28940
|
let children2 = oldChildren.slice();
|
|
@@ -29279,6 +29263,9 @@ class DOMObserver {
|
|
|
29279
29263
|
this.queue.push(mut);
|
|
29280
29264
|
return this.queue;
|
|
29281
29265
|
}
|
|
29266
|
+
selectionChanged(sel) {
|
|
29267
|
+
return !this.suppressingSelectionUpdates && !this.currentSelection.eq(sel) && hasFocusAndSelection(this.view) && !this.ignoreSelectionChange(sel);
|
|
29268
|
+
}
|
|
29282
29269
|
flush() {
|
|
29283
29270
|
let { view } = this;
|
|
29284
29271
|
if (!view.docView || this.flushingSoon > -1)
|
|
@@ -29286,8 +29273,7 @@ class DOMObserver {
|
|
|
29286
29273
|
let mutations = this.pendingRecords();
|
|
29287
29274
|
if (mutations.length)
|
|
29288
29275
|
this.queue = [];
|
|
29289
|
-
let sel = view.domSelectionRange();
|
|
29290
|
-
let newSel = !this.suppressingSelectionUpdates && !this.currentSelection.eq(sel) && hasFocusAndSelection(view) && !this.ignoreSelectionChange(sel);
|
|
29276
|
+
let sel = view.domSelectionRange(), newSel = this.selectionChanged(sel);
|
|
29291
29277
|
let from2 = -1, to2 = -1, typeOver = false, added = [];
|
|
29292
29278
|
if (view.editable) {
|
|
29293
29279
|
for (let i2 = 0; i2 < mutations.length; i2++) {
|
|
@@ -29530,6 +29516,8 @@ function readDOMChange(view, from2, to2, typeOver, addedNodes) {
|
|
|
29530
29516
|
}
|
|
29531
29517
|
view.input.lastKeyCode = null;
|
|
29532
29518
|
let change = findDiff(compare2.content, parse2.doc.content, parse2.from, preferredPos, preferredSide);
|
|
29519
|
+
if (change)
|
|
29520
|
+
view.input.domChangeCount++;
|
|
29533
29521
|
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")))) {
|
|
29534
29522
|
view.input.lastIOSEnter = 0;
|
|
29535
29523
|
return;
|
|
@@ -29550,7 +29538,6 @@ function readDOMChange(view, from2, to2, typeOver, addedNodes) {
|
|
|
29550
29538
|
return;
|
|
29551
29539
|
}
|
|
29552
29540
|
}
|
|
29553
|
-
view.input.domChangeCount++;
|
|
29554
29541
|
if (view.state.selection.from < view.state.selection.to && change.start == change.endB && view.state.selection instanceof TextSelection) {
|
|
29555
29542
|
if (change.start > view.state.selection.from && change.start <= view.state.selection.from + 2 && view.state.selection.from >= parse2.from) {
|
|
29556
29543
|
change.start = view.state.selection.from;
|
|
@@ -30156,6 +30143,8 @@ class EditorView {
|
|
|
30156
30143
|
*/
|
|
30157
30144
|
domSelectionRange() {
|
|
30158
30145
|
let sel = this.domSelection();
|
|
30146
|
+
if (!sel)
|
|
30147
|
+
return { focusNode: null, focusOffset: 0, anchorNode: null, anchorOffset: 0 };
|
|
30159
30148
|
return safari && this.root.nodeType === 11 && deepActiveElement(this.dom.ownerDocument) == this.dom && safariShadowSelectionRange(this, sel) || sel;
|
|
30160
30149
|
}
|
|
30161
30150
|
/**
|
|
@@ -30192,7 +30181,7 @@ function updateCursorWrapper(view) {
|
|
|
30192
30181
|
dom.className = "ProseMirror-separator";
|
|
30193
30182
|
dom.setAttribute("mark-placeholder", "true");
|
|
30194
30183
|
dom.setAttribute("alt", "");
|
|
30195
|
-
view.cursorWrapper = { dom, deco: Decoration.widget(view.state.selection.
|
|
30184
|
+
view.cursorWrapper = { dom, deco: Decoration.widget(view.state.selection.from, dom, { raw: true, marks: view.markCursor }) };
|
|
30196
30185
|
} else {
|
|
30197
30186
|
view.cursorWrapper = null;
|
|
30198
30187
|
}
|
|
@@ -30432,17 +30421,21 @@ const joinBackward$1 = (state2, dispatch, view) => {
|
|
|
30432
30421
|
return true;
|
|
30433
30422
|
}
|
|
30434
30423
|
let before = $cut.nodeBefore;
|
|
30435
|
-
if (
|
|
30424
|
+
if (deleteBarrier(state2, $cut, dispatch, -1))
|
|
30436
30425
|
return true;
|
|
30437
30426
|
if ($cursor.parent.content.size == 0 && (textblockAt(before, "end") || NodeSelection.isSelectable(before))) {
|
|
30438
|
-
let
|
|
30439
|
-
|
|
30440
|
-
if (
|
|
30441
|
-
|
|
30442
|
-
|
|
30443
|
-
|
|
30427
|
+
for (let depth = $cursor.depth; ; depth--) {
|
|
30428
|
+
let delStep = replaceStep(state2.doc, $cursor.before(depth), $cursor.after(depth), Slice.empty);
|
|
30429
|
+
if (delStep && delStep.slice.size < delStep.to - delStep.from) {
|
|
30430
|
+
if (dispatch) {
|
|
30431
|
+
let tr2 = state2.tr.step(delStep);
|
|
30432
|
+
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));
|
|
30433
|
+
dispatch(tr2.scrollIntoView());
|
|
30434
|
+
}
|
|
30435
|
+
return true;
|
|
30444
30436
|
}
|
|
30445
|
-
|
|
30437
|
+
if (depth == 1 || $cursor.node(depth - 1).childCount > 1)
|
|
30438
|
+
break;
|
|
30446
30439
|
}
|
|
30447
30440
|
}
|
|
30448
30441
|
if (before.isAtom && $cut.depth == $cursor.depth - 1) {
|
|
@@ -30544,7 +30537,7 @@ const joinForward$1 = (state2, dispatch, view) => {
|
|
|
30544
30537
|
if (!$cut)
|
|
30545
30538
|
return false;
|
|
30546
30539
|
let after = $cut.nodeAfter;
|
|
30547
|
-
if (deleteBarrier(state2, $cut, dispatch))
|
|
30540
|
+
if (deleteBarrier(state2, $cut, dispatch, 1))
|
|
30548
30541
|
return true;
|
|
30549
30542
|
if ($cursor.parent.content.size == 0 && (textblockAt(after, "start") || NodeSelection.isSelectable(after))) {
|
|
30550
30543
|
let delStep = replaceStep(state2.doc, $cursor.before(), $cursor.after(), Slice.empty);
|
|
@@ -30723,13 +30716,12 @@ function joinMaybeClear(state2, $pos, dispatch) {
|
|
|
30723
30716
|
dispatch(state2.tr.clearIncompatible($pos.pos, before.type, before.contentMatchAt(before.childCount)).join($pos.pos).scrollIntoView());
|
|
30724
30717
|
return true;
|
|
30725
30718
|
}
|
|
30726
|
-
function deleteBarrier(state2, $cut, dispatch) {
|
|
30719
|
+
function deleteBarrier(state2, $cut, dispatch, dir) {
|
|
30727
30720
|
let before = $cut.nodeBefore, after = $cut.nodeAfter, conn, match2;
|
|
30728
|
-
|
|
30729
|
-
|
|
30730
|
-
if (joinMaybeClear(state2, $cut, dispatch))
|
|
30721
|
+
let isolated = before.type.spec.isolating || after.type.spec.isolating;
|
|
30722
|
+
if (!isolated && joinMaybeClear(state2, $cut, dispatch))
|
|
30731
30723
|
return true;
|
|
30732
|
-
let canDelAfter = $cut.parent.canReplace($cut.index(), $cut.index() + 1);
|
|
30724
|
+
let canDelAfter = !isolated && $cut.parent.canReplace($cut.index(), $cut.index() + 1);
|
|
30733
30725
|
if (canDelAfter && (conn = (match2 = before.contentMatchAt(before.childCount)).findWrapping(after.type)) && match2.matchType(conn[0] || after.type).validEnd) {
|
|
30734
30726
|
if (dispatch) {
|
|
30735
30727
|
let end2 = $cut.pos + after.nodeSize, wrap2 = Fragment.empty;
|
|
@@ -30744,7 +30736,7 @@ function deleteBarrier(state2, $cut, dispatch) {
|
|
|
30744
30736
|
}
|
|
30745
30737
|
return true;
|
|
30746
30738
|
}
|
|
30747
|
-
let selAfter = Selection.findFrom($cut, 1);
|
|
30739
|
+
let selAfter = after.type.spec.isolating || dir > 0 && isolated ? null : Selection.findFrom($cut, 1);
|
|
30748
30740
|
let range2 = selAfter && selAfter.$from.blockRange(selAfter.$to), target = range2 && liftTarget(range2);
|
|
30749
30741
|
if (target != null && target >= $cut.depth) {
|
|
30750
30742
|
if (dispatch)
|
|
@@ -31225,7 +31217,18 @@ function mergeAttributes(...objects) {
|
|
|
31225
31217
|
const insertClasses = valueClasses.filter((valueClass) => !existingClasses.includes(valueClass));
|
|
31226
31218
|
mergedAttributes[key] = [...existingClasses, ...insertClasses].join(" ");
|
|
31227
31219
|
} else if (key === "style") {
|
|
31228
|
-
|
|
31220
|
+
const newStyles = value ? value.split(";").map((style2) => style2.trim()).filter(Boolean) : [];
|
|
31221
|
+
const existingStyles = mergedAttributes[key] ? mergedAttributes[key].split(";").map((style2) => style2.trim()).filter(Boolean) : [];
|
|
31222
|
+
const styleMap = /* @__PURE__ */ new Map();
|
|
31223
|
+
existingStyles.forEach((style2) => {
|
|
31224
|
+
const [property, val] = style2.split(":").map((part) => part.trim());
|
|
31225
|
+
styleMap.set(property, val);
|
|
31226
|
+
});
|
|
31227
|
+
newStyles.forEach((style2) => {
|
|
31228
|
+
const [property, val] = style2.split(":").map((part) => part.trim());
|
|
31229
|
+
styleMap.set(property, val);
|
|
31230
|
+
});
|
|
31231
|
+
mergedAttributes[key] = Array.from(styleMap.entries()).map(([property, val]) => `${property}: ${val}`).join("; ");
|
|
31229
31232
|
} else {
|
|
31230
31233
|
mergedAttributes[key] = value;
|
|
31231
31234
|
}
|
|
@@ -31960,15 +31963,19 @@ class ExtensionManager {
|
|
|
31960
31963
|
if (!addNodeView) {
|
|
31961
31964
|
return [];
|
|
31962
31965
|
}
|
|
31963
|
-
const nodeview = (node, view, getPos, decorations) => {
|
|
31966
|
+
const nodeview = (node, view, getPos, decorations, innerDecorations) => {
|
|
31964
31967
|
const HTMLAttributes = getRenderedAttributes(node, extensionAttributes);
|
|
31965
31968
|
return addNodeView()({
|
|
31966
|
-
|
|
31969
|
+
// pass-through
|
|
31967
31970
|
node,
|
|
31971
|
+
view,
|
|
31968
31972
|
getPos,
|
|
31969
31973
|
decorations,
|
|
31970
|
-
|
|
31971
|
-
|
|
31974
|
+
innerDecorations,
|
|
31975
|
+
// tiptap-specific
|
|
31976
|
+
editor,
|
|
31977
|
+
extension,
|
|
31978
|
+
HTMLAttributes
|
|
31972
31979
|
});
|
|
31973
31980
|
};
|
|
31974
31981
|
return [extension.name, nodeview];
|
|
@@ -33509,10 +33516,14 @@ const toggleNode = (typeOrName, toggleTypeOrName, attributes = {}) => ({ state:
|
|
|
33509
33516
|
const type3 = getNodeType(typeOrName, state2.schema);
|
|
33510
33517
|
const toggleType = getNodeType(toggleTypeOrName, state2.schema);
|
|
33511
33518
|
const isActive2 = isNodeActive(state2, type3, attributes);
|
|
33519
|
+
let attributesToCopy;
|
|
33520
|
+
if (state2.selection.$anchor.sameParent(state2.selection.$head)) {
|
|
33521
|
+
attributesToCopy = state2.selection.$anchor.parent.attrs;
|
|
33522
|
+
}
|
|
33512
33523
|
if (isActive2) {
|
|
33513
|
-
return commands2.setNode(toggleType);
|
|
33524
|
+
return commands2.setNode(toggleType, attributesToCopy);
|
|
33514
33525
|
}
|
|
33515
|
-
return commands2.setNode(type3, attributes);
|
|
33526
|
+
return commands2.setNode(type3, { ...attributesToCopy, ...attributes });
|
|
33516
33527
|
};
|
|
33517
33528
|
const toggleWrap = (typeOrName, attributes = {}) => ({ state: state2, commands: commands2 }) => {
|
|
33518
33529
|
const type3 = getNodeType(typeOrName, state2.schema);
|
|
@@ -33818,7 +33829,8 @@ const Keymap = Extension.create({
|
|
|
33818
33829
|
key: new PluginKey("clearDocument"),
|
|
33819
33830
|
appendTransaction: (transactions, oldState, newState) => {
|
|
33820
33831
|
const docChanges = transactions.some((transaction) => transaction.docChanged) && !oldState.doc.eq(newState.doc);
|
|
33821
|
-
|
|
33832
|
+
const ignoreTr = transactions.some((transaction) => transaction.getMeta("preventClearDocument"));
|
|
33833
|
+
if (!docChanges || ignoreTr) {
|
|
33822
33834
|
return;
|
|
33823
33835
|
}
|
|
33824
33836
|
const { empty: empty2, from: from2, to: to2 } = oldState.selection;
|
|
@@ -33828,7 +33840,7 @@ const Keymap = Extension.create({
|
|
|
33828
33840
|
if (empty2 || !allWasSelected) {
|
|
33829
33841
|
return;
|
|
33830
33842
|
}
|
|
33831
|
-
const isEmpty2 =
|
|
33843
|
+
const isEmpty2 = isNodeEmpty(newState.doc);
|
|
33832
33844
|
if (!isEmpty2) {
|
|
33833
33845
|
return;
|
|
33834
33846
|
}
|
|
@@ -34031,6 +34043,26 @@ class NodePos {
|
|
|
34031
34043
|
this.editor.chain().setTextSelection(this.from).updateAttributes(this.node.type.name, attributes).setTextSelection(oldSelection.from).run();
|
|
34032
34044
|
}
|
|
34033
34045
|
}
|
|
34046
|
+
const DropPlugin = (onDrop) => {
|
|
34047
|
+
return new Plugin({
|
|
34048
|
+
key: new PluginKey("tiptapDrop"),
|
|
34049
|
+
props: {
|
|
34050
|
+
handleDrop: (_2, e, slice4, moved2) => {
|
|
34051
|
+
onDrop(e, slice4, moved2);
|
|
34052
|
+
}
|
|
34053
|
+
}
|
|
34054
|
+
});
|
|
34055
|
+
};
|
|
34056
|
+
const PastePlugin = (onPaste) => {
|
|
34057
|
+
return new Plugin({
|
|
34058
|
+
key: new PluginKey("tiptapPaste"),
|
|
34059
|
+
props: {
|
|
34060
|
+
handlePaste: (_view, e, slice4) => {
|
|
34061
|
+
onPaste(e, slice4);
|
|
34062
|
+
}
|
|
34063
|
+
}
|
|
34064
|
+
});
|
|
34065
|
+
};
|
|
34034
34066
|
const style = `.ProseMirror {
|
|
34035
34067
|
position: relative;
|
|
34036
34068
|
}
|
|
@@ -34151,7 +34183,9 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34151
34183
|
onDestroy: () => null,
|
|
34152
34184
|
onContentError: ({ error }) => {
|
|
34153
34185
|
throw error;
|
|
34154
|
-
}
|
|
34186
|
+
},
|
|
34187
|
+
onPaste: () => null,
|
|
34188
|
+
onDrop: () => null
|
|
34155
34189
|
};
|
|
34156
34190
|
this.isCapturingTransaction = false;
|
|
34157
34191
|
this.capturedTransaction = null;
|
|
@@ -34171,6 +34205,12 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34171
34205
|
this.on("focus", this.options.onFocus);
|
|
34172
34206
|
this.on("blur", this.options.onBlur);
|
|
34173
34207
|
this.on("destroy", this.options.onDestroy);
|
|
34208
|
+
if (this.options.onPaste) {
|
|
34209
|
+
this.registerPlugin(PastePlugin(this.options.onPaste));
|
|
34210
|
+
}
|
|
34211
|
+
if (this.options.onDrop) {
|
|
34212
|
+
this.registerPlugin(DropPlugin(this.options.onDrop));
|
|
34213
|
+
}
|
|
34174
34214
|
window.setTimeout(() => {
|
|
34175
34215
|
if (this.isDestroyed) {
|
|
34176
34216
|
return;
|
|
@@ -34256,20 +34296,23 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34256
34296
|
*
|
|
34257
34297
|
* @param plugin A ProseMirror plugin
|
|
34258
34298
|
* @param handlePlugins Control how to merge the plugin into the existing plugins.
|
|
34299
|
+
* @returns The new editor state
|
|
34259
34300
|
*/
|
|
34260
34301
|
registerPlugin(plugin, handlePlugins) {
|
|
34261
34302
|
const plugins2 = isFunction$1(handlePlugins) ? handlePlugins(plugin, [...this.state.plugins]) : [...this.state.plugins, plugin];
|
|
34262
34303
|
const state2 = this.state.reconfigure({ plugins: plugins2 });
|
|
34263
34304
|
this.view.updateState(state2);
|
|
34305
|
+
return state2;
|
|
34264
34306
|
}
|
|
34265
34307
|
/**
|
|
34266
34308
|
* Unregister a ProseMirror plugin.
|
|
34267
34309
|
*
|
|
34268
34310
|
* @param nameOrPluginKey The plugins name
|
|
34311
|
+
* @returns The new editor state or undefined if the editor is destroyed
|
|
34269
34312
|
*/
|
|
34270
34313
|
unregisterPlugin(nameOrPluginKey) {
|
|
34271
34314
|
if (this.isDestroyed) {
|
|
34272
|
-
return;
|
|
34315
|
+
return void 0;
|
|
34273
34316
|
}
|
|
34274
34317
|
const name = typeof nameOrPluginKey === "string" ? `${nameOrPluginKey}$` : nameOrPluginKey.key;
|
|
34275
34318
|
const state2 = this.state.reconfigure({
|
|
@@ -34277,6 +34320,7 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34277
34320
|
plugins: this.state.plugins.filter((plugin) => !plugin.key.startsWith(name))
|
|
34278
34321
|
});
|
|
34279
34322
|
this.view.updateState(state2);
|
|
34323
|
+
return state2;
|
|
34280
34324
|
}
|
|
34281
34325
|
/**
|
|
34282
34326
|
* Creates an extension manager.
|
|
@@ -34292,7 +34336,12 @@ let Editor$1 = class Editor2 extends EventEmitter {
|
|
|
34292
34336
|
FocusEvents,
|
|
34293
34337
|
Keymap,
|
|
34294
34338
|
Tabindex
|
|
34295
|
-
]
|
|
34339
|
+
].filter((ext) => {
|
|
34340
|
+
if (typeof this.options.enableCoreExtensions === "object") {
|
|
34341
|
+
return this.options.enableCoreExtensions[ext.name] !== false;
|
|
34342
|
+
}
|
|
34343
|
+
return true;
|
|
34344
|
+
}) : [];
|
|
34296
34345
|
const allExtensions = [...coreExtensions, ...this.options.extensions].filter((extension) => {
|
|
34297
34346
|
return ["extension", "node", "mark"].includes(extension === null || extension === void 0 ? void 0 : extension.type);
|
|
34298
34347
|
});
|
|
@@ -42803,15 +42852,21 @@ class Editor extends Editor$1 {
|
|
|
42803
42852
|
* Register a ProseMirror plugin.
|
|
42804
42853
|
*/
|
|
42805
42854
|
registerPlugin(plugin, handlePlugins) {
|
|
42806
|
-
super.registerPlugin(plugin, handlePlugins);
|
|
42807
|
-
this.reactiveState
|
|
42855
|
+
const nextState = super.registerPlugin(plugin, handlePlugins);
|
|
42856
|
+
if (this.reactiveState) {
|
|
42857
|
+
this.reactiveState.value = nextState;
|
|
42858
|
+
}
|
|
42859
|
+
return nextState;
|
|
42808
42860
|
}
|
|
42809
42861
|
/**
|
|
42810
42862
|
* Unregister a ProseMirror plugin.
|
|
42811
42863
|
*/
|
|
42812
42864
|
unregisterPlugin(nameOrPluginKey) {
|
|
42813
|
-
super.unregisterPlugin(nameOrPluginKey);
|
|
42814
|
-
this.reactiveState
|
|
42865
|
+
const nextState = super.unregisterPlugin(nameOrPluginKey);
|
|
42866
|
+
if (this.reactiveState && nextState) {
|
|
42867
|
+
this.reactiveState.value = nextState;
|
|
42868
|
+
}
|
|
42869
|
+
return nextState;
|
|
42815
42870
|
}
|
|
42816
42871
|
}
|
|
42817
42872
|
const EditorContent = vue.defineComponent({
|
|
@@ -42966,12 +43021,12 @@ vue.defineComponent({
|
|
|
42966
43021
|
}, (_b = (_a2 = this.$slots).default) === null || _b === void 0 ? void 0 : _b.call(_a2));
|
|
42967
43022
|
}
|
|
42968
43023
|
});
|
|
42969
|
-
const _hoisted_1$
|
|
42970
|
-
const _hoisted_2$
|
|
43024
|
+
const _hoisted_1$p = { class: "RichText" };
|
|
43025
|
+
const _hoisted_2$f = {
|
|
42971
43026
|
key: 0,
|
|
42972
43027
|
class: "RichText-tools"
|
|
42973
43028
|
};
|
|
42974
|
-
const _sfc_main$
|
|
43029
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
42975
43030
|
__name: "RichText",
|
|
42976
43031
|
props: {
|
|
42977
43032
|
modelValue: {}
|
|
@@ -43196,8 +43251,8 @@ const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
|
43196
43251
|
});
|
|
43197
43252
|
return (_ctx, _cache) => {
|
|
43198
43253
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
43199
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
43200
|
-
vue.unref(editor) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
43254
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$p, [
|
|
43255
|
+
vue.unref(editor) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$f, [
|
|
43201
43256
|
(vue.openBlock(), vue.createElementBlock(vue.Fragment, null, vue.renderList(config, (item) => {
|
|
43202
43257
|
var _a2;
|
|
43203
43258
|
return vue.withDirectives(vue.createVNode(vue.unref(Btn), {
|
|
@@ -43390,17 +43445,17 @@ function createTable() {
|
|
|
43390
43445
|
}
|
|
43391
43446
|
}
|
|
43392
43447
|
}
|
|
43393
|
-
const _hoisted_1$
|
|
43394
|
-
const _hoisted_2$
|
|
43395
|
-
const _hoisted_3$
|
|
43396
|
-
const _hoisted_4$
|
|
43448
|
+
const _hoisted_1$o = { class: "flex gap-05" };
|
|
43449
|
+
const _hoisted_2$e = ["disabled"];
|
|
43450
|
+
const _hoisted_3$c = { key: 1 };
|
|
43451
|
+
const _hoisted_4$8 = {
|
|
43397
43452
|
key: 2,
|
|
43398
43453
|
class: "ms-auto ps-05 me-05"
|
|
43399
43454
|
};
|
|
43400
|
-
const _hoisted_5$
|
|
43401
|
-
const _hoisted_6$
|
|
43402
|
-
const _hoisted_7$
|
|
43403
|
-
const _sfc_main$
|
|
43455
|
+
const _hoisted_5$7 = ["value"];
|
|
43456
|
+
const _hoisted_6$6 = ["aria-selected", "onClick", "onKeydown"];
|
|
43457
|
+
const _hoisted_7$3 = { class: "block" };
|
|
43458
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
43404
43459
|
__name: "SelectInput",
|
|
43405
43460
|
props: {
|
|
43406
43461
|
options: {},
|
|
@@ -43539,7 +43594,7 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43539
43594
|
}
|
|
43540
43595
|
});
|
|
43541
43596
|
return (_ctx, _cache) => {
|
|
43542
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
43597
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$K), {
|
|
43543
43598
|
ref_key: "dropdown",
|
|
43544
43599
|
ref: dropdown,
|
|
43545
43600
|
placement: "bottom-start",
|
|
@@ -43549,7 +43604,7 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43549
43604
|
trigger: vue.withCtx(() => [
|
|
43550
43605
|
vue.createElementVNode("label", null, [
|
|
43551
43606
|
vue.createTextVNode(vue.toDisplayString(_ctx.label) + " ", 1),
|
|
43552
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
43607
|
+
vue.createElementVNode("div", _hoisted_1$o, [
|
|
43553
43608
|
vue.createElementVNode("button", {
|
|
43554
43609
|
disabled: _ctx.disabled,
|
|
43555
43610
|
type: "button",
|
|
@@ -43557,12 +43612,12 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43557
43612
|
onKeydown: openOptions,
|
|
43558
43613
|
onClick: _cache[1] || (_cache[1] = ($event) => updateOpen(true))
|
|
43559
43614
|
}, [
|
|
43560
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
43615
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
43561
43616
|
key: 0,
|
|
43562
43617
|
icon: _ctx.icon
|
|
43563
43618
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
43564
|
-
!_ctx.hideLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_3$
|
|
43565
|
-
_ctx.clearable && selectedItemCount.value > 0 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$
|
|
43619
|
+
!_ctx.hideLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_3$c, vue.toDisplayString(selectedLabel.value), 1)) : vue.createCommentVNode("", true),
|
|
43620
|
+
_ctx.clearable && selectedItemCount.value > 0 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$8, [
|
|
43566
43621
|
vue.createVNode(vue.unref(Btn), {
|
|
43567
43622
|
flat: "",
|
|
43568
43623
|
thin: "",
|
|
@@ -43574,11 +43629,11 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43574
43629
|
})
|
|
43575
43630
|
})
|
|
43576
43631
|
])) : vue.createCommentVNode("", true),
|
|
43577
|
-
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
43632
|
+
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), vue.mergeProps({
|
|
43578
43633
|
key: 3,
|
|
43579
43634
|
thin: ""
|
|
43580
43635
|
}, { icon: vue.unref(open) ? "unfold_less" : "unfold_more" }), null, 16)) : vue.createCommentVNode("", true)
|
|
43581
|
-
], 42, _hoisted_2$
|
|
43636
|
+
], 42, _hoisted_2$e),
|
|
43582
43637
|
_ctx.required ? (vue.openBlock(), vue.createElementBlock("input", {
|
|
43583
43638
|
key: 0,
|
|
43584
43639
|
tabindex: "-1",
|
|
@@ -43586,12 +43641,12 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43586
43641
|
value: vue.unref(selectedItems),
|
|
43587
43642
|
required: "",
|
|
43588
43643
|
onInput: _cache[2] || (_cache[2] = ($event) => updateOpen(true))
|
|
43589
|
-
}, null, 40, _hoisted_5$
|
|
43644
|
+
}, null, 40, _hoisted_5$7)) : vue.createCommentVNode("", true)
|
|
43590
43645
|
])
|
|
43591
43646
|
])
|
|
43592
43647
|
]),
|
|
43593
43648
|
default: vue.withCtx(() => [
|
|
43594
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
43649
|
+
vue.createVNode(vue.unref(_sfc_main$O), {
|
|
43595
43650
|
class: "p-05",
|
|
43596
43651
|
style: vue.normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
43597
43652
|
}, {
|
|
@@ -43620,20 +43675,20 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43620
43675
|
onKeydown: vue.withKeys(($event) => select2(option2), ["enter"])
|
|
43621
43676
|
}, [
|
|
43622
43677
|
_ctx.multiselect ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
43623
|
-
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
43678
|
+
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
43624
43679
|
key: 0,
|
|
43625
43680
|
size: 1.1,
|
|
43626
43681
|
icon: "select_check_box"
|
|
43627
43682
|
})) : vue.createCommentVNode("", true),
|
|
43628
|
-
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
43683
|
+
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
43629
43684
|
key: 1,
|
|
43630
43685
|
class: "opacity-3",
|
|
43631
43686
|
icon: "check_box_outline_blank",
|
|
43632
43687
|
size: 1.1
|
|
43633
43688
|
})) : vue.createCommentVNode("", true)
|
|
43634
43689
|
], 64)) : vue.createCommentVNode("", true),
|
|
43635
|
-
vue.createElementVNode("span", _hoisted_7$
|
|
43636
|
-
], 42, _hoisted_6$
|
|
43690
|
+
vue.createElementVNode("span", _hoisted_7$3, vue.toDisplayString(getLabel(option2)), 1)
|
|
43691
|
+
], 42, _hoisted_6$6);
|
|
43637
43692
|
}), 128))
|
|
43638
43693
|
], 2),
|
|
43639
43694
|
vue.renderSlot(_ctx.$slots, "last", {}, void 0, true)
|
|
@@ -43646,12 +43701,12 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
43646
43701
|
};
|
|
43647
43702
|
}
|
|
43648
43703
|
});
|
|
43649
|
-
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
43650
|
-
const _hoisted_1$
|
|
43704
|
+
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-841bf0ec"]]);
|
|
43705
|
+
const _hoisted_1$n = {
|
|
43651
43706
|
class: "toolbar flex gap-025 pb-05 flex-wrap",
|
|
43652
43707
|
role: "toolbar"
|
|
43653
43708
|
};
|
|
43654
|
-
const _sfc_main$
|
|
43709
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
43655
43710
|
__name: "Toolbar",
|
|
43656
43711
|
props: {
|
|
43657
43712
|
config: {}
|
|
@@ -43681,7 +43736,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
43681
43736
|
}
|
|
43682
43737
|
return (_ctx, _cache) => {
|
|
43683
43738
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
43684
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
43739
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$n, [
|
|
43685
43740
|
vue.createVNode(SelectInput, {
|
|
43686
43741
|
class: "m-0 w150",
|
|
43687
43742
|
options: ["Text", "Heading 1", "Heading 2", "Heading 3", "Heading 4", "Heading 5", "Heading 6", "Blockquote", "Code"],
|
|
@@ -43710,14 +43765,14 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
43710
43765
|
};
|
|
43711
43766
|
}
|
|
43712
43767
|
});
|
|
43713
|
-
const _hoisted_1$
|
|
43714
|
-
const _hoisted_2$
|
|
43715
|
-
const _hoisted_3$
|
|
43716
|
-
const _hoisted_4$
|
|
43768
|
+
const _hoisted_1$m = { class: "rich-text-editor rounded pt-05 px-1 pb-1" };
|
|
43769
|
+
const _hoisted_2$d = { class: "editor-container flex flex-stretch gap-1 m_column" };
|
|
43770
|
+
const _hoisted_3$b = { class: "content-area radius-05 p-1 shadow-light w-100 grid" };
|
|
43771
|
+
const _hoisted_4$7 = {
|
|
43717
43772
|
key: 0,
|
|
43718
43773
|
class: "preview-area w-100 radius-05 p-1"
|
|
43719
43774
|
};
|
|
43720
|
-
const _sfc_main$
|
|
43775
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
43721
43776
|
__name: "index",
|
|
43722
43777
|
props: {
|
|
43723
43778
|
modelValue: {},
|
|
@@ -43844,13 +43899,13 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
43844
43899
|
}
|
|
43845
43900
|
}
|
|
43846
43901
|
return (_ctx, _cache) => {
|
|
43847
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
43848
|
-
vue.createVNode(_sfc_main$
|
|
43902
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$m, [
|
|
43903
|
+
vue.createVNode(_sfc_main$t, {
|
|
43849
43904
|
config: config.value,
|
|
43850
43905
|
onAction: handleToolbarAction
|
|
43851
43906
|
}, null, 8, ["config"]),
|
|
43852
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
43853
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
43907
|
+
vue.createElementVNode("div", _hoisted_2$d, [
|
|
43908
|
+
vue.createElementVNode("div", _hoisted_3$b, [
|
|
43854
43909
|
vue.unref(isCodeView) ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("textarea", {
|
|
43855
43910
|
key: 0,
|
|
43856
43911
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(contentHtml) ? contentHtml.value = $event : contentHtml = $event),
|
|
@@ -43870,13 +43925,13 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
43870
43925
|
onKeydown: handleKeyDown2
|
|
43871
43926
|
}, null, 544))
|
|
43872
43927
|
]),
|
|
43873
|
-
vue.unref(isSplitView) ? (vue.openBlock(), vue.createElementBlock("code", _hoisted_4$
|
|
43928
|
+
vue.unref(isSplitView) ? (vue.openBlock(), vue.createElementBlock("code", _hoisted_4$7, vue.toDisplayString(vue.unref(contentHtml)), 1)) : vue.createCommentVNode("", true)
|
|
43874
43929
|
])
|
|
43875
43930
|
]);
|
|
43876
43931
|
};
|
|
43877
43932
|
}
|
|
43878
43933
|
});
|
|
43879
|
-
const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
43934
|
+
const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-9c94183b"]]);
|
|
43880
43935
|
/*!
|
|
43881
43936
|
* Signature Pad v5.0.3 | https://github.com/szimek/signature_pad
|
|
43882
43937
|
* (c) 2024 Szymon Nowak | Released under the MIT license
|
|
@@ -44470,8 +44525,8 @@ class SignaturePad extends SignatureEventTarget {
|
|
|
44470
44525
|
return svg.outerHTML;
|
|
44471
44526
|
}
|
|
44472
44527
|
}
|
|
44473
|
-
const _hoisted_1$
|
|
44474
|
-
const _sfc_main$
|
|
44528
|
+
const _hoisted_1$l = ["disabled"];
|
|
44529
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
44475
44530
|
__name: "SignaturePad",
|
|
44476
44531
|
props: {
|
|
44477
44532
|
sigOption: {},
|
|
@@ -44603,7 +44658,7 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
44603
44658
|
ref: vCanvas,
|
|
44604
44659
|
class: "canvas",
|
|
44605
44660
|
disabled: _ctx.disabled
|
|
44606
|
-
}, null, 8, _hoisted_1$
|
|
44661
|
+
}, null, 8, _hoisted_1$l)
|
|
44607
44662
|
], 34);
|
|
44608
44663
|
};
|
|
44609
44664
|
}
|
|
@@ -47087,13 +47142,13 @@ const VueDraggableNext = vue.defineComponent({
|
|
|
47087
47142
|
}
|
|
47088
47143
|
}
|
|
47089
47144
|
});
|
|
47090
|
-
const _hoisted_1$
|
|
47091
|
-
const _hoisted_2$
|
|
47092
|
-
const _hoisted_3$
|
|
47093
|
-
const _hoisted_4$
|
|
47094
|
-
const _hoisted_5$
|
|
47095
|
-
const _hoisted_6$
|
|
47096
|
-
const _sfc_main$
|
|
47145
|
+
const _hoisted_1$k = ["title"];
|
|
47146
|
+
const _hoisted_2$c = { class: "bagel-input" };
|
|
47147
|
+
const _hoisted_3$a = { class: "table-side-scroll" };
|
|
47148
|
+
const _hoisted_4$6 = { class: "table-header" };
|
|
47149
|
+
const _hoisted_5$6 = { class: "table-reorder" };
|
|
47150
|
+
const _hoisted_6$5 = { class: "table-action" };
|
|
47151
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
47097
47152
|
__name: "TableField",
|
|
47098
47153
|
props: {
|
|
47099
47154
|
description: { default: "" },
|
|
@@ -47158,11 +47213,11 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
47158
47213
|
class: "table-field-wrap",
|
|
47159
47214
|
title: _ctx.description
|
|
47160
47215
|
}, [
|
|
47161
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
47216
|
+
vue.createElementVNode("div", _hoisted_2$c, [
|
|
47162
47217
|
vue.createElementVNode("label", null, vue.toDisplayString((_a2 = vue.unref(fieldMeta)) == null ? void 0 : _a2.label), 1)
|
|
47163
47218
|
]),
|
|
47164
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
47165
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
47219
|
+
vue.createElementVNode("div", _hoisted_3$a, [
|
|
47220
|
+
vue.createElementVNode("div", _hoisted_4$6, [
|
|
47166
47221
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_b = vue.unref(entityMeta)) == null ? void 0 : _b.fields, (field) => {
|
|
47167
47222
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
47168
47223
|
key: `${field.fieldname}header`,
|
|
@@ -47189,8 +47244,8 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
47189
47244
|
key: row.id,
|
|
47190
47245
|
class: "flex table-row"
|
|
47191
47246
|
}, [
|
|
47192
|
-
vue.createElementVNode("div", _hoisted_5$
|
|
47193
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
47247
|
+
vue.createElementVNode("div", _hoisted_5$6, [
|
|
47248
|
+
vue.createVNode(vue.unref(_sfc_main$c), { icon: "more_vert" })
|
|
47194
47249
|
]),
|
|
47195
47250
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a3 = vue.unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
|
|
47196
47251
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -47206,8 +47261,8 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
47206
47261
|
}, null, 8, ["field-meta", "bagel-app", "model-value", "onUpdate:modelValue"])
|
|
47207
47262
|
], 2);
|
|
47208
47263
|
}), 128)),
|
|
47209
|
-
vue.createElementVNode("div", _hoisted_6$
|
|
47210
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
47264
|
+
vue.createElementVNode("div", _hoisted_6$5, [
|
|
47265
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
47211
47266
|
icon: "delete",
|
|
47212
47267
|
onClick: ($event) => removeRow2(index2)
|
|
47213
47268
|
}, null, 8, ["onClick"])
|
|
@@ -47233,11 +47288,11 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
47233
47288
|
])),
|
|
47234
47289
|
_: 1
|
|
47235
47290
|
})
|
|
47236
|
-
], 8, _hoisted_1$
|
|
47291
|
+
], 8, _hoisted_1$k);
|
|
47237
47292
|
};
|
|
47238
47293
|
}
|
|
47239
47294
|
});
|
|
47240
|
-
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
47295
|
+
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-24816da2"]]);
|
|
47241
47296
|
function bind(fn3, thisArg) {
|
|
47242
47297
|
return function wrap2() {
|
|
47243
47298
|
return fn3.apply(thisArg, arguments);
|
|
@@ -49618,7 +49673,7 @@ axios$1.formToJSON = (thing) => formDataToJSON(utils$1.isHTMLForm(thing) ? new F
|
|
|
49618
49673
|
axios$1.getAdapter = adapters.getAdapter;
|
|
49619
49674
|
axios$1.HttpStatusCode = HttpStatusCode;
|
|
49620
49675
|
axios$1.default = axios$1;
|
|
49621
|
-
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}"]]] } };
|
|
49676
|
+
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}"]]] } };
|
|
49622
49677
|
function withMetadataArgument(func, _arguments) {
|
|
49623
49678
|
var args = Array.prototype.slice.call(_arguments);
|
|
49624
49679
|
args.push(metadata);
|
|
@@ -51704,13 +51759,13 @@ function parsePhoneNumber$1() {
|
|
|
51704
51759
|
function parsePhoneNumber() {
|
|
51705
51760
|
return withMetadataArgument(parsePhoneNumber$1, arguments);
|
|
51706
51761
|
}
|
|
51707
|
-
const _hoisted_1$
|
|
51708
|
-
const _hoisted_2$
|
|
51709
|
-
const _hoisted_3$
|
|
51710
|
-
const _hoisted_4$
|
|
51711
|
-
const _hoisted_5$
|
|
51712
|
-
const _hoisted_6$
|
|
51713
|
-
const _sfc_main$
|
|
51762
|
+
const _hoisted_1$j = ["aria-expanded"];
|
|
51763
|
+
const _hoisted_2$b = { class: "p-075 tel-countryp-dropdown" };
|
|
51764
|
+
const _hoisted_3$9 = ["aria-selected", "onClick", "onMousemove"];
|
|
51765
|
+
const _hoisted_4$5 = { class: "tel-country" };
|
|
51766
|
+
const _hoisted_5$5 = { key: 1 };
|
|
51767
|
+
const _hoisted_6$4 = ["id", "required", "placeholder", "disabled", "autocomplete", "pattern", "minlength", "maxlength", "name", "readonly", "tabindex", "aria-describedby"];
|
|
51768
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
51714
51769
|
__name: "TelInput",
|
|
51715
51770
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
51716
51771
|
label: {},
|
|
@@ -51971,7 +52026,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
51971
52026
|
vue.withKeys(reset, ["tab"])
|
|
51972
52027
|
]
|
|
51973
52028
|
}, [
|
|
51974
|
-
!computedDropDownOptions.value.hide ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52029
|
+
!computedDropDownOptions.value.hide ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$K), {
|
|
51975
52030
|
key: 0,
|
|
51976
52031
|
ref_key: "phoneDropdown",
|
|
51977
52032
|
ref: phoneDropdown,
|
|
@@ -51984,7 +52039,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
51984
52039
|
class: "flex gap-05",
|
|
51985
52040
|
onClick: _cache[0] || (_cache[0] = ($event) => vue.isRef(open) ? open.value = true : open = true)
|
|
51986
52041
|
}, [
|
|
51987
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
52042
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
51988
52043
|
icon: vue.unref(open) ? "collapse_all" : "expand_all"
|
|
51989
52044
|
}, null, 8, ["icon"]),
|
|
51990
52045
|
computedDropDownOptions.value.showFlags && vue.unref(activeCountryCode) ? (vue.openBlock(), vue.createBlock(vue.unref(Flag), {
|
|
@@ -51994,7 +52049,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
51994
52049
|
])
|
|
51995
52050
|
]),
|
|
51996
52051
|
default: vue.withCtx(() => [
|
|
51997
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
52052
|
+
vue.createElementVNode("div", _hoisted_2$b, [
|
|
51998
52053
|
_ctx.searchable ? (vue.openBlock(), vue.createBlock(vue.unref(TextInput), {
|
|
51999
52054
|
key: 0,
|
|
52000
52055
|
modelValue: searchQuery.value,
|
|
@@ -52022,9 +52077,9 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
52022
52077
|
key: 0,
|
|
52023
52078
|
country: pb.iso2
|
|
52024
52079
|
}, null, 8, ["country"])) : vue.createCommentVNode("", true),
|
|
52025
|
-
vue.createElementVNode("p", _hoisted_4$
|
|
52026
|
-
computedDropDownOptions.value.showDialCodeInList ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$
|
|
52027
|
-
], 40, _hoisted_3$
|
|
52080
|
+
vue.createElementVNode("p", _hoisted_4$5, vue.toDisplayString(pb.name), 1),
|
|
52081
|
+
computedDropDownOptions.value.showDialCodeInList ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$5, " +" + vue.toDisplayString(pb.dialCode), 1)) : vue.createCommentVNode("", true)
|
|
52082
|
+
], 40, _hoisted_3$9);
|
|
52028
52083
|
}), 128))
|
|
52029
52084
|
], 2)
|
|
52030
52085
|
])
|
|
@@ -52055,22 +52110,22 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
52055
52110
|
vue.withKeys(onSpace, ["space"])
|
|
52056
52111
|
],
|
|
52057
52112
|
onKeydown: handleInput
|
|
52058
|
-
}, null, 44, _hoisted_6$
|
|
52113
|
+
}, null, 44, _hoisted_6$4), [
|
|
52059
52114
|
[vue.vModelText, phone.value]
|
|
52060
52115
|
])
|
|
52061
|
-
], 40, _hoisted_1$
|
|
52116
|
+
], 40, _hoisted_1$j)
|
|
52062
52117
|
])
|
|
52063
52118
|
], 2);
|
|
52064
52119
|
};
|
|
52065
52120
|
}
|
|
52066
52121
|
});
|
|
52067
|
-
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52068
|
-
const _hoisted_1$
|
|
52069
|
-
const _hoisted_2$
|
|
52070
|
-
const _hoisted_3$
|
|
52071
|
-
const _hoisted_4$
|
|
52072
|
-
const _hoisted_5$
|
|
52073
|
-
const _sfc_main$
|
|
52122
|
+
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-41e27ddf"]]);
|
|
52123
|
+
const _hoisted_1$i = ["title"];
|
|
52124
|
+
const _hoisted_2$a = ["for"];
|
|
52125
|
+
const _hoisted_3$8 = ["id", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
|
|
52126
|
+
const _hoisted_4$4 = ["id", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
|
|
52127
|
+
const _hoisted_5$4 = { key: 2 };
|
|
52128
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
52074
52129
|
__name: "TextInput",
|
|
52075
52130
|
props: {
|
|
52076
52131
|
id: {},
|
|
@@ -52163,7 +52218,7 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
52163
52218
|
onFocusout: _cache[1] || (_cache[1] = //@ts-ignore
|
|
52164
52219
|
(...args) => _ctx.onFocusout && _ctx.onFocusout(...args)),
|
|
52165
52220
|
onInput: updateInputVal
|
|
52166
|
-
}), null, 16, _hoisted_3$
|
|
52221
|
+
}), null, 16, _hoisted_3$8)), [
|
|
52167
52222
|
[
|
|
52168
52223
|
vue.vModelDynamic,
|
|
52169
52224
|
vue.unref(inputVal),
|
|
@@ -52187,29 +52242,29 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
52187
52242
|
onInput: updateInputVal,
|
|
52188
52243
|
onFocusout: _cache[3] || (_cache[3] = //@ts-ignore
|
|
52189
52244
|
(...args) => _ctx.onFocusout && _ctx.onFocusout(...args))
|
|
52190
|
-
}), null, 16, _hoisted_4$
|
|
52245
|
+
}), null, 16, _hoisted_4$4)), [
|
|
52191
52246
|
[vue.vModelText, vue.unref(inputVal)]
|
|
52192
52247
|
]),
|
|
52193
|
-
_ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$
|
|
52194
|
-
], 8, _hoisted_2$
|
|
52195
|
-
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52248
|
+
_ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$4, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
|
|
52249
|
+
], 8, _hoisted_2$a),
|
|
52250
|
+
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
52196
52251
|
key: 0,
|
|
52197
52252
|
class: "iconStart",
|
|
52198
52253
|
icon: _ctx.iconStart
|
|
52199
52254
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
52200
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52255
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
52201
52256
|
key: 1,
|
|
52202
52257
|
icon: _ctx.icon
|
|
52203
52258
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
52204
|
-
], 10, _hoisted_1$
|
|
52259
|
+
], 10, _hoisted_1$i);
|
|
52205
52260
|
};
|
|
52206
52261
|
}
|
|
52207
52262
|
});
|
|
52208
|
-
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52209
|
-
const _hoisted_1$
|
|
52210
|
-
const _hoisted_2$
|
|
52211
|
-
const _hoisted_3$
|
|
52212
|
-
const _sfc_main$
|
|
52263
|
+
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-739e3acb"]]);
|
|
52264
|
+
const _hoisted_1$h = ["title"];
|
|
52265
|
+
const _hoisted_2$9 = ["id", "required"];
|
|
52266
|
+
const _hoisted_3$7 = ["for"];
|
|
52267
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
52213
52268
|
__name: "ToggleInput",
|
|
52214
52269
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
52215
52270
|
label: {},
|
|
@@ -52245,28 +52300,28 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
52245
52300
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => checked.value = $event),
|
|
52246
52301
|
type: "checkbox",
|
|
52247
52302
|
required: _ctx.required
|
|
52248
|
-
}, null, 8, _hoisted_2$
|
|
52303
|
+
}, null, 8, _hoisted_2$9), [
|
|
52249
52304
|
[vue.vModelCheckbox, checked.value]
|
|
52250
52305
|
]),
|
|
52251
52306
|
vue.createElementVNode("label", { for: inputId.value }, [
|
|
52252
52307
|
vue.renderSlot(_ctx.$slots, "label", {}, () => [
|
|
52253
52308
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
52254
52309
|
], true)
|
|
52255
|
-
], 8, _hoisted_3$
|
|
52256
|
-
], 10, _hoisted_1$
|
|
52310
|
+
], 8, _hoisted_3$7)
|
|
52311
|
+
], 10, _hoisted_1$h);
|
|
52257
52312
|
};
|
|
52258
52313
|
}
|
|
52259
52314
|
});
|
|
52260
|
-
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52261
|
-
const _hoisted_1$
|
|
52262
|
-
const _sfc_main$
|
|
52315
|
+
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-683b2f6d"]]);
|
|
52316
|
+
const _hoisted_1$g = { class: "m-0 pb-025 txt14 line-height-1" };
|
|
52317
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
52263
52318
|
__name: "BottomMenu",
|
|
52264
52319
|
props: {
|
|
52265
52320
|
navLinks: {}
|
|
52266
52321
|
},
|
|
52267
52322
|
setup(__props) {
|
|
52268
52323
|
return (_ctx, _cache) => {
|
|
52269
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52324
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$O), { class: "hide m_grid gap-05 bgl_bottombar px-1 txt14 justify-content-start align-items-center overflow-x" }, {
|
|
52270
52325
|
default: vue.withCtx(() => [
|
|
52271
52326
|
vue.renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
52272
52327
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.navLinks, (nav2, i2) => {
|
|
@@ -52277,12 +52332,12 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
52277
52332
|
onClick: nav2.onClick
|
|
52278
52333
|
}, {
|
|
52279
52334
|
default: vue.withCtx(() => [
|
|
52280
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
52335
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
52281
52336
|
icon: nav2.icon,
|
|
52282
52337
|
size: 1.4,
|
|
52283
52338
|
class: "m-0"
|
|
52284
52339
|
}, null, 8, ["icon"]),
|
|
52285
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
52340
|
+
vue.createElementVNode("p", _hoisted_1$g, vue.toDisplayString(nav2.label), 1)
|
|
52286
52341
|
]),
|
|
52287
52342
|
_: 2
|
|
52288
52343
|
}, 1032, ["to", "onClick"]);
|
|
@@ -52293,8 +52348,8 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
52293
52348
|
};
|
|
52294
52349
|
}
|
|
52295
52350
|
});
|
|
52296
|
-
const BottomMenu = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52297
|
-
const _sfc_main$
|
|
52351
|
+
const BottomMenu = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-564c7855"]]);
|
|
52352
|
+
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
52298
52353
|
__name: "Layout",
|
|
52299
52354
|
props: {
|
|
52300
52355
|
gap: { default: 1 },
|
|
@@ -52335,9 +52390,9 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
52335
52390
|
};
|
|
52336
52391
|
}
|
|
52337
52392
|
});
|
|
52338
|
-
const Layout = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52339
|
-
const _hoisted_1$
|
|
52340
|
-
const _sfc_main$
|
|
52393
|
+
const Layout = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-f1781965"]]);
|
|
52394
|
+
const _hoisted_1$f = { key: 0 };
|
|
52395
|
+
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
52341
52396
|
__name: "SidebarMenu",
|
|
52342
52397
|
props: {
|
|
52343
52398
|
navLinks: {},
|
|
@@ -52366,7 +52421,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
52366
52421
|
icon: "keyboard_arrow_right",
|
|
52367
52422
|
onClick: toggleMenu
|
|
52368
52423
|
}),
|
|
52369
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
52424
|
+
vue.createVNode(vue.unref(_sfc_main$O), { class: "py-1 px-05 h-100 flex column gap-05 rounded relative bg-primary font-light overflow-y" }, {
|
|
52370
52425
|
default: vue.withCtx(() => [
|
|
52371
52426
|
!vue.unref(isOpen) || !vue.unref(slots)["brand-open"] ? vue.renderSlot(_ctx.$slots, "brand", { key: 0 }, void 0, true) : vue.createCommentVNode("", true),
|
|
52372
52427
|
vue.unref(isOpen) ? vue.renderSlot(_ctx.$slots, "brand-open", { key: 1 }, void 0, true) : vue.createCommentVNode("", true),
|
|
@@ -52378,13 +52433,13 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
52378
52433
|
class: "nav-button px-075 me-auto w-100"
|
|
52379
52434
|
}, {
|
|
52380
52435
|
default: vue.withCtx(() => [
|
|
52381
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
52436
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
52382
52437
|
icon: nav2.icon,
|
|
52383
52438
|
size: 1.4
|
|
52384
52439
|
}, null, 8, ["icon"]),
|
|
52385
52440
|
vue.createVNode(vue.Transition, { name: "showP" }, {
|
|
52386
52441
|
default: vue.withCtx(() => [
|
|
52387
|
-
_ctx.open ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_1$
|
|
52442
|
+
_ctx.open ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_1$f, vue.toDisplayString(nav2.label), 1)) : vue.createCommentVNode("", true)
|
|
52388
52443
|
]),
|
|
52389
52444
|
_: 2
|
|
52390
52445
|
}, 1024)
|
|
@@ -52412,11 +52467,11 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
52412
52467
|
};
|
|
52413
52468
|
}
|
|
52414
52469
|
});
|
|
52415
|
-
const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52416
|
-
const _hoisted_1$
|
|
52417
|
-
const _hoisted_2$
|
|
52418
|
-
const _hoisted_3$
|
|
52419
|
-
const _sfc_main$
|
|
52470
|
+
const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-3ee4f3f7"]]);
|
|
52471
|
+
const _hoisted_1$e = { class: "bgl_card tabs-top" };
|
|
52472
|
+
const _hoisted_2$8 = { class: "tabs grid auto-flow-columns fit-content" };
|
|
52473
|
+
const _hoisted_3$6 = ["onClick"];
|
|
52474
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
52420
52475
|
__name: "TabbedLayout",
|
|
52421
52476
|
props: {
|
|
52422
52477
|
title: {},
|
|
@@ -52449,9 +52504,9 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
52449
52504
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
52450
52505
|
class: vue.normalizeClass(["h-100 grid list-view gap-1", { "side-tabs": _ctx.sideTabs }])
|
|
52451
52506
|
}, [
|
|
52452
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
52507
|
+
vue.createElementVNode("div", _hoisted_1$e, [
|
|
52453
52508
|
vue.renderSlot(_ctx.$slots, "top-section", {}, void 0, true),
|
|
52454
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
52509
|
+
vue.createElementVNode("div", _hoisted_2$8, [
|
|
52455
52510
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.tabs, (tab) => {
|
|
52456
52511
|
var _a2;
|
|
52457
52512
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -52460,7 +52515,7 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
52460
52515
|
active: tab === vue.unref(activeTab) || tab === ((_a2 = _ctx.router) == null ? void 0 : _a2.currentRoute.value.path.split("/").slice(-1)[0])
|
|
52461
52516
|
}, "tab"]),
|
|
52462
52517
|
onClick: ($event) => changeTab(tab)
|
|
52463
|
-
}, vue.toDisplayString(tab), 11, _hoisted_3$
|
|
52518
|
+
}, vue.toDisplayString(tab), 11, _hoisted_3$6);
|
|
52464
52519
|
}), 128))
|
|
52465
52520
|
])
|
|
52466
52521
|
]),
|
|
@@ -52476,7 +52531,7 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
52476
52531
|
};
|
|
52477
52532
|
}
|
|
52478
52533
|
});
|
|
52479
|
-
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52534
|
+
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-75e0b322"]]);
|
|
52480
52535
|
const state$1 = vue.reactive(/* @__PURE__ */ new Map());
|
|
52481
52536
|
function useTabs(group) {
|
|
52482
52537
|
if (!state$1.has(group)) {
|
|
@@ -52490,8 +52545,8 @@ function useTabs(group) {
|
|
|
52490
52545
|
});
|
|
52491
52546
|
return { currentTab };
|
|
52492
52547
|
}
|
|
52493
|
-
const _hoisted_1$
|
|
52494
|
-
const _sfc_main$
|
|
52548
|
+
const _hoisted_1$d = { key: 0 };
|
|
52549
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
52495
52550
|
__name: "Tabs",
|
|
52496
52551
|
props: {
|
|
52497
52552
|
tabs: {},
|
|
@@ -52533,15 +52588,15 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
52533
52588
|
group: vue.unref(group),
|
|
52534
52589
|
class: "mb-05"
|
|
52535
52590
|
}, null, 8, ["modelValue", "flat", "tabs", "group"]),
|
|
52536
|
-
vue.unref(currentTab) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
52591
|
+
vue.unref(currentTab) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$d, [
|
|
52537
52592
|
vue.unref(slots)[vue.unref(currentTab)] ? vue.renderSlot(_ctx.$slots, vue.unref(currentTab), { key: 0 }) : vue.unref(currentTab) ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(tabComponent)), { key: 1 })) : vue.createCommentVNode("", true)
|
|
52538
52593
|
])) : vue.createCommentVNode("", true)
|
|
52539
52594
|
], 64);
|
|
52540
52595
|
};
|
|
52541
52596
|
}
|
|
52542
52597
|
});
|
|
52543
|
-
const _hoisted_1$
|
|
52544
|
-
const _sfc_main$
|
|
52598
|
+
const _hoisted_1$c = { key: 0 };
|
|
52599
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
52545
52600
|
__name: "TabsBody",
|
|
52546
52601
|
props: {
|
|
52547
52602
|
group: {}
|
|
@@ -52550,14 +52605,14 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
52550
52605
|
const props2 = __props;
|
|
52551
52606
|
const { currentTab } = useTabs(props2.group);
|
|
52552
52607
|
return (_ctx, _cache) => {
|
|
52553
|
-
return vue.unref(currentTab) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
52608
|
+
return vue.unref(currentTab) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$c, [
|
|
52554
52609
|
vue.renderSlot(_ctx.$slots, vue.unref(currentTab))
|
|
52555
52610
|
])) : vue.createCommentVNode("", true);
|
|
52556
52611
|
};
|
|
52557
52612
|
}
|
|
52558
52613
|
});
|
|
52559
|
-
const _hoisted_1$
|
|
52560
|
-
const _sfc_main$
|
|
52614
|
+
const _hoisted_1$b = ["onClick"];
|
|
52615
|
+
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
52561
52616
|
__name: "TabsNav",
|
|
52562
52617
|
props: {
|
|
52563
52618
|
title: {},
|
|
@@ -52631,21 +52686,21 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
52631
52686
|
class: vue.normalizeClass([{ active: isActive2(tab) }, "bgl_tab relative z-1"]),
|
|
52632
52687
|
onClick: ($event) => selectTab(tab)
|
|
52633
52688
|
}, [
|
|
52634
|
-
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52689
|
+
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
52635
52690
|
key: 0,
|
|
52636
52691
|
icon: tab.icon
|
|
52637
52692
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
52638
52693
|
vue.createTextVNode(" " + vue.toDisplayString(tabLabel(tab)), 1)
|
|
52639
|
-
], 10, _hoisted_1$
|
|
52694
|
+
], 10, _hoisted_1$b);
|
|
52640
52695
|
}), 128))
|
|
52641
52696
|
], 2);
|
|
52642
52697
|
};
|
|
52643
52698
|
}
|
|
52644
52699
|
});
|
|
52645
|
-
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52646
|
-
const _hoisted_1$
|
|
52647
|
-
const _hoisted_2$
|
|
52648
|
-
const _sfc_main$
|
|
52700
|
+
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-d4d64201"]]);
|
|
52701
|
+
const _hoisted_1$a = { class: "no-margin ellipsis line-height-14 pb-025" };
|
|
52702
|
+
const _hoisted_2$7 = { class: "txt12 no-margin txt-gray ellipsis" };
|
|
52703
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
52649
52704
|
__name: "ListItem",
|
|
52650
52705
|
props: {
|
|
52651
52706
|
src: {},
|
|
@@ -52672,18 +52727,18 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
52672
52727
|
src: _ctx.src,
|
|
52673
52728
|
size: 40
|
|
52674
52729
|
}, null, 8, ["name", "src"])) : vue.createCommentVNode("", true),
|
|
52675
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52730
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
52676
52731
|
key: 1,
|
|
52677
52732
|
size: "1.2",
|
|
52678
52733
|
class: "color-primary",
|
|
52679
52734
|
icon: _ctx.icon
|
|
52680
52735
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
52681
52736
|
vue.createElementVNode("div", null, [
|
|
52682
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
52737
|
+
vue.createElementVNode("p", _hoisted_1$a, [
|
|
52683
52738
|
vue.createTextVNode(vue.toDisplayString(_ctx.title) + " ", 1),
|
|
52684
52739
|
vue.renderSlot(_ctx.$slots, "default")
|
|
52685
52740
|
]),
|
|
52686
|
-
vue.createElementVNode("p", _hoisted_2$
|
|
52741
|
+
vue.createElementVNode("p", _hoisted_2$7, [
|
|
52687
52742
|
vue.createTextVNode(vue.toDisplayString(_ctx.subtitle) + " ", 1),
|
|
52688
52743
|
vue.renderSlot(_ctx.$slots, "subtitle")
|
|
52689
52744
|
])
|
|
@@ -52694,25 +52749,25 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
52694
52749
|
};
|
|
52695
52750
|
}
|
|
52696
52751
|
});
|
|
52697
|
-
const _sfc_main$
|
|
52698
|
-
const _hoisted_1$
|
|
52699
|
-
const _hoisted_2$
|
|
52700
|
-
const _hoisted_3$
|
|
52752
|
+
const _sfc_main$e = {};
|
|
52753
|
+
const _hoisted_1$9 = { class: "list-wrap bgl_card thin grid overflow-hidden h-100 pt-0 pb-05 px-0 m_pb-0" };
|
|
52754
|
+
const _hoisted_2$6 = { class: "p-1" };
|
|
52755
|
+
const _hoisted_3$5 = { class: "list-content auto-flow-rows align-items-start overflow-y h-100" };
|
|
52701
52756
|
function _sfc_render$2(_ctx, _cache) {
|
|
52702
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
52703
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
52757
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$9, [
|
|
52758
|
+
vue.createElementVNode("div", _hoisted_2$6, [
|
|
52704
52759
|
vue.renderSlot(_ctx.$slots, "header")
|
|
52705
52760
|
]),
|
|
52706
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
52761
|
+
vue.createElementVNode("div", _hoisted_3$5, [
|
|
52707
52762
|
vue.renderSlot(_ctx.$slots, "default")
|
|
52708
52763
|
])
|
|
52709
52764
|
]);
|
|
52710
52765
|
}
|
|
52711
|
-
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
52712
|
-
const _hoisted_1$
|
|
52766
|
+
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$2]]);
|
|
52767
|
+
const _hoisted_1$8 = ["id"];
|
|
52713
52768
|
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>';
|
|
52714
52769
|
const leafletScriptUrl = "https://unpkg.com/leaflet@1.9.4/dist/leaflet.js";
|
|
52715
|
-
const _sfc_main$
|
|
52770
|
+
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
52716
52771
|
__name: "MapEmbed",
|
|
52717
52772
|
props: {
|
|
52718
52773
|
center: { default: () => [31.7683, 35.2137] },
|
|
@@ -52783,11 +52838,11 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
52783
52838
|
id: id.value,
|
|
52784
52839
|
class: "leaflet-map",
|
|
52785
52840
|
style: vue.normalizeStyle({ height: `${props2.height || 400}px` })
|
|
52786
|
-
}, null, 12, _hoisted_1$
|
|
52841
|
+
}, null, 12, _hoisted_1$8);
|
|
52787
52842
|
};
|
|
52788
52843
|
}
|
|
52789
52844
|
});
|
|
52790
|
-
const _sfc_main$
|
|
52845
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
52791
52846
|
__name: "MaterialIcon",
|
|
52792
52847
|
props: {
|
|
52793
52848
|
icon: {},
|
|
@@ -52805,19 +52860,19 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
52805
52860
|
};
|
|
52806
52861
|
}
|
|
52807
52862
|
});
|
|
52808
|
-
const _hoisted_1$
|
|
52863
|
+
const _hoisted_1$7 = {
|
|
52809
52864
|
key: 0,
|
|
52810
52865
|
class: "tool-bar"
|
|
52811
52866
|
};
|
|
52812
|
-
const _hoisted_2$
|
|
52867
|
+
const _hoisted_2$5 = {
|
|
52813
52868
|
key: 1,
|
|
52814
52869
|
class: "sticky bg-popup z-index-999 -mt-1 -ms-1 px-025 h-30px pt-025 modal-no-title"
|
|
52815
52870
|
};
|
|
52816
|
-
const _hoisted_3$
|
|
52871
|
+
const _hoisted_3$4 = {
|
|
52817
52872
|
key: 2,
|
|
52818
52873
|
class: "modal-footer mt-1"
|
|
52819
52874
|
};
|
|
52820
|
-
const _sfc_main$
|
|
52875
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
52821
52876
|
__name: "Modal",
|
|
52822
52877
|
props: {
|
|
52823
52878
|
side: { type: Boolean },
|
|
@@ -52873,7 +52928,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
52873
52928
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
52874
52929
|
onKeydown: vue.withKeys(closeModal, ["esc"])
|
|
52875
52930
|
}, [
|
|
52876
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
52931
|
+
vue.createVNode(vue.unref(_sfc_main$O), {
|
|
52877
52932
|
class: "modal",
|
|
52878
52933
|
style: vue.normalizeStyle({ ...maxWidth.value }),
|
|
52879
52934
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
@@ -52882,7 +52937,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
52882
52937
|
default: vue.withCtx(() => {
|
|
52883
52938
|
var _a2;
|
|
52884
52939
|
return [
|
|
52885
|
-
vue.unref(slots).toolbar || _ctx.title ? (vue.openBlock(), vue.createElementBlock("header", _hoisted_1$
|
|
52940
|
+
vue.unref(slots).toolbar || _ctx.title ? (vue.openBlock(), vue.createElementBlock("header", _hoisted_1$7, [
|
|
52886
52941
|
vue.renderSlot(_ctx.$slots, "toolbar"),
|
|
52887
52942
|
vue.createVNode(vue.unref(Btn), {
|
|
52888
52943
|
style: vue.normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
@@ -52896,7 +52951,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
52896
52951
|
tag: "h3",
|
|
52897
52952
|
label: _ctx.title
|
|
52898
52953
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true)
|
|
52899
|
-
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
52954
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$5, [
|
|
52900
52955
|
vue.createVNode(vue.unref(Btn), {
|
|
52901
52956
|
class: "position-start",
|
|
52902
52957
|
icon: "close",
|
|
@@ -52906,7 +52961,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
52906
52961
|
})
|
|
52907
52962
|
])),
|
|
52908
52963
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
52909
|
-
vue.unref(slots).footer || ((_a2 = _ctx.actions) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("footer", _hoisted_3$
|
|
52964
|
+
vue.unref(slots).footer || ((_a2 = _ctx.actions) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("footer", _hoisted_3$4, [
|
|
52910
52965
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.actions, (action, i2) => {
|
|
52911
52966
|
return vue.openBlock(), vue.createBlock(vue.unref(Btn), vue.mergeProps({
|
|
52912
52967
|
key: i2,
|
|
@@ -52924,8 +52979,8 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
52924
52979
|
};
|
|
52925
52980
|
}
|
|
52926
52981
|
});
|
|
52927
|
-
const _hoisted_1$
|
|
52928
|
-
const _sfc_main$
|
|
52982
|
+
const _hoisted_1$6 = { class: "pb-05 pretty" };
|
|
52983
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
52929
52984
|
__name: "ModalConfirm",
|
|
52930
52985
|
props: {
|
|
52931
52986
|
title: {},
|
|
@@ -52941,7 +52996,7 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
52941
52996
|
emit2("update:visible");
|
|
52942
52997
|
}
|
|
52943
52998
|
return (_ctx, _cache) => {
|
|
52944
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
52999
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$b), {
|
|
52945
53000
|
title: _ctx.title,
|
|
52946
53001
|
width: "380px",
|
|
52947
53002
|
dismissable: false,
|
|
@@ -52962,14 +53017,14 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
52962
53017
|
})
|
|
52963
53018
|
]),
|
|
52964
53019
|
default: vue.withCtx(() => [
|
|
52965
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
53020
|
+
vue.createElementVNode("p", _hoisted_1$6, vue.toDisplayString(_ctx.message), 1)
|
|
52966
53021
|
]),
|
|
52967
53022
|
_: 1
|
|
52968
53023
|
}, 8, ["title"]);
|
|
52969
53024
|
};
|
|
52970
53025
|
}
|
|
52971
53026
|
});
|
|
52972
|
-
const _sfc_main$
|
|
53027
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
52973
53028
|
__name: "ModalForm",
|
|
52974
53029
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
52975
53030
|
side: { type: Boolean },
|
|
@@ -53030,7 +53085,7 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53030
53085
|
}
|
|
53031
53086
|
__expose({ setFormValues });
|
|
53032
53087
|
return (_ctx, _cache) => {
|
|
53033
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
53088
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$b), {
|
|
53034
53089
|
ref_key: "modal",
|
|
53035
53090
|
ref: modal,
|
|
53036
53091
|
side: _ctx.side,
|
|
@@ -53041,7 +53096,7 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53041
53096
|
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => emit2("update:visible", $event))
|
|
53042
53097
|
}, vue.createSlots({
|
|
53043
53098
|
default: vue.withCtx(() => [
|
|
53044
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53099
|
+
vue.createVNode(vue.unref(_sfc_main$H), {
|
|
53045
53100
|
ref_key: "form",
|
|
53046
53101
|
ref: form,
|
|
53047
53102
|
modelValue: formData.value,
|
|
@@ -53083,14 +53138,14 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53083
53138
|
};
|
|
53084
53139
|
}
|
|
53085
53140
|
});
|
|
53086
|
-
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
53087
|
-
const _hoisted_1$
|
|
53088
|
-
const _hoisted_2$
|
|
53089
|
-
const _hoisted_3$
|
|
53090
|
-
const _hoisted_4$
|
|
53091
|
-
const _hoisted_5$
|
|
53092
|
-
const _hoisted_6$
|
|
53093
|
-
const _sfc_main$
|
|
53141
|
+
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-083a1b2d"]]);
|
|
53142
|
+
const _hoisted_1$5 = { class: "full-nav" };
|
|
53143
|
+
const _hoisted_2$4 = { class: "nav-scroll" };
|
|
53144
|
+
const _hoisted_3$3 = { class: "nav-links-wrapper" };
|
|
53145
|
+
const _hoisted_4$3 = { class: "tooltip" };
|
|
53146
|
+
const _hoisted_5$3 = { class: "bot-buttons-wrapper" };
|
|
53147
|
+
const _hoisted_6$3 = { class: "tooltip" };
|
|
53148
|
+
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
53094
53149
|
__name: "NavBar",
|
|
53095
53150
|
props: {
|
|
53096
53151
|
footerLinks: { default: () => [] },
|
|
@@ -53122,14 +53177,14 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53122
53177
|
onClick: toggleMenu,
|
|
53123
53178
|
onKeypress: vue.withKeys(toggleMenu, ["enter"])
|
|
53124
53179
|
}, [
|
|
53125
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53180
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
53126
53181
|
icon: "chevron_right",
|
|
53127
53182
|
class: "top-arrow"
|
|
53128
53183
|
})
|
|
53129
53184
|
], 32),
|
|
53130
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
53131
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
53132
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
53185
|
+
vue.createElementVNode("div", _hoisted_1$5, [
|
|
53186
|
+
vue.createElementVNode("div", _hoisted_2$4, [
|
|
53187
|
+
vue.createElementVNode("div", _hoisted_3$3, [
|
|
53133
53188
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.links, (link) => {
|
|
53134
53189
|
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(link.to ? "router-link" : "div"), {
|
|
53135
53190
|
key: link.label,
|
|
@@ -53141,17 +53196,17 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53141
53196
|
}
|
|
53142
53197
|
}, {
|
|
53143
53198
|
default: vue.withCtx(() => [
|
|
53144
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53199
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
53145
53200
|
icon: link.icon
|
|
53146
53201
|
}, null, 8, ["icon"]),
|
|
53147
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
53202
|
+
vue.createElementVNode("div", _hoisted_4$3, vue.toDisplayString(link.label), 1)
|
|
53148
53203
|
]),
|
|
53149
53204
|
_: 2
|
|
53150
53205
|
}, 1032, ["to", "onClick"]);
|
|
53151
53206
|
}), 128))
|
|
53152
53207
|
])
|
|
53153
53208
|
]),
|
|
53154
|
-
vue.createElementVNode("div", _hoisted_5$
|
|
53209
|
+
vue.createElementVNode("div", _hoisted_5$3, [
|
|
53155
53210
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.footerLinks, (link) => {
|
|
53156
53211
|
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(link.to ? "router-link" : "div"), {
|
|
53157
53212
|
key: link.label,
|
|
@@ -53163,10 +53218,10 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53163
53218
|
}
|
|
53164
53219
|
}, {
|
|
53165
53220
|
default: vue.withCtx(() => [
|
|
53166
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53221
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
53167
53222
|
icon: link.icon
|
|
53168
53223
|
}, null, 8, ["icon"]),
|
|
53169
|
-
vue.createElementVNode("div", _hoisted_6$
|
|
53224
|
+
vue.createElementVNode("div", _hoisted_6$3, vue.toDisplayString(link.label), 1)
|
|
53170
53225
|
]),
|
|
53171
53226
|
_: 2
|
|
53172
53227
|
}, 1032, ["to", "onClick"]);
|
|
@@ -53178,10 +53233,10 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53178
53233
|
};
|
|
53179
53234
|
}
|
|
53180
53235
|
});
|
|
53181
|
-
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
53182
|
-
const _hoisted_1$
|
|
53183
|
-
const _hoisted_2$
|
|
53184
|
-
const _sfc_main$
|
|
53236
|
+
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-a03e64ba"]]);
|
|
53237
|
+
const _hoisted_1$4 = { class: "page-top" };
|
|
53238
|
+
const _hoisted_2$3 = { class: "top-title m-0" };
|
|
53239
|
+
const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
53185
53240
|
__name: "PageTitle",
|
|
53186
53241
|
props: {
|
|
53187
53242
|
value: {
|
|
@@ -53191,8 +53246,8 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53191
53246
|
},
|
|
53192
53247
|
setup(__props) {
|
|
53193
53248
|
return (_ctx, _cache) => {
|
|
53194
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
53195
|
-
vue.createElementVNode("h1", _hoisted_2$
|
|
53249
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$4, [
|
|
53250
|
+
vue.createElementVNode("h1", _hoisted_2$3, [
|
|
53196
53251
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
53197
53252
|
vue.createTextVNode(" " + vue.toDisplayString(__props.value), 1)
|
|
53198
53253
|
])
|
|
@@ -53200,6 +53255,139 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53200
53255
|
};
|
|
53201
53256
|
}
|
|
53202
53257
|
});
|
|
53258
|
+
const _hoisted_1$3 = ["disabled"];
|
|
53259
|
+
const _hoisted_2$2 = { class: "bgl_pill-flex" };
|
|
53260
|
+
const _hoisted_3$2 = {
|
|
53261
|
+
key: 0,
|
|
53262
|
+
class: "loading"
|
|
53263
|
+
};
|
|
53264
|
+
const _hoisted_4$2 = { key: 1 };
|
|
53265
|
+
const _hoisted_5$2 = {
|
|
53266
|
+
key: 0,
|
|
53267
|
+
class: "flex h-100"
|
|
53268
|
+
};
|
|
53269
|
+
const _hoisted_6$2 = {
|
|
53270
|
+
key: 5,
|
|
53271
|
+
class: "loading"
|
|
53272
|
+
};
|
|
53273
|
+
const _hoisted_7$2 = { key: 6 };
|
|
53274
|
+
const _hoisted_8$2 = {
|
|
53275
|
+
key: 0,
|
|
53276
|
+
class: "flex h-100"
|
|
53277
|
+
};
|
|
53278
|
+
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
53279
|
+
__name: "Pill",
|
|
53280
|
+
props: {
|
|
53281
|
+
disabled: { type: Boolean, default: false },
|
|
53282
|
+
icon: {},
|
|
53283
|
+
iconEnd: {},
|
|
53284
|
+
color: {},
|
|
53285
|
+
theme: {},
|
|
53286
|
+
flat: { type: Boolean },
|
|
53287
|
+
border: { type: Boolean, default: false },
|
|
53288
|
+
outline: { type: Boolean, default: false },
|
|
53289
|
+
loading: { type: Boolean, default: false },
|
|
53290
|
+
value: {},
|
|
53291
|
+
round: { type: Boolean, default: false },
|
|
53292
|
+
btnStart: { type: Boolean, default: true },
|
|
53293
|
+
btnEnd: { type: Boolean }
|
|
53294
|
+
},
|
|
53295
|
+
setup(__props) {
|
|
53296
|
+
vue.useCssVars((_ctx) => ({
|
|
53297
|
+
"4d2f98bb": computedBackgroundColor.value,
|
|
53298
|
+
"1dbee7d6": cumputedTextColor.value
|
|
53299
|
+
}));
|
|
53300
|
+
const props2 = __props;
|
|
53301
|
+
const slots = vue.useSlots();
|
|
53302
|
+
const computedTheme = vue.computed(
|
|
53303
|
+
() => {
|
|
53304
|
+
if (props2.disabled) return "gray-light";
|
|
53305
|
+
return props2.color || props2.theme;
|
|
53306
|
+
}
|
|
53307
|
+
);
|
|
53308
|
+
const computedDefaultColors = vue.computed(
|
|
53309
|
+
() => ({
|
|
53310
|
+
backgroundColor: "var(--bgl-primary)",
|
|
53311
|
+
color: props2.flat ? "var(--bgl-text-color)" : "var(--bgl-light-text)"
|
|
53312
|
+
})
|
|
53313
|
+
);
|
|
53314
|
+
function getThemeColors(theme) {
|
|
53315
|
+
return {
|
|
53316
|
+
...computedDefaultColors.value,
|
|
53317
|
+
...theme,
|
|
53318
|
+
color: props2.flat ? theme.backgroundColor : theme.color
|
|
53319
|
+
};
|
|
53320
|
+
}
|
|
53321
|
+
const themes = {
|
|
53322
|
+
"red": getThemeColors({ backgroundColor: "var(--bgl-red)" }),
|
|
53323
|
+
"white": getThemeColors({ backgroundColor: "var(--bgl-white)", color: "var(--bgl-black)" }),
|
|
53324
|
+
"black": getThemeColors({ backgroundColor: "var(--bgl-black)", color: "var(--bgl-white)" }),
|
|
53325
|
+
"green": getThemeColors({ backgroundColor: "var(--bgl-green)", color: "var(--bgl-white)" }),
|
|
53326
|
+
"primary": getThemeColors({ backgroundColor: "var(--bgl-primary)", color: "var(--bgl-white)" }),
|
|
53327
|
+
"gray": getThemeColors({ backgroundColor: "var(--bgl-gray-light)", color: "var(--bgl-black)" }),
|
|
53328
|
+
"light": getThemeColors({ backgroundColor: "var(--bgl-primary-light)", color: "var(--bgl-primary)" }),
|
|
53329
|
+
"gray-light": getThemeColors({ backgroundColor: "var(--bgl-gray-light)", color: "var(--bgl-gray)" }),
|
|
53330
|
+
"blue": getThemeColors({})
|
|
53331
|
+
};
|
|
53332
|
+
const cumputedTextColor = vue.computed(
|
|
53333
|
+
() => {
|
|
53334
|
+
var _a2;
|
|
53335
|
+
return ((_a2 = themes[computedTheme.value]) == null ? void 0 : _a2.color) ?? computedDefaultColors.value.color;
|
|
53336
|
+
}
|
|
53337
|
+
);
|
|
53338
|
+
const computedBackgroundColor = vue.computed(
|
|
53339
|
+
() => {
|
|
53340
|
+
var _a2;
|
|
53341
|
+
return ((_a2 = themes[computedTheme.value]) == null ? void 0 : _a2.backgroundColor) ?? computedDefaultColors.value.backgroundColor;
|
|
53342
|
+
}
|
|
53343
|
+
);
|
|
53344
|
+
return (_ctx, _cache) => {
|
|
53345
|
+
return vue.openBlock(), vue.createElementBlock("div", {
|
|
53346
|
+
disabled: _ctx.disabled,
|
|
53347
|
+
class: vue.normalizeClass({
|
|
53348
|
+
"bgl_pill": !_ctx.icon || vue.unref(slots).default || _ctx.value,
|
|
53349
|
+
round: _ctx.round,
|
|
53350
|
+
"bgl_flatPill": _ctx.flat,
|
|
53351
|
+
"bgl_pill-border": _ctx.border || _ctx.outline
|
|
53352
|
+
})
|
|
53353
|
+
}, [
|
|
53354
|
+
vue.createElementVNode("div", _hoisted_2$2, [
|
|
53355
|
+
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$2)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$2, [
|
|
53356
|
+
_ctx.btnStart ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$2, [
|
|
53357
|
+
vue.createVNode(vue.unref(Btn), {
|
|
53358
|
+
class: "bgl_pill-btn",
|
|
53359
|
+
thin: "",
|
|
53360
|
+
icon: "close"
|
|
53361
|
+
})
|
|
53362
|
+
])) : vue.createCommentVNode("", true)
|
|
53363
|
+
])),
|
|
53364
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
53365
|
+
key: 2,
|
|
53366
|
+
icon: _ctx.icon
|
|
53367
|
+
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
53368
|
+
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true),
|
|
53369
|
+
!vue.unref(slots).default && _ctx.value ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 3 }, [
|
|
53370
|
+
vue.createTextVNode(vue.toDisplayString(_ctx.value), 1)
|
|
53371
|
+
], 64)) : vue.createCommentVNode("", true),
|
|
53372
|
+
props2.iconEnd ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
53373
|
+
key: 4,
|
|
53374
|
+
icon: props2.iconEnd
|
|
53375
|
+
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
53376
|
+
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$2)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_7$2, [
|
|
53377
|
+
props2.btnEnd ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8$2, [
|
|
53378
|
+
vue.createVNode(vue.unref(Btn), {
|
|
53379
|
+
class: "bgl_pill-btn",
|
|
53380
|
+
thin: "",
|
|
53381
|
+
icon: "close"
|
|
53382
|
+
})
|
|
53383
|
+
])) : vue.createCommentVNode("", true)
|
|
53384
|
+
]))
|
|
53385
|
+
])
|
|
53386
|
+
], 10, _hoisted_1$3);
|
|
53387
|
+
};
|
|
53388
|
+
}
|
|
53389
|
+
});
|
|
53390
|
+
const Pill = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-95cf3171"]]);
|
|
53203
53391
|
const _sfc_main$5 = {};
|
|
53204
53392
|
function _sfc_render$1(_ctx, _cache) {
|
|
53205
53393
|
const _component_router_view = vue.resolveComponent("router-view");
|
|
@@ -53247,12 +53435,12 @@ function tryOnMounted(fn3, sync = true, target) {
|
|
|
53247
53435
|
else
|
|
53248
53436
|
vue.nextTick(fn3);
|
|
53249
53437
|
}
|
|
53438
|
+
const defaultWindow = isClient ? window : void 0;
|
|
53250
53439
|
function unrefElement(elRef) {
|
|
53251
53440
|
var _a2;
|
|
53252
53441
|
const plain = toValue(elRef);
|
|
53253
53442
|
return (_a2 = plain == null ? void 0 : plain.$el) != null ? _a2 : plain;
|
|
53254
53443
|
}
|
|
53255
|
-
const defaultWindow = isClient ? window : void 0;
|
|
53256
53444
|
function useMounted() {
|
|
53257
53445
|
const isMounted = vue.ref(false);
|
|
53258
53446
|
const instance = vue.getCurrentInstance();
|
|
@@ -53556,21 +53744,22 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53556
53744
|
data: {},
|
|
53557
53745
|
schema: {},
|
|
53558
53746
|
showFields: {},
|
|
53559
|
-
useServerSort: { type: Boolean, default: false }
|
|
53747
|
+
useServerSort: { type: Boolean, default: false },
|
|
53748
|
+
disableSelect: { type: Boolean, default: false }
|
|
53560
53749
|
}, {
|
|
53561
53750
|
"loading": { default: false },
|
|
53562
53751
|
"loadingModifiers": {},
|
|
53563
53752
|
"itemHeight": { default: 50 },
|
|
53564
53753
|
"itemHeightModifiers": {},
|
|
53565
53754
|
"selectedItems": {
|
|
53566
|
-
default:
|
|
53755
|
+
default: []
|
|
53567
53756
|
},
|
|
53568
53757
|
"selectedItemsModifiers": {}
|
|
53569
53758
|
}),
|
|
53570
53759
|
emits: /* @__PURE__ */ vue.mergeModels(["update:selectedItems", "orderBy", "select"], ["update:loading", "update:itemHeight", "update:selectedItems"]),
|
|
53571
53760
|
setup(__props, { emit: __emit }) {
|
|
53572
53761
|
vue.useCssVars((_ctx) => ({
|
|
53573
|
-
"
|
|
53762
|
+
"74f52484": vue.unref(computedItemHiehgt)
|
|
53574
53763
|
}));
|
|
53575
53764
|
const emit2 = __emit;
|
|
53576
53765
|
const slots = vue.useSlots();
|
|
@@ -53589,7 +53778,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53589
53778
|
}
|
|
53590
53779
|
}
|
|
53591
53780
|
);
|
|
53592
|
-
const isSelectable = vue.computed(() => Array.isArray(selectedItems.value));
|
|
53781
|
+
const isSelectable = vue.computed(() => __props.disableSelect === false && Array.isArray(selectedItems.value));
|
|
53593
53782
|
const computedSortField = vue.computed(() => `_transformed_${sortField.value}`);
|
|
53594
53783
|
const computedSchema = vue.computed(() => useBglSchema({
|
|
53595
53784
|
schema: __props.schema,
|
|
@@ -53717,7 +53906,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53717
53906
|
vue.createElementVNode("div", {
|
|
53718
53907
|
class: vue.normalizeClass(["list-arrows", { sorted: vue.unref(sortField) === field.id }])
|
|
53719
53908
|
}, [
|
|
53720
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53909
|
+
vue.createVNode(vue.unref(_sfc_main$c), {
|
|
53721
53910
|
class: vue.normalizeClass({ desc: vue.unref(sortDirection) === "DESC" }),
|
|
53722
53911
|
icon: "keyboard_arrow_up"
|
|
53723
53912
|
}, null, 8, ["class"])
|
|
@@ -53757,7 +53946,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53757
53946
|
row,
|
|
53758
53947
|
field
|
|
53759
53948
|
}, void 0, true) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_10$1, [
|
|
53760
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
53949
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
53761
53950
|
class: "embedded-field",
|
|
53762
53951
|
field,
|
|
53763
53952
|
modelValue: row,
|
|
@@ -53775,7 +53964,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
53775
53964
|
};
|
|
53776
53965
|
}
|
|
53777
53966
|
});
|
|
53778
|
-
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-
|
|
53967
|
+
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-e5cc6a73"]]);
|
|
53779
53968
|
const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
53780
53969
|
__name: "Title",
|
|
53781
53970
|
props: {
|
|
@@ -54700,7 +54889,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
54700
54889
|
src: item.src,
|
|
54701
54890
|
alt: "",
|
|
54702
54891
|
onClick: ($event) => selectItem(index2)
|
|
54703
|
-
}, null, 10, _hoisted_11)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
54892
|
+
}, null, 10, _hoisted_11)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$c), {
|
|
54704
54893
|
key: 1,
|
|
54705
54894
|
class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 ed flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
|
|
54706
54895
|
icon: "description",
|
|
@@ -54895,7 +55084,7 @@ function frmRow(...children2) {
|
|
|
54895
55084
|
function bglForm(idOrField, ...schema) {
|
|
54896
55085
|
if (typeof idOrField === "string") {
|
|
54897
55086
|
return {
|
|
54898
|
-
$el: vue.markRaw(_sfc_main$
|
|
55087
|
+
$el: vue.markRaw(_sfc_main$H),
|
|
54899
55088
|
id: idOrField,
|
|
54900
55089
|
attrs: {
|
|
54901
55090
|
schema: [idOrField, ...schema]
|
|
@@ -54903,7 +55092,7 @@ function bglForm(idOrField, ...schema) {
|
|
|
54903
55092
|
};
|
|
54904
55093
|
}
|
|
54905
55094
|
return {
|
|
54906
|
-
$el: vue.markRaw(_sfc_main$
|
|
55095
|
+
$el: vue.markRaw(_sfc_main$H),
|
|
54907
55096
|
attrs: {
|
|
54908
55097
|
schema: [idOrField, ...schema]
|
|
54909
55098
|
}
|
|
@@ -55168,9 +55357,9 @@ const ModalPlugin = {
|
|
|
55168
55357
|
case "modalForm":
|
|
55169
55358
|
return vue.h(ModalForm, props2, modal.componentSlots);
|
|
55170
55359
|
case "confirmModal":
|
|
55171
|
-
return vue.h(_sfc_main$
|
|
55360
|
+
return vue.h(_sfc_main$a, props2, {});
|
|
55172
55361
|
default:
|
|
55173
|
-
return vue.h(_sfc_main$
|
|
55362
|
+
return vue.h(_sfc_main$b, props2, modal.componentSlots);
|
|
55174
55363
|
}
|
|
55175
55364
|
});
|
|
55176
55365
|
}
|
|
@@ -55504,61 +55693,62 @@ const IMAGE_FORMATS = ["jpeg", "png", "webp", "avif", "apng", "gif", "avifs", "s
|
|
|
55504
55693
|
const IMAGE_FORMATS_REGEXP = new RegExp(`(${IMAGE_FORMATS.join("|")})$`, "i");
|
|
55505
55694
|
const VIDEO_FORMATS = ["mp4", "webm", "ogg", "mov", "avi", "flv", "wmv", "mkv", "ts", "m3u8"];
|
|
55506
55695
|
const VIDEO_FORMATS_REGEXP = new RegExp(`(${VIDEO_FORMATS.join("|")})$`, "i");
|
|
55507
|
-
exports.Accordion = _sfc_main$
|
|
55696
|
+
exports.Accordion = _sfc_main$W;
|
|
55508
55697
|
exports.AccordionItem = AccordionItem;
|
|
55509
|
-
exports.AddressSearch = _sfc_main$
|
|
55698
|
+
exports.AddressSearch = _sfc_main$U;
|
|
55510
55699
|
exports.Alert = Alert;
|
|
55511
55700
|
exports.Avatar = Avatar;
|
|
55512
55701
|
exports.Badge = Badge;
|
|
55513
|
-
exports.BagelForm = _sfc_main$
|
|
55702
|
+
exports.BagelForm = _sfc_main$H;
|
|
55514
55703
|
exports.BagelVue = BagelVue;
|
|
55515
|
-
exports.BglField = _sfc_main$
|
|
55516
|
-
exports.BglForm = _sfc_main$
|
|
55517
|
-
exports.BglMultiStepForm = _sfc_main$
|
|
55704
|
+
exports.BglField = _sfc_main$I;
|
|
55705
|
+
exports.BglForm = _sfc_main$H;
|
|
55706
|
+
exports.BglMultiStepForm = _sfc_main$G;
|
|
55518
55707
|
exports.BglVideo = BglVideo;
|
|
55519
55708
|
exports.BottomMenu = BottomMenu;
|
|
55520
55709
|
exports.Btn = Btn;
|
|
55521
|
-
exports.Card = _sfc_main$
|
|
55710
|
+
exports.Card = _sfc_main$O;
|
|
55522
55711
|
exports.Carousel = Carousel;
|
|
55523
55712
|
exports.CheckInput = CheckInput;
|
|
55524
55713
|
exports.Checkbox = Checkbox;
|
|
55525
|
-
exports.ColorPicker = _sfc_main$
|
|
55714
|
+
exports.ColorPicker = _sfc_main$D;
|
|
55526
55715
|
exports.DataPreview = DataPreview;
|
|
55527
|
-
exports.DateInput = _sfc_main$
|
|
55528
|
-
exports.DatePicker = _sfc_main$
|
|
55529
|
-
exports.Dropdown = _sfc_main$
|
|
55716
|
+
exports.DateInput = _sfc_main$C;
|
|
55717
|
+
exports.DatePicker = _sfc_main$B;
|
|
55718
|
+
exports.Dropdown = _sfc_main$K;
|
|
55530
55719
|
exports.FileUpload = $el;
|
|
55531
55720
|
exports.Flag = Flag;
|
|
55532
55721
|
exports.IMAGE_FORMATS = IMAGE_FORMATS;
|
|
55533
55722
|
exports.IMAGE_FORMATS_REGEXP = IMAGE_FORMATS_REGEXP;
|
|
55534
|
-
exports.Icon = _sfc_main$
|
|
55723
|
+
exports.Icon = _sfc_main$c;
|
|
55535
55724
|
exports.JSONInput = JSONInput;
|
|
55536
55725
|
exports.Layout = Layout;
|
|
55537
|
-
exports.Lineart = _sfc_main$
|
|
55538
|
-
exports.ListItem = _sfc_main$
|
|
55726
|
+
exports.Lineart = _sfc_main$M;
|
|
55727
|
+
exports.ListItem = _sfc_main$f;
|
|
55539
55728
|
exports.ListView = ListView;
|
|
55540
|
-
exports.MapEmbed = _sfc_main$
|
|
55541
|
-
exports.MaterialIcon = _sfc_main$
|
|
55542
|
-
exports.Modal = _sfc_main$
|
|
55543
|
-
exports.ModalConfirm = _sfc_main$
|
|
55729
|
+
exports.MapEmbed = _sfc_main$d;
|
|
55730
|
+
exports.MaterialIcon = _sfc_main$c;
|
|
55731
|
+
exports.Modal = _sfc_main$b;
|
|
55732
|
+
exports.ModalConfirm = _sfc_main$a;
|
|
55544
55733
|
exports.ModalForm = ModalForm;
|
|
55545
55734
|
exports.ModalPlugin = ModalPlugin;
|
|
55546
55735
|
exports.NavBar = NavBar;
|
|
55547
|
-
exports.PageTitle = _sfc_main$
|
|
55548
|
-
exports.PasswordInput = _sfc_main$
|
|
55736
|
+
exports.PageTitle = _sfc_main$7;
|
|
55737
|
+
exports.PasswordInput = _sfc_main$y;
|
|
55738
|
+
exports.Pill = Pill;
|
|
55549
55739
|
exports.RadioGroup = RadioGroup;
|
|
55550
55740
|
exports.RadioPillsInput = RadioPillsInput;
|
|
55551
|
-
exports.RichText = _sfc_main$
|
|
55741
|
+
exports.RichText = _sfc_main$v;
|
|
55552
55742
|
exports.RichText2 = index$1;
|
|
55553
55743
|
exports.RouterWrapper = RouterWrapper;
|
|
55554
55744
|
exports.SelectInput = SelectInput;
|
|
55555
55745
|
exports.SidebarMenu = SidebarMenu;
|
|
55556
|
-
exports.SignaturePad = _sfc_main$
|
|
55746
|
+
exports.SignaturePad = _sfc_main$r;
|
|
55557
55747
|
exports.TabbedLayout = TabbedLayout;
|
|
55558
55748
|
exports.TableField = TableField;
|
|
55559
55749
|
exports.TableSchema = TableSchema;
|
|
55560
|
-
exports.Tabs = _sfc_main$
|
|
55561
|
-
exports.TabsBody = _sfc_main$
|
|
55750
|
+
exports.Tabs = _sfc_main$i;
|
|
55751
|
+
exports.TabsBody = _sfc_main$h;
|
|
55562
55752
|
exports.TabsNav = TabsNav;
|
|
55563
55753
|
exports.TelInput = TelInput;
|
|
55564
55754
|
exports.TextInput = TextInput;
|