@avakhula/ui 0.1.20 → 0.1.22

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.
Files changed (86) hide show
  1. package/dist/index.css +1 -0
  2. package/dist/index.js +13643 -12635
  3. package/dist/index.umd.cjs +91 -83
  4. package/package.json +6 -5
  5. package/src/assets/scss/mixins/dropdown-list-item.scss +3 -3
  6. package/src/assets/scss/mixins/tooltip-position.scss +7 -0
  7. package/src/assets/scss/mixins.scss +2 -2
  8. package/src/assets/scss/style.scss +4 -4
  9. package/src/components/Accordion/Accordion.scss +3 -3
  10. package/src/components/Accordion/Accordion.vue +2 -2
  11. package/src/components/Alert/Alert.vue +1 -1
  12. package/src/components/Alert/alert.scss +2 -2
  13. package/src/components/Avatar/Avatar.vue +2 -2
  14. package/src/components/Badge/Badge.vue +2 -2
  15. package/src/components/Breadcrumbs/Breadcrumbs.vue +7 -2
  16. package/src/components/Breadcrumbs/breadcrumbs.scss +5 -5
  17. package/src/components/Button/Button.vue +2 -2
  18. package/src/components/Button/button.scss +3 -3
  19. package/src/components/Chips/Chips.vue +3 -3
  20. package/src/components/Dropdown/Dropdown.spec.js +0 -0
  21. package/src/components/Dropdown/Dropdown.vue +104 -27
  22. package/src/components/Dropdown/DropdownDivider.vue +1 -1
  23. package/src/components/Dropdown/DropdownItem.vue +1 -1
  24. package/src/components/Dropdown/DropdownList.vue +11 -1
  25. package/src/components/Form/CharactersCount.vue +2 -2
  26. package/src/components/Form/Checkbox/Checkbox.scss +4 -4
  27. package/src/components/Form/Checkbox/Checkbox.vue +1 -1
  28. package/src/components/Form/DatePicker/DatePicker.scss +4 -4
  29. package/src/components/Form/DatePicker/DatePicker.vue +1 -1
  30. package/src/components/Form/FormGroup/FormGroup.vue +2 -2
  31. package/src/components/Form/FormGroup/FormGroupSet.vue +1 -1
  32. package/src/components/Form/Input/Input.vue +7 -4
  33. package/src/components/Form/Input/input.scss +3 -3
  34. package/src/components/Form/Label/Label.vue +2 -2
  35. package/src/components/Form/PhoneInput/PhoneInput.vue +56 -21
  36. package/src/components/Form/PhoneInput/phoneInput.scss +4 -4
  37. package/src/components/Form/Radio/Radio.vue +1 -1
  38. package/src/components/Form/Radio/radio.scss +3 -3
  39. package/src/components/Form/TextEditor/TextEditor.vue +27 -168
  40. package/src/components/Form/TextEditor/Toolbar.vue +723 -0
  41. package/src/components/Form/TextEditor/icons/toolbarIcons.js +8 -0
  42. package/src/components/Form/TextEditor/plugins/imageBlot.js +23 -0
  43. package/src/components/Form/TextEditor/setupTextEditor.js +71 -0
  44. package/src/components/Form/TextEditor/textEditor.scss +9 -357
  45. package/src/components/Form/Textarea/Textarea.spec.js +0 -0
  46. package/src/components/Form/Textarea/Textarea.vue +2 -1
  47. package/src/components/Form/Textarea/textarea.scss +3 -3
  48. package/src/components/Form/Toggle/Toggle.vue +1 -1
  49. package/src/components/Form/Toggle/toggle.scss +3 -3
  50. package/src/components/IconButton/IconButton.scss +2 -2
  51. package/src/components/IconButton/IconButton.vue +6 -4
  52. package/src/components/List.vue +1 -1
  53. package/src/components/Modal/Modal.vue +85 -49
  54. package/src/components/Pagination/Pagination.vue +28 -3
  55. package/src/components/Pagination/pagination.scss +20 -4
  56. package/src/components/Panel/Panel.vue +4 -4
  57. package/src/components/Popover/Popover.vue +7 -2
  58. package/src/components/Popover/popover.scss +3 -3
  59. package/src/components/ProgressBar/ProgressBar.vue +1 -1
  60. package/src/components/ProgressBar/progressBar.scss +1 -1
  61. package/src/components/Sorting/Sorting.vue +1 -1
  62. package/src/components/Sorting/sorting.scss +5 -5
  63. package/src/components/SplitButton/SplitButton.vue +1 -1
  64. package/src/components/SplitButton/SplitButtonItem.vue +1 -1
  65. package/src/components/SplitButton/splitButton.scss +3 -3
  66. package/src/components/StatusIndicator/StatusIndicator.vue +2 -2
  67. package/src/components/Table/Cells/Cell.vue +2 -2
  68. package/src/components/Table/Cells/CheckboxCell.vue +0 -0
  69. package/src/components/Table/Row.vue +1 -1
  70. package/src/components/Table/Table.stories.js +0 -0
  71. package/src/components/Table/Table.vue +0 -0
  72. package/src/components/Tabs/TabDropdown.vue +1 -1
  73. package/src/components/Tabs/Tabs.vue +9 -5
  74. package/src/components/Tabs/tabs.scss +4 -4
  75. package/src/components/TagPill/TagPill.vue +2 -2
  76. package/src/components/ToggleTip/ToggleTip.vue +1 -1
  77. package/src/components/ToggleTip/toggleTip.scss +5 -5
  78. package/src/components/Tooltip/Tooltip.vue +3 -3
  79. package/src/components/TreeSelect/Option.vue +16 -14
  80. package/src/components/TreeSelect/Select.vue +233 -134
  81. package/src/components/TreeSelect/scss/option.scss +6 -6
  82. package/src/components/TreeSelect/scss/select.scss +53 -4
  83. package/src/directives/tooltip/tooltip.js +46 -0
  84. package/src/index.js +6 -1
  85. package/vite.config.js +0 -0
  86. package/dist/style.css +0 -1
@@ -1,32 +1,35 @@
1
- (function(pe,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],r):(pe=typeof globalThis<"u"?globalThis:pe||self,r(pe.MyLib={},pe.Vue))})(this,function(pe,r){"use strict";const z0="",_e=(t,n)=>{const e=t.__vccOpts||t;for(const[o,a]of n)e[o]=a;return e},Va={name:"IbIcon",props:{name:{type:String,required:!0},classes:{type:String,default:""},styles:{type:[String,Object],default:""}},mounted(){const t=setInterval(()=>{var n,e;(e=(n=this.$refs.icon)==null?void 0:n.shadowRoot)!=null&&e.querySelector("title")&&(this.$refs.icon.shadowRoot.querySelector("title").innerHTML="",clearInterval(t))},1e3)}},qa=["name"];function Fa(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("ion-icon",{style:r.normalizeStyle(e.styles),name:e.name,class:r.normalizeClass(e.classes+" ib-icon icon-"+e.name),ref:"icon"},null,14,qa)}const Le=_e(Va,[["render",Fa]]);function pt(){return"_"+Math.random().toString(36).substr(2,9)}const Fi={methods:{enter(t){const n=getComputedStyle(t).width;t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const e=getComputedStyle(t).height;t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=e})},afterEnter(t){t.style.height="auto"},leave(t){const n=getComputedStyle(t).height;t.style.height=n,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}},U0="",Ha={name:"IbAccordion",mixins:[Fi],props:{isOpen:{type:Boolean,default:!1}},watch:{isOpen(t){this.isActive=t}},data(){return{isActive:this.isOpen,uuid:pt()}},methods:{onClick(){this.isActive=!this.isActive,this.isActive?this.$emit("open",this.isActive):this.$emit("close",this.isActive)}},components:{IbIcon:Le}},za=["id","aria-controls","aria-expanded"],Ua=["id","aria-labelledby"],Ka={class:"accordion-content-wrapper"};function Ga(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-accordion",{active:a.isActive}])},[r.createElementVNode("button",{class:"accordion-title",id:"accordion"+a.uuid,"aria-controls":"accordion-section-"+a.uuid,"aria-expanded":a.isActive,type:"button",onClick:n[0]||(n[0]=r.withModifiers((...l)=>i.onClick&&i.onClick(...l),["prevent"]))},[r.renderSlot(t.$slots,"title",{},void 0,!0),r.createVNode(s,{class:"chevron-icon",name:"chevron-down-outline"})],8,za),r.createVNode(r.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("div",{role:"region",class:"accordion-content",id:"accordion-section-"+a.uuid,"aria-labelledby":"accordion"+a.uuid},[r.createElementVNode("div",Ka,[r.renderSlot(t.$slots,"default",{},void 0,!0)])],8,Ua),[[r.vShow,a.isActive]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const Wa=_e(Ha,[["render",Ga],["__scopeId","data-v-8ece19c1"]]),Kt={primary:"primary",secondary:"secondary",tertiary:"tertiary",ghost:"ghost",danger:"danger",ghostDanger:"ghostDanger"};function Pr(t,n=[]){for(let e in t)e.startsWith("on")&&(n.length===0||n.includes(e))&&delete t[e];return t}const K0="",Ya={name:"IbButton",props:{kind:{type:String,default:Kt.primary},disabled:{type:Boolean,required:!1,default:!1},preventDefault:{type:Boolean,default:null},confirmMessage:{type:String,default:""},block:{type:Boolean,default:!1},href:{type:String,default:""},to:{type:[String,Object]},linkMethod:{type:String,default:"get"},disableAfterClick:{type:Boolean,default:!1},postOptions:{type:Object,default:()=>({})}},data(){return{isDisabled:this.disabled}},watch:{disabled(t){this.isDisabled=t}},methods:{onMouseenter(t){this.$emit("mouseenter",t)},onMouseleave(t){this.$emit("mouseleave",t)},onClick(t){if((this.preventDefault||this.isDisabled)&&t.preventDefault(),this.confirmMessage.length>0&&!confirm(this.confirmMessage)){t.preventDefault();return}!this.isDisabled&&this.href.length&&!this.preventDefault&&this.linkMethod.toUpperCase()!=="GET"&&(t.preventDefault(),this.$refs.form.submit()),this.isDisabled||this.$emit("click",t),this.disableAfterClick&&!this.disabled&&(this.isDisabled=!0)}},computed:{component(){return this.href.length?"a":this.to?"router-link":"button"},classes(){const t=["ib-button"];return t.push(`ib-btn-${this.kind}`),this.isDisabled&&t.push("ib-btn-disabled"),this.block&&t.push("ib-btn-block"),(this.href.length||this.to)&&t.push("ib-btn-link"),this.hasIcon&&t.push("ib-btn-has-icon"),t},attrs(){const t=Pr({...this.$attrs},["onClick"]);return t.class=[...this.classes,t.class],t.disabled=this.isDisabled,this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},hasIcon(){return!!this.$slots.icon},formMethod(){return this.linkMethod==="GET"?"GET":"POST"},token(){var t;return(t=document.head.querySelector('meta[name="csrf-token"]'))==null?void 0:t.content}},inheritAttrs:!1},Za=["method","action"],Ja=["value"],Xa=["value"],Qa=["name","value"];function el(t,n,e,o,a,i){return r.openBlock(),r.createBlock(r.resolveDynamicComponent(i.component),r.mergeProps(i.attrs,{onClick:n[0]||(n[0]=s=>i.onClick(s)),onMouseenter:i.onMouseenter,onMouseleave:i.onMouseleave}),{default:r.withCtx(()=>[r.renderSlot(t.$slots,"icon"),r.renderSlot(t.$slots,"default"),e.href.length&&e.linkMethod.toUpperCase()!=="GET"?r.withDirectives((r.openBlock(),r.createElementBlock("form",{key:0,ref:"form",method:i.formMethod,action:e.href},[r.createElementVNode("input",{type:"hidden",name:"_method",value:e.linkMethod},null,8,Ja),r.createElementVNode("input",{type:"hidden",name:"_token",value:i.token},null,8,Xa),(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(Object.keys(e.postOptions),(s,l)=>(r.openBlock(),r.createElementBlock("input",{key:l,type:"hidden",name:s,value:e.postOptions[s]},null,8,Qa))),128))],8,Za)),[[r.vShow,!1]]):r.createCommentVNode("",!0)]),_:3},16,["onMouseenter","onMouseleave"])}const Hi=_e(Ya,[["render",el]]),tl=["top","right","bottom","left"],zi=["start","end"],Ui=tl.reduce((t,n)=>t.concat(n,n+"-"+zi[0],n+"-"+zi[1]),[]),Ki=Math.min,yn=Math.max,Yn=Math.round,jt=t=>({x:t,y:t}),nl={left:"right",right:"left",bottom:"top",top:"bottom"},rl={start:"end",end:"start"};function Gi(t,n){return typeof t=="function"?t(n):t}function Zn(t){return t.split("-")[0]}function Gt(t){return t.split("-")[1]}function il(t){return t==="x"?"y":"x"}function Wi(t){return t==="y"?"height":"width"}function Yi(t){return["top","bottom"].includes(Zn(t))?"y":"x"}function Zi(t){return il(Yi(t))}function ol(t,n,e){e===void 0&&(e=!1);const o=Gt(t),a=Zi(t),i=Wi(a);let s=a==="x"?o===(e?"end":"start")?"right":"left":o==="start"?"bottom":"top";return n.reference[i]>n.floating[i]&&(s=Ji(s)),[s,Ji(s)]}function al(t){return t.replace(/start|end/g,n=>rl[n])}function Ji(t){return t.replace(/left|right|bottom|top/g,n=>nl[n])}function ll(t){return{top:0,right:0,bottom:0,left:0,...t}}function sl(t){return typeof t!="number"?ll(t):{top:t,right:t,bottom:t,left:t}}function Jn(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function Xi(t,n,e){let{reference:o,floating:a}=t;const i=Yi(n),s=Zi(n),l=Wi(s),u=Zn(n),d=i==="y",p=o.x+o.width/2-a.width/2,f=o.y+o.height/2-a.height/2,c=o[l]/2-a[l]/2;let h;switch(u){case"top":h={x:p,y:o.y-a.height};break;case"bottom":h={x:p,y:o.y+o.height};break;case"right":h={x:o.x+o.width,y:f};break;case"left":h={x:o.x-a.width,y:f};break;default:h={x:o.x,y:o.y}}switch(Gt(n)){case"start":h[s]-=c*(e&&d?-1:1);break;case"end":h[s]+=c*(e&&d?-1:1);break}return h}const cl=async(t,n,e)=>{const{placement:o="bottom",strategy:a="absolute",middleware:i=[],platform:s}=e,l=i.filter(Boolean),u=await(s.isRTL==null?void 0:s.isRTL(n));let d=await s.getElementRects({reference:t,floating:n,strategy:a}),{x:p,y:f}=Xi(d,o,u),c=o,h={},v=0;for(let m=0;m<l.length;m++){const{name:_,fn:y}=l[m],{x:g,y:w,data:b,reset:k}=await y({x:p,y:f,initialPlacement:o,placement:c,strategy:a,middlewareData:h,rects:d,platform:s,elements:{reference:t,floating:n}});p=g??p,f=w??f,h={...h,[_]:{...h[_],...b}},k&&v<=50&&(v++,typeof k=="object"&&(k.placement&&(c=k.placement),k.rects&&(d=k.rects===!0?await s.getElementRects({reference:t,floating:n,strategy:a}):k.rects),{x:p,y:f}=Xi(d,c,u)),m=-1)}return{x:p,y:f,placement:c,strategy:a,middlewareData:h}};async function dl(t,n){var e;n===void 0&&(n={});const{x:o,y:a,platform:i,rects:s,elements:l,strategy:u}=t,{boundary:d="clippingAncestors",rootBoundary:p="viewport",elementContext:f="floating",altBoundary:c=!1,padding:h=0}=Gi(n,t),v=sl(h),_=l[c?f==="floating"?"reference":"floating":f],y=Jn(await i.getClippingRect({element:(e=await(i.isElement==null?void 0:i.isElement(_)))==null||e?_:_.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(l.floating)),boundary:d,rootBoundary:p,strategy:u})),g=f==="floating"?{...s.floating,x:o,y:a}:s.reference,w=await(i.getOffsetParent==null?void 0:i.getOffsetParent(l.floating)),b=await(i.isElement==null?void 0:i.isElement(w))?await(i.getScale==null?void 0:i.getScale(w))||{x:1,y:1}:{x:1,y:1},k=Jn(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:g,offsetParent:w,strategy:u}):g);return{top:(y.top-k.top+v.top)/b.y,bottom:(k.bottom-y.bottom+v.bottom)/b.y,left:(y.left-k.left+v.left)/b.x,right:(k.right-y.right+v.right)/b.x}}function ul(t,n,e){return(t?[...e.filter(a=>Gt(a)===t),...e.filter(a=>Gt(a)!==t)]:e.filter(a=>Zn(a)===a)).filter(a=>t?Gt(a)===t||(n?al(a)!==a:!1):!0)}const fl=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(n){var e,o,a;const{rects:i,middlewareData:s,placement:l,platform:u,elements:d}=n,{crossAxis:p=!1,alignment:f,allowedPlacements:c=Ui,autoAlignment:h=!0,...v}=Gi(t,n),m=f!==void 0||c===Ui?ul(f||null,h,c):c,_=await dl(n,v),y=((e=s.autoPlacement)==null?void 0:e.index)||0,g=m[y];if(g==null)return{};const w=ol(g,i,await(u.isRTL==null?void 0:u.isRTL(d.floating)));if(l!==g)return{reset:{placement:m[0]}};const b=[_[Zn(g)],_[w[0]],_[w[1]]],k=[...((o=s.autoPlacement)==null?void 0:o.overflows)||[],{placement:g,overflows:b}],T=m[y+1];if(T)return{data:{index:y+1,overflows:k},reset:{placement:T}};const S=k.map(E=>{const C=Gt(E.placement);return[E.placement,C&&p?E.overflows.slice(0,2).reduce((O,N)=>O+N,0):E.overflows[0],E.overflows]}).sort((E,C)=>E[1]-C[1]),M=((a=S.filter(E=>E[2].slice(0,Gt(E[0])?2:3).every(C=>C<=0))[0])==null?void 0:a[0])||S[0][0];return M!==l?{data:{index:y+1,overflows:k},reset:{placement:M}}:{}}}};function Vt(t){return Qi(t)?(t.nodeName||"").toLowerCase():"#document"}function dt(t){var n;return(t==null||(n=t.ownerDocument)==null?void 0:n.defaultView)||window}function qt(t){var n;return(n=(Qi(t)?t.ownerDocument:t.document)||window.document)==null?void 0:n.documentElement}function Qi(t){return t instanceof Node||t instanceof dt(t).Node}function Tt(t){return t instanceof Element||t instanceof dt(t).Element}function _t(t){return t instanceof HTMLElement||t instanceof dt(t).HTMLElement}function eo(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof dt(t).ShadowRoot}function bn(t){const{overflow:n,overflowX:e,overflowY:o,display:a}=mt(t);return/auto|scroll|overlay|hidden|clip/.test(n+o+e)&&!["inline","contents"].includes(a)}function hl(t){return["table","td","th"].includes(Vt(t))}function Ir(t){const n=Br(),e=mt(t);return e.transform!=="none"||e.perspective!=="none"||(e.containerType?e.containerType!=="normal":!1)||!n&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!n&&(e.filter?e.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(e.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(e.contain||"").includes(o))}function pl(t){let n=on(t);for(;_t(n)&&!Xn(n);){if(Ir(n))return n;n=on(n)}return null}function Br(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function Xn(t){return["html","body","#document"].includes(Vt(t))}function mt(t){return dt(t).getComputedStyle(t)}function Qn(t){return Tt(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function on(t){if(Vt(t)==="html")return t;const n=t.assignedSlot||t.parentNode||eo(t)&&t.host||qt(t);return eo(n)?n.host:n}function to(t){const n=on(t);return Xn(n)?t.ownerDocument?t.ownerDocument.body:t.body:_t(n)&&bn(n)?n:to(n)}function Mr(t,n,e){var o;n===void 0&&(n=[]),e===void 0&&(e=!0);const a=to(t),i=a===((o=t.ownerDocument)==null?void 0:o.body),s=dt(a);return i?n.concat(s,s.visualViewport||[],bn(a)?a:[],s.frameElement&&e?Mr(s.frameElement):[]):n.concat(a,Mr(a,[],e))}function no(t){const n=mt(t);let e=parseFloat(n.width)||0,o=parseFloat(n.height)||0;const a=_t(t),i=a?t.offsetWidth:e,s=a?t.offsetHeight:o,l=Yn(e)!==i||Yn(o)!==s;return l&&(e=i,o=s),{width:e,height:o,$:l}}function ro(t){return Tt(t)?t:t.contextElement}function an(t){const n=ro(t);if(!_t(n))return jt(1);const e=n.getBoundingClientRect(),{width:o,height:a,$:i}=no(n);let s=(i?Yn(e.width):e.width)/o,l=(i?Yn(e.height):e.height)/a;return(!s||!Number.isFinite(s))&&(s=1),(!l||!Number.isFinite(l))&&(l=1),{x:s,y:l}}const ml=jt(0);function io(t){const n=dt(t);return!Br()||!n.visualViewport?ml:{x:n.visualViewport.offsetLeft,y:n.visualViewport.offsetTop}}function gl(t,n,e){return n===void 0&&(n=!1),!e||n&&e!==dt(t)?!1:n}function vn(t,n,e,o){n===void 0&&(n=!1),e===void 0&&(e=!1);const a=t.getBoundingClientRect(),i=ro(t);let s=jt(1);n&&(o?Tt(o)&&(s=an(o)):s=an(t));const l=gl(i,e,o)?io(i):jt(0);let u=(a.left+l.x)/s.x,d=(a.top+l.y)/s.y,p=a.width/s.x,f=a.height/s.y;if(i){const c=dt(i),h=o&&Tt(o)?dt(o):o;let v=c,m=v.frameElement;for(;m&&o&&h!==v;){const _=an(m),y=m.getBoundingClientRect(),g=mt(m),w=y.left+(m.clientLeft+parseFloat(g.paddingLeft))*_.x,b=y.top+(m.clientTop+parseFloat(g.paddingTop))*_.y;u*=_.x,d*=_.y,p*=_.x,f*=_.y,u+=w,d+=b,v=dt(m),m=v.frameElement}}return Jn({width:p,height:f,x:u,y:d})}const yl=[":popover-open",":modal"];function oo(t){return yl.some(n=>{try{return t.matches(n)}catch{return!1}})}function bl(t){let{elements:n,rect:e,offsetParent:o,strategy:a}=t;const i=a==="fixed",s=qt(o),l=n?oo(n.floating):!1;if(o===s||l&&i)return e;let u={scrollLeft:0,scrollTop:0},d=jt(1);const p=jt(0),f=_t(o);if((f||!f&&!i)&&((Vt(o)!=="body"||bn(s))&&(u=Qn(o)),_t(o))){const c=vn(o);d=an(o),p.x=c.x+o.clientLeft,p.y=c.y+o.clientTop}return{width:e.width*d.x,height:e.height*d.y,x:e.x*d.x-u.scrollLeft*d.x+p.x,y:e.y*d.y-u.scrollTop*d.y+p.y}}function vl(t){return Array.from(t.getClientRects())}function ao(t){return vn(qt(t)).left+Qn(t).scrollLeft}function _l(t){const n=qt(t),e=Qn(t),o=t.ownerDocument.body,a=yn(n.scrollWidth,n.clientWidth,o.scrollWidth,o.clientWidth),i=yn(n.scrollHeight,n.clientHeight,o.scrollHeight,o.clientHeight);let s=-e.scrollLeft+ao(t);const l=-e.scrollTop;return mt(o).direction==="rtl"&&(s+=yn(n.clientWidth,o.clientWidth)-a),{width:a,height:i,x:s,y:l}}function $l(t,n){const e=dt(t),o=qt(t),a=e.visualViewport;let i=o.clientWidth,s=o.clientHeight,l=0,u=0;if(a){i=a.width,s=a.height;const d=Br();(!d||d&&n==="fixed")&&(l=a.offsetLeft,u=a.offsetTop)}return{width:i,height:s,x:l,y:u}}function wl(t,n){const e=vn(t,!0,n==="fixed"),o=e.top+t.clientTop,a=e.left+t.clientLeft,i=_t(t)?an(t):jt(1),s=t.clientWidth*i.x,l=t.clientHeight*i.y,u=a*i.x,d=o*i.y;return{width:s,height:l,x:u,y:d}}function lo(t,n,e){let o;if(n==="viewport")o=$l(t,e);else if(n==="document")o=_l(qt(t));else if(Tt(n))o=wl(n,e);else{const a=io(t);o={...n,x:n.x-a.x,y:n.y-a.y}}return Jn(o)}function so(t,n){const e=on(t);return e===n||!Tt(e)||Xn(e)?!1:mt(e).position==="fixed"||so(e,n)}function kl(t,n){const e=n.get(t);if(e)return e;let o=Mr(t,[],!1).filter(l=>Tt(l)&&Vt(l)!=="body"),a=null;const i=mt(t).position==="fixed";let s=i?on(t):t;for(;Tt(s)&&!Xn(s);){const l=mt(s),u=Ir(s);!u&&l.position==="fixed"&&(a=null),(i?!u&&!a:!u&&l.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||bn(s)&&!u&&so(t,s))?o=o.filter(p=>p!==s):a=l,s=on(s)}return n.set(t,o),o}function Cl(t){let{element:n,boundary:e,rootBoundary:o,strategy:a}=t;const s=[...e==="clippingAncestors"?kl(n,this._c):[].concat(e),o],l=s[0],u=s.reduce((d,p)=>{const f=lo(n,p,a);return d.top=yn(f.top,d.top),d.right=Ki(f.right,d.right),d.bottom=Ki(f.bottom,d.bottom),d.left=yn(f.left,d.left),d},lo(n,l,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}function Ol(t){const{width:n,height:e}=no(t);return{width:n,height:e}}function El(t,n,e){const o=_t(n),a=qt(n),i=e==="fixed",s=vn(t,!0,i,n);let l={scrollLeft:0,scrollTop:0};const u=jt(0);if(o||!o&&!i)if((Vt(n)!=="body"||bn(a))&&(l=Qn(n)),o){const f=vn(n,!0,i,n);u.x=f.x+n.clientLeft,u.y=f.y+n.clientTop}else a&&(u.x=ao(a));const d=s.left+l.scrollLeft-u.x,p=s.top+l.scrollTop-u.y;return{x:d,y:p,width:s.width,height:s.height}}function co(t,n){return!_t(t)||mt(t).position==="fixed"?null:n?n(t):t.offsetParent}function uo(t,n){const e=dt(t);if(!_t(t)||oo(t))return e;let o=co(t,n);for(;o&&hl(o)&&mt(o).position==="static";)o=co(o,n);return o&&(Vt(o)==="html"||Vt(o)==="body"&&mt(o).position==="static"&&!Ir(o))?e:o||pl(t)||e}const Sl=async function(t){const n=this.getOffsetParent||uo,e=this.getDimensions;return{reference:El(t.reference,await n(t.floating),t.strategy),floating:{x:0,y:0,...await e(t.floating)}}};function xl(t){return mt(t).direction==="rtl"}const Tl={convertOffsetParentRelativeRectToViewportRelativeRect:bl,getDocumentElement:qt,getClippingRect:Cl,getOffsetParent:uo,getElementRects:Sl,getClientRects:vl,getDimensions:Ol,getScale:an,isElement:Tt,isRTL:xl},Nl=fl,Al=(t,n,e)=>{const o=new Map,a={platform:Tl,...e},i={...a.platform,_c:o};return cl(t,n,{...a,platform:i})},G0="",Dl={name:"IbPopover",props:{position:{type:[String,Array],default:"top"},alwaysVisible:{type:Boolean,default:!1},attachToBody:{type:Boolean,default:!1}},data(){return{parentNode:null,isVisible:!!this.alwaysVisible,activePosition:null}},mounted(){this.$nextTick(()=>{var t,n,e,o;this.parentNode=this.$el.parentNode,this.alwaysVisible||((t=this.parentNode)==null||t.addEventListener("focus",this.showPopover,!0),(n=this.parentNode)==null||n.addEventListener("blur",this.hidePopover,!0),(e=this.parentNode)==null||e.addEventListener("mouseover",this.showPopover),(o=this.parentNode)==null||o.addEventListener("mouseleave",this.hidePopover))})},methods:{showPopover(){this.isVisible||(this.isVisible=!0,Al(this.parentNode,this.$refs.popover,{middleware:[Nl({allowedPlacements:this.position})]}).then(({x:t,y:n,placement:e})=>{this.activePosition=e,Object.assign(this.$refs.popover.style,{left:`${t}px`,top:`${n}px`})}))},hidePopover(){this.isVisible=!1}},computed:{classes(){const t=["ib-popover"];return t.push(`ib-${this.activePosition}`),this.isVisible&&t.push("active"),t}},beforeUnmount(){!this.alwaysVisible&&this.parentNode&&(this.parentNode.removeEventListener("focus",this.showPopover,!0),this.parentNode.removeEventListener("blur",this.hidePopover,!0),this.parentNode.removeEventListener("mouseover",this.showPopover,!0),this.parentNode.removeEventListener("mouseleave",this.hidePopover,!0))}};function Pl(t,n,e,o,a,i){return e.attachToBody?(r.openBlock(),r.createBlock(r.Teleport,{key:0,to:"body"},[r.createVNode(r.Transition,null,{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("div",{ref:"popover",class:r.normalizeClass(i.classes)},[r.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[r.vShow,a.isVisible]])]),_:3})])):(r.openBlock(),r.createBlock(r.Transition,{key:1},{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("div",{ref:"popover",class:r.normalizeClass(i.classes)},[r.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[r.vShow,a.isVisible]])]),_:3}))}const fo=_e(Dl,[["render",Pl],["__scopeId","data-v-9e816e9b"]]),W0="",Il={name:"IbTooltip",props:{position:{type:String},title:{type:String},text:{type:String},alwaysVisible:{type:Boolean,default:!1}},computed:{classList(){const t=["ib-tooltip"];return this.title&&t.push("ib-tooltip-large"),t}},components:{IbPopover:fo}},Bl={key:0};function Ml(t,n,e,o,a,i){const s=r.resolveComponent("ib-popover");return r.openBlock(),r.createBlock(s,{position:e.position,"always-visible":e.alwaysVisible,class:r.normalizeClass(i.classList)},{default:r.withCtx(()=>[e.title?(r.openBlock(),r.createElementBlock("b",Bl,r.toDisplayString(e.title),1)):r.createCommentVNode("",!0),r.createElementVNode("p",null,r.toDisplayString(e.text),1)]),_:1},8,["position","always-visible","class"])}const ln=_e(Il,[["render",Ml],["__scopeId","data-v-6fb94ac5"]]),ho={[Kt.primary]:Kt.primary,[Kt.tertiary]:Kt.tertiary,[Kt.ghost]:Kt.ghost,white:"white"},po={xs:"xs",s:"s",m:"m"},Y0="",Ll={name:"IbIconButton",props:{kind:{type:String,default:ho.primary,validator:t=>Object.keys(ho).includes(t)},size:{type:String,default:po.s,validator:t=>Object.keys(po).includes(t)},rounded:{type:Boolean,required:!1,default:!1},disabled:{type:Boolean,required:!1,default:!1},href:{type:String,default:""},to:{type:[String,Object],default:""},helpText:{type:String,default:""},disabledFocus:{type:Boolean,default:!1},preventDefault:{type:Boolean,default:!1}},data(){return{tooltipVisible:!1}},computed:{classes(){const t=["ib-icon-button"];return t.push(`ib-icon-btn-${this.kind}`),t.push(`ib-icon-btn-${this.size}`),this.rounded&&t.push("ib-icon-btn-rounded"),this.disabled&&t.push("ib-icon-btn-disabled"),t},attrs(){const t={...this.$attrs};return t.class=[...this.classes,t.class],this.disabledFocus&&(t.tabindex="-1"),t}},components:{IbButton:Hi,IbTooltip:ln},inheritAttrs:!1};function Rl(t,n,e,o,a,i){const s=r.resolveComponent("ib-tooltip"),l=r.resolveComponent("ib-button");return r.openBlock(),r.createBlock(l,r.mergeProps(i.attrs,{href:e.href,to:e.to,kind:e.kind,disabled:e.disabled,"prevent-default":e.preventDefault}),{default:r.withCtx(()=>[r.renderSlot(t.$slots,"default"),e.helpText.length?(r.openBlock(),r.createBlock(s,{key:0,text:e.helpText},null,8,["text"])):r.createCommentVNode("",!0)]),_:3},16,["href","to","kind","disabled","prevent-default"])}const ut=_e(Ll,[["render",Rl]]),er={alert:"alert",error:"error",warning:"warning",info:"info",success:"success"},Z0="",jl={name:"IbAlert",props:{type:{type:String,default:er.alert,validator:t=>Object.keys(er).includes(t)},showIcon:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!1},title:{type:String,default:""},additionalTitleText:{type:String,default:""}},mounted(){this.checkHeight(),this.$refs.content&&(this.contentObserver=new ResizeObserver(()=>{this.checkHeight()}),this.contentObserver.observe(this.$refs.content)),window.addEventListener("resize",()=>this.checkHeight())},data(){return{contentObserver:null}},methods:{close(){this.$emit("close")},checkHeight(){var e;if(!this.$refs.content)return;const t=getComputedStyle(this.$refs.content),n=(e=this.$refs.content)==null?void 0:e.parentElement.offsetWidth;!n||!t||(parseInt(t.width)<=n&&this.$refs.content.classList.remove("large"),parseInt(t.height)>37&&this.showIcon&&(this.title.length?this.$refs.content.classList.add("large"):this.$refs.content.classList.add("medium")))}},computed:{classes(){const t=["ib-alert"];return t.push(`ib-alert-${this.type}`),this.title.length&&t.push("has-title"),this.showIcon&&t.push("has-icon"),this.showCloseButton&&t.push("has-close-button"),this.$slots.link&&t.push("has-link"),t},iconName(){return this.type===er.info?"information-circle-outline":this.type===er.success?"checkmark-circle-outline":"alert-circle-outline"}},beforeUnmount(){var t;(t=this.contentObserver)==null||t.disconnect(),window.removeEventListener("resize",()=>this.checkHeight())},components:{IbIcon:Le,IbIconButton:ut}},Vl={ref:"content",class:"content"},ql={class:"content-head"},Fl={key:1,class:"ib-alert-title"},Hl={class:"text-content"},zl={class:"link"};function Ul(t,n,e,o,a,i){var u;const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-icon-button");return r.openBlock(),r.createElementBlock("div",{role:"alert",class:r.normalizeClass(i.classes)},[r.createElementVNode("div",Vl,[r.createElementVNode("span",ql,[e.showIcon?(r.openBlock(),r.createBlock(s,{key:0,class:"ib-alert-icon",name:i.iconName},null,8,["name"])):r.createCommentVNode("",!0),(u=e.title)!=null&&u.length?(r.openBlock(),r.createElementBlock("b",Fl,r.toDisplayString(e.title),1)):r.createCommentVNode("",!0),r.renderSlot(t.$slots,"title",{},void 0,!0)]),r.createElementVNode("span",Hl,[r.renderSlot(t.$slots,"default",{},void 0,!0)]),r.createElementVNode("div",zl,[r.renderSlot(t.$slots,"link",{},void 0,!0)])],512),e.showCloseButton?(r.openBlock(),r.createBlock(l,{key:0,class:"close-button",kind:"ghost","prevent-default":!0,onClick:i.close},{default:r.withCtx(()=>[r.createVNode(s,{class:"close-button-icon",name:"close-outline"})]),_:1},8,["onClick"])):r.createCommentVNode("",!0)],2)}const Ft=_e(jl,[["render",Ul],["__scopeId","data-v-8437bad2"]]),Kl={M:"m",L:"l",XL:"xl"},Gl={SQUARE:"square",CIRCLE:"circle"},J0="",Wl={name:"IbAvatar",props:{firstName:{type:String,default:""},lastName:{type:String,default:""},src:{type:String,default:""},userAvatar:{type:Boolean,default:!1},size:{type:String,default:Kl.M},type:{type:String,default:Gl.CIRCLE}},computed:{classList(){return["avatar",`avatar-size-${this.size}`,`avatar-type-${this.type}`]},validateName(){var t,n;return((t=this.firstName)==null?void 0:t.trim().length)!==0&&((n=this.lastName)==null?void 0:n.trim().length)!==0},initials(){return this.firstName[0].toUpperCase()+this.lastName[0].toUpperCase()}},components:{IbIcon:Le}},Yl=["src","alt"];function Zl(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon");return e.src&&!e.userAvatar?(r.openBlock(),r.createElementBlock("img",{key:0,class:r.normalizeClass(i.classList),src:e.src,alt:e.firstName+""+e.lastName},null,10,Yl)):e.src&&e.userAvatar?(r.openBlock(),r.createElementBlock("div",{key:1,class:r.normalizeClass(["user-avatar",i.classList]),style:r.normalizeStyle({backgroundImage:"url("+e.src+")"})},null,6)):i.validateName?(r.openBlock(),r.createElementBlock("div",{key:3,class:r.normalizeClass([i.classList,"default-avatar"])},r.toDisplayString(i.initials),3)):(r.openBlock(),r.createElementBlock("div",{key:2,class:r.normalizeClass(["empty-avatar",i.classList])},[r.createVNode(s,{name:"camera-outline"})],2))}const Jl=_e(Wl,[["render",Zl],["__scopeId","data-v-63abd28e"]]),X0="",Xl={name:"IbBadge",props:{content:{type:[String,Number],default:""}},computed:{classes(){const t=["ib-badge"];return this.content.toString().length&&t.push("ib-badge-large"),t},normalizeContent(){return this.content>99?"99+":this.content}}};function Ql(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("span",{class:r.normalizeClass(i.classes)},r.toDisplayString(i.normalizeContent),3)}const es=_e(Xl,[["render",Ql],["__scopeId","data-v-328df75a"]]),Q0="",ts={name:"IbButtonGroup"},ns={class:"ib-button-group"};function rs(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("div",ns,[r.renderSlot(t.$slots,"default")])}const is=_e(ts,[["render",rs]]),sn={success:"success",neutral:"neutral",info:"info",error:"error",new:"new",favorite:"favorite",pending:"pending"},ep="",os={props:{status:{type:String,default:sn.neutral,validator:t=>Object.keys(sn).includes(t)},icon:{type:String,default:""},showIcon:{type:Boolean,default:!1}},computed:{classes(){const t=["ib-tag-pill"];return t.push(`ib-tag-pill-${this.status}`),t},iconName(){if(this.icon)return this.icon;switch(this.status){case sn.success:return"checkmark-outline";case sn.neutral:return"time-outline";case sn.info:return"information-circle-outline";case sn.error:return"close-outline";default:return""}}},components:{IbIcon:Le}};function as(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(i.classes)},[e.showIcon&&i.iconName.length?(r.openBlock(),r.createBlock(s,{key:0,name:i.iconName},null,8,["name"])):r.createCommentVNode("",!0),r.createElementVNode("span",null,[r.renderSlot(t.$slots,"default",{},void 0,!0)])],2)}const ls=_e(os,[["render",as],["__scopeId","data-v-92406065"]]),ss={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"},tp="",np="",cs={name:"IbTooltip",props:{position:{type:String,default:ss.topCenter},title:{type:String},isOpen:{type:Boolean,default:!1}},mounted(){this.$nextTick(()=>{this.parentNode=this.$el.parentNode,getComputedStyle(this.parentNode).position!=="absolute"&&(this.parentNode.style.position="relative")})},data(){return{isOpenedState:this.isOpen}},methods:{open(){this.isOpenedState=!0,this.$emit("open")},close(){this.isOpenedState=!1,this.$emit("close")}},computed:{classes(){const t=["ib-toggle-tip"];return t.push(`ib-${this.position}`),t}},watch:{isOpen(t){t?this.open():this.close()}},components:{IbIconButton:ut,IbIcon:Le}},ds={class:"ib-toggle-tip-head"},us={class:"ib-toggle-tip-content"},fs={class:"ib-toggle-tip-button-set"};function hs(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-icon-button");return r.openBlock(),r.createBlock(r.Transition,null,{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("div",{class:r.normalizeClass(i.classes)},[r.createElementVNode("div",ds,[r.createElementVNode("p",null,r.toDisplayString(e.title),1),r.createVNode(l,{class:"close-button",kind:"ghost",onClick:r.withModifiers(i.close,["prevent"])},{default:r.withCtx(()=>[r.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])]),r.createElementVNode("div",us,[r.renderSlot(t.$slots,"default",{},void 0,!0)]),r.createElementVNode("div",fs,[r.renderSlot(t.$slots,"buttons",{},void 0,!0)])],2),[[r.vShow,a.isOpenedState]])]),_:3})}const mo=_e(cs,[["render",hs],["__scopeId","data-v-9e7c679e"]]),Lr=27,go=32,ps=13,yo=9,ms=38,gs=37,ys=39,bo=40,bs=8,vs="click",{performance:tr}=window,_s=typeof(tr==null?void 0:tr.now)=="function"&&Date.now()>document.createEvent("Event").timeStamp?()=>tr.now():()=>Date.now(),_n=new Map;let $n=!1;const vo=t=>{_n.forEach(({bindTimeStamp:n,callback:e},o)=>{if(!(o.contains(t.target)||t.timeStamp<=n))try{e(t)}catch(a){console.error(a)}})},$s=()=>{$n||(document.addEventListener("click",vo,{capture:!0}),$n=!0)},ws=()=>{$n&&(document.removeEventListener("click",vo),$n=!1)},nr={created:(t,{value:n,arg:e="click"})=>{if(typeof n!="function")throw new Error(`[OutsideDirective] Value must be a function; got ${typeof n}!`);if(e!=="click")throw new Error(`[OutsideDirective] Cannot bind ${e} events; only click events are currently supported!`);_n.has(t)||($n||$s(),_n.set(t,{bindTimeStamp:_s(),callback:n}))},beforeUnmount:t=>{_n.delete(t),_n.size===0&&ws()}},wn={left:"left",right:"right",center:"center"},rr={top:"top",bottom:"bottom"},op="",ap="",ks={name:"IbDropdown",directives:{Outside:nr},props:{vertical:{type:String,default:rr.bottom},horizontal:{type:String,default:wn.left},triggerClass:{default:""},isOpened:{type:Boolean,default:!1},showCloseIcon:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},triggerType:{type:String,default:vs},destroyOnHide:{type:Boolean,default:!1}},watch:{isOpened(t){t?this.open():this.close()}},mounted(){this.$globalEvents.$on("dropdown:open",t=>{this.$el.contains(t.$el)||this.close()}),document.addEventListener("focus",this.closeOnEventOutside,!0),document.addEventListener("keyup",this.onKeyupDocument)},data(){return{isOpenedState:this.isOpened,timeout:null}},methods:{onKeydown(t){(t.keyCode===ps||t.keyCode===go)&&(t.preventDefault(),this.toggle()),t.keyCode===bo&&(t.preventDefault(),this.open())},onKeyupDocument(t){t.keyCode===Lr&&(t.preventDefault(),this.close())},toggle(){this.isOpenedState?this.close():this.open()},open(){this.disabled||(this.isOpenedState=!0,this.$emit("open"),this.$globalEvents.$emit("dropdown:open",this))},close(){if(this.isOpenedState){if(this.disabled)return;this.isOpenedState=!1,this.$emit("close")}},debouncedOpen(){this.timeout=setTimeout(()=>{this.open()},300)},debouncedClose(){this.close(),clearTimeout(this.timeout)},closeOnClickIfRequired(){this.closeOnClick&&this.close()},closeOnEventOutside(t){this.$el.contains(t.target)||this.close()}},computed:{classes(){const t=this.vertical===rr.bottom?" dropdown-bottom":" dropdown-top",n=this.horizontal===wn.left?" dropdown-left":this.horizontal===wn.right?" dropdown-right":" dropdown-center",e=this.isOpenedState?" active":"";return t+n+e},triggerClasses(){let t=this.isOpenedState?"active":"";return this.disabled&&(t+=" dropdown-trigger-disabled"),this.triggerClass+t},hasTrigger(){return!!this.$slots.trigger}},beforeUnmount(){document.removeEventListener("focus",this.closeOnEventOutside,!0),document.removeEventListener("keypress",this.onKeydownDocument)}},Cs={class:"ib-dropdown"},Os={class:"footer-slot"};function Es(t,n,e,o,a,i){const s=r.resolveDirective("outside");return r.withDirectives((r.openBlock(),r.createElementBlock("div",Cs,[i.hasTrigger&&e.triggerType==="click"?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass(["dropdown-trigger",i.triggerClasses]),ref:"dropdown",onKeydown:n[0]||(n[0]=(...l)=>i.onKeydown&&i.onKeydown(...l)),onClick:n[1]||(n[1]=r.withModifiers((...l)=>i.toggle&&i.toggle(...l),["prevent","stop"]))},[r.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):r.createCommentVNode("",!0),i.hasTrigger&&e.triggerType==="hover"?(r.openBlock(),r.createElementBlock("span",{key:1,class:r.normalizeClass(["dropdown-trigger",i.triggerClasses]),onMouseenter:n[2]||(n[2]=(...l)=>i.debouncedOpen&&i.debouncedOpen(...l)),onMouseleave:n[3]||(n[3]=(...l)=>i.debouncedClose&&i.debouncedClose(...l))},[r.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):r.createCommentVNode("",!0),!e.destroyOnHide||a.isOpenedState?r.withDirectives((r.openBlock(),r.createElementBlock("div",{key:2,ref:"body",class:r.normalizeClass("ib-dropdown-menu "+i.classes)},[r.createElementVNode("div",{class:"dropdown-body",onClick:n[5]||(n[5]=(...l)=>i.closeOnClickIfRequired&&i.closeOnClickIfRequired(...l))},[r.renderSlot(t.$slots,"body",{isOpenedState:a.isOpenedState},void 0,!0),e.showCloseIcon?(r.openBlock(),r.createElementBlock("span",{key:0,class:"close",onClick:n[4]||(n[4]=(...l)=>i.close&&i.close(...l))},[r.renderSlot(t.$slots,"close",{},void 0,!0)])):r.createCommentVNode("",!0)]),r.createElementVNode("div",Os,[r.renderSlot(t.$slots,"footer",{},void 0,!0)])],2)),[[r.vShow,a.isOpenedState]]):r.createCommentVNode("",!0),r.createElementVNode("div",{class:"before",onClick:n[6]||(n[6]=(...l)=>i.close&&i.close(...l))},[r.renderSlot(t.$slots,"before",{},void 0,!0)])])),[[s,i.close]])}const ir=_e(ks,[["render",Es],["__scopeId","data-v-dfb4a39a"]]),lp="",Ss={name:"IbList",data(){return{rootClass:"ib-list"}},methods:{onKeydown(t){var n,e,o,a,i;if(t.keyCode===bo){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,l=s.querySelector(`.${this.rootClass}`);let u=s.nextElementSibling?s.nextElementSibling:(n=s.parentNode.nextElementSibling)==null?void 0:n.childNodes[0];if(l&&window.getComputedStyle(l).display!=="none"){l.querySelector('a, button, input, [tabindex="0"]').focus();return}if(u){u.focus();return}const d=(o=(e=s.closest(`.${this.rootClass}`).parentNode)==null?void 0:e.parentNode)==null?void 0:o.nextElementSibling.childNodes[0];d&&d.nodeName!=="#text"&&d.focus()}if(t.keyCode===ms){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,l=s.previousElementSibling?s.previousElementSibling:(a=s.parentNode.previousElementSibling)==null?void 0:a.childNodes[0];if(!l){s.closest(`.${this.rootClass}`).parentNode.focus();return}if(l&&l.nodeName!=="#text"){const u=l==null?void 0:l.querySelector(`.${this.rootClass}`);if(u&&window.getComputedStyle(u).display!=="none"){const d=Array.from(u.childNodes).filter(p=>p.nodeName!=="#text");(i=d[d.length-1])==null||i.childNodes[0].focus();return}l.focus()}}}}};function xs(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("ul",{class:r.normalizeClass(a.rootClass),onKeydown:n[0]||(n[0]=(...s)=>i.onKeydown&&i.onKeydown(...s))},[r.renderSlot(t.$slots,"default")],34)}const Rr=_e(Ss,[["render",xs]]),sp="",Ts={props:{vertical:{type:String,default:rr.bottom},horizontal:{type:String,default:wn.left},isOpened:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},class:{type:String,default:""}},methods:{proxyEvents(t){this.$emit(t.event,...t.args)}},data(){return{list:this.$refs.list}},computed:{hasTrigger(){return!!this.$slots.trigger}},components:{IbDropdown:ir,IbList:Rr}};function Ns(t,n,e,o,a,i){const s=r.resolveComponent("ib-list"),l=r.resolveComponent("ib-dropdown");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["dropdown-list-wrapper",e.class])},[r.createVNode(l,r.mergeProps({horizontal:e.horizontal,vertical:e.vertical,isOpened:e.isOpened,closeOnClick:e.closeOnClick,disabled:e.disabled},t.$attrs,{ref:"dropdown",onAll:i.proxyEvents}),r.createSlots({body:r.withCtx(({isOpened:u})=>[r.createVNode(s,{ref:"list",class:"list"},{default:r.withCtx(()=>[r.renderSlot(t.$slots,"body",{isOpenedState:u})]),_:2},1536)]),_:2},[i.hasTrigger?{name:"trigger",fn:r.withCtx(({isOpened:u})=>[r.renderSlot(t.$slots,"trigger",{isOpened:u})]),key:"0"}:void 0]),1040,["horizontal","vertical","isOpened","closeOnClick","disabled","onAll"])],2)}const or=_e(Ts,[["render",Ns]]),cp="",As={props:{checked:{type:Boolean,default:!1},href:{type:String},to:{type:[String,Object]}},computed:{component(){return this.href?"a":this.to?"router-link":"div"},attrs(){const t={class:"ib-dropdown-item"};return this.href&&(t.href=this.href),this.to&&(t.to=this.to),t}}},Ds={class:"dropdown-item-wrapper"},Ps={class:"dropdown-item-icon"};function Is(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("li",Ds,[(r.openBlock(),r.createBlock(r.resolveDynamicComponent(i.component),r.mergeProps({class:e.checked?"active":""},i.attrs,{tabindex:"0"}),{default:r.withCtx(()=>[r.createElementVNode("p",null,[r.withDirectives(r.createElementVNode("div",Ps,[r.renderSlot(t.$slots,"icon",{},void 0,!0)],512),[[r.vShow,t.$slots.icon]]),r.renderSlot(t.$slots,"default",{ref:"slot"},void 0,!0)])]),_:3},16,["class"]))])}const jr=_e(As,[["render",Is],["__scopeId","data-v-6ec2fbd4"]]),Bs={common:"common",danger:"danger"},dp="",Ms={name:"IbSplitButton",props:{id:{type:String,default:()=>pt()},kind:{type:String,default:Bs.common},verticalPosition:{type:String,default:"bottom"},disabled:{type:Boolean,default:!1},saveSelected:{type:Boolean,default:!1}},mounted(){var t;if(this.childList=Array.from(this.$refs.list.children),(t=this.childList)==null||t.forEach((n,e)=>{n.addEventListener("click",()=>{this.childList[this.activeElemIdx].classList.remove("active"),this.saveSelected&&(this.activeElemIdx=e,localStorage.setItem(`split-button-${this.id}`,e))})}),this.saveSelected){const n=localStorage.getItem(`split-button-${this.id}`);n&&(this.activeElemIdx=n)}this.$nextTick(()=>{this.setActiveItem()}),this.listObserver=new MutationObserver(n=>{for(const e of n)if(e.type==="attributes"&&e.attributeName==="disabled"){this.mainButtonAttrs.disabled=e.target.disabled;break}}),this.listObserver.observe(this.$refs.list,{attributes:!0,subtree:!0})},data(){return{activeElemIdx:0,content:"",mainButtonAttrs:{},isLink:!1,isRouterLink:!1,childList:[],listObserver:null}},components:{IbIcon:Le,IbDropdownList:or},methods:{setActiveItem(){const t=this.$slots.default()[this.activeElemIdx].props;this.mainButtonAttrs=t,this.mainButtonAttrs&&"href"in this.mainButtonAttrs?this.isLink=!0:this.isLink=!1,this.mainButtonAttrs&&"to"in this.mainButtonAttrs?this.isRouterLink=!0:this.isRouterLink=!1,this.childList[this.activeElemIdx].classList.add("active"),this.content=this.childList[this.activeElemIdx].textContent},onClickLink(t){if(this.disabled){t.preventDefault();return}}},computed:{classes(){const t=["split-button"];return t.push(`split-button-${this.kind}`),t}},watch:{activeElemIdx(){this.setActiveItem()}},beforeUnmount(){this.listObserver.disconnect(),this.listObserver=null}},Ls=["disabled"],Rs=["disabled"],js=["disabled"],Vs={ref:"list"};function qs(t,n,e,o,a,i){const s=r.resolveComponent("router-link"),l=r.resolveComponent("ib-icon"),u=r.resolveComponent("ib-dropdown-list");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(i.classes)},[a.isRouterLink?(r.openBlock(),r.createBlock(s,r.mergeProps({key:0,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled,to:a.mainButtonAttrs.to},a.mainButtonAttrs,{onClick:i.onClickLink}),{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(a.content),1)]),_:1},16,["class","disabled","to","onClick"])):a.isLink?(r.openBlock(),r.createElementBlock("a",r.mergeProps({key:1,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled},a.mainButtonAttrs,{onClick:n[0]||(n[0]=(...d)=>i.onClickLink&&i.onClickLink(...d))}),r.toDisplayString(a.content),17,Ls)):(r.openBlock(),r.createElementBlock("button",r.mergeProps({key:2,disabled:e.disabled,class:"split-button-main"},a.mainButtonAttrs),r.toDisplayString(a.content),17,Rs)),r.createVNode(u,{disabled:e.disabled,closeOnClick:!0,vertical:e.verticalPosition,horizontal:e.verticalPosition==="top"?"right":"left"},{trigger:r.withCtx(()=>[r.createElementVNode("button",{disabled:e.disabled,class:"split-button-menu-trigger"},[r.createVNode(l,{name:"chevron-down-outline"})],8,js)]),body:r.withCtx(()=>[r.createElementVNode("div",Vs,[r.renderSlot(t.$slots,"default")],512)]),_:3},8,["disabled","vertical","horizontal"])],2)}const Fs=_e(Ms,[["render",qs]]),up="",Hs={props:{href:{type:String,default:""},to:{type:[String,Object]}},computed:{attrs(){const t={};return this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},component(){return this.href.length?"a":this.to?"router-link":"button"}}};function zs(t,n,e,o,a,i){return r.openBlock(),r.createBlock(r.resolveDynamicComponent(i.component),r.mergeProps(i.attrs,{class:"ib-dropdown-item"}),{default:r.withCtx(()=>[r.renderSlot(t.$slots,"default",{},void 0,!0)]),_:3},16)}const Us=_e(Hs,[["render",zs],["__scopeId","data-v-9a68b340"]]),Nt={S:"s",M:"m",L:"l",XL:"xl"},fp="",Ks={name:"IbModal",directives:{Outside:nr},emits:{open:null,close:null},props:{active:{type:Boolean,default:!1},classList:{type:String,default:""},stopPropagation:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!0},size:{type:String,default:Nt.S}},watch:{active(t){this.isActive=t}},mounted(){var n,e,o,a;const t=(e=(n=this.$refs)==null?void 0:n.modal)==null?void 0:e.querySelectorAll("[tabindex], a, button, input, select, textarea");(o=t[0])==null||o.addEventListener("keydown",i=>{i.keyCode===yo&&i.shiftKey&&(i.preventDefault(),t[t.length-1].focus())}),(a=t[t.length-1])==null||a.addEventListener("keydown",i=>{i.keyCode===yo&&!i.shiftKey&&(i.preventDefault(),t[0].focus())}),document.addEventListener("keydown",this.onKeydown),document.addEventListener("blur",this.setFocusOnModal,!0)},data(){return{isActive:this.active}},methods:{showModal(t){t?this.open():this.close()},onTriggerBlur(t){var n,e,o;!((n=this.$refs.modal)!=null&&n.contains(t.relatedTarget))&&this.isActive&&((o=(e=this.$refs.modal)==null?void 0:e.querySelector("a, button, [tabindex]"))==null||o.focus())},open(){this.isActive=!0,document.body.classList.add("modal-open"),this.$emit("open")},close(){var t,n;(n=(t=this.$refs.trigger)==null?void 0:t.querySelector("a, button, [tabindex]"))==null||n.focus(),document.body.classList.remove("modal-open"),this.$emit("close")},setFocusOnModal(t){if(!this.isActive)return;const e=Array.from(document.querySelectorAll(".modal.is-active")).sort((o,a)=>+(getComputedStyle(o).zIndex||0)-+(getComputedStyle(a).zIndex||0)).at(-1);if(e===this.$refs.modal&&!e.contains(t.target)&&!e.contains(t.relatedTarget)){const o=e.querySelector(`a[href], button:not([disabled]),
2
- textarea, input:not([type="hidden"]),
3
- select, [tabindex]:not([tabindex="-1"])`);o==null||o.focus()}},clickOutside(t){var n;this.stopPropagation||!((n=this.$refs.trigger)!=null&&n.contains(t.target))&&this.isActive&&this.close()},onKeydown(t){t.keyCode===Lr&&!this.stopPropagation&&this.isActive&&this.close()}},computed:{classes(){const t=["modal"];return this.classList.length&&t.push(this.classList),this.isActive&&t.push("is-active"),t},bodyStyles(){const t={};return this.size===Nt.S&&(t.width="380px",t.minHeight="160px",t.maxHeight="680px"),this.size===Nt.M&&(t.width="600px",t.minHeight="260px",t.maxHeight="680px"),this.size===Nt.L&&(t.width="850px",t.minHeight="400px",t.maxHeight="680px"),this.size===Nt.XL&&(t.width="80vw",t.maxWidth="1400px"),t},bodyClassList(){const t=["modal-body"];return this.size===Nt.S&&t.push("modal-body-s"),this.size===Nt.M&&t.push("modal-body-m"),this.size===Nt.L&&t.push("modal-body-l"),this.size===Nt.XL&&t.push("modal-body-xl"),t},hasTrigger(){return!!this.$slots.trigger},hasHeader(){return!!this.$slots.header},hasFooter(){return!!this.$slots.footer}},components:{IbIconButton:ut,IbIcon:Le},beforeUnmount(){this.isActive&&this.close(),document.removeEventListener("keydown",this.onKeydown),document.removeEventListener("blur",this.setFocusOnModal,!0)}},Gs={key:1,class:"modal-header"},Ws={key:2,class:"modal-footer"};function Ys(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-icon-button"),u=r.resolveDirective("outside");return r.openBlock(),r.createElementBlock(r.Fragment,null,[i.hasTrigger?(r.openBlock(),r.createElementBlock("div",{key:0,class:"modal-trigger",ref:"trigger",onBlurCapture:n[0]||(n[0]=(...d)=>i.onTriggerBlur&&i.onTriggerBlur(...d)),onClick:n[1]||(n[1]=(...d)=>i.open&&i.open(...d))},[r.renderSlot(t.$slots,"trigger",{},void 0,!0)],544)):r.createCommentVNode("",!0),(r.openBlock(),r.createBlock(r.Teleport,{to:"body"},[r.withDirectives(r.createElementVNode("div",{class:r.normalizeClass(i.classes),ref:"modal"},[r.withDirectives((r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(i.bodyClassList),style:r.normalizeStyle(i.bodyStyles)},[e.showCloseButton?(r.openBlock(),r.createBlock(l,{key:0,class:"modal-close-icon",kind:"ghost",onClick:i.close},{default:r.withCtx(()=>[r.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])):r.createCommentVNode("",!0),i.hasHeader?(r.openBlock(),r.createElementBlock("p",Gs,[r.renderSlot(t.$slots,"header",{showModal:i.showModal},void 0,!0)])):r.createCommentVNode("",!0),r.createElementVNode("div",{class:r.normalizeClass(["modal-content",{"without-title":!i.hasHeader}])},[r.renderSlot(t.$slots,"body",{showModal:i.showModal},void 0,!0)],2),i.hasFooter?(r.openBlock(),r.createElementBlock("div",Ws,[r.renderSlot(t.$slots,"footer",{showModal:i.showModal},void 0,!0)])):r.createCommentVNode("",!0)],6)),[[u,i.clickOutside]])],2),[[r.vShow,a.isActive]])]))],64)}const Zs=_e(Ks,[["render",Ys],["__scopeId","data-v-12ec5923"]]);function _o(t){return"#"+t.toLowerCase().replace(/ /g,"-")}const hp="",Js={name:"IbTabDropdown",props:{tabs:{rype:Object,default:{}},selectedTab:{type:String,default:""}},data(){return{selectedTabByDropdown:"",isDisabledDropdown:this.setDisabledTab()}},methods:{createHref(t){return _o(t)},selectTab(t){this.selectedTabByDropdown=t,this.$emit("select-tab",t)},setDisabledTab(){return this.tabs.tabs.every(t=>t.disabled)}},computed:{isActive(){for(let t of this.tabs.tabs)if(t.id===this.selectedTab)return!0;return!1}},components:{IbDropdownList:or,IbDropdownItem:jr,IbIcon:Le}},Xs={class:"wrapper-tab-link dropdown-tab"},Qs=["tabindex"];function ec(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-dropdown-item"),u=r.resolveComponent("ib-dropdown-list");return r.openBlock(),r.createElementBlock("div",Xs,[r.createVNode(u,{disabled:a.isDisabledDropdown,"close-on-click":!0},{trigger:r.withCtx(()=>[r.createElementVNode("span",{class:r.normalizeClass(["tab-link",{active:a.selectedTabByDropdown===e.selectedTab||i.isActive,disabled:a.isDisabledDropdown}]),tabindex:a.isDisabledDropdown?-1:0},[r.createTextVNode(r.toDisplayString(e.tabs.name)+" ",1),r.createVNode(s,{name:"chevron-down"})],10,Qs)]),body:r.withCtx(()=>[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(e.tabs.tabs,(d,p)=>(r.openBlock(),r.createBlock(l,{key:p,checked:d.id===e.selectedTab,href:i.createHref(d.id),tabindex:d.disabled?-1:0,class:r.normalizeClass([{disabled:d.disabled},"dropdown-tab-item"]),target:"_self",onClick:f=>i.selectTab(d.id)},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(d.title),1)]),_:2},1032,["checked","href","tabindex","class","onClick"]))),128))]),_:1},8,["disabled"])])}const $o=_e(Js,[["render",ec]]),pp="",tc={name:"IbTabs",props:{showTitle:{type:Boolean,default:!0},selectedTabId:{type:String,default:""}},data(){return{tabs:[],selectedTab:this.selectTabId}},watch:{selectedTabId(t){this.selectTab(t)}},created(){const t=[];this.$slots.default().forEach(n=>n.type===Symbol.for("v-fgt")?t.push(...n.children):t.push(n)),t.forEach(n=>{if(!n.props.name)this.tabs.push(n.props);else{const e=this.tabs.findIndex(o=>o.name===n.props.name);if(e!==-1)this.tabs[e].tabs.push(n.props);else{const o={name:n.props.name,tabs:[n.props]};this.tabs.push(o)}}});for(let n of this.tabs)if(!n.disabled)if(n.tabs){for(let e of n.tabs)if(!e.disabled){this.selectTab(e.id);return}}else{this.selectTab(n.id);return}},methods:{createHref(t){return _o(t)},selectTab(t){this.$emit("changeTab",t),this.selectedTab=t}},components:{IbTabDropdown:$o,IbIcon:Le},emits:["changeTab"]},nc={class:"tabs"},rc={class:"tabs-list"},ic={key:0,class:"wrapper-tab-link"},oc=["href","tabindex","onClick"],ac={class:"tabs-content",ref:"tabHandler"};function lc(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-tab-dropdown");return r.openBlock(),r.createElementBlock("div",nc,[r.createElementVNode("ul",rc,[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(a.tabs,(u,d)=>(r.openBlock(),r.createElementBlock("li",{class:"tab-item",key:d},[u.name?(r.openBlock(),r.createBlock(l,{key:1,"selected-tab":a.selectedTab,tabs:u,onSelectTab:i.selectTab},null,8,["selected-tab","tabs","onSelectTab"])):(r.openBlock(),r.createElementBlock("div",ic,[r.createElementVNode("a",{class:r.normalizeClass(["tab-link",{active:a.selectedTab===u.id,disabled:u.disabled}]),href:i.createHref(u.id),tabindex:u.disabled?-1:0,onClick:p=>i.selectTab(u.id),target:"_self"},[u.icon?(r.openBlock(),r.createBlock(s,{key:0,class:"tab-icon",name:u.icon},null,8,["name"])):r.createCommentVNode("",!0),e.showTitle?(r.openBlock(),r.createElementBlock(r.Fragment,{key:1},[r.createTextVNode(r.toDisplayString(u.title),1)],64)):r.createCommentVNode("",!0)],10,oc)]))]))),128))]),r.createElementVNode("div",ac,[r.renderSlot(t.$slots,"default",{},void 0,!0)],512)])}const sc=_e(tc,[["render",lc],["__scopeId","data-v-04b9451c"]]),cc={name:"IbTab",props:{title:{type:String,required:!0},id:{type:String,required:!0},disabled:{type:Boolean,default:!1},icon:{type:String,required:!1},initialized:{type:Boolean,default:!1},name:{type:String,default:null}},computed:{isTabActive(){return this.$parent.selectedTab===this.id}}};function dc(t,n,e,o,a,i){return r.withDirectives((r.openBlock(),r.createElementBlock("div",null,[r.renderSlot(t.$slots,"default")],512)),[[r.vShow,i.isTabActive]])}const uc=_e(cc,[["render",dc]]),fc={LIST_VIEW:"list-sorting",GRID_VIEW:"grid-sorting",TABLE_VIEW:"table-sorting"},hc={TYPE_ASC:"asc",TYPE_DESC:"desc"},wo={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"};class ko{constructor(){this.tooltipInstance=null,this.tooltipContainer=null,this.uuid=null}getTooltipInstance(){return this.getTooltipInstance}getTooltipContainer(){return this.tooltipContainer}getId(){return this.uuid}generateUID(){this.uuid="tooltip_"+pt()}createTooltip(n,e,o){var i;if(!((i=e.text)!=null&&i.length))return;this.generateUID();const a=`
1
+ (function(fe,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],n):(fe=typeof globalThis<"u"?globalThis:fe||self,n(fe.MyLib={},fe.Vue))})(this,(function(fe,n){"use strict";const be=(t,i)=>{const e=t.__vccOpts||t;for(const[o,a]of i)e[o]=a;return e},Ha={name:"IbIcon",props:{name:{type:String,required:!0},classes:{type:String,default:""},styles:{type:[String,Object],default:""}},mounted(){const t=setInterval(()=>{var i,e;(e=(i=this.$refs.icon)==null?void 0:i.shadowRoot)!=null&&e.querySelector("title")&&(this.$refs.icon.shadowRoot.querySelector("title").innerHTML="",clearInterval(t))},1e3)}},za=["name"];function Ua(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("ion-icon",{style:n.normalizeStyle(e.styles),name:e.name,class:n.normalizeClass(e.classes+" ib-icon icon-"+e.name),ref:"icon"},null,14,za)}const Le=be(Ha,[["render",Ua]]);function dt(){return"_"+Math.random().toString(36).substr(2,9)}const qr={methods:{enter(t){const i=getComputedStyle(t).width;t.style.width=i,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const e=getComputedStyle(t).height;t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=e})},afterEnter(t){t.style.height="auto"},leave(t){const i=getComputedStyle(t).height;t.style.height=i,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}},Ka={name:"IbAccordion",mixins:[qr],props:{isOpen:{type:Boolean,default:!1}},watch:{isOpen(t){this.isActive=t}},data(){return{isActive:this.isOpen,uuid:dt()}},methods:{onClick(){this.isActive=!this.isActive,this.isActive?this.$emit("open",this.isActive):this.$emit("close",this.isActive)}},components:{IbIcon:Le}},Ga=["id","aria-controls","aria-expanded"],Wa=["id","aria-labelledby"],Ya={class:"accordion-content-wrapper"};function Za(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-accordion",{active:a.isActive}])},[n.createElementVNode("button",{class:"accordion-title",id:"accordion"+a.uuid,"aria-controls":"accordion-section-"+a.uuid,"aria-expanded":a.isActive,type:"button",onClick:i[0]||(i[0]=n.withModifiers((...c)=>r.onClick&&r.onClick(...c),["prevent"]))},[n.renderSlot(t.$slots,"title",{},void 0,!0),n.createVNode(d,{class:"chevron-icon",name:"chevron-down-outline"})],8,Ga),n.createVNode(n.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:n.withCtx(()=>[n.withDirectives(n.createElementVNode("div",{role:"region",class:"accordion-content",id:"accordion-section-"+a.uuid,"aria-labelledby":"accordion"+a.uuid},[n.createElementVNode("div",Ya,[n.renderSlot(t.$slots,"default",{},void 0,!0)])],8,Wa),[[n.vShow,a.isActive]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const Ja=be(Ka,[["render",Za],["__scopeId","data-v-e6e815cc"]]),zt={primary:"primary",tertiary:"tertiary",ghost:"ghost"};function Bi(t,i=[]){for(let e in t)e.startsWith("on")&&(i.length===0||i.includes(e))&&delete t[e];return t}const Xa={name:"IbButton",props:{kind:{type:String,default:zt.primary},disabled:{type:Boolean,required:!1,default:!1},preventDefault:{type:Boolean,default:null},confirmMessage:{type:String,default:""},block:{type:Boolean,default:!1},href:{type:String,default:""},to:{type:[String,Object]},linkMethod:{type:String,default:"get"},disableAfterClick:{type:Boolean,default:!1},postOptions:{type:Object,default:()=>({})}},data(){return{isDisabled:this.disabled}},watch:{disabled(t){this.isDisabled=t}},methods:{onMouseenter(t){this.$emit("mouseenter",t)},onMouseleave(t){this.$emit("mouseleave",t)},onClick(t){if((this.preventDefault||this.isDisabled)&&t.preventDefault(),this.confirmMessage.length>0&&!confirm(this.confirmMessage)){t.preventDefault();return}!this.isDisabled&&this.href.length&&!this.preventDefault&&this.linkMethod.toUpperCase()!=="GET"&&(t.preventDefault(),this.$refs.form.submit()),this.isDisabled||this.$emit("click",t),this.disableAfterClick&&!this.disabled&&(this.isDisabled=!0)}},computed:{component(){return this.href.length?"a":this.to?"router-link":"button"},classes(){const t=["ib-button"];return t.push(`ib-btn-${this.kind}`),this.isDisabled&&t.push("ib-btn-disabled"),this.block&&t.push("ib-btn-block"),(this.href.length||this.to)&&t.push("ib-btn-link"),this.hasIcon&&t.push("ib-btn-has-icon"),t},attrs(){const t=Bi({...this.$attrs},["onClick"]);return t.class=[...this.classes,t.class],t.disabled=this.isDisabled,this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},hasIcon(){return!!this.$slots.icon},formMethod(){return this.linkMethod==="GET"?"GET":"POST"},token(){var t;return(t=document.head.querySelector('meta[name="csrf-token"]'))==null?void 0:t.content}},inheritAttrs:!1},Qa=["method","action"],el=["value"],tl=["value"],nl=["name","value"];function il(t,i,e,o,a,r){return n.openBlock(),n.createBlock(n.resolveDynamicComponent(r.component),n.mergeProps(r.attrs,{onClick:i[0]||(i[0]=d=>r.onClick(d)),onMouseenter:r.onMouseenter,onMouseleave:r.onMouseleave}),{default:n.withCtx(()=>[n.renderSlot(t.$slots,"icon"),n.renderSlot(t.$slots,"default"),e.href.length&&e.linkMethod.toUpperCase()!=="GET"?n.withDirectives((n.openBlock(),n.createElementBlock("form",{key:0,ref:"form",method:r.formMethod,action:e.href},[n.createElementVNode("input",{type:"hidden",name:"_method",value:e.linkMethod},null,8,el),n.createElementVNode("input",{type:"hidden",name:"_token",value:r.token},null,8,tl),(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(Object.keys(e.postOptions),(d,c)=>(n.openBlock(),n.createElementBlock("input",{key:c,type:"hidden",name:d,value:e.postOptions[d]},null,8,nl))),128))],8,Qa)),[[n.vShow,!1]]):n.createCommentVNode("",!0)]),_:3},16,["onMouseenter","onMouseleave"])}const Hr=be(Xa,[["render",il]]),zr={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"},rl=["top","right","bottom","left"],Ur=["start","end"],Kr=rl.reduce((t,i)=>t.concat(i,i+"-"+Ur[0],i+"-"+Ur[1]),[]),Ii=Math.min,en=Math.max,Jn=Math.round,Lt=t=>({x:t,y:t}),ol={left:"right",right:"left",bottom:"top",top:"bottom"},al={start:"end",end:"start"};function Gr(t,i,e){return en(t,Ii(i,e))}function yn(t,i){return typeof t=="function"?t(i):t}function kt(t){return t.split("-")[0]}function Ct(t){return t.split("-")[1]}function Wr(t){return t==="x"?"y":"x"}function Yr(t){return t==="y"?"height":"width"}function Xn(t){return["top","bottom"].includes(kt(t))?"y":"x"}function Zr(t){return Wr(Xn(t))}function Jr(t,i,e){e===void 0&&(e=!1);const o=Ct(t),a=Zr(t),r=Yr(a);let d=a==="x"?o===(e?"end":"start")?"right":"left":o==="start"?"bottom":"top";return i.reference[r]>i.floating[r]&&(d=ei(d)),[d,ei(d)]}function ll(t){const i=ei(t);return[Qn(t),i,Qn(i)]}function Qn(t){return t.replace(/start|end/g,i=>al[i])}function sl(t,i,e){const o=["left","right"],a=["right","left"],r=["top","bottom"],d=["bottom","top"];switch(t){case"top":case"bottom":return e?i?a:o:i?o:a;case"left":case"right":return i?r:d;default:return[]}}function cl(t,i,e,o){const a=Ct(t);let r=sl(kt(t),e==="start",o);return a&&(r=r.map(d=>d+"-"+a),i&&(r=r.concat(r.map(Qn)))),r}function ei(t){return t.replace(/left|right|bottom|top/g,i=>ol[i])}function dl(t){return{top:0,right:0,bottom:0,left:0,...t}}function ul(t){return typeof t!="number"?dl(t):{top:t,right:t,bottom:t,left:t}}function ti(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function Xr(t,i,e){let{reference:o,floating:a}=t;const r=Xn(i),d=Zr(i),c=Yr(d),p=kt(i),s=r==="y",h=o.x+o.width/2-a.width/2,f=o.y+o.height/2-a.height/2,l=o[c]/2-a[c]/2;let u;switch(p){case"top":u={x:h,y:o.y-a.height};break;case"bottom":u={x:h,y:o.y+o.height};break;case"right":u={x:o.x+o.width,y:f};break;case"left":u={x:o.x-a.width,y:f};break;default:u={x:o.x,y:o.y}}switch(Ct(i)){case"start":u[d]-=l*(e&&s?-1:1);break;case"end":u[d]+=l*(e&&s?-1:1);break}return u}const fl=async(t,i,e)=>{const{placement:o="bottom",strategy:a="absolute",middleware:r=[],platform:d}=e,c=r.filter(Boolean),p=await(d.isRTL==null?void 0:d.isRTL(i));let s=await d.getElementRects({reference:t,floating:i,strategy:a}),{x:h,y:f}=Xr(s,o,p),l=o,u={},_=0;for(let g=0;g<c.length;g++){const{name:$,fn:v}=c[g],{x:b,y,data:m,reset:w}=await v({x:h,y:f,initialPlacement:o,placement:l,strategy:a,middlewareData:u,rects:s,platform:d,elements:{reference:t,floating:i}});h=b??h,f=y??f,u={...u,[$]:{...u[$],...m}},w&&_<=50&&(_++,typeof w=="object"&&(w.placement&&(l=w.placement),w.rects&&(s=w.rects===!0?await d.getElementRects({reference:t,floating:i,strategy:a}):w.rects),{x:h,y:f}=Xr(s,l,p)),g=-1)}return{x:h,y:f,placement:l,strategy:a,middlewareData:u}};async function Pi(t,i){var e;i===void 0&&(i={});const{x:o,y:a,platform:r,rects:d,elements:c,strategy:p}=t,{boundary:s="clippingAncestors",rootBoundary:h="viewport",elementContext:f="floating",altBoundary:l=!1,padding:u=0}=yn(i,t),_=ul(u),$=c[l?f==="floating"?"reference":"floating":f],v=ti(await r.getClippingRect({element:(e=await(r.isElement==null?void 0:r.isElement($)))==null||e?$:$.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(c.floating)),boundary:s,rootBoundary:h,strategy:p})),b=f==="floating"?{...d.floating,x:o,y:a}:d.reference,y=await(r.getOffsetParent==null?void 0:r.getOffsetParent(c.floating)),m=await(r.isElement==null?void 0:r.isElement(y))?await(r.getScale==null?void 0:r.getScale(y))||{x:1,y:1}:{x:1,y:1},w=ti(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:b,offsetParent:y,strategy:p}):b);return{top:(v.top-w.top+_.top)/m.y,bottom:(w.bottom-v.bottom+_.bottom)/m.y,left:(v.left-w.left+_.left)/m.x,right:(w.right-v.right+_.right)/m.x}}function hl(t,i,e){return(t?[...e.filter(a=>Ct(a)===t),...e.filter(a=>Ct(a)!==t)]:e.filter(a=>kt(a)===a)).filter(a=>t?Ct(a)===t||(i?Qn(a)!==a:!1):!0)}const pl=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(i){var e,o,a;const{rects:r,middlewareData:d,placement:c,platform:p,elements:s}=i,{crossAxis:h=!1,alignment:f,allowedPlacements:l=Kr,autoAlignment:u=!0,..._}=yn(t,i),g=f!==void 0||l===Kr?hl(f||null,u,l):l,$=await Pi(i,_),v=((e=d.autoPlacement)==null?void 0:e.index)||0,b=g[v];if(b==null)return{};const y=Jr(b,r,await(p.isRTL==null?void 0:p.isRTL(s.floating)));if(c!==b)return{reset:{placement:g[0]}};const m=[$[kt(b)],$[y[0]],$[y[1]]],w=[...((o=d.autoPlacement)==null?void 0:o.overflows)||[],{placement:b,overflows:m}],T=g[v+1];if(T)return{data:{index:v+1,overflows:w},reset:{placement:T}};const S=w.map(E=>{const C=Ct(E.placement);return[E.placement,C&&h?E.overflows.slice(0,2).reduce((O,N)=>O+N,0):E.overflows[0],E.overflows]}).sort((E,C)=>E[1]-C[1]),D=((a=S.filter(E=>E[2].slice(0,Ct(E[0])?2:3).every(C=>C<=0))[0])==null?void 0:a[0])||S[0][0];return D!==c?{data:{index:v+1,overflows:w},reset:{placement:D}}:{}}}},ml=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(i){var e,o;const{placement:a,middlewareData:r,rects:d,initialPlacement:c,platform:p,elements:s}=i,{mainAxis:h=!0,crossAxis:f=!0,fallbackPlacements:l,fallbackStrategy:u="bestFit",fallbackAxisSideDirection:_="none",flipAlignment:g=!0,...$}=yn(t,i);if((e=r.arrow)!=null&&e.alignmentOffset)return{};const v=kt(a),b=kt(c)===c,y=await(p.isRTL==null?void 0:p.isRTL(s.floating)),m=l||(b||!g?[ei(c)]:ll(c));!l&&_!=="none"&&m.push(...cl(c,g,_,y));const w=[c,...m],T=await Pi(i,$),S=[];let x=((o=r.flip)==null?void 0:o.overflows)||[];if(h&&S.push(T[v]),f){const O=Jr(a,d,y);S.push(T[O[0]],T[O[1]])}if(x=[...x,{placement:a,overflows:S}],!S.every(O=>O<=0)){var D,E;const O=(((D=r.flip)==null?void 0:D.index)||0)+1,N=w[O];if(N)return{data:{index:O,overflows:x},reset:{placement:N}};let P=(E=x.filter(F=>F.overflows[0]<=0).sort((F,K)=>F.overflows[1]-K.overflows[1])[0])==null?void 0:E.placement;if(!P)switch(u){case"bestFit":{var C;const F=(C=x.map(K=>[K.placement,K.overflows.filter(W=>W>0).reduce((W,ee)=>W+ee,0)]).sort((K,W)=>K[1]-W[1])[0])==null?void 0:C[0];F&&(P=F);break}case"initialPlacement":P=c;break}if(a!==P)return{reset:{placement:P}}}return{}}}};async function gl(t,i){const{placement:e,platform:o,elements:a}=t,r=await(o.isRTL==null?void 0:o.isRTL(a.floating)),d=kt(e),c=Ct(e),p=Xn(e)==="y",s=["left","top"].includes(d)?-1:1,h=r&&p?-1:1,f=yn(i,t);let{mainAxis:l,crossAxis:u,alignmentAxis:_}=typeof f=="number"?{mainAxis:f,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...f};return c&&typeof _=="number"&&(u=c==="end"?_*-1:_),p?{x:u*h,y:l*s}:{x:l*s,y:u*h}}const yl=function(t){return{name:"offset",options:t,async fn(i){var e,o;const{x:a,y:r,placement:d,middlewareData:c}=i,p=await gl(i,t);return d===((e=c.offset)==null?void 0:e.placement)&&(o=c.arrow)!=null&&o.alignmentOffset?{}:{x:a+p.x,y:r+p.y,data:{...p,placement:d}}}}},bl=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(i){const{x:e,y:o,placement:a}=i,{mainAxis:r=!0,crossAxis:d=!1,limiter:c={fn:$=>{let{x:v,y:b}=$;return{x:v,y:b}}},...p}=yn(t,i),s={x:e,y:o},h=await Pi(i,p),f=Xn(kt(a)),l=Wr(f);let u=s[l],_=s[f];if(r){const $=l==="y"?"top":"left",v=l==="y"?"bottom":"right",b=u+h[$],y=u-h[v];u=Gr(b,u,y)}if(d){const $=f==="y"?"top":"left",v=f==="y"?"bottom":"right",b=_+h[$],y=_-h[v];_=Gr(b,_,y)}const g=c.fn({...i,[l]:u,[f]:_});return{...g,data:{x:g.x-e,y:g.y-o}}}}};function Rt(t){return Qr(t)?(t.nodeName||"").toLowerCase():"#document"}function lt(t){var i;return(t==null||(i=t.ownerDocument)==null?void 0:i.defaultView)||window}function Vt(t){var i;return(i=(Qr(t)?t.ownerDocument:t.document)||window.document)==null?void 0:i.documentElement}function Qr(t){return t instanceof Node||t instanceof lt(t).Node}function Ot(t){return t instanceof Element||t instanceof lt(t).Element}function mt(t){return t instanceof HTMLElement||t instanceof lt(t).HTMLElement}function eo(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof lt(t).ShadowRoot}function bn(t){const{overflow:i,overflowX:e,overflowY:o,display:a}=ut(t);return/auto|scroll|overlay|hidden|clip/.test(i+o+e)&&!["inline","contents"].includes(a)}function vl(t){return["table","td","th"].includes(Rt(t))}function Li(t){const i=Ri(),e=ut(t);return e.transform!=="none"||e.perspective!=="none"||(e.containerType?e.containerType!=="normal":!1)||!i&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!i&&(e.filter?e.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(e.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(e.contain||"").includes(o))}function _l(t){let i=tn(t);for(;mt(i)&&!ni(i);){if(Li(i))return i;i=tn(i)}return null}function Ri(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ni(t){return["html","body","#document"].includes(Rt(t))}function ut(t){return lt(t).getComputedStyle(t)}function ii(t){return Ot(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function tn(t){if(Rt(t)==="html")return t;const i=t.assignedSlot||t.parentNode||eo(t)&&t.host||Vt(t);return eo(i)?i.host:i}function to(t){const i=tn(t);return ni(i)?t.ownerDocument?t.ownerDocument.body:t.body:mt(i)&&bn(i)?i:to(i)}function Vi(t,i,e){var o;i===void 0&&(i=[]),e===void 0&&(e=!0);const a=to(t),r=a===((o=t.ownerDocument)==null?void 0:o.body),d=lt(a);return r?i.concat(d,d.visualViewport||[],bn(a)?a:[],d.frameElement&&e?Vi(d.frameElement):[]):i.concat(a,Vi(a,[],e))}function no(t){const i=ut(t);let e=parseFloat(i.width)||0,o=parseFloat(i.height)||0;const a=mt(t),r=a?t.offsetWidth:e,d=a?t.offsetHeight:o,c=Jn(e)!==r||Jn(o)!==d;return c&&(e=r,o=d),{width:e,height:o,$:c}}function io(t){return Ot(t)?t:t.contextElement}function nn(t){const i=io(t);if(!mt(i))return Lt(1);const e=i.getBoundingClientRect(),{width:o,height:a,$:r}=no(i);let d=(r?Jn(e.width):e.width)/o,c=(r?Jn(e.height):e.height)/a;return(!d||!Number.isFinite(d))&&(d=1),(!c||!Number.isFinite(c))&&(c=1),{x:d,y:c}}const $l=Lt(0);function ro(t){const i=lt(t);return!Ri()||!i.visualViewport?$l:{x:i.visualViewport.offsetLeft,y:i.visualViewport.offsetTop}}function wl(t,i,e){return i===void 0&&(i=!1),!e||i&&e!==lt(t)?!1:i}function vn(t,i,e,o){i===void 0&&(i=!1),e===void 0&&(e=!1);const a=t.getBoundingClientRect(),r=io(t);let d=Lt(1);i&&(o?Ot(o)&&(d=nn(o)):d=nn(t));const c=wl(r,e,o)?ro(r):Lt(0);let p=(a.left+c.x)/d.x,s=(a.top+c.y)/d.y,h=a.width/d.x,f=a.height/d.y;if(r){const l=lt(r),u=o&&Ot(o)?lt(o):o;let _=l,g=_.frameElement;for(;g&&o&&u!==_;){const $=nn(g),v=g.getBoundingClientRect(),b=ut(g),y=v.left+(g.clientLeft+parseFloat(b.paddingLeft))*$.x,m=v.top+(g.clientTop+parseFloat(b.paddingTop))*$.y;p*=$.x,s*=$.y,h*=$.x,f*=$.y,p+=y,s+=m,_=lt(g),g=_.frameElement}}return ti({width:h,height:f,x:p,y:s})}const kl=[":popover-open",":modal"];function oo(t){return kl.some(i=>{try{return t.matches(i)}catch{return!1}})}function Cl(t){let{elements:i,rect:e,offsetParent:o,strategy:a}=t;const r=a==="fixed",d=Vt(o),c=i?oo(i.floating):!1;if(o===d||c&&r)return e;let p={scrollLeft:0,scrollTop:0},s=Lt(1);const h=Lt(0),f=mt(o);if((f||!f&&!r)&&((Rt(o)!=="body"||bn(d))&&(p=ii(o)),mt(o))){const l=vn(o);s=nn(o),h.x=l.x+o.clientLeft,h.y=l.y+o.clientTop}return{width:e.width*s.x,height:e.height*s.y,x:e.x*s.x-p.scrollLeft*s.x+h.x,y:e.y*s.y-p.scrollTop*s.y+h.y}}function Ol(t){return Array.from(t.getClientRects())}function ao(t){return vn(Vt(t)).left+ii(t).scrollLeft}function El(t){const i=Vt(t),e=ii(t),o=t.ownerDocument.body,a=en(i.scrollWidth,i.clientWidth,o.scrollWidth,o.clientWidth),r=en(i.scrollHeight,i.clientHeight,o.scrollHeight,o.clientHeight);let d=-e.scrollLeft+ao(t);const c=-e.scrollTop;return ut(o).direction==="rtl"&&(d+=en(i.clientWidth,o.clientWidth)-a),{width:a,height:r,x:d,y:c}}function Sl(t,i){const e=lt(t),o=Vt(t),a=e.visualViewport;let r=o.clientWidth,d=o.clientHeight,c=0,p=0;if(a){r=a.width,d=a.height;const s=Ri();(!s||s&&i==="fixed")&&(c=a.offsetLeft,p=a.offsetTop)}return{width:r,height:d,x:c,y:p}}function xl(t,i){const e=vn(t,!0,i==="fixed"),o=e.top+t.clientTop,a=e.left+t.clientLeft,r=mt(t)?nn(t):Lt(1),d=t.clientWidth*r.x,c=t.clientHeight*r.y,p=a*r.x,s=o*r.y;return{width:d,height:c,x:p,y:s}}function lo(t,i,e){let o;if(i==="viewport")o=Sl(t,e);else if(i==="document")o=El(Vt(t));else if(Ot(i))o=xl(i,e);else{const a=ro(t);o={...i,x:i.x-a.x,y:i.y-a.y}}return ti(o)}function so(t,i){const e=tn(t);return e===i||!Ot(e)||ni(e)?!1:ut(e).position==="fixed"||so(e,i)}function Tl(t,i){const e=i.get(t);if(e)return e;let o=Vi(t,[],!1).filter(c=>Ot(c)&&Rt(c)!=="body"),a=null;const r=ut(t).position==="fixed";let d=r?tn(t):t;for(;Ot(d)&&!ni(d);){const c=ut(d),p=Li(d);!p&&c.position==="fixed"&&(a=null),(r?!p&&!a:!p&&c.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||bn(d)&&!p&&so(t,d))?o=o.filter(h=>h!==d):a=c,d=tn(d)}return i.set(t,o),o}function Nl(t){let{element:i,boundary:e,rootBoundary:o,strategy:a}=t;const d=[...e==="clippingAncestors"?Tl(i,this._c):[].concat(e),o],c=d[0],p=d.reduce((s,h)=>{const f=lo(i,h,a);return s.top=en(f.top,s.top),s.right=Ii(f.right,s.right),s.bottom=Ii(f.bottom,s.bottom),s.left=en(f.left,s.left),s},lo(i,c,a));return{width:p.right-p.left,height:p.bottom-p.top,x:p.left,y:p.top}}function Al(t){const{width:i,height:e}=no(t);return{width:i,height:e}}function Dl(t,i,e){const o=mt(i),a=Vt(i),r=e==="fixed",d=vn(t,!0,r,i);let c={scrollLeft:0,scrollTop:0};const p=Lt(0);if(o||!o&&!r)if((Rt(i)!=="body"||bn(a))&&(c=ii(i)),o){const f=vn(i,!0,r,i);p.x=f.x+i.clientLeft,p.y=f.y+i.clientTop}else a&&(p.x=ao(a));const s=d.left+c.scrollLeft-p.x,h=d.top+c.scrollTop-p.y;return{x:s,y:h,width:d.width,height:d.height}}function co(t,i){return!mt(t)||ut(t).position==="fixed"?null:i?i(t):t.offsetParent}function uo(t,i){const e=lt(t);if(!mt(t)||oo(t))return e;let o=co(t,i);for(;o&&vl(o)&&ut(o).position==="static";)o=co(o,i);return o&&(Rt(o)==="html"||Rt(o)==="body"&&ut(o).position==="static"&&!Li(o))?e:o||_l(t)||e}const Ml=async function(t){const i=this.getOffsetParent||uo,e=this.getDimensions;return{reference:Dl(t.reference,await i(t.floating),t.strategy),floating:{x:0,y:0,...await e(t.floating)}}};function Bl(t){return ut(t).direction==="rtl"}const Il={convertOffsetParentRelativeRectToViewportRelativeRect:Cl,getDocumentElement:Vt,getClippingRect:Nl,getOffsetParent:uo,getElementRects:Ml,getClientRects:Ol,getDimensions:Al,getScale:nn,isElement:Ot,isRTL:Bl},Pl=pl,Ll=bl,Rl=ml,fo=(t,i,e)=>{const o=new Map,a={platform:Il,...e},r={...a.platform,_c:o};return fl(t,i,{...a,platform:r})},Vl={name:"IbPopover",props:{position:{type:[String,Array],default:"top"},alwaysVisible:{type:Boolean,default:!1},attachToBody:{type:Boolean,default:!1},attachTo:{type:String,default:null}},data(){return{parentNode:null,isVisible:!!this.alwaysVisible,activePosition:null}},mounted(){this.$nextTick(()=>{var t,i,e,o;this.parentNode=this.$el.parentNode,this.alwaysVisible||((t=this.parentNode)==null||t.addEventListener("focus",this.showPopover,!0),(i=this.parentNode)==null||i.addEventListener("blur",this.hidePopover,!0),(e=this.parentNode)==null||e.addEventListener("mouseover",this.showPopover),(o=this.parentNode)==null||o.addEventListener("mouseleave",this.hidePopover))})},methods:{showPopover(){this.isVisible||(this.isVisible=!0,fo(this.parentNode,this.$refs.popover,{middleware:[Pl({allowedPlacements:this.position})]}).then(({x:t,y:i,placement:e})=>{this.activePosition=e,Object.assign(this.$refs.popover.style,{left:`${t}px`,top:`${i}px`})}))},hidePopover(){this.isVisible=!1}},computed:{classes(){const t=["ib-popover"];return t.push(`ib-${this.activePosition}`),this.isVisible&&t.push("active"),t}},beforeUnmount(){!this.alwaysVisible&&this.parentNode&&(this.parentNode.removeEventListener("focus",this.showPopover,!0),this.parentNode.removeEventListener("blur",this.hidePopover,!0),this.parentNode.removeEventListener("mouseover",this.showPopover,!0),this.parentNode.removeEventListener("mouseleave",this.hidePopover,!0))}};function jl(t,i,e,o,a,r){return e.attachToBody||e.attachTo?(n.openBlock(),n.createBlock(n.Teleport,{key:0,to:e.attachToBody?"body":e.attachTo},[n.createVNode(n.Transition,null,{default:n.withCtx(()=>[n.withDirectives(n.createElementVNode("div",{ref:"popover",class:n.normalizeClass(r.classes)},[n.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[n.vShow,a.isVisible]])]),_:3})],8,["to"])):(n.openBlock(),n.createBlock(n.Transition,{key:1},{default:n.withCtx(()=>[n.withDirectives(n.createElementVNode("div",{ref:"popover",class:n.normalizeClass(r.classes)},[n.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[n.vShow,a.isVisible]])]),_:3}))}const ho=be(Vl,[["render",jl],["__scopeId","data-v-6da16abc"]]),Fl={name:"IbTooltip",props:{position:{type:String},title:{type:String},text:{type:String},alwaysVisible:{type:Boolean,default:!1}},computed:{classList(){const t=["ib-tooltip"];return this.title&&t.push("ib-tooltip-large"),t}},components:{IbPopover:ho}},ql={key:0};function Hl(t,i,e,o,a,r){const d=n.resolveComponent("ib-popover");return n.openBlock(),n.createBlock(d,{position:e.position,"always-visible":e.alwaysVisible,class:n.normalizeClass(r.classList)},{default:n.withCtx(()=>[e.title?(n.openBlock(),n.createElementBlock("b",ql,n.toDisplayString(e.title),1)):n.createCommentVNode("",!0),n.createElementVNode("p",null,n.toDisplayString(e.text),1)]),_:1},8,["position","always-visible","class"])}const _n=be(Fl,[["render",Hl],["__scopeId","data-v-996c106d"]]);class po{constructor(){this.tooltipInstance=null,this.tooltipContainer=null,this.uuid=null}getTooltipInstance(){return this.getTooltipInstance}getTooltipContainer(){return this.tooltipContainer}getId(){return this.uuid}generateUID(){this.uuid="tooltip_"+dt()}createTooltip(i,e,o){var r;if(!((r=e.text)!=null&&r.length))return;this.generateUID();const a=`
4
2
  position: absolute;
5
3
  top: 0px;
6
4
  left: 0px;
7
5
  opacity: 0;
8
- `;this.tooltipContainer=document.createElement("div"),this.tooltipContainer.setAttribute("style",a),document.body.appendChild(this.tooltipContainer),this.tooltipInstance=r.createApp(ln,{title:e.title,text:e.text,alwaysVisible:!0,for:this.uuid,class:this.getClassList(o)}),this.tooltipInstance.mount(this.tooltipContainer),setTimeout(()=>{var s;if((s=this.tooltipContainer)!=null&&s.firstChild){n.setAttribute("aria-describedby",this.uuid);const l=this.getPositionStyle(n,o);this.tooltipContainer.firstChild.setAttribute("style",l),this.tooltipContainer.setAttribute("style",{opacity:1})}},100)}destroyTooltip(n){var e,o;n==null||n.removeAttribute("aria-describedby"),this.uuid=null,(e=this.tooltipInstance)==null||e.unmount(),this.tooltipInstance=null,(o=this.tooltipContainer)==null||o.remove(),this.tooltipContainer=null}getPositionStyle(n,e){const{top:o,bottom:a,left:i,right:s,width:l,height:u}=n.getBoundingClientRect(),{width:d,height:p}=this.tooltipContainer.firstChild.getBoundingClientRect(),f=document.documentElement.scrollTop;let c=`
6
+ `;this.tooltipContainer=document.createElement("div"),this.tooltipContainer.setAttribute("style",a),document.body.appendChild(this.tooltipContainer),this.tooltipInstance=n.createApp(_n,{title:e.title,text:e.text,alwaysVisible:!0,for:this.uuid,class:this.getClassList(o)}),this.tooltipInstance.mount(this.tooltipContainer),setTimeout(()=>{var d;if((d=this.tooltipContainer)!=null&&d.firstChild){i.setAttribute("aria-describedby",this.uuid);const c=this.getPositionStyle(i,o);this.tooltipContainer.firstChild.setAttribute("style",c),this.tooltipContainer.setAttribute("style",{opacity:1})}},100)}destroyTooltip(i){var e,o;i==null||i.removeAttribute("aria-describedby"),this.uuid=null,(e=this.tooltipInstance)==null||e.unmount(),this.tooltipInstance=null,(o=this.tooltipContainer)==null||o.remove(),this.tooltipContainer=null}getPositionStyle(i,e){const{top:o,bottom:a,left:r,right:d,width:c,height:p}=i.getBoundingClientRect(),{width:s,height:h}=this.tooltipContainer.firstChild.getBoundingClientRect(),f=document.documentElement.scrollTop;let l=`
9
7
  bottom: auto!important;
10
8
  right: auto!important;
11
9
  transform: none!important;
12
- `;switch(e){case"bottomCenter":c=c+`left: ${i+l/2-d/2}px!important;
13
- top: ${a+f+5}px!important;`;break;case"bottomLeft":c=c+`left: ${s-d-l/2+14}px!important;
14
- top: ${a+f+5}px!important;`;break;case"bottomRight":c=c+`left: ${i+l/2-14}px!important;
15
- top: ${a+f+5}px!important;`;break;case"topLeft":c=c+`left: ${s-d-l/2+14}px!important;
16
- top: ${o-p+f-5}px!important;`;break;case"topRight":c=c+`left: ${i+l/2-14}px!important;
17
- top: ${o-p+f-5}px!important;`;break;case"leftTop":c=c+`left: ${i-d-5}px!important;
18
- top: ${a-p-u/2+f+12}px!important`;break;case"leftCenter":c=c+`left: ${i-d-5}px!important;
19
- top: ${a+f-p/2-u/2}px!important;`;break;case"leftBottom":c=c+`left: ${i-d-5}px!important;
20
- top: ${a+f-u/2-12}px!important;`;break;case"rightTop":c=c+`left: ${s+5}px!important;
21
- top: ${a-p-u/2+f+12}px!important`;break;case"rightCenter":c=c+`left: ${s+5}px!important;
22
- top: ${a+f-p/2-u/2}px!important;`;break;case"rightBottom":c=c+`left: ${s+5}px!important;
23
- top: ${a+f-u/2-12}px!important`;break;default:c=c+`left: ${i+l/2-d/2}px!important;
24
- top: ${o-p+f-5}px!important`;break}return c}getClassList(n){return n?wo[n]:wo.topCenter}}const Ht=new ko,pc=(t,n)=>{var a;Ht.getTooltipContainer()&&Ht.destroyTooltip();const e=Object.keys(n.modifiers)[0]||n.arg,o={title:((a=n.value)==null?void 0:a.title)||"",text:typeof n.value=="object"?n.value.text:n.value};Ht.createTooltip(t,o,e)},mc=(t,n)=>{const e=Ht.getId();if(n.getAttribute("aria-describedby")!==e)return;const o=Ht.getTooltipContainer();if(t.type==="blur"){n.contains(t.relatedTarget)||Ht.destroyTooltip(n);return}const a=n!==t.target&&!n.contains(t.target),i=o!==t.target&&!(o!=null&&o.contains(t.target));a&&i&&Ht.destroyTooltip(n)},Co=(t,n)=>{t.__tooltip_create=()=>pc(t,n),t.__tooltip_destroy=e=>mc(e,t),t.addEventListener("mouseenter",t.__tooltip_create),document.addEventListener("mousemove",t.__tooltip_destroy),t.addEventListener("focus",t.__tooltip_create),t.addEventListener("blur",t.__tooltip_destroy,!0)},Oo=t=>{Ht.destroyTooltip(t),t.removeEventListener("mouseenter",t.__tooltip_create),document.removeEventListener("mousemove",t.__tooltip_destroy),t.removeEventListener("focus",t.__tooltip_create),t.removeEventListener("blur",t.__tooltip_destroy,!0)},Wt={mounted(t,n){Co(t,n)},updated(t,n){Oo(t),Co(t,n)},beforeUnmount(t){Oo(t)}},mp="",gc={name:"IbSorting",props:{tooltipTitle:{type:String,default:""},hideSortingButton:{type:Boolean,default:!1},tooltipText:{type:String},tooltipPosition:{type:String},tooltipIconPosition:{type:String},tooltipIconSorting:{type:String},toggleTipTitle:{type:String},title:{type:String,default:""},sort:{type:String,default:null},view:{type:String,required:!0},disable:{type:Boolean,default:!1},tableName:{type:String,required:!0}},mounted(){this.$globalEvents.$on(`sorting:update:${this.tableName}`,t=>{this.$el.contains(t.$el)||(this.currentTypeSort=null)})},data(){return{isOpenToggleTip:!1,sortingTypes:hc,sortingTypesView:fc,currentTypeSort:this.sort}},methods:{clickHandler(){this.currentTypeSort?this.currentTypeSort===this.sortingTypes.TYPE_ASC?this.currentTypeSort=this.sortingTypes.TYPE_DESC:this.currentTypeSort=null:this.currentTypeSort=this.sortingTypes.TYPE_ASC,this.updateTypeSorting()},updateTypeSorting(){this.$globalEvents.$emit(`sorting:update:${this.tableName}`,this),this.$emit("update-sorting",this.currentTypeSort)}},computed:{iconType(){return this.currentTypeSort===this.sortingTypes.TYPE_ASC?"arrow-up":this.currentTypeSort===this.sortingTypes.TYPE_DESC?"arrow-down":this.view!==this.sortingTypesView.GRID_VIEW?"swap-vertical":null},sortingTooltipPosition(){return this.hasToggleTip?"bottomCenter":this.tooltipPosition},sortingTooltipContent(){var t;return this.hasToggleTip?lang("click_to_view_details",(t=this.langComponents)==null?void 0:t.COMPONENT_SYSTEM):this.tooltipContent},tooltipIconText(){var t,n,e;return this.currentTypeSort===this.sortingTypes.TYPE_ASC?lang("sort_descending",(t=this.langComponents)==null?void 0:t.COMPONENT_SELECT):this.currentTypeSort===this.sortingTypes.TYPE_DESC?lang("reset_sorting",(n=this.langComponents)==null?void 0:n.COMPONENT_SELECT):this.view!==this.sortingTypesView.GRID_VIEW?lang("sort_ascending",(e=this.langComponents)==null?void 0:e.COMPONENT_SELECT):""},tooltipContent(){return this.tooltipTitle.length?{title:this.tooltipTitle,text:this.tooltipText}:this.tooltipText},hasToggleTip(){return this.toggleTipTitle&&this.$slots.toggleTipBody&&this.$slots.toggleTipButtons}},directives:{Tooltip:Wt},components:{IbIcon:Le,IbIconButton:ut,IbToggleTip:mo}},yc={class:"sorting-wrapper"},bc=["name"],vc=["aria-label"];function _c(t,n,e,o,a,i){var p;const s=r.resolveComponent("ib-toggle-tip"),l=r.resolveComponent("ib-icon-button"),u=r.resolveComponent("ib-icon"),d=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock("div",yc,[e.view===a.sortingTypesView.TABLE_VIEW?(r.openBlock(),r.createElementBlock("div",{key:0,class:r.normalizeClass(["table-sorting-wrapper",{active:a.currentTypeSort,disabled:e.disable}])},[r.withDirectives((r.openBlock(),r.createElementBlock("button",{class:r.normalizeClass(["sorting-label",{"sorting-label-active":a.isOpenToggleTip&&i.hasToggleTip,"has-action":((p=e.tooltipText)==null?void 0:p.length)||i.hasToggleTip}]),type:"button",onClick:n[0]||(n[0]=f=>a.isOpenToggleTip=!a.isOpenToggleTip)},[r.createTextVNode(r.toDisplayString(e.title),1)],2)),[[d,i.sortingTooltipContent,i.sortingTooltipPosition]]),i.hasToggleTip?(r.openBlock(),r.createBlock(s,{key:0,position:"bottom-center","is-open":a.isOpenToggleTip,title:e.toggleTipTitle,onClose:n[1]||(n[1]=f=>a.isOpenToggleTip=!1)},{buttons:r.withCtx(()=>[r.renderSlot(t.$slots,"toggleTipButtons",{},void 0,!0)]),default:r.withCtx(()=>[r.renderSlot(t.$slots,"toggleTipBody",{},void 0,!0)]),_:3},8,["is-open","title"])):r.createCommentVNode("",!0),e.hideSortingButton?r.createCommentVNode("",!0):r.withDirectives((r.openBlock(),r.createBlock(l,{key:1,kind:"white",size:"s",onClick:i.clickHandler},{default:r.withCtx(()=>[r.createElementVNode("ion-icon",{name:i.iconType},null,8,bc)]),_:1},8,["onClick"])),[[d,i.tooltipIconText,e.tooltipIconPosition]])],2)):r.withDirectives((r.openBlock(),r.createElementBlock("button",{key:1,class:r.normalizeClass(["sorting-button",{active:a.currentTypeSort,disabled:e.disable}]),type:"button",onClick:n[2]||(n[2]=(...f)=>i.clickHandler&&i.clickHandler(...f)),"aria-label":e.sort},[r.createTextVNode(r.toDisplayString(e.title)+" ",1),i.iconType?(r.openBlock(),r.createBlock(u,{key:0,name:i.iconType},null,8,["name"])):r.createCommentVNode("",!0)],10,vc)),[[d,e.tooltipText,e.tooltipPosition]])])}const $c=_e(gc,[["render",_c],["__scopeId","data-v-0c1b5f2e"]]),gp="",wc={name:"IbBreadcrumbs",props:{items:{type:Array,default:()=>[]},tooltipTextContext:{type:String}},computed:{last(){return this.items.length?this.items.length-1:null},initContextMenu(){return this.items.length>4},setItemsContextMenu(){return this.items.slice(0,-3)}},components:{IbIcon:Le,IbIconButton:ut,IbDropdownItem:jr,IbDropdownList:or,IbTooltip:ln}},kc={"aria-label":"breadcrumb"},Cc={class:"breadcrumb"},Oc=["href"],Ec={key:1},Sc=["href"];function xc(t,n,e,o,a,i){const s=r.resolveComponent("router-link"),l=r.resolveComponent("ib-icon"),u=r.resolveComponent("ib-tooltip"),d=r.resolveComponent("ib-icon-button"),p=r.resolveComponent("ib-dropdown-item"),f=r.resolveComponent("ib-dropdown-list");return r.openBlock(),r.createElementBlock("nav",kc,[r.createElementVNode("ul",Cc,[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(e.items,(c,h)=>(r.openBlock(),r.createElementBlock("li",{class:r.normalizeClass(["breadcrumb-item",h===i.last?"active":""]),"aria-current":"page",key:h},[h!==i.last&&h>e.items.length-4||h===0?(r.openBlock(),r.createElementBlock(r.Fragment,{key:0},[c.url?(r.openBlock(),r.createElementBlock("a",{key:0,class:"ib-link",href:c.url},r.toDisplayString(c.title),9,Oc)):(r.openBlock(),r.createBlock(s,{key:1,class:"ib-link",to:c.to},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(c.title),1)]),_:2},1032,["to"]))],64)):r.createCommentVNode("",!0),h===i.last?(r.openBlock(),r.createElementBlock("p",Ec,r.toDisplayString(c.title),1)):r.createCommentVNode("",!0),i.initContextMenu&&h===e.items.length-4?(r.openBlock(),r.createBlock(f,{key:2,horizontal:"center"},{trigger:r.withCtx(()=>[r.createVNode(d,{kind:"ghost"},{default:r.withCtx(()=>[r.createVNode(l,{name:"ellipsis-horizontal-sharp"}),e.tooltipTextContext?(r.openBlock(),r.createBlock(u,{key:0,text:e.tooltipTextContext},null,8,["text"])):r.createCommentVNode("",!0)]),_:1})]),body:r.withCtx(()=>[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(i.setItemsContextMenu,(v,m)=>(r.openBlock(),r.createBlock(p,{key:m},{default:r.withCtx(()=>[r.createElementVNode("a",{class:"context-breadcrums",href:v.url},r.toDisplayString(v.title),9,Sc)]),_:2},1024))),128))]),_:2},1024)):r.createCommentVNode("",!0),h!==i.last&&h>e.items.length-5||h===0?(r.openBlock(),r.createBlock(l,{key:3,name:"chevron-forward-outline"})):r.createCommentVNode("",!0)],2))),128))])])}const Tc=_e(wc,[["render",xc],["__scopeId","data-v-3563a1d2"]]),yp="",Nc={name:"IbLabel",props:{for:{type:String},required:{type:Boolean,default:!1},infoText:{type:[String,Object],default:""},tooltipPosition:{type:String},disabled:{type:Boolean,default:!1}},mounted(){this.$globalEvents.$on(`label:disabled:${this.for}`,t=>{this.idDisabled=t})},data(){return{idDisabled:this.disabled}},watch:{disabled(t){this.idDisabled=t}},computed:{classes(){const t=["ib-label"];return this.infoText.length&&t.push("has-info-text"),this.idDisabled&&t.push("label-disabled"),t}},components:{IbIconButton:ut,IbIcon:Le},directives:{Tooltip:Wt}},Ac=["for"],Dc={key:0,class:"required"};function Pc(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-icon-button"),u=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock("label",{class:r.normalizeClass(i.classes),for:e.for},[e.required?(r.openBlock(),r.createElementBlock("span",Dc,"* ")):r.createCommentVNode("",!0),r.renderSlot(t.$slots,"default",{},void 0,!0),e.infoText.length||Object.keys(e.infoText).length?r.withDirectives((r.openBlock(),r.createBlock(l,{key:1,size:"xs",class:"info-button",kind:"ghost",type:"button"},{default:r.withCtx(()=>[r.createVNode(s,{name:"information-circle-outline"})]),_:1})),[[u,e.infoText,e.tooltipPosition]]):r.createCommentVNode("",!0)],10,Ac)}const kn=_e(Nc,[["render",Pc],["__scopeId","data-v-20191b6d"]]),Vr={text:"text",password:"password",email:"email",number:"number"},bp="",Ic={name:"IbInput",props:{type:{type:String,default:Vr.text,validator:t=>Object.keys(Vr).includes(t)},disabled:{type:Boolean,required:!1,default:!1},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},id:{type:[String],default(){return pt()}},debounce:{type:[Number,String]},showIcon:{type:Boolean,default:!1},showClearButton:{type:Boolean,default:!0},clearButtonMessage:{type:String,default:""},settingsButtonMessage:{type:String,default:""},showPasswordMessage:{type:String,default:""},hidePasswordMessage:{type:String,default:""},value:{type:[String,Number],default:""},modelValue:{type:[String,Number]},settingsVerticalPosition:{type:String,default:rr.bottom},settingsHorizontalPosition:{type:String,default:wn.right},readonly:{type:Boolean,default:!1},autocomplete:{type:String},isSuccess:{type:Boolean,default:!1},hideNumberActions:{type:Boolean,default:!1},decrementButtonMessage:{type:String,default:"Decrement"},incrementButtonMessage:{type:String,default:"Increment"},step:{type:Number,default:1},min:{type:Number,default:0},max:{type:Number,default:1/0}},data(){return{actualValue:this.modelValue||this.value,showPassword:!1}},mounted(){setTimeout(()=>{this.$globalEvents.$emit(`label:disabled:${this.id}`,this.disabled)},10)},methods:{toggleShowPassword(){this.showPassword=!this.showPassword},clearInput(){this.actualValue="",this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("clear")},onBlur(){this.$emit("blur",this.actualValue)},onFocus(){this.$emit("focus",this.actualValue)},onInput(){this.debounce?this.delayedInput(this.actualValue):(this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue))},decrement(){this.actualValue>this.min&&(this.actualValue=+this.actualValue-this.step),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},increment(){this.actualValue<this.max&&(this.actualValue=+this.actualValue+this.step),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},delayedInput(t){this.timer&&(clearTimeout(this.timer),this.timer=null),this.timer=setTimeout(()=>{this.$emit("update:modelValue",t),this.$emit("input",t)},this.debounce)},focus(){this.$refs.field.focus()}},computed:{hasSettings(){return!!this.$slots.settings},hasValue(){var t;return(t=this.actualValue)==null?void 0:t.toString().length},classes(){const t=["ib-input"];return this.hasErrorState&&t.push("ib-error"),this.showIcon&&t.push("ib-input-has-icon"),t},attrs(){let t=Pr({...this.$attrs},["onInput","onBlur"]);return t.type=this.type===Vr.password?this.showPassword?"text":"password":this.type,t},hasErrorState(){return this.error||this.errorMessage.length}},watch:{value(t){this.actualValue=t},modelValue(t){this.actualValue=t},disabled(t){this.$globalEvents.$emit(`label:disabled:${this.id}`,t)}},emits:["input","blur","focus","clear","update:modelValue",`label:disabled:${globalThis==null?void 0:globalThis.id}`],components:{IbAlert:Ft,IbIconButton:ut,IbIcon:Le,IbDropdown:ir},directives:{Tooltip:Wt},inheritAttrs:!1},Bc=["aria-invalid","readonly","disabled","id","autocomplete","min","max","step"],Mc={key:3,class:"number-button-group"},Lc={class:"divider"},Rc={class:"settings-wrapper"};function jc(t,n,e,o,a,i){const s=r.resolveComponent("ib-alert"),l=r.resolveComponent("ib-icon"),u=r.resolveComponent("ib-icon-button"),d=r.resolveComponent("ib-dropdown"),p=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock("div",null,[e.errorMessage?(r.openBlock(),r.createBlock(s,{key:0},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.createElementVNode("div",{class:r.normalizeClass(["ib-input-wrapper",{"has-settings":i.hasSettings,success:e.isSuccess,"numbers-type":e.type==="number"&&!e.hideNumberActions}])},[e.showIcon?(r.openBlock(),r.createBlock(l,{key:0,class:"icon-search",name:"search-outline"})):r.createCommentVNode("",!0),r.withDirectives(r.createElementVNode("input",r.mergeProps(i.attrs,{"onUpdate:modelValue":n[0]||(n[0]=f=>a.actualValue=f),ref:"field","aria-invalid":!!i.hasErrorState,readonly:e.readonly,disabled:e.disabled,id:e.id,autocomplete:e.autocomplete,class:i.classes,min:e.min,max:e.max,step:e.step,onInput:n[1]||(n[1]=f=>i.onInput(f)),onBlur:n[2]||(n[2]=f=>i.onBlur(f)),onFocus:n[3]||(n[3]=f=>i.onFocus(f))}),null,16,Bc),[[r.vModelDynamic,a.actualValue,void 0,{trim:!0}]]),e.type!=="password"&&e.showClearButton?r.withDirectives((r.openBlock(),r.createBlock(u,{key:1,kind:"ghost",class:"button-clear",disabled:e.readonly||e.disabled,"help-text":e.clearButtonMessage,"prevent-default":"",type:"button",onClick:i.clearInput,onKeypress:r.withKeys(i.clearInput,["enter"])},{default:r.withCtx(()=>[r.createVNode(l,{name:"close-outline"})]),_:1},8,["disabled","help-text","onClick","onKeypress"])),[[r.vShow,i.hasValue]]):r.createCommentVNode("",!0),e.isSuccess?(r.openBlock(),r.createBlock(l,{key:2,class:"succes-checkmark",name:"checkmark-circle"})):r.createCommentVNode("",!0),e.type==="number"&&!e.hideNumberActions?(r.openBlock(),r.createElementBlock("div",Mc,[r.withDirectives(r.createElementVNode("div",Lc,null,512),[[r.vShow,i.hasValue]]),r.withDirectives((r.openBlock(),r.createBlock(u,{kind:"ghost",class:"button-decrement",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Decrement value",onBlur:i.onBlur,onClick:i.decrement,onKeypress:r.withKeys(i.decrement,["enter"])},{default:r.withCtx(()=>[r.createVNode(l,{name:"remove-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[p,e.decrementButtonMessage]]),r.withDirectives((r.openBlock(),r.createBlock(u,{kind:"ghost",class:"button-increment",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Increment value",onBlur:i.onBlur,onClick:i.increment,onKeypress:r.withKeys(i.increment,["enter"])},{default:r.withCtx(()=>[r.createVNode(l,{name:"add-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[p,e.incrementButtonMessage]])])):r.createCommentVNode("",!0),e.type==="password"?r.withDirectives((r.openBlock(),r.createBlock(u,{key:4,kind:"ghost",class:"toggle-password","prevent-default":"",type:"button",disabled:e.disabled,"help-text":a.showPassword?e.hidePasswordMessage:e.showPasswordMessage,onClick:r.withModifiers(i.toggleShowPassword,["prevent"])},{default:r.withCtx(()=>[r.createVNode(l,{name:a.showPassword?"eye-off-outline":"eye-outline"},null,8,["name"])]),_:1},8,["disabled","help-text","onClick"])),[[r.vShow,i.hasValue]]):r.createCommentVNode("",!0),i.hasSettings?(r.openBlock(),r.createBlock(d,{key:5,class:"settings-dropdown-wrapper",horizontal:e.settingsHorizontalPosition,vertical:e.settingsVerticalPosition},{trigger:r.withCtx(()=>[r.createVNode(u,{"prevent-default":"","help-text":e.settingsButtonMessage,class:"options-trigger",kind:"ghost"},{default:r.withCtx(()=>[r.createVNode(l,{name:"options"})]),_:1},8,["help-text"])]),body:r.withCtx(()=>[r.createElementVNode("div",Rc,[r.renderSlot(t.$slots,"settings",{},void 0,!0)])]),_:3},8,["horizontal","vertical"])):r.createCommentVNode("",!0)],2)])}const qr=_e(Ic,[["render",jc],["__scopeId","data-v-3b442fb6"]]),vp="",Vc={name:"IbCheckbox",model:{event:"input"},props:{label:String,error:{type:[Boolean,null],default:!1},name:String,id:{type:String,default(){return pt()}},value:{type:[String,Number]},modelValue:{type:[Boolean,String]},isChecked:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},disableFocus:{type:Boolean,default:!1},required:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"}},watch:{isChecked(t){this.checked=t},modelValue(t){this.$emit("update:modelValue",this.modelValue),this.checked=t==="0"?!1:!!t}},data(){return{checked:this.modelValue?this.modelValue==="0"?!1:!!this.modelValue:this.isChecked}},methods:{onChange(t){this.disabled||this.readonly||(this.checked=!this.checked,this.$emit("update:modelValue",this.checked),this.$emit("input",this.checked))}},computed:{classes(){return{"ib-checkbox":!0,"ib-has-error":this.error,"ib-checkbox-filled":this.checked,"ib-checkbox-disabled":this.disabled,"ib-checkbox-readonly":this.readonly,"ib-checkbox-indeterminate":this.indeterminate}},indeterminate(){return this.isChecked===null},attrs(){const t={...Pr({...this.$attrs})};return delete t.class,t.class=this.classes,t}},components:{IbIcon:Le},inheritAttrs:!1},qc=["for","tabindex","aria-checked"],Fc=["name","id","value","disabled","required"],Hc=["name","disabled","required"],zc={class:"ib-checkbox-body"},Uc={key:0,class:"required"},Kc={class:"ib-checkbox-input"},Gc={key:1,class:"ib-checkbox-label"},Wc={key:0,class:"required"};function Yc(t,n,e,o,a,i){var l;const s=r.resolveComponent("ib-icon");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-checkbox-wrapper",this.$attrs.class])},[r.createElementVNode("label",r.mergeProps(i.attrs,{role:"checkbox",for:e.id,tabindex:e.disabled|e.disableFocus?-1:0,"aria-checked":!!a.checked,onClick:n[2]||(n[2]=r.withModifiers((...u)=>i.onChange&&i.onChange(...u),["prevent","stop"])),onKeypress:n[3]||(n[3]=r.withModifiers((...u)=>i.onChange&&i.onChange(...u),["prevent"]))}),[r.withDirectives(r.createElementVNode("input",{tabindex:"-1",type:"checkbox",name:e.name,id:e.id,value:e.value??1,disabled:e.disabled,required:e.required,"onUpdate:modelValue":n[0]||(n[0]=u=>a.checked=u),onClick:n[1]||(n[1]=(...u)=>i.onChange&&i.onChange(...u))},null,8,Fc),[[r.vModelCheckbox,a.checked]]),!e.value&&!a.checked?(r.openBlock(),r.createElementBlock("input",{key:0,value:"0",type:"hidden",name:e.name,disabled:e.disabled,required:e.required},null,8,Hc)):r.createCommentVNode("",!0),r.createElementVNode("div",zc,[e.labelPosition==="left"&&e.label.length?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass(["ib-checkbox-label",{"ib-checkbox-label-left":e.labelPosition==="left"}])},[e.required?(r.openBlock(),r.createElementBlock("span",Uc,"*")):r.createCommentVNode("",!0),r.createTextVNode(" "+r.toDisplayString(e.label),1)],2)):r.createCommentVNode("",!0),r.createElementVNode("span",Kc,[r.withDirectives(r.createVNode(s,{name:"checkmark-sharp"},null,512),[[r.vShow,a.checked&&!i.indeterminate]]),r.withDirectives(r.createVNode(s,{class:r.normalizeClass("checkbox-undeterminate-icon"),name:"remove-sharp"},null,512),[[r.vShow,i.indeterminate]])]),e.labelPosition==="right"&&((l=e.label)!=null&&l.length)?(r.openBlock(),r.createElementBlock("span",Gc,[e.required?(r.openBlock(),r.createElementBlock("span",Wc,"*")):r.createCommentVNode("",!0),r.createTextVNode(" "+r.toDisplayString(e.label),1)])):r.createCommentVNode("",!0)])],16,qc)],2)}const Fr=_e(Vc,[["render",Yc],["__scopeId","data-v-83ac97df"]]),_p="",Zc={name:"IbToggle",model:{prop:"isChecked",event:"input"},props:{isChecked:{type:Boolean,required:!1},id:{type:String,default:()=>pt()},disabled:{type:Boolean,default:!1},name:{type:String,default:"active"},label:{type:String,default:""},error:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"},helpMessage:{type:String,default:""},helpMessageOff:{type:String,default:""}},watch:{isChecked(t){this.checked=t}},data(){return{checked:this.isChecked}},methods:{onChange(){this.disabled||(this.checked=!this.checked,this.$emit("input",this.checked))}},computed:{classes(){return{"ib-toggle-container":!0,"has-error":this.error,"toggle-on":this.checked,"toggle-disabled":this.disabled,"label-position-left":this.labelPosition==="left"}}},components:{IbIcon:Le,IbTooltip:ln}},Jc=["aria-checked","tabindex"],Xc={class:"toggle-wrapper",ref:"wrapper"},Qc={class:"toggle",ref:"toggle"},ed=["name","checked","id","disabled"],td=r.createElementVNode("span",{class:"toggle-slider round"},null,-1),nd={key:0,class:"toggle-label"};function rd(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-tooltip");return r.openBlock(),r.createElementBlock("label",{role:"switch","aria-checked":a.checked,tabindex:e.disabled?-1:0,class:r.normalizeClass(i.classes),onKeypress:[n[2]||(n[2]=r.withKeys(r.withModifiers((...u)=>i.onChange&&i.onChange(...u),["prevent"]),["space"])),n[3]||(n[3]=r.withKeys(r.withModifiers((...u)=>i.onChange&&i.onChange(...u),["prevent"]),["enter"]))]},[r.createElementVNode("div",Xc,[r.createElementVNode("div",Qc,[r.createElementVNode("input",{tabindex:"-1",type:"checkbox",value:"1",name:e.name,checked:a.checked,id:e.id,disabled:e.disabled,onClick:n[0]||(n[0]=(...u)=>i.onChange&&i.onChange(...u)),onInput:n[1]||(n[1]=r.withModifiers(()=>{},["stop"]))},null,40,ed),td,r.createVNode(s,{class:"checked-icon",name:"checkmark"}),r.createVNode(s,{class:"unchecked-icon",name:"close"})],512)],512),e.label.length?(r.openBlock(),r.createElementBlock("span",nd,r.toDisplayString(e.label),1)):r.createCommentVNode("",!0),e.helpMessage.length?(r.openBlock(),r.createBlock(l,{key:1,text:a.checked?e.helpMessage:e.helpMessageOff.length?e.helpMessageOff:e.helpMessage},null,8,["text"])):r.createCommentVNode("",!0)],42,Jc)}const Eo=_e(Zc,[["render",rd]]);function So(t){return t.scrollHeight>t.clientHeight}const $p="",id={name:"select-option",props:{option:{type:Object},name:String,parentAutoCheck:{type:Boolean,default:!1},isMultiple:{type:Boolean,default:!0},uid:{type:String,default:""},onlyEndNodes:{type:Boolean,default:!1},htmlTitle:{type:Boolean,default:!1},showInput:{type:Boolean,default:!0},isBookmarkable:{type:Boolean,default:!1},isBookmarked:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabeticStyle:{type:Boolean,default:!1}},mounted(){this.option.hasOwnProperty("children")&&this.option.children&&this.checkParent(),this.option.showTooltipByDefault&&(this.showTooltip=!0)},updated(){this.$nextTick(()=>{this.option.showTooltipByDefault?this.showTooltip=!0:So(this.$el.querySelector(".option-label"))&&(this.showTooltip=!0)})},data(){return{showTooltip:!1,generateUID:pt}},methods:{onKeydown(t){t.keyCode===go&&(t.preventDefault(),this.onChange()),this.hasVisibleChildren&&(t.keyCode===ys&&(this.option.isChildrenVisible=!0),t.keyCode===gs&&(this.option.isChildrenVisible=!1))},onChange(){var t,n;!this.isMultiple&&!this.isChecked(this.option)&&((t=this.$refs.component)==null||t.onChange()),this.isMultiple&&((n=this.$refs.component)==null||n.onChange())},toggle(t,n=!0){this.check(this.option,t,!0,n)},check(t,n,e,o){if(!this.isMultiple&&this.hasVisibleChildren){this.toggleChildrenVisibility();return}this.$emit("check",t,n,e),o&&t.children&&t.children.forEach(a=>{this.check(a,n,!1,!0)})},toggleChildrenVisibility(){this.option.isChildrenVisible=!this.option.isChildrenVisible},checkChildren(t,n,e){e&&this.isMultiple&&this.$nextTick(()=>{this.checkParent()}),this.$emit("check",t,n,!1)},checkParent(){const t=this.option.children.filter(e=>e.checked).length,n=t>=this.option.children.length;(!this.option.checked&&n&&this.parentAutoCheck||this.option.checked&&!n)&&this.toggle(!this.option.checked,!1)},calculateChildren(t,n,e=!1){let o=0;return t.children&&t.children.forEach(a=>{(!n||n(a))&&o++,e&&(o+=this.calculateChildren(a,n,e))}),o},isChecked(t){if(this.hasChildren){if(this.childrenSelectedCount===this.countOfAllChildren)return!0;if(this.childrenSelectedCount>0&&this.countOfAllChildren>this.childrenSelectedCount)return null}return t.checked?!0:t.isIndeterminate?null:!1}},computed:{component(){return this.isMultiple&&this.isToggle?Eo:Fr},hasChildren(){return!!(this.option.children&&this.option.children.length)},hasVisibleChildren(){return this.calculateChildren(this.option,t=>t.visible)},iconName(){return this.option.isChildrenVisible?"chevron-down":"chevron-forward"},id(){return this.uid+"_"+this.option.id},actualName(){return this.onlyEndNodes&&this.option.children&&this.option.children.length?"":this.name},childrenSelectedCount(){return this.calculateChildren(this.option,t=>t.checked,!0)},countOfAllChildren(){return this.calculateChildren(this.option,()=>!0,!0)}},components:{IbIcon:Le,List:Rr,IbIconButton:ut},directives:{Tooltip:Wt}},od=["aria-selected","aria-label","id"],ad={key:0,class:"bookmarkable-option-content"},ld={class:"option-label"},sd={key:1,class:"option-label"},cd=["innerHTML"],dd=["innerHTML"],ud={key:2,class:"option-label"};function fd(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon"),l=r.resolveComponent("ib-icon-button"),u=r.resolveComponent("select-option"),d=r.resolveComponent("list"),p=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock("li",null,[r.withDirectives((r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["tree-select-option",{"tree-select-option-checked":i.isChecked(e.option),"tree-select-option-margin":i.hasVisibleChildren,active:e.option.isChildrenVisible,"is-multiple":e.isMultiple,"is-not-multiple":!e.isMultiple,"has-icon":e.option.icon,"tree-select-option-toggle":this.isToggle&&this.isMultiple,"alphabetic-option":e.alphabeticStyle}]),tabindex:"0",role:"option","aria-selected":i.isChecked(e.option),"aria-label":e.option.title,id:"option-"+i.id,onKeydown:n[3]||(n[3]=r.withModifiers((...f)=>i.onKeydown&&i.onKeydown(...f),["self"])),onFocus:n[4]||(n[4]=f=>t.$emit("onFocus",`option-${i.id}`))},[r.withDirectives(r.createVNode(l,{"disabled-focus":!0,kind:"ghost",class:"toggle-children",onClick:i.toggleChildrenVisibility},{default:r.withCtx(()=>[r.createVNode(s,{name:i.iconName},null,8,["name"])]),_:1},8,["onClick"]),[[r.vShow,i.hasVisibleChildren]]),r.createElementVNode("div",{onClick:n[1]||(n[1]=r.withModifiers((...f)=>i.onChange&&i.onChange(...f),["prevent"])),class:r.normalizeClass({disabled:e.option.isDisabled,"tree-select-option-label":!0,"tree-select-option-has-children":i.hasVisibleChildren,active:!e.showInput&&e.option.checked})},[r.withDirectives((r.openBlock(),r.createBlock(r.resolveDynamicComponent(i.component),{ref:"component",tabindex:"-1","disable-focus":"","aria-label":e.option.title,name:i.actualName,value:e.option.id,id:"input"+i.id+a.generateUID(),"is-checked":i.isChecked(e.option),disabled:e.option.isDisabled,readonly:e.option.readonly,autocomplete:"off",autocorrect:"off",autocapitalize:"off",spellcheck:"false",onInput:i.toggle},null,40,["aria-label","name","value","id","is-checked","disabled","readonly","onInput"])),[[r.vShow,e.showInput]]),e.isBookmarkable?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass("bookmarkable-option-title "+(e.isBookmarked?"bookmarked":""))},[i.hasChildren?(r.openBlock(),r.createElementBlock("span",sd,r.toDisplayString(e.option.title),1)):(r.openBlock(),r.createElementBlock("div",ad,[r.createElementVNode("span",ld,r.toDisplayString(e.option.title),1),r.withDirectives((r.openBlock(),r.createBlock(l,{onClick:n[0]||(n[0]=r.withModifiers(f=>t.$emit("toggle-bookmark",e.option),["stop","prevent"])),kind:"ghost"},{default:r.withCtx(()=>[r.createVNode(s,{name:e.isBookmarked?"star":"star-outline"},null,8,["name"])]),_:1})),[[p,t.lang(e.isBookmarked?"unpin":"pin_to_top","select")]])]))],2)):e.htmlTitle?(r.openBlock(),r.createElementBlock(r.Fragment,{key:1},[i.hasChildren?(r.openBlock(),r.createElementBlock("span",{key:1,class:"option-label",innerHTML:e.option.title},null,8,dd)):(r.openBlock(),r.createElementBlock("span",{key:0,class:"option-label",innerHTML:e.option.title},null,8,cd))],64)):(r.openBlock(),r.createElementBlock("span",ud,[e.option.icon?(r.openBlock(),r.createBlock(s,{key:0,name:e.option.icon},null,8,["name"])):r.createCommentVNode("",!0),r.createTextVNode(" "+r.toDisplayString(e.option.title),1)]))],2),i.hasChildren?r.withDirectives((r.openBlock(),r.createBlock(d,{key:0},{default:r.withCtx(()=>[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(e.option.children,f=>r.withDirectives((r.openBlock(),r.createBlock(u,{key:f.value,option:f,name:e.name,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"show-input":e.showInput,onCheck:i.checkChildren,onToggleBookmark:n[2]||(n[2]=c=>t.$emit("toggle-bookmark",c)),uid:e.uid,"is-bookmarkable":e.isBookmarkable},null,8,["option","name","parent-auto-check","is-multiple","show-input","onCheck","uid","is-bookmarkable"])),[[r.vShow,f.visible]])),128))]),_:1},512)),[[r.vShow,i.hasVisibleChildren&&e.option.isChildrenVisible]]):r.createCommentVNode("",!0)],42,od)),[[p,a.showTooltip?e.option.isDisabled?e.option.disableTooltip:e.option.title:""]])])}const hd=_e(id,[["render",fd]]);var je=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Cn(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var xo={exports:{}};/*!***************************************************
10
+ `;switch(e){case"bottomCenter":l=l+`left: ${r+c/2-s/2}px!important;
11
+ top: ${a+f+5}px!important;`;break;case"bottomLeft":l=l+`left: ${d-s-c/2+14}px!important;
12
+ top: ${a+f+5}px!important;`;break;case"bottomRight":l=l+`left: ${r+c/2-14}px!important;
13
+ top: ${a+f+5}px!important;`;break;case"topLeft":l=l+`left: ${d-s-c/2+14}px!important;
14
+ top: ${o-h+f-5}px!important;`;break;case"topRight":l=l+`left: ${r+c/2-14}px!important;
15
+ top: ${o-h+f-5}px!important;`;break;case"leftTop":l=l+`left: ${r-s-5}px!important;
16
+ top: ${a-h-p/2+f+12}px!important`;break;case"leftCenter":l=l+`left: ${r-s-5}px!important;
17
+ top: ${a+f-h/2-p/2}px!important;`;break;case"leftBottom":l=l+`left: ${r-s-5}px!important;
18
+ top: ${a+f-p/2-12}px!important;`;break;case"rightTop":l=l+`left: ${d+5}px!important;
19
+ top: ${a-h-p/2+f+12}px!important`;break;case"rightCenter":l=l+`left: ${d+5}px!important;
20
+ top: ${a+f-h/2-p/2}px!important;`;break;case"rightBottom":l=l+`left: ${d+5}px!important;
21
+ top: ${a+f-p/2-12}px!important`;break;default:l=l+`left: ${r+c/2-s/2}px!important;
22
+ top: ${o-h+f-5}px!important`;break}return l}getClassList(i){return i?zr[i]:zr.topCenter}}const Et=new po,mo=(t,i)=>{var a;Et.getTooltipContainer()&&Et.destroyTooltip();const e=Object.keys(i.modifiers)[0]||i.arg,o={title:((a=i.value)==null?void 0:a.title)||"",text:typeof i.value=="object"?i.value.text:i.value};Et.createTooltip(t,o,e)},zl=(t,i)=>{const e=Et.getId();if(i.getAttribute("aria-describedby")!==e)return;const o=Et.getTooltipContainer();if(t.type==="blur"){i.contains(t.relatedTarget)||Et.destroyTooltip(i);return}const a=i!==t.target&&!i.contains(t.target),r=o!==t.target&&!(o!=null&&o.contains(t.target));a&&r&&Et.destroyTooltip(i)},Ul=(t,i)=>{Et.destroyTooltip(t),t.__tooltip_scroll_timeout&&clearTimeout(t.__tooltip_scroll_timeout),t.__tooltip_scroll_timeout=setTimeout(()=>{const e=t.getBoundingClientRect(),o=t.__tooltip_last_mouse_event;if(o){const{clientX:a,clientY:r}=o;a>=e.left&&a<=e.right&&r>=e.top&&r<=e.bottom&&mo(t,i)}},250)},Kl=t=>i=>{t.__tooltip_last_mouse_event=i},go=(t,i)=>{t.__tooltip_create=()=>mo(t,i),t.__tooltip_destroy=e=>zl(e,t),t.__tooltip_scroll=()=>Ul(t,i),t.__tooltip_track_mouse=Kl(t),t.addEventListener("mouseenter",t.__tooltip_create),document.addEventListener("mousemove",t.__tooltip_destroy),document.addEventListener("mousemove",t.__tooltip_track_mouse),document.addEventListener("scroll",t.__tooltip_scroll,!0),t.addEventListener("focus",t.__tooltip_create),t.addEventListener("blur",t.__tooltip_destroy,!0)},yo=t=>{t.__tooltip_scroll_timeout&&clearTimeout(t.__tooltip_scroll_timeout),Et.destroyTooltip(t),t.removeEventListener("mouseenter",t.__tooltip_create),document.removeEventListener("mousemove",t.__tooltip_destroy),document.removeEventListener("mousemove",t.__tooltip_track_mouse),document.removeEventListener("scroll",t.__tooltip_scroll,!0),t.removeEventListener("focus",t.__tooltip_create),t.removeEventListener("blur",t.__tooltip_destroy,!0),delete t.__tooltip_last_mouse_event,delete t.__tooltip_scroll_timeout},St={mounted(t,i){go(t,i)},updated(t,i){yo(t),go(t,i)},beforeUnmount(t){yo(t)}},bo={[zt.primary]:zt.primary,[zt.tertiary]:zt.tertiary,[zt.ghost]:zt.ghost,white:"white"},vo={xs:"xs",s:"s",m:"m"},Gl={name:"IbIconButton",props:{kind:{type:String,default:bo.primary,validator:t=>Object.keys(bo).includes(t)},size:{type:String,default:vo.s,validator:t=>Object.keys(vo).includes(t)},rounded:{type:Boolean,required:!1,default:!1},disabled:{type:Boolean,required:!1,default:!1},href:{type:String,default:""},to:{type:[String,Object],default:""},helpText:{type:String,default:""},disabledFocus:{type:Boolean,default:!1},preventDefault:{type:Boolean,default:!1}},data(){return{tooltipVisible:!1}},computed:{classes(){const t=["ib-icon-button"];return t.push(`ib-icon-btn-${this.kind}`),t.push(`ib-icon-btn-${this.size}`),this.rounded&&t.push("ib-icon-btn-rounded"),this.disabled&&t.push("ib-icon-btn-disabled"),t},attrs(){const t={...this.$attrs};return t.class=[...this.classes,t.class],this.disabledFocus&&(t.tabindex="-1"),t}},components:{IbButton:Hr},directives:{Tooltip:St},inheritAttrs:!1};function Wl(t,i,e,o,a,r){const d=n.resolveComponent("ib-button"),c=n.resolveDirective("tooltip");return n.withDirectives((n.openBlock(),n.createBlock(d,n.mergeProps(r.attrs,{href:e.href,to:e.to,kind:e.kind,disabled:e.disabled,"prevent-default":e.preventDefault}),{default:n.withCtx(()=>[n.renderSlot(t.$slots,"default")]),_:3},16,["href","to","kind","disabled","prevent-default"])),[[c,e.helpText]])}const Xe=be(Gl,[["render",Wl]]),ri={alert:"alert",error:"error",warning:"warning",info:"info",success:"success"},Yl={name:"IbAlert",props:{type:{type:String,default:ri.alert,validator:t=>Object.keys(ri).includes(t)},showIcon:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!1},title:{type:String,default:""},additionalTitleText:{type:String,default:""}},mounted(){this.checkHeight(),this.$refs.content&&(this.contentObserver=new ResizeObserver(()=>{this.checkHeight()}),this.contentObserver.observe(this.$refs.content)),window.addEventListener("resize",()=>this.checkHeight())},data(){return{contentObserver:null}},methods:{close(){this.$emit("close")},checkHeight(){var e;if(!this.$refs.content)return;const t=getComputedStyle(this.$refs.content),i=(e=this.$refs.content)==null?void 0:e.parentElement.offsetWidth;!i||!t||(parseInt(t.width)<=i&&this.$refs.content.classList.remove("large"),parseInt(t.height)>37&&this.showIcon&&(this.title.length?this.$refs.content.classList.add("large"):this.$refs.content.classList.add("medium")))}},computed:{classes(){const t=["ib-alert"];return t.push(`ib-alert-${this.type}`),this.title.length&&t.push("has-title"),this.showIcon&&t.push("has-icon"),this.showCloseButton&&t.push("has-close-button"),this.$slots.link&&t.push("has-link"),t},iconName(){return this.type===ri.info?"information-circle-outline":this.type===ri.success?"checkmark-circle-outline":"alert-circle-outline"}},beforeUnmount(){var t;(t=this.contentObserver)==null||t.disconnect(),window.removeEventListener("resize",()=>this.checkHeight())},components:{IbIcon:Le,IbIconButton:Xe}},Zl={ref:"content",class:"content"},Jl={class:"content-head"},Xl={key:1,class:"ib-alert-title"},Ql={class:"text-content"},es={class:"link"};function ts(t,i,e,o,a,r){var p;const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-icon-button");return n.openBlock(),n.createElementBlock("div",{role:"alert",class:n.normalizeClass(r.classes)},[n.createElementVNode("div",Zl,[n.createElementVNode("span",Jl,[e.showIcon?(n.openBlock(),n.createBlock(d,{key:0,class:"ib-alert-icon",name:r.iconName},null,8,["name"])):n.createCommentVNode("",!0),(p=e.title)!=null&&p.length?(n.openBlock(),n.createElementBlock("b",Xl,n.toDisplayString(e.title),1)):n.createCommentVNode("",!0),n.renderSlot(t.$slots,"title",{},void 0,!0)]),n.createElementVNode("span",Ql,[n.renderSlot(t.$slots,"default",{},void 0,!0)]),n.createElementVNode("div",es,[n.renderSlot(t.$slots,"link",{},void 0,!0)])],512),e.showCloseButton?(n.openBlock(),n.createBlock(c,{key:0,class:"close-button",kind:"ghost","prevent-default":!0,onClick:r.close},{default:n.withCtx(()=>[n.createVNode(d,{class:"close-button-icon",name:"close-outline"})]),_:1},8,["onClick"])):n.createCommentVNode("",!0)],2)}const jt=be(Yl,[["render",ts],["__scopeId","data-v-017f43e9"]]),ns={M:"m"},is={CIRCLE:"circle"},rs={name:"IbAvatar",props:{firstName:{type:String,default:""},lastName:{type:String,default:""},src:{type:String,default:""},userAvatar:{type:Boolean,default:!1},size:{type:String,default:ns.M},type:{type:String,default:is.CIRCLE}},computed:{classList(){return["avatar",`avatar-size-${this.size}`,`avatar-type-${this.type}`]},validateName(){var t,i;return((t=this.firstName)==null?void 0:t.trim().length)!==0&&((i=this.lastName)==null?void 0:i.trim().length)!==0},initials(){return this.firstName[0].toUpperCase()+this.lastName[0].toUpperCase()}},components:{IbIcon:Le}},os=["src","alt"];function as(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon");return e.src&&!e.userAvatar?(n.openBlock(),n.createElementBlock("img",{key:0,class:n.normalizeClass(r.classList),src:e.src,alt:e.firstName+""+e.lastName},null,10,os)):e.src&&e.userAvatar?(n.openBlock(),n.createElementBlock("div",{key:1,class:n.normalizeClass(["user-avatar",r.classList]),style:n.normalizeStyle({backgroundImage:"url("+e.src+")"})},null,6)):r.validateName?(n.openBlock(),n.createElementBlock("div",{key:3,class:n.normalizeClass([r.classList,"default-avatar"])},n.toDisplayString(r.initials),3)):(n.openBlock(),n.createElementBlock("div",{key:2,class:n.normalizeClass(["empty-avatar",r.classList])},[n.createVNode(d,{name:"camera-outline"})],2))}const ls=be(rs,[["render",as],["__scopeId","data-v-1e3762d5"]]),ss={name:"IbBadge",props:{content:{type:[String,Number],default:""}},computed:{classes(){const t=["ib-badge"];return this.content.toString().length&&t.push("ib-badge-large"),t},normalizeContent(){return this.content>99?"99+":this.content}}};function cs(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("span",{class:n.normalizeClass(r.classes)},n.toDisplayString(r.normalizeContent),3)}const ds=be(ss,[["render",cs],["__scopeId","data-v-5ac18f0d"]]),us={name:"IbButtonGroup"},fs={class:"ib-button-group"};function hs(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("div",fs,[n.renderSlot(t.$slots,"default")])}const ps=be(us,[["render",hs]]),rn={success:"success",neutral:"neutral",info:"info",error:"error",new:"new",favorite:"favorite",pending:"pending"},ms={props:{status:{type:String,default:rn.neutral,validator:t=>Object.keys(rn).includes(t)},icon:{type:String,default:""},showIcon:{type:Boolean,default:!1}},computed:{classes(){const t=["ib-tag-pill"];return t.push(`ib-tag-pill-${this.status}`),t},iconName(){if(this.icon)return this.icon;switch(this.status){case rn.success:return"checkmark-outline";case rn.neutral:return"time-outline";case rn.info:return"information-circle-outline";case rn.error:return"close-outline";default:return""}}},components:{IbIcon:Le}};function gs(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(r.classes)},[e.showIcon&&r.iconName.length?(n.openBlock(),n.createBlock(d,{key:0,name:r.iconName},null,8,["name"])):n.createCommentVNode("",!0),n.createElementVNode("span",null,[n.renderSlot(t.$slots,"default",{},void 0,!0)])],2)}const ys=be(ms,[["render",gs],["__scopeId","data-v-ab3c0159"]]),bs={name:"IbTooltip",props:{position:{type:String,default:{topCenter:"top-center"}.topCenter},title:{type:String},isOpen:{type:Boolean,default:!1}},mounted(){this.$nextTick(()=>{this.parentNode=this.$el.parentNode,getComputedStyle(this.parentNode).position!=="absolute"&&(this.parentNode.style.position="relative")})},data(){return{isOpenedState:this.isOpen}},methods:{open(){this.isOpenedState=!0,this.$emit("open")},close(){this.isOpenedState=!1,this.$emit("close")}},computed:{classes(){const t=["ib-toggle-tip"];return t.push(`ib-${this.position}`),t}},watch:{isOpen(t){t?this.open():this.close()}},components:{IbIconButton:Xe,IbIcon:Le}},vs={class:"ib-toggle-tip-head"},_s={class:"ib-toggle-tip-content"},$s={class:"ib-toggle-tip-button-set"};function ws(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-icon-button");return n.openBlock(),n.createBlock(n.Transition,null,{default:n.withCtx(()=>[n.withDirectives(n.createElementVNode("div",{class:n.normalizeClass(r.classes)},[n.createElementVNode("div",vs,[n.createElementVNode("p",null,n.toDisplayString(e.title),1),n.createVNode(c,{class:"close-button",kind:"ghost",onClick:n.withModifiers(r.close,["prevent"])},{default:n.withCtx(()=>[n.createVNode(d,{name:"close-outline"})]),_:1},8,["onClick"])]),n.createElementVNode("div",_s,[n.renderSlot(t.$slots,"default",{},void 0,!0)]),n.createElementVNode("div",$s,[n.renderSlot(t.$slots,"buttons",{},void 0,!0)])],2),[[n.vShow,a.isOpenedState]])]),_:3})}const _o=be(bs,[["render",ws],["__scopeId","data-v-16d5a7bd"]]),ji=27,$o=32,ks=13,wo=9,Cs=38,Os=37,Es=39,ko=40,Ss=8,xs="click",{performance:oi}=window,Ts=typeof(oi==null?void 0:oi.now)=="function"&&Date.now()>document.createEvent("Event").timeStamp?()=>oi.now():()=>Date.now(),$n=new Map;let wn=!1;const Co=t=>{$n.forEach(({bindTimeStamp:i,callback:e},o)=>{if(!(o.contains(t.target)||t.timeStamp<=i))try{e(t)}catch(a){console.error(a)}})},Ns=()=>{wn||(document.addEventListener("click",Co,{capture:!0}),wn=!0)},As=()=>{wn&&(document.removeEventListener("click",Co),wn=!1)},ai={created:(t,{value:i,arg:e="click"})=>{if(typeof i!="function")throw new Error(`[OutsideDirective] Value must be a function; got ${typeof i}!`);if(e!=="click")throw new Error(`[OutsideDirective] Cannot bind ${e} events; only click events are currently supported!`);$n.has(t)||(wn||Ns(),$n.set(t,{bindTimeStamp:Ts(),callback:i}))},beforeUnmount:t=>{$n.delete(t),$n.size===0&&As()}},kn={left:"left",right:"right"},li={bottom:"bottom"},Ds={name:"IbDropdown",directives:{Outside:ai},props:{vertical:{type:String,default:li.bottom},horizontal:{type:String,default:kn.left},triggerClass:{default:""},isOpened:{type:Boolean,default:!1},showCloseIcon:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},triggerType:{type:String,default:xs},destroyOnHide:{type:Boolean,default:!1},attachToBody:{type:Boolean,default:!1},attachTo:{type:String,default:null}},watch:{isOpened(t){t?this.open():this.close()}},mounted(){this.$globalEvents.$on("dropdown:open",t=>{this.$el.contains(t.$el)||this.close()}),document.addEventListener("focus",this.closeOnEventOutside,!0),document.addEventListener("keyup",this.onKeyupDocument)},data(){return{isOpenedState:this.isOpened,timeout:null}},methods:{async updatePosition(){const t=this.$refs.dropdown,i=this.$refs.body;if(!t||!i)return;const e=this.vertical==="top"?"top":"bottom",o=this.horizontal==="right"?"end":this.horizontal==="center"?"":"start",a=o?`${e}-${o}`:e,{x:r,y:d}=await fo(t,i,{placement:a,middleware:[yl(3),Rl(),Ll({padding:8})]});Object.assign(i.style,{left:`${r}px`,top:`${d}px`})},onKeydown(t){(t.keyCode===ks||t.keyCode===$o)&&(t.preventDefault(),this.toggle()),t.keyCode===ko&&(t.preventDefault(),this.open())},onKeyupDocument(t){t.keyCode===ji&&(t.preventDefault(),this.close())},toggle(){this.isOpenedState?this.close():this.open()},open(){this.disabled||(this.isOpenedState=!0,this.$emit("open"),this.$globalEvents.$emit("dropdown:open",this),this.$nextTick(()=>{(this.attachToBody||this.attachTo)&&this.updatePosition()}))},close(){if(this.isOpenedState){if(this.disabled)return;this.isOpenedState=!1,this.$emit("close")}},closeOnOutsideClick(t){this.$refs.body&&this.$refs.body.contains(t.target)||this.close()},debouncedOpen(){this.timeout=setTimeout(()=>{this.open()},300)},debouncedClose(){this.close(),clearTimeout(this.timeout)},closeOnClickIfRequired(){this.closeOnClick&&this.close()},closeOnEventOutside(t){this.$refs.body&&this.$refs.body.contains(t.target)||this.$el.contains(t.target)||this.close()}},computed:{classes(){const t=this.vertical===li.bottom?" dropdown-bottom":" dropdown-top",i=this.horizontal===kn.left?" dropdown-left":this.horizontal===kn.right?" dropdown-right":" dropdown-center",e=this.isOpenedState?" active":"";return t+i+e},triggerClasses(){let t=this.isOpenedState?"active":"";return this.disabled&&(t+=" dropdown-trigger-disabled"),this.triggerClass+t},hasTrigger(){return!!this.$slots.trigger}},beforeUnmount(){document.removeEventListener("focus",this.closeOnEventOutside,!0),document.removeEventListener("keypress",this.onKeydownDocument)}},Ms={class:"ib-dropdown"},Bs={class:"footer-slot"},Is={class:"footer-slot"};function Ps(t,i,e,o,a,r){const d=n.resolveDirective("outside");return n.withDirectives((n.openBlock(),n.createElementBlock("div",Ms,[r.hasTrigger&&e.triggerType==="click"?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass(["dropdown-trigger",r.triggerClasses]),ref:"dropdown",onKeydown:i[0]||(i[0]=(...c)=>r.onKeydown&&r.onKeydown(...c)),onClick:i[1]||(i[1]=n.withModifiers((...c)=>r.toggle&&r.toggle(...c),["prevent","stop"]))},[n.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):n.createCommentVNode("",!0),r.hasTrigger&&e.triggerType==="hover"?(n.openBlock(),n.createElementBlock("span",{key:1,class:n.normalizeClass(["dropdown-trigger",r.triggerClasses]),onMouseenter:i[2]||(i[2]=(...c)=>r.debouncedOpen&&r.debouncedOpen(...c)),onMouseleave:i[3]||(i[3]=(...c)=>r.debouncedClose&&r.debouncedClose(...c))},[n.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):n.createCommentVNode("",!0),e.attachToBody||e.attachTo?(n.openBlock(),n.createBlock(n.Teleport,{key:2,to:e.attachToBody?"body":e.attachTo},[!e.destroyOnHide||a.isOpenedState?n.withDirectives((n.openBlock(),n.createElementBlock("div",{key:0,ref:"body",class:n.normalizeClass("ib-dropdown-menu is-teleported "+r.classes)},[n.createElementVNode("div",{class:"dropdown-body",onClick:i[5]||(i[5]=(...c)=>r.closeOnClickIfRequired&&r.closeOnClickIfRequired(...c))},[n.renderSlot(t.$slots,"body",{isOpenedState:a.isOpenedState},void 0,!0),e.showCloseIcon?(n.openBlock(),n.createElementBlock("span",{key:0,class:"close",onClick:i[4]||(i[4]=(...c)=>r.close&&r.close(...c))},[n.renderSlot(t.$slots,"close",{},void 0,!0)])):n.createCommentVNode("",!0)]),n.createElementVNode("div",Bs,[n.renderSlot(t.$slots,"footer",{},void 0,!0)])],2)),[[n.vShow,a.isOpenedState]]):n.createCommentVNode("",!0)],8,["to"])):(n.openBlock(),n.createElementBlock(n.Fragment,{key:3},[!e.destroyOnHide||a.isOpenedState?n.withDirectives((n.openBlock(),n.createElementBlock("div",{key:0,ref:"body",class:n.normalizeClass("ib-dropdown-menu "+r.classes)},[n.createElementVNode("div",{class:"dropdown-body",onClick:i[7]||(i[7]=(...c)=>r.closeOnClickIfRequired&&r.closeOnClickIfRequired(...c))},[n.renderSlot(t.$slots,"body",{isOpenedState:a.isOpenedState},void 0,!0),e.showCloseIcon?(n.openBlock(),n.createElementBlock("span",{key:0,class:"close",onClick:i[6]||(i[6]=(...c)=>r.close&&r.close(...c))},[n.renderSlot(t.$slots,"close",{},void 0,!0)])):n.createCommentVNode("",!0)]),n.createElementVNode("div",Is,[n.renderSlot(t.$slots,"footer",{},void 0,!0)])],2)),[[n.vShow,a.isOpenedState]]):n.createCommentVNode("",!0)],64)),n.createElementVNode("div",{class:"before",onClick:i[8]||(i[8]=(...c)=>r.close&&r.close(...c))},[n.renderSlot(t.$slots,"before",{},void 0,!0)])])),[[d,r.closeOnOutsideClick]])}const si=be(Ds,[["render",Ps],["__scopeId","data-v-637e3198"]]),Ls={name:"IbList",data(){return{rootClass:"ib-list"}},methods:{onKeydown(t){var i,e,o,a,r;if(t.keyCode===ko){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const d=document.activeElement,c=d.querySelector(`.${this.rootClass}`);let p=d.nextElementSibling?d.nextElementSibling:(i=d.parentNode.nextElementSibling)==null?void 0:i.childNodes[0];if(c&&window.getComputedStyle(c).display!=="none"){c.querySelector('a, button, input, [tabindex="0"]').focus();return}if(p){p.focus();return}const s=(o=(e=d.closest(`.${this.rootClass}`).parentNode)==null?void 0:e.parentNode)==null?void 0:o.nextElementSibling.childNodes[0];s&&s.nodeName!=="#text"&&s.focus()}if(t.keyCode===Cs){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const d=document.activeElement,c=d.previousElementSibling?d.previousElementSibling:(a=d.parentNode.previousElementSibling)==null?void 0:a.childNodes[0];if(!c){d.closest(`.${this.rootClass}`).parentNode.focus();return}if(c&&c.nodeName!=="#text"){const p=c==null?void 0:c.querySelector(`.${this.rootClass}`);if(p&&window.getComputedStyle(p).display!=="none"){const s=Array.from(p.childNodes).filter(h=>h.nodeName!=="#text");(r=s[s.length-1])==null||r.childNodes[0].focus();return}c.focus()}}}}};function Rs(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("ul",{class:n.normalizeClass(a.rootClass),onKeydown:i[0]||(i[0]=(...d)=>r.onKeydown&&r.onKeydown(...d))},[n.renderSlot(t.$slots,"default")],34)}const Fi=be(Ls,[["render",Rs]]),Vs={props:{vertical:{type:String,default:li.bottom},horizontal:{type:String,default:kn.left},isOpened:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},class:{type:String,default:""},attachToBody:{type:Boolean,default:!1},attachTo:{type:String,default:null}},methods:{proxyEvents(t){this.$emit(t.event,...t.args)}},data(){return{list:this.$refs.list}},computed:{hasTrigger(){return!!this.$slots.trigger}},components:{IbDropdown:si,IbList:Fi}};function js(t,i,e,o,a,r){const d=n.resolveComponent("ib-list"),c=n.resolveComponent("ib-dropdown");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["dropdown-list-wrapper",e.class])},[n.createVNode(c,n.mergeProps({horizontal:e.horizontal,vertical:e.vertical,isOpened:e.isOpened,closeOnClick:e.closeOnClick,disabled:e.disabled,attachToBody:e.attachToBody,attachTo:e.attachTo},t.$attrs,{ref:"dropdown",onAll:r.proxyEvents}),n.createSlots({body:n.withCtx(({isOpened:p})=>[n.createVNode(d,{ref:"list",class:"list"},{default:n.withCtx(()=>[n.renderSlot(t.$slots,"body",{isOpenedState:p})]),_:2},1536)]),_:2},[r.hasTrigger?{name:"trigger",fn:n.withCtx(({isOpened:p})=>[n.renderSlot(t.$slots,"trigger",{isOpened:p})]),key:"0"}:void 0]),1040,["horizontal","vertical","isOpened","closeOnClick","disabled","attachToBody","attachTo","onAll"])],2)}const Cn=be(Vs,[["render",js]]),Fs={props:{checked:{type:Boolean,default:!1},href:{type:String},to:{type:[String,Object]}},computed:{component(){return this.href?"a":this.to?"router-link":"div"},attrs(){const t={class:"ib-dropdown-item"};return this.href&&(t.href=this.href),this.to&&(t.to=this.to),t}}},qs={class:"dropdown-item-wrapper"},Hs={class:"dropdown-item-icon"};function zs(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("li",qs,[(n.openBlock(),n.createBlock(n.resolveDynamicComponent(r.component),n.mergeProps({class:e.checked?"active":""},r.attrs,{tabindex:"0"}),{default:n.withCtx(()=>[n.createElementVNode("p",null,[n.withDirectives(n.createElementVNode("div",Hs,[n.renderSlot(t.$slots,"icon",{},void 0,!0)],512),[[n.vShow,t.$slots.icon]]),n.renderSlot(t.$slots,"default",{ref:"slot"},void 0,!0)])]),_:3},16,["class"]))])}const qi=be(Fs,[["render",zs],["__scopeId","data-v-edcdcbaf"]]),Us={name:"IbSplitButton",props:{id:{type:String,default:()=>dt()},kind:{type:String,default:{common:"common"}.common},verticalPosition:{type:String,default:"bottom"},disabled:{type:Boolean,default:!1},saveSelected:{type:Boolean,default:!1}},mounted(){var t;if(this.childList=Array.from(this.$refs.list.children),(t=this.childList)==null||t.forEach((i,e)=>{i.addEventListener("click",()=>{this.childList[this.activeElemIdx].classList.remove("active"),this.saveSelected&&(this.activeElemIdx=e,localStorage.setItem(`split-button-${this.id}`,e))})}),this.saveSelected){const i=localStorage.getItem(`split-button-${this.id}`);i&&(this.activeElemIdx=i)}this.$nextTick(()=>{this.setActiveItem()}),this.listObserver=new MutationObserver(i=>{for(const e of i)if(e.type==="attributes"&&e.attributeName==="disabled"){this.mainButtonAttrs.disabled=e.target.disabled;break}}),this.listObserver.observe(this.$refs.list,{attributes:!0,subtree:!0})},data(){return{activeElemIdx:0,content:"",mainButtonAttrs:{},isLink:!1,isRouterLink:!1,childList:[],listObserver:null}},components:{IbIcon:Le,IbDropdownList:Cn},methods:{setActiveItem(){const t=this.$slots.default()[this.activeElemIdx].props;this.mainButtonAttrs=t,this.mainButtonAttrs&&"href"in this.mainButtonAttrs?this.isLink=!0:this.isLink=!1,this.mainButtonAttrs&&"to"in this.mainButtonAttrs?this.isRouterLink=!0:this.isRouterLink=!1,this.childList[this.activeElemIdx].classList.add("active"),this.content=this.childList[this.activeElemIdx].textContent},onClickLink(t){if(this.disabled){t.preventDefault();return}}},computed:{classes(){const t=["split-button"];return t.push(`split-button-${this.kind}`),t}},watch:{activeElemIdx(){this.setActiveItem()}},beforeUnmount(){this.listObserver.disconnect(),this.listObserver=null}},Ks=["disabled"],Gs=["disabled"],Ws=["disabled"],Ys={ref:"list"};function Zs(t,i,e,o,a,r){const d=n.resolveComponent("router-link"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-dropdown-list");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(r.classes)},[a.isRouterLink?(n.openBlock(),n.createBlock(d,n.mergeProps({key:0,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled,to:a.mainButtonAttrs.to},a.mainButtonAttrs,{onClick:r.onClickLink}),{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(a.content),1)]),_:1},16,["class","disabled","to","onClick"])):a.isLink?(n.openBlock(),n.createElementBlock("a",n.mergeProps({key:1,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled},a.mainButtonAttrs,{onClick:i[0]||(i[0]=(...s)=>r.onClickLink&&r.onClickLink(...s))}),n.toDisplayString(a.content),17,Ks)):(n.openBlock(),n.createElementBlock("button",n.mergeProps({key:2,disabled:e.disabled,class:"split-button-main"},a.mainButtonAttrs),n.toDisplayString(a.content),17,Gs)),n.createVNode(p,{disabled:e.disabled,closeOnClick:!0,vertical:e.verticalPosition,horizontal:e.verticalPosition==="top"?"right":"left"},{trigger:n.withCtx(()=>[n.createElementVNode("button",{disabled:e.disabled,class:"split-button-menu-trigger"},[n.createVNode(c,{name:"chevron-down-outline"})],8,Ws)]),body:n.withCtx(()=>[n.createElementVNode("div",Ys,[n.renderSlot(t.$slots,"default")],512)]),_:3},8,["disabled","vertical","horizontal"])],2)}const Js=be(Us,[["render",Zs]]),Xs={props:{href:{type:String,default:""},to:{type:[String,Object]}},computed:{attrs(){const t={};return this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},component(){return this.href.length?"a":this.to?"router-link":"button"}}};function Qs(t,i,e,o,a,r){return n.openBlock(),n.createBlock(n.resolveDynamicComponent(r.component),n.mergeProps(r.attrs,{class:"ib-dropdown-item"}),{default:n.withCtx(()=>[n.renderSlot(t.$slots,"default",{},void 0,!0)]),_:3},16)}const ec=be(Xs,[["render",Qs],["__scopeId","data-v-66b7cfd1"]]),xt={S:"s",M:"m",L:"l",XL:"xl"},tc={name:"IbModal",directives:{Outside:ai},emits:{open:null,close:null},props:{active:{type:Boolean,default:!1},classList:{type:String,default:""},stopPropagation:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!0},size:{type:String,default:xt.S}},watch:{active(t){this.isActive=t,t?(this.$nextTick(()=>{this.setupFocusTrap()}),document.addEventListener("keydown",this.onKeydown),document.addEventListener("blur",this.setFocusOnModal,!0)):(this.cleanupFocusTrap(),document.removeEventListener("keydown",this.onKeydown),document.removeEventListener("blur",this.setFocusOnModal,!0))}},data(){return{isActive:this.active}},methods:{setupFocusTrap(){var e,o;if(this.focusableItems=((o=(e=this.$refs)==null?void 0:e.modal)==null?void 0:o.querySelectorAll("[tabindex], a, button, input, select, textarea"))||[],this.focusableItems.length===0)return;const t=this.focusableItems[0],i=this.focusableItems[this.focusableItems.length-1];this.firstFocusableHandler=a=>{a.keyCode===wo&&a.shiftKey&&(a.preventDefault(),i.focus())},this.lastFocusableHandler=a=>{a.keyCode===wo&&!a.shiftKey&&(a.preventDefault(),t.focus())},t.addEventListener("keydown",this.firstFocusableHandler),i.addEventListener("keydown",this.lastFocusableHandler),t.focus()},cleanupFocusTrap(){if(this.focusableItems.length===0)return;const t=this.focusableItems[0],i=this.focusableItems[this.focusableItems.length-1];this.firstFocusableHandler&&(t==null||t.removeEventListener("keydown",this.firstFocusableHandler)),this.lastFocusableHandler&&(i==null||i.removeEventListener("keydown",this.lastFocusableHandler)),this.firstFocusableHandler=null,this.lastFocusableHandler=null,this.focusableItems=[]},showModal(t){t?this.open():this.close()},onTriggerBlur(t){var i,e,o;!((i=this.$refs.modal)!=null&&i.contains(t.relatedTarget))&&this.isActive&&((o=(e=this.$refs.modal)==null?void 0:e.querySelector("a, button, [tabindex]"))==null||o.focus())},open(){this.isActive=!0,document.body.classList.add("modal-open"),this.$emit("open")},close(){var t,i;(i=(t=this.$refs.trigger)==null?void 0:t.querySelector("a, button, [tabindex]"))==null||i.focus(),document.body.classList.remove("modal-open"),this.$emit("close")},setFocusOnModal(t){if(!this.isActive)return;const e=Array.from(document.querySelectorAll(".modal.is-active")).sort((o,a)=>+(getComputedStyle(o).zIndex||0)-+(getComputedStyle(a).zIndex||0)).at(-1);if(e===this.$refs.modal&&!e.contains(t.target)&&!e.contains(t.relatedTarget)){const o=e.querySelector(`a[href], button:not([disabled]),
23
+ textarea, input:not([type="hidden"]),
24
+ select, [tabindex]:not([tabindex="-1"])`);o==null||o.focus()}},clickOutside(t){var i;this.stopPropagation||!((i=this.$refs.trigger)!=null&&i.contains(t.target))&&this.isActive&&this.close()},onKeydown(t){t.keyCode===ji&&!this.stopPropagation&&this.isActive&&this.close()}},computed:{classes(){const t=["modal"];return this.classList.length&&t.push(this.classList),this.isActive&&t.push("is-active"),t},bodyStyles(){const t={};return this.size===xt.S&&(t.width="380px",t.minHeight="160px",t.maxHeight="680px"),this.size===xt.M&&(t.width="600px",t.minHeight="260px",t.maxHeight="680px"),this.size===xt.L&&(t.width="850px",t.minHeight="400px",t.maxHeight="680px"),this.size===xt.XL&&(t.width="80vw",t.maxWidth="1400px"),t},bodyClassList(){const t=["modal-body"];return this.size===xt.S&&t.push("modal-body-s"),this.size===xt.M&&t.push("modal-body-m"),this.size===xt.L&&t.push("modal-body-l"),this.size===xt.XL&&t.push("modal-body-xl"),t},hasTrigger(){return!!this.$slots.trigger},hasHeader(){return!!this.$slots.header},hasFooter(){return!!this.$slots.footer}},components:{IbIconButton:Xe,IbIcon:Le},beforeUnmount(){this.isActive&&this.close(),document.removeEventListener("keydown",this.onKeydown),document.removeEventListener("blur",this.setFocusOnModal,!0)}},nc={key:1,class:"modal-header"},ic={key:2,class:"modal-footer"};function rc(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-icon-button"),p=n.resolveDirective("outside");return n.openBlock(),n.createElementBlock(n.Fragment,null,[r.hasTrigger?(n.openBlock(),n.createElementBlock("div",{key:0,class:"modal-trigger",ref:"trigger",onBlurCapture:i[0]||(i[0]=(...s)=>r.onTriggerBlur&&r.onTriggerBlur(...s)),onClick:i[1]||(i[1]=(...s)=>r.open&&r.open(...s))},[n.renderSlot(t.$slots,"trigger",{},void 0,!0)],544)):n.createCommentVNode("",!0),a.isActive?(n.openBlock(),n.createBlock(n.Teleport,{key:1,to:"body"},[n.createElementVNode("div",{class:n.normalizeClass(r.classes),ref:"modal"},[n.withDirectives((n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(r.bodyClassList),style:n.normalizeStyle(r.bodyStyles)},[e.showCloseButton?(n.openBlock(),n.createBlock(c,{key:0,class:"modal-close-icon",kind:"ghost",onClick:r.close},{default:n.withCtx(()=>[n.createVNode(d,{name:"close-outline"})]),_:1},8,["onClick"])):n.createCommentVNode("",!0),r.hasHeader?(n.openBlock(),n.createElementBlock("p",nc,[n.renderSlot(t.$slots,"header",{showModal:r.showModal},void 0,!0)])):n.createCommentVNode("",!0),n.createElementVNode("div",{class:n.normalizeClass(["modal-content",{"without-title":!r.hasHeader}])},[n.renderSlot(t.$slots,"body",{showModal:r.showModal},void 0,!0)],2),r.hasFooter?(n.openBlock(),n.createElementBlock("div",ic,[n.renderSlot(t.$slots,"footer",{showModal:r.showModal},void 0,!0)])):n.createCommentVNode("",!0)],6)),[[p,r.clickOutside]])],2)])):n.createCommentVNode("",!0)],64)}const oc=be(tc,[["render",rc],["__scopeId","data-v-1379c0fb"]]);function Oo(t){return"#"+t.toLowerCase().replace(/ /g,"-")}const ac={name:"IbTabDropdown",props:{tabs:{rype:Object,default:{}},selectedTab:{type:String,default:""}},data(){return{selectedTabByDropdown:"",isDisabledDropdown:this.setDisabledTab()}},methods:{createHref(t){return Oo(t)},selectTab(t){this.selectedTabByDropdown=t,this.$emit("select-tab",t)},setDisabledTab(){return this.tabs.tabs.every(t=>t.disabled)}},computed:{isActive(){for(let t of this.tabs.tabs)if(t.id===this.selectedTab)return!0;return!1}},components:{IbDropdownList:Cn,IbDropdownItem:qi,IbIcon:Le}},lc={class:"wrapper-tab-link dropdown-tab"},sc=["tabindex"];function cc(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-dropdown-item"),p=n.resolveComponent("ib-dropdown-list");return n.openBlock(),n.createElementBlock("div",lc,[n.createVNode(p,{disabled:a.isDisabledDropdown,"close-on-click":!0},{trigger:n.withCtx(()=>[n.createElementVNode("span",{class:n.normalizeClass(["tab-link",{active:a.selectedTabByDropdown===e.selectedTab||r.isActive,disabled:a.isDisabledDropdown}]),tabindex:a.isDisabledDropdown?-1:0},[n.createTextVNode(n.toDisplayString(e.tabs.name)+" ",1),n.createVNode(d,{name:"chevron-down"})],10,sc)]),body:n.withCtx(()=>[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(e.tabs.tabs,(s,h)=>(n.openBlock(),n.createBlock(c,{key:h,checked:s.id===e.selectedTab,href:r.createHref(s.id),tabindex:s.disabled?-1:0,class:n.normalizeClass([{disabled:s.disabled},"dropdown-tab-item"]),target:"_self",onClick:f=>r.selectTab(s.id)},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(s.title),1)]),_:2},1032,["checked","href","tabindex","class","onClick"]))),128))]),_:1},8,["disabled"])])}const Eo=be(ac,[["render",cc]]),dc={name:"IbTabs",props:{showTitle:{type:Boolean,default:!0},selectedTabId:{type:String,default:""},setHref:{type:Boolean,default:!1}},data(){return{tabs:[],selectedTab:this.selectTabId}},watch:{selectedTabId(t){this.selectTab(t)}},created(){const t=[];this.$slots.default().forEach(i=>i.type===Symbol.for("v-fgt")?t.push(...i.children):t.push(i)),t.forEach(i=>{if(!i.props.name)this.tabs.push(i.props);else{const e=this.tabs.findIndex(o=>o.name===i.props.name);if(e!==-1)this.tabs[e].tabs.push(i.props);else{const o={name:i.props.name,tabs:[i.props]};this.tabs.push(o)}}});for(let i of this.tabs)if(!i.disabled)if(i.tabs){for(let e of i.tabs)if(!e.disabled){this.selectTab(e.id);return}}else{this.selectTab(i.id);return}},methods:{createHref(t){return Oo(t)},selectTab(t){this.$emit("changeTab",t),this.selectedTab=t}},components:{IbTabDropdown:Eo,IbIcon:Le},emits:["changeTab"]},uc={class:"tabs"},fc={class:"tabs-list"},hc={key:0,class:"wrapper-tab-link"},pc={class:"tabs-content",ref:"tabHandler"};function mc(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-tab-dropdown");return n.openBlock(),n.createElementBlock("div",uc,[n.createElementVNode("ul",fc,[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(a.tabs,(p,s)=>(n.openBlock(),n.createElementBlock("li",{class:"tab-item",key:s},[p.name?(n.openBlock(),n.createBlock(c,{key:1,"selected-tab":a.selectedTab,tabs:p,onSelectTab:r.selectTab},null,8,["selected-tab","tabs","onSelectTab"])):(n.openBlock(),n.createElementBlock("div",hc,[(n.openBlock(),n.createBlock(n.resolveDynamicComponent(e.setHref?"a":"div"),n.mergeProps(e.setHref?{href:r.createHref(p.id),target:"_self"}:{},{class:["tab-link",{active:a.selectedTab===p.id,disabled:p.disabled}],tabindex:p.disabled?-1:0,onClick:h=>r.selectTab(p.id)}),{default:n.withCtx(()=>[p.icon?(n.openBlock(),n.createBlock(d,{key:0,class:"tab-icon",name:p.icon},null,8,["name"])):n.createCommentVNode("",!0),e.showTitle?(n.openBlock(),n.createElementBlock(n.Fragment,{key:1},[n.createTextVNode(n.toDisplayString(p.title),1)],64)):n.createCommentVNode("",!0)]),_:2},1040,["class","tabindex","onClick"]))]))]))),128))]),n.createElementVNode("div",pc,[n.renderSlot(t.$slots,"default",{},void 0,!0)],512)])}const gc=be(dc,[["render",mc],["__scopeId","data-v-8512ce8a"]]),yc={name:"IbTab",props:{title:{type:String,required:!0},id:{type:String,required:!0},disabled:{type:Boolean,default:!1},icon:{type:String,required:!1},initialized:{type:Boolean,default:!1},name:{type:String,default:null}},computed:{isTabActive(){return this.$parent.selectedTab===this.id}}};function bc(t,i,e,o,a,r){return n.withDirectives((n.openBlock(),n.createElementBlock("div",null,[n.renderSlot(t.$slots,"default")],512)),[[n.vShow,r.isTabActive]])}const vc=be(yc,[["render",bc]]),_c={LIST_VIEW:"list-sorting",GRID_VIEW:"grid-sorting",TABLE_VIEW:"table-sorting"},$c={TYPE_ASC:"asc",TYPE_DESC:"desc"},wc={name:"IbSorting",props:{tooltipTitle:{type:String,default:""},hideSortingButton:{type:Boolean,default:!1},tooltipText:{type:String},tooltipPosition:{type:String},tooltipIconPosition:{type:String},tooltipIconSorting:{type:String},toggleTipTitle:{type:String},title:{type:String,default:""},sort:{type:String,default:null},view:{type:String,required:!0},disable:{type:Boolean,default:!1},tableName:{type:String,required:!0}},mounted(){this.$globalEvents.$on(`sorting:update:${this.tableName}`,t=>{this.$el.contains(t.$el)||(this.currentTypeSort=null)})},data(){return{isOpenToggleTip:!1,sortingTypes:$c,sortingTypesView:_c,currentTypeSort:this.sort}},methods:{clickHandler(){this.currentTypeSort?this.currentTypeSort===this.sortingTypes.TYPE_ASC?this.currentTypeSort=this.sortingTypes.TYPE_DESC:this.currentTypeSort=null:this.currentTypeSort=this.sortingTypes.TYPE_ASC,this.updateTypeSorting()},updateTypeSorting(){this.$globalEvents.$emit(`sorting:update:${this.tableName}`,this),this.$emit("update-sorting",this.currentTypeSort)}},computed:{iconType(){return this.currentTypeSort===this.sortingTypes.TYPE_ASC?"arrow-up":this.currentTypeSort===this.sortingTypes.TYPE_DESC?"arrow-down":this.view!==this.sortingTypesView.GRID_VIEW?"swap-vertical":null},sortingTooltipPosition(){return this.hasToggleTip?"bottomCenter":this.tooltipPosition},sortingTooltipContent(){var t;return this.hasToggleTip?lang("click_to_view_details",(t=this.langComponents)==null?void 0:t.COMPONENT_SYSTEM):this.tooltipContent},tooltipIconText(){var t,i,e;return this.currentTypeSort===this.sortingTypes.TYPE_ASC?lang("sort_descending",(t=this.langComponents)==null?void 0:t.COMPONENT_SELECT):this.currentTypeSort===this.sortingTypes.TYPE_DESC?lang("reset_sorting",(i=this.langComponents)==null?void 0:i.COMPONENT_SELECT):this.view!==this.sortingTypesView.GRID_VIEW?lang("sort_ascending",(e=this.langComponents)==null?void 0:e.COMPONENT_SELECT):""},tooltipContent(){return this.tooltipTitle.length?{title:this.tooltipTitle,text:this.tooltipText}:this.tooltipText},hasToggleTip(){return this.toggleTipTitle&&this.$slots.toggleTipBody&&this.$slots.toggleTipButtons}},directives:{Tooltip:St},components:{IbIcon:Le,IbIconButton:Xe,IbToggleTip:_o}},kc={class:"sorting-wrapper"},Cc=["name"],Oc=["aria-label"];function Ec(t,i,e,o,a,r){var h;const d=n.resolveComponent("ib-toggle-tip"),c=n.resolveComponent("ib-icon-button"),p=n.resolveComponent("ib-icon"),s=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("div",kc,[e.view===a.sortingTypesView.TABLE_VIEW?(n.openBlock(),n.createElementBlock("div",{key:0,class:n.normalizeClass(["table-sorting-wrapper",{active:a.currentTypeSort,disabled:e.disable}])},[n.withDirectives((n.openBlock(),n.createElementBlock("button",{class:n.normalizeClass(["sorting-label",{"sorting-label-active":a.isOpenToggleTip&&r.hasToggleTip,"has-action":((h=e.tooltipText)==null?void 0:h.length)||r.hasToggleTip}]),type:"button",onClick:i[0]||(i[0]=f=>a.isOpenToggleTip=!a.isOpenToggleTip)},[n.createTextVNode(n.toDisplayString(e.title),1)],2)),[[s,r.sortingTooltipContent,r.sortingTooltipPosition]]),r.hasToggleTip?(n.openBlock(),n.createBlock(d,{key:0,position:"bottom-center","is-open":a.isOpenToggleTip,title:e.toggleTipTitle,onClose:i[1]||(i[1]=f=>a.isOpenToggleTip=!1)},{buttons:n.withCtx(()=>[n.renderSlot(t.$slots,"toggleTipButtons",{},void 0,!0)]),default:n.withCtx(()=>[n.renderSlot(t.$slots,"toggleTipBody",{},void 0,!0)]),_:3},8,["is-open","title"])):n.createCommentVNode("",!0),e.hideSortingButton?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(c,{key:1,kind:"white",size:"s",onClick:r.clickHandler},{default:n.withCtx(()=>[n.createElementVNode("ion-icon",{name:r.iconType},null,8,Cc)]),_:1},8,["onClick"])),[[s,r.tooltipIconText,e.tooltipIconPosition]])],2)):n.withDirectives((n.openBlock(),n.createElementBlock("button",{key:1,class:n.normalizeClass(["sorting-button",{active:a.currentTypeSort,disabled:e.disable}]),type:"button",onClick:i[2]||(i[2]=(...f)=>r.clickHandler&&r.clickHandler(...f)),"aria-label":e.sort},[n.createTextVNode(n.toDisplayString(e.title)+" ",1),r.iconType?(n.openBlock(),n.createBlock(p,{key:0,name:r.iconType},null,8,["name"])):n.createCommentVNode("",!0)],10,Oc)),[[s,e.tooltipText,e.tooltipPosition]])])}const Sc=be(wc,[["render",Ec],["__scopeId","data-v-c0bd6464"]]);function So(t){return t.scrollHeight>t.clientHeight}const Hi=new po,xo=(t,i)=>{if(So(t)){const e=Object.keys(i.modifiers)[0]||i.arg,o={title:i.value.title||"",text:typeof i.value=="object"?i.value.text:i.value};Hi.createTooltip(t,o,e)}},To=()=>{Hi.destroyTooltip()},No={mounted(t,i){t.addEventListener("mouseenter",()=>xo(t,i)),t.addEventListener("mouseleave",To)},beforeUnmount(t,i){Hi.destroyTooltip(),t.removeEventListener("mouseenter",()=>xo(t,i)),t.removeEventListener("mouseleave",To)}},xc={name:"IbBreadcrumbs",props:{items:{type:Array,default:()=>[]},tooltipTextContext:{type:String}},computed:{last(){return this.items.length?this.items.length-1:null},initContextMenu(){return this.items.length>4},setItemsContextMenu(){return this.items.slice(0,-3)}},components:{IbIcon:Le,IbIconButton:Xe,IbDropdownItem:qi,IbDropdownList:Cn,IbTooltip:_n},directives:{OverflowTooltip:No}},Tc={"aria-label":"breadcrumb"},Nc={class:"breadcrumb"},Ac=["href"],Dc={key:1},Mc=["href"];function Bc(t,i,e,o,a,r){const d=n.resolveComponent("router-link"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-tooltip"),s=n.resolveComponent("ib-icon-button"),h=n.resolveComponent("ib-dropdown-item"),f=n.resolveComponent("ib-dropdown-list"),l=n.resolveDirective("overflow-tooltip");return n.openBlock(),n.createElementBlock("nav",Tc,[n.createElementVNode("ul",Nc,[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(e.items,(u,_)=>(n.openBlock(),n.createElementBlock("li",{class:n.normalizeClass(["breadcrumb-item",_===r.last?"active":""]),"aria-current":"page",key:_},[_!==r.last&&_>e.items.length-4||_===0?(n.openBlock(),n.createElementBlock(n.Fragment,{key:0},[u.url?(n.openBlock(),n.createElementBlock("a",{key:0,class:"ib-link",href:u.url},n.toDisplayString(u.title),9,Ac)):(n.openBlock(),n.createBlock(d,{key:1,class:"ib-link",to:u.to},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(u.title),1)]),_:2},1032,["to"]))],64)):n.createCommentVNode("",!0),_===r.last&&u.title?n.withDirectives((n.openBlock(),n.createElementBlock("p",Dc,[n.createTextVNode(n.toDisplayString(u.title),1)])),[[l,u.title,void 0,{bottomCenter:!0}]]):n.createCommentVNode("",!0),r.initContextMenu&&_===e.items.length-4?(n.openBlock(),n.createBlock(f,{key:2,horizontal:"center"},{trigger:n.withCtx(()=>[n.createVNode(s,{kind:"ghost"},{default:n.withCtx(()=>[n.createVNode(c,{name:"ellipsis-horizontal-sharp"}),e.tooltipTextContext?(n.openBlock(),n.createBlock(p,{key:0,text:e.tooltipTextContext},null,8,["text"])):n.createCommentVNode("",!0)]),_:1})]),body:n.withCtx(()=>[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(r.setItemsContextMenu,(g,$)=>(n.openBlock(),n.createBlock(h,{key:$},{default:n.withCtx(()=>[n.createElementVNode("a",{class:"context-breadcrums",href:g.url},n.toDisplayString(g.title),9,Mc)]),_:2},1024))),128))]),_:2},1024)):n.createCommentVNode("",!0),_!==r.last&&_>e.items.length-5||_===0?(n.openBlock(),n.createBlock(c,{key:3,name:"chevron-forward-outline"})):n.createCommentVNode("",!0)],2))),128))])])}const Ic=be(xc,[["render",Bc],["__scopeId","data-v-224b4a21"]]),Pc={name:"IbLabel",props:{for:{type:String},required:{type:Boolean,default:!1},infoText:{type:[String,Object],default:""},tooltipPosition:{type:String},disabled:{type:Boolean,default:!1}},mounted(){this.$globalEvents.$on(`label:disabled:${this.for}`,t=>{this.idDisabled=t})},data(){return{idDisabled:this.disabled}},watch:{disabled(t){this.idDisabled=t}},computed:{classes(){const t=["ib-label"];return this.infoText.length&&t.push("has-info-text"),this.idDisabled&&t.push("label-disabled"),t}},components:{IbIconButton:Xe,IbIcon:Le},directives:{Tooltip:St}},Lc=["for"],Rc={key:0,class:"required"};function Vc(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-icon-button"),p=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("label",{class:n.normalizeClass(r.classes),for:e.for},[e.required?(n.openBlock(),n.createElementBlock("span",Rc,"* ")):n.createCommentVNode("",!0),n.renderSlot(t.$slots,"default",{},void 0,!0),e.infoText.length||Object.keys(e.infoText).length?n.withDirectives((n.openBlock(),n.createBlock(c,{key:1,size:"xs",class:"info-button",kind:"ghost",type:"button"},{default:n.withCtx(()=>[n.createVNode(d,{name:"information-circle-outline"})]),_:1})),[[p,e.infoText,e.tooltipPosition]]):n.createCommentVNode("",!0)],10,Lc)}const On=be(Pc,[["render",Vc],["__scopeId","data-v-d09af73c"]]);function on(t,i,e){let o=e.initialDeps??[],a;function r(){var d,c,p,s;let h;e.key&&((d=e.debug)!=null&&d.call(e))&&(h=Date.now());const f=t();if(!(f.length!==o.length||f.some((_,g)=>o[g]!==_)))return a;o=f;let u;if(e.key&&((c=e.debug)!=null&&c.call(e))&&(u=Date.now()),a=i(...f),e.key&&((p=e.debug)!=null&&p.call(e))){const _=Math.round((Date.now()-h)*100)/100,g=Math.round((Date.now()-u)*100)/100,$=g/16,v=(b,y)=>{for(b=String(b);b.length<y;)b=" "+b;return b};console.info(`%c⏱ ${v(g,5)} /${v(_,5)} ms`,`
25
+ font-size: .6rem;
26
+ font-weight: bold;
27
+ color: hsl(${Math.max(0,Math.min(120-120*$,120))}deg 100% 31%);`,e==null?void 0:e.key)}return(s=e==null?void 0:e.onChange)==null||s.call(e,a),a}return r.updateDeps=d=>{o=d},r}function Ao(t,i){if(t===void 0)throw new Error("Unexpected undefined");return t}const jc=(t,i)=>Math.abs(t-i)<1.01,Fc=(t,i,e)=>{let o;return function(...a){t.clearTimeout(o),o=t.setTimeout(()=>i.apply(this,a),e)}},Do=t=>{const{offsetWidth:i,offsetHeight:e}=t;return{width:i,height:e}},qc=t=>t,Hc=t=>{const i=Math.max(t.startIndex-t.overscan,0),e=Math.min(t.endIndex+t.overscan,t.count-1),o=[];for(let a=i;a<=e;a++)o.push(a);return o},zc=(t,i)=>{const e=t.scrollElement;if(!e)return;const o=t.targetWindow;if(!o)return;const a=d=>{const{width:c,height:p}=d;i({width:Math.round(c),height:Math.round(p)})};if(a(Do(e)),!o.ResizeObserver)return()=>{};const r=new o.ResizeObserver(d=>{const c=()=>{const p=d[0];if(p!=null&&p.borderBoxSize){const s=p.borderBoxSize[0];if(s){a({width:s.inlineSize,height:s.blockSize});return}}a(Do(e))};t.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(c):c()});return r.observe(e,{box:"border-box"}),()=>{r.unobserve(e)}},Mo={passive:!0},Bo=typeof window>"u"?!0:"onscrollend"in window,Uc=(t,i)=>{const e=t.scrollElement;if(!e)return;const o=t.targetWindow;if(!o)return;let a=0;const r=t.options.useScrollendEvent&&Bo?()=>{}:Fc(o,()=>{i(a,!1)},t.options.isScrollingResetDelay),d=h=>()=>{const{horizontal:f,isRtl:l}=t.options;a=f?e.scrollLeft*(l&&-1||1):e.scrollTop,r(),i(a,h)},c=d(!0),p=d(!1);p(),e.addEventListener("scroll",c,Mo);const s=t.options.useScrollendEvent&&Bo;return s&&e.addEventListener("scrollend",p,Mo),()=>{e.removeEventListener("scroll",c),s&&e.removeEventListener("scrollend",p)}},Kc=(t,i,e)=>{if(i!=null&&i.borderBoxSize){const o=i.borderBoxSize[0];if(o)return Math.round(o[e.options.horizontal?"inlineSize":"blockSize"])}return t[e.options.horizontal?"offsetWidth":"offsetHeight"]},Gc=(t,{adjustments:i=0,behavior:e},o)=>{var a,r;const d=t+i;(r=(a=o.scrollElement)==null?void 0:a.scrollTo)==null||r.call(a,{[o.options.horizontal?"left":"top"]:d,behavior:e})};class Wc{constructor(i){this.unsubs=[],this.scrollElement=null,this.targetWindow=null,this.isScrolling=!1,this.measurementsCache=[],this.itemSizeCache=new Map,this.pendingMeasuredCacheIndexes=[],this.scrollRect=null,this.scrollOffset=null,this.scrollDirection=null,this.scrollAdjustments=0,this.elementsCache=new Map,this.observer=(()=>{let e=null;const o=()=>e||(!this.targetWindow||!this.targetWindow.ResizeObserver?null:e=new this.targetWindow.ResizeObserver(a=>{a.forEach(r=>{const d=()=>{this._measureElement(r.target,r)};this.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(d):d()})}));return{disconnect:()=>{var a;(a=o())==null||a.disconnect(),e=null},observe:a=>{var r;return(r=o())==null?void 0:r.observe(a,{box:"border-box"})},unobserve:a=>{var r;return(r=o())==null?void 0:r.unobserve(a)}}})(),this.range=null,this.setOptions=e=>{Object.entries(e).forEach(([o,a])=>{typeof a>"u"&&delete e[o]}),this.options={debug:!1,initialOffset:0,overscan:1,paddingStart:0,paddingEnd:0,scrollPaddingStart:0,scrollPaddingEnd:0,horizontal:!1,getItemKey:qc,rangeExtractor:Hc,onChange:()=>{},measureElement:Kc,initialRect:{width:0,height:0},scrollMargin:0,gap:0,indexAttribute:"data-index",initialMeasurementsCache:[],lanes:1,isScrollingResetDelay:150,enabled:!0,isRtl:!1,useScrollendEvent:!1,useAnimationFrameWithResizeObserver:!1,...e}},this.notify=e=>{var o,a;(a=(o=this.options).onChange)==null||a.call(o,this,e)},this.maybeNotify=on(()=>(this.calculateRange(),[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]),e=>{this.notify(e)},{key:process.env.NODE_ENV!=="production"&&"maybeNotify",debug:()=>this.options.debug,initialDeps:[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]}),this.cleanup=()=>{this.unsubs.filter(Boolean).forEach(e=>e()),this.unsubs=[],this.observer.disconnect(),this.scrollElement=null,this.targetWindow=null},this._didMount=()=>()=>{this.cleanup()},this._willUpdate=()=>{var e;const o=this.options.enabled?this.options.getScrollElement():null;if(this.scrollElement!==o){if(this.cleanup(),!o){this.maybeNotify();return}this.scrollElement=o,this.scrollElement&&"ownerDocument"in this.scrollElement?this.targetWindow=this.scrollElement.ownerDocument.defaultView:this.targetWindow=((e=this.scrollElement)==null?void 0:e.window)??null,this.elementsCache.forEach(a=>{this.observer.observe(a)}),this._scrollToOffset(this.getScrollOffset(),{adjustments:void 0,behavior:void 0}),this.unsubs.push(this.options.observeElementRect(this,a=>{this.scrollRect=a,this.maybeNotify()})),this.unsubs.push(this.options.observeElementOffset(this,(a,r)=>{this.scrollAdjustments=0,this.scrollDirection=r?this.getScrollOffset()<a?"forward":"backward":null,this.scrollOffset=a,this.isScrolling=r,this.maybeNotify()}))}},this.getSize=()=>this.options.enabled?(this.scrollRect=this.scrollRect??this.options.initialRect,this.scrollRect[this.options.horizontal?"width":"height"]):(this.scrollRect=null,0),this.getScrollOffset=()=>this.options.enabled?(this.scrollOffset=this.scrollOffset??(typeof this.options.initialOffset=="function"?this.options.initialOffset():this.options.initialOffset),this.scrollOffset):(this.scrollOffset=null,0),this.getFurthestMeasurement=(e,o)=>{const a=new Map,r=new Map;for(let d=o-1;d>=0;d--){const c=e[d];if(a.has(c.lane))continue;const p=r.get(c.lane);if(p==null||c.end>p.end?r.set(c.lane,c):c.end<p.end&&a.set(c.lane,!0),a.size===this.options.lanes)break}return r.size===this.options.lanes?Array.from(r.values()).sort((d,c)=>d.end===c.end?d.index-c.index:d.end-c.end)[0]:void 0},this.getMeasurementOptions=on(()=>[this.options.count,this.options.paddingStart,this.options.scrollMargin,this.options.getItemKey,this.options.enabled],(e,o,a,r,d)=>(this.pendingMeasuredCacheIndexes=[],{count:e,paddingStart:o,scrollMargin:a,getItemKey:r,enabled:d}),{key:!1}),this.getMeasurements=on(()=>[this.getMeasurementOptions(),this.itemSizeCache],({count:e,paddingStart:o,scrollMargin:a,getItemKey:r,enabled:d},c)=>{if(!d)return this.measurementsCache=[],this.itemSizeCache.clear(),[];this.measurementsCache.length===0&&(this.measurementsCache=this.options.initialMeasurementsCache,this.measurementsCache.forEach(h=>{this.itemSizeCache.set(h.key,h.size)}));const p=this.pendingMeasuredCacheIndexes.length>0?Math.min(...this.pendingMeasuredCacheIndexes):0;this.pendingMeasuredCacheIndexes=[];const s=this.measurementsCache.slice(0,p);for(let h=p;h<e;h++){const f=r(h),l=this.options.lanes===1?s[h-1]:this.getFurthestMeasurement(s,h),u=l?l.end+this.options.gap:o+a,_=c.get(f),g=typeof _=="number"?_:this.options.estimateSize(h),$=u+g,v=l?l.lane:h%this.options.lanes;s[h]={index:h,start:u,size:g,end:$,key:f,lane:v}}return this.measurementsCache=s,s},{key:process.env.NODE_ENV!=="production"&&"getMeasurements",debug:()=>this.options.debug}),this.calculateRange=on(()=>[this.getMeasurements(),this.getSize(),this.getScrollOffset(),this.options.lanes],(e,o,a,r)=>this.range=e.length>0&&o>0?Yc({measurements:e,outerSize:o,scrollOffset:a,lanes:r}):null,{key:process.env.NODE_ENV!=="production"&&"calculateRange",debug:()=>this.options.debug}),this.getVirtualIndexes=on(()=>{let e=null,o=null;const a=this.calculateRange();return a&&(e=a.startIndex,o=a.endIndex),this.maybeNotify.updateDeps([this.isScrolling,e,o]),[this.options.rangeExtractor,this.options.overscan,this.options.count,e,o]},(e,o,a,r,d)=>r===null||d===null?[]:e({startIndex:r,endIndex:d,overscan:o,count:a}),{key:process.env.NODE_ENV!=="production"&&"getVirtualIndexes",debug:()=>this.options.debug}),this.indexFromElement=e=>{const o=this.options.indexAttribute,a=e.getAttribute(o);return a?parseInt(a,10):(console.warn(`Missing attribute name '${o}={index}' on measured element.`),-1)},this._measureElement=(e,o)=>{const a=this.indexFromElement(e),r=this.measurementsCache[a];if(!r)return;const d=r.key,c=this.elementsCache.get(d);c!==e&&(c&&this.observer.unobserve(c),this.observer.observe(e),this.elementsCache.set(d,e)),e.isConnected&&this.resizeItem(a,this.options.measureElement(e,o,this))},this.resizeItem=(e,o)=>{const a=this.measurementsCache[e];if(!a)return;const r=this.itemSizeCache.get(a.key)??a.size,d=o-r;d!==0&&((this.shouldAdjustScrollPositionOnItemSizeChange!==void 0?this.shouldAdjustScrollPositionOnItemSizeChange(a,d,this):a.start<this.getScrollOffset()+this.scrollAdjustments)&&(process.env.NODE_ENV!=="production"&&this.options.debug&&console.info("correction",d),this._scrollToOffset(this.getScrollOffset(),{adjustments:this.scrollAdjustments+=d,behavior:void 0})),this.pendingMeasuredCacheIndexes.push(a.index),this.itemSizeCache=new Map(this.itemSizeCache.set(a.key,o)),this.notify(!1))},this.measureElement=e=>{if(!e){this.elementsCache.forEach((o,a)=>{o.isConnected||(this.observer.unobserve(o),this.elementsCache.delete(a))});return}this._measureElement(e,void 0)},this.getVirtualItems=on(()=>[this.getVirtualIndexes(),this.getMeasurements()],(e,o)=>{const a=[];for(let r=0,d=e.length;r<d;r++){const c=e[r],p=o[c];a.push(p)}return a},{key:process.env.NODE_ENV!=="production"&&"getVirtualItems",debug:()=>this.options.debug}),this.getVirtualItemForOffset=e=>{const o=this.getMeasurements();if(o.length!==0)return Ao(o[Io(0,o.length-1,a=>Ao(o[a]).start,e)])},this.getOffsetForAlignment=(e,o,a=0)=>{const r=this.getSize(),d=this.getScrollOffset();o==="auto"&&(o=e>=d+r?"end":"start"),o==="center"?e+=(a-r)/2:o==="end"&&(e-=r);const c=this.getTotalSize()+this.options.scrollMargin-r;return Math.max(Math.min(c,e),0)},this.getOffsetForIndex=(e,o="auto")=>{e=Math.max(0,Math.min(e,this.options.count-1));const a=this.measurementsCache[e];if(!a)return;const r=this.getSize(),d=this.getScrollOffset();if(o==="auto")if(a.end>=d+r-this.options.scrollPaddingEnd)o="end";else if(a.start<=d+this.options.scrollPaddingStart)o="start";else return[d,o];const c=o==="end"?a.end+this.options.scrollPaddingEnd:a.start-this.options.scrollPaddingStart;return[this.getOffsetForAlignment(c,o,a.size),o]},this.isDynamicMode=()=>this.elementsCache.size>0,this.scrollToOffset=(e,{align:o="start",behavior:a}={})=>{a==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getOffsetForAlignment(e,o),{adjustments:void 0,behavior:a})},this.scrollToIndex=(e,{align:o="auto",behavior:a}={})=>{a==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),e=Math.max(0,Math.min(e,this.options.count-1));let r=0;const d=10,c=s=>{if(!this.targetWindow)return;const h=this.getOffsetForIndex(e,s);if(!h){console.warn("Failed to get offset for index:",e);return}const[f,l]=h;this._scrollToOffset(f,{adjustments:void 0,behavior:a}),this.targetWindow.requestAnimationFrame(()=>{const u=this.getScrollOffset(),_=this.getOffsetForIndex(e,l);if(!_){console.warn("Failed to get offset for index:",e);return}jc(_[0],u)||p(l)})},p=s=>{this.targetWindow&&(r++,r<d?(process.env.NODE_ENV!=="production"&&this.options.debug&&console.info("Schedule retry",r,d),this.targetWindow.requestAnimationFrame(()=>c(s))):console.warn(`Failed to scroll to index ${e} after ${d} attempts.`))};c(o)},this.scrollBy=(e,{behavior:o}={})=>{o==="smooth"&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getScrollOffset()+e,{adjustments:void 0,behavior:o})},this.getTotalSize=()=>{var e;const o=this.getMeasurements();let a;if(o.length===0)a=this.options.paddingStart;else if(this.options.lanes===1)a=((e=o[o.length-1])==null?void 0:e.end)??0;else{const r=Array(this.options.lanes).fill(null);let d=o.length-1;for(;d>=0&&r.some(c=>c===null);){const c=o[d];r[c.lane]===null&&(r[c.lane]=c.end),d--}a=Math.max(...r.filter(c=>c!==null))}return Math.max(a-this.options.scrollMargin+this.options.paddingEnd,0)},this._scrollToOffset=(e,{adjustments:o,behavior:a})=>{this.options.scrollToFn(e,{behavior:a,adjustments:o},this)},this.measure=()=>{this.itemSizeCache=new Map,this.notify(!1)},this.setOptions(i)}}const Io=(t,i,e,o)=>{for(;t<=i;){const a=(t+i)/2|0,r=e(a);if(r<o)t=a+1;else if(r>o)i=a-1;else return a}return t>0?t-1:0};function Yc({measurements:t,outerSize:i,scrollOffset:e,lanes:o}){const a=t.length-1,r=p=>t[p].start;if(t.length<=o)return{startIndex:0,endIndex:a};let d=Io(0,a,r,e),c=d;if(o===1)for(;c<a&&t[c].end<e+i;)c++;else if(o>1){const p=Array(o).fill(0);for(;c<a&&p.some(h=>h<e+i);){const h=t[c];p[h.lane]=h.end,c++}const s=Array(o).fill(e+i);for(;d>=0&&s.some(h=>h>=e);){const h=t[d];s[h.lane]=h.start,d--}d=Math.max(0,d-d%o),c=Math.min(a,c+(o-1-c%o))}return{startIndex:d,endIndex:c}}function Zc(t){const i=new Wc(n.unref(t)),e=n.shallowRef(i),o=i._didMount();return n.watch(()=>n.unref(t).getScrollElement(),a=>{a&&i._willUpdate()},{immediate:!0}),n.watch(()=>n.unref(t),a=>{i.setOptions({...a,onChange:(r,d)=>{var c;n.triggerRef(e),(c=a.onChange)==null||c.call(a,r,d)}}),i._willUpdate(),n.triggerRef(e)},{immediate:!0}),n.onScopeDispose(o),e}function Jc(t){return Zc(n.computed(()=>({observeElementRect:zc,observeElementOffset:Uc,scrollToFn:Gc,...n.unref(t)})))}const zi={text:"text",password:"password",email:"email",number:"number"},Xc={name:"IbInput",props:{type:{type:String,default:zi.text,validator:t=>Object.keys(zi).includes(t)},disabled:{type:Boolean,required:!1,default:!1},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},id:{type:[String],default(){return dt()}},debounce:{type:[Number,String]},showIcon:{type:Boolean,default:!1},showClearButton:{type:Boolean,default:!0},clearButtonMessage:{type:String,default:""},settingsButtonMessage:{type:String,default:""},showPasswordMessage:{type:String,default:""},hidePasswordMessage:{type:String,default:""},value:{type:[String,Number],default:""},modelValue:{type:[String,Number]},settingsVerticalPosition:{type:String,default:li.bottom},settingsHorizontalPosition:{type:String,default:kn.right},readonly:{type:Boolean,default:!1},autocomplete:{type:String},isSuccess:{type:Boolean,default:!1},hideNumberActions:{type:Boolean,default:!1},decrementButtonMessage:{type:String,default:"Decrement"},incrementButtonMessage:{type:String,default:"Increment"},step:{type:Number,default:1},min:{type:Number,default:0},max:{type:Number,default:1/0},toFixed:{type:Number,default:0}},data(){return{actualValue:this.modelValue||this.value,showPassword:!1}},mounted(){setTimeout(()=>{this.$globalEvents.$emit(`label:disabled:${this.id}`,this.disabled)},10)},methods:{toggleShowPassword(){this.showPassword=!this.showPassword},clearInput(){this.actualValue="",this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("clear")},onBlur(){this.$emit("blur",this.actualValue)},onFocus(){this.$emit("focus",this.actualValue)},onInput(){this.debounce?this.delayedInput(this.actualValue):(this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue))},decrement(){this.actualValue>this.min&&(this.actualValue=(+this.actualValue-+this.step).toFixed(this.toFixed)),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},increment(){this.actualValue<this.max&&(this.actualValue=(+this.actualValue+ +this.step).toFixed(this.toFixed)),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},delayedInput(t){this.timer&&(clearTimeout(this.timer),this.timer=null),this.timer=setTimeout(()=>{this.$emit("update:modelValue",t),this.$emit("input",t)},this.debounce)},focus(){this.$refs.field.focus()}},computed:{hasSettings(){return!!this.$slots.settings},hasValue(){var t;return(t=this.actualValue)==null?void 0:t.toString().length},classes(){const t=["ib-input"];return this.hasErrorState&&t.push("ib-error"),this.showIcon&&t.push("ib-input-has-icon"),t},attrs(){let t=Bi({...this.$attrs},["onInput","onBlur"]);return t.type=this.type===zi.password?this.showPassword?"text":"password":this.type,t},hasErrorState(){return this.error||this.errorMessage.length}},watch:{value(t){this.actualValue=t},modelValue(t){this.actualValue=t},disabled(t){this.$globalEvents.$emit(`label:disabled:${this.id}`,t)}},emits:["input","blur","focus","clear","update:modelValue","label:disabled:undefined"],components:{IbAlert:jt,IbIconButton:Xe,IbIcon:Le,IbDropdown:si},directives:{Tooltip:St},inheritAttrs:!1},Qc=["aria-invalid","readonly","disabled","id","autocomplete","min","max","step"],ed={key:3,class:"number-button-group"},td={class:"divider"},nd={class:"settings-wrapper"};function id(t,i,e,o,a,r){const d=n.resolveComponent("ib-alert"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-icon-button"),s=n.resolveComponent("ib-dropdown"),h=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("div",null,[e.errorMessage?(n.openBlock(),n.createBlock(d,{key:0},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.createElementVNode("div",{class:n.normalizeClass(["ib-input-wrapper",{"has-settings":r.hasSettings,success:e.isSuccess,"numbers-type":e.type==="number"&&!e.hideNumberActions}])},[e.showIcon?(n.openBlock(),n.createBlock(c,{key:0,class:"icon-search",name:"search-outline"})):n.createCommentVNode("",!0),n.withDirectives(n.createElementVNode("input",n.mergeProps(r.attrs,{"onUpdate:modelValue":i[0]||(i[0]=f=>a.actualValue=f),ref:"field","aria-invalid":!!r.hasErrorState,readonly:e.readonly,disabled:e.disabled,id:e.id,autocomplete:e.autocomplete,class:r.classes,min:e.min,max:e.max,step:e.step,onInput:i[1]||(i[1]=f=>r.onInput(f)),onBlur:i[2]||(i[2]=f=>r.onBlur(f)),onFocus:i[3]||(i[3]=f=>r.onFocus(f))}),null,16,Qc),[[n.vModelDynamic,a.actualValue,void 0,{trim:!0}]]),e.type!=="password"&&e.showClearButton?n.withDirectives((n.openBlock(),n.createBlock(p,{key:1,kind:"ghost",class:"button-clear",disabled:e.readonly||e.disabled,"help-text":e.clearButtonMessage,"prevent-default":"",type:"button",onClick:r.clearInput,onKeypress:n.withKeys(r.clearInput,["enter"])},{default:n.withCtx(()=>[n.createVNode(c,{name:"close-outline"})]),_:1},8,["disabled","help-text","onClick","onKeypress"])),[[n.vShow,r.hasValue]]):n.createCommentVNode("",!0),e.isSuccess?(n.openBlock(),n.createBlock(c,{key:2,class:"succes-checkmark",name:"checkmark-circle"})):n.createCommentVNode("",!0),e.type==="number"&&!e.hideNumberActions?(n.openBlock(),n.createElementBlock("div",ed,[n.withDirectives(n.createElementVNode("div",td,null,512),[[n.vShow,r.hasValue]]),n.withDirectives((n.openBlock(),n.createBlock(p,{kind:"ghost",class:"button-decrement",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Decrement value",onBlur:r.onBlur,onClick:r.decrement,onKeypress:n.withKeys(r.decrement,["enter"])},{default:n.withCtx(()=>[n.createVNode(c,{name:"remove-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[h,e.decrementButtonMessage]]),n.withDirectives((n.openBlock(),n.createBlock(p,{kind:"ghost",class:"button-increment",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Increment value",onBlur:r.onBlur,onClick:r.increment,onKeypress:n.withKeys(r.increment,["enter"])},{default:n.withCtx(()=>[n.createVNode(c,{name:"add-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[h,e.incrementButtonMessage]])])):n.createCommentVNode("",!0),e.type==="password"?n.withDirectives((n.openBlock(),n.createBlock(p,{key:4,kind:"ghost",class:"toggle-password","prevent-default":"",type:"button",disabled:e.disabled,"help-text":a.showPassword?e.hidePasswordMessage:e.showPasswordMessage,onClick:n.withModifiers(r.toggleShowPassword,["prevent"])},{default:n.withCtx(()=>[n.createVNode(c,{name:a.showPassword?"eye-off-outline":"eye-outline"},null,8,["name"])]),_:1},8,["disabled","help-text","onClick"])),[[n.vShow,r.hasValue]]):n.createCommentVNode("",!0),r.hasSettings?(n.openBlock(),n.createBlock(s,{key:5,class:"settings-dropdown-wrapper",horizontal:e.settingsHorizontalPosition,vertical:e.settingsVerticalPosition},{trigger:n.withCtx(()=>[n.createVNode(p,{"prevent-default":"","help-text":e.settingsButtonMessage,class:"options-trigger",kind:"ghost"},{default:n.withCtx(()=>[n.createVNode(c,{name:"options"})]),_:1},8,["help-text"])]),body:n.withCtx(()=>[n.createElementVNode("div",nd,[n.renderSlot(t.$slots,"settings",{},void 0,!0)])]),_:3},8,["horizontal","vertical"])):n.createCommentVNode("",!0)],2)])}const Ui=be(Xc,[["render",id],["__scopeId","data-v-c59dbdf5"]]),rd={name:"IbCheckbox",model:{event:"input"},props:{label:String,error:{type:[Boolean,null],default:!1},name:String,id:{type:String,default(){return dt()}},value:{type:[String,Number]},modelValue:{type:[Boolean,String]},isChecked:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},disableFocus:{type:Boolean,default:!1},required:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"}},watch:{isChecked(t){this.checked=t},modelValue(t){this.$emit("update:modelValue",this.modelValue),this.checked=t==="0"?!1:!!t}},data(){return{checked:this.modelValue?this.modelValue==="0"?!1:!!this.modelValue:this.isChecked}},methods:{onChange(t){this.disabled||this.readonly||(this.checked=!this.checked,this.$emit("update:modelValue",this.checked),this.$emit("input",this.checked))}},computed:{classes(){return{"ib-checkbox":!0,"ib-has-error":this.error,"ib-checkbox-filled":this.checked,"ib-checkbox-disabled":this.disabled,"ib-checkbox-readonly":this.readonly,"ib-checkbox-indeterminate":this.indeterminate}},indeterminate(){return this.isChecked===null},attrs(){const t={...Bi({...this.$attrs})};return delete t.class,t.class=this.classes,t}},components:{IbIcon:Le},inheritAttrs:!1},od=["for","tabindex","aria-checked"],ad=["name","id","value","disabled","required"],ld=["name","disabled","required"],sd={class:"ib-checkbox-body"},cd={key:0,class:"required"},dd={class:"ib-checkbox-input"},ud={key:1,class:"ib-checkbox-label"},fd={key:0,class:"required"};function hd(t,i,e,o,a,r){var c;const d=n.resolveComponent("ib-icon");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-checkbox-wrapper",this.$attrs.class])},[n.createElementVNode("label",n.mergeProps(r.attrs,{role:"checkbox",for:e.id,tabindex:e.disabled|e.disableFocus?-1:0,"aria-checked":!!a.checked,onClick:i[2]||(i[2]=n.withModifiers((...p)=>r.onChange&&r.onChange(...p),["prevent","stop"])),onKeypress:i[3]||(i[3]=n.withModifiers((...p)=>r.onChange&&r.onChange(...p),["prevent"]))}),[n.withDirectives(n.createElementVNode("input",{tabindex:"-1",type:"checkbox",name:e.name,id:e.id,value:e.value??1,disabled:e.disabled,required:e.required,"onUpdate:modelValue":i[0]||(i[0]=p=>a.checked=p),onClick:i[1]||(i[1]=(...p)=>r.onChange&&r.onChange(...p))},null,8,ad),[[n.vModelCheckbox,a.checked]]),!e.value&&!a.checked?(n.openBlock(),n.createElementBlock("input",{key:0,value:"0",type:"hidden",name:e.name,disabled:e.disabled,required:e.required},null,8,ld)):n.createCommentVNode("",!0),n.createElementVNode("div",sd,[e.labelPosition==="left"&&e.label.length?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass(["ib-checkbox-label",{"ib-checkbox-label-left":e.labelPosition==="left"}])},[e.required?(n.openBlock(),n.createElementBlock("span",cd,"*")):n.createCommentVNode("",!0),n.createTextVNode(" "+n.toDisplayString(e.label),1)],2)):n.createCommentVNode("",!0),n.createElementVNode("span",dd,[n.withDirectives(n.createVNode(d,{name:"checkmark-sharp"},null,512),[[n.vShow,a.checked&&!r.indeterminate]]),n.withDirectives(n.createVNode(d,{class:n.normalizeClass("checkbox-undeterminate-icon"),name:"remove-sharp"},null,512),[[n.vShow,r.indeterminate]])]),e.labelPosition==="right"&&((c=e.label)!=null&&c.length)?(n.openBlock(),n.createElementBlock("span",ud,[e.required?(n.openBlock(),n.createElementBlock("span",fd,"*")):n.createCommentVNode("",!0),n.createTextVNode(" "+n.toDisplayString(e.label),1)])):n.createCommentVNode("",!0)])],16,od)],2)}const Ki=be(rd,[["render",hd],["__scopeId","data-v-50848111"]]),pd={name:"IbToggle",model:{prop:"isChecked",event:"input"},props:{isChecked:{type:Boolean,required:!1},id:{type:String,default:()=>dt()},disabled:{type:Boolean,default:!1},name:{type:String,default:"active"},label:{type:String,default:""},error:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"},helpMessage:{type:String,default:""},helpMessageOff:{type:String,default:""}},watch:{isChecked(t){this.checked=t}},data(){return{checked:this.isChecked}},methods:{onChange(){this.disabled||(this.checked=!this.checked,this.$emit("input",this.checked))}},computed:{classes(){return{"ib-toggle-container":!0,"has-error":this.error,"toggle-on":this.checked,"toggle-disabled":this.disabled,"label-position-left":this.labelPosition==="left"}}},components:{IbIcon:Le,IbTooltip:_n}},md=["aria-checked","tabindex"],gd={class:"toggle-wrapper",ref:"wrapper"},yd={class:"toggle",ref:"toggle"},bd=["name","checked","id","disabled"],vd=n.createElementVNode("span",{class:"toggle-slider round"},null,-1),_d={key:0,class:"toggle-label"};function $d(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-tooltip");return n.openBlock(),n.createElementBlock("label",{role:"switch","aria-checked":a.checked,tabindex:e.disabled?-1:0,class:n.normalizeClass(r.classes),onKeypress:[i[2]||(i[2]=n.withKeys(n.withModifiers((...p)=>r.onChange&&r.onChange(...p),["prevent"]),["space"])),i[3]||(i[3]=n.withKeys(n.withModifiers((...p)=>r.onChange&&r.onChange(...p),["prevent"]),["enter"]))]},[n.createElementVNode("div",gd,[n.createElementVNode("div",yd,[n.createElementVNode("input",{tabindex:"-1",type:"checkbox",value:"1",name:e.name,checked:a.checked,id:e.id,disabled:e.disabled,onClick:i[0]||(i[0]=(...p)=>r.onChange&&r.onChange(...p)),onInput:i[1]||(i[1]=n.withModifiers(()=>{},["stop"]))},null,40,bd),vd,n.createVNode(d,{class:"checked-icon",name:"checkmark"}),n.createVNode(d,{class:"unchecked-icon",name:"close"})],512)],512),e.label.length?(n.openBlock(),n.createElementBlock("span",_d,n.toDisplayString(e.label),1)):n.createCommentVNode("",!0),e.helpMessage.length?(n.openBlock(),n.createBlock(c,{key:1,text:a.checked?e.helpMessage:e.helpMessageOff.length?e.helpMessageOff:e.helpMessage},null,8,["text"])):n.createCommentVNode("",!0)],42,md)}const Po=be(pd,[["render",$d]]),wd={name:"select-option",props:{option:{type:Object},name:String,parentAutoCheck:{type:Boolean,default:!1},isMultiple:{type:Boolean,default:!0},uid:{type:String,default:""},onlyEndNodes:{type:Boolean,default:!1},htmlTitle:{type:Boolean,default:!1},showInput:{type:Boolean,default:!0},isBookmarkable:{type:Boolean,default:!1},isBookmarked:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabeticStyle:{type:Boolean,default:!1}},mounted(){this.option.hasOwnProperty("children")&&this.option.children&&this.checkParent(),this.option.showTooltipByDefault&&(this.showTooltip=!0)},updated(){this.$nextTick(()=>{this.option.showTooltipByDefault?this.showTooltip=!0:So(this.$el.querySelector(".option-label"))&&(this.showTooltip=!0)})},data(){return{showTooltip:!1,generateUID:dt}},methods:{onKeydown(t){t.keyCode===$o&&(t.preventDefault(),this.onChange()),this.hasVisibleChildren&&(t.keyCode===Es&&(this.option.isChildrenVisible=!0),t.keyCode===Os&&(this.option.isChildrenVisible=!1))},onChange(){var t,i;!this.isMultiple&&!this.isChecked(this.option)&&((t=this.$refs.component)==null||t.onChange()),this.isMultiple&&((i=this.$refs.component)==null||i.onChange())},toggle(t,i=!0){this.check(this.option,t,!0,i)},check(t,i,e,o){if(!this.isMultiple&&this.hasVisibleChildren){this.toggleChildrenVisibility();return}this.$emit("check",t,i,e),o&&t.children&&t.children.forEach(a=>{this.check(a,i,!1,!0)})},toggleChildrenVisibility(){this.option.isChildrenVisible=!this.option.isChildrenVisible},checkChildren(t,i,e){e&&this.isMultiple&&this.$nextTick(()=>{this.checkParent()}),this.$emit("check",t,i,!1)},checkParent(){const t=this.option.children.filter(e=>e.checked).length,i=t>=this.option.children.length;(!this.option.checked&&i||this.option.checked&&!i)&&this.parentAutoCheck&&this.toggle(!this.option.checked,!1)},calculateChildren(t,i,e=!1){let o=0;return t.children&&t.children.forEach(a=>{(!i||i(a))&&o++,e&&(o+=this.calculateChildren(a,i,e))}),o},isChecked(t){if(this.hasChildren){const i=this.childrenSelectedCount;if(i>0&&this.countOfAllChildren>i||!i&&this.option.checked&&!this.parentAutoCheck||this.countOfAllChildren==i&&!this.option.checked&&!this.parentAutoCheck)return null}return t.checked?!0:t.isIndeterminate?null:!1}},computed:{component(){return this.isMultiple&&this.isToggle?Po:Ki},hasChildren(){return!!(this.option.children&&this.option.children.length)},hasVisibleChildren(){return this.calculateChildren(this.option,t=>t.visible)},iconName(){return this.option.isChildrenVisible?"chevron-down":"chevron-forward"},id(){return this.uid+"_"+this.option.id},actualName(){return this.onlyEndNodes&&this.option.children&&this.option.children.length?"":this.name},childrenSelectedCount(){return this.calculateChildren(this.option,t=>t.checked,!0)},countOfAllChildren(){return this.calculateChildren(this.option,()=>!0,!0)}},components:{IbIcon:Le,List:Fi,IbIconButton:Xe},directives:{Tooltip:St}},kd=["aria-selected","aria-label","id"],Cd={key:0,class:"bookmarkable-option-content"},Od={class:"option-label"},Ed={key:1,class:"option-label"},Sd=["innerHTML"],xd=["innerHTML"],Td={key:2,class:"option-label"};function Nd(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon"),c=n.resolveComponent("ib-icon-button"),p=n.resolveComponent("select-option"),s=n.resolveComponent("list"),h=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("li",null,[n.withDirectives((n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["tree-select-option",{"tree-select-option-checked":e.option.checked,"tree-select-option-indeterminate":r.isChecked(e.option)===null,"tree-select-option-margin":r.hasVisibleChildren,active:e.option.isChildrenVisible,"is-multiple":e.isMultiple,"is-not-multiple":!e.isMultiple,"has-icon":e.option.icon,"tree-select-option-toggle":this.isToggle&&this.isMultiple,"alphabetic-option":e.alphabeticStyle}]),tabindex:"0",role:"option","aria-selected":r.isChecked(e.option),"aria-label":e.option.title,id:"option-"+r.id,onKeydown:i[3]||(i[3]=n.withModifiers((...f)=>r.onKeydown&&r.onKeydown(...f),["self"])),onFocus:i[4]||(i[4]=f=>t.$emit("onFocus",`option-${r.id}`))},[n.withDirectives(n.createVNode(c,{"disabled-focus":!0,kind:"ghost",class:"toggle-children",onClick:n.withModifiers(r.toggleChildrenVisibility,["prevent"])},{default:n.withCtx(()=>[n.createVNode(d,{name:r.iconName},null,8,["name"])]),_:1},8,["onClick"]),[[n.vShow,r.hasVisibleChildren]]),n.createElementVNode("div",{onClick:i[1]||(i[1]=n.withModifiers((...f)=>r.onChange&&r.onChange(...f),["prevent"])),class:n.normalizeClass({disabled:e.option.isDisabled,"tree-select-option-label":!0,"tree-select-option-has-children":r.hasVisibleChildren,active:!e.showInput&&e.option.checked})},[n.withDirectives((n.openBlock(),n.createBlock(n.resolveDynamicComponent(r.component),{ref:"component",tabindex:"-1","disable-focus":"","aria-label":e.option.title,name:r.actualName,value:e.option.id,id:"input"+r.id+a.generateUID(),"is-checked":r.isChecked(e.option),disabled:e.option.isDisabled,readonly:e.option.readonly,autocomplete:"off",autocorrect:"off",autocapitalize:"off",spellcheck:"false",onInput:r.toggle},null,40,["aria-label","name","value","id","is-checked","disabled","readonly","onInput"])),[[n.vShow,e.showInput]]),e.isBookmarkable?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass("bookmarkable-option-title "+(e.isBookmarked?"bookmarked":""))},[r.hasChildren?(n.openBlock(),n.createElementBlock("span",Ed,n.toDisplayString(e.option.title),1)):(n.openBlock(),n.createElementBlock("div",Cd,[n.createElementVNode("span",Od,n.toDisplayString(e.option.title),1),n.withDirectives((n.openBlock(),n.createBlock(c,{onClick:i[0]||(i[0]=n.withModifiers(f=>t.$emit("toggle-bookmark",e.option),["stop","prevent"])),kind:"ghost"},{default:n.withCtx(()=>[n.createVNode(d,{name:e.isBookmarked?"star":"star-outline"},null,8,["name"])]),_:1})),[[h,t.lang(e.isBookmarked?"unpin":"pin_to_top","select")]])]))],2)):e.htmlTitle?(n.openBlock(),n.createElementBlock(n.Fragment,{key:1},[r.hasChildren?(n.openBlock(),n.createElementBlock("span",{key:1,class:"option-label",innerHTML:e.option.title},null,8,xd)):(n.openBlock(),n.createElementBlock("span",{key:0,class:"option-label",innerHTML:e.option.title},null,8,Sd))],64)):(n.openBlock(),n.createElementBlock("span",Td,[e.option.icon?(n.openBlock(),n.createBlock(d,{key:0,name:e.option.icon},null,8,["name"])):n.createCommentVNode("",!0),n.createTextVNode(" "+n.toDisplayString(e.option.title),1)]))],2),r.hasChildren?n.withDirectives((n.openBlock(),n.createBlock(s,{key:0},{default:n.withCtx(()=>[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(e.option.children,f=>n.withDirectives((n.openBlock(),n.createBlock(p,{key:f.value,option:f,name:e.name,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"show-input":e.showInput,onCheck:r.checkChildren,onToggleBookmark:i[2]||(i[2]=l=>t.$emit("toggle-bookmark",l)),uid:e.uid,"is-bookmarkable":e.isBookmarkable},null,8,["option","name","parent-auto-check","is-multiple","show-input","onCheck","uid","is-bookmarkable"])),[[n.vShow,f.visible]])),128))]),_:1},512)),[[n.vShow,r.hasVisibleChildren&&e.option.isChildrenVisible]]):n.createCommentVNode("",!0)],42,kd)),[[h,a.showTooltip?e.option.isDisabled?e.option.disableTooltip:e.option.title:""]])])}const Ad=be(wd,[["render",Nd]]);var Ft=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function En(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var ci={exports:{}};/*!***************************************************
25
28
  * mark.js v8.11.1
26
29
  * https://markjs.io/
27
30
  * Copyright (c) 2014–2018, Julian Kühnel
28
31
  * Released under the MIT license https://git.io/vwTVl
29
- *****************************************************/(function(t,n){(function(e,o){t.exports=o()})(je,function(){class e{constructor(i,s=!0,l=[],u=5e3){this.ctx=i,this.iframes=s,this.exclude=l,this.iframesTimeout=u}static matches(i,s){const l=typeof s=="string"?[s]:s,u=i.matches||i.matchesSelector||i.msMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector||i.webkitMatchesSelector;if(u){let d=!1;return l.every(p=>!u.call(i,p)||(d=!0,!1)),d}return!1}getContexts(){let i=[];return(this.ctx!==void 0&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:typeof this.ctx=="string"?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(s=>{const l=i.filter(u=>u.contains(s)).length>0;i.indexOf(s)!==-1||l||i.push(s)}),i}getIframeContents(i,s,l=()=>{}){let u;try{const d=i.contentWindow;if(u=d.document,!d||!u)throw new Error("iframe inaccessible")}catch{l()}u&&s(u)}isIframeBlank(i){const s="about:blank",l=i.getAttribute("src").trim();return i.contentWindow.location.href===s&&l!==s&&l}observeIframeLoad(i,s,l){let u=!1,d=null;const p=()=>{if(!u){u=!0,clearTimeout(d);try{this.isIframeBlank(i)||(i.removeEventListener("load",p),this.getIframeContents(i,s,l))}catch{l()}}};i.addEventListener("load",p),d=setTimeout(p,this.iframesTimeout)}onIframeReady(i,s,l){try{i.contentWindow.document.readyState==="complete"?this.isIframeBlank(i)?this.observeIframeLoad(i,s,l):this.getIframeContents(i,s,l):this.observeIframeLoad(i,s,l)}catch{l()}}waitForIframes(i,s){let l=0;this.forEachIframe(i,()=>!0,u=>{l++,this.waitForIframes(u.querySelector("html"),()=>{--l||s()})},u=>{u||s()})}forEachIframe(i,s,l,u=()=>{}){let d=i.querySelectorAll("iframe"),p=d.length,f=0;d=Array.prototype.slice.call(d);const c=()=>{--p<=0&&u(f)};p||c(),d.forEach(h=>{e.matches(h,this.exclude)?c():this.onIframeReady(h,v=>{s(h)&&(f++,l(v)),c()},c)})}createIterator(i,s,l){return document.createNodeIterator(i,s,l,!1)}createInstanceOnIframe(i){return new e(i.querySelector("html"),this.iframes)}compareNodeIframe(i,s,l){const u=i.compareDocumentPosition(l),d=Node.DOCUMENT_POSITION_PRECEDING;return!!(u&d&&(s===null||s.compareDocumentPosition(l)&Node.DOCUMENT_POSITION_FOLLOWING))}getIteratorNode(i){const s=i.previousNode();return{prevNode:s,node:(s===null||i.nextNode())&&i.nextNode()}}checkIframeFilter(i,s,l,u){let d=!1,p=!1;return u.forEach((f,c)=>{f.val===l&&(d=c,p=f.handled)}),this.compareNodeIframe(i,s,l)?(d!==!1||p?d===!1||p||(u[d].handled=!0):u.push({val:l,handled:!0}),!0):(d===!1&&u.push({val:l,handled:!1}),!1)}handleOpenIframes(i,s,l,u){i.forEach(d=>{d.handled||this.getIframeContents(d.val,p=>{this.createInstanceOnIframe(p).forEachNode(s,l,u)})})}iterateThroughNodes(i,s,l,u,d){const p=this.createIterator(s,i,u);let f,c,h=[],v=[],m=()=>({prevNode:c,node:f}=this.getIteratorNode(p),f);for(;m();)this.iframes&&this.forEachIframe(s,_=>this.checkIframeFilter(f,c,_,h),_=>{this.createInstanceOnIframe(_).forEachNode(i,y=>v.push(y),u)}),v.push(f);v.forEach(_=>{l(_)}),this.iframes&&this.handleOpenIframes(h,i,l,u),d()}forEachNode(i,s,l,u=()=>{}){const d=this.getContexts();let p=d.length;p||u(),d.forEach(f=>{const c=()=>{this.iterateThroughNodes(i,f,s,l,()=>{--p<=0&&u()})};this.iframes?this.waitForIframes(f,c):c()})}}class o{constructor(i){this.ctx=i,this.ie=!1;const s=window.navigator.userAgent;(s.indexOf("MSIE")>-1||s.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(i){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},i)}get opt(){return this._opt}get iterator(){return new e(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(i,s="debug"){const l=this.opt.log;this.opt.debug&&typeof l=="object"&&typeof l[s]=="function"&&l[s](`mark.js: ${i}`)}escapeStr(i){return i.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(i){return this.opt.wildcards!=="disabled"&&(i=this.setupWildcardsRegExp(i)),i=this.escapeStr(i),Object.keys(this.opt.synonyms).length&&(i=this.createSynonymsRegExp(i)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(i=this.setupIgnoreJoinersRegExp(i)),this.opt.diacritics&&(i=this.createDiacriticsRegExp(i)),i=this.createMergedBlanksRegExp(i),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(i=this.createJoinersRegExp(i)),this.opt.wildcards!=="disabled"&&(i=this.createWildcardsRegExp(i)),i=this.createAccuracyRegExp(i)}createSynonymsRegExp(i){const s=this.opt.synonyms,l=this.opt.caseSensitive?"":"i",u=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let d in s)if(s.hasOwnProperty(d)){const p=s[d],f=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(d):this.escapeStr(d),c=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(p):this.escapeStr(p);f!==""&&c!==""&&(i=i.replace(new RegExp(`(${this.escapeStr(f)}|${this.escapeStr(c)})`,`gm${l}`),u+`(${this.processSynomyms(f)}|${this.processSynomyms(c)})`+u))}return i}processSynomyms(i){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(i=this.setupIgnoreJoinersRegExp(i)),i}setupWildcardsRegExp(i){return(i=i.replace(/(?:\\)*\?/g,s=>s.charAt(0)==="\\"?"?":"")).replace(/(?:\\)*\*/g,s=>s.charAt(0)==="\\"?"*":"")}createWildcardsRegExp(i){let s=this.opt.wildcards==="withSpaces";return i.replace(/\u0001/g,s?"[\\S\\s]?":"\\S?").replace(/\u0002/g,s?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(i){return i.replace(/[^(|)\\]/g,(s,l,u)=>{let d=u.charAt(l+1);return/[(|)\\]/.test(d)||d===""?s:s+"\0"})}createJoinersRegExp(i){let s=[];const l=this.opt.ignorePunctuation;return Array.isArray(l)&&l.length&&s.push(this.escapeStr(l.join(""))),this.opt.ignoreJoiners&&s.push("\\u00ad\\u200b\\u200c\\u200d"),s.length?i.split(/\u0000+/).join(`[${s.join("")}]*`):i}createDiacriticsRegExp(i){const s=this.opt.caseSensitive?"":"i",l=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let u=[];return i.split("").forEach(d=>{l.every(p=>{if(p.indexOf(d)!==-1){if(u.indexOf(p)>-1)return!1;i=i.replace(new RegExp(`[${p}]`,`gm${s}`),`[${p}]`),u.push(p)}return!0})}),i}createMergedBlanksRegExp(i){return i.replace(/[\s]+/gim,"[\\s]+")}createAccuracyRegExp(i){const s="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿";let l=this.opt.accuracy,u=typeof l=="string"?l:l.value,d=typeof l=="string"?[]:l.limiters,p="";switch(d.forEach(f=>{p+=`|${this.escapeStr(f)}`}),u){case"partially":default:return`()(${i})`;case"complementary":return`()([^${p="\\s"+(p||this.escapeStr(s))}]*${i}[^${p}]*)`;case"exactly":return`(^|\\s${p})(${i})(?=$|\\s${p})`}}getSeparatedKeywords(i){let s=[];return i.forEach(l=>{this.opt.separateWordSearch?l.split(" ").forEach(u=>{u.trim()&&s.indexOf(u)===-1&&s.push(u)}):l.trim()&&s.indexOf(l)===-1&&s.push(l)}),{keywords:s.sort((l,u)=>u.length-l.length),length:s.length}}isNumeric(i){return Number(parseFloat(i))==i}checkRanges(i){if(!Array.isArray(i)||Object.prototype.toString.call(i[0])!=="[object Object]")return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(i),[];const s=[];let l=0;return i.sort((u,d)=>u.start-d.start).forEach(u=>{let{start:d,end:p,valid:f}=this.callNoMatchOnInvalidRanges(u,l);f&&(u.start=d,u.length=p-d,s.push(u),l=p)}),s}callNoMatchOnInvalidRanges(i,s){let l,u,d=!1;return i&&i.start!==void 0?(u=(l=parseInt(i.start,10))+parseInt(i.length,10),this.isNumeric(i.start)&&this.isNumeric(i.length)&&u-s>0&&u-l>0?d=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(i)}`),this.opt.noMatch(i))):(this.log(`Ignoring invalid range: ${JSON.stringify(i)}`),this.opt.noMatch(i)),{start:l,end:u,valid:d}}checkWhitespaceRanges(i,s,l){let u,d=!0,p=l.length,f=s-p,c=parseInt(i.start,10)-f;return(u=(c=c>p?p:c)+parseInt(i.length,10))>p&&(u=p,this.log(`End range automatically set to the max value of ${p}`)),c<0||u-c<0||c>p||u>p?(d=!1,this.log(`Invalid range: ${JSON.stringify(i)}`),this.opt.noMatch(i)):l.substring(c,u).replace(/\s+/g,"")===""&&(d=!1,this.log("Skipping whitespace only range: "+JSON.stringify(i)),this.opt.noMatch(i)),{start:c,end:u,valid:d}}getTextNodes(i){let s="",l=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,u=>{l.push({start:s.length,end:(s+=u.textContent).length,node:u})},u=>this.matchesExclude(u.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT,()=>{i({value:s,nodes:l})})}matchesExclude(i){return e.matches(i,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(i,s,l){const u=this.opt.element?this.opt.element:"mark",d=i.splitText(s),p=d.splitText(l-s);let f=document.createElement(u);return f.setAttribute("data-markjs","true"),this.opt.className&&f.setAttribute("class",this.opt.className),f.textContent=d.textContent,d.parentNode.replaceChild(f,d),p}wrapRangeInMappedTextNode(i,s,l,u,d){i.nodes.every((p,f)=>{const c=i.nodes[f+1];if(c===void 0||c.start>s){if(!u(p.node))return!1;const h=s-p.start,v=(l>p.end?p.end:l)-p.start,m=i.value.substr(0,p.start),_=i.value.substr(v+p.start);if(p.node=this.wrapRangeInTextNode(p.node,h,v),i.value=m+_,i.nodes.forEach((y,g)=>{g>=f&&(i.nodes[g].start>0&&g!==f&&(i.nodes[g].start-=v),i.nodes[g].end-=v)}),l-=v,d(p.node.previousSibling,p.start),!(l>p.end))return!1;s=p.end}return!0})}wrapMatches(i,s,l,u,d){const p=s===0?0:s+1;this.getTextNodes(f=>{f.nodes.forEach(c=>{let h;for(c=c.node;(h=i.exec(c.textContent))!==null&&h[p]!=="";){if(!l(h[p],c))continue;let v=h.index;if(p!==0)for(let m=1;m<p;m++)v+=h[m].length;c=this.wrapRangeInTextNode(c,v,v+h[p].length),u(c.previousSibling),i.lastIndex=0}}),d()})}wrapMatchesAcrossElements(i,s,l,u,d){const p=s===0?0:s+1;this.getTextNodes(f=>{let c;for(;(c=i.exec(f.value))!==null&&c[p]!=="";){let h=c.index;if(p!==0)for(let m=1;m<p;m++)h+=c[m].length;const v=h+c[p].length;this.wrapRangeInMappedTextNode(f,h,v,m=>l(c[p],m),(m,_)=>{i.lastIndex=_,u(m)})}d()})}wrapRangeFromIndex(i,s,l,u){this.getTextNodes(d=>{const p=d.value.length;i.forEach((f,c)=>{let{start:h,end:v,valid:m}=this.checkWhitespaceRanges(f,p,d.value);m&&this.wrapRangeInMappedTextNode(d,h,v,_=>s(_,f,d.value.substring(h,v),c),_=>{l(_,f)})}),u()})}unwrapMatches(i){const s=i.parentNode;let l=document.createDocumentFragment();for(;i.firstChild;)l.appendChild(i.removeChild(i.firstChild));s.replaceChild(l,i),this.ie?this.normalizeTextNode(s):s.normalize()}normalizeTextNode(i){if(i){if(i.nodeType===3)for(;i.nextSibling&&i.nextSibling.nodeType===3;)i.nodeValue+=i.nextSibling.nodeValue,i.parentNode.removeChild(i.nextSibling);else this.normalizeTextNode(i.firstChild);this.normalizeTextNode(i.nextSibling)}}markRegExp(i,s){this.opt=s,this.log(`Searching with expression "${i}"`);let l=0,u="wrapMatches";const d=p=>{l++,this.opt.each(p)};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),this[u](i,this.opt.ignoreGroups,(p,f)=>this.opt.filter(f,p,l),d,()=>{l===0&&this.opt.noMatch(i),this.opt.done(l)})}mark(i,s){this.opt=s;let l=0,u="wrapMatches";const{keywords:d,length:p}=this.getSeparatedKeywords(typeof i=="string"?[i]:i),f=this.opt.caseSensitive?"":"i",c=h=>{let v=new RegExp(this.createRegExp(h),`gm${f}`),m=0;this.log(`Searching with expression "${v}"`),this[u](v,1,(_,y)=>this.opt.filter(y,h,l,m),_=>{m++,l++,this.opt.each(_)},()=>{m===0&&this.opt.noMatch(h),d[p-1]===h?this.opt.done(l):c(d[d.indexOf(h)+1])})};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),p===0?this.opt.done(l):c(d[0])}markRanges(i,s){this.opt=s;let l=0,u=this.checkRanges(i);u&&u.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(u)),this.wrapRangeFromIndex(u,(d,p,f,c)=>this.opt.filter(d,p,f,c),(d,p)=>{l++,this.opt.each(d,p)},()=>{this.opt.done(l)})):this.opt.done(l)}unmark(i){this.opt=i;let s=this.opt.element?this.opt.element:"*";s+="[data-markjs]",this.opt.className&&(s+=`.${this.opt.className}`),this.log(`Removal selector "${s}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,l=>{this.unwrapMatches(l)},l=>{const u=e.matches(l,s),d=this.matchesExclude(l);return!u||d?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},this.opt.done)}}return function(a){const i=new o(a);return this.mark=(s,l)=>(i.mark(s,l),this),this.markRegExp=(s,l)=>(i.markRegExp(s,l),this),this.markRanges=(s,l)=>(i.markRanges(s,l),this),this.unmark=s=>(i.unmark(s),this),this}})})(xo);var pd=xo.exports;const md=Cn(pd),gd={props:{infiniteLoader:{type:Boolean,default:!0}},watch:{infiniteLoader(t){t||infiniteLoaderObserver.disconnect()}},data(){return{infiniteLoaderObserver:null}},mounted(){this.infiniteLoader&&(this.infiniteLoaderObserver=new IntersectionObserver(t=>{t.forEach(n=>{n.isIntersecting&&this.$emit("loadMoreOptions")})}),this.infiniteLoaderObserver.observe(this.$refs.infinityLoader))},beforeDestroy(){this.infiniteLoader&&(infiniteLoaderObserver==null||infiniteLoaderObserver.disconnect())},emits:["loadMoreOptions"]};function yd(t,n){let e=null;function o(...a){e&&clearTimeout(e),e=setTimeout(()=>{t.apply(this,a),e=null},n)}return o.cancel=function(){e&&(clearTimeout(e),e=null)},o}const wp="";function To(t){return JSON.parse(JSON.stringify(t))}const bd={name:"IbTreeSelect",inject:["LANG_COMPONENTS"],mixins:[gd],props:{classList:[String,Array],keywordHighlighter:{type:Boolean,default:!0},placeholder:{type:String,default:""},searchPlaceholderText:{type:String,default:""},clearButtonMessage:{type:String,default:""},showClearButton:{type:Boolean,default:!0},isResizable:{type:Boolean,default:!1},menuSize:{type:[String,Number]},initialSize:{left:0,right:0},ariaLabel:{type:String,default:""},name:String,id:{type:String,default(){return pt()}},options:{type:[Array,Function],default(){return[]}},modelValue:{type:[Number,String,Array]},value:{type:[Number,String,Array],default(){return[]}},maxSelectedNames:{type:Number,default:2},isMultiple:{type:Boolean,default:!0},parentAutoCheck:{type:Boolean,default:!0},strings:{type:Object,default(){return{}}},onlyEndNodes:{type:Boolean,default:!1},isRequired:{type:Boolean,default:!0},htmlOptionTitle:{type:Boolean,default:!1},isBookmarkable:{type:Boolean,default:!1},initBookmarks:{type:Array,default:()=>[]},showInputs:{type:Boolean,default(t){return t.isMultiple}},dependency:{type:String},filterId:{type:String,default(){return pt()}},staticPlaceholder:{type:Boolean,default:!1},useSearch:{type:Boolean,default:!1},isWatching:{type:Boolean,default:!1},vertical:{type:String},emptyMessage:{type:String,default:""},errorMessage:{type:String,default:""},allOptions:{type:Boolean,default:!0},watchClearValue:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabetSort:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},searchDebounce:{type:Number,default:500},alphabeticStyle:{type:Boolean,default:!1}},emits:["close","input","blur","search","resize","submit","clearValue","toggle-bookmarked-option","update:modelValue"],watch:{value(t){this.val=t,(!Array.isArray(t)||t.join(",")!==Object.keys(this.selected).join(","))&&this.setPreparedValues(this.actualOptions,!1)},modelValue:{handler(t){this.val=t,this.actualOptions=[],this.setPreparedValues()},deep:!0},val(t){this.watchClearValue&&(!t||Array.isArray(t)&&!t.length)&&this.setPreparedValues(this.actualOptions).then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})})},options:{handler(t){this.initialOptions=typeof t=="function"?t:To(t)},deep:!0},initialOptions(t){let n=!0;if(typeof t=="function")n=!1;else{const e=[],o=t;Array.prototype.forEach.call(o,a=>{a.id!==void 0&&e.push(a.id)}),n=JSON.stringify(e)===JSON.stringify(this.optionsIdsWatch),this.optionsIdsWatch=e}(this.isInitialized&&!n||this.isWatching)&&this.setPreparedValues().then(()=>{const e=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:e,filter:this.filterId})})},dependency(t,n){this.$nextTick(()=>{this.registerDependency(n)})},initBookmarks(){this.actualBookmarkedOptions={},this.setBookmarkedOptions(this.actualOptions)}},mounted(){this.marker=new md(this.$refs.list.$el),this.registerDependency(),this.$globalEvents.$on("select:refresh",()=>{this.setPreparedValues()}),document.addEventListener("mousemove",this.onResize),document.addEventListener("mouseup",this.endResizing)},data(){var t,n,e,o,a,i,s,l;return this.defaultFilter=yd(u=>{this.marker.unmark();const d=this.filterString.toLowerCase().trim();this.countVisibleChildren=this.filterFunc.call(this,u,d),d&&this.keywordHighlighter&&this.marker.mark(d)},1e3),{initialOptions:typeof this.options=="function"?this.options:To(this.options),val:this.modelValue?this.modelValue:this.value,size:{left:this.initialSize&&this.initialSize.left||0,right:this.initialSize&&this.initialSize.right||0},resizingProp:null,isInitialized:!1,optionsIdsWatch:[],isLoading:!1,actualName:this.isMultiple?this.name+"[]":this.name,filterString:"",actualOptions:[],actualBookmarkedOptions:{},selected:[],isOpen:!1,verticalVal:this.vertical??"bottom",allOptionsIsChecked:!0,hasTreeChildren:!1,uid:`f${(~~(Math.random()*1e8)).toString(16)}`,focusedOptionId:"",actualStrings:{searchPlaceholder:lang(this.searchPlaceholderText.length?this.searchPlaceholderText:"search_placeholder",(t=this.LANG_COMPONENTS)==null?void 0:t.COMPONENT_SELECT),emptyTitle:lang("empty_title",(n=this.LANG_COMPONENTS)==null?void 0:n.COMPONENT_SELECT),selectAllOptions:lang("all_options",(e=this.LANG_COMPONENTS)==null?void 0:e.COMPONENT_SELECT),allSelected:lang("all_selected",(o=this.LANG_COMPONENTS)==null?void 0:o.COMPONENT_SELECT),loading:lang("loading",(a=this.LANG_COMPONENTS)==null?void 0:a.COMPONENT_SELECT)+"...",selectedCount:lang("selected_count",(i=this.LANG_COMPONENTS)==null?void 0:i.COMPONENT_SELECT),buttonTitle:this.buttonTitle||lang("button_title",(s=this.LANG_COMPONENTS)==null?void 0:s.COMPONENT_SELECT),requiredDependencyNotFilled:this.requiredDependencyNotFilled||lang("required_dependency_are_not_filled",(l=this.LANG_COMPONENTS)==null?void 0:l.COMPONENT_SELECT),...this.strings},dependencyValue:null}},methods:{onBlur(){setTimeout(()=>{this.isOpen||this.$emit("blur")},200)},inputKeyupDown(){this.focusOnFirstOptions()},comboboxKeyupDown(){if(this.showSearch){this.$refs.search.focus();return}this.focusOnFirstOptions()},focus(){this.$refs.combobox.focus()},focusOnFirstOptions(){this.$refs.list.$el.querySelector("[tabindex]:not(hidden)").focus()},startResizing(t){this.resizingProp=t},endResizing(){this.resizingProp&&(this.resizingProp=null,this.$emit("resize",this.size))},onResize(t){switch(this.resizingProp){case"left":this.size.left=Math.max(this.size.left-t.movementX,0);break;case"right":this.size.right=Math.max(this.size.right+t.movementX,0);break}},registerDependency(t){this.dependency?(this.$globalEvents.$on("select-"+this.dependency+":update",n=>{this.clear(),this.dependencyValue=n,this.dependencyValue&&this.dependencyValue.values&&(!Array.isArray(this.dependencyValue.values)||this.dependencyValue.values.length)&&this.setPreparedValues()}),this.isLoading=!1):(this.$globalEvents.$off("select-"+t+":update"),this.setPreparedValues().then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})}))},filter(t,n){this.filterString=t,this.$emit("search",this.filterString),this.defaultFilter(n)},setPreparedValues(t){let n=t||this.initialOptions;return this.alphabetSort&&(n=n.sort((e,o)=>e.title.toLowerCase().localeCompare(o.title.toLowerCase()))),this.prepare(n).then(([e,o])=>{this.actualOptions=e,this.allOptionsIsChecked=this.checkIfOptionsChecked(e),this.isInitialized=!0,this.selected=o,this.setBookmarkedOptions(e)})},clear(){this.setPreparedValues(),this.allOptionsIsChecked=!1,this.selected=[],this.isMultiple?(this.$emit("update:modelValue",null),this.$emit("input",null),this.$emit("clear-value",null)):(this.$emit("update:modelValue",[]),this.$emit("input",[]),this.$emit("clear-value",[])),this.setPreparedValues()},clearValue(){this.clear(),this.setPreparedValues()},prepare(t,n=!0){return new Promise(e=>{const o={},a=[];let i=Promise.resolve();typeof t=="function"?(this.isLoading=!0,this.dependency&&(t=t.bind(null,this.dependencyValue)),i=i.then(t)):i=i.then(()=>t),i.then(s=>(this.isLoading=!1,s.forEach(l=>{l.initiallyVisible=typeof l.visible>"u"?!0:l.visible,l.visible=l.initiallyVisible,l.readonly=!!l.readonly,l.checked=this.isMultiple?this.val!==null&&this.val.findIndex(u=>l.id==u)>-1:this.val!==null&&this.val==l.id,l.checked&&(!this.onlyEndNodes||!l.children)&&(o[l.id]=l),l.children&&(this.hasTreeChildren=!0,l.isChildrenVisible=!1),a.push(new Promise(u=>{l.children?this.prepare(l.children).then(([d,p])=>{l.children=d,this.parentAutoCheck&&(l.checked=this.checkIfOptionsChecked(l.children)),Object.assign(o,p),u(l)}):u(l)}))}),Promise.all(a).then(l=>{e([l,o])}))).catch(s=>{throw this.isLoading=!1,s})})},filterFunc(t,n){let e=0;return t.forEach(o=>{let a=o.initiallyVisible&&o.title&&o.title.toString().toLowerCase().includes(n)&&!this.actualBookmarkedOptions[o.id];if(o.children&&o.children.length){let i=this.filterFunc(o.children,n);e+=i,i&&(o.isChildrenVisible=n.length>0||!!Object.keys(this.actualBookmarkedOptions).length,o.isDisabled=i<o.children.length&&!this.isBookmarkable),a?i||(a=!1):a=!!i}o.visible=a,a&&e++}),e},submit(){this.change();const t=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":submit",{values:t,filter:this.filterId}),this.$emit("submit")},change(){const t=Object.keys(this.selected);this.isMultiple?(this.$emit("update:modelValue",t),this.$emit("input",t)):(this.$emit("update:modelValue",t[0]),this.$emit("input",t[0])),this.$globalEvents.$emit("select-"+this.filterId+":update",{values:t,filter:this.filterId}),this.$refs.dropdown.close()},checkIfOptionsChecked(t){return t.every(n=>n.checked||n.readonly)},registerCheck(t,n,e){if(n)if(t.checked=!0,this.isMultiple)this.onlyEndNodes&&t.children&&t.children.length||(this.selected[t.id]=t,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected)));else{const o=Object.keys(this.selected)[0];o&&(this.selected[o].checked=!1),this.selected={[t.id]:t},this.change()}else delete this.selected[t.id],t.checked=!1,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected));this.toggleDuplicateOptions(this.actualOptions,t.id,n),e&&(this.allOptionsIsChecked=this.checkIfOptionsChecked(this.actualOptions))},toggleDuplicateOptions(t,n,e){for(let o of t)o.id===n&&(o.checked=e),o.children&&this.toggleDuplicateOptions(o.children,n,e)},manageAll(){this.allOptionsIsChecked=!this.allOptionsIsChecked,this.traverseTree(this.actualOptions,t=>{t.readonly||this.registerCheck(t,this.allOptionsIsChecked,!1)})},traverseTree(t,n){t.forEach(e=>{n(e),e.children&&e.children.length&&this.traverseTree(e.children,n)})},getArrayOptions(t){let n=[];for(let e of t)n.push(e),e.children&&(n=n.concat(this.getArrayOptions(e.children)));return n},toggleBookmark(t){this.actualBookmarkedOptions[t.id]?delete this.actualBookmarkedOptions[t.id]:this.actualBookmarkedOptions[t.id]=t,this.$emit("toggle-bookmarked-option",t.id),this.filter(this.filterString,this.actualOptions)},setBookmarkedOptions(t){t.forEach(n=>{n.children&&n.children.length?this.setBookmarkedOptions(n.children):this.initBookmarks.includes(n.id)&&(this.actualBookmarkedOptions[n.id]=n)}),this.filter(this.filterString,t)},onClose(){this.isOpen=!1,this.filterString="",this.filterFunc(this.actualOptions,this.filterString),this.isMultiple?this.$emit("close",Object.keys(this.selected)):this.$emit("close",Object.keys(this.selected)[0]),this.$emit("blur"),this.verticalVal=this.vertical??"bottom"},onOpen(){const t=document.documentElement.scrollHeight;this.isOpen=!0,this.vertical!=="bottom"&&this.$nextTick(()=>{document.documentElement.scrollHeight>t&&(this.verticalVal="top")})}},computed:{hasTrigger(){return!!this.$slots.trigger},hasTriggerContent(){return!!this.$slots.triggerContent},hasEmptyMessage(){return!!this.$slots.emptyMessage},treeDropPos(){return this.menuSize?{width:this.menuSize+"px",maxWidth:this.menuSize+"px",minWidth:this.menuSize+"px"}:{width:"auto",position:"absolute",left:-this.size.left+"px",right:-this.size.right+"px"}},hasHierarchy(){return this.actualOptions.some(t=>t.children)},selectedKeys(){return Object.keys(this.selected).filter(t=>{if(!this.onlyEndNodes||!this.selected[t].children)return!0})},selectStatus(){return this.staticPlaceholder?this.placeholder:this.isLoading?this.actualStrings.loading:this.selectedKeys.length?this.selectedKeys.length<this.maxSelectedNames?this.selectedKeys.map(t=>this.selected[t].title).join(","):this.selectedKeys.length<this.optionsCount?this.actualStrings.selectedCount.replace("{selected}",this.selectedKeys.length).replace("{all}",this.optionsCount):this.actualStrings.allSelected:this.emptyMessage},isEmpty(){return Array.isArray(this.value)?!this.value.length:!this.value},requiredDependencyNotFilled(){return this.dependency&&(!this.dependencyValue||!this.dependencyValue.values||!this.dependencyValue.values.length)},showSearch(){return this.useSearch||this.optionsCount>10&&!this.alphabeticStyle},arrayOfOptions(){return this.getArrayOptions(this.actualOptions)},optionsCount(){let t=[];for(let n of this.arrayOfOptions)(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&t.push(n.id);return t.length},visibleOptionsCount(){let t=[];return this.traverseTree(this.actualOptions,n=>{(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&n.visible&&t.push(n.id)}),t.length+(this.isBookmarkable?Object.keys(this.actualBookmarkedOptions).length:0)}},components:{IbAlert:Ft,IbIconButton:ut,IbIcon:Le,IbDropdown:ir,IbInput:qr,List:Rr,"select-option":hd},directives:{Tooltip:Wt},beforeUnmount(){document.removeEventListener("mousemove",this.onResize),document.removeEventListener("mouseup",this.endResizing)},inheritAttrs:!1},vd={key:0,class:"tree-select-empty"},_d={key:1,class:"tree-select-default-empty tree-select-empty"},$d={key:5,ref:"infinityLoader"};function wd(t,n,e,o,a,i){const s=r.resolveComponent("ib-alert"),l=r.resolveComponent("ib-icon"),u=r.resolveComponent("ib-icon-button"),d=r.resolveComponent("ib-input"),p=r.resolveComponent("select-option"),f=r.resolveComponent("list"),c=r.resolveComponent("ib-dropdown"),h=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock(r.Fragment,null,[e.errorMessage?(r.openBlock(),r.createBlock(s,{key:0,class:"tree-select-error"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.createElementVNode("div",r.mergeProps(Object.fromEntries(Object.entries(t.$attrs).filter(([v])=>v.startsWith("data-"))),{class:["tree-select",{...e.classList,"tree-select-custom-trigger-content":i.hasTriggerContent}]}),[r.createVNode(c,{disabled:a.isLoading||e.disable,"is-resizable":e.isResizable,vertical:a.verticalVal,class:r.normalizeClass({disable:e.disable}),ref:"dropdown",onClose:i.onClose,onOpen:i.onOpen},r.createSlots({body:r.withCtx(()=>[r.createElementVNode("div",{class:r.normalizeClass(["tree-drop",{"not-tree-child":!a.hasTreeChildren}]),style:r.normalizeStyle(i.treeDropPos),role:"listbox"},[e.isResizable?(r.openBlock(),r.createElementBlock("div",{key:0,class:"ib-dropdown-resizer ib-dropdown-resizer-left",onMousedown:n[6]||(n[6]=v=>i.startResizing("left"))},null,32)):r.createCommentVNode("",!0),e.isResizable?r.withDirectives((r.openBlock(),r.createElementBlock("div",{key:1,class:"ib-dropdown-resizer ib-dropdown-resizer-right",onMousedown:n[7]||(n[7]=v=>i.startResizing("right"))},null,544)),[[h,t.lang("resize_list","select"),void 0,{rightCenter:!0}]]):r.createCommentVNode("",!0),i.showSearch?(r.openBlock(),r.createBlock(d,{key:2,class:"tree-search",ref:"search",autocomplete:"off","show-icon":!0,value:a.filterString,debounce:e.searchDebounce,"aria-label":e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,placeholder:e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,onInput:n[8]||(n[8]=v=>i.filter(v,a.actualOptions)),onKeyup:r.withKeys(i.inputKeyupDown,["down"])},null,8,["value","debounce","aria-label","placeholder","onKeyup"])):r.createCommentVNode("",!0),r.createVNode(f,{ref:"list",role:"listbox",class:r.normalizeClass({"tree-select-list":!0,"has-hierarchy":i.hasHierarchy,"alphabetic-list":e.alphabeticStyle})},{default:r.withCtx(()=>[!i.requiredDependencyNotFilled&&!i.visibleOptionsCount&&i.hasEmptyMessage?(r.openBlock(),r.createElementBlock("div",vd,[r.renderSlot(t.$slots,"emptyMessage")])):!i.requiredDependencyNotFilled&&!i.visibleOptionsCount?(r.openBlock(),r.createElementBlock("div",_d,r.toDisplayString(a.actualStrings.emptyTitle),1)):r.createCommentVNode("",!0),r.withDirectives(r.createElementVNode("div",{class:"tree-select-empty"},r.toDisplayString(a.actualStrings.requiredDependencyNotFilled),513),[[r.vShow,i.requiredDependencyNotFilled]]),!e.isMultiple&&!e.isRequired&&a.actualOptions.length>0?(r.openBlock(),r.createBlock(p,{key:2,option:{title:t.lang("none","select"),id:null,checked:i.isEmpty},name:a.actualName,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,role:"option",onCheck:i.registerCheck,onToggleBookmark:i.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs},null,8,["option","name","parent-auto-check","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","show-input"])):r.createCommentVNode("",!0),Object.keys(a.actualBookmarkedOptions).length>0?(r.openBlock(!0),r.createElementBlock(r.Fragment,{key:3},r.renderList(a.actualBookmarkedOptions,v=>(r.openBlock(),r.createBlock(p,{key:"bookmark"+v.id,class:"bookmarked-option",option:v,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!0,"is-bookmarked":!0,role:"option",onCheck:i.registerCheck,onToggleBookmark:i.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs},null,8,["option","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","html-title","show-input"]))),128)):r.createCommentVNode("",!0),i.requiredDependencyNotFilled?r.createCommentVNode("",!0):(r.openBlock(),r.createElementBlock(r.Fragment,{key:4},[e.allOptions&&!e.alphabeticStyle&&e.isMultiple&&i.visibleOptionsCount&&!i.requiredDependencyNotFilled?(r.openBlock(),r.createBlock(p,{key:0,option:{title:a.actualStrings.selectAllOptions,id:"!all!",initiallyVisible:!0,visible:!0,isDisabled:i.visibleOptionsCount<i.optionsCount,checked:a.allOptionsIsChecked,isIndeterminate:!!Object.keys(a.selected).length},"is-toggle":e.isToggle,name:a.actualName,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!1,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,role:"option",onCheck:i.manageAll,onOnFocus:n[9]||(n[9]=v=>a.focusedOptionId=v)},null,8,["option","is-toggle","name","is-multiple","uid","only-end-nodes","show-input","alphabetic-style","onCheck"])):r.createCommentVNode("",!0),(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(a.actualOptions,v=>r.renderSlot(t.$slots,a.actualName,{key:e.name+v.value,option:v,parentAutoCheck:e.parentAutoCheck,isMultiple:e.isMultiple,uid:a.uid,onlyEndNodes:e.onlyEndNodes,htmlTitle:e.htmlOptionTitle,showInput:e.showInputs},()=>[r.withDirectives(r.createVNode(p,{option:v,"is-toggle":e.isToggle,name:a.actualName,role:"option","parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"is-bookmarkable":e.isBookmarkable,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,onCheck:i.registerCheck,onToggleBookmark:i.toggleBookmark,onOnFocus:n[10]||(n[10]=m=>a.focusedOptionId=m)},null,8,["option","is-toggle","name","parent-auto-check","is-multiple","is-bookmarkable","uid","only-end-nodes","html-title","show-input","alphabetic-style","onCheck","onToggleBookmark"]),[[r.vShow,v.visible]])])),128))],64)),t.infiniteLoader?(r.openBlock(),r.createElementBlock("div",$d,null,512)):r.createCommentVNode("",!0)]),_:3},8,["class"])],6)]),_:2},[i.hasTrigger?{name:"trigger",fn:r.withCtx(()=>[r.renderSlot(t.$slots,"trigger",{selectedCount:i.selectedKeys.length})]),key:"0"}:{name:"trigger",fn:r.withCtx(({isOpened:v})=>[r.createElementVNode("div",{role:"combobox",tabindex:"0",class:r.normalizeClass(["tree-choice",{"tree-choice-opened":v,"has-clear-button":e.showClearButton,"tree-choice-error":e.errorMessage}]),ref:"combobox","aria-expanded":v,onClick:n[2]||(n[2]=r.withModifiers(()=>{},["prevent"])),onBlur:n[3]||(n[3]=(...m)=>i.onBlur&&i.onBlur(...m)),onKeyup:[n[4]||(n[4]=r.withKeys((...m)=>i.comboboxKeyupDown&&i.comboboxKeyupDown(...m),["down"])),n[5]||(n[5]=r.withKeys((...m)=>i.comboboxKeyupDown&&i.comboboxKeyupDown(...m),["up"]))],"aria-label":e.ariaLabel,"aria-activedescendant":a.focusedOptionId},[i.hasTriggerContent?r.renderSlot(t.$slots,"triggerContent",{key:0,selectedCount:i.selectedKeys.length,isOpen:v}):(r.openBlock(),r.createElementBlock(r.Fragment,{key:1},[e.htmlOptionTitle?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass({placeholder:!i.selectStatus}),innerHTML:i.selectStatus||e.placeholder},null,10,["innerHTML"])):(r.openBlock(),r.createElementBlock("span",{key:1,class:r.normalizeClass({placeholder:!i.selectStatus})},r.toDisplayString(i.selectStatus||e.placeholder),3))],64)),e.showClearButton?r.withDirectives((r.openBlock(),r.createBlock(u,{key:2,kind:"ghost",class:"button-clear","aria-label":"Clear selection",onClick:r.withModifiers(i.clearValue,["prevent"]),onKeypress:n[0]||(n[0]=r.withKeys(r.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeydown:n[1]||(n[1]=r.withKeys(r.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeyup:r.withKeys(r.withModifiers(i.clearValue,["prevent"]),["enter"]),"help-text":e.clearButtonMessage},{default:r.withCtx(()=>[r.createVNode(l,{name:"close-outline"})]),_:1},8,["onClick","onKeyup","help-text"])),[[r.vShow,Object.keys(a.selected).length]]):r.createCommentVNode("",!0),r.createVNode(l,{name:v?"chevron-up-outline":"chevron-down-outline",classes:"tree-select-caret"},null,8,["name"])],42,["aria-expanded","aria-label","aria-activedescendant"])]),key:"1"}]),1032,["disabled","is-resizable","vertical","class","onClose","onOpen"])],16)],64)}const No=_e(bd,[["render",wd]]),kp="",kd={name:"IbLimitSelector",props:{labelSelect:{type:String,required:!0},value:{type:Number},vertical:{type:String},options:{type:Array,default:()=>[10,25,50,100]}},watch(t){this.selected=t},data(){return{selected:this.value}},methods:{selectItem(t){this.selected=t,this.onChange(t)},onChange(t){Number.isInteger(+t)&&this.$emit("select",+t)}},computed:{prepareOptions(){return this.options.map(t=>({id:t,title:t}))}},components:{IbLabel:kn,IbSelect:No}},Cd={class:"report-limit-selector"};function Od(t,n,e,o,a,i){const s=r.resolveComponent("ib-label"),l=r.resolveComponent("ib-select");return r.openBlock(),r.createElementBlock("div",Cd,[r.createVNode(s,null,{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.labelSelect),1)]),_:1}),r.createVNode(l,{classList:"report-limit-selector-select",value:e.value,vertical:e.vertical,options:i.prepareOptions,"is-multiple":!1,"show-clear-button":!1,"aria-label":"Pagination",onInput:i.selectItem},null,8,["value","vertical","options","onInput"])])}const Ao=_e(kd,[["render",Od]]),Cp="",Ed={name:"IbPagination",props:{tooltipTextPrev:{type:String},tooltipTextNext:{type:String},labelInput:{type:String},labelSelect:{type:String,required:!0},countRows:{type:Number,required:!0},pageCount:{type:Number,default:null},current:{type:Number,default:1},limitSelector:{type:Number,default:10},showPaginationInput:{type:Boolean,default:!0},vertical:{type:String}},data(){return{currentPage:this.current,indexSpaceLeft:null,indexSpaceRight:null,limitValue:this.limitSelector}},watch:{current(t){this.onSelect(t)},limitSelector(t){this.limitValue=t},limitValue(){this.currentPage=1}},methods:{changeLimit(t){Number.isInteger(t)&&(this.limitValue=t,this.$emit("set-limit",t))},onInput(t){if(t<1){this.onSelect(1);return}if(t>this.countPagePagination){this.onSelect(this.countPagePagination);return}this.onSelect(Number(t))},onSelect(t){Number.isInteger(t)&&(this.currentPage=t,this.$emit("select",t))},showItem(t){if(this.countPagePagination<=5)return this.indexSpaceLeft=null,this.indexSpaceRight=null,!0;if(t===1||t===this.countPagePagination)return!0;if(this.countPagePagination>=7){if(this.currentPage<=3&&t<=5)return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=null,!0;if(this.currentPage>=this.countPagePagination-2&&t>=this.countPagePagination-4)return this.indexSpaceLeft=null,this.indexSpaceRight=1,!0;if(3<this.currentPage<this.countPagePagination-3&&(t===this.currentPage+1||t===this.currentPage-1||t===this.currentPage))return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=1,!0}else return!0;return!1}},computed:{setCountOfRows(){return this.currentPage===1||this.countPagePagination===1?"1 - "+(this.countPagePagination>1?this.limitValue:this.countRows):this.countPagePagination===this.currentPage?(this.currentPage-1)*this.limitValue+" - "+this.countRows:(this.currentPage-1)*this.limitValue+1+" - "+this.currentPage*this.limitValue},countPagePagination(){return Math.ceil(this.countRows/this.limitValue)}},components:{IbIconButton:ut,IbIcon:Le,IbInput:qr,IbLabel:kn,IbLimitSelector:Ao,IbTooltip:ln}},Sd={class:"report-controls"},xd={class:"repot-pagination"},Td={class:"pagination-input"},Nd={class:"row-count"},Ad={class:"pagination-wrapper"},Dd=["onClick"];function Pd(t,n,e,o,a,i){const s=r.resolveComponent("ib-limit-selector"),l=r.resolveComponent("ib-label"),u=r.resolveComponent("ib-input"),d=r.resolveComponent("ib-icon"),p=r.resolveComponent("ib-tooltip"),f=r.resolveComponent("ib-icon-button");return r.openBlock(),r.createElementBlock("div",Sd,[r.createVNode(s,{onSelect:i.changeLimit,value:a.limitValue,vertical:e.vertical,"label-select":e.labelSelect},null,8,["onSelect","value","vertical","label-select"]),r.createElementVNode("div",xd,[e.showPaginationInput?(r.openBlock(),r.createElementBlock(r.Fragment,{key:0},[r.createVNode(l,{for:"goToPage"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.labelInput),1)]),_:1}),r.createElementVNode("div",Td,[r.createVNode(u,{id:"goToPage",type:"number","hide-number-actions":"",debounce:500,onInput:i.onInput},null,8,["onInput"])])],64)):r.createCommentVNode("",!0),r.createElementVNode("div",Nd,r.toDisplayString(i.setCountOfRows+" of "+e.countRows),1),r.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-prev",disabled:a.currentPage===1,onClick:n[0]||(n[0]=c=>i.onSelect(a.currentPage-1))},{default:r.withCtx(()=>[r.createVNode(d,{name:"chevron-back-outline"}),e.tooltipTextPrev?(r.openBlock(),r.createBlock(p,{key:0,text:e.tooltipTextPrev},null,8,["text"])):r.createCommentVNode("",!0)]),_:1},8,["disabled"]),r.createElementVNode("ul",Ad,[(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(i.countPagePagination,(c,h)=>r.withDirectives((r.openBlock(),r.createElementBlock("li",{key:h,class:r.normalizeClass(["pagination-item",{active:h+1===a.currentPage,"dots-left":a.indexSpaceLeft===h+1,"dots-right":a.indexSpaceRight===h+1}]),onClick:v=>i.onSelect(h+1)},[r.createElementVNode("button",null,r.toDisplayString(h+1),1)],10,Dd)),[[r.vShow,i.showItem(h+1)]])),128))]),r.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-next",disabled:a.currentPage===i.countPagePagination,onClick:n[1]||(n[1]=c=>i.onSelect(a.currentPage+1))},{default:r.withCtx(()=>[r.createVNode(d,{name:"chevron-forward-outline"}),e.tooltipTextNext?(r.openBlock(),r.createBlock(p,{key:0,text:e.tooltipTextNext},null,8,["text"])):r.createCommentVNode("",!0)]),_:1},8,["disabled"])])])}const Id=_e(Ed,[["render",Pd]]),On={PROGRESS:"progress",SUCCESS:"success",FAILED:"failed",CANCELING:"canceling",CANCELED:"canceled"},Op="",Bd={props:{states:{type:String,default:On.PROGRESS},progress:{type:[String,Number],default:0},ariaLabel:{type:String,required:!0}},computed:{classes(){const t=["ib-progress-bar"];return t.push(`progress-bar-${this.states}`),t},iconName(){return this.states===On.SUCCESS?"checkmark-circle":this.states===On.FAILED||this.states===On.CANCELING||this.states===On.CANCELED?"close-circle":""}},components:{IbIcon:Le}},Do=t=>(r.pushScopeId("data-v-a0217859"),t=t(),r.popScopeId(),t),Md={class:"ib-progress-bar-wrapper"},Ld=["aria-label","aria-valuenow"],Rd=[Do(()=>r.createElementVNode("div",{class:"gradient"},null,-1))],jd=Do(()=>r.createElementVNode("div",null,null,-1));function Vd(t,n,e,o,a,i){const s=r.resolveComponent("ib-icon");return r.openBlock(),r.createElementBlock("div",Md,[r.createElementVNode("div",{class:r.normalizeClass(i.classes)},[r.createElementVNode("div",{class:"progress",role:"meter","aria-label":e.ariaLabel,"aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.progress,style:r.normalizeStyle({width:e.progress+"%"})},Rd,12,Ld),jd],2),r.withDirectives(r.createVNode(s,{class:"status-icon",name:i.iconName},null,8,["name"]),[[r.vShow,i.iconName.length]])])}const qd=_e(Bd,[["render",Vd],["__scopeId","data-v-a0217859"]]),Fd={new:`<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
32
+ *****************************************************/var Dd=ci.exports,Lo;function Md(){return Lo||(Lo=1,(function(t,i){(function(e,o){t.exports=o()})(Dd,function(){class e{constructor(r,d=!0,c=[],p=5e3){this.ctx=r,this.iframes=d,this.exclude=c,this.iframesTimeout=p}static matches(r,d){const c=typeof d=="string"?[d]:d,p=r.matches||r.matchesSelector||r.msMatchesSelector||r.mozMatchesSelector||r.oMatchesSelector||r.webkitMatchesSelector;if(p){let s=!1;return c.every(h=>!p.call(r,h)||(s=!0,!1)),s}return!1}getContexts(){let r=[];return(this.ctx!==void 0&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:typeof this.ctx=="string"?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(d=>{const c=r.filter(p=>p.contains(d)).length>0;r.indexOf(d)!==-1||c||r.push(d)}),r}getIframeContents(r,d,c=(()=>{})){let p;try{const s=r.contentWindow;if(p=s.document,!s||!p)throw new Error("iframe inaccessible")}catch{c()}p&&d(p)}isIframeBlank(r){const d="about:blank",c=r.getAttribute("src").trim();return r.contentWindow.location.href===d&&c!==d&&c}observeIframeLoad(r,d,c){let p=!1,s=null;const h=()=>{if(!p){p=!0,clearTimeout(s);try{this.isIframeBlank(r)||(r.removeEventListener("load",h),this.getIframeContents(r,d,c))}catch{c()}}};r.addEventListener("load",h),s=setTimeout(h,this.iframesTimeout)}onIframeReady(r,d,c){try{r.contentWindow.document.readyState==="complete"?this.isIframeBlank(r)?this.observeIframeLoad(r,d,c):this.getIframeContents(r,d,c):this.observeIframeLoad(r,d,c)}catch{c()}}waitForIframes(r,d){let c=0;this.forEachIframe(r,()=>!0,p=>{c++,this.waitForIframes(p.querySelector("html"),()=>{--c||d()})},p=>{p||d()})}forEachIframe(r,d,c,p=(()=>{})){let s=r.querySelectorAll("iframe"),h=s.length,f=0;s=Array.prototype.slice.call(s);const l=()=>{--h<=0&&p(f)};h||l(),s.forEach(u=>{e.matches(u,this.exclude)?l():this.onIframeReady(u,_=>{d(u)&&(f++,c(_)),l()},l)})}createIterator(r,d,c){return document.createNodeIterator(r,d,c,!1)}createInstanceOnIframe(r){return new e(r.querySelector("html"),this.iframes)}compareNodeIframe(r,d,c){const p=r.compareDocumentPosition(c),s=Node.DOCUMENT_POSITION_PRECEDING;return!!(p&s&&(d===null||d.compareDocumentPosition(c)&Node.DOCUMENT_POSITION_FOLLOWING))}getIteratorNode(r){const d=r.previousNode();return{prevNode:d,node:(d===null||r.nextNode())&&r.nextNode()}}checkIframeFilter(r,d,c,p){let s=!1,h=!1;return p.forEach((f,l)=>{f.val===c&&(s=l,h=f.handled)}),this.compareNodeIframe(r,d,c)?(s!==!1||h?s===!1||h||(p[s].handled=!0):p.push({val:c,handled:!0}),!0):(s===!1&&p.push({val:c,handled:!1}),!1)}handleOpenIframes(r,d,c,p){r.forEach(s=>{s.handled||this.getIframeContents(s.val,h=>{this.createInstanceOnIframe(h).forEachNode(d,c,p)})})}iterateThroughNodes(r,d,c,p,s){const h=this.createIterator(d,r,p);let f,l,u=[],_=[],g=()=>({prevNode:l,node:f}=this.getIteratorNode(h),f);for(;g();)this.iframes&&this.forEachIframe(d,$=>this.checkIframeFilter(f,l,$,u),$=>{this.createInstanceOnIframe($).forEachNode(r,v=>_.push(v),p)}),_.push(f);_.forEach($=>{c($)}),this.iframes&&this.handleOpenIframes(u,r,c,p),s()}forEachNode(r,d,c,p=(()=>{})){const s=this.getContexts();let h=s.length;h||p(),s.forEach(f=>{const l=()=>{this.iterateThroughNodes(r,f,d,c,()=>{--h<=0&&p()})};this.iframes?this.waitForIframes(f,l):l()})}}class o{constructor(r){this.ctx=r,this.ie=!1;const d=window.navigator.userAgent;(d.indexOf("MSIE")>-1||d.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(r){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},r)}get opt(){return this._opt}get iterator(){return new e(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(r,d="debug"){const c=this.opt.log;this.opt.debug&&typeof c=="object"&&typeof c[d]=="function"&&c[d](`mark.js: ${r}`)}escapeStr(r){return r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(r){return this.opt.wildcards!=="disabled"&&(r=this.setupWildcardsRegExp(r)),r=this.escapeStr(r),Object.keys(this.opt.synonyms).length&&(r=this.createSynonymsRegExp(r)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),this.opt.diacritics&&(r=this.createDiacriticsRegExp(r)),r=this.createMergedBlanksRegExp(r),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.createJoinersRegExp(r)),this.opt.wildcards!=="disabled"&&(r=this.createWildcardsRegExp(r)),r=this.createAccuracyRegExp(r)}createSynonymsRegExp(r){const d=this.opt.synonyms,c=this.opt.caseSensitive?"":"i",p=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let s in d)if(d.hasOwnProperty(s)){const h=d[s],f=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(s):this.escapeStr(s),l=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(h):this.escapeStr(h);f!==""&&l!==""&&(r=r.replace(new RegExp(`(${this.escapeStr(f)}|${this.escapeStr(l)})`,`gm${c}`),p+`(${this.processSynomyms(f)}|${this.processSynomyms(l)})`+p))}return r}processSynomyms(r){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),r}setupWildcardsRegExp(r){return(r=r.replace(/(?:\\)*\?/g,d=>d.charAt(0)==="\\"?"?":"")).replace(/(?:\\)*\*/g,d=>d.charAt(0)==="\\"?"*":"")}createWildcardsRegExp(r){let d=this.opt.wildcards==="withSpaces";return r.replace(/\u0001/g,d?"[\\S\\s]?":"\\S?").replace(/\u0002/g,d?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(r){return r.replace(/[^(|)\\]/g,(d,c,p)=>{let s=p.charAt(c+1);return/[(|)\\]/.test(s)||s===""?d:d+"\0"})}createJoinersRegExp(r){let d=[];const c=this.opt.ignorePunctuation;return Array.isArray(c)&&c.length&&d.push(this.escapeStr(c.join(""))),this.opt.ignoreJoiners&&d.push("\\u00ad\\u200b\\u200c\\u200d"),d.length?r.split(/\u0000+/).join(`[${d.join("")}]*`):r}createDiacriticsRegExp(r){const d=this.opt.caseSensitive?"":"i",c=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let p=[];return r.split("").forEach(s=>{c.every(h=>{if(h.indexOf(s)!==-1){if(p.indexOf(h)>-1)return!1;r=r.replace(new RegExp(`[${h}]`,`gm${d}`),`[${h}]`),p.push(h)}return!0})}),r}createMergedBlanksRegExp(r){return r.replace(/[\s]+/gim,"[\\s]+")}createAccuracyRegExp(r){const d="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿";let c=this.opt.accuracy,p=typeof c=="string"?c:c.value,s=typeof c=="string"?[]:c.limiters,h="";switch(s.forEach(f=>{h+=`|${this.escapeStr(f)}`}),p){case"partially":default:return`()(${r})`;case"complementary":return`()([^${h="\\s"+(h||this.escapeStr(d))}]*${r}[^${h}]*)`;case"exactly":return`(^|\\s${h})(${r})(?=$|\\s${h})`}}getSeparatedKeywords(r){let d=[];return r.forEach(c=>{this.opt.separateWordSearch?c.split(" ").forEach(p=>{p.trim()&&d.indexOf(p)===-1&&d.push(p)}):c.trim()&&d.indexOf(c)===-1&&d.push(c)}),{keywords:d.sort((c,p)=>p.length-c.length),length:d.length}}isNumeric(r){return Number(parseFloat(r))==r}checkRanges(r){if(!Array.isArray(r)||Object.prototype.toString.call(r[0])!=="[object Object]")return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(r),[];const d=[];let c=0;return r.sort((p,s)=>p.start-s.start).forEach(p=>{let{start:s,end:h,valid:f}=this.callNoMatchOnInvalidRanges(p,c);f&&(p.start=s,p.length=h-s,d.push(p),c=h)}),d}callNoMatchOnInvalidRanges(r,d){let c,p,s=!1;return r&&r.start!==void 0?(p=(c=parseInt(r.start,10))+parseInt(r.length,10),this.isNumeric(r.start)&&this.isNumeric(r.length)&&p-d>0&&p-c>0?s=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(r)}`),this.opt.noMatch(r))):(this.log(`Ignoring invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)),{start:c,end:p,valid:s}}checkWhitespaceRanges(r,d,c){let p,s=!0,h=c.length,f=d-h,l=parseInt(r.start,10)-f;return(p=(l=l>h?h:l)+parseInt(r.length,10))>h&&(p=h,this.log(`End range automatically set to the max value of ${h}`)),l<0||p-l<0||l>h||p>h?(s=!1,this.log(`Invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)):c.substring(l,p).replace(/\s+/g,"")===""&&(s=!1,this.log("Skipping whitespace only range: "+JSON.stringify(r)),this.opt.noMatch(r)),{start:l,end:p,valid:s}}getTextNodes(r){let d="",c=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,p=>{c.push({start:d.length,end:(d+=p.textContent).length,node:p})},p=>this.matchesExclude(p.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT,()=>{r({value:d,nodes:c})})}matchesExclude(r){return e.matches(r,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(r,d,c){const p=this.opt.element?this.opt.element:"mark",s=r.splitText(d),h=s.splitText(c-d);let f=document.createElement(p);return f.setAttribute("data-markjs","true"),this.opt.className&&f.setAttribute("class",this.opt.className),f.textContent=s.textContent,s.parentNode.replaceChild(f,s),h}wrapRangeInMappedTextNode(r,d,c,p,s){r.nodes.every((h,f)=>{const l=r.nodes[f+1];if(l===void 0||l.start>d){if(!p(h.node))return!1;const u=d-h.start,_=(c>h.end?h.end:c)-h.start,g=r.value.substr(0,h.start),$=r.value.substr(_+h.start);if(h.node=this.wrapRangeInTextNode(h.node,u,_),r.value=g+$,r.nodes.forEach((v,b)=>{b>=f&&(r.nodes[b].start>0&&b!==f&&(r.nodes[b].start-=_),r.nodes[b].end-=_)}),c-=_,s(h.node.previousSibling,h.start),!(c>h.end))return!1;d=h.end}return!0})}wrapMatches(r,d,c,p,s){const h=d===0?0:d+1;this.getTextNodes(f=>{f.nodes.forEach(l=>{let u;for(l=l.node;(u=r.exec(l.textContent))!==null&&u[h]!=="";){if(!c(u[h],l))continue;let _=u.index;if(h!==0)for(let g=1;g<h;g++)_+=u[g].length;l=this.wrapRangeInTextNode(l,_,_+u[h].length),p(l.previousSibling),r.lastIndex=0}}),s()})}wrapMatchesAcrossElements(r,d,c,p,s){const h=d===0?0:d+1;this.getTextNodes(f=>{let l;for(;(l=r.exec(f.value))!==null&&l[h]!=="";){let u=l.index;if(h!==0)for(let g=1;g<h;g++)u+=l[g].length;const _=u+l[h].length;this.wrapRangeInMappedTextNode(f,u,_,g=>c(l[h],g),(g,$)=>{r.lastIndex=$,p(g)})}s()})}wrapRangeFromIndex(r,d,c,p){this.getTextNodes(s=>{const h=s.value.length;r.forEach((f,l)=>{let{start:u,end:_,valid:g}=this.checkWhitespaceRanges(f,h,s.value);g&&this.wrapRangeInMappedTextNode(s,u,_,$=>d($,f,s.value.substring(u,_),l),$=>{c($,f)})}),p()})}unwrapMatches(r){const d=r.parentNode;let c=document.createDocumentFragment();for(;r.firstChild;)c.appendChild(r.removeChild(r.firstChild));d.replaceChild(c,r),this.ie?this.normalizeTextNode(d):d.normalize()}normalizeTextNode(r){if(r){if(r.nodeType===3)for(;r.nextSibling&&r.nextSibling.nodeType===3;)r.nodeValue+=r.nextSibling.nodeValue,r.parentNode.removeChild(r.nextSibling);else this.normalizeTextNode(r.firstChild);this.normalizeTextNode(r.nextSibling)}}markRegExp(r,d){this.opt=d,this.log(`Searching with expression "${r}"`);let c=0,p="wrapMatches";const s=h=>{c++,this.opt.each(h)};this.opt.acrossElements&&(p="wrapMatchesAcrossElements"),this[p](r,this.opt.ignoreGroups,(h,f)=>this.opt.filter(f,h,c),s,()=>{c===0&&this.opt.noMatch(r),this.opt.done(c)})}mark(r,d){this.opt=d;let c=0,p="wrapMatches";const{keywords:s,length:h}=this.getSeparatedKeywords(typeof r=="string"?[r]:r),f=this.opt.caseSensitive?"":"i",l=u=>{let _=new RegExp(this.createRegExp(u),`gm${f}`),g=0;this.log(`Searching with expression "${_}"`),this[p](_,1,($,v)=>this.opt.filter(v,u,c,g),$=>{g++,c++,this.opt.each($)},()=>{g===0&&this.opt.noMatch(u),s[h-1]===u?this.opt.done(c):l(s[s.indexOf(u)+1])})};this.opt.acrossElements&&(p="wrapMatchesAcrossElements"),h===0?this.opt.done(c):l(s[0])}markRanges(r,d){this.opt=d;let c=0,p=this.checkRanges(r);p&&p.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(p)),this.wrapRangeFromIndex(p,(s,h,f,l)=>this.opt.filter(s,h,f,l),(s,h)=>{c++,this.opt.each(s,h)},()=>{this.opt.done(c)})):this.opt.done(c)}unmark(r){this.opt=r;let d=this.opt.element?this.opt.element:"*";d+="[data-markjs]",this.opt.className&&(d+=`.${this.opt.className}`),this.log(`Removal selector "${d}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,c=>{this.unwrapMatches(c)},c=>{const p=e.matches(c,d),s=this.matchesExclude(c);return!p||s?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},this.opt.done)}}return function(a){const r=new o(a);return this.mark=((d,c)=>(r.mark(d,c),this)),this.markRegExp=((d,c)=>(r.markRegExp(d,c),this)),this.markRanges=((d,c)=>(r.markRanges(d,c),this)),this.unmark=(d=>(r.unmark(d),this)),this}})})(ci)),ci.exports}var Bd=Md();const Id=En(Bd),Pd={props:{infiniteLoader:{type:Boolean,default:!0}},watch:{infiniteLoader(t){t||infiniteLoaderObserver.disconnect()}},data(){return{infiniteLoaderObserver:null}},mounted(){this.infiniteLoader&&(this.infiniteLoaderObserver=new IntersectionObserver(t=>{t.forEach(i=>{i.isIntersecting&&this.$emit("loadMoreOptions")})}),this.infiniteLoaderObserver.observe(this.$refs.infinityLoader))},beforeDestroy(){this.infiniteLoader&&(infiniteLoaderObserver==null||infiniteLoaderObserver.disconnect())},emits:["loadMoreOptions"]};function Ld(t,i){let e=null;function o(...a){e&&clearTimeout(e),e=setTimeout(()=>{t.apply(this,a),e=null},i)}return o.cancel=function(){e&&(clearTimeout(e),e=null)},o}function Ro(t){return JSON.parse(JSON.stringify(t))}const Rd={name:"IbTreeSelect",inject:["LANG_COMPONENTS"],mixins:[Pd],props:{classList:[String,Array],keywordHighlighter:{type:Boolean,default:!0},placeholder:{type:String,default:""},searchPlaceholderText:{type:String,default:""},clearButtonMessage:{type:String,default:""},showClearButton:{type:Boolean,default:!0},isResizable:{type:Boolean,default:!1},menuSize:{type:[String,Number]},initialSize:{left:0,right:0},ariaLabel:{type:String,default:""},name:String,id:{type:String,default(){return dt()}},options:{type:[Array,Function],default(){return[]}},modelValue:{type:[Number,String,Array]},value:{type:[Number,String,Array],default(){return[]}},maxSelectedNames:{type:Number,default:2},isMultiple:{type:Boolean,default:!0},parentAutoCheck:{type:Boolean,default:null},strings:{type:Object,default(){return{}}},onlyEndNodes:{type:Boolean,default:!1},isRequired:{type:Boolean,default:!0},htmlOptionTitle:{type:Boolean,default:!1},isBookmarkable:{type:Boolean,default:!1},initBookmarks:{type:Array,default:()=>[]},showInputs:{type:Boolean,default(t){return t.isMultiple}},dependency:{type:String},filterId:{type:String,default(){return dt()}},staticPlaceholder:{type:Boolean,default:!1},useSearch:{type:Boolean,default:!1},isWatching:{type:Boolean,default:!1},vertical:{type:String},emptyMessage:{type:String,default:""},errorMessage:{type:String,default:""},allOptions:{type:Boolean,default:!0},watchClearValue:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabetSort:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},searchDebounce:{type:Number,default:500},alphabeticStyle:{type:Boolean,default:!1},initialDependencyValue:{type:Object}},emits:["close","input","blur","search","resize","submit","clearValue","toggle-bookmarked-option","update:modelValue"],watch:{value(t){this.val=t,(!Array.isArray(t)||t.join(",")!==Object.keys(this.selected).join(","))&&this.setPreparedValues(this.actualOptions,!1)},modelValue:{handler(t){if(this.isInternalChange)return;this.val=t,this.val=t,(!Array.isArray(t)||t.join(",")!==Object.keys(this.selected).join(","))&&this.setPreparedValues(this.actualOptions,!1);const i=new Set(Array.isArray(t)?t:[t].filter(Boolean));this.syncCheckedBySet(i)},deep:!0},val(t){this.watchClearValue&&(!t||Array.isArray(t)&&!t.length)&&this.setPreparedValues(this.actualOptions).then(()=>{const i=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:i,filter:this.filterId})})},options:{handler(t){this.initialOptions=typeof t=="function"?t:Ro(t)},deep:!0},initialOptions(t){let i=!0;if(typeof t=="function")i=!1;else{const e=[],o=t;Array.prototype.forEach.call(o,a=>{a.id!==void 0&&e.push(a.id)}),i=JSON.stringify(e)===JSON.stringify(this.optionsIdsWatch),this.optionsIdsWatch=e}(this.isInitialized&&!i||this.isWatching)&&this.setPreparedValues().then(()=>{const e=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:e,filter:this.filterId})})},dependency(t,i){this.$nextTick(()=>{this.registerDependency(i)})},initBookmarks(){this.actualBookmarkedOptions={},this.setBookmarkedOptions(this.actualOptions)},initialDependencyValue(t){this.dependencyValue=t,this.hasFilledDependency&&this.$nextTick(()=>{this.loadValues()})}},mounted(){this.marker=new Id(this.$refs.list.$el),this.registerDependency(),this.$globalEvents.$on("select:refresh",()=>{this.setPreparedValues()}),document.addEventListener("mousemove",this.onResize),document.addEventListener("mouseup",this.endResizing)},data(){var t,i,e,o,a,r,d,c;return this.defaultFilter=Ld(p=>{var h;this.marker.unmark();const s=this.filterString.toLowerCase().trim();this.countVisibleChildren=this.filterFunc.call(this,p,s),s&&this.keywordHighlighter&&this.marker.mark(s),(h=this.virtualizer)==null||h.measure()},1e3),{virtualizer:null,initialOptions:typeof this.options=="function"?this.options:Ro(this.options),val:this.modelValue?this.modelValue:this.value,size:{left:this.initialSize&&this.initialSize.left||0,right:this.initialSize&&this.initialSize.right||0},resizingProp:null,isInitialized:!1,isLoading:!1,isOpen:!1,optionsIdsWatch:[],actualName:this.isMultiple?this.name+"[]":this.name,parentAutoCheckVal:this.parentAutoCheck!==null?this.parentAutoCheck:this.isMultiple,filterString:"",actualOptions:[],actualBookmarkedOptions:{},selected:[],verticalVal:this.vertical??"bottom",allOptionsIsChecked:!0,hasTreeChildren:!1,uid:`f${(~~(Math.random()*1e8)).toString(16)}`,focusedOptionId:"",actualStrings:{searchPlaceholder:lang(this.searchPlaceholderText.length?this.searchPlaceholderText:"search_placeholder",(t=this.LANG_COMPONENTS)==null?void 0:t.COMPONENT_SELECT),emptyTitle:lang("empty_title",(i=this.LANG_COMPONENTS)==null?void 0:i.COMPONENT_SELECT),selectAllOptions:lang("all_options",(e=this.LANG_COMPONENTS)==null?void 0:e.COMPONENT_SELECT),allSelected:lang("all_selected",(o=this.LANG_COMPONENTS)==null?void 0:o.COMPONENT_SELECT),loading:lang("loading",(a=this.LANG_COMPONENTS)==null?void 0:a.COMPONENT_SELECT)+"...",selectedCount:lang("selected_count",(r=this.LANG_COMPONENTS)==null?void 0:r.COMPONENT_SELECT),buttonTitle:this.buttonTitle||lang("button_title",(d=this.LANG_COMPONENTS)==null?void 0:d.COMPONENT_SELECT),requiredDependencyNotFilled:this.requiredDependencyNotFilled||lang("required_dependency_are_not_filled",(c=this.LANG_COMPONENTS)==null?void 0:c.COMPONENT_SELECT),...this.strings},dependencyValue:this.initialDependencyValue,isInternalChange:!1,nodeIndex:new Map}},methods:{toggleDuplicateOptionsFast(t,i){const e=this.nodeIndex.get(t);if(e)for(const o of e)o.checked=i},buildNodeIndex(){this.nodeIndex.clear(),this.traverseTree(this.actualOptions,t=>{this.nodeIndex.has(t.id)||this.nodeIndex.set(t.id,[]),this.nodeIndex.get(t.id).push(t)})},syncCheckedBySet(t){this.traverseTree(this.actualOptions,i=>{const e=t.has(i.id);i.checked!==e&&(i.checked=e)}),this.selected={},this.traverseTree(this.actualOptions,i=>{i.checked&&(!this.onlyEndNodes||!i.children)&&(this.selected[i.id]=i)}),this.allOptionsIsChecked=this.checkIfOptionsChecked(this.actualOptions)},onBlur(){setTimeout(()=>{this.isOpen||this.$emit("blur")},200)},inputKeyupDown(){this.focusOnFirstOptions()},comboboxKeyupDown(){if(this.showSearch){this.$refs.search.focus();return}this.focusOnFirstOptions()},focus(){this.$refs.combobox.focus()},focusOnFirstOptions(){this.$refs.list.$el.querySelector("[tabindex]:not(hidden)").focus()},startResizing(t){this.resizingProp=t},endResizing(){this.resizingProp&&(this.resizingProp=null,this.$emit("resize",this.size))},onResize(t){switch(this.resizingProp){case"left":this.size.left=Math.max(this.size.left-t.movementX,0);break;case"right":this.size.right=Math.max(this.size.right+t.movementX,0);break}},registerDependency(t){this.dependency?(this.$globalEvents.$on("select-"+this.dependency+":update",i=>{this.clear(),this.dependencyValue=i,this.dependencyValue&&this.dependencyValue.values&&(!Array.isArray(this.dependencyValue.values)||this.dependencyValue.values.length)&&this.setPreparedValues()}),this.isLoading=!1,!t&&this.hasFilledDependency&&this.setPreparedValues()):(this.$globalEvents.$off("select-"+t+":update"),this.setPreparedValues().then(()=>{const i=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:i,filter:this.filterId})}))},loadValues(){this.setPreparedValues().then(()=>{if(!this.dependency){const t=Object.keys(this.selected);Array.isArray(this.options)&&!this.options.length||this.$globalEvents.$emit("select-"+this.filterId+":update",{values:t,filter:this.filterId})}this.$emit("loaded",this.dependencyValue)})},filter(t,i){this.filterString=t,this.$emit("search",this.filterString),this.defaultFilter(i)},setPreparedValues(t){let i=t||this.initialOptions;return this.alphabetSort&&(i=i.sort((e,o)=>e.title.toLowerCase().localeCompare(o.title.toLowerCase()))),this.prepare(i).then(([e,o])=>{this.actualOptions=e,this.buildNodeIndex(),this.allOptionsIsChecked=this.checkIfOptionsChecked(e),this.isInitialized=!0,this.selected=o,this.setBookmarkedOptions(e)})},clear(){this.actualOptions=[],this.allOptionsIsChecked=!1,this.countVisibleChildren=0,this.selected=[]},clearValue(){this.traverseTree(this.actualOptions,i=>i.checked=!1),this.clear(),this.isInternalChange=!0;const t=this.isMultiple?[]:null;this.$emit("update:modelValue",t),this.$emit("input",t),this.$emit("clear-value",t),this.$nextTick(()=>this.isInternalChange=!1),this.setPreparedValues()},prepare(t,i=!0){return new Promise(e=>{const o={},a=[];let r=Promise.resolve();typeof t=="function"?(this.isLoading=!0,this.dependency&&(t=t.bind(null,this.dependencyValue)),r=r.then(t)):r=r.then(()=>t),r.then(d=>(this.isLoading=!1,d.forEach(c=>{c.initiallyVisible=typeof c.visible>"u"?!0:c.visible,c.visible=c.initiallyVisible,c.readonly=!!c.readonly,c.checked=this.isMultiple?this.val!==null&&this.val.findIndex(p=>c.id==p)>-1:this.val!==null&&this.val==c.id,c.checked&&(!this.onlyEndNodes||!c.children)&&(o[c.id]=c),c.children&&(this.hasTreeChildren=!0,c.isChildrenVisible=!1),a.push(new Promise(p=>{c.children?this.prepare(c.children).then(([s,h])=>{c.children=s,this.parentAutoCheckVal&&(c.checked=this.checkIfOptionsChecked(c.children)),Object.assign(o,h),p(c)}):p(c)}))}),Promise.all(a).then(c=>{e([c,o])}))).catch(d=>{throw this.isLoading=!1,d})})},filterFunc(t,i){let e=0;return t.forEach(o=>{let a=o.initiallyVisible&&o.title&&o.title.toString().toLowerCase().includes(i)&&!this.actualBookmarkedOptions[o.id];if(o.children&&o.children.length){let r=this.filterFunc(o.children,i);e+=r,r&&(o.isChildrenVisible=i.length>0||!!Object.keys(this.actualBookmarkedOptions).length,o.isDisabled=r<o.children.length&&!this.isBookmarkable),a?r||(a=!1):a=!!r}o.visible=a,a&&e++}),e},submit(){this.change();const t=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":submit",{values:t,filter:this.filterId}),this.$emit("submit")},change(){const t=Object.keys(this.selected);this.isInternalChange=!0,this.isMultiple?(this.$emit("update:modelValue",t),this.$emit("input",t)):(this.$emit("update:modelValue",t[0]),this.$emit("input",t[0])),this.$nextTick(()=>this.isInternalChange=!1),this.$globalEvents.$emit("select-"+this.filterId+":update",{values:t,filter:this.filterId}),this.isMultiple||this.$refs.dropdown.close()},checkIfOptionsChecked(t){return t.every(i=>i.checked||i.readonly)},registerCheck(t,i,e){var o;if(i){if(t.checked=!0,this.isMultiple&&!(this.onlyEndNodes&&((o=t.children)!=null&&o.length)))this.selected[t.id]=t;else if(!this.isMultiple){const a=Object.keys(this.selected)[0];a&&(this.selected[a].checked=!1),this.selected={[t.id]:t},this.change();return}}else delete this.selected[t.id],t.checked=!1;if(this.toggleDuplicateOptionsFast(t.id,i),e&&(this.allOptionsIsChecked=this.checkIfOptionsChecked(this.actualOptions)),this.isMultiple){this.isInternalChange=!0;const a=Object.keys(this.selected);this.$emit("update:modelValue",a),this.$emit("input",a),this.$nextTick(()=>this.isInternalChange=!1)}},toggleDuplicateOptions(t,i,e){for(let o of t)o.id===i&&(o.checked=e),o.children&&this.toggleDuplicateOptions(o.children,i,e)},manageAll(){this.allOptionsIsChecked=!this.allOptionsIsChecked,this.traverseTree(this.actualOptions,t=>{t.readonly||this.registerCheck(t,this.allOptionsIsChecked,!1)})},traverseTree(t,i){t.forEach(e=>{i(e),e.children&&e.children.length&&this.traverseTree(e.children,i)})},getArrayOptions(t){let i=[];for(let e of t)i.push(e),e.children&&(i=i.concat(this.getArrayOptions(e.children)));return i},toggleBookmark(t){this.actualBookmarkedOptions[t.id]?delete this.actualBookmarkedOptions[t.id]:this.actualBookmarkedOptions[t.id]=t,this.$emit("toggle-bookmarked-option",t.id),this.filter(this.filterString,this.actualOptions)},setBookmarkedOptions(t){t.forEach(i=>{i.children&&i.children.length?this.setBookmarkedOptions(i.children):this.initBookmarks.includes(i.id)&&(this.actualBookmarkedOptions[i.id]=i)}),this.filter(this.filterString,t)},onClose(){this.isOpen=!1,this.filterString="",this.filterFunc(this.actualOptions,this.filterString),this.isMultiple?this.$emit("close",Object.keys(this.selected)):this.$emit("close",Object.keys(this.selected)[0]),this.virtualizer=null,this.$emit("blur"),this.verticalVal=this.vertical??"bottom"},onOpen(){var i;const t=document.documentElement.scrollHeight;this.isOpen=!0,this.virtualizer||(this.virtualizer=Jc({count:this.actualOptions.length,getScrollElement:()=>this.$refs.parentRef,estimateSize:()=>40,overscan:8})),(i=this.virtualizer)==null||i.measure(),this.vertical!=="bottom"&&this.$nextTick(()=>{document.documentElement.scrollHeight>t&&(this.verticalVal="top")})}},computed:{hasTrigger(){return!!this.$slots.trigger},hasTriggerContent(){return!!this.$slots.triggerContent},hasEmptyMessage(){return!!this.$slots.emptyMessage},treeDropPos(){return this.menuSize?{width:this.menuSize+"px",maxWidth:this.menuSize+"px",minWidth:this.menuSize+"px"}:{width:"auto",position:"absolute",left:-this.size.left+"px",right:-this.size.right+"px"}},hasHierarchy(){return this.actualOptions.some(t=>t.children)},selectedKeys(){return Object.keys(this.selected).filter(t=>{if(!this.onlyEndNodes||!this.selected[t].children)return!0})},selectStatus(){return this.staticPlaceholder?this.placeholder:this.isLoading?this.actualStrings.loading:this.selectedKeys.length?this.selectedKeys.length<this.maxSelectedNames?this.selectedKeys.map(t=>this.selected[t].title).join(","):this.allOptionsIsChecked?this.actualStrings.allSelected:this.actualStrings.selectedCount.replace("{selected}",this.selectedKeys.length).replace("{all}",this.optionsCount):this.emptyMessage},isEmpty(){return Array.isArray(this.value)?!this.value.length:!this.value},requiredDependencyNotFilled(){return this.dependency&&(!this.dependencyValue||!this.dependencyValue.values||!this.dependencyValue.values.length)},showSearch(){return this.useSearch||this.optionsCount>10&&!this.alphabeticStyle},arrayOfOptions(){return this.getArrayOptions(this.actualOptions)},optionsCount(){let t=[];for(let i of this.arrayOfOptions)(!this.onlyEndNodes||!i.children)&&!t.includes(i.id)&&t.push(i.id);return t.length},visibleOptionsCount(){let t=[];return this.traverseTree(this.actualOptions,i=>{(!this.onlyEndNodes||!i.children)&&!t.includes(i.id)&&i.visible&&t.push(i.id)}),t.length+(this.isBookmarkable?Object.keys(this.actualBookmarkedOptions).length:0)},hasFilledDependency(){var t,i,e;return!!(this.dependency&&this.dependencyValue&&((t=this.dependencyValue)!=null&&t.values)&&(!Array.isArray((i=this.dependencyValue)==null?void 0:i.values)||(e=this.dependencyValue)!=null&&e.values.length))}},components:{IbAlert:jt,IbIconButton:Xe,IbIcon:Le,IbDropdown:si,IbInput:Ui,List:Fi,"select-option":Ad},directives:{Tooltip:St},beforeUnmount(){document.removeEventListener("mousemove",this.onResize),document.removeEventListener("mouseup",this.endResizing)},inheritAttrs:!1},Vd={key:0,class:"tree-select-empty"},jd={key:1,class:"tree-select-default-empty tree-select-empty"},Fd={key:4,class:"scrollable-container"},qd={ref:"parentRef"},Hd=["data-index"],zd={key:5,ref:"infinityLoader"};function Ud(t,i,e,o,a,r){const d=n.resolveComponent("ib-alert"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-icon-button"),s=n.resolveComponent("ib-input"),h=n.resolveComponent("select-option"),f=n.resolveComponent("list"),l=n.resolveComponent("ib-dropdown"),u=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock(n.Fragment,null,[e.errorMessage?(n.openBlock(),n.createBlock(d,{key:0,class:"tree-select-error"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.createElementVNode("div",n.mergeProps(Object.fromEntries(Object.entries(t.$attrs).filter(([_])=>_.startsWith("data-"))),{class:["tree-select",{...e.classList,"tree-select-custom-trigger-content":r.hasTriggerContent,"disabled-parent-autocheck":e.parentAutoCheck===!1}]}),[n.createVNode(l,{disabled:a.isLoading||e.disable,"is-resizable":e.isResizable,vertical:a.verticalVal,class:n.normalizeClass({disable:e.disable}),ref:"dropdown",onClose:r.onClose,onOpen:r.onOpen},n.createSlots({body:n.withCtx(()=>[n.createElementVNode("div",{class:n.normalizeClass(["tree-drop",{"not-tree-child":!a.hasTreeChildren}]),style:n.normalizeStyle(r.treeDropPos),role:"listbox"},[e.isResizable?(n.openBlock(),n.createElementBlock("div",{key:0,class:"ib-dropdown-resizer ib-dropdown-resizer-left",onMousedown:i[6]||(i[6]=_=>r.startResizing("left"))},null,32)):n.createCommentVNode("",!0),e.isResizable?n.withDirectives((n.openBlock(),n.createElementBlock("div",{key:1,class:"ib-dropdown-resizer ib-dropdown-resizer-right",onMousedown:i[7]||(i[7]=_=>r.startResizing("right"))},null,544)),[[u,t.lang("resize_list","select"),void 0,{rightCenter:!0}]]):n.createCommentVNode("",!0),r.showSearch?(n.openBlock(),n.createBlock(s,{key:2,class:"tree-search",ref:"search",autocomplete:"new-password","show-icon":!0,value:a.filterString,debounce:e.searchDebounce,"aria-label":e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,placeholder:e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,onInput:i[8]||(i[8]=_=>r.filter(_,a.actualOptions)),onKeyup:n.withKeys(r.inputKeyupDown,["down"])},null,8,["value","debounce","aria-label","placeholder","onKeyup"])):n.createCommentVNode("",!0),n.createVNode(f,{ref:"list",role:"listbox",class:n.normalizeClass({"tree-select-list":!0,"has-hierarchy":r.hasHierarchy,"alphabetic-list":e.alphabeticStyle})},{default:n.withCtx(()=>{var _,g;return[!r.requiredDependencyNotFilled&&!r.visibleOptionsCount&&r.hasEmptyMessage?(n.openBlock(),n.createElementBlock("div",Vd,[n.renderSlot(t.$slots,"emptyMessage")])):!r.requiredDependencyNotFilled&&!r.visibleOptionsCount?(n.openBlock(),n.createElementBlock("div",jd,n.toDisplayString(a.actualStrings.emptyTitle),1)):n.createCommentVNode("",!0),n.withDirectives(n.createElementVNode("div",{class:"tree-select-empty"},n.toDisplayString(a.actualStrings.requiredDependencyNotFilled),513),[[n.vShow,r.requiredDependencyNotFilled]]),!e.isMultiple&&!e.isRequired&&a.actualOptions.length>0?(n.openBlock(),n.createBlock(h,{key:2,option:{title:t.lang("none","select"),id:null,checked:r.isEmpty},name:a.actualName,"parent-auto-check":a.parentAutoCheckVal,"is-multiple":e.isMultiple,role:"option",onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs},null,8,["option","name","parent-auto-check","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","show-input"])):n.createCommentVNode("",!0),Object.keys(a.actualBookmarkedOptions).length>0?(n.openBlock(!0),n.createElementBlock(n.Fragment,{key:3},n.renderList(a.actualBookmarkedOptions,$=>(n.openBlock(),n.createBlock(h,{key:"bookmark"+$.id,class:"bookmarked-option",option:$,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!0,"is-bookmarked":!0,role:"option",onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs},null,8,["option","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","html-title","show-input"]))),128)):n.createCommentVNode("",!0),r.requiredDependencyNotFilled?n.createCommentVNode("",!0):(n.openBlock(),n.createElementBlock("div",Fd,[e.allOptions&&!e.alphabeticStyle&&e.isMultiple&&r.visibleOptionsCount&&!r.requiredDependencyNotFilled?(n.openBlock(),n.createBlock(h,{key:0,option:{title:a.actualStrings.selectAllOptions,initiallyVisible:!0,visible:!0,isDisabled:r.visibleOptionsCount<r.optionsCount,checked:a.allOptionsIsChecked,isIndeterminate:!!Object.keys(a.selected).length},"is-toggle":e.isToggle,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!1,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,role:"option",onCheck:r.manageAll,onOnFocus:i[9]||(i[9]=$=>a.focusedOptionId=$)},null,8,["option","is-toggle","is-multiple","uid","only-end-nodes","show-input","alphabetic-style","onCheck"])):n.createCommentVNode("",!0),n.createElementVNode("div",qd,[n.createElementVNode("div",{style:n.normalizeStyle({height:((_=a.virtualizer)==null?void 0:_.getTotalSize())+"px",position:"relative"})},[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList((g=a.virtualizer)==null?void 0:g.getVirtualItems(),$=>(n.openBlock(),n.createElementBlock("div",{key:$.index,"data-index":$.index,ref_for:!0,ref:a.virtualizer.measureElement,style:n.normalizeStyle({position:"absolute",top:0,left:0,width:"100%",transform:`translateY(${$.start}px)`})},[a.actualOptions[$.index]?n.withDirectives((n.openBlock(),n.createBlock(h,{key:0,option:a.actualOptions[$.index],"is-toggle":e.isToggle,name:a.actualName,role:"option","parent-auto-check":a.parentAutoCheckVal,"is-multiple":e.isMultiple,"is-bookmarkable":e.isBookmarkable,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,onOnFocus:i[10]||(i[10]=v=>a.focusedOptionId=v)},null,8,["option","is-toggle","name","parent-auto-check","is-multiple","is-bookmarkable","uid","only-end-nodes","html-title","show-input","alphabetic-style","onCheck","onToggleBookmark"])),[[n.vShow,a.actualOptions[$.index].visible&&!a.actualOptions[$.index].hidden]]):n.createCommentVNode("",!0)],12,Hd))),128))],4)],512)])),t.infiniteLoader?(n.openBlock(),n.createElementBlock("div",zd,null,512)):n.createCommentVNode("",!0)]}),_:3},8,["class"])],6)]),_:2},[r.hasTrigger?{name:"trigger",fn:n.withCtx(()=>[n.renderSlot(t.$slots,"trigger",{selectedCount:r.selectedKeys.length,isOpen:a.isOpen})]),key:"0"}:{name:"trigger",fn:n.withCtx(({isOpened:_})=>[n.createElementVNode("div",{role:"combobox",tabindex:"0",class:n.normalizeClass(["tree-choice",{"tree-choice-opened":_,"has-clear-button":e.showClearButton,"tree-choice-error":e.errorMessage}]),ref:"combobox","aria-expanded":_,onClick:i[2]||(i[2]=n.withModifiers(()=>{},["prevent"])),onBlur:i[3]||(i[3]=(...g)=>r.onBlur&&r.onBlur(...g)),onKeyup:[i[4]||(i[4]=n.withKeys((...g)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(...g),["down"])),i[5]||(i[5]=n.withKeys((...g)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(...g),["up"]))],"aria-label":e.ariaLabel,"aria-activedescendant":a.focusedOptionId},[r.hasTriggerContent?n.renderSlot(t.$slots,"triggerContent",{key:0,selectedCount:r.selectedKeys.length,isOpen:_}):(n.openBlock(),n.createElementBlock(n.Fragment,{key:1},[e.htmlOptionTitle?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass({placeholder:!r.selectStatus}),innerHTML:r.selectStatus||e.placeholder},null,10,["innerHTML"])):(n.openBlock(),n.createElementBlock("span",{key:1,class:n.normalizeClass({placeholder:!r.selectStatus})},n.toDisplayString(r.selectStatus||e.placeholder),3))],64)),e.showClearButton?n.withDirectives((n.openBlock(),n.createBlock(p,{key:2,kind:"ghost",class:"button-clear","aria-label":"Clear selection",onClick:n.withModifiers(r.clearValue,["prevent"]),onKeypress:i[0]||(i[0]=n.withKeys(n.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeydown:i[1]||(i[1]=n.withKeys(n.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeyup:n.withKeys(n.withModifiers(r.clearValue,["prevent"]),["enter"]),"help-text":e.clearButtonMessage},{default:n.withCtx(()=>[n.createVNode(c,{name:"close-outline"})]),_:1},8,["onClick","onKeyup","help-text"])),[[n.vShow,Object.keys(a.selected).length]]):n.createCommentVNode("",!0),n.createVNode(c,{name:_?"chevron-up-outline":"chevron-down-outline",classes:"tree-select-caret"},null,8,["name"]),(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(r.selectedKeys,g=>(n.openBlock(),n.createElementBlock("input",{type:"hidden",key:"hidden-"+g,name:a.actualName,value:g},null,8,["name","value"]))),128))],42,["aria-expanded","aria-label","aria-activedescendant"])]),key:"1"}]),1032,["disabled","is-resizable","vertical","class","onClose","onOpen"])],16)],64)}const Gi=be(Rd,[["render",Ud]]),Kd={name:"IbLimitSelector",props:{labelSelect:{type:String,required:!0},value:{type:Number},vertical:{type:String},options:{type:Array,default:()=>[10,25,50,100]}},watch(t){this.selected=t},data(){return{selected:this.value}},methods:{selectItem(t){this.selected=t,this.onChange(t)},onChange(t){Number.isInteger(+t)&&this.$emit("select",+t)}},computed:{prepareOptions(){return this.options.map(t=>({id:t,title:t}))}},components:{IbLabel:On,IbSelect:Gi}},Gd={class:"report-limit-selector"};function Wd(t,i,e,o,a,r){const d=n.resolveComponent("ib-label"),c=n.resolveComponent("ib-select");return n.openBlock(),n.createElementBlock("div",Gd,[n.createVNode(d,null,{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.labelSelect),1)]),_:1}),n.createVNode(c,{classList:"report-limit-selector-select",value:e.value,vertical:e.vertical,options:r.prepareOptions,"is-multiple":!1,"show-clear-button":!1,"aria-label":"Pagination",onInput:r.selectItem},null,8,["value","vertical","options","onInput"])])}const Vo=be(Kd,[["render",Wd]]),Yd=475,Zd={name:"IbPagination",props:{tooltipTextPrev:{type:String},tooltipTextNext:{type:String},labelInput:{type:String},labelSelect:{type:String,required:!0},countRows:{type:Number,required:!0},pageCount:{type:Number,default:null},current:{type:Number,default:1},limitSelector:{type:Number,default:10},showPaginationInput:{type:Boolean,default:!0},showLimitSelector:{type:Boolean,default:!0},vertical:{type:String}},data(){return{isShort:!1,resizeObserver:null,currentPage:this.current,indexSpaceLeft:null,indexSpaceRight:null,limitValue:this.limitSelector}},watch:{current(t){this.onSelect(t)},limitSelector(t){this.limitValue=t},limitValue(){this.currentPage=1}},mounted(){this.handleResize(),this.resizeObserver=new ResizeObserver(this.handleResize),this.resizeObserver.observe(this.$refs.paginationControl)},methods:{handleResize(){this.isShort=this.$refs.paginationControl.clientWidth<Yd},changeLimit(t){Number.isInteger(t)&&(this.limitValue=t,this.$emit("set-limit",t))},onInput(t){if(t<1){this.onSelect(1);return}if(t>this.countPagePagination){this.onSelect(this.countPagePagination);return}this.onSelect(Number(t))},onSelect(t){Number.isInteger(t)&&(this.currentPage=t,this.$emit("select",t))},showItem(t){if(this.countPagePagination<=5)return this.indexSpaceLeft=null,this.indexSpaceRight=null,!0;if(t===1||t===this.countPagePagination)return!0;if(this.countPagePagination>=7){if(this.currentPage<=3&&t<=5)return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=null,!0;if(this.currentPage>=this.countPagePagination-2&&t>=this.countPagePagination-4)return this.indexSpaceLeft=null,this.indexSpaceRight=1,!0;if(3<this.currentPage<this.countPagePagination-3&&(t===this.currentPage+1||t===this.currentPage-1||t===this.currentPage))return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=1,!0}else return!0;return!1}},computed:{setCountOfRows(){return this.currentPage===1||this.countPagePagination===1?"1 - "+(this.countPagePagination>1?this.limitValue:this.countRows):this.countPagePagination===this.currentPage?(this.currentPage-1)*this.limitValue+" - "+this.countRows:(this.currentPage-1)*this.limitValue+1+" - "+this.currentPage*this.limitValue},countPagePagination(){return Math.ceil(this.countRows/this.limitValue)}},beforeUnmount(){this.resizeObserver.disconnect(),this.resizeObserver=null},components:{IbIconButton:Xe,IbIcon:Le,IbInput:Ui,IbLabel:On,IbLimitSelector:Vo,IbTooltip:_n}},Jd={class:"repot-pagination"},Xd={class:"pagination-input"},Qd={class:"row-count"},eu={key:1,class:"pagination-text"},tu={key:2,class:"pagination-wrapper"},nu=["onClick"];function iu(t,i,e,o,a,r){const d=n.resolveComponent("ib-limit-selector"),c=n.resolveComponent("ib-label"),p=n.resolveComponent("ib-input"),s=n.resolveComponent("ib-icon"),h=n.resolveComponent("ib-tooltip"),f=n.resolveComponent("ib-icon-button");return n.openBlock(),n.createElementBlock("div",{ref:"paginationControl",class:n.normalizeClass(["report-controls",{"simple-pagination":!e.showLimitSelector}])},[e.showLimitSelector?(n.openBlock(),n.createBlock(d,{key:0,onSelect:r.changeLimit,value:a.limitValue,vertical:e.vertical,"label-select":e.labelSelect},null,8,["onSelect","value","vertical","label-select"])):n.createCommentVNode("",!0),n.createElementVNode("div",Jd,[e.showPaginationInput?(n.openBlock(),n.createElementBlock(n.Fragment,{key:0},[n.createVNode(c,{for:"goToPage"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.labelInput),1)]),_:1}),n.createElementVNode("div",Xd,[n.createVNode(p,{id:"goToPage",type:"number","hide-number-actions":"",debounce:500,onInput:r.onInput},null,8,["onInput"])])],64)):n.createCommentVNode("",!0),n.createElementVNode("div",Qd,n.toDisplayString(r.setCountOfRows+" of "+e.countRows),1),n.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-prev",disabled:a.currentPage===1,onClick:i[0]||(i[0]=l=>r.onSelect(a.currentPage-1))},{default:n.withCtx(()=>[n.createVNode(s,{name:"chevron-back-outline"}),e.tooltipTextPrev?(n.openBlock(),n.createBlock(h,{key:0,text:e.tooltipTextPrev},null,8,["text"])):n.createCommentVNode("",!0)]),_:1},8,["disabled"]),a.isShort?(n.openBlock(),n.createElementBlock("p",eu,n.toDisplayString(a.currentPage)+" Page ",1)):(n.openBlock(),n.createElementBlock("ul",tu,[(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(r.countPagePagination,(l,u)=>n.withDirectives((n.openBlock(),n.createElementBlock("li",{key:u,class:n.normalizeClass(["pagination-item",{active:u+1===a.currentPage,"dots-left":a.indexSpaceLeft===u+1,"dots-right":a.indexSpaceRight===u+1}]),onClick:_=>r.onSelect(u+1)},[n.createElementVNode("button",null,n.toDisplayString(u+1),1)],10,nu)),[[n.vShow,r.showItem(u+1)]])),128))])),n.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-next",disabled:a.currentPage===r.countPagePagination,onClick:i[1]||(i[1]=l=>r.onSelect(a.currentPage+1))},{default:n.withCtx(()=>[n.createVNode(s,{name:"chevron-forward-outline"}),e.tooltipTextNext?(n.openBlock(),n.createBlock(h,{key:0,text:e.tooltipTextNext},null,8,["text"])):n.createCommentVNode("",!0)]),_:1},8,["disabled"])])],2)}const ru=be(Zd,[["render",iu]]),Sn={PROGRESS:"progress",SUCCESS:"success",FAILED:"failed",CANCELING:"canceling",CANCELED:"canceled"},ou={props:{states:{type:String,default:Sn.PROGRESS},progress:{type:[String,Number],default:0},ariaLabel:{type:String,required:!0}},computed:{classes(){const t=["ib-progress-bar"];return t.push(`progress-bar-${this.states}`),t},iconName(){return this.states===Sn.SUCCESS?"checkmark-circle":this.states===Sn.FAILED||this.states===Sn.CANCELING||this.states===Sn.CANCELED?"close-circle":""}},components:{IbIcon:Le}},jo=t=>(n.pushScopeId("data-v-88a1a511"),t=t(),n.popScopeId(),t),au={class:"ib-progress-bar-wrapper"},lu=["aria-label","aria-valuenow"],su=[jo(()=>n.createElementVNode("div",{class:"gradient"},null,-1))],cu=jo(()=>n.createElementVNode("div",null,null,-1));function du(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon");return n.openBlock(),n.createElementBlock("div",au,[n.createElementVNode("div",{class:n.normalizeClass(r.classes)},[n.createElementVNode("div",{class:"progress",role:"meter","aria-label":e.ariaLabel,"aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.progress,style:n.normalizeStyle({width:e.progress+"%"})},su,12,lu),cu],2),n.withDirectives(n.createVNode(d,{class:"status-icon",name:r.iconName},null,8,["name"]),[[n.vShow,r.iconName.length]])])}const uu=be(ou,[["render",du],["__scopeId","data-v-88a1a511"]]),fu={new:`<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
30
33
  <circle id="Ellipse" cx="5.5" cy="5.5" r="5" fill="#0369E8"/>
31
34
  </svg>
32
35
  `,success:`
@@ -57,79 +60,78 @@
57
60
  <svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
58
61
  <path fill-rule="evenodd" clip-rule="evenodd" d="M4.20658 2.79237C4.59822 2.60495 5.03685 2.5 5.5 2.5C7.15685 2.5 8.5 3.84315 8.5 5.5C8.5 5.96315 8.39505 6.40178 8.20763 6.79342L9.6716 8.25739C10.1951 7.46696 10.5 6.51908 10.5 5.5C10.5 2.73858 8.26142 0.5 5.5 0.5C4.48092 0.5 3.53304 0.804877 2.74261 1.3284L4.20658 2.79237ZM2.79237 4.20658L1.3284 2.74261C0.804877 3.53304 0.5 4.48092 0.5 5.5C0.5 8.26142 2.73858 10.5 5.5 10.5C6.51908 10.5 7.46696 10.1951 8.25739 9.6716L6.79342 8.20763C6.40178 8.39505 5.96315 8.5 5.5 8.5C3.84315 8.5 2.5 7.15685 2.5 5.5C2.5 5.03685 2.60495 4.59822 2.79237 4.20658Z" fill="#677788"/>
59
62
  </svg>
60
- `},Sp="",Hd={props:{type:{type:String,default:"success"}},data(){return{icons:Fd}}},zd={class:"status-indicator"},Ud=["innerHTML"];function Kd(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("div",zd,[r.createElementVNode("div",{class:r.normalizeClass(["status-indicator-icon",e.type]),innerHTML:a.icons[e.type]},null,10,Ud),r.renderSlot(t.$slots,"default",{},void 0,!0)])}const Gd=_e(Hd,[["render",Kd],["__scopeId","data-v-e696394e"]]),xp="",Tp="",Wd={name:"IbPanel",mixins:[Fi],props:{showExpandButton:{type:Boolean,default:!1},expandButtonTooltip:{type:String,default:""},isOpen:{type:Boolean,default:!0},error:{type:Boolean,default:!1},hideHeaderDivider:{type:Boolean,default:!1}},watch:{isOpen(){this.isOpenVal=this.isOpen},isOpenVal(){this.$emit("update:isOpen",this.isOpenVal)}},data(){return{isOpenVal:this.isOpen}},components:{IconButton:ut,Icon:Le},directives:{Tooltip:Wt},emits:["update:isOpen"]},Yd={class:"panel-head"},Zd={class:"head-title"},Jd={class:"divider"},Xd={class:"head-content"},Qd={class:"panel-body"};function eu(t,n,e,o,a,i){const s=r.resolveComponent("icon"),l=r.resolveComponent("icon-button"),u=r.resolveDirective("tooltip");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-panel",{"panel-error":e.error}])},[r.createElementVNode("div",Yd,[r.createElementVNode("div",Zd,[r.renderSlot(t.$slots,"title",{},void 0,!0)]),r.withDirectives(r.createElementVNode("div",Jd,null,512),[[r.vShow,!e.hideHeaderDivider]]),r.createElementVNode("div",Xd,[r.renderSlot(t.$slots,"head-content",{},void 0,!0)]),e.showExpandButton?r.withDirectives((r.openBlock(),r.createBlock(l,{key:0,class:r.normalizeClass({"toggle-visible-button":!0,active:a.isOpenVal}),kind:"ghost",type:"button",onClick:n[0]||(n[0]=d=>a.isOpenVal=!a.isOpenVal)},{default:r.withCtx(()=>[r.createVNode(s,{name:"chevron-down-outline"})]),_:1},8,["class"])),[[u,e.expandButtonTooltip]]):r.createCommentVNode("",!0)]),r.createVNode(r.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("div",Qd,[r.renderSlot(t.$slots,"body",{},void 0,!0)],512),[[r.vShow,a.isOpenVal]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const tu=_e(Wd,[["render",eu],["__scopeId","data-v-1f178fc0"]]),Np="",nu={props:{showCloseIcon:{type:Boolean,default:!1},active:{type:Boolean,default:!1},error:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{hasIcon(){var t;return(t=this.$slots)==null?void 0:t.icon}},components:{Icon:Le}},ru=["disabled"],iu={key:0,class:"ib-chips-icon-wrapper"},ou={key:1,class:"ib-chips-close-wrapper"};function au(t,n,e,o,a,i){const s=r.resolveComponent("icon");return r.openBlock(),r.createElementBlock("button",{class:r.normalizeClass({"ib-chips":!0,"ib-chips-active":e.active,"ib-chips-error":e.error,"ib-chips-disabled":e.disabled}),disabled:e.disabled},[i.hasIcon?(r.openBlock(),r.createElementBlock("span",iu,[r.renderSlot(t.$slots,"icon",{class:"ib-chips-icon"},void 0,!0)])):r.createCommentVNode("",!0),r.renderSlot(t.$slots,"default",{},void 0,!0),e.showCloseIcon?(r.openBlock(),r.createElementBlock("span",ou,[r.createVNode(s,{class:"ib-chips-icon",name:"close-outline"})])):r.createCommentVNode("",!0)],10,ru)}const lu=_e(nu,[["render",au],["__scopeId","data-v-7f6d49d7"]]),Ap="",su={name:"IbInputGroup",props:{supportText:{type:String,default:""},disabled:{type:Boolean,default:!1}}},cu={key:0,class:"support-text"};function du(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-form-group",{disabled:e.disabled}])},[r.renderSlot(t.$slots,"default"),e.supportText.length?(r.openBlock(),r.createElementBlock("p",cu,r.toDisplayString(e.supportText),1)):r.createCommentVNode("",!0)],2)}const uu=_e(su,[["render",du]]),Dp="",Hr={name:"IbInputGroup",props:{labelText:{type:String,default:""},required:{type:Boolean,required:!1},horizontal:{type:Boolean,default:!1},errorMessage:{type:String,default:""},infoText:{type:String,default:""},height:{type:String,default:"290px"},tooltipPosition:{type:String}},components:{IbLabel:kn,IbAlert:Ft}},Po=()=>{r.useCssVars(t=>({f99cce84:t.height}))},Io=Hr.setup;Hr.setup=Io?(t,n)=>(Po(),Io(t,n)):Po;const fu={class:"ib-checkbox-group-content"};function hu(t,n,e,o,a,i){const s=r.resolveComponent("ib-label"),l=r.resolveComponent("ib-alert");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-checkbox-group",{"ib-checkbox-group-horizontal":e.horizontal}])},[e.labelText.length?(r.openBlock(),r.createBlock(s,{key:0,class:"ib-checkbox-group-label",required:e.required,"info-text":e.infoText,"tooltip-position":e.tooltipPosition},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.labelText),1)]),_:1},8,["required","info-text","tooltip-position"])):r.createCommentVNode("",!0),e.errorMessage.length?(r.openBlock(),r.createBlock(l,{key:1,class:"ib-error-message"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.createElementVNode("div",fu,[r.renderSlot(t.$slots,"default")])],2)}const pu=_e(Hr,[["render",hu]]),Pp="",mu={name:"IbRadio",props:{modelValue:"",label:String,error:{type:Boolean,default:!1},name:{type:String},id:{type:String,default(){return pt()}},value:{type:[String,Number],required:!0},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],data(){return{uid:pt()}},mounted(){this.checked=this.isChecked},methods:{checkHandler(){this.$emit("update:modelValue",this.value)}},computed:{classes(){return{"ib-radio":!0,"has-error":this.error,"radio-filled":this.isChecked,"radio-disabled":this.disabled}},isChecked(){return this.modelValue===this.value}}},gu=t=>(r.pushScopeId("data-v-903afa0e"),t=t(),r.popScopeId(),t),yu=["for","aria-checked"],bu=["name","id","value","checked","disabled"],vu=gu(()=>r.createElementVNode("span",{class:"ib-radio-input"},null,-1)),_u={key:0,class:"ib-radio-label"};function $u(t,n,e,o,a,i){var s,l;return r.openBlock(),r.createElementBlock("label",{role:"radio",class:r.normalizeClass(i.classes),for:e.id,"aria-checked":i.isChecked},[r.createElementVNode("input",{type:"radio",name:e.name,id:e.id,value:e.value,checked:i.isChecked,disabled:e.disabled,ref:"radio",onChange:n[0]||(n[0]=(...u)=>i.checkHandler&&i.checkHandler(...u))},null,40,bu),r.createElementVNode("span",{class:r.normalizeClass(["ib-radio-body",{"without-text":!((s=e.label)!=null&&s.length)}])},[vu,(l=e.label)!=null&&l.length?(r.openBlock(),r.createElementBlock("span",_u,r.toDisplayString(e.label),1)):r.createCommentVNode("",!0)],2)],10,yu)}const wu=_e(mu,[["render",$u],["__scopeId","data-v-903afa0e"]]),Ip="",ku={props:{characterLimit:{type:[String,Number],required:!0},characterLength:{type:[String,Number],required:!0}}},Cu={class:"character-count"},Ou={key:0,class:"val-limit"},Eu={class:"val-length"},Su={class:"val-limit"},xu={key:2,class:"val-length error"};function Tu(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("div",Cu,[e.characterLength?e.characterLimit>=e.characterLength?(r.openBlock(),r.createElementBlock(r.Fragment,{key:1},[r.createElementVNode("p",Eu,r.toDisplayString(e.characterLength),1),r.createTextVNode(" / "),r.createElementVNode("p",Su,r.toDisplayString(e.characterLimit),1)],64)):(r.openBlock(),r.createElementBlock("p",xu,r.toDisplayString(e.characterLimit-e.characterLength),1)):(r.openBlock(),r.createElementBlock("p",Ou,"Max "+r.toDisplayString(e.characterLimit),1))])}const zr=_e(ku,[["render",Tu],["__scopeId","data-v-be1f2629"]]),Bp="",Nu={name:"IbTextarea",props:{disabled:{type:Boolean,default:!1},id:{type:String,default(){return pt()}},error:{type:Boolean,default:!1},characterLimit:{type:Number,default:null},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""},value:{type:String,default:""}},watch:{value(){this.val=this.value},val(){this.$emit("update:value",this.val)}},data(){return{val:this.value}},methods:{onInput(){this.$emit("input",this.val)},onBlur(){this.$emit("blur",this.val)}},computed:{characterOverLimit(){return!!this.characterLimit&&this.val.length>this.characterLimit},classes(){const t=["ib-textarea"];return(this.error||this.errorMessage.length||this.characterOverLimit)&&t.push("error"),t}},components:{IbAlert:Ft,IbCharacterCount:zr},emits:["input","blur","update:value"],inheritAttrs:!1},Au=["disabled"],Du={class:"textarea-actions"};function Pu(t,n,e,o,a,i){const s=r.resolveComponent("ib-character-count"),l=r.resolveComponent("ib-alert");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["textarea-wrapper",{disabled:e.disabled,hasActins:t.$slots.actions}])},[e.characterLimit?(r.openBlock(),r.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.val.length},null,8,["character-limit","character-length"])):r.createCommentVNode("",!0),r.withDirectives(r.createVNode(l,null,{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1},512),[[r.vShow,e.errorMessage.length]]),r.withDirectives(r.createVNode(l,null,{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[r.vShow,e.characterLimitErrorMessage.length&&i.characterOverLimit]]),r.withDirectives(r.createElementVNode("textarea",r.mergeProps(t.$attrs,{"onUpdate:modelValue":n[0]||(n[0]=u=>a.val=u),onInput:n[1]||(n[1]=(...u)=>i.onInput&&i.onInput(...u)),onBlur:n[2]||(n[2]=(...u)=>i.onBlur&&i.onBlur(...u)),class:["ib-textarea",i.classes],disabled:e.disabled}),null,16,Au),[[r.vModelText,a.val]]),r.createElementVNode("div",Du,[r.renderSlot(t.$slots,"actions",{},void 0,!0)])],2)}const Iu=_e(Nu,[["render",Pu],["__scopeId","data-v-8cf7f825"]]);var Ur=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],cn={_disable:[],allowInput:!1,allowInvalidPreload:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:typeof window=="object"&&window.navigator.userAgent.indexOf("MSIE")===-1,ariaDateFormat:"F j, Y",autoFillDefaultTime:!0,clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enableSeconds:!1,enableTime:!1,errorHandler:function(t){return typeof console<"u"&&console.warn(t)},getWeek:function(t){var n=new Date(t.getTime());n.setHours(0,0,0,0),n.setDate(n.getDate()+3-(n.getDay()+6)%7);var e=new Date(n.getFullYear(),0,4);return 1+Math.round(((n.getTime()-e.getTime())/864e5-3+(e.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z' /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z' /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},En={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(t){var n=t%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},at=function(t,n){return n===void 0&&(n=2),("000"+t).slice(n*-1)},gt=function(t){return t===!0?1:0};function Bo(t,n){var e;return function(){var o=this,a=arguments;clearTimeout(e),e=setTimeout(function(){return t.apply(o,a)},n)}}var Kr=function(t){return t instanceof Array?t:[t]};function et(t,n,e){if(e===!0)return t.classList.add(n);t.classList.remove(n)}function De(t,n,e){var o=window.document.createElement(t);return n=n||"",e=e||"",o.className=n,e!==void 0&&(o.textContent=e),o}function ar(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function Mo(t,n){if(n(t))return t;if(t.parentNode)return Mo(t.parentNode,n)}function lr(t,n){var e=De("div","numInputWrapper"),o=De("input","numInput "+t),a=De("span","arrowUp"),i=De("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1?o.type="number":(o.type="text",o.pattern="\\d*"),n!==void 0)for(var s in n)o.setAttribute(s,n[s]);return e.appendChild(o),e.appendChild(a),e.appendChild(i),e}function ft(t){try{if(typeof t.composedPath=="function"){var n=t.composedPath();return n[0]}return t.target}catch{return t.target}}var Gr=function(){},sr=function(t,n,e){return e.months[n?"shorthand":"longhand"][t]},Bu={D:Gr,F:function(t,n,e){t.setMonth(e.months.longhand.indexOf(n))},G:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},H:function(t,n){t.setHours(parseFloat(n))},J:function(t,n){t.setDate(parseFloat(n))},K:function(t,n,e){t.setHours(t.getHours()%12+12*gt(new RegExp(e.amPM[1],"i").test(n)))},M:function(t,n,e){t.setMonth(e.months.shorthand.indexOf(n))},S:function(t,n){t.setSeconds(parseFloat(n))},U:function(t,n){return new Date(parseFloat(n)*1e3)},W:function(t,n,e){var o=parseInt(n),a=new Date(t.getFullYear(),0,2+(o-1)*7,0,0,0,0);return a.setDate(a.getDate()-a.getDay()+e.firstDayOfWeek),a},Y:function(t,n){t.setFullYear(parseFloat(n))},Z:function(t,n){return new Date(n)},d:function(t,n){t.setDate(parseFloat(n))},h:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},i:function(t,n){t.setMinutes(parseFloat(n))},j:function(t,n){t.setDate(parseFloat(n))},l:Gr,m:function(t,n){t.setMonth(parseFloat(n)-1)},n:function(t,n){t.setMonth(parseFloat(n)-1)},s:function(t,n){t.setSeconds(parseFloat(n))},u:function(t,n){return new Date(parseFloat(n))},w:Gr,y:function(t,n){t.setFullYear(2e3+parseFloat(n))}},Yt={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},Sn={Z:function(t){return t.toISOString()},D:function(t,n,e){return n.weekdays.shorthand[Sn.w(t,n,e)]},F:function(t,n,e){return sr(Sn.n(t,n,e)-1,!1,n)},G:function(t,n,e){return at(Sn.h(t,n,e))},H:function(t){return at(t.getHours())},J:function(t,n){return n.ordinal!==void 0?t.getDate()+n.ordinal(t.getDate()):t.getDate()},K:function(t,n){return n.amPM[gt(t.getHours()>11)]},M:function(t,n){return sr(t.getMonth(),!0,n)},S:function(t){return at(t.getSeconds())},U:function(t){return t.getTime()/1e3},W:function(t,n,e){return e.getWeek(t)},Y:function(t){return at(t.getFullYear(),4)},d:function(t){return at(t.getDate())},h:function(t){return t.getHours()%12?t.getHours()%12:12},i:function(t){return at(t.getMinutes())},j:function(t){return t.getDate()},l:function(t,n){return n.weekdays.longhand[t.getDay()]},m:function(t){return at(t.getMonth()+1)},n:function(t){return t.getMonth()+1},s:function(t){return t.getSeconds()},u:function(t){return t.getTime()},w:function(t){return t.getDay()},y:function(t){return String(t.getFullYear()).substring(2)}},Lo=function(t){var n=t.config,e=n===void 0?cn:n,o=t.l10n,a=o===void 0?En:o,i=t.isMobile,s=i===void 0?!1:i;return function(l,u,d){var p=d||a;return e.formatDate!==void 0&&!s?e.formatDate(l,u,p):u.split("").map(function(f,c,h){return Sn[f]&&h[c-1]!=="\\"?Sn[f](l,p,e):f!=="\\"?f:""}).join("")}},Wr=function(t){var n=t.config,e=n===void 0?cn:n,o=t.l10n,a=o===void 0?En:o;return function(i,s,l,u){if(!(i!==0&&!i)){var d=u||a,p,f=i;if(i instanceof Date)p=new Date(i.getTime());else if(typeof i!="string"&&i.toFixed!==void 0)p=new Date(i);else if(typeof i=="string"){var c=s||(e||cn).dateFormat,h=String(i).trim();if(h==="today")p=new Date,l=!0;else if(e&&e.parseDate)p=e.parseDate(i,c);else if(/Z$/.test(h)||/GMT$/.test(h))p=new Date(i);else{for(var v=void 0,m=[],_=0,y=0,g="";_<c.length;_++){var w=c[_],b=w==="\\",k=c[_-1]==="\\"||b;if(Yt[w]&&!k){g+=Yt[w];var T=new RegExp(g).exec(i);T&&(v=!0)&&m[w!=="Y"?"push":"unshift"]({fn:Bu[w],val:T[++y]})}else b||(g+=".")}p=!e||!e.noCalendar?new Date(new Date().getFullYear(),0,1,0,0,0,0):new Date(new Date().setHours(0,0,0,0)),m.forEach(function(S){var x=S.fn,M=S.val;return p=x(p,M,d)||p}),p=v?p:void 0}}if(!(p instanceof Date&&!isNaN(p.getTime()))){e.errorHandler(new Error("Invalid date provided: "+f));return}return l===!0&&p.setHours(0,0,0,0),p}}};function ht(t,n,e){return e===void 0&&(e=!0),e!==!1?new Date(t.getTime()).setHours(0,0,0,0)-new Date(n.getTime()).setHours(0,0,0,0):t.getTime()-n.getTime()}var Mu=function(t,n,e){return t>Math.min(n,e)&&t<Math.max(n,e)},Yr=function(t,n,e){return t*3600+n*60+e},Lu=function(t){var n=Math.floor(t/3600),e=(t-n*3600)/60;return[n,e,t-n*3600-e*60]},Ru={DAY:864e5};function Zr(t){var n=t.defaultHour,e=t.defaultMinute,o=t.defaultSeconds;if(t.minDate!==void 0){var a=t.minDate.getHours(),i=t.minDate.getMinutes(),s=t.minDate.getSeconds();n<a&&(n=a),n===a&&e<i&&(e=i),n===a&&e===i&&o<s&&(o=t.minDate.getSeconds())}if(t.maxDate!==void 0){var l=t.maxDate.getHours(),u=t.maxDate.getMinutes();n=Math.min(n,l),n===l&&(e=Math.min(u,e)),n===l&&e===u&&(o=t.maxDate.getSeconds())}return{hours:n,minutes:e,seconds:o}}typeof Object.assign!="function"&&(Object.assign=function(t){for(var n=[],e=1;e<arguments.length;e++)n[e-1]=arguments[e];if(!t)throw TypeError("Cannot convert undefined or null to object");for(var o=function(l){l&&Object.keys(l).forEach(function(u){return t[u]=l[u]})},a=0,i=n;a<i.length;a++){var s=i[a];o(s)}return t});var Ye=globalThis&&globalThis.__assign||function(){return Ye=Object.assign||function(t){for(var n,e=1,o=arguments.length;e<o;e++){n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t},Ye.apply(this,arguments)},Ro=globalThis&&globalThis.__spreadArrays||function(){for(var t=0,n=0,e=arguments.length;n<e;n++)t+=arguments[n].length;for(var o=Array(t),a=0,n=0;n<e;n++)for(var i=arguments[n],s=0,l=i.length;s<l;s++,a++)o[a]=i[s];return o},ju=300;function Vu(t,n){var e={config:Ye(Ye({},cn),Ve.defaultConfig),l10n:En};e.parseDate=Wr({config:e.config,l10n:e.l10n}),e._handlers=[],e.pluginElements=[],e.loadedPlugins=[],e._bind=m,e._setHoursFromDate=c,e._positionCalendar=te,e.changeMonth=D,e.changeYear=z,e.clear=A,e.close=I,e.onMouseOver=he,e._createElement=De,e.createDay=T,e.destroy=U,e.isEnabled=Z,e.jumpToDate=g,e.updateValue=it,e.open=ke,e.redraw=ie,e.set=ze,e.setDate=Ae,e.toggle=Xt;function o(){e.utils={getDaysInMonth:function(B,j){return B===void 0&&(B=e.currentMonth),j===void 0&&(j=e.currentYear),B===1&&(j%4===0&&j%100!==0||j%400===0)?29:e.l10n.daysInMonth[B]}}}function a(){e.element=e.input=t,e.isOpen=!1,Re(),Q(),rt(),Ee(),o(),e.isMobile||k(),y(),(e.selectedDates.length||e.config.noCalendar)&&(e.config.enableTime&&c(e.config.noCalendar?e.latestSelectedDateObj:void 0),it(!1)),l();var B=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!e.isMobile&&B&&te(),Pe("onReady")}function i(){var B;return((B=e.calendarContainer)===null||B===void 0?void 0:B.getRootNode()).activeElement||document.activeElement}function s(B){return B.bind(e)}function l(){var B=e.config;B.weekNumbers===!1&&B.showMonths===1||B.noCalendar!==!0&&window.requestAnimationFrame(function(){if(e.calendarContainer!==void 0&&(e.calendarContainer.style.visibility="hidden",e.calendarContainer.style.display="block"),e.daysContainer!==void 0){var j=(e.days.offsetWidth+1)*B.showMonths;e.daysContainer.style.width=j+"px",e.calendarContainer.style.width=j+(e.weekWrapper!==void 0?e.weekWrapper.offsetWidth:0)+"px",e.calendarContainer.style.removeProperty("visibility"),e.calendarContainer.style.removeProperty("display")}})}function u(B){if(e.selectedDates.length===0){var j=e.config.minDate===void 0||ht(new Date,e.config.minDate)>=0?new Date:new Date(e.config.minDate.getTime()),G=Zr(e.config);j.setHours(G.hours,G.minutes,G.seconds,j.getMilliseconds()),e.selectedDates=[j],e.latestSelectedDateObj=j}B!==void 0&&B.type!=="blur"&&Qt(B);var X=e._input.value;f(),it(),e._input.value!==X&&e._debouncedChange()}function d(B,j){return B%12+12*gt(j===e.l10n.amPM[1])}function p(B){switch(B%24){case 0:case 12:return 12;default:return B%12}}function f(){if(!(e.hourElement===void 0||e.minuteElement===void 0)){var B=(parseInt(e.hourElement.value.slice(-2),10)||0)%24,j=(parseInt(e.minuteElement.value,10)||0)%60,G=e.secondElement!==void 0?(parseInt(e.secondElement.value,10)||0)%60:0;e.amPM!==void 0&&(B=d(B,e.amPM.textContent));var X=e.config.minTime!==void 0||e.config.minDate&&e.minDateHasTime&&e.latestSelectedDateObj&&ht(e.latestSelectedDateObj,e.config.minDate,!0)===0,oe=e.config.maxTime!==void 0||e.config.maxDate&&e.maxDateHasTime&&e.latestSelectedDateObj&&ht(e.latestSelectedDateObj,e.config.maxDate,!0)===0;if(e.config.maxTime!==void 0&&e.config.minTime!==void 0&&e.config.minTime>e.config.maxTime){var se=Yr(e.config.minTime.getHours(),e.config.minTime.getMinutes(),e.config.minTime.getSeconds()),ye=Yr(e.config.maxTime.getHours(),e.config.maxTime.getMinutes(),e.config.maxTime.getSeconds()),ue=Yr(B,j,G);if(ue>ye&&ue<se){var Ce=Lu(se);B=Ce[0],j=Ce[1],G=Ce[2]}}else{if(oe){var de=e.config.maxTime!==void 0?e.config.maxTime:e.config.maxDate;B=Math.min(B,de.getHours()),B===de.getHours()&&(j=Math.min(j,de.getMinutes())),j===de.getMinutes()&&(G=Math.min(G,de.getSeconds()))}if(X){var ge=e.config.minTime!==void 0?e.config.minTime:e.config.minDate;B=Math.max(B,ge.getHours()),B===ge.getHours()&&j<ge.getMinutes()&&(j=ge.getMinutes()),j===ge.getMinutes()&&(G=Math.max(G,ge.getSeconds()))}}h(B,j,G)}}function c(B){var j=B||e.latestSelectedDateObj;j&&j instanceof Date&&h(j.getHours(),j.getMinutes(),j.getSeconds())}function h(B,j,G){e.latestSelectedDateObj!==void 0&&e.latestSelectedDateObj.setHours(B%24,j,G||0,0),!(!e.hourElement||!e.minuteElement||e.isMobile)&&(e.hourElement.value=at(e.config.time_24hr?B:(12+B)%12+12*gt(B%12===0)),e.minuteElement.value=at(j),e.amPM!==void 0&&(e.amPM.textContent=e.l10n.amPM[gt(B>=12)]),e.secondElement!==void 0&&(e.secondElement.value=at(G)))}function v(B){var j=ft(B),G=parseInt(j.value)+(B.delta||0);(G/1e3>1||B.key==="Enter"&&!/[^\d]/.test(G.toString()))&&z(G)}function m(B,j,G,X){if(j instanceof Array)return j.forEach(function(oe){return m(B,oe,G,X)});if(B instanceof Array)return B.forEach(function(oe){return m(oe,j,G,X)});B.addEventListener(j,G,X),e._handlers.push({remove:function(){return B.removeEventListener(j,G,X)}})}function _(){Pe("onChange")}function y(){if(e.config.wrap&&["open","close","toggle","clear"].forEach(function(G){Array.prototype.forEach.call(e.element.querySelectorAll("[data-"+G+"]"),function(X){return m(X,"click",e[G])})}),e.isMobile){Bn();return}var B=Bo(be,50);if(e._debouncedChange=Bo(_,ju),e.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&m(e.daysContainer,"mouseover",function(G){e.config.mode==="range"&&he(ft(G))}),m(e._input,"keydown",ce),e.calendarContainer!==void 0&&m(e.calendarContainer,"keydown",ce),!e.config.inline&&!e.config.static&&m(window,"resize",B),window.ontouchstart!==void 0?m(window.document,"touchstart",L):m(window.document,"mousedown",L),m(window.document,"focus",L,{capture:!0}),e.config.clickOpens===!0&&(m(e._input,"focus",e.open),m(e._input,"click",e.open)),e.daysContainer!==void 0&&(m(e.monthNav,"click",It),m(e.monthNav,["keyup","increment"],v),m(e.daysContainer,"click",me)),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0){var j=function(G){return ft(G).select()};m(e.timeContainer,["increment"],u),m(e.timeContainer,"blur",u,{capture:!0}),m(e.timeContainer,"click",w),m([e.hourElement,e.minuteElement],["focus","click"],j),e.secondElement!==void 0&&m(e.secondElement,"focus",function(){return e.secondElement&&e.secondElement.select()}),e.amPM!==void 0&&m(e.amPM,"click",function(G){u(G)})}e.config.allowInput&&m(e._input,"blur",ne)}function g(B,j){var G=B!==void 0?e.parseDate(B):e.latestSelectedDateObj||(e.config.minDate&&e.config.minDate>e.now?e.config.minDate:e.config.maxDate&&e.config.maxDate<e.now?e.config.maxDate:e.now),X=e.currentYear,oe=e.currentMonth;try{G!==void 0&&(e.currentYear=G.getFullYear(),e.currentMonth=G.getMonth())}catch(se){se.message="Invalid date supplied: "+G,e.config.errorHandler(se)}j&&e.currentYear!==X&&(Pe("onYearChange"),N()),j&&(e.currentYear!==X||e.currentMonth!==oe)&&Pe("onMonthChange"),e.redraw()}function w(B){var j=ft(B);~j.className.indexOf("arrow")&&b(B,j.classList.contains("arrowUp")?1:-1)}function b(B,j,G){var X=B&&ft(B),oe=G||X&&X.parentNode&&X.parentNode.firstChild,se=zt("increment");se.delta=j,oe&&oe.dispatchEvent(se)}function k(){var B=window.document.createDocumentFragment();if(e.calendarContainer=De("div","flatpickr-calendar"),e.calendarContainer.tabIndex=-1,!e.config.noCalendar){if(B.appendChild(W()),e.innerContainer=De("div","flatpickr-innerContainer"),e.config.weekNumbers){var j=V(),G=j.weekWrapper,X=j.weekNumbers;e.innerContainer.appendChild(G),e.weekNumbers=X,e.weekWrapper=G}e.rContainer=De("div","flatpickr-rContainer"),e.rContainer.appendChild(re()),e.daysContainer||(e.daysContainer=De("div","flatpickr-days"),e.daysContainer.tabIndex=-1),O(),e.rContainer.appendChild(e.daysContainer),e.innerContainer.appendChild(e.rContainer),B.appendChild(e.innerContainer)}e.config.enableTime&&B.appendChild(Y()),et(e.calendarContainer,"rangeMode",e.config.mode==="range"),et(e.calendarContainer,"animate",e.config.animate===!0),et(e.calendarContainer,"multiMonth",e.config.showMonths>1),e.calendarContainer.appendChild(B);var oe=e.config.appendTo!==void 0&&e.config.appendTo.nodeType!==void 0;if((e.config.inline||e.config.static)&&(e.calendarContainer.classList.add(e.config.inline?"inline":"static"),e.config.inline&&(!oe&&e.element.parentNode?e.element.parentNode.insertBefore(e.calendarContainer,e._input.nextSibling):e.config.appendTo!==void 0&&e.config.appendTo.appendChild(e.calendarContainer)),e.config.static)){var se=De("div","flatpickr-wrapper");e.element.parentNode&&e.element.parentNode.insertBefore(se,e.element),se.appendChild(e.element),e.altInput&&se.appendChild(e.altInput),se.appendChild(e.calendarContainer)}!e.config.static&&!e.config.inline&&(e.config.appendTo!==void 0?e.config.appendTo:window.document.body).appendChild(e.calendarContainer)}function T(B,j,G,X){var oe=Z(j,!0),se=De("span",B,j.getDate().toString());return se.dateObj=j,se.$i=X,se.setAttribute("aria-label",e.formatDate(j,e.config.ariaDateFormat)),B.indexOf("hidden")===-1&&ht(j,e.now)===0&&(e.todayDateElem=se,se.classList.add("today"),se.setAttribute("aria-current","date")),oe?(se.tabIndex=-1,kt(j)&&(se.classList.add("selected"),e.selectedDateElem=se,e.config.mode==="range"&&(et(se,"startRange",e.selectedDates[0]&&ht(j,e.selectedDates[0],!0)===0),et(se,"endRange",e.selectedDates[1]&&ht(j,e.selectedDates[1],!0)===0),B==="nextMonthDay"&&se.classList.add("inRange")))):se.classList.add("flatpickr-disabled"),e.config.mode==="range"&&Pt(j)&&!kt(j)&&se.classList.add("inRange"),e.weekNumbers&&e.config.showMonths===1&&B!=="prevMonthDay"&&X%7===6&&e.weekNumbers.insertAdjacentHTML("beforeend","<span class='flatpickr-day'>"+e.config.getWeek(j)+"</span>"),Pe("onDayCreate",se),se}function S(B){B.focus(),e.config.mode==="range"&&he(B)}function x(B){for(var j=B>0?0:e.config.showMonths-1,G=B>0?e.config.showMonths:-1,X=j;X!=G;X+=B)for(var oe=e.daysContainer.children[X],se=B>0?0:oe.children.length-1,ye=B>0?oe.children.length:-1,ue=se;ue!=ye;ue+=B){var Ce=oe.children[ue];if(Ce.className.indexOf("hidden")===-1&&Z(Ce.dateObj))return Ce}}function M(B,j){for(var G=B.className.indexOf("Month")===-1?B.dateObj.getMonth():e.currentMonth,X=j>0?e.config.showMonths:-1,oe=j>0?1:-1,se=G-e.currentMonth;se!=X;se+=oe)for(var ye=e.daysContainer.children[se],ue=G-e.currentMonth===se?B.$i+j:j<0?ye.children.length-1:0,Ce=ye.children.length,de=ue;de>=0&&de<Ce&&de!=(j>0?Ce:-1);de+=oe){var ge=ye.children[de];if(ge.className.indexOf("hidden")===-1&&Z(ge.dateObj)&&Math.abs(B.$i-de)>=Math.abs(j))return S(ge)}e.changeMonth(oe),E(x(oe),0)}function E(B,j){var G=i(),X=J(G||document.body),oe=B!==void 0?B:X?G:e.selectedDateElem!==void 0&&J(e.selectedDateElem)?e.selectedDateElem:e.todayDateElem!==void 0&&J(e.todayDateElem)?e.todayDateElem:x(j>0?1:-1);oe===void 0?e._input.focus():X?M(oe,j):S(oe)}function C(B,j){for(var G=(new Date(B,j,1).getDay()-e.l10n.firstDayOfWeek+7)%7,X=e.utils.getDaysInMonth((j-1+12)%12,B),oe=e.utils.getDaysInMonth(j,B),se=window.document.createDocumentFragment(),ye=e.config.showMonths>1,ue=ye?"prevMonthDay hidden":"prevMonthDay",Ce=ye?"nextMonthDay hidden":"nextMonthDay",de=X+1-G,ge=0;de<=X;de++,ge++)se.appendChild(T("flatpickr-day "+ue,new Date(B,j-1,de),de,ge));for(de=1;de<=oe;de++,ge++)se.appendChild(T("flatpickr-day",new Date(B,j,de),de,ge));for(var Te=oe+1;Te<=42-G&&(e.config.showMonths===1||ge%7!==0);Te++,ge++)se.appendChild(T("flatpickr-day "+Ce,new Date(B,j+1,Te%oe),Te,ge));var Be=De("div","dayContainer");return Be.appendChild(se),Be}function O(){if(e.daysContainer!==void 0){ar(e.daysContainer),e.weekNumbers&&ar(e.weekNumbers);for(var B=document.createDocumentFragment(),j=0;j<e.config.showMonths;j++){var G=new Date(e.currentYear,e.currentMonth,1);G.setMonth(e.currentMonth+j),B.appendChild(C(G.getFullYear(),G.getMonth()))}e.daysContainer.appendChild(B),e.days=e.daysContainer.firstChild,e.config.mode==="range"&&e.selectedDates.length===1&&he()}}function N(){if(!(e.config.showMonths>1||e.config.monthSelectorType!=="dropdown")){var B=function(X){return e.config.minDate!==void 0&&e.currentYear===e.config.minDate.getFullYear()&&X<e.config.minDate.getMonth()?!1:!(e.config.maxDate!==void 0&&e.currentYear===e.config.maxDate.getFullYear()&&X>e.config.maxDate.getMonth())};e.monthsDropdownContainer.tabIndex=-1,e.monthsDropdownContainer.innerHTML="";for(var j=0;j<12;j++)if(B(j)){var G=De("option","flatpickr-monthDropdown-month");G.value=new Date(e.currentYear,j).getMonth().toString(),G.textContent=sr(j,e.config.shorthandCurrentMonth,e.l10n),G.tabIndex=-1,e.currentMonth===j&&(G.selected=!0),e.monthsDropdownContainer.appendChild(G)}}}function R(){var B=De("div","flatpickr-month"),j=window.document.createDocumentFragment(),G;e.config.showMonths>1||e.config.monthSelectorType==="static"?G=De("span","cur-month"):(e.monthsDropdownContainer=De("select","flatpickr-monthDropdown-months"),e.monthsDropdownContainer.setAttribute("aria-label",e.l10n.monthAriaLabel),m(e.monthsDropdownContainer,"change",function(ye){var ue=ft(ye),Ce=parseInt(ue.value,10);e.changeMonth(Ce-e.currentMonth),Pe("onMonthChange")}),N(),G=e.monthsDropdownContainer);var X=lr("cur-year",{tabindex:"-1"}),oe=X.getElementsByTagName("input")[0];oe.setAttribute("aria-label",e.l10n.yearAriaLabel),e.config.minDate&&oe.setAttribute("min",e.config.minDate.getFullYear().toString()),e.config.maxDate&&(oe.setAttribute("max",e.config.maxDate.getFullYear().toString()),oe.disabled=!!e.config.minDate&&e.config.minDate.getFullYear()===e.config.maxDate.getFullYear());var se=De("div","flatpickr-current-month");return se.appendChild(G),se.appendChild(X),j.appendChild(se),B.appendChild(j),{container:B,yearElement:oe,monthElement:G}}function q(){ar(e.monthNav),e.monthNav.appendChild(e.prevMonthNav),e.config.showMonths&&(e.yearElements=[],e.monthElements=[]);for(var B=e.config.showMonths;B--;){var j=R();e.yearElements.push(j.yearElement),e.monthElements.push(j.monthElement),e.monthNav.appendChild(j.container)}e.monthNav.appendChild(e.nextMonthNav)}function W(){return e.monthNav=De("div","flatpickr-months"),e.yearElements=[],e.monthElements=[],e.prevMonthNav=De("span","flatpickr-prev-month"),e.prevMonthNav.innerHTML=e.config.prevArrow,e.nextMonthNav=De("span","flatpickr-next-month"),e.nextMonthNav.innerHTML=e.config.nextArrow,q(),Object.defineProperty(e,"_hidePrevMonthArrow",{get:function(){return e.__hidePrevMonthArrow},set:function(B){e.__hidePrevMonthArrow!==B&&(et(e.prevMonthNav,"flatpickr-disabled",B),e.__hidePrevMonthArrow=B)}}),Object.defineProperty(e,"_hideNextMonthArrow",{get:function(){return e.__hideNextMonthArrow},set:function(B){e.__hideNextMonthArrow!==B&&(et(e.nextMonthNav,"flatpickr-disabled",B),e.__hideNextMonthArrow=B)}}),e.currentYearElement=e.yearElements[0],Ze(),e.monthNav}function Y(){e.calendarContainer.classList.add("hasTime"),e.config.noCalendar&&e.calendarContainer.classList.add("noCalendar");var B=Zr(e.config);e.timeContainer=De("div","flatpickr-time"),e.timeContainer.tabIndex=-1;var j=De("span","flatpickr-time-separator",":"),G=lr("flatpickr-hour",{"aria-label":e.l10n.hourAriaLabel});e.hourElement=G.getElementsByTagName("input")[0];var X=lr("flatpickr-minute",{"aria-label":e.l10n.minuteAriaLabel});if(e.minuteElement=X.getElementsByTagName("input")[0],e.hourElement.tabIndex=e.minuteElement.tabIndex=-1,e.hourElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getHours():e.config.time_24hr?B.hours:p(B.hours)),e.minuteElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getMinutes():B.minutes),e.hourElement.setAttribute("step",e.config.hourIncrement.toString()),e.minuteElement.setAttribute("step",e.config.minuteIncrement.toString()),e.hourElement.setAttribute("min",e.config.time_24hr?"0":"1"),e.hourElement.setAttribute("max",e.config.time_24hr?"23":"12"),e.hourElement.setAttribute("maxlength","2"),e.minuteElement.setAttribute("min","0"),e.minuteElement.setAttribute("max","59"),e.minuteElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(G),e.timeContainer.appendChild(j),e.timeContainer.appendChild(X),e.config.time_24hr&&e.timeContainer.classList.add("time24hr"),e.config.enableSeconds){e.timeContainer.classList.add("hasSeconds");var oe=lr("flatpickr-second");e.secondElement=oe.getElementsByTagName("input")[0],e.secondElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getSeconds():B.seconds),e.secondElement.setAttribute("step",e.minuteElement.getAttribute("step")),e.secondElement.setAttribute("min","0"),e.secondElement.setAttribute("max","59"),e.secondElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(De("span","flatpickr-time-separator",":")),e.timeContainer.appendChild(oe)}return e.config.time_24hr||(e.amPM=De("span","flatpickr-am-pm",e.l10n.amPM[gt((e.latestSelectedDateObj?e.hourElement.value:e.config.defaultHour)>11)]),e.amPM.title=e.l10n.toggleTitle,e.amPM.tabIndex=-1,e.timeContainer.appendChild(e.amPM)),e.timeContainer}function re(){e.weekdayContainer?ar(e.weekdayContainer):e.weekdayContainer=De("div","flatpickr-weekdays");for(var B=e.config.showMonths;B--;){var j=De("div","flatpickr-weekdaycontainer");e.weekdayContainer.appendChild(j)}return K(),e.weekdayContainer}function K(){if(e.weekdayContainer){var B=e.l10n.firstDayOfWeek,j=Ro(e.l10n.weekdays.shorthand);B>0&&B<j.length&&(j=Ro(j.splice(B,j.length),j.splice(0,B)));for(var G=e.config.showMonths;G--;)e.weekdayContainer.children[G].innerHTML=`
63
+ `},hu={props:{type:{type:String,default:"success"}},data(){return{icons:fu}}},pu={class:"status-indicator"},mu=["innerHTML"];function gu(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("div",pu,[n.createElementVNode("div",{class:n.normalizeClass(["status-indicator-icon",e.type]),innerHTML:a.icons[e.type]},null,10,mu),n.renderSlot(t.$slots,"default",{},void 0,!0)])}const yu=be(hu,[["render",gu],["__scopeId","data-v-38ce73f6"]]),bu={name:"IbPanel",mixins:[qr],props:{showExpandButton:{type:Boolean,default:!1},expandButtonTooltip:{type:String,default:""},isOpen:{type:Boolean,default:!0},error:{type:Boolean,default:!1},hideHeaderDivider:{type:Boolean,default:!1}},watch:{isOpen(){this.isOpenVal=this.isOpen},isOpenVal(){this.$emit("update:isOpen",this.isOpenVal)}},data(){return{isOpenVal:this.isOpen}},components:{IconButton:Xe,Icon:Le},directives:{Tooltip:St},emits:["update:isOpen"]},vu={class:"panel-head"},_u={class:"head-title"},$u={class:"divider"},wu={class:"head-content"},ku={class:"panel-body"};function Cu(t,i,e,o,a,r){const d=n.resolveComponent("icon"),c=n.resolveComponent("icon-button"),p=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-panel",{"panel-error":e.error}])},[n.createElementVNode("div",vu,[n.createElementVNode("div",_u,[n.renderSlot(t.$slots,"title",{},void 0,!0)]),n.withDirectives(n.createElementVNode("div",$u,null,512),[[n.vShow,!e.hideHeaderDivider]]),n.createElementVNode("div",wu,[n.renderSlot(t.$slots,"head-content",{},void 0,!0)]),e.showExpandButton?n.withDirectives((n.openBlock(),n.createBlock(c,{key:0,class:n.normalizeClass({"toggle-visible-button":!0,active:a.isOpenVal}),kind:"ghost",type:"button",onClick:i[0]||(i[0]=s=>a.isOpenVal=!a.isOpenVal)},{default:n.withCtx(()=>[n.createVNode(d,{name:"chevron-down-outline"})]),_:1},8,["class"])),[[p,e.expandButtonTooltip]]):n.createCommentVNode("",!0)]),n.createVNode(n.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:n.withCtx(()=>[n.withDirectives(n.createElementVNode("div",ku,[n.renderSlot(t.$slots,"body",{},void 0,!0)],512),[[n.vShow,a.isOpenVal]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const Ou=be(bu,[["render",Cu],["__scopeId","data-v-5d452f83"]]),Eu={props:{showCloseIcon:{type:Boolean,default:!1},active:{type:Boolean,default:!1},error:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{hasIcon(){var t;return(t=this.$slots)==null?void 0:t.icon}},components:{Icon:Le}},Su=["disabled"],xu={key:0,class:"ib-chips-icon-wrapper"},Tu={key:1,class:"ib-chips-close-wrapper"};function Nu(t,i,e,o,a,r){const d=n.resolveComponent("icon");return n.openBlock(),n.createElementBlock("button",{class:n.normalizeClass({"ib-chips":!0,"ib-chips-active":e.active,"ib-chips-error":e.error,"ib-chips-disabled":e.disabled}),disabled:e.disabled},[r.hasIcon?(n.openBlock(),n.createElementBlock("span",xu,[n.renderSlot(t.$slots,"icon",{class:"ib-chips-icon"},void 0,!0)])):n.createCommentVNode("",!0),n.renderSlot(t.$slots,"default",{},void 0,!0),e.showCloseIcon?(n.openBlock(),n.createElementBlock("span",Tu,[n.createVNode(d,{class:"ib-chips-icon",name:"close-outline"})])):n.createCommentVNode("",!0)],10,Su)}const Au=be(Eu,[["render",Nu],["__scopeId","data-v-0a159535"]]),Du={name:"IbInputGroup",props:{supportText:{type:String,default:""},disabled:{type:Boolean,default:!1}}},Mu={key:0,class:"support-text"};function Bu(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-form-group",{disabled:e.disabled}])},[n.renderSlot(t.$slots,"default"),e.supportText.length?(n.openBlock(),n.createElementBlock("p",Mu,n.toDisplayString(e.supportText),1)):n.createCommentVNode("",!0)],2)}const Iu=be(Du,[["render",Bu]]),Wi={name:"IbInputGroup",props:{labelText:{type:String,default:""},required:{type:Boolean,required:!1},horizontal:{type:Boolean,default:!1},errorMessage:{type:String,default:""},infoText:{type:String,default:""},height:{type:String,default:"290px"},tooltipPosition:{type:String}},components:{IbLabel:On,IbAlert:jt}},Fo=()=>{n.useCssVars(t=>({f99cce84:t.height}))},qo=Wi.setup;Wi.setup=qo?(t,i)=>(Fo(),qo(t,i)):Fo;const Pu={class:"ib-checkbox-group-content"};function Lu(t,i,e,o,a,r){const d=n.resolveComponent("ib-label"),c=n.resolveComponent("ib-alert");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-checkbox-group",{"ib-checkbox-group-horizontal":e.horizontal}])},[e.labelText.length?(n.openBlock(),n.createBlock(d,{key:0,class:"ib-checkbox-group-label",required:e.required,"info-text":e.infoText,"tooltip-position":e.tooltipPosition},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.labelText),1)]),_:1},8,["required","info-text","tooltip-position"])):n.createCommentVNode("",!0),e.errorMessage.length?(n.openBlock(),n.createBlock(c,{key:1,class:"ib-error-message"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.createElementVNode("div",Pu,[n.renderSlot(t.$slots,"default")])],2)}const Ru=be(Wi,[["render",Lu]]),Vu={name:"IbRadio",props:{modelValue:"",label:String,error:{type:Boolean,default:!1},name:{type:String},id:{type:String,default(){return dt()}},value:{type:[String,Number],required:!0},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],data(){return{uid:dt()}},mounted(){this.checked=this.isChecked},methods:{checkHandler(){this.$emit("update:modelValue",this.value)}},computed:{classes(){return{"ib-radio":!0,"has-error":this.error,"radio-filled":this.isChecked,"radio-disabled":this.disabled}},isChecked(){return this.modelValue===this.value}}},ju=t=>(n.pushScopeId("data-v-48bfd634"),t=t(),n.popScopeId(),t),Fu=["for","aria-checked"],qu=["name","id","value","checked","disabled"],Hu=ju(()=>n.createElementVNode("span",{class:"ib-radio-input"},null,-1)),zu={key:0,class:"ib-radio-label"};function Uu(t,i,e,o,a,r){var d,c;return n.openBlock(),n.createElementBlock("label",{role:"radio",class:n.normalizeClass(r.classes),for:e.id,"aria-checked":r.isChecked},[n.createElementVNode("input",{type:"radio",name:e.name,id:e.id,value:e.value,checked:r.isChecked,disabled:e.disabled,ref:"radio",onChange:i[0]||(i[0]=(...p)=>r.checkHandler&&r.checkHandler(...p))},null,40,qu),n.createElementVNode("span",{class:n.normalizeClass(["ib-radio-body",{"without-text":!((d=e.label)!=null&&d.length)}])},[Hu,(c=e.label)!=null&&c.length?(n.openBlock(),n.createElementBlock("span",zu,n.toDisplayString(e.label),1)):n.createCommentVNode("",!0)],2)],10,Fu)}const Ku=be(Vu,[["render",Uu],["__scopeId","data-v-48bfd634"]]),Gu={props:{characterLimit:{type:[String,Number],required:!0},characterLength:{type:[String,Number],required:!0}}},Wu={class:"character-count"},Yu={key:0,class:"val-limit"},Zu={class:"val-length"},Ju={class:"val-limit"},Xu={key:2,class:"val-length error"};function Qu(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("div",Wu,[e.characterLength?e.characterLimit>=e.characterLength?(n.openBlock(),n.createElementBlock(n.Fragment,{key:1},[n.createElementVNode("p",Zu,n.toDisplayString(e.characterLength),1),n.createTextVNode(" / "),n.createElementVNode("p",Ju,n.toDisplayString(e.characterLimit),1)],64)):(n.openBlock(),n.createElementBlock("p",Xu,n.toDisplayString(e.characterLimit-e.characterLength),1)):(n.openBlock(),n.createElementBlock("p",Yu,"Max "+n.toDisplayString(e.characterLimit),1))])}const Yi=be(Gu,[["render",Qu],["__scopeId","data-v-f7d02439"]]),ef={name:"IbTextarea",props:{disabled:{type:Boolean,default:!1},id:{type:String,default(){return dt()}},error:{type:Boolean,default:!1},characterLimit:{type:Number,default:null},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""},value:{type:String,default:""}},watch:{value(){this.val=this.value},val(){this.$emit("update:value",this.val)}},data(){return{val:this.value}},methods:{onInput(){this.$emit("input",this.val)},onBlur(){this.$emit("blur",this.val)}},computed:{characterOverLimit(){return!!this.characterLimit&&this.val.length>this.characterLimit},classes(){const t=["ib-textarea"];return(this.error||this.errorMessage.length||this.characterOverLimit)&&t.push("error"),t}},components:{IbAlert:jt,IbCharacterCount:Yi},emits:["input","blur","update:value"],inheritAttrs:!1},tf=["id","disabled"],nf={class:"textarea-actions"};function rf(t,i,e,o,a,r){const d=n.resolveComponent("ib-character-count"),c=n.resolveComponent("ib-alert");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["textarea-wrapper",{disabled:e.disabled,hasActins:t.$slots.actions}])},[e.characterLimit?(n.openBlock(),n.createBlock(d,{key:0,"character-limit":e.characterLimit,"character-length":a.val.length},null,8,["character-limit","character-length"])):n.createCommentVNode("",!0),n.withDirectives(n.createVNode(c,null,{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1},512),[[n.vShow,e.errorMessage.length]]),n.withDirectives(n.createVNode(c,null,{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[n.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),n.withDirectives(n.createElementVNode("textarea",n.mergeProps(t.$attrs,{"onUpdate:modelValue":i[0]||(i[0]=p=>a.val=p),id:e.id,onInput:i[1]||(i[1]=(...p)=>r.onInput&&r.onInput(...p)),onBlur:i[2]||(i[2]=(...p)=>r.onBlur&&r.onBlur(...p)),class:["ib-textarea",r.classes],disabled:e.disabled}),null,16,tf),[[n.vModelText,a.val]]),n.createElementVNode("div",nf,[n.renderSlot(t.$slots,"actions",{},void 0,!0)])],2)}const of=be(ef,[["render",rf],["__scopeId","data-v-f17ef6e9"]]);var Zi=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],an={_disable:[],allowInput:!1,allowInvalidPreload:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:typeof window=="object"&&window.navigator.userAgent.indexOf("MSIE")===-1,ariaDateFormat:"F j, Y",autoFillDefaultTime:!0,clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enableSeconds:!1,enableTime:!1,errorHandler:function(t){return typeof console<"u"&&console.warn(t)},getWeek:function(t){var i=new Date(t.getTime());i.setHours(0,0,0,0),i.setDate(i.getDate()+3-(i.getDay()+6)%7);var e=new Date(i.getFullYear(),0,4);return 1+Math.round(((i.getTime()-e.getTime())/864e5-3+(e.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z' /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z' /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},xn={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(t){var i=t%100;if(i>3&&i<21)return"th";switch(i%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},ot=function(t,i){return i===void 0&&(i=2),("000"+t).slice(i*-1)},ft=function(t){return t===!0?1:0};function Ho(t,i){var e;return function(){var o=this,a=arguments;clearTimeout(e),e=setTimeout(function(){return t.apply(o,a)},i)}}var Ji=function(t){return t instanceof Array?t:[t]};function Qe(t,i,e){if(e===!0)return t.classList.add(i);t.classList.remove(i)}function De(t,i,e){var o=window.document.createElement(t);return i=i||"",e=e||"",o.className=i,e!==void 0&&(o.textContent=e),o}function di(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function zo(t,i){if(i(t))return t;if(t.parentNode)return zo(t.parentNode,i)}function ui(t,i){var e=De("div","numInputWrapper"),o=De("input","numInput "+t),a=De("span","arrowUp"),r=De("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1?o.type="number":(o.type="text",o.pattern="\\d*"),i!==void 0)for(var d in i)o.setAttribute(d,i[d]);return e.appendChild(o),e.appendChild(a),e.appendChild(r),e}function st(t){try{if(typeof t.composedPath=="function"){var i=t.composedPath();return i[0]}return t.target}catch{return t.target}}var Xi=function(){},fi=function(t,i,e){return e.months[i?"shorthand":"longhand"][t]},af={D:Xi,F:function(t,i,e){t.setMonth(e.months.longhand.indexOf(i))},G:function(t,i){t.setHours((t.getHours()>=12?12:0)+parseFloat(i))},H:function(t,i){t.setHours(parseFloat(i))},J:function(t,i){t.setDate(parseFloat(i))},K:function(t,i,e){t.setHours(t.getHours()%12+12*ft(new RegExp(e.amPM[1],"i").test(i)))},M:function(t,i,e){t.setMonth(e.months.shorthand.indexOf(i))},S:function(t,i){t.setSeconds(parseFloat(i))},U:function(t,i){return new Date(parseFloat(i)*1e3)},W:function(t,i,e){var o=parseInt(i),a=new Date(t.getFullYear(),0,2+(o-1)*7,0,0,0,0);return a.setDate(a.getDate()-a.getDay()+e.firstDayOfWeek),a},Y:function(t,i){t.setFullYear(parseFloat(i))},Z:function(t,i){return new Date(i)},d:function(t,i){t.setDate(parseFloat(i))},h:function(t,i){t.setHours((t.getHours()>=12?12:0)+parseFloat(i))},i:function(t,i){t.setMinutes(parseFloat(i))},j:function(t,i){t.setDate(parseFloat(i))},l:Xi,m:function(t,i){t.setMonth(parseFloat(i)-1)},n:function(t,i){t.setMonth(parseFloat(i)-1)},s:function(t,i){t.setSeconds(parseFloat(i))},u:function(t,i){return new Date(parseFloat(i))},w:Xi,y:function(t,i){t.setFullYear(2e3+parseFloat(i))}},Ut={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},Tn={Z:function(t){return t.toISOString()},D:function(t,i,e){return i.weekdays.shorthand[Tn.w(t,i,e)]},F:function(t,i,e){return fi(Tn.n(t,i,e)-1,!1,i)},G:function(t,i,e){return ot(Tn.h(t,i,e))},H:function(t){return ot(t.getHours())},J:function(t,i){return i.ordinal!==void 0?t.getDate()+i.ordinal(t.getDate()):t.getDate()},K:function(t,i){return i.amPM[ft(t.getHours()>11)]},M:function(t,i){return fi(t.getMonth(),!0,i)},S:function(t){return ot(t.getSeconds())},U:function(t){return t.getTime()/1e3},W:function(t,i,e){return e.getWeek(t)},Y:function(t){return ot(t.getFullYear(),4)},d:function(t){return ot(t.getDate())},h:function(t){return t.getHours()%12?t.getHours()%12:12},i:function(t){return ot(t.getMinutes())},j:function(t){return t.getDate()},l:function(t,i){return i.weekdays.longhand[t.getDay()]},m:function(t){return ot(t.getMonth()+1)},n:function(t){return t.getMonth()+1},s:function(t){return t.getSeconds()},u:function(t){return t.getTime()},w:function(t){return t.getDay()},y:function(t){return String(t.getFullYear()).substring(2)}},Uo=function(t){var i=t.config,e=i===void 0?an:i,o=t.l10n,a=o===void 0?xn:o,r=t.isMobile,d=r===void 0?!1:r;return function(c,p,s){var h=s||a;return e.formatDate!==void 0&&!d?e.formatDate(c,p,h):p.split("").map(function(f,l,u){return Tn[f]&&u[l-1]!=="\\"?Tn[f](c,h,e):f!=="\\"?f:""}).join("")}},Qi=function(t){var i=t.config,e=i===void 0?an:i,o=t.l10n,a=o===void 0?xn:o;return function(r,d,c,p){if(!(r!==0&&!r)){var s=p||a,h,f=r;if(r instanceof Date)h=new Date(r.getTime());else if(typeof r!="string"&&r.toFixed!==void 0)h=new Date(r);else if(typeof r=="string"){var l=d||(e||an).dateFormat,u=String(r).trim();if(u==="today")h=new Date,c=!0;else if(e&&e.parseDate)h=e.parseDate(r,l);else if(/Z$/.test(u)||/GMT$/.test(u))h=new Date(r);else{for(var _=void 0,g=[],$=0,v=0,b="";$<l.length;$++){var y=l[$],m=y==="\\",w=l[$-1]==="\\"||m;if(Ut[y]&&!w){b+=Ut[y];var T=new RegExp(b).exec(r);T&&(_=!0)&&g[y!=="Y"?"push":"unshift"]({fn:af[y],val:T[++v]})}else m||(b+=".")}h=!e||!e.noCalendar?new Date(new Date().getFullYear(),0,1,0,0,0,0):new Date(new Date().setHours(0,0,0,0)),g.forEach(function(S){var x=S.fn,D=S.val;return h=x(h,D,s)||h}),h=_?h:void 0}}if(!(h instanceof Date&&!isNaN(h.getTime()))){e.errorHandler(new Error("Invalid date provided: "+f));return}return c===!0&&h.setHours(0,0,0,0),h}}};function ct(t,i,e){return e===void 0&&(e=!0),e!==!1?new Date(t.getTime()).setHours(0,0,0,0)-new Date(i.getTime()).setHours(0,0,0,0):t.getTime()-i.getTime()}var lf=function(t,i,e){return t>Math.min(i,e)&&t<Math.max(i,e)},er=function(t,i,e){return t*3600+i*60+e},sf=function(t){var i=Math.floor(t/3600),e=(t-i*3600)/60;return[i,e,t-i*3600-e*60]},cf={DAY:864e5};function tr(t){var i=t.defaultHour,e=t.defaultMinute,o=t.defaultSeconds;if(t.minDate!==void 0){var a=t.minDate.getHours(),r=t.minDate.getMinutes(),d=t.minDate.getSeconds();i<a&&(i=a),i===a&&e<r&&(e=r),i===a&&e===r&&o<d&&(o=t.minDate.getSeconds())}if(t.maxDate!==void 0){var c=t.maxDate.getHours(),p=t.maxDate.getMinutes();i=Math.min(i,c),i===c&&(e=Math.min(p,e)),i===c&&e===p&&(o=t.maxDate.getSeconds())}return{hours:i,minutes:e,seconds:o}}typeof Object.assign!="function"&&(Object.assign=function(t){for(var i=[],e=1;e<arguments.length;e++)i[e-1]=arguments[e];if(!t)throw TypeError("Cannot convert undefined or null to object");for(var o=function(c){c&&Object.keys(c).forEach(function(p){return t[p]=c[p]})},a=0,r=i;a<r.length;a++){var d=r[a];o(d)}return t});var Ge=function(){return Ge=Object.assign||function(t){for(var i,e=1,o=arguments.length;e<o;e++){i=arguments[e];for(var a in i)Object.prototype.hasOwnProperty.call(i,a)&&(t[a]=i[a])}return t},Ge.apply(this,arguments)},Ko=function(){for(var t=0,i=0,e=arguments.length;i<e;i++)t+=arguments[i].length;for(var o=Array(t),a=0,i=0;i<e;i++)for(var r=arguments[i],d=0,c=r.length;d<c;d++,a++)o[a]=r[d];return o},df=300;function uf(t,i){var e={config:Ge(Ge({},an),Ve.defaultConfig),l10n:xn};e.parseDate=Qi({config:e.config,l10n:e.l10n}),e._handlers=[],e.pluginElements=[],e.loadedPlugins=[],e._bind=g,e._setHoursFromDate=l,e._positionCalendar=ne,e.changeMonth=M,e.changeYear=U,e.clear=A,e.close=B,e.onMouseOver=he,e._createElement=De,e.createDay=T,e.destroy=H,e.isEnabled=Z,e.jumpToDate=b,e.updateValue=it,e.open=we,e.redraw=re,e.set=He,e.setDate=Ne,e.toggle=Wt;function o(){e.utils={getDaysInMonth:function(R,j){return R===void 0&&(R=e.currentMonth),j===void 0&&(j=e.currentYear),R===1&&(j%4===0&&j%100!==0||j%400===0)?29:e.l10n.daysInMonth[R]}}}function a(){e.element=e.input=t,e.isOpen=!1,Re(),Q(),nt(),Se(),o(),e.isMobile||w(),v(),(e.selectedDates.length||e.config.noCalendar)&&(e.config.enableTime&&l(e.config.noCalendar?e.latestSelectedDateObj:void 0),it(!1)),c();var R=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!e.isMobile&&R&&ne(),Me("onReady")}function r(){var R;return((R=e.calendarContainer)===null||R===void 0?void 0:R.getRootNode()).activeElement||document.activeElement}function d(R){return R.bind(e)}function c(){var R=e.config;R.weekNumbers===!1&&R.showMonths===1||R.noCalendar!==!0&&window.requestAnimationFrame(function(){if(e.calendarContainer!==void 0&&(e.calendarContainer.style.visibility="hidden",e.calendarContainer.style.display="block"),e.daysContainer!==void 0){var j=(e.days.offsetWidth+1)*R.showMonths;e.daysContainer.style.width=j+"px",e.calendarContainer.style.width=j+(e.weekWrapper!==void 0?e.weekWrapper.offsetWidth:0)+"px",e.calendarContainer.style.removeProperty("visibility"),e.calendarContainer.style.removeProperty("display")}})}function p(R){if(e.selectedDates.length===0){var j=e.config.minDate===void 0||ct(new Date,e.config.minDate)>=0?new Date:new Date(e.config.minDate.getTime()),Y=tr(e.config);j.setHours(Y.hours,Y.minutes,Y.seconds,j.getMilliseconds()),e.selectedDates=[j],e.latestSelectedDateObj=j}R!==void 0&&R.type!=="blur"&&Yt(R);var X=e._input.value;f(),it(),e._input.value!==X&&e._debouncedChange()}function s(R,j){return R%12+12*ft(j===e.l10n.amPM[1])}function h(R){switch(R%24){case 0:case 12:return 12;default:return R%12}}function f(){if(!(e.hourElement===void 0||e.minuteElement===void 0)){var R=(parseInt(e.hourElement.value.slice(-2),10)||0)%24,j=(parseInt(e.minuteElement.value,10)||0)%60,Y=e.secondElement!==void 0?(parseInt(e.secondElement.value,10)||0)%60:0;e.amPM!==void 0&&(R=s(R,e.amPM.textContent));var X=e.config.minTime!==void 0||e.config.minDate&&e.minDateHasTime&&e.latestSelectedDateObj&&ct(e.latestSelectedDateObj,e.config.minDate,!0)===0,oe=e.config.maxTime!==void 0||e.config.maxDate&&e.maxDateHasTime&&e.latestSelectedDateObj&&ct(e.latestSelectedDateObj,e.config.maxDate,!0)===0;if(e.config.maxTime!==void 0&&e.config.minTime!==void 0&&e.config.minTime>e.config.maxTime){var se=er(e.config.minTime.getHours(),e.config.minTime.getMinutes(),e.config.minTime.getSeconds()),ye=er(e.config.maxTime.getHours(),e.config.maxTime.getMinutes(),e.config.maxTime.getSeconds()),ue=er(R,j,Y);if(ue>ye&&ue<se){var Ce=sf(se);R=Ce[0],j=Ce[1],Y=Ce[2]}}else{if(oe){var de=e.config.maxTime!==void 0?e.config.maxTime:e.config.maxDate;R=Math.min(R,de.getHours()),R===de.getHours()&&(j=Math.min(j,de.getMinutes())),j===de.getMinutes()&&(Y=Math.min(Y,de.getSeconds()))}if(X){var ge=e.config.minTime!==void 0?e.config.minTime:e.config.minDate;R=Math.max(R,ge.getHours()),R===ge.getHours()&&j<ge.getMinutes()&&(j=ge.getMinutes()),j===ge.getMinutes()&&(Y=Math.max(Y,ge.getSeconds()))}}u(R,j,Y)}}function l(R){var j=R||e.latestSelectedDateObj;j&&j instanceof Date&&u(j.getHours(),j.getMinutes(),j.getSeconds())}function u(R,j,Y){e.latestSelectedDateObj!==void 0&&e.latestSelectedDateObj.setHours(R%24,j,Y||0,0),!(!e.hourElement||!e.minuteElement||e.isMobile)&&(e.hourElement.value=ot(e.config.time_24hr?R:(12+R)%12+12*ft(R%12===0)),e.minuteElement.value=ot(j),e.amPM!==void 0&&(e.amPM.textContent=e.l10n.amPM[ft(R>=12)]),e.secondElement!==void 0&&(e.secondElement.value=ot(Y)))}function _(R){var j=st(R),Y=parseInt(j.value)+(R.delta||0);(Y/1e3>1||R.key==="Enter"&&!/[^\d]/.test(Y.toString()))&&U(Y)}function g(R,j,Y,X){if(j instanceof Array)return j.forEach(function(oe){return g(R,oe,Y,X)});if(R instanceof Array)return R.forEach(function(oe){return g(oe,j,Y,X)});R.addEventListener(j,Y,X),e._handlers.push({remove:function(){return R.removeEventListener(j,Y,X)}})}function $(){Me("onChange")}function v(){if(e.config.wrap&&["open","close","toggle","clear"].forEach(function(Y){Array.prototype.forEach.call(e.element.querySelectorAll("[data-"+Y+"]"),function(X){return g(X,"click",e[Y])})}),e.isMobile){Ln();return}var R=Ho(ve,50);if(e._debouncedChange=Ho($,df),e.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&g(e.daysContainer,"mouseover",function(Y){e.config.mode==="range"&&he(st(Y))}),g(e._input,"keydown",ce),e.calendarContainer!==void 0&&g(e.calendarContainer,"keydown",ce),!e.config.inline&&!e.config.static&&g(window,"resize",R),window.ontouchstart!==void 0?g(window.document,"touchstart",L):g(window.document,"mousedown",L),g(window.document,"focus",L,{capture:!0}),e.config.clickOpens===!0&&(g(e._input,"focus",e.open),g(e._input,"click",e.open)),e.daysContainer!==void 0&&(g(e.monthNav,"click",Dt),g(e.monthNav,["keyup","increment"],_),g(e.daysContainer,"click",me)),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0){var j=function(Y){return st(Y).select()};g(e.timeContainer,["increment"],p),g(e.timeContainer,"blur",p,{capture:!0}),g(e.timeContainer,"click",y),g([e.hourElement,e.minuteElement],["focus","click"],j),e.secondElement!==void 0&&g(e.secondElement,"focus",function(){return e.secondElement&&e.secondElement.select()}),e.amPM!==void 0&&g(e.amPM,"click",function(Y){p(Y)})}e.config.allowInput&&g(e._input,"blur",ie)}function b(R,j){var Y=R!==void 0?e.parseDate(R):e.latestSelectedDateObj||(e.config.minDate&&e.config.minDate>e.now?e.config.minDate:e.config.maxDate&&e.config.maxDate<e.now?e.config.maxDate:e.now),X=e.currentYear,oe=e.currentMonth;try{Y!==void 0&&(e.currentYear=Y.getFullYear(),e.currentMonth=Y.getMonth())}catch(se){se.message="Invalid date supplied: "+Y,e.config.errorHandler(se)}j&&e.currentYear!==X&&(Me("onYearChange"),N()),j&&(e.currentYear!==X||e.currentMonth!==oe)&&Me("onMonthChange"),e.redraw()}function y(R){var j=st(R);~j.className.indexOf("arrow")&&m(R,j.classList.contains("arrowUp")?1:-1)}function m(R,j,Y){var X=R&&st(R),oe=Y||X&&X.parentNode&&X.parentNode.firstChild,se=qt("increment");se.delta=j,oe&&oe.dispatchEvent(se)}function w(){var R=window.document.createDocumentFragment();if(e.calendarContainer=De("div","flatpickr-calendar"),e.calendarContainer.tabIndex=-1,!e.config.noCalendar){if(R.appendChild(K()),e.innerContainer=De("div","flatpickr-innerContainer"),e.config.weekNumbers){var j=V(),Y=j.weekWrapper,X=j.weekNumbers;e.innerContainer.appendChild(Y),e.weekNumbers=X,e.weekWrapper=Y}e.rContainer=De("div","flatpickr-rContainer"),e.rContainer.appendChild(ee()),e.daysContainer||(e.daysContainer=De("div","flatpickr-days"),e.daysContainer.tabIndex=-1),O(),e.rContainer.appendChild(e.daysContainer),e.innerContainer.appendChild(e.rContainer),R.appendChild(e.innerContainer)}e.config.enableTime&&R.appendChild(W()),Qe(e.calendarContainer,"rangeMode",e.config.mode==="range"),Qe(e.calendarContainer,"animate",e.config.animate===!0),Qe(e.calendarContainer,"multiMonth",e.config.showMonths>1),e.calendarContainer.appendChild(R);var oe=e.config.appendTo!==void 0&&e.config.appendTo.nodeType!==void 0;if((e.config.inline||e.config.static)&&(e.calendarContainer.classList.add(e.config.inline?"inline":"static"),e.config.inline&&(!oe&&e.element.parentNode?e.element.parentNode.insertBefore(e.calendarContainer,e._input.nextSibling):e.config.appendTo!==void 0&&e.config.appendTo.appendChild(e.calendarContainer)),e.config.static)){var se=De("div","flatpickr-wrapper");e.element.parentNode&&e.element.parentNode.insertBefore(se,e.element),se.appendChild(e.element),e.altInput&&se.appendChild(e.altInput),se.appendChild(e.calendarContainer)}!e.config.static&&!e.config.inline&&(e.config.appendTo!==void 0?e.config.appendTo:window.document.body).appendChild(e.calendarContainer)}function T(R,j,Y,X){var oe=Z(j,!0),se=De("span",R,j.getDate().toString());return se.dateObj=j,se.$i=X,se.setAttribute("aria-label",e.formatDate(j,e.config.ariaDateFormat)),R.indexOf("hidden")===-1&&ct(j,e.now)===0&&(e.todayDateElem=se,se.classList.add("today"),se.setAttribute("aria-current","date")),oe?(se.tabIndex=-1,yt(j)&&(se.classList.add("selected"),e.selectedDateElem=se,e.config.mode==="range"&&(Qe(se,"startRange",e.selectedDates[0]&&ct(j,e.selectedDates[0],!0)===0),Qe(se,"endRange",e.selectedDates[1]&&ct(j,e.selectedDates[1],!0)===0),R==="nextMonthDay"&&se.classList.add("inRange")))):se.classList.add("flatpickr-disabled"),e.config.mode==="range"&&At(j)&&!yt(j)&&se.classList.add("inRange"),e.weekNumbers&&e.config.showMonths===1&&R!=="prevMonthDay"&&X%7===6&&e.weekNumbers.insertAdjacentHTML("beforeend","<span class='flatpickr-day'>"+e.config.getWeek(j)+"</span>"),Me("onDayCreate",se),se}function S(R){R.focus(),e.config.mode==="range"&&he(R)}function x(R){for(var j=R>0?0:e.config.showMonths-1,Y=R>0?e.config.showMonths:-1,X=j;X!=Y;X+=R)for(var oe=e.daysContainer.children[X],se=R>0?0:oe.children.length-1,ye=R>0?oe.children.length:-1,ue=se;ue!=ye;ue+=R){var Ce=oe.children[ue];if(Ce.className.indexOf("hidden")===-1&&Z(Ce.dateObj))return Ce}}function D(R,j){for(var Y=R.className.indexOf("Month")===-1?R.dateObj.getMonth():e.currentMonth,X=j>0?e.config.showMonths:-1,oe=j>0?1:-1,se=Y-e.currentMonth;se!=X;se+=oe)for(var ye=e.daysContainer.children[se],ue=Y-e.currentMonth===se?R.$i+j:j<0?ye.children.length-1:0,Ce=ye.children.length,de=ue;de>=0&&de<Ce&&de!=(j>0?Ce:-1);de+=oe){var ge=ye.children[de];if(ge.className.indexOf("hidden")===-1&&Z(ge.dateObj)&&Math.abs(R.$i-de)>=Math.abs(j))return S(ge)}e.changeMonth(oe),E(x(oe),0)}function E(R,j){var Y=r(),X=J(Y||document.body),oe=R!==void 0?R:X?Y:e.selectedDateElem!==void 0&&J(e.selectedDateElem)?e.selectedDateElem:e.todayDateElem!==void 0&&J(e.todayDateElem)?e.todayDateElem:x(j>0?1:-1);oe===void 0?e._input.focus():X?D(oe,j):S(oe)}function C(R,j){for(var Y=(new Date(R,j,1).getDay()-e.l10n.firstDayOfWeek+7)%7,X=e.utils.getDaysInMonth((j-1+12)%12,R),oe=e.utils.getDaysInMonth(j,R),se=window.document.createDocumentFragment(),ye=e.config.showMonths>1,ue=ye?"prevMonthDay hidden":"prevMonthDay",Ce=ye?"nextMonthDay hidden":"nextMonthDay",de=X+1-Y,ge=0;de<=X;de++,ge++)se.appendChild(T("flatpickr-day "+ue,new Date(R,j-1,de),de,ge));for(de=1;de<=oe;de++,ge++)se.appendChild(T("flatpickr-day",new Date(R,j,de),de,ge));for(var xe=oe+1;xe<=42-Y&&(e.config.showMonths===1||ge%7!==0);xe++,ge++)se.appendChild(T("flatpickr-day "+Ce,new Date(R,j+1,xe%oe),xe,ge));var Ie=De("div","dayContainer");return Ie.appendChild(se),Ie}function O(){if(e.daysContainer!==void 0){di(e.daysContainer),e.weekNumbers&&di(e.weekNumbers);for(var R=document.createDocumentFragment(),j=0;j<e.config.showMonths;j++){var Y=new Date(e.currentYear,e.currentMonth,1);Y.setMonth(e.currentMonth+j),R.appendChild(C(Y.getFullYear(),Y.getMonth()))}e.daysContainer.appendChild(R),e.days=e.daysContainer.firstChild,e.config.mode==="range"&&e.selectedDates.length===1&&he()}}function N(){if(!(e.config.showMonths>1||e.config.monthSelectorType!=="dropdown")){var R=function(X){return e.config.minDate!==void 0&&e.currentYear===e.config.minDate.getFullYear()&&X<e.config.minDate.getMonth()?!1:!(e.config.maxDate!==void 0&&e.currentYear===e.config.maxDate.getFullYear()&&X>e.config.maxDate.getMonth())};e.monthsDropdownContainer.tabIndex=-1,e.monthsDropdownContainer.innerHTML="";for(var j=0;j<12;j++)if(R(j)){var Y=De("option","flatpickr-monthDropdown-month");Y.value=new Date(e.currentYear,j).getMonth().toString(),Y.textContent=fi(j,e.config.shorthandCurrentMonth,e.l10n),Y.tabIndex=-1,e.currentMonth===j&&(Y.selected=!0),e.monthsDropdownContainer.appendChild(Y)}}}function P(){var R=De("div","flatpickr-month"),j=window.document.createDocumentFragment(),Y;e.config.showMonths>1||e.config.monthSelectorType==="static"?Y=De("span","cur-month"):(e.monthsDropdownContainer=De("select","flatpickr-monthDropdown-months"),e.monthsDropdownContainer.setAttribute("aria-label",e.l10n.monthAriaLabel),g(e.monthsDropdownContainer,"change",function(ye){var ue=st(ye),Ce=parseInt(ue.value,10);e.changeMonth(Ce-e.currentMonth),Me("onMonthChange")}),N(),Y=e.monthsDropdownContainer);var X=ui("cur-year",{tabindex:"-1"}),oe=X.getElementsByTagName("input")[0];oe.setAttribute("aria-label",e.l10n.yearAriaLabel),e.config.minDate&&oe.setAttribute("min",e.config.minDate.getFullYear().toString()),e.config.maxDate&&(oe.setAttribute("max",e.config.maxDate.getFullYear().toString()),oe.disabled=!!e.config.minDate&&e.config.minDate.getFullYear()===e.config.maxDate.getFullYear());var se=De("div","flatpickr-current-month");return se.appendChild(Y),se.appendChild(X),j.appendChild(se),R.appendChild(j),{container:R,yearElement:oe,monthElement:Y}}function F(){di(e.monthNav),e.monthNav.appendChild(e.prevMonthNav),e.config.showMonths&&(e.yearElements=[],e.monthElements=[]);for(var R=e.config.showMonths;R--;){var j=P();e.yearElements.push(j.yearElement),e.monthElements.push(j.monthElement),e.monthNav.appendChild(j.container)}e.monthNav.appendChild(e.nextMonthNav)}function K(){return e.monthNav=De("div","flatpickr-months"),e.yearElements=[],e.monthElements=[],e.prevMonthNav=De("span","flatpickr-prev-month"),e.prevMonthNav.innerHTML=e.config.prevArrow,e.nextMonthNav=De("span","flatpickr-next-month"),e.nextMonthNav.innerHTML=e.config.nextArrow,F(),Object.defineProperty(e,"_hidePrevMonthArrow",{get:function(){return e.__hidePrevMonthArrow},set:function(R){e.__hidePrevMonthArrow!==R&&(Qe(e.prevMonthNav,"flatpickr-disabled",R),e.__hidePrevMonthArrow=R)}}),Object.defineProperty(e,"_hideNextMonthArrow",{get:function(){return e.__hideNextMonthArrow},set:function(R){e.__hideNextMonthArrow!==R&&(Qe(e.nextMonthNav,"flatpickr-disabled",R),e.__hideNextMonthArrow=R)}}),e.currentYearElement=e.yearElements[0],We(),e.monthNav}function W(){e.calendarContainer.classList.add("hasTime"),e.config.noCalendar&&e.calendarContainer.classList.add("noCalendar");var R=tr(e.config);e.timeContainer=De("div","flatpickr-time"),e.timeContainer.tabIndex=-1;var j=De("span","flatpickr-time-separator",":"),Y=ui("flatpickr-hour",{"aria-label":e.l10n.hourAriaLabel});e.hourElement=Y.getElementsByTagName("input")[0];var X=ui("flatpickr-minute",{"aria-label":e.l10n.minuteAriaLabel});if(e.minuteElement=X.getElementsByTagName("input")[0],e.hourElement.tabIndex=e.minuteElement.tabIndex=-1,e.hourElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getHours():e.config.time_24hr?R.hours:h(R.hours)),e.minuteElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getMinutes():R.minutes),e.hourElement.setAttribute("step",e.config.hourIncrement.toString()),e.minuteElement.setAttribute("step",e.config.minuteIncrement.toString()),e.hourElement.setAttribute("min",e.config.time_24hr?"0":"1"),e.hourElement.setAttribute("max",e.config.time_24hr?"23":"12"),e.hourElement.setAttribute("maxlength","2"),e.minuteElement.setAttribute("min","0"),e.minuteElement.setAttribute("max","59"),e.minuteElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(Y),e.timeContainer.appendChild(j),e.timeContainer.appendChild(X),e.config.time_24hr&&e.timeContainer.classList.add("time24hr"),e.config.enableSeconds){e.timeContainer.classList.add("hasSeconds");var oe=ui("flatpickr-second");e.secondElement=oe.getElementsByTagName("input")[0],e.secondElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getSeconds():R.seconds),e.secondElement.setAttribute("step",e.minuteElement.getAttribute("step")),e.secondElement.setAttribute("min","0"),e.secondElement.setAttribute("max","59"),e.secondElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(De("span","flatpickr-time-separator",":")),e.timeContainer.appendChild(oe)}return e.config.time_24hr||(e.amPM=De("span","flatpickr-am-pm",e.l10n.amPM[ft((e.latestSelectedDateObj?e.hourElement.value:e.config.defaultHour)>11)]),e.amPM.title=e.l10n.toggleTitle,e.amPM.tabIndex=-1,e.timeContainer.appendChild(e.amPM)),e.timeContainer}function ee(){e.weekdayContainer?di(e.weekdayContainer):e.weekdayContainer=De("div","flatpickr-weekdays");for(var R=e.config.showMonths;R--;){var j=De("div","flatpickr-weekdaycontainer");e.weekdayContainer.appendChild(j)}return G(),e.weekdayContainer}function G(){if(e.weekdayContainer){var R=e.l10n.firstDayOfWeek,j=Ko(e.l10n.weekdays.shorthand);R>0&&R<j.length&&(j=Ko(j.splice(R,j.length),j.splice(0,R)));for(var Y=e.config.showMonths;Y--;)e.weekdayContainer.children[Y].innerHTML=`
61
64
  <span class='flatpickr-weekday'>
62
65
  `+j.join("</span><span class='flatpickr-weekday'>")+`
63
66
  </span>
64
- `}}function V(){e.calendarContainer.classList.add("hasWeeks");var B=De("div","flatpickr-weekwrapper");B.appendChild(De("span","flatpickr-weekday",e.l10n.weekAbbreviation));var j=De("div","flatpickr-weeks");return B.appendChild(j),{weekWrapper:B,weekNumbers:j}}function D(B,j){j===void 0&&(j=!0);var G=j?B:B-e.currentMonth;G<0&&e._hidePrevMonthArrow===!0||G>0&&e._hideNextMonthArrow===!0||(e.currentMonth+=G,(e.currentMonth<0||e.currentMonth>11)&&(e.currentYear+=e.currentMonth>11?1:-1,e.currentMonth=(e.currentMonth+12)%12,Pe("onYearChange"),N()),O(),Pe("onMonthChange"),Ze())}function A(B,j){if(B===void 0&&(B=!0),j===void 0&&(j=!0),e.input.value="",e.altInput!==void 0&&(e.altInput.value=""),e.mobileInput!==void 0&&(e.mobileInput.value=""),e.selectedDates=[],e.latestSelectedDateObj=void 0,j===!0&&(e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth()),e.config.enableTime===!0){var G=Zr(e.config),X=G.hours,oe=G.minutes,se=G.seconds;h(X,oe,se)}e.redraw(),B&&Pe("onChange")}function I(){e.isOpen=!1,e.isMobile||(e.calendarContainer!==void 0&&e.calendarContainer.classList.remove("open"),e._input!==void 0&&e._input.classList.remove("active")),Pe("onClose")}function U(){e.config!==void 0&&Pe("onDestroy");for(var B=e._handlers.length;B--;)e._handlers[B].remove();if(e._handlers=[],e.mobileInput)e.mobileInput.parentNode&&e.mobileInput.parentNode.removeChild(e.mobileInput),e.mobileInput=void 0;else if(e.calendarContainer&&e.calendarContainer.parentNode)if(e.config.static&&e.calendarContainer.parentNode){var j=e.calendarContainer.parentNode;if(j.lastChild&&j.removeChild(j.lastChild),j.parentNode){for(;j.firstChild;)j.parentNode.insertBefore(j.firstChild,j);j.parentNode.removeChild(j)}}else e.calendarContainer.parentNode.removeChild(e.calendarContainer);e.altInput&&(e.input.type="text",e.altInput.parentNode&&e.altInput.parentNode.removeChild(e.altInput),delete e.altInput),e.input&&(e.input.type=e.input._type,e.input.classList.remove("flatpickr-input"),e.input.removeAttribute("readonly")),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(G){try{delete e[G]}catch{}})}function F(B){return e.calendarContainer.contains(B)}function L(B){if(e.isOpen&&!e.config.inline){var j=ft(B),G=F(j),X=j===e.input||j===e.altInput||e.element.contains(j)||B.path&&B.path.indexOf&&(~B.path.indexOf(e.input)||~B.path.indexOf(e.altInput)),oe=!X&&!G&&!F(B.relatedTarget),se=!e.config.ignoredFocusElements.some(function(ye){return ye.contains(j)});oe&&se&&(e.config.allowInput&&e.setDate(e._input.value,!1,e.config.altInput?e.config.altFormat:e.config.dateFormat),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0&&e.input.value!==""&&e.input.value!==void 0&&u(),e.close(),e.config&&e.config.mode==="range"&&e.selectedDates.length===1&&e.clear(!1))}}function z(B){if(!(!B||e.config.minDate&&B<e.config.minDate.getFullYear()||e.config.maxDate&&B>e.config.maxDate.getFullYear())){var j=B,G=e.currentYear!==j;e.currentYear=j||e.currentYear,e.config.maxDate&&e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth=Math.min(e.config.maxDate.getMonth(),e.currentMonth):e.config.minDate&&e.currentYear===e.config.minDate.getFullYear()&&(e.currentMonth=Math.max(e.config.minDate.getMonth(),e.currentMonth)),G&&(e.redraw(),Pe("onYearChange"),N())}}function Z(B,j){var G;j===void 0&&(j=!0);var X=e.parseDate(B,void 0,j);if(e.config.minDate&&X&&ht(X,e.config.minDate,j!==void 0?j:!e.minDateHasTime)<0||e.config.maxDate&&X&&ht(X,e.config.maxDate,j!==void 0?j:!e.maxDateHasTime)>0)return!1;if(!e.config.enable&&e.config.disable.length===0)return!0;if(X===void 0)return!1;for(var oe=!!e.config.enable,se=(G=e.config.enable)!==null&&G!==void 0?G:e.config.disable,ye=0,ue=void 0;ye<se.length;ye++){if(ue=se[ye],typeof ue=="function"&&ue(X))return oe;if(ue instanceof Date&&X!==void 0&&ue.getTime()===X.getTime())return oe;if(typeof ue=="string"){var Ce=e.parseDate(ue,void 0,!0);return Ce&&Ce.getTime()===X.getTime()?oe:!oe}else if(typeof ue=="object"&&X!==void 0&&ue.from&&ue.to&&X.getTime()>=ue.from.getTime()&&X.getTime()<=ue.to.getTime())return oe}return!oe}function J(B){return e.daysContainer!==void 0?B.className.indexOf("hidden")===-1&&B.className.indexOf("flatpickr-disabled")===-1&&e.daysContainer.contains(B):!1}function ne(B){var j=B.target===e._input,G=e._input.value.trimEnd()!==Ct();j&&G&&!(B.relatedTarget&&F(B.relatedTarget))&&e.setDate(e._input.value,!0,B.target===e.altInput?e.config.altFormat:e.config.dateFormat)}function ce(B){var j=ft(B),G=e.config.wrap?t.contains(j):j===e._input,X=e.config.allowInput,oe=e.isOpen&&(!X||!G),se=e.config.inline&&G&&!X;if(B.keyCode===13&&G){if(X)return e.setDate(e._input.value,!0,j===e.altInput?e.config.altFormat:e.config.dateFormat),e.close(),j.blur();e.open()}else if(F(j)||oe||se){var ye=!!e.timeContainer&&e.timeContainer.contains(j);switch(B.keyCode){case 13:ye?(B.preventDefault(),u(),$e()):me(B);break;case 27:B.preventDefault(),$e();break;case 8:case 46:G&&!e.config.allowInput&&(B.preventDefault(),e.clear());break;case 37:case 39:if(!ye&&!G){B.preventDefault();var ue=i();if(e.daysContainer!==void 0&&(X===!1||ue&&J(ue))){var Ce=B.keyCode===39?1:-1;B.ctrlKey?(B.stopPropagation(),D(Ce),E(x(1),0)):E(void 0,Ce)}}else e.hourElement&&e.hourElement.focus();break;case 38:case 40:B.preventDefault();var de=B.keyCode===40?1:-1;e.daysContainer&&j.$i!==void 0||j===e.input||j===e.altInput?B.ctrlKey?(B.stopPropagation(),z(e.currentYear-de),E(x(1),0)):ye||E(void 0,de*7):j===e.currentYearElement?z(e.currentYear-de):e.config.enableTime&&(!ye&&e.hourElement&&e.hourElement.focus(),u(B),e._debouncedChange());break;case 9:if(ye){var ge=[e.hourElement,e.minuteElement,e.secondElement,e.amPM].concat(e.pluginElements).filter(function(Ge){return Ge}),Te=ge.indexOf(j);if(Te!==-1){var Be=ge[Te+(B.shiftKey?-1:1)];B.preventDefault(),(Be||e._input).focus()}}else!e.config.noCalendar&&e.daysContainer&&e.daysContainer.contains(j)&&B.shiftKey&&(B.preventDefault(),e._input.focus());break}}if(e.amPM!==void 0&&j===e.amPM)switch(B.key){case e.l10n.amPM[0].charAt(0):case e.l10n.amPM[0].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[0],f(),it();break;case e.l10n.amPM[1].charAt(0):case e.l10n.amPM[1].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[1],f(),it();break}(G||F(j))&&Pe("onKeyDown",B)}function he(B,j){if(j===void 0&&(j="flatpickr-day"),!(e.selectedDates.length!==1||B&&(!B.classList.contains(j)||B.classList.contains("flatpickr-disabled")))){for(var G=B?B.dateObj.getTime():e.days.firstElementChild.dateObj.getTime(),X=e.parseDate(e.selectedDates[0],void 0,!0).getTime(),oe=Math.min(G,e.selectedDates[0].getTime()),se=Math.max(G,e.selectedDates[0].getTime()),ye=!1,ue=0,Ce=0,de=oe;de<se;de+=Ru.DAY)Z(new Date(de),!0)||(ye=ye||de>oe&&de<se,de<X&&(!ue||de>ue)?ue=de:de>X&&(!Ce||de<Ce)&&(Ce=de));var ge=Array.from(e.rContainer.querySelectorAll("*:nth-child(-n+"+e.config.showMonths+") > ."+j));ge.forEach(function(Te){var Be=Te.dateObj,Ge=Be.getTime(),Bt=ue>0&&Ge<ue||Ce>0&&Ge>Ce;if(Bt){Te.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach(function(Ot){Te.classList.remove(Ot)});return}else if(ye&&!Bt)return;["startRange","inRange","endRange","notAllowed"].forEach(function(Ot){Te.classList.remove(Ot)}),B!==void 0&&(B.classList.add(G<=e.selectedDates[0].getTime()?"startRange":"endRange"),X<G&&Ge===X?Te.classList.add("startRange"):X>G&&Ge===X&&Te.classList.add("endRange"),Ge>=ue&&(Ce===0||Ge<=Ce)&&Mu(Ge,X,G)&&Te.classList.add("inRange"))})}}function be(){e.isOpen&&!e.config.static&&!e.config.inline&&te()}function ke(B,j){if(j===void 0&&(j=e._positionElement),e.isMobile===!0){if(B){B.preventDefault();var G=ft(B);G&&G.blur()}e.mobileInput!==void 0&&(e.mobileInput.focus(),e.mobileInput.click()),Pe("onOpen");return}else if(e._input.disabled||e.config.inline)return;var X=e.isOpen;e.isOpen=!0,X||(e.calendarContainer.classList.add("open"),e._input.classList.add("active"),Pe("onOpen"),te(j)),e.config.enableTime===!0&&e.config.noCalendar===!0&&e.config.allowInput===!1&&(B===void 0||!e.timeContainer.contains(B.relatedTarget))&&setTimeout(function(){return e.hourElement.select()},50)}function Oe(B){return function(j){var G=e.config["_"+B+"Date"]=e.parseDate(j,e.config.dateFormat),X=e.config["_"+(B==="min"?"max":"min")+"Date"];G!==void 0&&(e[B==="min"?"minDateHasTime":"maxDateHasTime"]=G.getHours()>0||G.getMinutes()>0||G.getSeconds()>0),e.selectedDates&&(e.selectedDates=e.selectedDates.filter(function(oe){return Z(oe)}),!e.selectedDates.length&&B==="min"&&c(G),it()),e.daysContainer&&(ie(),G!==void 0?e.currentYearElement[B]=G.getFullYear().toString():e.currentYearElement.removeAttribute(B),e.currentYearElement.disabled=!!X&&G!==void 0&&X.getFullYear()===G.getFullYear())}}function Re(){var B=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],j=Ye(Ye({},JSON.parse(JSON.stringify(t.dataset||{}))),n),G={};e.config.parseDate=j.parseDate,e.config.formatDate=j.formatDate,Object.defineProperty(e.config,"enable",{get:function(){return e.config._enable},set:function(ge){e.config._enable=wt(ge)}}),Object.defineProperty(e.config,"disable",{get:function(){return e.config._disable},set:function(ge){e.config._disable=wt(ge)}});var X=j.mode==="time";if(!j.dateFormat&&(j.enableTime||X)){var oe=Ve.defaultConfig.dateFormat||cn.dateFormat;G.dateFormat=j.noCalendar||X?"H:i"+(j.enableSeconds?":S":""):oe+" H:i"+(j.enableSeconds?":S":"")}if(j.altInput&&(j.enableTime||X)&&!j.altFormat){var se=Ve.defaultConfig.altFormat||cn.altFormat;G.altFormat=j.noCalendar||X?"h:i"+(j.enableSeconds?":S K":" K"):se+(" h:i"+(j.enableSeconds?":S":"")+" K")}Object.defineProperty(e.config,"minDate",{get:function(){return e.config._minDate},set:Oe("min")}),Object.defineProperty(e.config,"maxDate",{get:function(){return e.config._maxDate},set:Oe("max")});var ye=function(ge){return function(Te){e.config[ge==="min"?"_minTime":"_maxTime"]=e.parseDate(Te,"H:i:S")}};Object.defineProperty(e.config,"minTime",{get:function(){return e.config._minTime},set:ye("min")}),Object.defineProperty(e.config,"maxTime",{get:function(){return e.config._maxTime},set:ye("max")}),j.mode==="time"&&(e.config.noCalendar=!0,e.config.enableTime=!0),Object.assign(e.config,G,j);for(var ue=0;ue<B.length;ue++)e.config[B[ue]]=e.config[B[ue]]===!0||e.config[B[ue]]==="true";Ur.filter(function(ge){return e.config[ge]!==void 0}).forEach(function(ge){e.config[ge]=Kr(e.config[ge]||[]).map(s)}),e.isMobile=!e.config.disableMobile&&!e.config.inline&&e.config.mode==="single"&&!e.config.disable.length&&!e.config.enable&&!e.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);for(var ue=0;ue<e.config.plugins.length;ue++){var Ce=e.config.plugins[ue](e)||{};for(var de in Ce)Ur.indexOf(de)>-1?e.config[de]=Kr(Ce[de]).map(s).concat(e.config[de]):typeof j[de]>"u"&&(e.config[de]=Ce[de])}j.altInputClass||(e.config.altInputClass=Me().className+" "+e.config.altInputClass),Pe("onParseConfig")}function Me(){return e.config.wrap?t.querySelector("[data-input]"):t}function Q(){typeof e.config.locale!="object"&&typeof Ve.l10ns[e.config.locale]>"u"&&e.config.errorHandler(new Error("flatpickr: invalid locale "+e.config.locale)),e.l10n=Ye(Ye({},Ve.l10ns.default),typeof e.config.locale=="object"?e.config.locale:e.config.locale!=="default"?Ve.l10ns[e.config.locale]:void 0),Yt.D="("+e.l10n.weekdays.shorthand.join("|")+")",Yt.l="("+e.l10n.weekdays.longhand.join("|")+")",Yt.M="("+e.l10n.months.shorthand.join("|")+")",Yt.F="("+e.l10n.months.longhand.join("|")+")",Yt.K="("+e.l10n.amPM[0]+"|"+e.l10n.amPM[1]+"|"+e.l10n.amPM[0].toLowerCase()+"|"+e.l10n.amPM[1].toLowerCase()+")";var B=Ye(Ye({},n),JSON.parse(JSON.stringify(t.dataset||{})));B.time_24hr===void 0&&Ve.defaultConfig.time_24hr===void 0&&(e.config.time_24hr=e.l10n.time_24hr),e.formatDate=Lo(e),e.parseDate=Wr({config:e.config,l10n:e.l10n})}function te(B){if(typeof e.config.position=="function")return void e.config.position(e,B);if(e.calendarContainer!==void 0){Pe("onPreCalendarPosition");var j=B||e._positionElement,G=Array.prototype.reduce.call(e.calendarContainer.children,function(Je,Fn){return Je+Fn.offsetHeight},0),X=e.calendarContainer.offsetWidth,oe=e.config.position.split(" "),se=oe[0],ye=oe.length>1?oe[1]:null,ue=j.getBoundingClientRect(),Ce=window.innerHeight-ue.bottom,de=se==="above"||se!=="below"&&Ce<G&&ue.top>G,ge=window.pageYOffset+ue.top+(de?-G-2:j.offsetHeight+2);if(et(e.calendarContainer,"arrowTop",!de),et(e.calendarContainer,"arrowBottom",de),!e.config.inline){var Te=window.pageXOffset+ue.left,Be=!1,Ge=!1;ye==="center"?(Te-=(X-ue.width)/2,Be=!0):ye==="right"&&(Te-=X-ue.width,Ge=!0),et(e.calendarContainer,"arrowLeft",!Be&&!Ge),et(e.calendarContainer,"arrowCenter",Be),et(e.calendarContainer,"arrowRight",Ge);var Bt=window.document.body.offsetWidth-(window.pageXOffset+ue.right),Ot=Te+X>window.document.body.offsetWidth,Mn=Bt+X>window.document.body.offsetWidth;if(et(e.calendarContainer,"rightMost",Ot),!e.config.static)if(e.calendarContainer.style.top=ge+"px",!Ot)e.calendarContainer.style.left=Te+"px",e.calendarContainer.style.right="auto";else if(!Mn)e.calendarContainer.style.left="auto",e.calendarContainer.style.right=Bt+"px";else{var en=ae();if(en===void 0)return;var Ue=window.document.body.offsetWidth,Ln=Math.max(0,Ue/2-X/2),Rn=".flatpickr-calendar.centerMost:before",jn=".flatpickr-calendar.centerMost:after",Vn=en.cssRules.length,qn="{left:"+ue.left+"px;right:auto;}";et(e.calendarContainer,"rightMost",!1),et(e.calendarContainer,"centerMost",!0),en.insertRule(Rn+","+jn+qn,Vn),e.calendarContainer.style.left=Ln+"px",e.calendarContainer.style.right="auto"}}}}function ae(){for(var B=null,j=0;j<document.styleSheets.length;j++){var G=document.styleSheets[j];if(G.cssRules){try{G.cssRules}catch{continue}B=G;break}}return B??le()}function le(){var B=document.createElement("style");return document.head.appendChild(B),B.sheet}function ie(){e.config.noCalendar||e.isMobile||(N(),Ze(),O())}function $e(){e._input.focus(),window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==void 0?setTimeout(e.close,0):e.close()}function me(B){B.preventDefault(),B.stopPropagation();var j=function(ge){return ge.classList&&ge.classList.contains("flatpickr-day")&&!ge.classList.contains("flatpickr-disabled")&&!ge.classList.contains("notAllowed")},G=Mo(ft(B),j);if(G!==void 0){var X=G,oe=e.latestSelectedDateObj=new Date(X.dateObj.getTime()),se=(oe.getMonth()<e.currentMonth||oe.getMonth()>e.currentMonth+e.config.showMonths-1)&&e.config.mode!=="range";if(e.selectedDateElem=X,e.config.mode==="single")e.selectedDates=[oe];else if(e.config.mode==="multiple"){var ye=kt(oe);ye?e.selectedDates.splice(parseInt(ye),1):e.selectedDates.push(oe)}else e.config.mode==="range"&&(e.selectedDates.length===2&&e.clear(!1,!1),e.latestSelectedDateObj=oe,e.selectedDates.push(oe),ht(oe,e.selectedDates[0],!0)!==0&&e.selectedDates.sort(function(ge,Te){return ge.getTime()-Te.getTime()}));if(f(),se){var ue=e.currentYear!==oe.getFullYear();e.currentYear=oe.getFullYear(),e.currentMonth=oe.getMonth(),ue&&(Pe("onYearChange"),N()),Pe("onMonthChange")}if(Ze(),O(),it(),!se&&e.config.mode!=="range"&&e.config.showMonths===1?S(X):e.selectedDateElem!==void 0&&e.hourElement===void 0&&e.selectedDateElem&&e.selectedDateElem.focus(),e.hourElement!==void 0&&e.hourElement!==void 0&&e.hourElement.focus(),e.config.closeOnSelect){var Ce=e.config.mode==="single"&&!e.config.enableTime,de=e.config.mode==="range"&&e.selectedDates.length===2&&!e.config.enableTime;(Ce||de)&&$e()}_()}}var ve={locale:[Q,K],showMonths:[q,l,re],minDate:[g],maxDate:[g],positionElement:[Jt],clickOpens:[function(){e.config.clickOpens===!0?(m(e._input,"focus",e.open),m(e._input,"click",e.open)):(e._input.removeEventListener("focus",e.open),e._input.removeEventListener("click",e.open))}]};function ze(B,j){if(B!==null&&typeof B=="object"){Object.assign(e.config,B);for(var G in B)ve[G]!==void 0&&ve[G].forEach(function(X){return X()})}else e.config[B]=j,ve[B]!==void 0?ve[B].forEach(function(X){return X()}):Ur.indexOf(B)>-1&&(e.config[B]=Kr(j));e.redraw(),it(!0)}function qe(B,j){var G=[];if(B instanceof Array)G=B.map(function(X){return e.parseDate(X,j)});else if(B instanceof Date||typeof B=="number")G=[e.parseDate(B,j)];else if(typeof B=="string")switch(e.config.mode){case"single":case"time":G=[e.parseDate(B,j)];break;case"multiple":G=B.split(e.config.conjunction).map(function(X){return e.parseDate(X,j)});break;case"range":G=B.split(e.l10n.rangeSeparator).map(function(X){return e.parseDate(X,j)});break}else e.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(B)));e.selectedDates=e.config.allowInvalidPreload?G:G.filter(function(X){return X instanceof Date&&Z(X,!1)}),e.config.mode==="range"&&e.selectedDates.sort(function(X,oe){return X.getTime()-oe.getTime()})}function Ae(B,j,G){if(j===void 0&&(j=!1),G===void 0&&(G=e.config.dateFormat),B!==0&&!B||B instanceof Array&&B.length===0)return e.clear(j);qe(B,G),e.latestSelectedDateObj=e.selectedDates[e.selectedDates.length-1],e.redraw(),g(void 0,j),c(),e.selectedDates.length===0&&e.clear(!1),it(j),j&&Pe("onChange")}function wt(B){return B.slice().map(function(j){return typeof j=="string"||typeof j=="number"||j instanceof Date?e.parseDate(j,void 0,!0):j&&typeof j=="object"&&j.from&&j.to?{from:e.parseDate(j.from,void 0),to:e.parseDate(j.to,void 0)}:j}).filter(function(j){return j})}function Ee(){e.selectedDates=[],e.now=e.parseDate(e.config.now)||new Date;var B=e.config.defaultDate||((e.input.nodeName==="INPUT"||e.input.nodeName==="TEXTAREA")&&e.input.placeholder&&e.input.value===e.input.placeholder?null:e.input.value);B&&qe(B,e.config.dateFormat),e._initialDate=e.selectedDates.length>0?e.selectedDates[0]:e.config.minDate&&e.config.minDate.getTime()>e.now.getTime()?e.config.minDate:e.config.maxDate&&e.config.maxDate.getTime()<e.now.getTime()?e.config.maxDate:e.now,e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth(),e.selectedDates.length>0&&(e.latestSelectedDateObj=e.selectedDates[0]),e.config.minTime!==void 0&&(e.config.minTime=e.parseDate(e.config.minTime,"H:i")),e.config.maxTime!==void 0&&(e.config.maxTime=e.parseDate(e.config.maxTime,"H:i")),e.minDateHasTime=!!e.config.minDate&&(e.config.minDate.getHours()>0||e.config.minDate.getMinutes()>0||e.config.minDate.getSeconds()>0),e.maxDateHasTime=!!e.config.maxDate&&(e.config.maxDate.getHours()>0||e.config.maxDate.getMinutes()>0||e.config.maxDate.getSeconds()>0)}function rt(){if(e.input=Me(),!e.input){e.config.errorHandler(new Error("Invalid input element specified"));return}e.input._type=e.input.type,e.input.type="text",e.input.classList.add("flatpickr-input"),e._input=e.input,e.config.altInput&&(e.altInput=De(e.input.nodeName,e.config.altInputClass),e._input=e.altInput,e.altInput.placeholder=e.input.placeholder,e.altInput.disabled=e.input.disabled,e.altInput.required=e.input.required,e.altInput.tabIndex=e.input.tabIndex,e.altInput.type="text",e.input.setAttribute("type","hidden"),!e.config.static&&e.input.parentNode&&e.input.parentNode.insertBefore(e.altInput,e.input.nextSibling)),e.config.allowInput||e._input.setAttribute("readonly","readonly"),Jt()}function Jt(){e._positionElement=e.config.positionElement||e._input}function Bn(){var B=e.config.enableTime?e.config.noCalendar?"time":"datetime-local":"date";e.mobileInput=De("input",e.input.className+" flatpickr-mobile"),e.mobileInput.tabIndex=1,e.mobileInput.type=B,e.mobileInput.disabled=e.input.disabled,e.mobileInput.required=e.input.required,e.mobileInput.placeholder=e.input.placeholder,e.mobileFormatStr=B==="datetime-local"?"Y-m-d\\TH:i:S":B==="date"?"Y-m-d":"H:i:S",e.selectedDates.length>0&&(e.mobileInput.defaultValue=e.mobileInput.value=e.formatDate(e.selectedDates[0],e.mobileFormatStr)),e.config.minDate&&(e.mobileInput.min=e.formatDate(e.config.minDate,"Y-m-d")),e.config.maxDate&&(e.mobileInput.max=e.formatDate(e.config.maxDate,"Y-m-d")),e.input.getAttribute("step")&&(e.mobileInput.step=String(e.input.getAttribute("step"))),e.input.type="hidden",e.altInput!==void 0&&(e.altInput.type="hidden");try{e.input.parentNode&&e.input.parentNode.insertBefore(e.mobileInput,e.input.nextSibling)}catch{}m(e.mobileInput,"change",function(j){e.setDate(ft(j).value,!1,e.mobileFormatStr),Pe("onChange"),Pe("onClose")})}function Xt(B){if(e.isOpen===!0)return e.close();e.open(B)}function Pe(B,j){if(e.config!==void 0){var G=e.config[B];if(G!==void 0&&G.length>0)for(var X=0;G[X]&&X<G.length;X++)G[X](e.selectedDates,e.input.value,e,j);B==="onChange"&&(e.input.dispatchEvent(zt("change")),e.input.dispatchEvent(zt("input")))}}function zt(B){var j=document.createEvent("Event");return j.initEvent(B,!0,!0),j}function kt(B){for(var j=0;j<e.selectedDates.length;j++){var G=e.selectedDates[j];if(G instanceof Date&&ht(G,B)===0)return""+j}return!1}function Pt(B){return e.config.mode!=="range"||e.selectedDates.length<2?!1:ht(B,e.selectedDates[0])>=0&&ht(B,e.selectedDates[1])<=0}function Ze(){e.config.noCalendar||e.isMobile||!e.monthNav||(e.yearElements.forEach(function(B,j){var G=new Date(e.currentYear,e.currentMonth,1);G.setMonth(e.currentMonth+j),e.config.showMonths>1||e.config.monthSelectorType==="static"?e.monthElements[j].textContent=sr(G.getMonth(),e.config.shorthandCurrentMonth,e.l10n)+" ":e.monthsDropdownContainer.value=G.getMonth().toString(),B.value=G.getFullYear().toString()}),e._hidePrevMonthArrow=e.config.minDate!==void 0&&(e.currentYear===e.config.minDate.getFullYear()?e.currentMonth<=e.config.minDate.getMonth():e.currentYear<e.config.minDate.getFullYear()),e._hideNextMonthArrow=e.config.maxDate!==void 0&&(e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth+1>e.config.maxDate.getMonth():e.currentYear>e.config.maxDate.getFullYear()))}function Ct(B){var j=B||(e.config.altInput?e.config.altFormat:e.config.dateFormat);return e.selectedDates.map(function(G){return e.formatDate(G,j)}).filter(function(G,X,oe){return e.config.mode!=="range"||e.config.enableTime||oe.indexOf(G)===X}).join(e.config.mode!=="range"?e.config.conjunction:e.l10n.rangeSeparator)}function it(B){B===void 0&&(B=!0),e.mobileInput!==void 0&&e.mobileFormatStr&&(e.mobileInput.value=e.latestSelectedDateObj!==void 0?e.formatDate(e.latestSelectedDateObj,e.mobileFormatStr):""),e.input.value=Ct(e.config.dateFormat),e.altInput!==void 0&&(e.altInput.value=Ct(e.config.altFormat)),B!==!1&&Pe("onValueUpdate")}function It(B){var j=ft(B),G=e.prevMonthNav.contains(j),X=e.nextMonthNav.contains(j);G||X?D(G?-1:1):e.yearElements.indexOf(j)>=0?j.select():j.classList.contains("arrowUp")?e.changeYear(e.currentYear+1):j.classList.contains("arrowDown")&&e.changeYear(e.currentYear-1)}function Qt(B){B.preventDefault();var j=B.type==="keydown",G=ft(B),X=G;e.amPM!==void 0&&G===e.amPM&&(e.amPM.textContent=e.l10n.amPM[gt(e.amPM.textContent===e.l10n.amPM[0])]);var oe=parseFloat(X.getAttribute("min")),se=parseFloat(X.getAttribute("max")),ye=parseFloat(X.getAttribute("step")),ue=parseInt(X.value,10),Ce=B.delta||(j?B.which===38?1:-1:0),de=ue+ye*Ce;if(typeof X.value<"u"&&X.value.length===2){var ge=X===e.hourElement,Te=X===e.minuteElement;de<oe?(de=se+de+gt(!ge)+(gt(ge)&&gt(!e.amPM)),Te&&b(void 0,-1,e.hourElement)):de>se&&(de=X===e.hourElement?de-se-gt(!e.amPM):oe,Te&&b(void 0,1,e.hourElement)),e.amPM&&ge&&(ye===1?de+ue===23:Math.abs(de-ue)>ye)&&(e.amPM.textContent=e.l10n.amPM[gt(e.amPM.textContent===e.l10n.amPM[0])]),X.value=at(de)}}return a(),e}function dn(t,n){for(var e=Array.prototype.slice.call(t).filter(function(s){return s instanceof HTMLElement}),o=[],a=0;a<e.length;a++){var i=e[a];try{if(i.getAttribute("data-fp-omit")!==null)continue;i._flatpickr!==void 0&&(i._flatpickr.destroy(),i._flatpickr=void 0),i._flatpickr=Vu(i,n||{}),o.push(i._flatpickr)}catch(s){console.error(s)}}return o.length===1?o[0]:o}typeof HTMLElement<"u"&&typeof HTMLCollection<"u"&&typeof NodeList<"u"&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(t){return dn(this,t)},HTMLElement.prototype.flatpickr=function(t){return dn([this],t)});var Ve=function(t,n){return typeof t=="string"?dn(window.document.querySelectorAll(t),n):t instanceof Node?dn([t],n):dn(t,n)};Ve.defaultConfig={},Ve.l10ns={en:Ye({},En),default:Ye({},En)},Ve.localize=function(t){Ve.l10ns.default=Ye(Ye({},Ve.l10ns.default),t)},Ve.setDefaults=function(t){Ve.defaultConfig=Ye(Ye({},Ve.defaultConfig),t)},Ve.parseDate=Wr({}),Ve.formatDate=Lo({}),Ve.compareDates=ht,typeof jQuery<"u"&&typeof jQuery.fn<"u"&&(jQuery.fn.flatpickr=function(t){return dn(this,t)}),Date.prototype.fp_incr=function(t){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+(typeof t=="string"?parseInt(t,10):t))},typeof window<"u"&&(window.flatpickr=Ve);const Mp="";var jo={exports:{}};(function(t,n){(function(e,o){t.exports=o()})(je,function(){/*! *****************************************************************************
65
- Copyright (c) Microsoft Corporation.
67
+ `}}function V(){e.calendarContainer.classList.add("hasWeeks");var R=De("div","flatpickr-weekwrapper");R.appendChild(De("span","flatpickr-weekday",e.l10n.weekAbbreviation));var j=De("div","flatpickr-weeks");return R.appendChild(j),{weekWrapper:R,weekNumbers:j}}function M(R,j){j===void 0&&(j=!0);var Y=j?R:R-e.currentMonth;Y<0&&e._hidePrevMonthArrow===!0||Y>0&&e._hideNextMonthArrow===!0||(e.currentMonth+=Y,(e.currentMonth<0||e.currentMonth>11)&&(e.currentYear+=e.currentMonth>11?1:-1,e.currentMonth=(e.currentMonth+12)%12,Me("onYearChange"),N()),O(),Me("onMonthChange"),We())}function A(R,j){if(R===void 0&&(R=!0),j===void 0&&(j=!0),e.input.value="",e.altInput!==void 0&&(e.altInput.value=""),e.mobileInput!==void 0&&(e.mobileInput.value=""),e.selectedDates=[],e.latestSelectedDateObj=void 0,j===!0&&(e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth()),e.config.enableTime===!0){var Y=tr(e.config),X=Y.hours,oe=Y.minutes,se=Y.seconds;u(X,oe,se)}e.redraw(),R&&Me("onChange")}function B(){e.isOpen=!1,e.isMobile||(e.calendarContainer!==void 0&&e.calendarContainer.classList.remove("open"),e._input!==void 0&&e._input.classList.remove("active")),Me("onClose")}function H(){e.config!==void 0&&Me("onDestroy");for(var R=e._handlers.length;R--;)e._handlers[R].remove();if(e._handlers=[],e.mobileInput)e.mobileInput.parentNode&&e.mobileInput.parentNode.removeChild(e.mobileInput),e.mobileInput=void 0;else if(e.calendarContainer&&e.calendarContainer.parentNode)if(e.config.static&&e.calendarContainer.parentNode){var j=e.calendarContainer.parentNode;if(j.lastChild&&j.removeChild(j.lastChild),j.parentNode){for(;j.firstChild;)j.parentNode.insertBefore(j.firstChild,j);j.parentNode.removeChild(j)}}else e.calendarContainer.parentNode.removeChild(e.calendarContainer);e.altInput&&(e.input.type="text",e.altInput.parentNode&&e.altInput.parentNode.removeChild(e.altInput),delete e.altInput),e.input&&(e.input.type=e.input._type,e.input.classList.remove("flatpickr-input"),e.input.removeAttribute("readonly")),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(Y){try{delete e[Y]}catch{}})}function q(R){return e.calendarContainer.contains(R)}function L(R){if(e.isOpen&&!e.config.inline){var j=st(R),Y=q(j),X=j===e.input||j===e.altInput||e.element.contains(j)||R.path&&R.path.indexOf&&(~R.path.indexOf(e.input)||~R.path.indexOf(e.altInput)),oe=!X&&!Y&&!q(R.relatedTarget),se=!e.config.ignoredFocusElements.some(function(ye){return ye.contains(j)});oe&&se&&(e.config.allowInput&&e.setDate(e._input.value,!1,e.config.altInput?e.config.altFormat:e.config.dateFormat),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0&&e.input.value!==""&&e.input.value!==void 0&&p(),e.close(),e.config&&e.config.mode==="range"&&e.selectedDates.length===1&&e.clear(!1))}}function U(R){if(!(!R||e.config.minDate&&R<e.config.minDate.getFullYear()||e.config.maxDate&&R>e.config.maxDate.getFullYear())){var j=R,Y=e.currentYear!==j;e.currentYear=j||e.currentYear,e.config.maxDate&&e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth=Math.min(e.config.maxDate.getMonth(),e.currentMonth):e.config.minDate&&e.currentYear===e.config.minDate.getFullYear()&&(e.currentMonth=Math.max(e.config.minDate.getMonth(),e.currentMonth)),Y&&(e.redraw(),Me("onYearChange"),N())}}function Z(R,j){var Y;j===void 0&&(j=!0);var X=e.parseDate(R,void 0,j);if(e.config.minDate&&X&&ct(X,e.config.minDate,j!==void 0?j:!e.minDateHasTime)<0||e.config.maxDate&&X&&ct(X,e.config.maxDate,j!==void 0?j:!e.maxDateHasTime)>0)return!1;if(!e.config.enable&&e.config.disable.length===0)return!0;if(X===void 0)return!1;for(var oe=!!e.config.enable,se=(Y=e.config.enable)!==null&&Y!==void 0?Y:e.config.disable,ye=0,ue=void 0;ye<se.length;ye++){if(ue=se[ye],typeof ue=="function"&&ue(X))return oe;if(ue instanceof Date&&X!==void 0&&ue.getTime()===X.getTime())return oe;if(typeof ue=="string"){var Ce=e.parseDate(ue,void 0,!0);return Ce&&Ce.getTime()===X.getTime()?oe:!oe}else if(typeof ue=="object"&&X!==void 0&&ue.from&&ue.to&&X.getTime()>=ue.from.getTime()&&X.getTime()<=ue.to.getTime())return oe}return!oe}function J(R){return e.daysContainer!==void 0?R.className.indexOf("hidden")===-1&&R.className.indexOf("flatpickr-disabled")===-1&&e.daysContainer.contains(R):!1}function ie(R){var j=R.target===e._input,Y=e._input.value.trimEnd()!==bt();j&&Y&&!(R.relatedTarget&&q(R.relatedTarget))&&e.setDate(e._input.value,!0,R.target===e.altInput?e.config.altFormat:e.config.dateFormat)}function ce(R){var j=st(R),Y=e.config.wrap?t.contains(j):j===e._input,X=e.config.allowInput,oe=e.isOpen&&(!X||!Y),se=e.config.inline&&Y&&!X;if(R.keyCode===13&&Y){if(X)return e.setDate(e._input.value,!0,j===e.altInput?e.config.altFormat:e.config.dateFormat),e.close(),j.blur();e.open()}else if(q(j)||oe||se){var ye=!!e.timeContainer&&e.timeContainer.contains(j);switch(R.keyCode){case 13:ye?(R.preventDefault(),p(),$e()):me(R);break;case 27:R.preventDefault(),$e();break;case 8:case 46:Y&&!e.config.allowInput&&(R.preventDefault(),e.clear());break;case 37:case 39:if(!ye&&!Y){R.preventDefault();var ue=r();if(e.daysContainer!==void 0&&(X===!1||ue&&J(ue))){var Ce=R.keyCode===39?1:-1;R.ctrlKey?(R.stopPropagation(),M(Ce),E(x(1),0)):E(void 0,Ce)}}else e.hourElement&&e.hourElement.focus();break;case 38:case 40:R.preventDefault();var de=R.keyCode===40?1:-1;e.daysContainer&&j.$i!==void 0||j===e.input||j===e.altInput?R.ctrlKey?(R.stopPropagation(),U(e.currentYear-de),E(x(1),0)):ye||E(void 0,de*7):j===e.currentYearElement?U(e.currentYear-de):e.config.enableTime&&(!ye&&e.hourElement&&e.hourElement.focus(),p(R),e._debouncedChange());break;case 9:if(ye){var ge=[e.hourElement,e.minuteElement,e.secondElement,e.amPM].concat(e.pluginElements).filter(function(Ue){return Ue}),xe=ge.indexOf(j);if(xe!==-1){var Ie=ge[xe+(R.shiftKey?-1:1)];R.preventDefault(),(Ie||e._input).focus()}}else!e.config.noCalendar&&e.daysContainer&&e.daysContainer.contains(j)&&R.shiftKey&&(R.preventDefault(),e._input.focus());break}}if(e.amPM!==void 0&&j===e.amPM)switch(R.key){case e.l10n.amPM[0].charAt(0):case e.l10n.amPM[0].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[0],f(),it();break;case e.l10n.amPM[1].charAt(0):case e.l10n.amPM[1].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[1],f(),it();break}(Y||q(j))&&Me("onKeyDown",R)}function he(R,j){if(j===void 0&&(j="flatpickr-day"),!(e.selectedDates.length!==1||R&&(!R.classList.contains(j)||R.classList.contains("flatpickr-disabled")))){for(var Y=R?R.dateObj.getTime():e.days.firstElementChild.dateObj.getTime(),X=e.parseDate(e.selectedDates[0],void 0,!0).getTime(),oe=Math.min(Y,e.selectedDates[0].getTime()),se=Math.max(Y,e.selectedDates[0].getTime()),ye=!1,ue=0,Ce=0,de=oe;de<se;de+=cf.DAY)Z(new Date(de),!0)||(ye=ye||de>oe&&de<se,de<X&&(!ue||de>ue)?ue=de:de>X&&(!Ce||de<Ce)&&(Ce=de));var ge=Array.from(e.rContainer.querySelectorAll("*:nth-child(-n+"+e.config.showMonths+") > ."+j));ge.forEach(function(xe){var Ie=xe.dateObj,Ue=Ie.getTime(),Mt=ue>0&&Ue<ue||Ce>0&&Ue>Ce;if(Mt){xe.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach(function(vt){xe.classList.remove(vt)});return}else if(ye&&!Mt)return;["startRange","inRange","endRange","notAllowed"].forEach(function(vt){xe.classList.remove(vt)}),R!==void 0&&(R.classList.add(Y<=e.selectedDates[0].getTime()?"startRange":"endRange"),X<Y&&Ue===X?xe.classList.add("startRange"):X>Y&&Ue===X&&xe.classList.add("endRange"),Ue>=ue&&(Ce===0||Ue<=Ce)&&lf(Ue,X,Y)&&xe.classList.add("inRange"))})}}function ve(){e.isOpen&&!e.config.static&&!e.config.inline&&ne()}function we(R,j){if(j===void 0&&(j=e._positionElement),e.isMobile===!0){if(R){R.preventDefault();var Y=st(R);Y&&Y.blur()}e.mobileInput!==void 0&&(e.mobileInput.focus(),e.mobileInput.click()),Me("onOpen");return}else if(e._input.disabled||e.config.inline)return;var X=e.isOpen;e.isOpen=!0,X||(e.calendarContainer.classList.add("open"),e._input.classList.add("active"),Me("onOpen"),ne(j)),e.config.enableTime===!0&&e.config.noCalendar===!0&&e.config.allowInput===!1&&(R===void 0||!e.timeContainer.contains(R.relatedTarget))&&setTimeout(function(){return e.hourElement.select()},50)}function Oe(R){return function(j){var Y=e.config["_"+R+"Date"]=e.parseDate(j,e.config.dateFormat),X=e.config["_"+(R==="min"?"max":"min")+"Date"];Y!==void 0&&(e[R==="min"?"minDateHasTime":"maxDateHasTime"]=Y.getHours()>0||Y.getMinutes()>0||Y.getSeconds()>0),e.selectedDates&&(e.selectedDates=e.selectedDates.filter(function(oe){return Z(oe)}),!e.selectedDates.length&&R==="min"&&l(Y),it()),e.daysContainer&&(re(),Y!==void 0?e.currentYearElement[R]=Y.getFullYear().toString():e.currentYearElement.removeAttribute(R),e.currentYearElement.disabled=!!X&&Y!==void 0&&X.getFullYear()===Y.getFullYear())}}function Re(){var R=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],j=Ge(Ge({},JSON.parse(JSON.stringify(t.dataset||{}))),i),Y={};e.config.parseDate=j.parseDate,e.config.formatDate=j.formatDate,Object.defineProperty(e.config,"enable",{get:function(){return e.config._enable},set:function(ge){e.config._enable=gt(ge)}}),Object.defineProperty(e.config,"disable",{get:function(){return e.config._disable},set:function(ge){e.config._disable=gt(ge)}});var X=j.mode==="time";if(!j.dateFormat&&(j.enableTime||X)){var oe=Ve.defaultConfig.dateFormat||an.dateFormat;Y.dateFormat=j.noCalendar||X?"H:i"+(j.enableSeconds?":S":""):oe+" H:i"+(j.enableSeconds?":S":"")}if(j.altInput&&(j.enableTime||X)&&!j.altFormat){var se=Ve.defaultConfig.altFormat||an.altFormat;Y.altFormat=j.noCalendar||X?"h:i"+(j.enableSeconds?":S K":" K"):se+(" h:i"+(j.enableSeconds?":S":"")+" K")}Object.defineProperty(e.config,"minDate",{get:function(){return e.config._minDate},set:Oe("min")}),Object.defineProperty(e.config,"maxDate",{get:function(){return e.config._maxDate},set:Oe("max")});var ye=function(ge){return function(xe){e.config[ge==="min"?"_minTime":"_maxTime"]=e.parseDate(xe,"H:i:S")}};Object.defineProperty(e.config,"minTime",{get:function(){return e.config._minTime},set:ye("min")}),Object.defineProperty(e.config,"maxTime",{get:function(){return e.config._maxTime},set:ye("max")}),j.mode==="time"&&(e.config.noCalendar=!0,e.config.enableTime=!0),Object.assign(e.config,Y,j);for(var ue=0;ue<R.length;ue++)e.config[R[ue]]=e.config[R[ue]]===!0||e.config[R[ue]]==="true";Zi.filter(function(ge){return e.config[ge]!==void 0}).forEach(function(ge){e.config[ge]=Ji(e.config[ge]||[]).map(d)}),e.isMobile=!e.config.disableMobile&&!e.config.inline&&e.config.mode==="single"&&!e.config.disable.length&&!e.config.enable&&!e.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);for(var ue=0;ue<e.config.plugins.length;ue++){var Ce=e.config.plugins[ue](e)||{};for(var de in Ce)Zi.indexOf(de)>-1?e.config[de]=Ji(Ce[de]).map(d).concat(e.config[de]):typeof j[de]>"u"&&(e.config[de]=Ce[de])}j.altInputClass||(e.config.altInputClass=Pe().className+" "+e.config.altInputClass),Me("onParseConfig")}function Pe(){return e.config.wrap?t.querySelector("[data-input]"):t}function Q(){typeof e.config.locale!="object"&&typeof Ve.l10ns[e.config.locale]>"u"&&e.config.errorHandler(new Error("flatpickr: invalid locale "+e.config.locale)),e.l10n=Ge(Ge({},Ve.l10ns.default),typeof e.config.locale=="object"?e.config.locale:e.config.locale!=="default"?Ve.l10ns[e.config.locale]:void 0),Ut.D="("+e.l10n.weekdays.shorthand.join("|")+")",Ut.l="("+e.l10n.weekdays.longhand.join("|")+")",Ut.M="("+e.l10n.months.shorthand.join("|")+")",Ut.F="("+e.l10n.months.longhand.join("|")+")",Ut.K="("+e.l10n.amPM[0]+"|"+e.l10n.amPM[1]+"|"+e.l10n.amPM[0].toLowerCase()+"|"+e.l10n.amPM[1].toLowerCase()+")";var R=Ge(Ge({},i),JSON.parse(JSON.stringify(t.dataset||{})));R.time_24hr===void 0&&Ve.defaultConfig.time_24hr===void 0&&(e.config.time_24hr=e.l10n.time_24hr),e.formatDate=Uo(e),e.parseDate=Qi({config:e.config,l10n:e.l10n})}function ne(R){if(typeof e.config.position=="function")return void e.config.position(e,R);if(e.calendarContainer!==void 0){Me("onPreCalendarPosition");var j=R||e._positionElement,Y=Array.prototype.reduce.call(e.calendarContainer.children,(function(Ye,zn){return Ye+zn.offsetHeight}),0),X=e.calendarContainer.offsetWidth,oe=e.config.position.split(" "),se=oe[0],ye=oe.length>1?oe[1]:null,ue=j.getBoundingClientRect(),Ce=window.innerHeight-ue.bottom,de=se==="above"||se!=="below"&&Ce<Y&&ue.top>Y,ge=window.pageYOffset+ue.top+(de?-Y-2:j.offsetHeight+2);if(Qe(e.calendarContainer,"arrowTop",!de),Qe(e.calendarContainer,"arrowBottom",de),!e.config.inline){var xe=window.pageXOffset+ue.left,Ie=!1,Ue=!1;ye==="center"?(xe-=(X-ue.width)/2,Ie=!0):ye==="right"&&(xe-=X-ue.width,Ue=!0),Qe(e.calendarContainer,"arrowLeft",!Ie&&!Ue),Qe(e.calendarContainer,"arrowCenter",Ie),Qe(e.calendarContainer,"arrowRight",Ue);var Mt=window.document.body.offsetWidth-(window.pageXOffset+ue.right),vt=xe+X>window.document.body.offsetWidth,Rn=Mt+X>window.document.body.offsetWidth;if(Qe(e.calendarContainer,"rightMost",vt),!e.config.static)if(e.calendarContainer.style.top=ge+"px",!vt)e.calendarContainer.style.left=xe+"px",e.calendarContainer.style.right="auto";else if(!Rn)e.calendarContainer.style.left="auto",e.calendarContainer.style.right=Mt+"px";else{var Zt=ae();if(Zt===void 0)return;var ze=window.document.body.offsetWidth,Vn=Math.max(0,ze/2-X/2),jn=".flatpickr-calendar.centerMost:before",Fn=".flatpickr-calendar.centerMost:after",qn=Zt.cssRules.length,Hn="{left:"+ue.left+"px;right:auto;}";Qe(e.calendarContainer,"rightMost",!1),Qe(e.calendarContainer,"centerMost",!0),Zt.insertRule(jn+","+Fn+Hn,qn),e.calendarContainer.style.left=Vn+"px",e.calendarContainer.style.right="auto"}}}}function ae(){for(var R=null,j=0;j<document.styleSheets.length;j++){var Y=document.styleSheets[j];if(Y.cssRules){try{Y.cssRules}catch{continue}R=Y;break}}return R??le()}function le(){var R=document.createElement("style");return document.head.appendChild(R),R.sheet}function re(){e.config.noCalendar||e.isMobile||(N(),We(),O())}function $e(){e._input.focus(),window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==void 0?setTimeout(e.close,0):e.close()}function me(R){R.preventDefault(),R.stopPropagation();var j=function(ge){return ge.classList&&ge.classList.contains("flatpickr-day")&&!ge.classList.contains("flatpickr-disabled")&&!ge.classList.contains("notAllowed")},Y=zo(st(R),j);if(Y!==void 0){var X=Y,oe=e.latestSelectedDateObj=new Date(X.dateObj.getTime()),se=(oe.getMonth()<e.currentMonth||oe.getMonth()>e.currentMonth+e.config.showMonths-1)&&e.config.mode!=="range";if(e.selectedDateElem=X,e.config.mode==="single")e.selectedDates=[oe];else if(e.config.mode==="multiple"){var ye=yt(oe);ye?e.selectedDates.splice(parseInt(ye),1):e.selectedDates.push(oe)}else e.config.mode==="range"&&(e.selectedDates.length===2&&e.clear(!1,!1),e.latestSelectedDateObj=oe,e.selectedDates.push(oe),ct(oe,e.selectedDates[0],!0)!==0&&e.selectedDates.sort(function(ge,xe){return ge.getTime()-xe.getTime()}));if(f(),se){var ue=e.currentYear!==oe.getFullYear();e.currentYear=oe.getFullYear(),e.currentMonth=oe.getMonth(),ue&&(Me("onYearChange"),N()),Me("onMonthChange")}if(We(),O(),it(),!se&&e.config.mode!=="range"&&e.config.showMonths===1?S(X):e.selectedDateElem!==void 0&&e.hourElement===void 0&&e.selectedDateElem&&e.selectedDateElem.focus(),e.hourElement!==void 0&&e.hourElement!==void 0&&e.hourElement.focus(),e.config.closeOnSelect){var Ce=e.config.mode==="single"&&!e.config.enableTime,de=e.config.mode==="range"&&e.selectedDates.length===2&&!e.config.enableTime;(Ce||de)&&$e()}$()}}var _e={locale:[Q,G],showMonths:[F,c,ee],minDate:[b],maxDate:[b],positionElement:[Gt],clickOpens:[function(){e.config.clickOpens===!0?(g(e._input,"focus",e.open),g(e._input,"click",e.open)):(e._input.removeEventListener("focus",e.open),e._input.removeEventListener("click",e.open))}]};function He(R,j){if(R!==null&&typeof R=="object"){Object.assign(e.config,R);for(var Y in R)_e[Y]!==void 0&&_e[Y].forEach(function(X){return X()})}else e.config[R]=j,_e[R]!==void 0?_e[R].forEach(function(X){return X()}):Zi.indexOf(R)>-1&&(e.config[R]=Ji(j));e.redraw(),it(!0)}function je(R,j){var Y=[];if(R instanceof Array)Y=R.map(function(X){return e.parseDate(X,j)});else if(R instanceof Date||typeof R=="number")Y=[e.parseDate(R,j)];else if(typeof R=="string")switch(e.config.mode){case"single":case"time":Y=[e.parseDate(R,j)];break;case"multiple":Y=R.split(e.config.conjunction).map(function(X){return e.parseDate(X,j)});break;case"range":Y=R.split(e.l10n.rangeSeparator).map(function(X){return e.parseDate(X,j)});break}else e.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(R)));e.selectedDates=e.config.allowInvalidPreload?Y:Y.filter(function(X){return X instanceof Date&&Z(X,!1)}),e.config.mode==="range"&&e.selectedDates.sort(function(X,oe){return X.getTime()-oe.getTime()})}function Ne(R,j,Y){if(j===void 0&&(j=!1),Y===void 0&&(Y=e.config.dateFormat),R!==0&&!R||R instanceof Array&&R.length===0)return e.clear(j);je(R,Y),e.latestSelectedDateObj=e.selectedDates[e.selectedDates.length-1],e.redraw(),b(void 0,j),l(),e.selectedDates.length===0&&e.clear(!1),it(j),j&&Me("onChange")}function gt(R){return R.slice().map(function(j){return typeof j=="string"||typeof j=="number"||j instanceof Date?e.parseDate(j,void 0,!0):j&&typeof j=="object"&&j.from&&j.to?{from:e.parseDate(j.from,void 0),to:e.parseDate(j.to,void 0)}:j}).filter(function(j){return j})}function Se(){e.selectedDates=[],e.now=e.parseDate(e.config.now)||new Date;var R=e.config.defaultDate||((e.input.nodeName==="INPUT"||e.input.nodeName==="TEXTAREA")&&e.input.placeholder&&e.input.value===e.input.placeholder?null:e.input.value);R&&je(R,e.config.dateFormat),e._initialDate=e.selectedDates.length>0?e.selectedDates[0]:e.config.minDate&&e.config.minDate.getTime()>e.now.getTime()?e.config.minDate:e.config.maxDate&&e.config.maxDate.getTime()<e.now.getTime()?e.config.maxDate:e.now,e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth(),e.selectedDates.length>0&&(e.latestSelectedDateObj=e.selectedDates[0]),e.config.minTime!==void 0&&(e.config.minTime=e.parseDate(e.config.minTime,"H:i")),e.config.maxTime!==void 0&&(e.config.maxTime=e.parseDate(e.config.maxTime,"H:i")),e.minDateHasTime=!!e.config.minDate&&(e.config.minDate.getHours()>0||e.config.minDate.getMinutes()>0||e.config.minDate.getSeconds()>0),e.maxDateHasTime=!!e.config.maxDate&&(e.config.maxDate.getHours()>0||e.config.maxDate.getMinutes()>0||e.config.maxDate.getSeconds()>0)}function nt(){if(e.input=Pe(),!e.input){e.config.errorHandler(new Error("Invalid input element specified"));return}e.input._type=e.input.type,e.input.type="text",e.input.classList.add("flatpickr-input"),e._input=e.input,e.config.altInput&&(e.altInput=De(e.input.nodeName,e.config.altInputClass),e._input=e.altInput,e.altInput.placeholder=e.input.placeholder,e.altInput.disabled=e.input.disabled,e.altInput.required=e.input.required,e.altInput.tabIndex=e.input.tabIndex,e.altInput.type="text",e.input.setAttribute("type","hidden"),!e.config.static&&e.input.parentNode&&e.input.parentNode.insertBefore(e.altInput,e.input.nextSibling)),e.config.allowInput||e._input.setAttribute("readonly","readonly"),Gt()}function Gt(){e._positionElement=e.config.positionElement||e._input}function Ln(){var R=e.config.enableTime?e.config.noCalendar?"time":"datetime-local":"date";e.mobileInput=De("input",e.input.className+" flatpickr-mobile"),e.mobileInput.tabIndex=1,e.mobileInput.type=R,e.mobileInput.disabled=e.input.disabled,e.mobileInput.required=e.input.required,e.mobileInput.placeholder=e.input.placeholder,e.mobileFormatStr=R==="datetime-local"?"Y-m-d\\TH:i:S":R==="date"?"Y-m-d":"H:i:S",e.selectedDates.length>0&&(e.mobileInput.defaultValue=e.mobileInput.value=e.formatDate(e.selectedDates[0],e.mobileFormatStr)),e.config.minDate&&(e.mobileInput.min=e.formatDate(e.config.minDate,"Y-m-d")),e.config.maxDate&&(e.mobileInput.max=e.formatDate(e.config.maxDate,"Y-m-d")),e.input.getAttribute("step")&&(e.mobileInput.step=String(e.input.getAttribute("step"))),e.input.type="hidden",e.altInput!==void 0&&(e.altInput.type="hidden");try{e.input.parentNode&&e.input.parentNode.insertBefore(e.mobileInput,e.input.nextSibling)}catch{}g(e.mobileInput,"change",function(j){e.setDate(st(j).value,!1,e.mobileFormatStr),Me("onChange"),Me("onClose")})}function Wt(R){if(e.isOpen===!0)return e.close();e.open(R)}function Me(R,j){if(e.config!==void 0){var Y=e.config[R];if(Y!==void 0&&Y.length>0)for(var X=0;Y[X]&&X<Y.length;X++)Y[X](e.selectedDates,e.input.value,e,j);R==="onChange"&&(e.input.dispatchEvent(qt("change")),e.input.dispatchEvent(qt("input")))}}function qt(R){var j=document.createEvent("Event");return j.initEvent(R,!0,!0),j}function yt(R){for(var j=0;j<e.selectedDates.length;j++){var Y=e.selectedDates[j];if(Y instanceof Date&&ct(Y,R)===0)return""+j}return!1}function At(R){return e.config.mode!=="range"||e.selectedDates.length<2?!1:ct(R,e.selectedDates[0])>=0&&ct(R,e.selectedDates[1])<=0}function We(){e.config.noCalendar||e.isMobile||!e.monthNav||(e.yearElements.forEach(function(R,j){var Y=new Date(e.currentYear,e.currentMonth,1);Y.setMonth(e.currentMonth+j),e.config.showMonths>1||e.config.monthSelectorType==="static"?e.monthElements[j].textContent=fi(Y.getMonth(),e.config.shorthandCurrentMonth,e.l10n)+" ":e.monthsDropdownContainer.value=Y.getMonth().toString(),R.value=Y.getFullYear().toString()}),e._hidePrevMonthArrow=e.config.minDate!==void 0&&(e.currentYear===e.config.minDate.getFullYear()?e.currentMonth<=e.config.minDate.getMonth():e.currentYear<e.config.minDate.getFullYear()),e._hideNextMonthArrow=e.config.maxDate!==void 0&&(e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth+1>e.config.maxDate.getMonth():e.currentYear>e.config.maxDate.getFullYear()))}function bt(R){var j=R||(e.config.altInput?e.config.altFormat:e.config.dateFormat);return e.selectedDates.map(function(Y){return e.formatDate(Y,j)}).filter(function(Y,X,oe){return e.config.mode!=="range"||e.config.enableTime||oe.indexOf(Y)===X}).join(e.config.mode!=="range"?e.config.conjunction:e.l10n.rangeSeparator)}function it(R){R===void 0&&(R=!0),e.mobileInput!==void 0&&e.mobileFormatStr&&(e.mobileInput.value=e.latestSelectedDateObj!==void 0?e.formatDate(e.latestSelectedDateObj,e.mobileFormatStr):""),e.input.value=bt(e.config.dateFormat),e.altInput!==void 0&&(e.altInput.value=bt(e.config.altFormat)),R!==!1&&Me("onValueUpdate")}function Dt(R){var j=st(R),Y=e.prevMonthNav.contains(j),X=e.nextMonthNav.contains(j);Y||X?M(Y?-1:1):e.yearElements.indexOf(j)>=0?j.select():j.classList.contains("arrowUp")?e.changeYear(e.currentYear+1):j.classList.contains("arrowDown")&&e.changeYear(e.currentYear-1)}function Yt(R){R.preventDefault();var j=R.type==="keydown",Y=st(R),X=Y;e.amPM!==void 0&&Y===e.amPM&&(e.amPM.textContent=e.l10n.amPM[ft(e.amPM.textContent===e.l10n.amPM[0])]);var oe=parseFloat(X.getAttribute("min")),se=parseFloat(X.getAttribute("max")),ye=parseFloat(X.getAttribute("step")),ue=parseInt(X.value,10),Ce=R.delta||(j?R.which===38?1:-1:0),de=ue+ye*Ce;if(typeof X.value<"u"&&X.value.length===2){var ge=X===e.hourElement,xe=X===e.minuteElement;de<oe?(de=se+de+ft(!ge)+(ft(ge)&&ft(!e.amPM)),xe&&m(void 0,-1,e.hourElement)):de>se&&(de=X===e.hourElement?de-se-ft(!e.amPM):oe,xe&&m(void 0,1,e.hourElement)),e.amPM&&ge&&(ye===1?de+ue===23:Math.abs(de-ue)>ye)&&(e.amPM.textContent=e.l10n.amPM[ft(e.amPM.textContent===e.l10n.amPM[0])]),X.value=ot(de)}}return a(),e}function ln(t,i){for(var e=Array.prototype.slice.call(t).filter(function(d){return d instanceof HTMLElement}),o=[],a=0;a<e.length;a++){var r=e[a];try{if(r.getAttribute("data-fp-omit")!==null)continue;r._flatpickr!==void 0&&(r._flatpickr.destroy(),r._flatpickr=void 0),r._flatpickr=uf(r,i||{}),o.push(r._flatpickr)}catch(d){console.error(d)}}return o.length===1?o[0]:o}typeof HTMLElement<"u"&&typeof HTMLCollection<"u"&&typeof NodeList<"u"&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(t){return ln(this,t)},HTMLElement.prototype.flatpickr=function(t){return ln([this],t)});var Ve=function(t,i){return typeof t=="string"?ln(window.document.querySelectorAll(t),i):t instanceof Node?ln([t],i):ln(t,i)};Ve.defaultConfig={},Ve.l10ns={en:Ge({},xn),default:Ge({},xn)},Ve.localize=function(t){Ve.l10ns.default=Ge(Ge({},Ve.l10ns.default),t)},Ve.setDefaults=function(t){Ve.defaultConfig=Ge(Ge({},Ve.defaultConfig),t)},Ve.parseDate=Qi({}),Ve.formatDate=Uo({}),Ve.compareDates=ct,typeof jQuery<"u"&&typeof jQuery.fn<"u"&&(jQuery.fn.flatpickr=function(t){return ln(this,t)}),Date.prototype.fp_incr=function(t){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+(typeof t=="string"?parseInt(t,10):t))},typeof window<"u"&&(window.flatpickr=Ve);var hi={exports:{}},ff=hi.exports,Go;function hf(){return Go||(Go=1,(function(t,i){(function(e,o){t.exports=o()})(ff,(function(){/*! *****************************************************************************
68
+ Copyright (c) Microsoft Corporation.
66
69
 
67
- Permission to use, copy, modify, and/or distribute this software for any
68
- purpose with or without fee is hereby granted.
70
+ Permission to use, copy, modify, and/or distribute this software for any
71
+ purpose with or without fee is hereby granted.
69
72
 
70
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
71
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
72
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
73
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
74
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
75
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
76
- PERFORMANCE OF THIS SOFTWARE.
77
- ***************************************************************************** */function e(){for(var a=0,i=0,s=arguments.length;i<s;i++)a+=arguments[i].length;for(var l=Array(a),u=0,i=0;i<s;i++)for(var d=arguments[i],p=0,f=d.length;p<f;p++,u++)l[u]=d[p];return l}function o(a){return a===void 0&&(a={}),function(i){var s="",l,u,d,p=function(){if(a.input){if(l=a.input instanceof Element?a.input:window.document.querySelector(a.input),!l){i.config.errorHandler(new Error("Invalid input element specified"));return}i.config.wrap&&(l=l.querySelector("[data-input]"))}else l=i._input.cloneNode(),l.removeAttribute("id"),l._flatpickr=void 0;if(l.value){var c=i.parseDate(l.value);c&&i.selectedDates.push(c)}l.setAttribute("data-fp-omit",""),i.config.clickOpens&&(i._bind(l,["focus","click"],function(){i.selectedDates[1]&&(i.latestSelectedDateObj=i.selectedDates[1],i._setHoursFromDate(i.selectedDates[1]),i.jumpToDate(i.selectedDates[1])),u=!0,i.isOpen=!1,i.open(void 0,a.position==="left"?i._input:l)}),i._bind(i._input,["focus","click"],function(h){h.preventDefault(),i.isOpen=!1,i.open()})),i.config.allowInput&&i._bind(l,"keydown",function(h){h.key==="Enter"&&(i.setDate([i.selectedDates[0],l.value],!0,s),l.click())}),a.input||i._input.parentNode&&i._input.parentNode.insertBefore(l,i._input.nextSibling)},f={onParseConfig:function(){i.config.mode="range",s=i.config.altInput?i.config.altFormat:i.config.dateFormat},onReady:function(){p(),i.config.ignoredFocusElements.push(l),i.config.allowInput?(i._input.removeAttribute("readonly"),l.removeAttribute("readonly")):l.setAttribute("readonly","readonly"),i._bind(i._input,"focus",function(){i.latestSelectedDateObj=i.selectedDates[0],i._setHoursFromDate(i.selectedDates[0]),u=!1,i.jumpToDate(i.selectedDates[0])}),i.config.allowInput&&i._bind(i._input,"keydown",function(c){c.key==="Enter"&&i.setDate([i._input.value,i.selectedDates[1]],!0,s)}),i.setDate(i.selectedDates,!1),f.onValueUpdate(i.selectedDates),i.loadedPlugins.push("range")},onPreCalendarPosition:function(){u&&(i._positionElement=l,setTimeout(function(){i._positionElement=i._input},0))},onChange:function(){i.selectedDates.length||setTimeout(function(){i.selectedDates.length||(l.value="",d=[])},10),u&&setTimeout(function(){l.focus()},0)},onDestroy:function(){a.input||l.parentNode&&l.parentNode.removeChild(l)},onValueUpdate:function(c){var h,v,m;if(l){if(d=!d||c.length>=d.length?e(c):d,d.length>c.length){var _=c[0],y=u?[d[0],_]:[_,d[1]];y[0].getTime()>y[1].getTime()&&(u?y[0]=y[1]:y[1]=y[0]),i.setDate(y,!1),d=e(y)}h=i.selectedDates.map(function(g){return i.formatDate(g,s)}),v=h[0],i._input.value=v===void 0?"":v,m=h[1],l.value=m===void 0?"":m}}};return f}}return o})})(jo);var qu=jo.exports;const Fu=Cn(qu),Hu=`
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
74
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
75
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
76
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
77
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
78
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
79
+ PERFORMANCE OF THIS SOFTWARE.
80
+ ***************************************************************************** */function e(){for(var a=0,r=0,d=arguments.length;r<d;r++)a+=arguments[r].length;for(var c=Array(a),p=0,r=0;r<d;r++)for(var s=arguments[r],h=0,f=s.length;h<f;h++,p++)c[p]=s[h];return c}function o(a){return a===void 0&&(a={}),function(r){var d="",c,p,s,h=function(){if(a.input){if(c=a.input instanceof Element?a.input:window.document.querySelector(a.input),!c){r.config.errorHandler(new Error("Invalid input element specified"));return}r.config.wrap&&(c=c.querySelector("[data-input]"))}else c=r._input.cloneNode(),c.removeAttribute("id"),c._flatpickr=void 0;if(c.value){var l=r.parseDate(c.value);l&&r.selectedDates.push(l)}c.setAttribute("data-fp-omit",""),r.config.clickOpens&&(r._bind(c,["focus","click"],function(){r.selectedDates[1]&&(r.latestSelectedDateObj=r.selectedDates[1],r._setHoursFromDate(r.selectedDates[1]),r.jumpToDate(r.selectedDates[1])),p=!0,r.isOpen=!1,r.open(void 0,a.position==="left"?r._input:c)}),r._bind(r._input,["focus","click"],function(u){u.preventDefault(),r.isOpen=!1,r.open()})),r.config.allowInput&&r._bind(c,"keydown",function(u){u.key==="Enter"&&(r.setDate([r.selectedDates[0],c.value],!0,d),c.click())}),a.input||r._input.parentNode&&r._input.parentNode.insertBefore(c,r._input.nextSibling)},f={onParseConfig:function(){r.config.mode="range",d=r.config.altInput?r.config.altFormat:r.config.dateFormat},onReady:function(){h(),r.config.ignoredFocusElements.push(c),r.config.allowInput?(r._input.removeAttribute("readonly"),c.removeAttribute("readonly")):c.setAttribute("readonly","readonly"),r._bind(r._input,"focus",function(){r.latestSelectedDateObj=r.selectedDates[0],r._setHoursFromDate(r.selectedDates[0]),p=!1,r.jumpToDate(r.selectedDates[0])}),r.config.allowInput&&r._bind(r._input,"keydown",function(l){l.key==="Enter"&&r.setDate([r._input.value,r.selectedDates[1]],!0,d)}),r.setDate(r.selectedDates,!1),f.onValueUpdate(r.selectedDates),r.loadedPlugins.push("range")},onPreCalendarPosition:function(){p&&(r._positionElement=c,setTimeout(function(){r._positionElement=r._input},0))},onChange:function(){r.selectedDates.length||setTimeout(function(){r.selectedDates.length||(c.value="",s=[])},10),p&&setTimeout(function(){c.focus()},0)},onDestroy:function(){a.input||c.parentNode&&c.parentNode.removeChild(c)},onValueUpdate:function(l){var u,_,g;if(c){if(s=!s||l.length>=s.length?e(l):s,s.length>l.length){var $=l[0],v=p?[s[0],$]:[$,s[1]];v[0].getTime()>v[1].getTime()&&(p?v[0]=v[1]:v[1]=v[0]),r.setDate(v,!1),s=e(v)}u=r.selectedDates.map(function(b){return r.formatDate(b,d)}),_=u[0],r._input.value=_===void 0?"":_,g=u[1],c.value=g===void 0?"":g}}};return f}}return o}))})(hi)),hi.exports}var pf=hf();const mf=En(pf),gf=`
78
81
  <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
79
82
  <path d="M10.25 3.5L5.75 8L10.25 12.5" stroke="#1A1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
80
83
  </svg>
81
- `,zu=`
84
+ `,yf=`
82
85
  <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
83
86
  <path d="M5.75 3.5L10.25 8L5.75 12.5" stroke="#1A1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
84
87
  </svg>
85
- `,Lp="",Uu="single",Jr="range",Ku={props:{name:{type:String,default:"Date"},modelValue:[String,Array],value:[String,Array],placeholder:{type:String,default:""},endDatePlaceholder:{type:String,default:""},required:{type:Boolean,default:!1},config:{type:Object,default:()=>{}},mode:{type:String,default:Uu},ariaLabel:{type:String,default:""},endDateAriaLabel:{type:String,default:""},label:{type:String,default:""},endDateLabel:{type:String,default:""},supportText:{type:String,default:""},endDateSupportText:{type:String,default:""},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1}},mounted(){document.addEventListener("keyup",this.onDocumentKeyDown,!0),this.$refs.inputsWrapper.addEventListener("keyup",this.backspaceHandler),this.$nextTick(()=>{this.initFlatpickr()})},watch:{config(){this.initFlatpickr()},value(){this.initFlatpickr()},disabled(){this.$nextTick(()=>{this.initFlatpickr()})},modelValue(){var n;if(JSON.stringify(this.modelValue)===JSON.stringify(this.data))return;let t;Array.isArray(this.modelValue)?t=this.modelValue[0]&&this.modelValue[1]?this.modelValue:[]:t=this.modelValue,(n=this.flat)==null||n.setDate(t,!0)}},data(){return{pickerOptions:{},data:this.modelValue,flat:null,isOpen:!1,isOpenEndDate:!1}},methods:{initFlatpickr(){this.flat=new Ve(this.$refs.date,this.pickerConfigs())},pickerConfigs(){var o,a;const t=document.querySelectorAll(".calendar-icon");let n={dateFormat:"Y-m-d",altInput:!0,altFormat:"Y-m-d",position:"left",mode:this.mode,appendTo:this.$refs.dropdown,prevArrow:Hu,nextArrow:zu,ignoredFocusElements:Array.from(t),locale:{weekdays:{shorthand:["S","M","T","W","T","F","S"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},onReady(i,s,l){l.setDate(s,!0)},onChange:(i,s)=>this.onChange(s),onClose:()=>this.onClose()};this.mode===Jr&&(n.plugins=[new Fu({input:this.$refs.toDate})]),(this.value||this.modelValue)&&(this.mode===Jr?n.defaultDate=this.modelValue.length?[this.modelValue[0],this.modelValue[1]]:[(o=this.value)==null?void 0:o[0],(a=this.value)==null?void 0:a[1]]:n.defaultDate=this.modelValue?this.modelValue:this.value);const e=Object.assign({},n,this.config);return this.pickerOptions=e,e},onClose(){this.triggerChange(),this.$nextTick(()=>{this.isOpen=!1,this.isOpenEndDate=!1,this.$emit("blur")})},onChange(t){this.mode===Jr?this.data=t.split(" to "):this.data=t},onDocumentKeyDown(t){t.keyCode===Lr&&this.onClose()},onKeydownEndField(t){t.key==="ArrowDown"&&this.flat.selectedDateElem.focus()},backspaceHandler(t){t.keyCode===bs&&(this.$emit("input",""),this.$emit("update:modelValue",""))},triggerChange(){setTimeout(()=>{if(this.pickerOptions.mode==="range"){let t=this.data;t.length<2?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",[t[0],t[1]]),this.$emit("update:modelValue",this.data))}else this.data===""?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",this.data),this.$emit("update:modelValue",this.data)),this.$emit("blur")})},open(){this.isOpen||(this.isOpen=!0,this.isOpenEndDate=!1,this.flat.open())},openEndDate(){this.isOpen=!1,this.isOpenEndDate=!0,this.$refs.toDate.click()}},computed:{values(){var t;return this.data?(t=this.data)==null?void 0:t.split(" to "):[]}},beforeUnmount(){document.removeEventListener("keyup",this.onDocumentKeyDown),this.$refs.inputsWrapper.removeEventListener("keyup",this.backspaceHandler)},components:{IbIcon:Le,IbLabel:kn,IbAlert:Ft},emits:["input","update:modelValue"]},Gu={ref:"inputsWrapper",class:"inputs-wrapper"},Wu={class:"input-group-wrapper"},Yu=["aria-label"],Zu=["placeholder","name","disabled"],Ju={ref:"dropdown",class:"dropdown"},Xu={key:1,class:"support-text"},Qu={key:0,class:"input-group-wrapper"},ef=["aria-label"],tf=["placeholder"],nf={key:1,class:"support-text"};function rf(t,n,e,o,a,i){const s=r.resolveComponent("ib-alert"),l=r.resolveComponent("ib-label"),u=r.resolveComponent("ib-icon");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["ib-flatpickr-wrapper",{"has-labels":e.label.length||e.endDateLabel.length,"has-label":e.label.length,"has-error":e.errorMessage.length,"is-disabled":e.disabled,"is-range":e.mode==="range"}])},[e.errorMessage.length?(r.openBlock(),r.createBlock(s,{key:0,class:"error-message"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.createElementVNode("div",Gu,[r.createElementVNode("div",Wu,[e.label.length?(r.openBlock(),r.createBlock(l,{key:0,class:"label",required:e.required},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.label),1)]),_:1},8,["required"])):r.createCommentVNode("",!0),r.createElementVNode("div",{class:r.normalizeClass(["input-wrapper",{active:a.isOpen}]),onClick:n[0]||(n[0]=(...d)=>i.open&&i.open(...d))},[r.createElementVNode("label",{"aria-label":e.ariaLabel},[r.createElementVNode("input",{placeholder:e.placeholder,name:e.name,ref:"date",id:"date",disabled:e.disabled,class:"date-picker-input"},null,8,Zu)],8,Yu),r.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),r.createElementVNode("div",Ju,null,512),e.supportText.length?(r.openBlock(),r.createElementBlock("p",Xu,r.toDisplayString(e.supportText),1)):r.createCommentVNode("",!0)]),e.mode==="range"?(r.openBlock(),r.createElementBlock("div",Qu,[e.endDateLabel.length?(r.openBlock(),r.createBlock(l,{key:0,class:"end-date-label label",required:e.required},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.endDateLabel),1)]),_:1},8,["required"])):r.createCommentVNode("",!0),r.createElementVNode("div",{class:r.normalizeClass(["input-wrapper",{active:a.isOpenEndDate}]),onClick:n[2]||(n[2]=(...d)=>i.openEndDate&&i.openEndDate(...d))},[r.createElementVNode("label",{"aria-label":e.endDateAriaLabel},[r.createElementVNode("input",{class:"date-picker-input",placeholder:e.endDatePlaceholder,ref:"toDate",onKeydown:n[1]||(n[1]=(...d)=>i.onKeydownEndField&&i.onKeydownEndField(...d))},null,40,tf)],8,ef),r.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),e.endDateSupportText.length?(r.openBlock(),r.createElementBlock("p",nf,r.toDisplayString(e.endDateSupportText),1)):r.createCommentVNode("",!0)])):r.createCommentVNode("",!0)],512)],2)}const of=_e(Ku,[["render",rf]]),af=[["Afghanistan (‫افغانستان‬‎)","af","93"],["Albania (Shqipëri)","al","355"],["Algeria (‫الجزائر‬‎)","dz","213"],["American Samoa","as","1",5,["684"]],["Andorra","ad","376"],["Angola","ao","244"],["Anguilla","ai","1",6,["264"]],["Antigua and Barbuda","ag","1",7,["268"]],["Argentina","ar","54"],["Armenia (Հայաստան)","am","374"],["Aruba","aw","297"],["Ascension Island","ac","247"],["Australia","au","61",0],["Austria (Österreich)","at","43"],["Azerbaijan (Azərbaycan)","az","994"],["Bahamas","bs","1",8,["242"]],["Bahrain (‫البحرين‬‎)","bh","973"],["Bangladesh (বাংলাদেশ)","bd","880"],["Barbados","bb","1",9,["246"]],["Belarus (Беларусь)","by","375"],["Belgium (België)","be","32"],["Belize","bz","501"],["Benin (Bénin)","bj","229"],["Bermuda","bm","1",10,["441"]],["Bhutan (འབྲུག)","bt","975"],["Bolivia","bo","591"],["Bosnia and Herzegovina (Босна и Херцеговина)","ba","387"],["Botswana","bw","267"],["Brazil (Brasil)","br","55"],["British Indian Ocean Territory","io","246"],["British Virgin Islands","vg","1",11,["284"]],["Brunei","bn","673"],["Bulgaria (България)","bg","359"],["Burkina Faso","bf","226"],["Burundi (Uburundi)","bi","257"],["Cambodia (កម្ពុជា)","kh","855"],["Cameroon (Cameroun)","cm","237"],["Canada","ca","1",1,["204","226","236","249","250","263","289","306","343","354","365","367","368","382","387","403","416","418","428","431","437","438","450","584","468","474","506","514","519","548","579","581","584","587","604","613","639","647","672","683","705","709","742","753","778","780","782","807","819","825","867","873","902","905"]],["Cape Verde (Kabu Verdi)","cv","238"],["Caribbean Netherlands","bq","599",1,["3","4","7"]],["Cayman Islands","ky","1",12,["345"]],["Central African Republic (République centrafricaine)","cf","236"],["Chad (Tchad)","td","235"],["Chile","cl","56"],["China (中国)","cn","86"],["Christmas Island","cx","61",2,["89164"]],["Cocos (Keeling) Islands","cc","61",1,["89162"]],["Colombia","co","57"],["Comoros (‫جزر القمر‬‎)","km","269"],["Congo (DRC) (République démocratique du Congo)","cd","243"],["Congo (Republic) (Congo-Brazzaville)","cg","242"],["Cook Islands","ck","682"],["Costa Rica","cr","506"],["Côte d’Ivoire","ci","225"],["Croatia (Hrvatska)","hr","385"],["Cuba","cu","53"],["Curaçao","cw","599",0],["Cyprus (Κύπρος)","cy","357"],["Czech Republic (Česká republika)","cz","420"],["Denmark (Danmark)","dk","45"],["Djibouti","dj","253"],["Dominica","dm","1",13,["767"]],["Dominican Republic (República Dominicana)","do","1",2,["809","829","849"]],["Ecuador","ec","593"],["Egypt (‫مصر‬‎)","eg","20"],["El Salvador","sv","503"],["Equatorial Guinea (Guinea Ecuatorial)","gq","240"],["Eritrea","er","291"],["Estonia (Eesti)","ee","372"],["Eswatini","sz","268"],["Ethiopia","et","251"],["Falkland Islands (Islas Malvinas)","fk","500"],["Faroe Islands (Føroyar)","fo","298"],["Fiji","fj","679"],["Finland (Suomi)","fi","358",0],["France","fr","33"],["French Guiana (Guyane française)","gf","594"],["French Polynesia (Polynésie française)","pf","689"],["Gabon","ga","241"],["Gambia","gm","220"],["Georgia (საქართველო)","ge","995"],["Germany (Deutschland)","de","49"],["Ghana (Gaana)","gh","233"],["Gibraltar","gi","350"],["Greece (Ελλάδα)","gr","30"],["Greenland (Kalaallit Nunaat)","gl","299"],["Grenada","gd","1",14,["473"]],["Guadeloupe","gp","590",0],["Guam","gu","1",15,["671"]],["Guatemala","gt","502"],["Guernsey","gg","44",1,["1481","7781","7839","7911"]],["Guinea (Guinée)","gn","224"],["Guinea-Bissau (Guiné Bissau)","gw","245"],["Guyana","gy","592"],["Haiti","ht","509"],["Honduras","hn","504"],["Hong Kong (香港)","hk","852"],["Hungary (Magyarország)","hu","36"],["Iceland (Ísland)","is","354"],["India (भारत)","in","91"],["Indonesia","id","62"],["Iran (‫ایران‬‎)","ir","98"],["Iraq (‫العراق‬‎)","iq","964"],["Ireland","ie","353"],["Isle of Man","im","44",2,["1624","74576","7524","7924","7624"]],["Israel (‫ישראל‬‎)","il","972"],["Italy (Italia)","it","39",0],["Jamaica","jm","1",4,["876","658"]],["Japan (日本)","jp","81"],["Jersey","je","44",3,["1534","7509","7700","7797","7829","7937"]],["Jordan (‫الأردن‬‎)","jo","962"],["Kazakhstan (Казахстан)","kz","7",1,["33","7"]],["Kenya","ke","254"],["Kiribati","ki","686"],["Kosovo","xk","383"],["Kuwait (‫الكويت‬‎)","kw","965"],["Kyrgyzstan (Кыргызстан)","kg","996"],["Laos (ລາວ)","la","856"],["Latvia (Latvija)","lv","371"],["Lebanon (‫لبنان‬‎)","lb","961"],["Lesotho","ls","266"],["Liberia","lr","231"],["Libya (‫ليبيا‬‎)","ly","218"],["Liechtenstein","li","423"],["Lithuania (Lietuva)","lt","370"],["Luxembourg","lu","352"],["Macau (澳門)","mo","853"],["Madagascar (Madagasikara)","mg","261"],["Malawi","mw","265"],["Malaysia","my","60"],["Maldives","mv","960"],["Mali","ml","223"],["Malta","mt","356"],["Marshall Islands","mh","692"],["Martinique","mq","596"],["Mauritania (‫موريتانيا‬‎)","mr","222"],["Mauritius (Moris)","mu","230"],["Mayotte","yt","262",1,["269","639"]],["Mexico (México)","mx","52"],["Micronesia","fm","691"],["Moldova (Republica Moldova)","md","373"],["Monaco","mc","377"],["Mongolia (Монгол)","mn","976"],["Montenegro (Crna Gora)","me","382"],["Montserrat","ms","1",16,["664"]],["Morocco (‫المغرب‬‎)","ma","212",0],["Mozambique (Moçambique)","mz","258"],["Myanmar (Burma) (မြန်မာ)","mm","95"],["Namibia (Namibië)","na","264"],["Nauru","nr","674"],["Nepal (नेपाल)","np","977"],["Netherlands (Nederland)","nl","31"],["New Caledonia (Nouvelle-Calédonie)","nc","687"],["New Zealand","nz","64"],["Nicaragua","ni","505"],["Niger (Nijar)","ne","227"],["Nigeria","ng","234"],["Niue","nu","683"],["Norfolk Island","nf","672"],["North Korea (조선 민주주의 인민 공화국)","kp","850"],["North Macedonia (Северна Македонија)","mk","389"],["Northern Mariana Islands","mp","1",17,["670"]],["Norway (Norge)","no","47",0],["Oman (‫عُمان‬‎)","om","968"],["Pakistan (‫پاکستان‬‎)","pk","92"],["Palau","pw","680"],["Palestine (‫فلسطين‬‎)","ps","970"],["Panama (Panamá)","pa","507"],["Papua New Guinea","pg","675"],["Paraguay","py","595"],["Peru (Perú)","pe","51"],["Philippines","ph","63"],["Poland (Polska)","pl","48"],["Portugal","pt","351"],["Puerto Rico","pr","1",3,["787","939"]],["Qatar (‫قطر‬‎)","qa","974"],["Réunion (La Réunion)","re","262",0],["Romania (România)","ro","40"],["Russia (Россия)","ru","7",0],["Rwanda","rw","250"],["Saint Barthélemy","bl","590",1],["Saint Helena","sh","290"],["Saint Kitts and Nevis","kn","1",18,["869"]],["Saint Lucia","lc","1",19,["758"]],["Saint Martin (Saint-Martin (partie française))","mf","590",2],["Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)","pm","508"],["Saint Vincent and the Grenadines","vc","1",20,["784"]],["Samoa","ws","685"],["San Marino","sm","378"],["São Tomé and Príncipe (São Tomé e Príncipe)","st","239"],["Saudi Arabia (‫المملكة العربية السعودية‬‎)","sa","966"],["Senegal (Sénégal)","sn","221"],["Serbia (Србија)","rs","381"],["Seychelles","sc","248"],["Sierra Leone","sl","232"],["Singapore","sg","65"],["Sint Maarten","sx","1",21,["721"]],["Slovakia (Slovensko)","sk","421"],["Slovenia (Slovenija)","si","386"],["Solomon Islands","sb","677"],["Somalia (Soomaaliya)","so","252"],["South Africa","za","27"],["South Korea (대한민국)","kr","82"],["South Sudan (‫جنوب السودان‬‎)","ss","211"],["Spain (España)","es","34"],["Sri Lanka (ශ්‍රී ලංකාව)","lk","94"],["Sudan (‫السودان‬‎)","sd","249"],["Suriname","sr","597"],["Svalbard and Jan Mayen","sj","47",1,["79"]],["Sweden (Sverige)","se","46"],["Switzerland (Schweiz)","ch","41"],["Syria (‫سوريا‬‎)","sy","963"],["Taiwan (台灣)","tw","886"],["Tajikistan","tj","992"],["Tanzania","tz","255"],["Thailand (ไทย)","th","66"],["Timor-Leste","tl","670"],["Togo","tg","228"],["Tokelau","tk","690"],["Tonga","to","676"],["Trinidad and Tobago","tt","1",22,["868"]],["Tunisia (‫تونس‬‎)","tn","216"],["Turkey (Türkiye)","tr","90"],["Turkmenistan","tm","993"],["Turks and Caicos Islands","tc","1",23,["649"]],["Tuvalu","tv","688"],["U.S. Virgin Islands","vi","1",24,["340"]],["Uganda","ug","256"],["Ukraine (Україна)","ua","380"],["United Arab Emirates (‫الإمارات العربية المتحدة‬‎)","ae","971"],["United Kingdom","gb","44",0],["United States","us","1",0],["Uruguay","uy","598"],["Uzbekistan (Oʻzbekiston)","uz","998"],["Vanuatu","vu","678"],["Vatican City (Città del Vaticano)","va","39",1,["06698"]],["Venezuela","ve","58"],["Vietnam (Việt Nam)","vn","84"],["Wallis and Futuna (Wallis-et-Futuna)","wf","681"],["Western Sahara (‫الصحراء الغربية‬‎)","eh","212",1,["5288","5289"]],["Yemen (‫اليمن‬‎)","ye","967"],["Zambia","zm","260"],["Zimbabwe","zw","263"],["Åland Islands","ax","358",1,["18"]]],lf=af.map(([t,n,e,o=0,a=null])=>({name:t,iso2:n.toUpperCase(),dialCode:e,priority:o,areaCodes:a}));function sf(){return fetch("https://ip2c.org/s").then(t=>t.text()).then(t=>{const n=(t||"").toString();if(!n||n[0]!=="1")throw new Error("unable to fetch the country");return n.substr(2,2)})}function cf(t,n){if(t.setSelectionRange)t.focus(),t.setSelectionRange(n,n);else if("createTextRange"in t&&typeof t.createTextRange=="function"){const e=t.createTextRange();e.collapse(!0),e.moveEnd("character",n),e.moveStart("character",n),e.select()}}const df=[{name:"allCountries",type:Array,default:lf,description:"All countries that are used in <code>libphonenumber-js</code>, can be overridden by this prop",inDemo:!1},{name:"autoFormat",type:Boolean,default:!0,description:"Auto update the input to the formatted phone number when it's valid",inDemo:!0},{name:"customValidate",type:[Boolean,RegExp],default:!1,description:"Custom validation RegExp for input",inDemo:!1},{name:"defaultCountry",default:"",type:[String,Number],description:"Default country (by iso2 or dialCode), will override the country fetched from IP address of user",inDemo:!1},{name:"disabled",default:!1,type:Boolean,description:"Disable <code>vue-tel-input</code>, including the input & flag dropdown",inDemo:!1},{name:"autoDefaultCountry",default:!0,type:Boolean,description:"To fetch default country based on IP address of user",inDemo:!1},{name:"dropdownOptions",type:Object,description:"Options for dropdown, see below",inDemo:!1},{name:"dropdownOptions.disabled",default:!1,type:Boolean,description:"Disable dropdown",inDemo:!1},{name:"dropdownOptions.showDialCodeInList",default:!0,type:Boolean,description:"Show dial code in the dropdown list",inDemo:!0},{name:"dropdownOptions.showDialCodeInSelection",default:!1,type:Boolean,description:"Show dial code in the dropdown selection",inDemo:!0},{name:"dropdownOptions.showFlags",default:!0,type:Boolean,description:"Show flags in the dropdown selection and list",inDemo:!0},{name:"dropdownOptions.showSearchBox",default:!1,type:Boolean,description:"Show country search box",inDemo:!0},{name:"dropdownOptions.searchBoxPlaceholder",default:"",type:String,description:"Placeholder for the search box",inDemo:!1},{name:"dropdownOptions.tabindex",default:0,type:Number,description:"Native dropdown <code>tabindex</code> attribute",inDemo:!1},{name:"ignoredCountries",default:[],type:Array,description:"List of countries will NOT be shown on the dropdown",inDemo:!1},{name:"inputOptions",type:Object,description:"Options for input, see below",inDemo:!1},{name:"inputOptions.autocomplete",type:String,default:"on",description:"Native input <code>autocomplete</code> attribute",inDemo:!1},{name:"inputOptions.autofocus",type:Boolean,default:!1,description:"Native input <code>autofocus</code> attribute",inDemo:!1},{name:"inputOptions.aria-describedby",default:"",type:String,description:"Native input <code>aria-describedby</code> attribute",inDemo:!1},{name:"inputOptions.id",default:"",type:String,description:"Native input <code>id</code> attribute",inDemo:!1},{name:"inputOptions.maxlength",default:25,type:Number,description:"Native input <code>maxlength</code> attribute",inDemo:!1},{name:"inputOptions.name",default:"telephone",type:String,description:"Native input <code>name</code> attribute",inDemo:!1},{name:"inputOptions.showDialCode",default:!1,type:Boolean,description:"Show dial code in input",inDemo:!1},{name:"inputOptions.placeholder",default:"Enter a phone number",type:String,description:"Placeholder for the input",inDemo:!1},{name:"inputOptions.readonly",default:!1,type:Boolean,description:"Native input <code>readonly</code> attribute",inDemo:!1},{name:"inputOptions.required",default:!1,type:Boolean,description:"Native input <code>required</code> attribute",inDemo:!1},{name:"inputOptions.tabindex",default:0,type:Number,description:"Native input <code>tabindex</code> attribute",inDemo:!1},{name:"inputOptions.type",default:"tel",type:String,description:"Native input <code>type</code> attribute",inDemo:!1},{name:"inputOptions.styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the <code>input</code>",inDemo:!1},{name:"invalidMsg",default:"",type:String,description:"",inDemo:!1},{name:"mode",default:"auto",type:String,description:"Allowed values: <code>'auto'</code> (Default set by phone), <code>'international'</code> (Format number with the dial code i.e. + 61), <code>'national'</code> (Format number without dial code i.e. 0321232)",inDemo:!0,options:["auto","national","international"]},{name:"onlyCountries",default:[],type:Array,description:"List of countries will be shown on the dropdown",inDemo:!1},{name:"preferredCountries",default:[],type:Array,description:"Preferred countries list, will be on top of the dropdown",inDemo:!1},{name:"styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the wrapper",inDemo:!1},{name:"validCharactersOnly",default:!1,type:Boolean,description:"Only allow valid characters in a phone number (will also verify in <code>mounted</code>, so phone number with invalid characters will be shown as an empty string)",inDemo:!1}],uf=[...df].reduce((t,n)=>{if(n.name.includes(".")){const[e,o]=n.name.split(".");t[e]?Object.assign(t[e],{[o]:n.default}):Object.assign(t,{[e]:{[o]:n.default}})}else Object.assign(t,{[n.name]:n.default});return t},{}),Vo={options:{...uf}};function tt(t){const n=Vo.options[t];return typeof n>"u"?Vo.options[t]:n}function xn(t){return t==null?void 0:t.toLowerCase()}function Tn(t){return t==null?void 0:t.toUpperCase()}const ff={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])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|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]))|(?: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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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]|22"],"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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|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|73)|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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\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{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"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],[["(\\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[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"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","[27]\\d{6,7}|[34]\\d{5,7}|63\\d{6}|(?:5|8\\d\\d)\\d{7}",[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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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],[["(\\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{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"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)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"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[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-79])|(?:(?: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-2]))|(?: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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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",["[67]"],"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-5]"],"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]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\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})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\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]"]],["(\\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}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[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]],0,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[7-9]))\\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",["60|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[013-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","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"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]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",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-489]|3[5-9]|9)|8(?:0[89]|92)","5(?:2(?:[2-49]|8[235-9])|3[5-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-2]|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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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]","1(?:(?:[27]2|44|87|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-69]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",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[047]"]]]],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","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"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-6])"],"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[27]|3[0-37]))\\d{4}"],["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\d|62|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]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\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],[["(\\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-8]|[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}|[89]00\\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|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],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[1-5]"]],["(\\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{7}",[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",["6"],"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,[["(?:5056(?:[0-35-9]\\d|4[468])|73020\\d)\\d{4}|(?:4722|505[2-57-9]|983[289])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[0149]|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]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|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}"]]],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","810","(?:20|33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],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],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","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\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",["[23]"],"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]|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,0,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}"]]]}};function hf(t,n){var e=Array.prototype.slice.call(n);return e.push(ff),t.apply(this,e)}function Xr(t){"@babel/helpers - typeof";return Xr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},Xr(t)}function qo(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function pf(t,n,e){return n&&qo(t.prototype,n),e&&qo(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function mf(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function gf(t,n){if(typeof n!="function"&&n!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),n&&Nn(t,n)}function yf(t){var n=Ho();return function(){var e=An(t),o;if(n){var a=An(this).constructor;o=Reflect.construct(e,arguments,a)}else o=e.apply(this,arguments);return bf(this,o)}}function bf(t,n){if(n&&(Xr(n)==="object"||typeof n=="function"))return n;if(n!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Fo(t)}function Fo(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Qr(t){var n=typeof Map=="function"?new Map:void 0;return Qr=function(e){if(e===null||!vf(e))return e;if(typeof e!="function")throw new TypeError("Super expression must either be null or a function");if(typeof n<"u"){if(n.has(e))return n.get(e);n.set(e,o)}function o(){return cr(e,arguments,An(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),Nn(o,e)},Qr(t)}function cr(t,n,e){return Ho()?cr=Reflect.construct:cr=function(o,a,i){var s=[null];s.push.apply(s,a);var l=Function.bind.apply(o,s),u=new l;return i&&Nn(u,i.prototype),u},cr.apply(null,arguments)}function Ho(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function vf(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Nn(t,n){return Nn=Object.setPrototypeOf||function(e,o){return e.__proto__=o,e},Nn(t,n)}function An(t){return An=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},An(t)}var At=function(t){gf(e,t);var n=yf(e);function e(o){var a;return mf(this,e),a=n.call(this,o),Object.setPrototypeOf(Fo(a),e.prototype),a.name=a.constructor.name,a}return pf(e)}(Qr(Error)),ei=2,_f=17,$f=3,yt="0-90-9٠-٩۰-۹",wf="-‐-―−ー-",kf="//",Cf="..",Of="  ­​⁠ ",Ef="()()[]\\[\\]",Sf="~⁓∼~",dr="".concat(wf).concat(kf).concat(Cf).concat(Of).concat(Ef).concat(Sf),ti="++";function zo(t,n){t=t.split("-"),n=n.split("-");for(var e=t[0].split("."),o=n[0].split("."),a=0;a<3;a++){var i=Number(e[a]),s=Number(o[a]);if(i>s)return 1;if(s>i)return-1;if(!isNaN(i)&&isNaN(s))return 1;if(isNaN(i)&&!isNaN(s))return-1}return t[1]&&n[1]?t[1]>n[1]?1:t[1]<n[1]?-1:0:!t[1]&&n[1]?1:t[1]&&!n[1]?-1:0}var xf={}.constructor;function ur(t){return t!=null&&t.constructor===xf}function ni(t){"@babel/helpers - typeof";return ni=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},ni(t)}function fr(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function Uo(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function hr(t,n,e){return n&&Uo(t.prototype,n),e&&Uo(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}var Tf="1.2.0",Nf="1.7.35",Ko=" ext. ",Af=/^\d+$/,nt=function(){function t(n){fr(this,t),Bf(n),this.metadata=n,Yo.call(this,n)}return hr(t,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter(function(n){return n!=="001"})}},{key:"getCountryMetadata",value:function(n){return this.metadata.countries[n]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(n){return this.getCountryMetadata(n)!==void 0}},{key:"hasCallingCode",value:function(n){if(this.getCountryCodesForCallingCode(n))return!0;if(this.nonGeographic()){if(this.nonGeographic()[n])return!0}else{var e=this.countryCallingCodes()[n];if(e&&e.length===1&&e[0]==="001")return!0}}},{key:"isNonGeographicCallingCode",value:function(n){return this.nonGeographic()?!!this.nonGeographic()[n]:!this.getCountryCodesForCallingCode(n)}},{key:"country",value:function(n){return this.selectNumberingPlan(n)}},{key:"selectNumberingPlan",value:function(n,e){if(n&&Af.test(n)&&(e=n,n=null),n&&n!=="001"){if(!this.hasCountry(n))throw new Error("Unknown country: ".concat(n));this.numberingPlan=new Go(this.getCountryMetadata(n),this)}else if(e){if(!this.hasCallingCode(e))throw new Error("Unknown calling code: ".concat(e));this.numberingPlan=new Go(this.getNumberingPlanMetadata(e),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(n){var e=this.countryCallingCodes()[n];if(e)return e.length===1&&e[0].length===3?void 0:e}},{key:"getCountryCodeForCallingCode",value:function(n){var e=this.getCountryCodesForCallingCode(n);if(e)return e[0]}},{key:"getNumberingPlanMetadata",value:function(n){var e=this.getCountryCodeForCallingCode(n);if(e)return this.getCountryMetadata(e);if(this.nonGeographic()){var o=this.nonGeographic()[n];if(o)return o}else{var a=this.countryCallingCodes()[n];if(a&&a.length===1&&a[0]==="001")return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(n){return this.numberingPlan.type(n)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(n){return this.selectNumberingPlan(n)}},{key:"hasSelectedNumberingPlan",value:function(){return this.numberingPlan!==void 0}}]),t}(),Go=function(){function t(n,e){fr(this,t),this.globalMetadataObject=e,this.metadata=n,Yo.call(this,e.metadata)}return hr(t,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(n){return n[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var n=this,e=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return e.map(function(o){return new Df(o,n)})}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(n){return n[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return this.types()&&this.types().length===0?!1:!!this.types()}},{key:"type",value:function(n){if(this.hasTypes()&&Wo(this.types(),n))return new If(Wo(this.types(),n),this)}},{key:"ext",value:function(){return this.v1||this.v2?Ko:this.metadata[13]||Ko}}]),t}(),Df=function(){function t(n,e){fr(this,t),this._format=n,this.metadata=e}return hr(t,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!!(this.nationalPrefixFormattingRule()&&!Pf.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),t}(),Pf=/^\(?\$1\)?$/,If=function(){function t(n,e){fr(this,t),this.type=n,this.metadata=e}return hr(t,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),t}();function Wo(t,n){switch(n){case"FIXED_LINE":return t[0];case"MOBILE":return t[1];case"TOLL_FREE":return t[2];case"PREMIUM_RATE":return t[3];case"PERSONAL_NUMBER":return t[4];case"VOICEMAIL":return t[5];case"UAN":return t[6];case"PAGER":return t[7];case"VOIP":return t[8];case"SHARED_COST":return t[9]}}function Bf(t){if(!t)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!ur(t)||!ur(t.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(ur(t)?"an object of shape: { "+Object.keys(t).join(", ")+" }":"a "+Mf(t)+": "+t,"."))}var Mf=function(t){return ni(t)};function ri(t,n){if(n=new nt(n),n.hasCountry(t))return n.country(t).countryCallingCode();throw new Error("Unknown country: ".concat(t))}function Lf(t,n){return n.countries.hasOwnProperty(t)}function Yo(t){var n=t.version;typeof n=="number"?(this.v1=n===1,this.v2=n===2,this.v3=n===3,this.v4=n===4):n?zo(n,Tf)===-1?this.v2=!0:zo(n,Nf)===-1?this.v3=!0:this.v4=!0:this.v1=!0}var Rf=";ext=",un=function(t){return"([".concat(yt,"]{1,").concat(t,"})")};function Zo(t){var n="20",e="15",o="9",a="6",i="[  \\t,]*",s="[:\\..]?[  \\t,-]*",l="#?",u="(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)",d="(?:[xx##~~]|int|int)",p="[- ]+",f="[  \\t]*",c="(?:,{2}|;)",h=Rf+un(n),v=i+u+s+un(n)+l,m=i+d+s+un(o)+l,_=p+un(a)+"#",y=f+c+s+un(e)+l,g=f+"(?:,)+"+s+un(o)+l;return h+"|"+v+"|"+m+"|"+_+"|"+y+"|"+g}var jf="["+yt+"]{"+ei+"}",Vf="["+ti+"]{0,1}(?:["+dr+"]*["+yt+"]){3,}["+dr+yt+"]*",qf=new RegExp("^["+ti+"]{0,1}(?:["+dr+"]*["+yt+"]){1,2}$","i"),Ff=Vf+"(?:"+Zo()+")?",Hf=new RegExp("^"+jf+"$|^"+Ff+"$","i");function zf(t){return t.length>=ei&&Hf.test(t)}function Uf(t){return qf.test(t)}var Jo=new RegExp("(?:"+Zo()+")$","i");function Kf(t){var n=t.search(Jo);if(n<0)return{};for(var e=t.slice(0,n),o=t.match(Jo),a=1;a<o.length;){if(o[a])return{number:e,ext:o[a]};a++}}var Gf={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function Wf(t){return Gf[t]}function Yf(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Zf(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
86
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Zf(t,n){if(t){if(typeof t=="string")return Xo(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return Xo(t,n)}}function Xo(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function Qo(t){for(var n="",e=Yf(t.split("")),o;!(o=e()).done;){var a=o.value;n+=Jf(a,n)||""}return n}function Jf(t,n){return t==="+"?n?void 0:"+":Wf(t)}function Xf(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Qf(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
87
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Qf(t,n){if(t){if(typeof t=="string")return ea(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ea(t,n)}}function ea(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function eh(t,n){for(var e=t.slice(),o=Xf(n),a;!(a=o()).done;){var i=a.value;t.indexOf(i)<0&&e.push(i)}return e.sort(function(s,l){return s-l})}function ii(t,n){return ta(t,void 0,n)}function ta(t,n,e){var o=e.type(n),a=o&&o.possibleLengths()||e.possibleLengths();if(!a)return"IS_POSSIBLE";if(n==="FIXED_LINE_OR_MOBILE"){if(!e.type("FIXED_LINE"))return ta(t,"MOBILE",e);var i=e.type("MOBILE");i&&(a=eh(a,i.possibleLengths()))}else if(n&&!o)return"INVALID_LENGTH";var s=t.length,l=a[0];return l===s?"IS_POSSIBLE":l>s?"TOO_SHORT":a[a.length-1]<s?"TOO_LONG":a.indexOf(s,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function th(t,n,e){if(n===void 0&&(n={}),e=new nt(e),n.v2){if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}else{if(!t.phone)return!1;if(t.country){if(!e.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));e.country(t.country)}else{if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}}if(e.possibleLengths())return na(t.phone||t.nationalNumber,e);if(t.countryCallingCode&&e.isNonGeographicCallingCode(t.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}function na(t,n){switch(ii(t,n)){case"IS_POSSIBLE":return!0;default:return!1}}function Dt(t,n){return t=t||"",new RegExp("^(?:"+n+")$").test(t)}function nh(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=rh(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
88
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rh(t,n){if(t){if(typeof t=="string")return ra(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ra(t,n)}}function ra(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var ih=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function oi(t,n,e){if(n=n||{},!(!t.country&&!t.countryCallingCode)){e=new nt(e),e.selectNumberingPlan(t.country,t.countryCallingCode);var o=n.v2?t.nationalNumber:t.phone;if(Dt(o,e.nationalNumberPattern())){if(ai(o,"FIXED_LINE",e))return e.type("MOBILE")&&e.type("MOBILE").pattern()===""||!e.type("MOBILE")||ai(o,"MOBILE",e)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE";for(var a=nh(ih),i;!(i=a()).done;){var s=i.value;if(ai(o,s,e))return s}}}}function ai(t,n,e){return n=e.type(n),!n||!n.pattern()||n.possibleLengths()&&n.possibleLengths().indexOf(t.length)<0?!1:Dt(t,n.pattern())}function oh(t,n,e){if(n=n||{},e=new nt(e),e.selectNumberingPlan(t.country,t.countryCallingCode),e.hasTypes())return oi(t,n,e.metadata)!==void 0;var o=n.v2?t.nationalNumber:t.phone;return Dt(o,e.nationalNumberPattern())}function ah(t,n,e){var o=new nt(e),a=o.getCountryCodesForCallingCode(t);return a?a.filter(function(i){return lh(n,i,e)}):[]}function lh(t,n,e){var o=new nt(e);return o.selectNumberingPlan(n),o.numberingPlan.possibleLengths().indexOf(t.length)>=0}function sh(t){return t.replace(new RegExp("[".concat(dr,"]+"),"g")," ").trim()}var ch=/(\$\d)/;function dh(t,n,e){var o=e.useInternationalFormat,a=e.withNationalPrefix;e.carrierCode,e.metadata;var i=t.replace(new RegExp(n.pattern()),o?n.internationalFormat():a&&n.nationalPrefixFormattingRule()?n.format().replace(ch,n.nationalPrefixFormattingRule()):n.format());return o?sh(i):i}var uh=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function fh(t,n,e){var o=new nt(e);if(o.selectNumberingPlan(t,n),o.defaultIDDPrefix())return o.defaultIDDPrefix();if(uh.test(o.IDDPrefix()))return o.IDDPrefix()}function hh(t){var n=t.number,e=t.ext;if(!n)return"";if(n[0]!=="+")throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(n).concat(e?";ext="+e:"")}function ph(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=mh(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
89
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function mh(t,n){if(t){if(typeof t=="string")return ia(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ia(t,n)}}function ia(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function oa(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function aa(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?oa(Object(e),!0).forEach(function(o){gh(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):oa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function gh(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}var la={formatExtension:function(t,n,e){return"".concat(t).concat(e.ext()).concat(n)}};function yh(t,n,e,o){if(e?e=aa(aa({},la),e):e=la,o=new nt(o),t.country&&t.country!=="001"){if(!o.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));o.country(t.country)}else if(t.countryCallingCode)o.selectNumberingPlan(t.countryCallingCode);else return t.phone||"";var a=o.countryCallingCode(),i=e.v2?t.nationalNumber:t.phone,s;switch(n){case"NATIONAL":return i?(s=pr(i,t.carrierCode,"NATIONAL",o,e),li(s,t.ext,o,e.formatExtension)):"";case"INTERNATIONAL":return i?(s=pr(i,null,"INTERNATIONAL",o,e),s="+".concat(a," ").concat(s),li(s,t.ext,o,e.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(i);case"RFC3966":return hh({number:"+".concat(a).concat(i),ext:t.ext});case"IDD":if(!e.fromCountry)return;var l=vh(i,t.carrierCode,a,e.fromCountry,o);return li(l,t.ext,o,e.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(n,'"'))}}function pr(t,n,e,o,a){var i=bh(o.formats(),t);return i?dh(t,i,{useInternationalFormat:e==="INTERNATIONAL",withNationalPrefix:!(i.nationalPrefixIsOptionalWhenFormattingInNationalFormat()&&a&&a.nationalPrefix===!1),carrierCode:n,metadata:o}):t}function bh(t,n){for(var e=ph(t),o;!(o=e()).done;){var a=o.value;if(a.leadingDigitsPatterns().length>0){var i=a.leadingDigitsPatterns()[a.leadingDigitsPatterns().length-1];if(n.search(i)!==0)continue}if(Dt(n,a.pattern()))return a}}function li(t,n,e,o){return n?o(t,n,e):t}function vh(t,n,e,o,a){var i=ri(o,a.metadata);if(i===e){var s=pr(t,n,"NATIONAL",a);return e==="1"?e+" "+s:s}var l=fh(o,void 0,a.metadata);if(l)return"".concat(l," ").concat(e," ").concat(pr(t,null,"INTERNATIONAL",a))}function sa(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ca(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?sa(Object(e),!0).forEach(function(o){_h(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):sa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function _h(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function $h(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function da(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function wh(t,n,e){return n&&da(t.prototype,n),e&&da(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}var kh=function(){function t(n,e,o){if($h(this,t),!n)throw new TypeError("`country` or `countryCallingCode` not passed");if(!e)throw new TypeError("`nationalNumber` not passed");if(!o)throw new TypeError("`metadata` not passed");var a=Oh(n,o),i=a.country,s=a.countryCallingCode;this.country=i,this.countryCallingCode=s,this.nationalNumber=e,this.number="+"+this.countryCallingCode+this.nationalNumber,this.getMetadata=function(){return o}}return wh(t,[{key:"setExt",value:function(n){this.ext=n}},{key:"getPossibleCountries",value:function(){return this.country?[this.country]:ah(this.countryCallingCode,this.nationalNumber,this.getMetadata())}},{key:"isPossible",value:function(){return th(this,{v2:!0},this.getMetadata())}},{key:"isValid",value:function(){return oh(this,{v2:!0},this.getMetadata())}},{key:"isNonGeographic",value:function(){var n=new nt(this.getMetadata());return n.isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(n){return this.number===n.number&&this.ext===n.ext}},{key:"getType",value:function(){return oi(this,{v2:!0},this.getMetadata())}},{key:"format",value:function(n,e){return yh(this,n,e?ca(ca({},e),{},{v2:!0}):{v2:!0},this.getMetadata())}},{key:"formatNational",value:function(n){return this.format("NATIONAL",n)}},{key:"formatInternational",value:function(n){return this.format("INTERNATIONAL",n)}},{key:"getURI",value:function(n){return this.format("RFC3966",n)}}]),t}(),Ch=function(t){return/^[A-Z]{2}$/.test(t)};function Oh(t,n){var e,o,a=new nt(n);return Ch(t)?(e=t,a.selectNumberingPlan(e),o=a.countryCallingCode()):o=t,{country:e,countryCallingCode:o}}var Eh=new RegExp("(["+yt+"])");function Sh(t,n,e,o){if(n){var a=new nt(o);a.selectNumberingPlan(n,e);var i=new RegExp(a.IDDPrefix());if(t.search(i)===0){t=t.slice(t.match(i)[0].length);var s=t.match(Eh);if(!(s&&s[1]!=null&&s[1].length>0&&s[1]==="0"))return t}}}function xh(t,n){if(t&&n.numberingPlan.nationalPrefixForParsing()){var e=new RegExp("^(?:"+n.numberingPlan.nationalPrefixForParsing()+")"),o=e.exec(t);if(o){var a,i,s=o.length-1,l=s>0&&o[s];if(n.nationalPrefixTransformRule()&&l)a=t.replace(e,n.nationalPrefixTransformRule()),s>1&&(i=o[1]);else{var u=o[0];a=t.slice(u.length),l&&(i=o[1])}var d;if(l){var p=t.indexOf(o[1]),f=t.slice(0,p);f===n.numberingPlan.nationalPrefix()&&(d=n.numberingPlan.nationalPrefix())}else d=o[0];return{nationalNumber:a,nationalPrefix:d,carrierCode:i}}}return{nationalNumber:t}}function si(t,n){var e=xh(t,n),o=e.carrierCode,a=e.nationalNumber;if(a!==t){if(!Th(t,a,n))return{nationalNumber:t};if(n.possibleLengths()&&!Nh(a,n))return{nationalNumber:t}}return{nationalNumber:a,carrierCode:o}}function Th(t,n,e){return!(Dt(t,e.nationalNumberPattern())&&!Dt(n,e.nationalNumberPattern()))}function Nh(t,n){switch(ii(t,n)){case"TOO_SHORT":case"INVALID_LENGTH":return!1;default:return!0}}function Ah(t,n,e,o){var a=n?ri(n,o):e;if(t.indexOf(a)===0){o=new nt(o),o.selectNumberingPlan(n,e);var i=t.slice(a.length),s=si(i,o),l=s.nationalNumber,u=si(t,o),d=u.nationalNumber;if(!Dt(d,o.nationalNumberPattern())&&Dt(l,o.nationalNumberPattern())||ii(d,o)==="TOO_LONG")return{countryCallingCode:a,number:i}}return{number:t}}function Dh(t,n,e,o){if(!t)return{};var a;if(t[0]!=="+"){var i=Sh(t,n,e,o);if(i&&i!==t)a=!0,t="+"+i;else{if(n||e){var s=Ah(t,n,e,o),l=s.countryCallingCode,u=s.number;if(l)return{countryCallingCodeSource:"FROM_NUMBER_WITHOUT_PLUS_SIGN",countryCallingCode:l,number:u}}return{number:t}}}if(t[1]==="0")return{};o=new nt(o);for(var d=2;d-1<=$f&&d<=t.length;){var p=t.slice(1,d);if(o.hasCallingCode(p))return o.selectNumberingPlan(p),{countryCallingCodeSource:a?"FROM_NUMBER_WITH_IDD":"FROM_NUMBER_WITH_PLUS_SIGN",countryCallingCode:p,number:t.slice(d)};d++}return{}}function Ph(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Ih(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
90
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ih(t,n){if(t){if(typeof t=="string")return ua(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ua(t,n)}}function ua(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function Bh(t,n){var e=n.countries,o=n.defaultCountry,a=n.metadata;a=new nt(a);for(var i=[],s=Ph(e),l;!(l=s()).done;){var u=l.value;if(a.country(u),a.leadingDigits()){if(t&&t.search(a.leadingDigits())===0)return u}else if(oi({phone:t,country:u},void 0,a.metadata))if(o){if(u===o)return u;i.push(u)}else return u}if(i.length>0)return i[0]}function Mh(t,n){var e=n.nationalNumber,o=n.defaultCountry,a=n.metadata,i=a.getCountryCodesForCallingCode(t);if(i)return i.length===1?i[0]:Bh(e,{countries:i,defaultCountry:o,metadata:a.metadata})}var fa="+",Lh="[\\-\\.\\(\\)]?",ha="(["+yt+"]|"+Lh+")",Rh="^\\"+fa+ha+"*["+yt+"]"+ha+"*$",jh=new RegExp(Rh,"g"),ci=yt,Vh="["+ci+"]+((\\-)*["+ci+"])*",qh="a-zA-Z",Fh="["+qh+"]+((\\-)*["+ci+"])*",Hh="^("+Vh+"\\.)*"+Fh+"\\.?$",zh=new RegExp(Hh,"g"),pa="tel:",di=";phone-context=",Uh=";isub=";function Kh(t){var n=t.indexOf(di);if(n<0)return null;var e=n+di.length;if(e>=t.length)return"";var o=t.indexOf(";",e);return o>=0?t.substring(e,o):t.substring(e)}function Gh(t){return t===null?!0:t.length===0?!1:jh.test(t)||zh.test(t)}function Wh(t,n){var e=n.extractFormattedPhoneNumber,o=Kh(t);if(!Gh(o))throw new At("NOT_A_NUMBER");var a;if(o===null)a=e(t)||"";else{a="",o.charAt(0)===fa&&(a+=o);var i=t.indexOf(pa),s;i>=0?s=i+pa.length:s=0;var l=t.indexOf(di);a+=t.substring(s,l)}var u=a.indexOf(Uh);if(u>0&&(a=a.substring(0,u)),a!=="")return a}var Yh=250,Zh=new RegExp("["+ti+yt+"]"),Jh=new RegExp("[^"+yt+"#]+$");function Xh(t,n,e){if(n=n||{},e=new nt(e),n.defaultCountry&&!e.hasCountry(n.defaultCountry))throw n.v2?new At("INVALID_COUNTRY"):new Error("Unknown country: ".concat(n.defaultCountry));var o=e1(t,n.v2,n.extract),a=o.number,i=o.ext,s=o.error;if(!a){if(n.v2)throw s==="TOO_SHORT"?new At("TOO_SHORT"):new At("NOT_A_NUMBER");return{}}var l=n1(a,n.defaultCountry,n.defaultCallingCode,e),u=l.country,d=l.nationalNumber,p=l.countryCallingCode,f=l.countryCallingCodeSource,c=l.carrierCode;if(!e.hasSelectedNumberingPlan()){if(n.v2)throw new At("INVALID_COUNTRY");return{}}if(!d||d.length<ei){if(n.v2)throw new At("TOO_SHORT");return{}}if(d.length>_f){if(n.v2)throw new At("TOO_LONG");return{}}if(n.v2){var h=new kh(p,d,e.metadata);return u&&(h.country=u),c&&(h.carrierCode=c),i&&(h.ext=i),h.__countryCallingCodeSource=f,h}var v=(n.extended?e.hasSelectedNumberingPlan():u)?Dt(d,e.nationalNumberPattern()):!1;return n.extended?{country:u,countryCallingCode:p,carrierCode:c,valid:v,possible:v?!0:!!(n.extended===!0&&e.possibleLengths()&&na(d,e)),phone:d,ext:i}:v?t1(u,d,i):{}}function Qh(t,n,e){if(t){if(t.length>Yh){if(e)throw new At("TOO_LONG");return}if(n===!1)return t;var o=t.search(Zh);if(!(o<0))return t.slice(o).replace(Jh,"")}}function e1(t,n,e){var o=Wh(t,{extractFormattedPhoneNumber:function(i){return Qh(i,e,n)}});if(!o)return{};if(!zf(o))return Uf(o)?{error:"TOO_SHORT"}:{};var a=Kf(o);return a.ext?a:{number:o}}function t1(t,n,e){var o={country:t,phone:n};return e&&(o.ext=e),o}function n1(t,n,e,o){var a=Dh(Qo(t),n,e,o.metadata),i=a.countryCallingCodeSource,s=a.countryCallingCode,l=a.number,u;if(s)o.selectNumberingPlan(s);else if(l&&(n||e))o.selectNumberingPlan(n,e),n&&(u=n),s=e||ri(n,o.metadata);else return{};if(!l)return{countryCallingCodeSource:i,countryCallingCode:s};var d=si(Qo(l),o),p=d.nationalNumber,f=d.carrierCode,c=Mh(s,{nationalNumber:p,defaultCountry:n,metadata:o});return c&&(u=c,c==="001"||o.country(u)),{country:u,countryCallingCode:s,countryCallingCodeSource:i,nationalNumber:p,carrierCode:f}}function ma(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ga(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?ma(Object(e),!0).forEach(function(o){r1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ma(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function r1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function i1(t,n,e){return Xh(t,ga(ga({},n),{},{v2:!0}),e)}function ya(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function o1(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?ya(Object(e),!0).forEach(function(o){a1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ya(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function a1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function l1(t,n){return u1(t)||d1(t,n)||c1(t,n)||s1()}function s1(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
91
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function c1(t,n){if(t){if(typeof t=="string")return ba(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ba(t,n)}}function ba(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function d1(t,n){var e=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e!=null){var o=[],a=!0,i=!1,s,l;try{for(e=e.call(t);!(a=(s=e.next()).done)&&(o.push(s.value),!(n&&o.length===n));a=!0);}catch(u){i=!0,l=u}finally{try{!a&&e.return!=null&&e.return()}finally{if(i)throw l}}return o}}function u1(t){if(Array.isArray(t))return t}function f1(t){var n=Array.prototype.slice.call(t),e=l1(n,4),o=e[0],a=e[1],i=e[2],s=e[3],l,u,d;if(typeof o=="string")l=o;else throw new TypeError("A text for parsing must be a string.");if(!a||typeof a=="string")s?(u=i,d=s):(u=void 0,d=i),a&&(u=o1({defaultCountry:a},u));else if(ur(a))i?(u=a,d=i):d=a;else throw new Error("Invalid second argument: ".concat(a));return{text:l,options:u,metadata:d}}function va(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function _a(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?va(Object(e),!0).forEach(function(o){h1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):va(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function h1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function p1(t,n,e){n&&n.defaultCountry&&!Lf(n.defaultCountry,e)&&(n=_a(_a({},n),{},{defaultCountry:void 0}));try{return i1(t,n,e)}catch(o){if(!(o instanceof At))throw o}}function m1(){var t=f1(arguments),n=t.text,e=t.options,o=t.metadata;return p1(n,e,o)}function ui(){return hf(m1,arguments)}const g1={beforeMount(t,n,e){if(typeof n.value!="function"){const o=e.context.name;let a=`[Vue-click-outside:] provided expression ${n.expression} is not a function, but has to be`;o&&(a+=`Found in component ${o}`),console.warn(a)}t.clickOutsideEvent=function(o){const a=o.composedPath?o.composedPath():o.path;t===o.target||t.contains(o.target)||a.includes(t)||n.value(o,t)},document.body.addEventListener("click",t.clickOutsideEvent)},unmounted(t){document.body.removeEventListener("click",t.clickOutsideEvent)}},y1=["aria-expanded","tabindex"],b1={class:"vti__selection"},v1={key:1,class:"vti__country-code"},_1={class:"vti__dropdown-arrow"},$1={key:0,class:"vti__search_box_container"},w1=["placeholder"],k1=["onClick","onMousemove","aria-selected"],C1={key:1},O1=["type","autocomplete","autofocus","disabled","id","maxlength","name","placeholder","readonly","required","tabindex","value","aria-describedby"],E1=r.defineComponent({name:"VueTelInput",directives:{clickOutside:g1},__name:"vue-tel-input",props:r.mergeModels({allCountries:{type:Array,default:()=>tt("allCountries")},autoFormat:{type:Boolean,default:()=>tt("autoFormat")},customValidate:{type:[Boolean,RegExp],default:()=>tt("customValidate")},defaultCountry:{type:[String,Number],default:()=>tt("defaultCountry")},disabled:{type:Boolean,default:()=>tt("disabled")},autoDefaultCountry:{type:Boolean,default:()=>tt("autoDefaultCountry")},dropdownOptions:{type:Object,default:()=>tt("dropdownOptions")},ignoredCountries:{type:Array,default:()=>tt("ignoredCountries")},inputOptions:{type:Object,default:()=>tt("inputOptions")},invalidMsg:{type:String,default:()=>tt("invalidMsg")},mode:{type:String,default:()=>tt("mode")},onlyCountries:{type:Array,default:()=>tt("onlyCountries")},preferredCountries:{type:Array,default:()=>tt("preferredCountries")},validCharactersOnly:{type:Boolean,default:()=>tt("validCharactersOnly")},styleClasses:{type:[String,Array,Object],default:()=>tt("styleClasses")}},{modelValue:{type:String},modelModifiers:{}}),emits:r.mergeModels(["blur","close","country-changed","enter","focus","on-input","open","space","validate"],["update:modelValue"]),setup(t,{expose:n,emit:e}){const o=r.shallowRef(),a=r.shallowRef(),i=r.shallowRef(),s=e,l=t,u=r.useModel(t,"modelValue");r.watch(u,(A,I)=>{S()?d.phone=A??"":r.nextTick(()=>{d.phone=I??"",M()})});const d=r.reactive({phone:"",activeCountryCode:void 0,open:!1,finishMounted:!1,selectedIndex:null,typeToFindInput:"",typeToFindTimer:void 0,dropdownOpenDirection:"below",parsedPlaceholder:l.inputOptions.placeholder,searchQuery:""});r.watch(()=>d.open,A=>{A?(D(),s("open")):s("close")});const p=r.computed(()=>l.onlyCountries.length?l.allCountries.filter(({iso2:A})=>l.onlyCountries.some(I=>Tn(I)===A)):l.ignoredCountries.length?l.allCountries.filter(({iso2:A})=>!l.ignoredCountries.includes(Tn(A))&&!l.ignoredCountries.includes(xn(A))):l.allCountries),f=r.computed(()=>g(d.activeCountryCode));r.watch(f,(A,I)=>{if(!A&&I!=null&&I.iso2){d.activeCountryCode=I.iso2;return}A!=null&&A.iso2&&s("country-changed",A)});const c=r.computed(()=>{var A;const I=xn(l.mode);return I==="auto"?(A=d.phone)!=null&&A.startsWith("+")?"international":"national":["national","international","e.164","rfc3966","idd"].includes(I)?I:(console.error('Invalid value of prop "mode"'),"international")}),h=r.computed(()=>{const A=[...y(l.preferredCountries).map(U=>({...U,preferred:!0})),...p.value];if(!l.dropdownOptions.showSearchBox)return A;const I=d.searchQuery.toLowerCase().replace(/[~`!@#$%^&*()+={}\[\];:\'\"<>.,\/\\\?-_]/g,"");return A.filter(U=>new RegExp(I,"i").test(U.name)||new RegExp(I,"i").test(U.iso2)||new RegExp(I,"i").test(U.dialCode))}),v=r.computed(()=>{var A;const I=d.phone.startsWith("+")?ui(d.phone):ui(d.phone,d.activeCountryCode),U={country:I==null?void 0:I.country,countryCode:I==null?void 0:I.country,formatted:d.phone,valid:I==null?void 0:I.isValid(),possible:(A=I==null?void 0:I.isPossible)==null?void 0:A.call(I),nationalNumber:I==null?void 0:I.nationalNumber};return U.valid&&(U.formatted=I==null?void 0:I.format(Tn(c.value))),I!=null&&I.country&&(l.ignoredCountries.length||l.onlyCountries.length)&&!g(I.country)&&(U.valid=!1,U.possible=!1,I.country=null),I?{...U,...I}:U});r.watch(()=>v.value.countryCode,A=>{A&&(d.activeCountryCode=A)}),r.watch(()=>v.value.valid,()=>{s("validate",v.value)}),r.watch(()=>v.value.formatted,A=>{!l.autoFormat||l.customValidate||(E(A),r.nextTick(()=>{A&&!u.value&&(d.phone=A)}))}),r.watch(()=>l.inputOptions.placeholder,m),r.onMounted(()=>{u.value&&(d.phone=u.value.trim()),T(),_().then(()=>{var A;!d.phone&&(A=l.inputOptions)!=null&&A.showDialCode&&d.activeCountryCode&&(d.phone=`+${d.activeCountryCode}`),s("validate",v.value)}).catch(console.error).then(()=>{d.finishMounted=!0})});function m(){d.parsedPlaceholder=l.inputOptions.placeholder}function _(){return new Promise(A=>{var I;if(((I=d.phone)==null?void 0:I[0])==="+"){A();return}if(l.defaultCountry){if(typeof l.defaultCountry=="string"){k(l.defaultCountry),A();return}if(typeof l.defaultCountry=="number"){const F=w(l.defaultCountry);if(F){k(F.iso2),A();return}}}const U=l.preferredCountries[0]||p.value[0];l.autoDefaultCountry?sf().then(F=>{k(F||d.activeCountryCode)}).catch(F=>{console.warn(F),k(U)}).then(()=>{A()}):(k(U),A())})}function y(A=[]){return A.map(g).filter(Boolean)}function g(A=""){return p.value.find(I=>I.iso2===Tn(A))}function w(A){return p.value.find(I=>Number(I.dialCode)===A)}function b(A,I){const U=d.selectedIndex===A,F=A===l.preferredCountries.length-1,L=l.preferredCountries.some(z=>Tn(z)===I);return{highlighted:U,"last-preferred":F,preferred:L}}function k(A){var I,U,F;let L=A;if(typeof L=="string"&&(L=g(L)),!!L){if(((I=d.phone)==null?void 0:I[0])==="+"&&L.iso2&&v.value.nationalNumber){d.activeCountryCode=L.iso2,d.phone=((U=ui(v.value.nationalNumber,L.iso2))==null?void 0:U.formatInternational())??"";return}if((F=l.inputOptions)!=null&&F.showDialCode&&L){d.phone=`+${L.dialCode}`,d.activeCountryCode=L.iso2;return}d.activeCountryCode=L.iso2,E(d.phone)}}function T(){const A=d.phone;if(l.validCharactersOnly){const I=d.phone.match(/[()\-+0-9\s]*/g);d.phone=I.join("")}if(l.customValidate&&l.customValidate instanceof RegExp){const I=d.phone.match(l.customValidate);d.phone=I.join("")}A!==d.phone&&E(d.phone)}function S(){return l.validCharactersOnly&&!/^[()\-+0-9\s]*$/.test(d.phone)?!1:l.customValidate?x():!0}function x(){return l.customValidate instanceof RegExp?l.customValidate.test(d.phone):!1}function M(){var A;(A=i.value)==null||A.setCustomValidity(v.value.valid?"":l.invalidMsg),E(d.phone)}function E(A){u.value=A,s("on-input",A,v.value,i.value)}function C(A){s("blur",A)}function O(A){cf(i.value,d.phone.length),s("focus",A)}function N(A){s("enter",A)}function R(A){s("space",A)}function q(){var A;(A=i.value)==null||A.focus()}function W(){var A;(A=i.value)==null||A.blur()}function Y(){l.disabled||l.dropdownOptions.disabled||(d.searchQuery="",d.open=!d.open)}function re(){d.open=!1}function K(A){if(A.keyCode===40){A.preventDefault(),d.open=!0,d.selectedIndex===null?d.selectedIndex=0:d.selectedIndex=Math.min(h.value.length-1,d.selectedIndex+1);const I=a.value.children[d.selectedIndex];I.focus(),I.offsetTop+I.clientHeight>a.value.scrollTop+a.value.clientHeight&&(a.value.scrollTop=I.offsetTop-a.value.clientHeight+I.clientHeight)}else if(A.keyCode===38){A.preventDefault(),d.open=!0,d.selectedIndex===null?d.selectedIndex=h.value.length-1:d.selectedIndex=Math.max(0,d.selectedIndex-1);const I=a.value.children[d.selectedIndex];I.focus(),I.offsetTop<a.value.scrollTop&&(a.value.scrollTop=I.offsetTop)}else if(A.keyCode===13)d.selectedIndex!==null&&k(h.value[d.selectedIndex]),d.open=!d.open;else if(d.open){d.typeToFindInput+=A.key,clearTimeout(d.typeToFindTimer),d.typeToFindTimer=setTimeout(()=>{d.typeToFindInput=""},700);const I=h.value.slice(l.preferredCountries.length).findIndex(U=>xn(U.name).startsWith(d.typeToFindInput));if(I>=0){d.selectedIndex=l.preferredCountries.length+I;const U=a.value.children[d.selectedIndex],F=U.offsetTop<a.value.scrollTop,L=U.offsetTop+U.clientHeight>a.value.scrollTop+a.value.clientHeight;(F||L)&&(a.value.scrollTop=U.offsetTop-a.value.clientHeight/2)}}}function V(){d.selectedIndex=h.value.map(A=>A.iso2).indexOf(d.activeCountryCode),d.open=!1}function D(){window.innerHeight-o.value.getBoundingClientRect().bottom>200?d.dropdownOpenDirection="below":d.dropdownOpenDirection="above"}return n({focus:q,blur:W}),(A,I)=>{const U=r.resolveDirective("click-outside");return r.openBlock(),r.createElementBlock("div",{ref_key:"refRoot",ref:o,class:r.normalizeClass(["vue-tel-input",t.styleClasses,{disabled:t.disabled}])},[r.withDirectives((r.openBlock(),r.createElementBlock("div",{"aria-label":"Country Code Selector","aria-haspopup":"listbox","aria-expanded":d.open,role:"button",class:r.normalizeClass(["vti__dropdown",{open:d.open,disabled:t.dropdownOptions.disabled}]),tabindex:t.dropdownOptions.tabindex,onKeydown:[K,r.withKeys(Y,["space"]),r.withKeys(V,["esc"]),r.withKeys(V,["tab"])],onClick:Y},[r.createElementVNode("span",b1,[t.dropdownOptions.showFlags?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass(["vti__flag",r.unref(xn)(d.activeCountryCode)])},null,2)):r.createCommentVNode("",!0),t.dropdownOptions.showDialCodeInSelection?(r.openBlock(),r.createElementBlock("span",v1," +"+r.toDisplayString(f.value&&f.value.dialCode),1)):r.createCommentVNode("",!0),r.renderSlot(A.$slots,"arrow-icon",{open:d.open},()=>[r.createElementVNode("span",_1,r.toDisplayString(d.open?"▲":"▼"),1)])]),d.open?(r.openBlock(),r.createElementBlock("ul",{key:0,ref_key:"refList",ref:a,class:r.normalizeClass(["vti__dropdown-list",d.dropdownOpenDirection]),role:"listbox"},[t.dropdownOptions.showSearchBox?(r.openBlock(),r.createElementBlock("div",$1,[r.renderSlot(A.$slots,"search-icon"),r.withDirectives(r.createElementVNode("input",{class:r.normalizeClass(["vti__input","vti__search_box"]),"aria-label":"Search by country name or country code",placeholder:t.dropdownOptions.searchBoxPlaceholder||(h.value.length?h.value[0].name:""),type:"text","onUpdate:modelValue":I[0]||(I[0]=F=>d.searchQuery=F),onClick:I[1]||(I[1]=r.withModifiers(()=>{},["stop"]))},null,8,w1),[[r.vModelText,d.searchQuery]])])):r.createCommentVNode("",!0),(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(h.value,(F,L)=>(r.openBlock(),r.createElementBlock("li",{role:"option",class:r.normalizeClass(["vti__dropdown-item",b(L,F.iso2)]),key:F.iso2+(F.preferred?"-preferred":""),tabindex:"-1",onClick:z=>k(F),onMousemove:z=>d.selectedIndex=L,"aria-selected":d.activeCountryCode===F.iso2&&!F.preferred},[t.dropdownOptions.showFlags?(r.openBlock(),r.createElementBlock("span",{key:0,class:r.normalizeClass(["vti__flag",r.unref(xn)(F.iso2)])},null,2)):r.createCommentVNode("",!0),r.createElementVNode("strong",null,r.toDisplayString(F.name),1),t.dropdownOptions.showDialCodeInList?(r.openBlock(),r.createElementBlock("span",C1," +"+r.toDisplayString(F.dialCode),1)):r.createCommentVNode("",!0)],42,k1))),128))],2)):r.createCommentVNode("",!0)],42,y1)),[[U,re]]),r.withDirectives(r.createElementVNode("input",{"onUpdate:modelValue":I[2]||(I[2]=F=>d.phone=F),ref_key:"refInput",ref:i,type:t.inputOptions.type,autocomplete:t.inputOptions.autocomplete,autofocus:t.inputOptions.autofocus,class:r.normalizeClass(["vti__input","vti__phone",t.inputOptions.styleClasses]),disabled:t.disabled,id:t.inputOptions.id,maxlength:t.inputOptions.maxlength,name:t.inputOptions.name,placeholder:d.parsedPlaceholder,readonly:t.inputOptions.readonly,required:t.inputOptions.required,tabindex:t.inputOptions.tabindex,value:u.value,"aria-describedby":t.inputOptions["aria-describedby"],onBlur:C,onFocus:O,onInput:M,onKeyup:[r.withKeys(N,["enter"]),r.withKeys(R,["space"])]},null,42,O1),[[r.vModelDynamic,d.phone]]),r.renderSlot(A.$slots,"icon-right")],2)}}}),Rp="",jp="",S1={directives:{Outside:nr},props:{modelValue:{type:String},value:String,inputName:{type:String,default:"phone"},autoDefaultCountry:{type:Boolean,default:!0},ignoredCountries:{type:Array,default:()=>[]},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue","onReady"],components:{VueTelInput:E1,IbAlert:Ft,IbIcon:Le},data(){return{vueTel:null,dialCode:"",defaultCountry:"US",allowChange:!1}},mounted(){this.vueTel=this.$refs.vueTel,this.$emit("onReady")},computed:{phone:{get(){return this.modelValue},set(t){this.$emit("update:modelValue",t)}}},methods:{countryChanged(t){this.$globalEvents.$on("countrySelectValue",n=>{this.vueTel.choose(n)}),!this.phone||this.phone.length-1<this.dialCode.length?this.phone="+"+t.dialCode:this.dialCode&&(this.phone=this.phone.replace(this.dialCode,t.dialCode)),this.dialCode=t.dialCode},clickOutside(){this.vueTel.open&&this.vueTel.clickedOutside()}}};function x1(t,n,e,o,a,i){const s=r.resolveComponent("ib-alert"),l=r.resolveComponent("ib-icon"),u=r.resolveComponent("vue-tel-input"),d=r.resolveDirective("outside");return r.openBlock(),r.createElementBlock(r.Fragment,null,[e.errorMessage.length?(r.openBlock(),r.createBlock(s,{key:0,class:"ib-phone-error-message"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.withDirectives((r.openBlock(),r.createBlock(u,r.mergeProps({modelValue:i.phone,"onUpdate:modelValue":n[0]||(n[0]=p=>i.phone=p)},t.$attrs,{onCountryChanged:i.countryChanged,"input-options":{name:e.inputName,id:e.inputName,autocomplete:"off"},"auto-default-country":e.autoDefaultCountry,"dropdown-options":{showSearchBox:!0,showFlags:!0,tabindex:0},defaultCountry:a.defaultCountry,ignoredCountries:e.ignoredCountries,class:{error:e.error||e.errorMessage.length,disabled:e.disabled},disabled:e.disabled,"style-classes":"ib-phone-input",ref:"vueTel"}),{"arrow-icon":r.withCtx(()=>[r.createVNode(l,{name:"chevron-down-outline"})]),_:1},16,["modelValue","onCountryChanged","input-options","auto-default-country","defaultCountry","ignoredCountries","class","disabled"])),[[d,i.clickOutside]])],64)}const T1=_e(S1,[["render",x1]]);var $a={exports:{}};/*!
88
+ `,bf="single",nr="range",vf={props:{name:{type:String,default:"Date"},modelValue:[String,Array],value:[String,Array],placeholder:{type:String,default:""},endDatePlaceholder:{type:String,default:""},required:{type:Boolean,default:!1},config:{type:Object,default:()=>{}},mode:{type:String,default:bf},ariaLabel:{type:String,default:""},endDateAriaLabel:{type:String,default:""},label:{type:String,default:""},endDateLabel:{type:String,default:""},supportText:{type:String,default:""},endDateSupportText:{type:String,default:""},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1}},mounted(){document.addEventListener("keyup",this.onDocumentKeyDown,!0),this.$refs.inputsWrapper.addEventListener("keyup",this.backspaceHandler),this.$nextTick(()=>{this.initFlatpickr()})},watch:{config(){this.initFlatpickr()},value(){this.initFlatpickr()},disabled(){this.$nextTick(()=>{this.initFlatpickr()})},modelValue(){var i;if(JSON.stringify(this.modelValue)===JSON.stringify(this.data))return;let t;Array.isArray(this.modelValue)?t=this.modelValue[0]&&this.modelValue[1]?this.modelValue:[]:t=this.modelValue,(i=this.flat)==null||i.setDate(t,!0)}},data(){return{pickerOptions:{},data:this.modelValue,flat:null,isOpen:!1,isOpenEndDate:!1}},methods:{initFlatpickr(){this.flat=new Ve(this.$refs.date,this.pickerConfigs())},pickerConfigs(){var o,a;const t=document.querySelectorAll(".calendar-icon");let i={dateFormat:"Y-m-d",altInput:!0,altFormat:"Y-m-d",position:"left",mode:this.mode,appendTo:this.$refs.dropdown,prevArrow:gf,nextArrow:yf,ignoredFocusElements:Array.from(t),locale:{weekdays:{shorthand:["S","M","T","W","T","F","S"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},onReady(r,d,c){c.setDate(d,!0)},onChange:(r,d)=>this.onChange(d),onClose:()=>this.onClose()};this.mode===nr&&(i.plugins=[new mf({input:this.$refs.toDate})]),(this.value||this.modelValue)&&(this.mode===nr?i.defaultDate=this.modelValue.length?[this.modelValue[0],this.modelValue[1]]:[(o=this.value)==null?void 0:o[0],(a=this.value)==null?void 0:a[1]]:i.defaultDate=this.modelValue?this.modelValue:this.value);const e=Object.assign({},i,this.config);return this.pickerOptions=e,e},onClose(){this.triggerChange(),this.$nextTick(()=>{this.isOpen=!1,this.isOpenEndDate=!1,this.$emit("blur")})},onChange(t){this.mode===nr?this.data=t.split(" to "):this.data=t},onDocumentKeyDown(t){t.keyCode===ji&&this.onClose()},onKeydownEndField(t){t.key==="ArrowDown"&&this.flat.selectedDateElem.focus()},backspaceHandler(t){t.keyCode===Ss&&(this.$emit("input",""),this.$emit("update:modelValue",""))},triggerChange(){setTimeout(()=>{if(this.pickerOptions.mode==="range"){let t=this.data;t.length<2?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",[t[0],t[1]]),this.$emit("update:modelValue",this.data))}else this.data===""?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",this.data),this.$emit("update:modelValue",this.data)),this.$emit("blur")})},open(){this.isOpen||(this.isOpen=!0,this.isOpenEndDate=!1,this.flat.open())},openEndDate(){this.isOpen=!1,this.isOpenEndDate=!0,this.$refs.toDate.click()}},computed:{values(){var t;return this.data?(t=this.data)==null?void 0:t.split(" to "):[]}},beforeUnmount(){document.removeEventListener("keyup",this.onDocumentKeyDown),this.$refs.inputsWrapper.removeEventListener("keyup",this.backspaceHandler)},components:{IbIcon:Le,IbLabel:On,IbAlert:jt},emits:["input","update:modelValue"]},_f={ref:"inputsWrapper",class:"inputs-wrapper"},$f={class:"input-group-wrapper"},wf=["aria-label"],kf=["placeholder","name","disabled"],Cf={ref:"dropdown",class:"dropdown"},Of={key:1,class:"support-text"},Ef={key:0,class:"input-group-wrapper"},Sf=["aria-label"],xf=["placeholder"],Tf={key:1,class:"support-text"};function Nf(t,i,e,o,a,r){const d=n.resolveComponent("ib-alert"),c=n.resolveComponent("ib-label"),p=n.resolveComponent("ib-icon");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["ib-flatpickr-wrapper",{"has-labels":e.label.length||e.endDateLabel.length,"has-label":e.label.length,"has-error":e.errorMessage.length,"is-disabled":e.disabled,"is-range":e.mode==="range"}])},[e.errorMessage.length?(n.openBlock(),n.createBlock(d,{key:0,class:"error-message"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.createElementVNode("div",_f,[n.createElementVNode("div",$f,[e.label.length?(n.openBlock(),n.createBlock(c,{key:0,class:"label",required:e.required},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.label),1)]),_:1},8,["required"])):n.createCommentVNode("",!0),n.createElementVNode("div",{class:n.normalizeClass(["input-wrapper",{active:a.isOpen}]),onClick:i[0]||(i[0]=(...s)=>r.open&&r.open(...s))},[n.createElementVNode("label",{"aria-label":e.ariaLabel},[n.createElementVNode("input",{placeholder:e.placeholder,name:e.name,ref:"date",id:"date",disabled:e.disabled,class:"date-picker-input"},null,8,kf)],8,wf),n.createVNode(p,{name:"today-outline",class:"calendar-icon"})],2),n.createElementVNode("div",Cf,null,512),e.supportText.length?(n.openBlock(),n.createElementBlock("p",Of,n.toDisplayString(e.supportText),1)):n.createCommentVNode("",!0)]),e.mode==="range"?(n.openBlock(),n.createElementBlock("div",Ef,[e.endDateLabel.length?(n.openBlock(),n.createBlock(c,{key:0,class:"end-date-label label",required:e.required},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.endDateLabel),1)]),_:1},8,["required"])):n.createCommentVNode("",!0),n.createElementVNode("div",{class:n.normalizeClass(["input-wrapper",{active:a.isOpenEndDate}]),onClick:i[2]||(i[2]=(...s)=>r.openEndDate&&r.openEndDate(...s))},[n.createElementVNode("label",{"aria-label":e.endDateAriaLabel},[n.createElementVNode("input",{class:"date-picker-input",placeholder:e.endDatePlaceholder,ref:"toDate",onKeydown:i[1]||(i[1]=(...s)=>r.onKeydownEndField&&r.onKeydownEndField(...s))},null,40,xf)],8,Sf),n.createVNode(p,{name:"today-outline",class:"calendar-icon"})],2),e.endDateSupportText.length?(n.openBlock(),n.createElementBlock("p",Tf,n.toDisplayString(e.endDateSupportText),1)):n.createCommentVNode("",!0)])):n.createCommentVNode("",!0)],512)],2)}const Af=be(vf,[["render",Nf]]),Df=[["Afghanistan (‫افغانستان‬‎)","af","93"],["Albania (Shqipëri)","al","355"],["Algeria (‫الجزائر‬‎)","dz","213"],["American Samoa","as","1",5,["684"]],["Andorra","ad","376"],["Angola","ao","244"],["Anguilla","ai","1",6,["264"]],["Antigua and Barbuda","ag","1",7,["268"]],["Argentina","ar","54"],["Armenia (Հայաստան)","am","374"],["Aruba","aw","297"],["Ascension Island","ac","247"],["Australia","au","61",0],["Austria (Österreich)","at","43"],["Azerbaijan (Azərbaycan)","az","994"],["Bahamas","bs","1",8,["242"]],["Bahrain (‫البحرين‬‎)","bh","973"],["Bangladesh (বাংলাদেশ)","bd","880"],["Barbados","bb","1",9,["246"]],["Belarus (Беларусь)","by","375"],["Belgium (België)","be","32"],["Belize","bz","501"],["Benin (Bénin)","bj","229"],["Bermuda","bm","1",10,["441"]],["Bhutan (འབྲུག)","bt","975"],["Bolivia","bo","591"],["Bosnia and Herzegovina (Босна и Херцеговина)","ba","387"],["Botswana","bw","267"],["Brazil (Brasil)","br","55"],["British Indian Ocean Territory","io","246"],["British Virgin Islands","vg","1",11,["284"]],["Brunei","bn","673"],["Bulgaria (България)","bg","359"],["Burkina Faso","bf","226"],["Burundi (Uburundi)","bi","257"],["Cambodia (កម្ពុជា)","kh","855"],["Cameroon (Cameroun)","cm","237"],["Canada","ca","1",1,["204","226","236","249","250","263","289","306","343","354","365","367","368","382","387","403","416","418","428","431","437","438","450","584","468","474","506","514","519","548","579","581","584","587","604","613","639","647","672","683","705","709","742","753","778","780","782","807","819","825","867","873","902","905"]],["Cape Verde (Kabu Verdi)","cv","238"],["Caribbean Netherlands","bq","599",1,["3","4","7"]],["Cayman Islands","ky","1",12,["345"]],["Central African Republic (République centrafricaine)","cf","236"],["Chad (Tchad)","td","235"],["Chile","cl","56"],["China (中国)","cn","86"],["Christmas Island","cx","61",2,["89164"]],["Cocos (Keeling) Islands","cc","61",1,["89162"]],["Colombia","co","57"],["Comoros (‫جزر القمر‬‎)","km","269"],["Congo (DRC) (République démocratique du Congo)","cd","243"],["Congo (Republic) (Congo-Brazzaville)","cg","242"],["Cook Islands","ck","682"],["Costa Rica","cr","506"],["Côte d’Ivoire","ci","225"],["Croatia (Hrvatska)","hr","385"],["Cuba","cu","53"],["Curaçao","cw","599",0],["Cyprus (Κύπρος)","cy","357"],["Czech Republic (Česká republika)","cz","420"],["Denmark (Danmark)","dk","45"],["Djibouti","dj","253"],["Dominica","dm","1",13,["767"]],["Dominican Republic (República Dominicana)","do","1",2,["809","829","849"]],["Ecuador","ec","593"],["Egypt (‫مصر‬‎)","eg","20"],["El Salvador","sv","503"],["Equatorial Guinea (Guinea Ecuatorial)","gq","240"],["Eritrea","er","291"],["Estonia (Eesti)","ee","372"],["Eswatini","sz","268"],["Ethiopia","et","251"],["Falkland Islands (Islas Malvinas)","fk","500"],["Faroe Islands (Føroyar)","fo","298"],["Fiji","fj","679"],["Finland (Suomi)","fi","358",0],["France","fr","33"],["French Guiana (Guyane française)","gf","594"],["French Polynesia (Polynésie française)","pf","689"],["Gabon","ga","241"],["Gambia","gm","220"],["Georgia (საქართველო)","ge","995"],["Germany (Deutschland)","de","49"],["Ghana (Gaana)","gh","233"],["Gibraltar","gi","350"],["Greece (Ελλάδα)","gr","30"],["Greenland (Kalaallit Nunaat)","gl","299"],["Grenada","gd","1",14,["473"]],["Guadeloupe","gp","590",0],["Guam","gu","1",15,["671"]],["Guatemala","gt","502"],["Guernsey","gg","44",1,["1481","7781","7839","7911"]],["Guinea (Guinée)","gn","224"],["Guinea-Bissau (Guiné Bissau)","gw","245"],["Guyana","gy","592"],["Haiti","ht","509"],["Honduras","hn","504"],["Hong Kong (香港)","hk","852"],["Hungary (Magyarország)","hu","36"],["Iceland (Ísland)","is","354"],["India (भारत)","in","91"],["Indonesia","id","62"],["Iran (‫ایران‬‎)","ir","98"],["Iraq (‫العراق‬‎)","iq","964"],["Ireland","ie","353"],["Isle of Man","im","44",2,["1624","74576","7524","7924","7624"]],["Israel (‫ישראל‬‎)","il","972"],["Italy (Italia)","it","39",0],["Jamaica","jm","1",4,["876","658"]],["Japan (日本)","jp","81"],["Jersey","je","44",3,["1534","7509","7700","7797","7829","7937"]],["Jordan (‫الأردن‬‎)","jo","962"],["Kazakhstan (Казахстан)","kz","7",1,["33","7"]],["Kenya","ke","254"],["Kiribati","ki","686"],["Kosovo","xk","383"],["Kuwait (‫الكويت‬‎)","kw","965"],["Kyrgyzstan (Кыргызстан)","kg","996"],["Laos (ລາວ)","la","856"],["Latvia (Latvija)","lv","371"],["Lebanon (‫لبنان‬‎)","lb","961"],["Lesotho","ls","266"],["Liberia","lr","231"],["Libya (‫ليبيا‬‎)","ly","218"],["Liechtenstein","li","423"],["Lithuania (Lietuva)","lt","370"],["Luxembourg","lu","352"],["Macau (澳門)","mo","853"],["Madagascar (Madagasikara)","mg","261"],["Malawi","mw","265"],["Malaysia","my","60"],["Maldives","mv","960"],["Mali","ml","223"],["Malta","mt","356"],["Marshall Islands","mh","692"],["Martinique","mq","596"],["Mauritania (‫موريتانيا‬‎)","mr","222"],["Mauritius (Moris)","mu","230"],["Mayotte","yt","262",1,["269","639"]],["Mexico (México)","mx","52"],["Micronesia","fm","691"],["Moldova (Republica Moldova)","md","373"],["Monaco","mc","377"],["Mongolia (Монгол)","mn","976"],["Montenegro (Crna Gora)","me","382"],["Montserrat","ms","1",16,["664"]],["Morocco (‫المغرب‬‎)","ma","212",0],["Mozambique (Moçambique)","mz","258"],["Myanmar (Burma) (မြန်မာ)","mm","95"],["Namibia (Namibië)","na","264"],["Nauru","nr","674"],["Nepal (नेपाल)","np","977"],["Netherlands (Nederland)","nl","31"],["New Caledonia (Nouvelle-Calédonie)","nc","687"],["New Zealand","nz","64"],["Nicaragua","ni","505"],["Niger (Nijar)","ne","227"],["Nigeria","ng","234"],["Niue","nu","683"],["Norfolk Island","nf","672"],["North Korea (조선 민주주의 인민 공화국)","kp","850"],["North Macedonia (Северна Македонија)","mk","389"],["Northern Mariana Islands","mp","1",17,["670"]],["Norway (Norge)","no","47",0],["Oman (‫عُمان‬‎)","om","968"],["Pakistan (‫پاکستان‬‎)","pk","92"],["Palau","pw","680"],["Palestine (‫فلسطين‬‎)","ps","970"],["Panama (Panamá)","pa","507"],["Papua New Guinea","pg","675"],["Paraguay","py","595"],["Peru (Perú)","pe","51"],["Philippines","ph","63"],["Poland (Polska)","pl","48"],["Portugal","pt","351"],["Puerto Rico","pr","1",3,["787","939"]],["Qatar (‫قطر‬‎)","qa","974"],["Réunion (La Réunion)","re","262",0],["Romania (România)","ro","40"],["Russia (Россия)","ru","7",0],["Rwanda","rw","250"],["Saint Barthélemy","bl","590",1],["Saint Helena","sh","290"],["Saint Kitts and Nevis","kn","1",18,["869"]],["Saint Lucia","lc","1",19,["758"]],["Saint Martin (Saint-Martin (partie française))","mf","590",2],["Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)","pm","508"],["Saint Vincent and the Grenadines","vc","1",20,["784"]],["Samoa","ws","685"],["San Marino","sm","378"],["São Tomé and Príncipe (São Tomé e Príncipe)","st","239"],["Saudi Arabia (‫المملكة العربية السعودية‬‎)","sa","966"],["Senegal (Sénégal)","sn","221"],["Serbia (Србија)","rs","381"],["Seychelles","sc","248"],["Sierra Leone","sl","232"],["Singapore","sg","65"],["Sint Maarten","sx","1",21,["721"]],["Slovakia (Slovensko)","sk","421"],["Slovenia (Slovenija)","si","386"],["Solomon Islands","sb","677"],["Somalia (Soomaaliya)","so","252"],["South Africa","za","27"],["South Korea (대한민국)","kr","82"],["South Sudan (‫جنوب السودان‬‎)","ss","211"],["Spain (España)","es","34"],["Sri Lanka (ශ්‍රී ලංකාව)","lk","94"],["Sudan (‫السودان‬‎)","sd","249"],["Suriname","sr","597"],["Svalbard and Jan Mayen","sj","47",1,["79"]],["Sweden (Sverige)","se","46"],["Switzerland (Schweiz)","ch","41"],["Syria (‫سوريا‬‎)","sy","963"],["Taiwan (台灣)","tw","886"],["Tajikistan","tj","992"],["Tanzania","tz","255"],["Thailand (ไทย)","th","66"],["Timor-Leste","tl","670"],["Togo","tg","228"],["Tokelau","tk","690"],["Tonga","to","676"],["Trinidad and Tobago","tt","1",22,["868"]],["Tunisia (‫تونس‬‎)","tn","216"],["Turkey (Türkiye)","tr","90"],["Turkmenistan","tm","993"],["Turks and Caicos Islands","tc","1",23,["649"]],["Tuvalu","tv","688"],["U.S. Virgin Islands","vi","1",24,["340"]],["Uganda","ug","256"],["Ukraine (Україна)","ua","380"],["United Arab Emirates (‫الإمارات العربية المتحدة‬‎)","ae","971"],["United Kingdom","gb","44",0],["United States","us","1",0],["Uruguay","uy","598"],["Uzbekistan (Oʻzbekiston)","uz","998"],["Vanuatu","vu","678"],["Vatican City (Città del Vaticano)","va","39",1,["06698"]],["Venezuela","ve","58"],["Vietnam (Việt Nam)","vn","84"],["Wallis and Futuna (Wallis-et-Futuna)","wf","681"],["Western Sahara (‫الصحراء الغربية‬‎)","eh","212",1,["5288","5289"]],["Yemen (‫اليمن‬‎)","ye","967"],["Zambia","zm","260"],["Zimbabwe","zw","263"],["Åland Islands","ax","358",1,["18"]]],Mf=Df.map(([t,i,e,o=0,a=null])=>({name:t,iso2:i.toUpperCase(),dialCode:e,priority:o,areaCodes:a}));function Bf(){return fetch("https://ip2c.org/s").then(t=>t.text()).then(t=>{const i=(t||"").toString();if(!i||i[0]!=="1")throw new Error("unable to fetch the country");return i.substr(2,2)})}function If(t,i){if(t.setSelectionRange)t.focus(),t.setSelectionRange(i,i);else if("createTextRange"in t&&typeof t.createTextRange=="function"){const e=t.createTextRange();e.collapse(!0),e.moveEnd("character",i),e.moveStart("character",i),e.select()}}const Pf=[{name:"allCountries",type:Array,default:Mf,description:"All countries that are used in <code>libphonenumber-js</code>, can be overridden by this prop",inDemo:!1},{name:"autoFormat",type:Boolean,default:!0,description:"Auto update the input to the formatted phone number when it's valid",inDemo:!0},{name:"customValidate",type:[Boolean,RegExp],default:!1,description:"Custom validation RegExp for input",inDemo:!1},{name:"defaultCountry",default:"",type:[String,Number],description:"Default country (by iso2 or dialCode), will override the country fetched from IP address of user",inDemo:!1},{name:"disabled",default:!1,type:Boolean,description:"Disable <code>vue-tel-input</code>, including the input & flag dropdown",inDemo:!1},{name:"autoDefaultCountry",default:!0,type:Boolean,description:"To fetch default country based on IP address of user",inDemo:!1},{name:"dropdownOptions",type:Object,description:"Options for dropdown, see below",inDemo:!1},{name:"dropdownOptions.disabled",default:!1,type:Boolean,description:"Disable dropdown",inDemo:!1},{name:"dropdownOptions.showDialCodeInList",default:!0,type:Boolean,description:"Show dial code in the dropdown list",inDemo:!0},{name:"dropdownOptions.showDialCodeInSelection",default:!1,type:Boolean,description:"Show dial code in the dropdown selection",inDemo:!0},{name:"dropdownOptions.showFlags",default:!0,type:Boolean,description:"Show flags in the dropdown selection and list",inDemo:!0},{name:"dropdownOptions.showSearchBox",default:!1,type:Boolean,description:"Show country search box",inDemo:!0},{name:"dropdownOptions.searchBoxPlaceholder",default:"",type:String,description:"Placeholder for the search box",inDemo:!1},{name:"dropdownOptions.tabindex",default:0,type:Number,description:"Native dropdown <code>tabindex</code> attribute",inDemo:!1},{name:"ignoredCountries",default:[],type:Array,description:"List of countries will NOT be shown on the dropdown",inDemo:!1},{name:"inputOptions",type:Object,description:"Options for input, see below",inDemo:!1},{name:"inputOptions.autocomplete",type:String,default:"on",description:"Native input <code>autocomplete</code> attribute",inDemo:!1},{name:"inputOptions.autofocus",type:Boolean,default:!1,description:"Native input <code>autofocus</code> attribute",inDemo:!1},{name:"inputOptions.aria-describedby",default:"",type:String,description:"Native input <code>aria-describedby</code> attribute",inDemo:!1},{name:"inputOptions.id",default:"",type:String,description:"Native input <code>id</code> attribute",inDemo:!1},{name:"inputOptions.maxlength",default:25,type:Number,description:"Native input <code>maxlength</code> attribute",inDemo:!1},{name:"inputOptions.name",default:"telephone",type:String,description:"Native input <code>name</code> attribute",inDemo:!1},{name:"inputOptions.showDialCode",default:!1,type:Boolean,description:"Show dial code in input",inDemo:!1},{name:"inputOptions.placeholder",default:"Enter a phone number",type:String,description:"Placeholder for the input",inDemo:!1},{name:"inputOptions.readonly",default:!1,type:Boolean,description:"Native input <code>readonly</code> attribute",inDemo:!1},{name:"inputOptions.required",default:!1,type:Boolean,description:"Native input <code>required</code> attribute",inDemo:!1},{name:"inputOptions.tabindex",default:0,type:Number,description:"Native input <code>tabindex</code> attribute",inDemo:!1},{name:"inputOptions.type",default:"tel",type:String,description:"Native input <code>type</code> attribute",inDemo:!1},{name:"inputOptions.styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the <code>input</code>",inDemo:!1},{name:"invalidMsg",default:"",type:String,description:"",inDemo:!1},{name:"mode",default:"auto",type:String,description:"Allowed values: <code>'auto'</code> (Default set by phone), <code>'international'</code> (Format number with the dial code i.e. + 61), <code>'national'</code> (Format number without dial code i.e. 0321232)",inDemo:!0,options:["auto","national","international"]},{name:"onlyCountries",default:[],type:Array,description:"List of countries will be shown on the dropdown",inDemo:!1},{name:"preferredCountries",default:[],type:Array,description:"Preferred countries list, will be on top of the dropdown",inDemo:!1},{name:"styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the wrapper",inDemo:!1},{name:"validCharactersOnly",default:!1,type:Boolean,description:"Only allow valid characters in a phone number (will also verify in <code>mounted</code>, so phone number with invalid characters will be shown as an empty string)",inDemo:!1}],Lf=[...Pf].reduce((t,i)=>{if(i.name.includes(".")){const[e,o]=i.name.split(".");t[e]?Object.assign(t[e],{[o]:i.default}):Object.assign(t,{[e]:{[o]:i.default}})}else Object.assign(t,{[i.name]:i.default});return t},{}),Wo={options:{...Lf}};function et(t){const i=Wo.options[t];return typeof i>"u"?Wo.options[t]:i}function Nn(t){return t==null?void 0:t.toLowerCase()}function An(t){return t==null?void 0:t.toUpperCase()}const Rf={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])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|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]))|(?: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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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]|22"],"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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|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|73)|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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\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{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"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],[["(\\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[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"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","[27]\\d{6,7}|[34]\\d{5,7}|63\\d{6}|(?:5|8\\d\\d)\\d{7}",[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|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-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],[["(\\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{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"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)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"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[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-79])|(?:(?: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-2]))|(?: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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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",["[67]"],"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-5]"],"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]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\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})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\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]"]],["(\\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}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[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]],0,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[7-9]))\\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",["60|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[013-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","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"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]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",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-489]|3[5-9]|9)|8(?:0[89]|92)","5(?:2(?:[2-49]|8[235-9])|3[5-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-2]|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]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|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]","1(?:(?:[27]2|44|87|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-69]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",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[047]"]]]],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","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"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-6])"],"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[27]|3[0-37]))\\d{4}"],["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\d|62|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]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\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],[["(\\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-8]|[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}|[89]00\\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|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],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[1-5]"]],["(\\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{7}",[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",["6"],"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,[["(?:5056(?:[0-35-9]\\d|4[468])|73020\\d)\\d{4}|(?:4722|505[2-57-9]|983[289])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[0149]|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]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|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}"]]],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","810","(?:20|33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],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],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","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\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",["[23]"],"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]|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,0,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}"]]]}};function Vf(t,i){var e=Array.prototype.slice.call(i);return e.push(Rf),t.apply(this,e)}function ir(t){"@babel/helpers - typeof";return ir=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(i){return typeof i}:function(i){return i&&typeof Symbol=="function"&&i.constructor===Symbol&&i!==Symbol.prototype?"symbol":typeof i},ir(t)}function jf(t,i,e){return Object.defineProperty(t,"prototype",{writable:!1}),t}function Ff(t,i){if(!(t instanceof i))throw new TypeError("Cannot call a class as a function")}function qf(t,i){if(typeof i!="function"&&i!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(i&&i.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),i&&Dn(t,i)}function Hf(t){var i=Zo();return function(){var e=Mn(t),o;if(i){var a=Mn(this).constructor;o=Reflect.construct(e,arguments,a)}else o=e.apply(this,arguments);return zf(this,o)}}function zf(t,i){if(i&&(ir(i)==="object"||typeof i=="function"))return i;if(i!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Yo(t)}function Yo(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function rr(t){var i=typeof Map=="function"?new Map:void 0;return rr=function(e){if(e===null||!Uf(e))return e;if(typeof e!="function")throw new TypeError("Super expression must either be null or a function");if(typeof i<"u"){if(i.has(e))return i.get(e);i.set(e,o)}function o(){return pi(e,arguments,Mn(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),Dn(o,e)},rr(t)}function pi(t,i,e){return Zo()?pi=Reflect.construct:pi=function(o,a,r){var d=[null];d.push.apply(d,a);var c=Function.bind.apply(o,d),p=new c;return r&&Dn(p,r.prototype),p},pi.apply(null,arguments)}function Zo(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function Uf(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Dn(t,i){return Dn=Object.setPrototypeOf||function(e,o){return e.__proto__=o,e},Dn(t,i)}function Mn(t){return Mn=Object.setPrototypeOf?Object.getPrototypeOf:function(i){return i.__proto__||Object.getPrototypeOf(i)},Mn(t)}var Tt=(function(t){qf(e,t);var i=Hf(e);function e(o){var a;return Ff(this,e),a=i.call(this,o),Object.setPrototypeOf(Yo(a),e.prototype),a.name=a.constructor.name,a}return jf(e)})(rr(Error)),or=2,Kf=17,Gf=3,ht="0-90-9٠-٩۰-۹",Wf="-‐-―−ー-",Yf="//",Zf="..",Jf="  ­​⁠ ",Xf="()()[]\\[\\]",Qf="~⁓∼~",mi="".concat(Wf).concat(Yf).concat(Zf).concat(Jf).concat(Xf).concat(Qf),ar="++";function Jo(t,i){t=t.split("-"),i=i.split("-");for(var e=t[0].split("."),o=i[0].split("."),a=0;a<3;a++){var r=Number(e[a]),d=Number(o[a]);if(r>d)return 1;if(d>r)return-1;if(!isNaN(r)&&isNaN(d))return 1;if(isNaN(r)&&!isNaN(d))return-1}return t[1]&&i[1]?t[1]>i[1]?1:t[1]<i[1]?-1:0:!t[1]&&i[1]?1:t[1]&&!i[1]?-1:0}var eh={}.constructor;function gi(t){return t!=null&&t.constructor===eh}function lr(t){"@babel/helpers - typeof";return lr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(i){return typeof i}:function(i){return i&&typeof Symbol=="function"&&i.constructor===Symbol&&i!==Symbol.prototype?"symbol":typeof i},lr(t)}function yi(t,i){if(!(t instanceof i))throw new TypeError("Cannot call a class as a function")}function th(t,i){for(var e=0;e<i.length;e++){var o=i[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function bi(t,i,e){return i&&th(t.prototype,i),Object.defineProperty(t,"prototype",{writable:!1}),t}var nh="1.2.0",ih="1.7.35",Xo=" ext. ",rh=/^\d+$/,tt=(function(){function t(i){yi(this,t),sh(i),this.metadata=i,ta.call(this,i)}return bi(t,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter(function(i){return i!=="001"})}},{key:"getCountryMetadata",value:function(i){return this.metadata.countries[i]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(i){return this.getCountryMetadata(i)!==void 0}},{key:"hasCallingCode",value:function(i){if(this.getCountryCodesForCallingCode(i))return!0;if(this.nonGeographic()){if(this.nonGeographic()[i])return!0}else{var e=this.countryCallingCodes()[i];if(e&&e.length===1&&e[0]==="001")return!0}}},{key:"isNonGeographicCallingCode",value:function(i){return this.nonGeographic()?!!this.nonGeographic()[i]:!this.getCountryCodesForCallingCode(i)}},{key:"country",value:function(i){return this.selectNumberingPlan(i)}},{key:"selectNumberingPlan",value:function(i,e){if(i&&rh.test(i)&&(e=i,i=null),i&&i!=="001"){if(!this.hasCountry(i))throw new Error("Unknown country: ".concat(i));this.numberingPlan=new Qo(this.getCountryMetadata(i),this)}else if(e){if(!this.hasCallingCode(e))throw new Error("Unknown calling code: ".concat(e));this.numberingPlan=new Qo(this.getNumberingPlanMetadata(e),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(i){var e=this.countryCallingCodes()[i];if(e)return e.length===1&&e[0].length===3?void 0:e}},{key:"getCountryCodeForCallingCode",value:function(i){var e=this.getCountryCodesForCallingCode(i);if(e)return e[0]}},{key:"getNumberingPlanMetadata",value:function(i){var e=this.getCountryCodeForCallingCode(i);if(e)return this.getCountryMetadata(e);if(this.nonGeographic()){var o=this.nonGeographic()[i];if(o)return o}else{var a=this.countryCallingCodes()[i];if(a&&a.length===1&&a[0]==="001")return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(i){return this.numberingPlan.type(i)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(i){return this.selectNumberingPlan(i)}},{key:"hasSelectedNumberingPlan",value:function(){return this.numberingPlan!==void 0}}]),t})(),Qo=(function(){function t(i,e){yi(this,t),this.globalMetadataObject=e,this.metadata=i,ta.call(this,e.metadata)}return bi(t,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(i){return i[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var i=this,e=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return e.map(function(o){return new oh(o,i)})}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(i){return i[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return this.types()&&this.types().length===0?!1:!!this.types()}},{key:"type",value:function(i){if(this.hasTypes()&&ea(this.types(),i))return new lh(ea(this.types(),i),this)}},{key:"ext",value:function(){return this.v1||this.v2?Xo:this.metadata[13]||Xo}}]),t})(),oh=(function(){function t(i,e){yi(this,t),this._format=i,this.metadata=e}return bi(t,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!!(this.nationalPrefixFormattingRule()&&!ah.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),t})(),ah=/^\(?\$1\)?$/,lh=(function(){function t(i,e){yi(this,t),this.type=i,this.metadata=e}return bi(t,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),t})();function ea(t,i){switch(i){case"FIXED_LINE":return t[0];case"MOBILE":return t[1];case"TOLL_FREE":return t[2];case"PREMIUM_RATE":return t[3];case"PERSONAL_NUMBER":return t[4];case"VOICEMAIL":return t[5];case"UAN":return t[6];case"PAGER":return t[7];case"VOIP":return t[8];case"SHARED_COST":return t[9]}}function sh(t){if(!t)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!gi(t)||!gi(t.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(gi(t)?"an object of shape: { "+Object.keys(t).join(", ")+" }":"a "+ch(t)+": "+t,"."))}var ch=function(t){return lr(t)};function sr(t,i){if(i=new tt(i),i.hasCountry(t))return i.country(t).countryCallingCode();throw new Error("Unknown country: ".concat(t))}function dh(t,i){return i.countries.hasOwnProperty(t)}function ta(t){var i=t.version;typeof i=="number"?(this.v1=i===1,this.v2=i===2,this.v3=i===3,this.v4=i===4):i?Jo(i,nh)===-1?this.v2=!0:Jo(i,ih)===-1?this.v3=!0:this.v4=!0:this.v1=!0}var uh=";ext=",sn=function(t){return"([".concat(ht,"]{1,").concat(t,"})")};function na(t){var i="20",e="15",o="9",a="6",r="[  \\t,]*",d="[:\\..]?[  \\t,-]*",c="#?",p="(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)",s="(?:[xx##~~]|int|int)",h="[- ]+",f="[  \\t]*",l="(?:,{2}|;)",u=uh+sn(i),_=r+p+d+sn(i)+c,g=r+s+d+sn(o)+c,$=h+sn(a)+"#",v=f+l+d+sn(e)+c,b=f+"(?:,)+"+d+sn(o)+c;return u+"|"+_+"|"+g+"|"+$+"|"+v+"|"+b}var fh="["+ht+"]{"+or+"}",hh="["+ar+"]{0,1}(?:["+mi+"]*["+ht+"]){3,}["+mi+ht+"]*",ph=new RegExp("^["+ar+"]{0,1}(?:["+mi+"]*["+ht+"]){1,2}$","i"),mh=hh+"(?:"+na()+")?",gh=new RegExp("^"+fh+"$|^"+mh+"$","i");function yh(t){return t.length>=or&&gh.test(t)}function bh(t){return ph.test(t)}var ia=new RegExp("(?:"+na()+")$","i");function vh(t){var i=t.search(ia);if(i<0)return{};for(var e=t.slice(0,i),o=t.match(ia),a=1;a<o.length;){if(o[a])return{number:e,ext:o[a]};a++}}var _h={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function $h(t){return _h[t]}function wh(t,i){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=kh(t))||i){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
89
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function kh(t,i){if(t){if(typeof t=="string")return ra(t,i);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ra(t,i)}}function ra(t,i){(i==null||i>t.length)&&(i=t.length);for(var e=0,o=new Array(i);e<i;e++)o[e]=t[e];return o}function oa(t){for(var i="",e=wh(t.split("")),o;!(o=e()).done;){var a=o.value;i+=Ch(a,i)||""}return i}function Ch(t,i){return t==="+"?i?void 0:"+":$h(t)}function cr(t,i){return Oh(t,void 0,i)}function Oh(t,i,e){var o=e.type(i),a=o&&o.possibleLengths()||e.possibleLengths();if(!a)return"IS_POSSIBLE";var r=t.length,d=a[0];return d===r?"IS_POSSIBLE":d>r?"TOO_SHORT":a[a.length-1]<r?"TOO_LONG":a.indexOf(r,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function Eh(t,i,e){if(i===void 0&&(i={}),e=new tt(e),i.v2){if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}else{if(!t.phone)return!1;if(t.country){if(!e.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));e.country(t.country)}else{if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}}if(e.possibleLengths())return aa(t.phone||t.nationalNumber,e);if(t.countryCallingCode&&e.isNonGeographicCallingCode(t.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}function aa(t,i){switch(cr(t,i)){case"IS_POSSIBLE":return!0;default:return!1}}function Nt(t,i){return t=t||"",new RegExp("^(?:"+i+")$").test(t)}function Sh(t,i){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=xh(t))||i){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
90
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function xh(t,i){if(t){if(typeof t=="string")return la(t,i);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return la(t,i)}}function la(t,i){(i==null||i>t.length)&&(i=t.length);for(var e=0,o=new Array(i);e<i;e++)o[e]=t[e];return o}var Th=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function dr(t,i,e){if(i=i||{},!(!t.country&&!t.countryCallingCode)){e=new tt(e),e.selectNumberingPlan(t.country,t.countryCallingCode);var o=i.v2?t.nationalNumber:t.phone;if(Nt(o,e.nationalNumberPattern())){if(ur(o,"FIXED_LINE",e))return e.type("MOBILE")&&e.type("MOBILE").pattern()===""||!e.type("MOBILE")||ur(o,"MOBILE",e)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE";for(var a=Sh(Th),r;!(r=a()).done;){var d=r.value;if(ur(o,d,e))return d}}}}function ur(t,i,e){return i=e.type(i),!i||!i.pattern()||i.possibleLengths()&&i.possibleLengths().indexOf(t.length)<0?!1:Nt(t,i.pattern())}function Nh(t,i,e){if(i=i||{},e=new tt(e),e.selectNumberingPlan(t.country,t.countryCallingCode),e.hasTypes())return dr(t,i,e.metadata)!==void 0;var o=i.v2?t.nationalNumber:t.phone;return Nt(o,e.nationalNumberPattern())}function Ah(t,i,e){var o=new tt(e),a=o.getCountryCodesForCallingCode(t);return a?a.filter(function(r){return Dh(i,r,e)}):[]}function Dh(t,i,e){var o=new tt(e);return o.selectNumberingPlan(i),o.numberingPlan.possibleLengths().indexOf(t.length)>=0}function Mh(t){return t.replace(new RegExp("[".concat(mi,"]+"),"g")," ").trim()}var Bh=/(\$\d)/;function Ih(t,i,e){var o=e.useInternationalFormat,a=e.withNationalPrefix,r=t.replace(new RegExp(i.pattern()),o?i.internationalFormat():a&&i.nationalPrefixFormattingRule()?i.format().replace(Bh,i.nationalPrefixFormattingRule()):i.format());return o?Mh(r):r}var Ph=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function Lh(t,i,e){var o=new tt(e);if(o.selectNumberingPlan(t,i),o.defaultIDDPrefix())return o.defaultIDDPrefix();if(Ph.test(o.IDDPrefix()))return o.IDDPrefix()}function Rh(t){var i=t.number,e=t.ext;if(!i)return"";if(i[0]!=="+")throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(i).concat(e?";ext="+e:"")}function Vh(t,i){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=jh(t))||i){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
91
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function jh(t,i){if(t){if(typeof t=="string")return sa(t,i);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return sa(t,i)}}function sa(t,i){(i==null||i>t.length)&&(i=t.length);for(var e=0,o=new Array(i);e<i;e++)o[e]=t[e];return o}function ca(t,i){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);i&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function da(t){for(var i=1;i<arguments.length;i++){var e=arguments[i]!=null?arguments[i]:{};i%2?ca(Object(e),!0).forEach(function(o){Fh(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ca(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function Fh(t,i,e){return i in t?Object.defineProperty(t,i,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[i]=e,t}var ua={formatExtension:function(t,i,e){return"".concat(t).concat(e.ext()).concat(i)}};function qh(t,i,e,o){if(e?e=da(da({},ua),e):e=ua,o=new tt(o),t.country&&t.country!=="001"){if(!o.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));o.country(t.country)}else if(t.countryCallingCode)o.selectNumberingPlan(t.countryCallingCode);else return t.phone||"";var a=o.countryCallingCode(),r=e.v2?t.nationalNumber:t.phone,d;switch(i){case"NATIONAL":return r?(d=vi(r,t.carrierCode,"NATIONAL",o,e),fr(d,t.ext,o,e.formatExtension)):"";case"INTERNATIONAL":return r?(d=vi(r,null,"INTERNATIONAL",o,e),d="+".concat(a," ").concat(d),fr(d,t.ext,o,e.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(r);case"RFC3966":return Rh({number:"+".concat(a).concat(r),ext:t.ext});case"IDD":if(!e.fromCountry)return;var c=zh(r,t.carrierCode,a,e.fromCountry,o);return fr(c,t.ext,o,e.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(i,'"'))}}function vi(t,i,e,o,a){var r=Hh(o.formats(),t);return r?Ih(t,r,{useInternationalFormat:e==="INTERNATIONAL",withNationalPrefix:!(r.nationalPrefixIsOptionalWhenFormattingInNationalFormat()&&a&&a.nationalPrefix===!1)}):t}function Hh(t,i){for(var e=Vh(t),o;!(o=e()).done;){var a=o.value;if(a.leadingDigitsPatterns().length>0){var r=a.leadingDigitsPatterns()[a.leadingDigitsPatterns().length-1];if(i.search(r)!==0)continue}if(Nt(i,a.pattern()))return a}}function fr(t,i,e,o){return i?o(t,i,e):t}function zh(t,i,e,o,a){var r=sr(o,a.metadata);if(r===e){var d=vi(t,i,"NATIONAL",a);return e==="1"?e+" "+d:d}var c=Lh(o,void 0,a.metadata);if(c)return"".concat(c," ").concat(e," ").concat(vi(t,null,"INTERNATIONAL",a))}function fa(t,i){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);i&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ha(t){for(var i=1;i<arguments.length;i++){var e=arguments[i]!=null?arguments[i]:{};i%2?fa(Object(e),!0).forEach(function(o){Uh(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):fa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function Uh(t,i,e){return i in t?Object.defineProperty(t,i,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[i]=e,t}function Kh(t,i){if(!(t instanceof i))throw new TypeError("Cannot call a class as a function")}function Gh(t,i){for(var e=0;e<i.length;e++){var o=i[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Wh(t,i,e){return i&&Gh(t.prototype,i),Object.defineProperty(t,"prototype",{writable:!1}),t}var Yh=(function(){function t(i,e,o){if(Kh(this,t),!i)throw new TypeError("`country` or `countryCallingCode` not passed");if(!e)throw new TypeError("`nationalNumber` not passed");if(!o)throw new TypeError("`metadata` not passed");var a=Jh(i,o),r=a.country,d=a.countryCallingCode;this.country=r,this.countryCallingCode=d,this.nationalNumber=e,this.number="+"+this.countryCallingCode+this.nationalNumber,this.getMetadata=function(){return o}}return Wh(t,[{key:"setExt",value:function(i){this.ext=i}},{key:"getPossibleCountries",value:function(){return this.country?[this.country]:Ah(this.countryCallingCode,this.nationalNumber,this.getMetadata())}},{key:"isPossible",value:function(){return Eh(this,{v2:!0},this.getMetadata())}},{key:"isValid",value:function(){return Nh(this,{v2:!0},this.getMetadata())}},{key:"isNonGeographic",value:function(){var i=new tt(this.getMetadata());return i.isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(i){return this.number===i.number&&this.ext===i.ext}},{key:"getType",value:function(){return dr(this,{v2:!0},this.getMetadata())}},{key:"format",value:function(i,e){return qh(this,i,e?ha(ha({},e),{},{v2:!0}):{v2:!0},this.getMetadata())}},{key:"formatNational",value:function(i){return this.format("NATIONAL",i)}},{key:"formatInternational",value:function(i){return this.format("INTERNATIONAL",i)}},{key:"getURI",value:function(i){return this.format("RFC3966",i)}}]),t})(),Zh=function(t){return/^[A-Z]{2}$/.test(t)};function Jh(t,i){var e,o,a=new tt(i);return Zh(t)?(e=t,a.selectNumberingPlan(e),o=a.countryCallingCode()):o=t,{country:e,countryCallingCode:o}}var Xh=new RegExp("(["+ht+"])");function Qh(t,i,e,o){if(i){var a=new tt(o);a.selectNumberingPlan(i,e);var r=new RegExp(a.IDDPrefix());if(t.search(r)===0){t=t.slice(t.match(r)[0].length);var d=t.match(Xh);if(!(d&&d[1]!=null&&d[1].length>0&&d[1]==="0"))return t}}}function e1(t,i){if(t&&i.numberingPlan.nationalPrefixForParsing()){var e=new RegExp("^(?:"+i.numberingPlan.nationalPrefixForParsing()+")"),o=e.exec(t);if(o){var a,r,d=o.length-1,c=d>0&&o[d];if(i.nationalPrefixTransformRule()&&c)a=t.replace(e,i.nationalPrefixTransformRule()),d>1&&(r=o[1]);else{var p=o[0];a=t.slice(p.length),c&&(r=o[1])}var s;if(c){var h=t.indexOf(o[1]),f=t.slice(0,h);f===i.numberingPlan.nationalPrefix()&&(s=i.numberingPlan.nationalPrefix())}else s=o[0];return{nationalNumber:a,nationalPrefix:s,carrierCode:r}}}return{nationalNumber:t}}function hr(t,i){var e=e1(t,i),o=e.carrierCode,a=e.nationalNumber;if(a!==t){if(!t1(t,a,i))return{nationalNumber:t};if(i.possibleLengths()&&!n1(a,i))return{nationalNumber:t}}return{nationalNumber:a,carrierCode:o}}function t1(t,i,e){return!(Nt(t,e.nationalNumberPattern())&&!Nt(i,e.nationalNumberPattern()))}function n1(t,i){switch(cr(t,i)){case"TOO_SHORT":case"INVALID_LENGTH":return!1;default:return!0}}function i1(t,i,e,o){var a=i?sr(i,o):e;if(t.indexOf(a)===0){o=new tt(o),o.selectNumberingPlan(i,e);var r=t.slice(a.length),d=hr(r,o),c=d.nationalNumber,p=hr(t,o),s=p.nationalNumber;if(!Nt(s,o.nationalNumberPattern())&&Nt(c,o.nationalNumberPattern())||cr(s,o)==="TOO_LONG")return{countryCallingCode:a,number:r}}return{number:t}}function r1(t,i,e,o){if(!t)return{};var a;if(t[0]!=="+"){var r=Qh(t,i,e,o);if(r&&r!==t)a=!0,t="+"+r;else{if(i||e){var d=i1(t,i,e,o),c=d.countryCallingCode,p=d.number;if(c)return{countryCallingCodeSource:"FROM_NUMBER_WITHOUT_PLUS_SIGN",countryCallingCode:c,number:p}}return{number:t}}}if(t[1]==="0")return{};o=new tt(o);for(var s=2;s-1<=Gf&&s<=t.length;){var h=t.slice(1,s);if(o.hasCallingCode(h))return o.selectNumberingPlan(h),{countryCallingCodeSource:a?"FROM_NUMBER_WITH_IDD":"FROM_NUMBER_WITH_PLUS_SIGN",countryCallingCode:h,number:t.slice(s)};s++}return{}}function o1(t,i){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=a1(t))||i){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
92
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function a1(t,i){if(t){if(typeof t=="string")return pa(t,i);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return pa(t,i)}}function pa(t,i){(i==null||i>t.length)&&(i=t.length);for(var e=0,o=new Array(i);e<i;e++)o[e]=t[e];return o}function l1(t,i){var e=i.countries,o=i.defaultCountry,a=i.metadata;a=new tt(a);for(var r=[],d=o1(e),c;!(c=d()).done;){var p=c.value;if(a.country(p),a.leadingDigits()){if(t&&t.search(a.leadingDigits())===0)return p}else if(dr({phone:t,country:p},void 0,a.metadata))if(o){if(p===o)return p;r.push(p)}else return p}if(r.length>0)return r[0]}function s1(t,i){var e=i.nationalNumber,o=i.defaultCountry,a=i.metadata,r=a.getCountryCodesForCallingCode(t);if(r)return r.length===1?r[0]:l1(e,{countries:r,defaultCountry:o,metadata:a.metadata})}var ma="+",c1="[\\-\\.\\(\\)]?",ga="(["+ht+"]|"+c1+")",d1="^\\"+ma+ga+"*["+ht+"]"+ga+"*$",u1=new RegExp(d1,"g"),pr=ht,f1="["+pr+"]+((\\-)*["+pr+"])*",h1="a-zA-Z",p1="["+h1+"]+((\\-)*["+pr+"])*",m1="^("+f1+"\\.)*"+p1+"\\.?$",g1=new RegExp(m1,"g"),ya="tel:",mr=";phone-context=",y1=";isub=";function b1(t){var i=t.indexOf(mr);if(i<0)return null;var e=i+mr.length;if(e>=t.length)return"";var o=t.indexOf(";",e);return o>=0?t.substring(e,o):t.substring(e)}function v1(t){return t===null?!0:t.length===0?!1:u1.test(t)||g1.test(t)}function _1(t,i){var e=i.extractFormattedPhoneNumber,o=b1(t);if(!v1(o))throw new Tt("NOT_A_NUMBER");var a;if(o===null)a=e(t)||"";else{a="",o.charAt(0)===ma&&(a+=o);var r=t.indexOf(ya),d;r>=0?d=r+ya.length:d=0;var c=t.indexOf(mr);a+=t.substring(d,c)}var p=a.indexOf(y1);if(p>0&&(a=a.substring(0,p)),a!=="")return a}var $1=250,w1=new RegExp("["+ar+ht+"]"),k1=new RegExp("[^"+ht+"#]+$");function C1(t,i,e){if(i=i||{},e=new tt(e),i.defaultCountry&&!e.hasCountry(i.defaultCountry))throw i.v2?new Tt("INVALID_COUNTRY"):new Error("Unknown country: ".concat(i.defaultCountry));var o=E1(t,i.v2,i.extract),a=o.number,r=o.ext,d=o.error;if(!a){if(i.v2)throw d==="TOO_SHORT"?new Tt("TOO_SHORT"):new Tt("NOT_A_NUMBER");return{}}var c=x1(a,i.defaultCountry,i.defaultCallingCode,e),p=c.country,s=c.nationalNumber,h=c.countryCallingCode,f=c.countryCallingCodeSource,l=c.carrierCode;if(!e.hasSelectedNumberingPlan()){if(i.v2)throw new Tt("INVALID_COUNTRY");return{}}if(!s||s.length<or){if(i.v2)throw new Tt("TOO_SHORT");return{}}if(s.length>Kf){if(i.v2)throw new Tt("TOO_LONG");return{}}if(i.v2){var u=new Yh(h,s,e.metadata);return p&&(u.country=p),l&&(u.carrierCode=l),r&&(u.ext=r),u.__countryCallingCodeSource=f,u}var _=(i.extended?e.hasSelectedNumberingPlan():p)?Nt(s,e.nationalNumberPattern()):!1;return i.extended?{country:p,countryCallingCode:h,carrierCode:l,valid:_,possible:_?!0:!!(i.extended===!0&&e.possibleLengths()&&aa(s,e)),phone:s,ext:r}:_?S1(p,s,r):{}}function O1(t,i,e){if(t){if(t.length>$1){if(e)throw new Tt("TOO_LONG");return}if(i===!1)return t;var o=t.search(w1);if(!(o<0))return t.slice(o).replace(k1,"")}}function E1(t,i,e){var o=_1(t,{extractFormattedPhoneNumber:function(r){return O1(r,e,i)}});if(!o)return{};if(!yh(o))return bh(o)?{error:"TOO_SHORT"}:{};var a=vh(o);return a.ext?a:{number:o}}function S1(t,i,e){var o={country:t,phone:i};return e&&(o.ext=e),o}function x1(t,i,e,o){var a=r1(oa(t),i,e,o.metadata),r=a.countryCallingCodeSource,d=a.countryCallingCode,c=a.number,p;if(d)o.selectNumberingPlan(d);else if(c&&(i||e))o.selectNumberingPlan(i,e),i&&(p=i),d=e||sr(i,o.metadata);else return{};if(!c)return{countryCallingCodeSource:r,countryCallingCode:d};var s=hr(oa(c),o),h=s.nationalNumber,f=s.carrierCode,l=s1(d,{nationalNumber:h,defaultCountry:i,metadata:o});return l&&(p=l,l==="001"||o.country(p)),{country:p,countryCallingCode:d,countryCallingCodeSource:r,nationalNumber:h,carrierCode:f}}function ba(t,i){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);i&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function va(t){for(var i=1;i<arguments.length;i++){var e=arguments[i]!=null?arguments[i]:{};i%2?ba(Object(e),!0).forEach(function(o){T1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ba(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function T1(t,i,e){return i in t?Object.defineProperty(t,i,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[i]=e,t}function N1(t,i,e){return C1(t,va(va({},i),{},{v2:!0}),e)}function _a(t,i){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);i&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function A1(t){for(var i=1;i<arguments.length;i++){var e=arguments[i]!=null?arguments[i]:{};i%2?_a(Object(e),!0).forEach(function(o){D1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):_a(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function D1(t,i,e){return i in t?Object.defineProperty(t,i,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[i]=e,t}function M1(t,i){return L1(t)||P1(t,i)||I1(t,i)||B1()}function B1(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
93
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function I1(t,i){if(t){if(typeof t=="string")return $a(t,i);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return $a(t,i)}}function $a(t,i){(i==null||i>t.length)&&(i=t.length);for(var e=0,o=new Array(i);e<i;e++)o[e]=t[e];return o}function P1(t,i){var e=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e!=null){var o=[],a=!0,r=!1,d,c;try{for(e=e.call(t);!(a=(d=e.next()).done)&&(o.push(d.value),!(i&&o.length===i));a=!0);}catch(p){r=!0,c=p}finally{try{!a&&e.return!=null&&e.return()}finally{if(r)throw c}}return o}}function L1(t){if(Array.isArray(t))return t}function R1(t){var i=Array.prototype.slice.call(t),e=M1(i,4),o=e[0],a=e[1],r=e[2],d=e[3],c,p,s;if(typeof o=="string")c=o;else throw new TypeError("A text for parsing must be a string.");if(!a||typeof a=="string")d?(p=r,s=d):(p=void 0,s=r),a&&(p=A1({defaultCountry:a},p));else if(gi(a))r?(p=a,s=r):s=a;else throw new Error("Invalid second argument: ".concat(a));return{text:c,options:p,metadata:s}}function wa(t,i){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);i&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ka(t){for(var i=1;i<arguments.length;i++){var e=arguments[i]!=null?arguments[i]:{};i%2?wa(Object(e),!0).forEach(function(o){V1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):wa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function V1(t,i,e){return i in t?Object.defineProperty(t,i,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[i]=e,t}function j1(t,i,e){i&&i.defaultCountry&&!dh(i.defaultCountry,e)&&(i=ka(ka({},i),{},{defaultCountry:void 0}));try{return N1(t,i,e)}catch(o){if(!(o instanceof Tt))throw o}}function F1(){var t=R1(arguments),i=t.text,e=t.options,o=t.metadata;return j1(i,e,o)}function gr(){return Vf(F1,arguments)}const q1={beforeMount(t,i,e){if(typeof i.value!="function"){const o=e.context.name;let a=`[Vue-click-outside:] provided expression ${i.expression} is not a function, but has to be`;o&&(a+=`Found in component ${o}`),console.warn(a)}t.clickOutsideEvent=function(o){const a=o.composedPath?o.composedPath():o.path;t===o.target||t.contains(o.target)||a.includes(t)||i.value(o,t)},document.body.addEventListener("click",t.clickOutsideEvent)},unmounted(t){document.body.removeEventListener("click",t.clickOutsideEvent)}},H1=["aria-expanded","tabindex"],z1={class:"vti__selection"},U1={key:1,class:"vti__country-code"},K1={class:"vti__dropdown-arrow"},G1={key:0,class:"vti__search_box_container"},W1=["placeholder"],Y1=["onClick","onMousemove","aria-selected"],Z1={key:1},J1=["type","autocomplete","autofocus","disabled","id","maxlength","name","placeholder","readonly","required","tabindex","value","aria-describedby"],X1={directives:{Outside:ai},props:{modelValue:{type:String},value:String,inputName:{type:String,default:"phone"},autoDefaultCountry:{type:Boolean,default:!0},ignoredCountries:{type:Array,default:()=>[]},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1},showClearButton:{type:Boolean,default:!0}},emits:["update:modelValue","onReady"],components:{VueTelInput:n.defineComponent({name:"VueTelInput",directives:{clickOutside:q1},__name:"vue-tel-input",props:n.mergeModels({allCountries:{type:Array,default:()=>et("allCountries")},autoFormat:{type:Boolean,default:()=>et("autoFormat")},customValidate:{type:[Boolean,RegExp],default:()=>et("customValidate")},defaultCountry:{type:[String,Number],default:()=>et("defaultCountry")},disabled:{type:Boolean,default:()=>et("disabled")},autoDefaultCountry:{type:Boolean,default:()=>et("autoDefaultCountry")},dropdownOptions:{type:Object,default:()=>et("dropdownOptions")},ignoredCountries:{type:Array,default:()=>et("ignoredCountries")},inputOptions:{type:Object,default:()=>et("inputOptions")},invalidMsg:{type:String,default:()=>et("invalidMsg")},mode:{type:String,default:()=>et("mode")},onlyCountries:{type:Array,default:()=>et("onlyCountries")},preferredCountries:{type:Array,default:()=>et("preferredCountries")},validCharactersOnly:{type:Boolean,default:()=>et("validCharactersOnly")},styleClasses:{type:[String,Array,Object],default:()=>et("styleClasses")}},{modelValue:{type:String},modelModifiers:{}}),emits:n.mergeModels(["blur","close","country-changed","enter","focus","on-input","open","space","validate"],["update:modelValue"]),setup(t,{expose:i,emit:e}){const o=n.shallowRef(),a=n.shallowRef(),r=n.shallowRef(),d=e,c=t,p=n.useModel(t,"modelValue");n.watch(p,(A,B)=>{S()?s.phone=A??"":n.nextTick(()=>{s.phone=B??"",D()})});const s=n.reactive({phone:"",activeCountryCode:void 0,open:!1,finishMounted:!1,selectedIndex:null,typeToFindInput:"",typeToFindTimer:void 0,dropdownOpenDirection:"below",parsedPlaceholder:c.inputOptions.placeholder,searchQuery:""});n.watch(()=>s.open,A=>{A?(M(),d("open")):d("close")});const h=n.computed(()=>c.onlyCountries.length?c.allCountries.filter(({iso2:A})=>c.onlyCountries.some(B=>An(B)===A)):c.ignoredCountries.length?c.allCountries.filter(({iso2:A})=>!c.ignoredCountries.includes(An(A))&&!c.ignoredCountries.includes(Nn(A))):c.allCountries),f=n.computed(()=>b(s.activeCountryCode));n.watch(f,(A,B)=>{if(!A&&B!=null&&B.iso2){s.activeCountryCode=B.iso2;return}A!=null&&A.iso2&&d("country-changed",A)});const l=n.computed(()=>{var A;const B=Nn(c.mode);return B==="auto"?(A=s.phone)!=null&&A.startsWith("+")?"international":"national":["national","international","e.164","rfc3966","idd"].includes(B)?B:(console.error('Invalid value of prop "mode"'),"international")}),u=n.computed(()=>{const A=[...v(c.preferredCountries).map(H=>({...H,preferred:!0})),...h.value];if(!c.dropdownOptions.showSearchBox)return A;const B=s.searchQuery.toLowerCase().replace(/[~`!@#$%^&*()+={}\[\];:\'\"<>.,\/\\\?-_]/g,"");return A.filter(H=>new RegExp(B,"i").test(H.name)||new RegExp(B,"i").test(H.iso2)||new RegExp(B,"i").test(H.dialCode))}),_=n.computed(()=>{var A;const B=s.phone.startsWith("+")?gr(s.phone):gr(s.phone,s.activeCountryCode),H={country:B==null?void 0:B.country,countryCode:B==null?void 0:B.country,formatted:s.phone,valid:B==null?void 0:B.isValid(),possible:(A=B==null?void 0:B.isPossible)==null?void 0:A.call(B),nationalNumber:B==null?void 0:B.nationalNumber};return H.valid&&(H.formatted=B==null?void 0:B.format(An(l.value))),B!=null&&B.country&&(c.ignoredCountries.length||c.onlyCountries.length)&&!b(B.country)&&(H.valid=!1,H.possible=!1,B.country=null),B?{...H,...B}:H});n.watch(()=>_.value.countryCode,A=>{A&&(s.activeCountryCode=A)}),n.watch(()=>_.value.valid,()=>{d("validate",_.value)}),n.watch(()=>_.value.formatted,A=>{!c.autoFormat||c.customValidate||(E(A),n.nextTick(()=>{A&&!p.value&&(s.phone=A)}))}),n.watch(()=>c.inputOptions.placeholder,g),n.onMounted(()=>{p.value&&(s.phone=p.value.trim()),T(),$().then(()=>{var A;!s.phone&&(A=c.inputOptions)!=null&&A.showDialCode&&s.activeCountryCode&&(s.phone=`+${s.activeCountryCode}`),d("validate",_.value)}).catch(console.error).then(()=>{s.finishMounted=!0})});function g(){s.parsedPlaceholder=c.inputOptions.placeholder}function $(){return new Promise(A=>{var B;if(((B=s.phone)==null?void 0:B[0])==="+"){A();return}if(c.defaultCountry){if(typeof c.defaultCountry=="string"){w(c.defaultCountry),A();return}if(typeof c.defaultCountry=="number"){const q=y(c.defaultCountry);if(q){w(q.iso2),A();return}}}const H=c.preferredCountries[0]||h.value[0];c.autoDefaultCountry?Bf().then(q=>{w(q||s.activeCountryCode)}).catch(q=>{console.warn(q),w(H)}).then(()=>{A()}):(w(H),A())})}function v(A=[]){return A.map(b).filter(Boolean)}function b(A=""){return h.value.find(B=>B.iso2===An(A))}function y(A){return h.value.find(B=>Number(B.dialCode)===A)}function m(A,B){const H=s.selectedIndex===A,q=A===c.preferredCountries.length-1,L=c.preferredCountries.some(U=>An(U)===B);return{highlighted:H,"last-preferred":q,preferred:L}}function w(A){var B,H,q;let L=A;if(typeof L=="string"&&(L=b(L)),!!L){if(((B=s.phone)==null?void 0:B[0])==="+"&&L.iso2&&_.value.nationalNumber){s.activeCountryCode=L.iso2,s.phone=((H=gr(_.value.nationalNumber,L.iso2))==null?void 0:H.formatInternational())??"";return}if((q=c.inputOptions)!=null&&q.showDialCode&&L){s.phone=`+${L.dialCode}`,s.activeCountryCode=L.iso2;return}s.activeCountryCode=L.iso2,E(s.phone)}}function T(){const A=s.phone;if(c.validCharactersOnly){const B=s.phone.match(/[()\-+0-9\s]*/g);s.phone=B.join("")}if(c.customValidate&&c.customValidate instanceof RegExp){const B=s.phone.match(c.customValidate);s.phone=B.join("")}A!==s.phone&&E(s.phone)}function S(){return c.validCharactersOnly&&!/^[()\-+0-9\s]*$/.test(s.phone)?!1:c.customValidate?x():!0}function x(){return c.customValidate instanceof RegExp?c.customValidate.test(s.phone):!1}function D(){var A;(A=r.value)==null||A.setCustomValidity(_.value.valid?"":c.invalidMsg),E(s.phone)}function E(A){p.value=A,d("on-input",A,_.value,r.value)}function C(A){d("blur",A)}function O(A){If(r.value,s.phone.length),d("focus",A)}function N(A){d("enter",A)}function P(A){d("space",A)}function F(){var A;(A=r.value)==null||A.focus()}function K(){var A;(A=r.value)==null||A.blur()}function W(){c.disabled||c.dropdownOptions.disabled||(s.searchQuery="",s.open=!s.open)}function ee(){s.open=!1}function G(A){if(A.keyCode===40){A.preventDefault(),s.open=!0,s.selectedIndex===null?s.selectedIndex=0:s.selectedIndex=Math.min(u.value.length-1,s.selectedIndex+1);const B=a.value.children[s.selectedIndex];B.focus(),B.offsetTop+B.clientHeight>a.value.scrollTop+a.value.clientHeight&&(a.value.scrollTop=B.offsetTop-a.value.clientHeight+B.clientHeight)}else if(A.keyCode===38){A.preventDefault(),s.open=!0,s.selectedIndex===null?s.selectedIndex=u.value.length-1:s.selectedIndex=Math.max(0,s.selectedIndex-1);const B=a.value.children[s.selectedIndex];B.focus(),B.offsetTop<a.value.scrollTop&&(a.value.scrollTop=B.offsetTop)}else if(A.keyCode===13)s.selectedIndex!==null&&w(u.value[s.selectedIndex]),s.open=!s.open;else if(s.open){s.typeToFindInput+=A.key,clearTimeout(s.typeToFindTimer),s.typeToFindTimer=setTimeout(()=>{s.typeToFindInput=""},700);const B=u.value.slice(c.preferredCountries.length).findIndex(H=>Nn(H.name).startsWith(s.typeToFindInput));if(B>=0){s.selectedIndex=c.preferredCountries.length+B;const H=a.value.children[s.selectedIndex],q=H.offsetTop<a.value.scrollTop,L=H.offsetTop+H.clientHeight>a.value.scrollTop+a.value.clientHeight;(q||L)&&(a.value.scrollTop=H.offsetTop-a.value.clientHeight/2)}}}function V(){s.selectedIndex=u.value.map(A=>A.iso2).indexOf(s.activeCountryCode),s.open=!1}function M(){window.innerHeight-o.value.getBoundingClientRect().bottom>200?s.dropdownOpenDirection="below":s.dropdownOpenDirection="above"}return i({focus:F,blur:K}),(A,B)=>{const H=n.resolveDirective("click-outside");return n.openBlock(),n.createElementBlock("div",{ref_key:"refRoot",ref:o,class:n.normalizeClass(["vue-tel-input",t.styleClasses,{disabled:t.disabled}])},[n.withDirectives((n.openBlock(),n.createElementBlock("div",{"aria-label":"Country Code Selector","aria-haspopup":"listbox","aria-expanded":s.open,role:"button",class:n.normalizeClass(["vti__dropdown",{open:s.open,disabled:t.dropdownOptions.disabled}]),tabindex:t.dropdownOptions.tabindex,onKeydown:[G,n.withKeys(W,["space"]),n.withKeys(V,["esc"]),n.withKeys(V,["tab"])],onClick:W},[n.createElementVNode("span",z1,[t.dropdownOptions.showFlags?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass(["vti__flag",n.unref(Nn)(s.activeCountryCode)])},null,2)):n.createCommentVNode("",!0),t.dropdownOptions.showDialCodeInSelection?(n.openBlock(),n.createElementBlock("span",U1," +"+n.toDisplayString(f.value&&f.value.dialCode),1)):n.createCommentVNode("",!0),n.renderSlot(A.$slots,"arrow-icon",{open:s.open},()=>[n.createElementVNode("span",K1,n.toDisplayString(s.open?"▲":"▼"),1)])]),s.open?(n.openBlock(),n.createElementBlock("ul",{key:0,ref_key:"refList",ref:a,class:n.normalizeClass(["vti__dropdown-list",s.dropdownOpenDirection]),role:"listbox"},[t.dropdownOptions.showSearchBox?(n.openBlock(),n.createElementBlock("div",G1,[n.renderSlot(A.$slots,"search-icon"),n.withDirectives(n.createElementVNode("input",{class:n.normalizeClass(["vti__input","vti__search_box"]),"aria-label":"Search by country name or country code",placeholder:t.dropdownOptions.searchBoxPlaceholder||(u.value.length?u.value[0].name:""),type:"text","onUpdate:modelValue":B[0]||(B[0]=q=>s.searchQuery=q),onClick:B[1]||(B[1]=n.withModifiers(()=>{},["stop"]))},null,8,W1),[[n.vModelText,s.searchQuery]])])):n.createCommentVNode("",!0),(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(u.value,(q,L)=>(n.openBlock(),n.createElementBlock("li",{role:"option",class:n.normalizeClass(["vti__dropdown-item",m(L,q.iso2)]),key:q.iso2+(q.preferred?"-preferred":""),tabindex:"-1",onClick:U=>w(q),onMousemove:U=>s.selectedIndex=L,"aria-selected":s.activeCountryCode===q.iso2&&!q.preferred},[t.dropdownOptions.showFlags?(n.openBlock(),n.createElementBlock("span",{key:0,class:n.normalizeClass(["vti__flag",n.unref(Nn)(q.iso2)])},null,2)):n.createCommentVNode("",!0),n.createElementVNode("strong",null,n.toDisplayString(q.name),1),t.dropdownOptions.showDialCodeInList?(n.openBlock(),n.createElementBlock("span",Z1," +"+n.toDisplayString(q.dialCode),1)):n.createCommentVNode("",!0)],42,Y1))),128))],2)):n.createCommentVNode("",!0)],42,H1)),[[H,ee]]),n.withDirectives(n.createElementVNode("input",{"onUpdate:modelValue":B[2]||(B[2]=q=>s.phone=q),ref_key:"refInput",ref:r,type:t.inputOptions.type,autocomplete:t.inputOptions.autocomplete,autofocus:t.inputOptions.autofocus,class:n.normalizeClass(["vti__input","vti__phone",t.inputOptions.styleClasses]),disabled:t.disabled,id:t.inputOptions.id,maxlength:t.inputOptions.maxlength,name:t.inputOptions.name,placeholder:s.parsedPlaceholder,readonly:t.inputOptions.readonly,required:t.inputOptions.required,tabindex:t.inputOptions.tabindex,value:p.value,"aria-describedby":t.inputOptions["aria-describedby"],onBlur:C,onFocus:O,onInput:D,onKeyup:[n.withKeys(N,["enter"]),n.withKeys(P,["space"])]},null,42,J1),[[n.vModelDynamic,s.phone]]),n.renderSlot(A.$slots,"icon-right")],2)}}}),IbIconButton:Xe,IbAlert:jt,IbIcon:Le},data(){return{vueTel:null,dialCode:"",defaultCountry:"US",allowChange:!1}},mounted(){this.vueTel=this.$refs.vueTel,this.$emit("onReady")},computed:{phone:{get(){return this.modelValue},set(t){this.$emit("update:modelValue",t)}}},methods:{countryChanged(t){this.$globalEvents.$on("countrySelectValue",i=>{this.vueTel.choose(i)}),!this.phone||this.phone.length-1<this.dialCode.length?this.phone="+"+t.dialCode:this.dialCode&&(this.phone=this.phone.replace(this.dialCode,t.dialCode)),this.dialCode=t.dialCode},clickOutside(){this.vueTel.open&&this.vueTel.clickedOutside()},clearPhone(){this.phone=""}}},Q1={class:"ib-phone-wrapper"};function ep(t,i,e,o,a,r){const d=n.resolveComponent("ib-alert"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-icon-button"),s=n.resolveComponent("vue-tel-input"),h=n.resolveDirective("outside");return n.openBlock(),n.createElementBlock(n.Fragment,null,[e.errorMessage.length?(n.openBlock(),n.createBlock(d,{key:0,class:"ib-phone-error-message"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.createElementVNode("div",Q1,[n.withDirectives((n.openBlock(),n.createBlock(s,n.mergeProps({modelValue:r.phone,"onUpdate:modelValue":i[0]||(i[0]=f=>r.phone=f)},t.$attrs,{onCountryChanged:r.countryChanged,"input-options":{name:e.inputName,id:e.inputName,autocomplete:"tel"},"auto-default-country":e.autoDefaultCountry,"dropdown-options":{showSearchBox:!0,showFlags:!0,tabindex:0},defaultCountry:a.defaultCountry,ignoredCountries:e.ignoredCountries,class:{error:e.error||e.errorMessage.length,disabled:e.disabled},disabled:e.disabled,"style-classes":"ib-phone-input",ref:"vueTel"}),{"arrow-icon":n.withCtx(()=>[n.createVNode(c,{name:"chevron-down-outline"})]),"icon-right":n.withCtx(()=>[e.showClearButton?n.withDirectives((n.openBlock(),n.createBlock(p,{key:0,kind:"ghost",class:"ib-phone-clear-button",onClick:r.clearPhone},{default:n.withCtx(()=>[n.createVNode(c,{name:"close-outline"})]),_:1},8,["onClick"])),[[n.vShow,r.phone.length]]):n.createCommentVNode("",!0)]),_:1},16,["modelValue","onCountryChanged","input-options","auto-default-country","defaultCountry","ignoredCountries","class","disabled"])),[[h,r.clickOutside]])])],64)}const tp=be(X1,[["render",ep]]);var _i={exports:{}};/*!
92
94
  * Quill Editor v1.3.7
93
95
  * https://quilljs.com/
94
96
  * Copyright (c) 2014, Jason Chen
95
97
  * Copyright (c) 2013, salesforce.com
96
- */(function(t,n){(function(o,a){t.exports=a()})(typeof self<"u"?self:je,function(){return function(e){var o={};function a(i){if(o[i])return o[i].exports;var s=o[i]={i,l:!1,exports:{}};return e[i].call(s.exports,s,s.exports,a),s.l=!0,s.exports}return a.m=e,a.c=o,a.d=function(i,s,l){a.o(i,s)||Object.defineProperty(i,s,{configurable:!1,enumerable:!0,get:l})},a.n=function(i){var s=i&&i.__esModule?function(){return i.default}:function(){return i};return a.d(s,"a",s),s},a.o=function(i,s){return Object.prototype.hasOwnProperty.call(i,s)},a.p="",a(a.s=109)}([function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(17),s=a(18),l=a(19),u=a(45),d=a(46),p=a(47),f=a(48),c=a(49),h=a(12),v=a(32),m=a(33),_=a(31),y=a(1),g={Scope:y.Scope,create:y.create,find:y.find,query:y.query,register:y.register,Container:i.default,Format:s.default,Leaf:l.default,Embed:f.default,Scroll:u.default,Block:p.default,Inline:d.default,Text:c.default,Attributor:{Attribute:h.default,Class:v.default,Style:m.default,Store:_.default}};o.default=g},function(e,o,a){var i=this&&this.__extends||function(){var _=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(y,g){y.__proto__=g}||function(y,g){for(var w in g)g.hasOwnProperty(w)&&(y[w]=g[w])};return function(y,g){_(y,g);function w(){this.constructor=y}y.prototype=g===null?Object.create(g):(w.prototype=g.prototype,new w)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=function(_){i(y,_);function y(g){var w=this;return g="[Parchment] "+g,w=_.call(this,g)||this,w.message=g,w.name=w.constructor.name,w}return y}(Error);o.ParchmentError=s;var l={},u={},d={},p={};o.DATA_KEY="__blot";var f;(function(_){_[_.TYPE=3]="TYPE",_[_.LEVEL=12]="LEVEL",_[_.ATTRIBUTE=13]="ATTRIBUTE",_[_.BLOT=14]="BLOT",_[_.INLINE=7]="INLINE",_[_.BLOCK=11]="BLOCK",_[_.BLOCK_BLOT=10]="BLOCK_BLOT",_[_.INLINE_BLOT=6]="INLINE_BLOT",_[_.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",_[_.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",_[_.ANY=15]="ANY"})(f=o.Scope||(o.Scope={}));function c(_,y){var g=v(_);if(g==null)throw new s("Unable to create "+_+" blot");var w=g,b=_ instanceof Node||_.nodeType===Node.TEXT_NODE?_:w.create(y);return new w(b,y)}o.create=c;function h(_,y){return y===void 0&&(y=!1),_==null?null:_[o.DATA_KEY]!=null?_[o.DATA_KEY].blot:y?h(_.parentNode,y):null}o.find=h;function v(_,y){y===void 0&&(y=f.ANY);var g;if(typeof _=="string")g=p[_]||l[_];else if(_ instanceof Text||_.nodeType===Node.TEXT_NODE)g=p.text;else if(typeof _=="number")_&f.LEVEL&f.BLOCK?g=p.block:_&f.LEVEL&f.INLINE&&(g=p.inline);else if(_ instanceof HTMLElement){var w=(_.getAttribute("class")||"").split(/\s+/);for(var b in w)if(g=u[w[b]],g)break;g=g||d[_.tagName]}return g==null?null:y&f.LEVEL&g.scope&&y&f.TYPE&g.scope?g:null}o.query=v;function m(){for(var _=[],y=0;y<arguments.length;y++)_[y]=arguments[y];if(_.length>1)return _.map(function(b){return m(b)});var g=_[0];if(typeof g.blotName!="string"&&typeof g.attrName!="string")throw new s("Invalid definition");if(g.blotName==="abstract")throw new s("Cannot register abstract class");if(p[g.blotName||g.attrName]=g,typeof g.keyName=="string")l[g.keyName]=g;else if(g.className!=null&&(u[g.className]=g),g.tagName!=null){Array.isArray(g.tagName)?g.tagName=g.tagName.map(function(b){return b.toUpperCase()}):g.tagName=g.tagName.toUpperCase();var w=Array.isArray(g.tagName)?g.tagName:[g.tagName];w.forEach(function(b){(d[b]==null||g.className==null)&&(d[b]=g)})}return g}o.register=m},function(e,o,a){var i=a(51),s=a(11),l=a(3),u=a(20),d=String.fromCharCode(0),p=function(f){Array.isArray(f)?this.ops=f:f!=null&&Array.isArray(f.ops)?this.ops=f.ops:this.ops=[]};p.prototype.insert=function(f,c){var h={};return f.length===0?this:(h.insert=f,c!=null&&typeof c=="object"&&Object.keys(c).length>0&&(h.attributes=c),this.push(h))},p.prototype.delete=function(f){return f<=0?this:this.push({delete:f})},p.prototype.retain=function(f,c){if(f<=0)return this;var h={retain:f};return c!=null&&typeof c=="object"&&Object.keys(c).length>0&&(h.attributes=c),this.push(h)},p.prototype.push=function(f){var c=this.ops.length,h=this.ops[c-1];if(f=l(!0,{},f),typeof h=="object"){if(typeof f.delete=="number"&&typeof h.delete=="number")return this.ops[c-1]={delete:h.delete+f.delete},this;if(typeof h.delete=="number"&&f.insert!=null&&(c-=1,h=this.ops[c-1],typeof h!="object"))return this.ops.unshift(f),this;if(s(f.attributes,h.attributes)){if(typeof f.insert=="string"&&typeof h.insert=="string")return this.ops[c-1]={insert:h.insert+f.insert},typeof f.attributes=="object"&&(this.ops[c-1].attributes=f.attributes),this;if(typeof f.retain=="number"&&typeof h.retain=="number")return this.ops[c-1]={retain:h.retain+f.retain},typeof f.attributes=="object"&&(this.ops[c-1].attributes=f.attributes),this}}return c===this.ops.length?this.ops.push(f):this.ops.splice(c,0,f),this},p.prototype.chop=function(){var f=this.ops[this.ops.length-1];return f&&f.retain&&!f.attributes&&this.ops.pop(),this},p.prototype.filter=function(f){return this.ops.filter(f)},p.prototype.forEach=function(f){this.ops.forEach(f)},p.prototype.map=function(f){return this.ops.map(f)},p.prototype.partition=function(f){var c=[],h=[];return this.forEach(function(v){var m=f(v)?c:h;m.push(v)}),[c,h]},p.prototype.reduce=function(f,c){return this.ops.reduce(f,c)},p.prototype.changeLength=function(){return this.reduce(function(f,c){return c.insert?f+u.length(c):c.delete?f-c.delete:f},0)},p.prototype.length=function(){return this.reduce(function(f,c){return f+u.length(c)},0)},p.prototype.slice=function(f,c){f=f||0,typeof c!="number"&&(c=1/0);for(var h=[],v=u.iterator(this.ops),m=0;m<c&&v.hasNext();){var _;m<f?_=v.next(f-m):(_=v.next(c-m),h.push(_)),m+=u.length(_)}return new p(h)},p.prototype.compose=function(f){var c=u.iterator(this.ops),h=u.iterator(f.ops),v=[],m=h.peek();if(m!=null&&typeof m.retain=="number"&&m.attributes==null){for(var _=m.retain;c.peekType()==="insert"&&c.peekLength()<=_;)_-=c.peekLength(),v.push(c.next());m.retain-_>0&&h.next(m.retain-_)}for(var y=new p(v);c.hasNext()||h.hasNext();)if(h.peekType()==="insert")y.push(h.next());else if(c.peekType()==="delete")y.push(c.next());else{var g=Math.min(c.peekLength(),h.peekLength()),w=c.next(g),b=h.next(g);if(typeof b.retain=="number"){var k={};typeof w.retain=="number"?k.retain=g:k.insert=w.insert;var T=u.attributes.compose(w.attributes,b.attributes,typeof w.retain=="number");if(T&&(k.attributes=T),y.push(k),!h.hasNext()&&s(y.ops[y.ops.length-1],k)){var S=new p(c.rest());return y.concat(S).chop()}}else typeof b.delete=="number"&&typeof w.retain=="number"&&y.push(b)}return y.chop()},p.prototype.concat=function(f){var c=new p(this.ops.slice());return f.ops.length>0&&(c.push(f.ops[0]),c.ops=c.ops.concat(f.ops.slice(1))),c},p.prototype.diff=function(f,c){if(this.ops===f.ops)return new p;var h=[this,f].map(function(g){return g.map(function(w){if(w.insert!=null)return typeof w.insert=="string"?w.insert:d;var b=g===f?"on":"with";throw new Error("diff() called "+b+" non-document")}).join("")}),v=new p,m=i(h[0],h[1],c),_=u.iterator(this.ops),y=u.iterator(f.ops);return m.forEach(function(g){for(var w=g[1].length;w>0;){var b=0;switch(g[0]){case i.INSERT:b=Math.min(y.peekLength(),w),v.push(y.next(b));break;case i.DELETE:b=Math.min(w,_.peekLength()),_.next(b),v.delete(b);break;case i.EQUAL:b=Math.min(_.peekLength(),y.peekLength(),w);var k=_.next(b),T=y.next(b);s(k.insert,T.insert)?v.retain(b,u.attributes.diff(k.attributes,T.attributes)):v.push(T).delete(b);break}w-=b}}),v.chop()},p.prototype.eachLine=function(f,c){c=c||`
97
- `;for(var h=u.iterator(this.ops),v=new p,m=0;h.hasNext();){if(h.peekType()!=="insert")return;var _=h.peek(),y=u.length(_)-h.peekLength(),g=typeof _.insert=="string"?_.insert.indexOf(c,y)-y:-1;if(g<0)v.push(h.next());else if(g>0)v.push(h.next(g));else{if(f(v,h.next(1).attributes||{},m)===!1)return;m+=1,v=new p}}v.length()>0&&f(v,{},m)},p.prototype.transform=function(f,c){if(c=!!c,typeof f=="number")return this.transformPosition(f,c);for(var h=u.iterator(this.ops),v=u.iterator(f.ops),m=new p;h.hasNext()||v.hasNext();)if(h.peekType()==="insert"&&(c||v.peekType()!=="insert"))m.retain(u.length(h.next()));else if(v.peekType()==="insert")m.push(v.next());else{var _=Math.min(h.peekLength(),v.peekLength()),y=h.next(_),g=v.next(_);if(y.delete)continue;g.delete?m.push(g):m.retain(_,u.attributes.transform(y.attributes,g.attributes,c))}return m.chop()},p.prototype.transformPosition=function(f,c){c=!!c;for(var h=u.iterator(this.ops),v=0;h.hasNext()&&v<=f;){var m=h.peekLength(),_=h.peekType();if(h.next(),_==="delete"){f-=Math.min(m,f-v);continue}else _==="insert"&&(v<f||!c)&&(f+=m);v+=m}return f},e.exports=p},function(e,o){var a=Object.prototype.hasOwnProperty,i=Object.prototype.toString,s=Object.defineProperty,l=Object.getOwnPropertyDescriptor,u=function(h){return typeof Array.isArray=="function"?Array.isArray(h):i.call(h)==="[object Array]"},d=function(h){if(!h||i.call(h)!=="[object Object]")return!1;var v=a.call(h,"constructor"),m=h.constructor&&h.constructor.prototype&&a.call(h.constructor.prototype,"isPrototypeOf");if(h.constructor&&!v&&!m)return!1;var _;for(_ in h);return typeof _>"u"||a.call(h,_)},p=function(h,v){s&&v.name==="__proto__"?s(h,v.name,{enumerable:!0,configurable:!0,value:v.newValue,writable:!0}):h[v.name]=v.newValue},f=function(h,v){if(v==="__proto__")if(a.call(h,v)){if(l)return l(h,v).value}else return;return h[v]};e.exports=function c(){var h,v,m,_,y,g,w=arguments[0],b=1,k=arguments.length,T=!1;for(typeof w=="boolean"&&(T=w,w=arguments[1]||{},b=2),(w==null||typeof w!="object"&&typeof w!="function")&&(w={});b<k;++b)if(h=arguments[b],h!=null)for(v in h)m=f(w,v),_=f(h,v),w!==_&&(T&&_&&(d(_)||(y=u(_)))?(y?(y=!1,g=m&&u(m)?m:[]):g=m&&d(m)?m:{},p(w,{name:v,newValue:c(T,g,_)})):typeof _<"u"&&p(w,{name:v,newValue:_}));return w}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BlockEmbed=o.bubbleFormats=void 0;var i=function(){function C(O,N){for(var R=0;R<N.length;R++){var q=N[R];q.enumerable=q.enumerable||!1,q.configurable=!0,"value"in q&&(q.writable=!0),Object.defineProperty(O,q.key,q)}}return function(O,N,R){return N&&C(O.prototype,N),R&&C(O,R),O}}(),s=function C(O,N,R){O===null&&(O=Function.prototype);var q=Object.getOwnPropertyDescriptor(O,N);if(q===void 0){var W=Object.getPrototypeOf(O);return W===null?void 0:C(W,N,R)}else{if("value"in q)return q.value;var Y=q.get;return Y===void 0?void 0:Y.call(R)}},l=a(3),u=w(l),d=a(2),p=w(d),f=a(0),c=w(f),h=a(16),v=w(h),m=a(6),_=w(m),y=a(7),g=w(y);function w(C){return C&&C.__esModule?C:{default:C}}function b(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function k(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function T(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var S=1,x=function(C){T(O,C);function O(){return b(this,O),k(this,(O.__proto__||Object.getPrototypeOf(O)).apply(this,arguments))}return i(O,[{key:"attach",value:function(){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"attach",this).call(this),this.attributes=new c.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return new p.default().insert(this.value(),(0,u.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(R,q){var W=c.default.query(R,c.default.Scope.BLOCK_ATTRIBUTE);W!=null&&this.attributes.attribute(W,q)}},{key:"formatAt",value:function(R,q,W,Y){this.format(W,Y)}},{key:"insertAt",value:function(R,q,W){if(typeof q=="string"&&q.endsWith(`
98
- `)){var Y=c.default.create(M.blotName);this.parent.insertBefore(Y,R===0?this:this.next),Y.insertAt(0,q.slice(0,-1))}else s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,R,q,W)}}]),O}(c.default.Embed);x.scope=c.default.Scope.BLOCK_BLOT;var M=function(C){T(O,C);function O(N){b(this,O);var R=k(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N));return R.cache={},R}return i(O,[{key:"delta",value:function(){return this.cache.delta==null&&(this.cache.delta=this.descendants(c.default.Leaf).reduce(function(R,q){return q.length()===0?R:R.insert(q.value(),E(q))},new p.default).insert(`
99
- `,E(this))),this.cache.delta}},{key:"deleteAt",value:function(R,q){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"deleteAt",this).call(this,R,q),this.cache={}}},{key:"formatAt",value:function(R,q,W,Y){q<=0||(c.default.query(W,c.default.Scope.BLOCK)?R+q===this.length()&&this.format(W,Y):s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"formatAt",this).call(this,R,Math.min(q,this.length()-R-1),W,Y),this.cache={})}},{key:"insertAt",value:function(R,q,W){if(W!=null)return s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,R,q,W);if(q.length!==0){var Y=q.split(`
100
- `),re=Y.shift();re.length>0&&(R<this.length()-1||this.children.tail==null?s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,Math.min(R,this.length()-1),re):this.children.tail.insertAt(this.children.tail.length(),re),this.cache={});var K=this;Y.reduce(function(V,D){return K=K.split(V,!0),K.insertAt(0,D),D.length},R+re.length)}}},{key:"insertBefore",value:function(R,q){var W=this.children.head;s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertBefore",this).call(this,R,q),W instanceof v.default&&W.remove(),this.cache={}}},{key:"length",value:function(){return this.cache.length==null&&(this.cache.length=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"length",this).call(this)+S),this.cache.length}},{key:"moveChildren",value:function(R,q){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"moveChildren",this).call(this,R,q),this.cache={}}},{key:"optimize",value:function(R){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"optimize",this).call(this,R),this.cache={}}},{key:"path",value:function(R){return s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"path",this).call(this,R,!0)}},{key:"removeChild",value:function(R){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"removeChild",this).call(this,R),this.cache={}}},{key:"split",value:function(R){var q=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(q&&(R===0||R>=this.length()-S)){var W=this.clone();return R===0?(this.parent.insertBefore(W,this),this):(this.parent.insertBefore(W,this.next),W)}else{var Y=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"split",this).call(this,R,q);return this.cache={},Y}}}]),O}(c.default.Block);M.blotName="block",M.tagName="P",M.defaultChild="break",M.allowedChildren=[_.default,c.default.Embed,g.default];function E(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return C==null||(typeof C.formats=="function"&&(O=(0,u.default)(O,C.formats())),C.parent==null||C.parent.blotName=="scroll"||C.parent.statics.scope!==C.statics.scope)?O:E(C.parent,O)}o.bubbleFormats=E,o.BlockEmbed=x,o.default=M},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.overload=o.expandConfig=void 0;var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(K){return typeof K}:function(K){return K&&typeof Symbol=="function"&&K.constructor===Symbol&&K!==Symbol.prototype?"symbol":typeof K},s=function(){function K(V,D){var A=[],I=!0,U=!1,F=void 0;try{for(var L=V[Symbol.iterator](),z;!(I=(z=L.next()).done)&&(A.push(z.value),!(D&&A.length===D));I=!0);}catch(Z){U=!0,F=Z}finally{try{!I&&L.return&&L.return()}finally{if(U)throw F}}return A}return function(V,D){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return K(V,D);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function K(V,D){for(var A=0;A<D.length;A++){var I=D[A];I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(V,I.key,I)}}return function(V,D,A){return D&&K(V.prototype,D),A&&K(V,A),V}}();a(50);var u=a(2),d=E(u),p=a(14),f=E(p),c=a(8),h=E(c),v=a(9),m=E(v),_=a(0),y=E(_),g=a(15),w=E(g),b=a(3),k=E(b),T=a(10),S=E(T),x=a(34),M=E(x);function E(K){return K&&K.__esModule?K:{default:K}}function C(K,V,D){return V in K?Object.defineProperty(K,V,{value:D,enumerable:!0,configurable:!0,writable:!0}):K[V]=D,K}function O(K,V){if(!(K instanceof V))throw new TypeError("Cannot call a class as a function")}var N=(0,S.default)("quill"),R=function(){l(K,null,[{key:"debug",value:function(D){D===!0&&(D="log"),S.default.level(D)}},{key:"find",value:function(D){return D.__quill||y.default.find(D)}},{key:"import",value:function(D){return this.imports[D]==null&&N.error("Cannot import "+D+". Are you sure it was registered?"),this.imports[D]}},{key:"register",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(typeof D!="string"){var F=D.attrName||D.blotName;typeof F=="string"?this.register("formats/"+F,D,A):Object.keys(D).forEach(function(L){I.register(L,D[L],A)})}else this.imports[D]!=null&&!U&&N.warn("Overwriting "+D+" with",A),this.imports[D]=A,(D.startsWith("blots/")||D.startsWith("formats/"))&&A.blotName!=="abstract"?y.default.register(A):D.startsWith("modules")&&typeof A.register=="function"&&A.register()}}]);function K(V){var D=this,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(O(this,K),this.options=q(V,A),this.container=this.options.container,this.container==null)return N.error("Invalid Quill container",V);this.options.debug&&K.debug(this.options.debug);var I=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new h.default,this.scroll=y.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new f.default(this.scroll),this.selection=new w.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(h.default.events.EDITOR_CHANGE,function(F){F===h.default.events.TEXT_CHANGE&&D.root.classList.toggle("ql-blank",D.editor.isBlank())}),this.emitter.on(h.default.events.SCROLL_UPDATE,function(F,L){var z=D.selection.lastRange,Z=z&&z.length===0?z.index:void 0;W.call(D,function(){return D.editor.update(null,L,Z)},F)});var U=this.clipboard.convert(`<div class='ql-editor' style="white-space: normal;">`+I+"<p><br></p></div>");this.setContents(U),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return l(K,[{key:"addContainer",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(typeof D=="string"){var I=D;D=document.createElement("div"),D.classList.add(I)}return this.container.insertBefore(D,A),D}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(D,A,I){var U=this,F=Y(D,A,I),L=s(F,4);return D=L[0],A=L[1],I=L[3],W.call(this,function(){return U.editor.deleteText(D,A)},I,D,-1*A)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.scroll.enable(D),this.container.classList.toggle("ql-disabled",!D)}},{key:"focus",value:function(){var D=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=D,this.scrollIntoView()}},{key:"format",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:h.default.sources.API;return W.call(this,function(){var F=I.getSelection(!0),L=new d.default;if(F==null)return L;if(y.default.query(D,y.default.Scope.BLOCK))L=I.editor.formatLine(F.index,F.length,C({},D,A));else{if(F.length===0)return I.selection.format(D,A),L;L=I.editor.formatText(F.index,F.length,C({},D,A))}return I.setSelection(F,h.default.sources.SILENT),L},U)}},{key:"formatLine",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,A,I,U,F),J=s(Z,4);return D=J[0],A=J[1],z=J[2],F=J[3],W.call(this,function(){return L.editor.formatLine(D,A,z)},F,D,0)}},{key:"formatText",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,A,I,U,F),J=s(Z,4);return D=J[0],A=J[1],z=J[2],F=J[3],W.call(this,function(){return L.editor.formatText(D,A,z)},F,D,0)}},{key:"getBounds",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,I=void 0;typeof D=="number"?I=this.selection.getBounds(D,A):I=this.selection.getBounds(D.index,D.length);var U=this.container.getBoundingClientRect();return{bottom:I.bottom-U.top,height:I.height,left:I.left-U.left,right:I.right-U.left,top:I.top-U.top,width:I.width}}},{key:"getContents",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-D,I=Y(D,A),U=s(I,2);return D=U[0],A=U[1],this.editor.getContents(D,A)}},{key:"getFormat",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.getSelection(!0),A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return typeof D=="number"?this.editor.getFormat(D,A):this.editor.getFormat(D.index,D.length)}},{key:"getIndex",value:function(D){return D.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(D){return this.scroll.leaf(D)}},{key:"getLine",value:function(D){return this.scroll.line(D)}},{key:"getLines",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE;return typeof D!="number"?this.scroll.lines(D.index,D.length):this.scroll.lines(D,A)}},{key:"getModule",value:function(D){return this.theme.modules[D]}},{key:"getSelection",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return D&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-D,I=Y(D,A),U=s(I,2);return D=U[0],A=U[1],this.editor.getText(D,A)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(D,A,I){var U=this,F=arguments.length>3&&arguments[3]!==void 0?arguments[3]:K.sources.API;return W.call(this,function(){return U.editor.insertEmbed(D,A,I)},F,D)}},{key:"insertText",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,0,I,U,F),J=s(Z,4);return D=J[0],z=J[2],F=J[3],W.call(this,function(){return L.editor.insertText(D,A,z)},F,D,A.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(D,A,I){this.clipboard.dangerouslyPasteHTML(D,A,I)}},{key:"removeFormat",value:function(D,A,I){var U=this,F=Y(D,A,I),L=s(F,4);return D=L[0],A=L[1],I=L[3],W.call(this,function(){return U.editor.removeFormat(D,A)},I,D)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(D){var A=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API;return W.call(this,function(){D=new d.default(D);var U=A.getLength(),F=A.editor.deleteText(0,U),L=A.editor.applyDelta(D),z=L.ops[L.ops.length-1];z!=null&&typeof z.insert=="string"&&z.insert[z.insert.length-1]===`
101
- `&&(A.editor.deleteText(A.getLength()-1,1),L.delete(1));var Z=F.compose(L);return Z},I)}},{key:"setSelection",value:function(D,A,I){if(D==null)this.selection.setRange(null,A||K.sources.API);else{var U=Y(D,A,I),F=s(U,4);D=F[0],A=F[1],I=F[3],this.selection.setRange(new g.Range(D,A),I),I!==h.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API,I=new d.default().insert(D);return this.setContents(I,A)}},{key:"update",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:h.default.sources.USER,A=this.scroll.update(D);return this.selection.update(D),A}},{key:"updateContents",value:function(D){var A=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API;return W.call(this,function(){return D=new d.default(D),A.editor.applyDelta(D,I)},I,!0)}}]),K}();R.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},R.events=h.default.events,R.sources=h.default.sources,R.version="1.3.7",R.imports={delta:d.default,parchment:y.default,"core/module":m.default,"core/theme":M.default};function q(K,V){if(V=(0,k.default)(!0,{container:K,modules:{clipboard:!0,keyboard:!0,history:!0}},V),!V.theme||V.theme===R.DEFAULTS.theme)V.theme=M.default;else if(V.theme=R.import("themes/"+V.theme),V.theme==null)throw new Error("Invalid theme "+V.theme+". Did you register it?");var D=(0,k.default)(!0,{},V.theme.DEFAULTS);[D,V].forEach(function(U){U.modules=U.modules||{},Object.keys(U.modules).forEach(function(F){U.modules[F]===!0&&(U.modules[F]={})})});var A=Object.keys(D.modules).concat(Object.keys(V.modules)),I=A.reduce(function(U,F){var L=R.import("modules/"+F);return L==null?N.error("Cannot load "+F+" module. Are you sure you registered it?"):U[F]=L.DEFAULTS||{},U},{});return V.modules!=null&&V.modules.toolbar&&V.modules.toolbar.constructor!==Object&&(V.modules.toolbar={container:V.modules.toolbar}),V=(0,k.default)(!0,{},R.DEFAULTS,{modules:I},D,V),["bounds","container","scrollingContainer"].forEach(function(U){typeof V[U]=="string"&&(V[U]=document.querySelector(V[U]))}),V.modules=Object.keys(V.modules).reduce(function(U,F){return V.modules[F]&&(U[F]=V.modules[F]),U},{}),V}function W(K,V,D,A){if(this.options.strict&&!this.isEnabled()&&V===h.default.sources.USER)return new d.default;var I=D==null?null:this.getSelection(),U=this.editor.delta,F=K();if(I!=null&&(D===!0&&(D=I.index),A==null?I=re(I,F,V):A!==0&&(I=re(I,D,A,V)),this.setSelection(I,h.default.sources.SILENT)),F.length()>0){var L,z=[h.default.events.TEXT_CHANGE,F,U,V];if((L=this.emitter).emit.apply(L,[h.default.events.EDITOR_CHANGE].concat(z)),V!==h.default.sources.SILENT){var Z;(Z=this.emitter).emit.apply(Z,z)}}return F}function Y(K,V,D,A,I){var U={};return typeof K.index=="number"&&typeof K.length=="number"?typeof V!="number"?(I=A,A=D,D=V,V=K.length,K=K.index):(V=K.length,K=K.index):typeof V!="number"&&(I=A,A=D,D=V,V=0),(typeof D>"u"?"undefined":i(D))==="object"?(U=D,I=A):typeof D=="string"&&(A!=null?U[D]=A:I=D),I=I||h.default.sources.API,[K,V,U,I]}function re(K,V,D,A){if(K==null)return null;var I=void 0,U=void 0;if(V instanceof d.default){var F=[K.index,K.index+K.length].map(function(J){return V.transformPosition(J,A!==h.default.sources.USER)}),L=s(F,2);I=L[0],U=L[1]}else{var z=[K.index,K.index+K.length].map(function(J){return J<V||J===V&&A===h.default.sources.USER?J:D>=0?J+D:Math.max(V,J+D)}),Z=s(z,2);I=Z[0],U=Z[1]}return new g.Range(I,U-I)}o.expandConfig=q,o.overload=Y,o.default=R},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(7),u=f(l),d=a(0),p=f(d);function f(_){return _&&_.__esModule?_:{default:_}}function c(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function h(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function v(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var m=function(_){v(y,_);function y(){return c(this,y),h(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return i(y,[{key:"formatAt",value:function(w,b,k,T){if(y.compare(this.statics.blotName,k)<0&&p.default.query(k,p.default.Scope.BLOT)){var S=this.isolate(w,b);T&&S.wrap(k,T)}else s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"formatAt",this).call(this,w,b,k,T)}},{key:"optimize",value:function(w){if(s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"optimize",this).call(this,w),this.parent instanceof y&&y.compare(this.statics.blotName,this.parent.statics.blotName)>0){var b=this.parent.isolate(this.offset(),this.length());this.moveChildren(b),b.wrap(this)}}}],[{key:"compare",value:function(w,b){var k=y.order.indexOf(w),T=y.order.indexOf(b);return k>=0||T>=0?k-T:w===b?0:w<b?-1:1}}]),y}(p.default.Inline);m.allowedChildren=[m,p.default.Embed,u.default],m.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(0),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default.Text);o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function g(w,b){for(var k=0;k<b.length;k++){var T=b[k];T.enumerable=T.enumerable||!1,T.configurable=!0,"value"in T&&(T.writable=!0),Object.defineProperty(w,T.key,T)}}return function(w,b,k){return b&&g(w.prototype,b),k&&g(w,k),w}}(),s=function g(w,b,k){w===null&&(w=Function.prototype);var T=Object.getOwnPropertyDescriptor(w,b);if(T===void 0){var S=Object.getPrototypeOf(w);return S===null?void 0:g(S,b,k)}else{if("value"in T)return T.value;var x=T.get;return x===void 0?void 0:x.call(k)}},l=a(54),u=f(l),d=a(10),p=f(d);function f(g){return g&&g.__esModule?g:{default:g}}function c(g,w){if(!(g instanceof w))throw new TypeError("Cannot call a class as a function")}function h(g,w){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return w&&(typeof w=="object"||typeof w=="function")?w:g}function v(g,w){if(typeof w!="function"&&w!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof w);g.prototype=Object.create(w&&w.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),w&&(Object.setPrototypeOf?Object.setPrototypeOf(g,w):g.__proto__=w)}var m=(0,p.default)("quill:events"),_=["selectionchange","mousedown","mouseup","click"];_.forEach(function(g){document.addEventListener(g,function(){for(var w=arguments.length,b=Array(w),k=0;k<w;k++)b[k]=arguments[k];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(T){if(T.__quill&&T.__quill.emitter){var S;(S=T.__quill.emitter).handleDOM.apply(S,b)}})})});var y=function(g){v(w,g);function w(){c(this,w);var b=h(this,(w.__proto__||Object.getPrototypeOf(w)).call(this));return b.listeners={},b.on("error",m.error),b}return i(w,[{key:"emit",value:function(){m.log.apply(m,arguments),s(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(k){for(var T=arguments.length,S=Array(T>1?T-1:0),x=1;x<T;x++)S[x-1]=arguments[x];(this.listeners[k.type]||[]).forEach(function(M){var E=M.node,C=M.handler;(k.target===E||E.contains(k.target))&&C.apply(void 0,[k].concat(S))})}},{key:"listenDOM",value:function(k,T,S){this.listeners[k]||(this.listeners[k]=[]),this.listeners[k].push({node:T,handler:S})}}]),w}(u.default);y.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},y.sources={API:"api",SILENT:"silent",USER:"user"},o.default=y},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});function i(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}var s=function l(u){var d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};i(this,l),this.quill=u,this.options=d};s.DEFAULTS={},o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=["error","warn","log","info"],s="warn";function l(d){if(i.indexOf(d)<=i.indexOf(s)){for(var p,f=arguments.length,c=Array(f>1?f-1:0),h=1;h<f;h++)c[h-1]=arguments[h];(p=console)[d].apply(p,c)}}function u(d){return i.reduce(function(p,f){return p[f]=l.bind(console,f,d),p},{})}l.level=u.level=function(d){s=d},o.default=u},function(e,o,a){var i=Array.prototype.slice,s=a(52),l=a(53),u=e.exports=function(c,h,v){return v||(v={}),c===h?!0:c instanceof Date&&h instanceof Date?c.getTime()===h.getTime():!c||!h||typeof c!="object"&&typeof h!="object"?v.strict?c===h:c==h:f(c,h,v)};function d(c){return c==null}function p(c){return!(!c||typeof c!="object"||typeof c.length!="number"||typeof c.copy!="function"||typeof c.slice!="function"||c.length>0&&typeof c[0]!="number")}function f(c,h,v){var m,_;if(d(c)||d(h)||c.prototype!==h.prototype)return!1;if(l(c))return l(h)?(c=i.call(c),h=i.call(h),u(c,h,v)):!1;if(p(c)){if(!p(h)||c.length!==h.length)return!1;for(m=0;m<c.length;m++)if(c[m]!==h[m])return!1;return!0}try{var y=s(c),g=s(h)}catch{return!1}if(y.length!=g.length)return!1;for(y.sort(),g.sort(),m=y.length-1;m>=0;m--)if(y[m]!=g[m])return!1;for(m=y.length-1;m>=0;m--)if(_=y[m],!u(c[_],h[_],v))return!1;return typeof c==typeof h}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(1),s=function(){function l(u,d,p){p===void 0&&(p={}),this.attrName=u,this.keyName=d;var f=i.Scope.TYPE&i.Scope.ATTRIBUTE;p.scope!=null?this.scope=p.scope&i.Scope.LEVEL|f:this.scope=i.Scope.ATTRIBUTE,p.whitelist!=null&&(this.whitelist=p.whitelist)}return l.keys=function(u){return[].map.call(u.attributes,function(d){return d.name})},l.prototype.add=function(u,d){return this.canAdd(u,d)?(u.setAttribute(this.keyName,d),!0):!1},l.prototype.canAdd=function(u,d){var p=i.query(u,i.Scope.BLOT&(this.scope|i.Scope.TYPE));return p==null?!1:this.whitelist==null?!0:typeof d=="string"?this.whitelist.indexOf(d.replace(/["']/g,""))>-1:this.whitelist.indexOf(d)>-1},l.prototype.remove=function(u){u.removeAttribute(this.keyName)},l.prototype.value=function(u){var d=u.getAttribute(this.keyName);return this.canAdd(u,d)&&d?d:""},l}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Code=void 0;var i=function(){function x(M,E){var C=[],O=!0,N=!1,R=void 0;try{for(var q=M[Symbol.iterator](),W;!(O=(W=q.next()).done)&&(C.push(W.value),!(E&&C.length===E));O=!0);}catch(Y){N=!0,R=Y}finally{try{!O&&q.return&&q.return()}finally{if(N)throw R}}return C}return function(M,E){if(Array.isArray(M))return M;if(Symbol.iterator in Object(M))return x(M,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function x(M,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(M,O.key,O)}}return function(M,E,C){return E&&x(M.prototype,E),C&&x(M,C),M}}(),l=function x(M,E,C){M===null&&(M=Function.prototype);var O=Object.getOwnPropertyDescriptor(M,E);if(O===void 0){var N=Object.getPrototypeOf(M);return N===null?void 0:x(N,E,C)}else{if("value"in O)return O.value;var R=O.get;return R===void 0?void 0:R.call(C)}},u=a(2),d=g(u),p=a(0),f=g(p),c=a(4),h=g(c),v=a(6),m=g(v),_=a(7),y=g(_);function g(x){return x&&x.__esModule?x:{default:x}}function w(x,M){if(!(x instanceof M))throw new TypeError("Cannot call a class as a function")}function b(x,M){if(!x)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return M&&(typeof M=="object"||typeof M=="function")?M:x}function k(x,M){if(typeof M!="function"&&M!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof M);x.prototype=Object.create(M&&M.prototype,{constructor:{value:x,enumerable:!1,writable:!0,configurable:!0}}),M&&(Object.setPrototypeOf?Object.setPrototypeOf(x,M):x.__proto__=M)}var T=function(x){k(M,x);function M(){return w(this,M),b(this,(M.__proto__||Object.getPrototypeOf(M)).apply(this,arguments))}return M}(m.default);T.blotName="code",T.tagName="CODE";var S=function(x){k(M,x);function M(){return w(this,M),b(this,(M.__proto__||Object.getPrototypeOf(M)).apply(this,arguments))}return s(M,[{key:"delta",value:function(){var C=this,O=this.domNode.textContent;return O.endsWith(`
98
+ */var np=_i.exports,Ca;function ip(){return Ca||(Ca=1,(function(t,i){(function(o,a){t.exports=a()})(typeof self<"u"?self:np,function(){return(function(e){var o={};function a(r){if(o[r])return o[r].exports;var d=o[r]={i:r,l:!1,exports:{}};return e[r].call(d.exports,d,d.exports,a),d.l=!0,d.exports}return a.m=e,a.c=o,a.d=function(r,d,c){a.o(r,d)||Object.defineProperty(r,d,{configurable:!1,enumerable:!0,get:c})},a.n=function(r){var d=r&&r.__esModule?function(){return r.default}:function(){return r};return a.d(d,"a",d),d},a.o=function(r,d){return Object.prototype.hasOwnProperty.call(r,d)},a.p="",a(a.s=109)})([(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(17),d=a(18),c=a(19),p=a(45),s=a(46),h=a(47),f=a(48),l=a(49),u=a(12),_=a(32),g=a(33),$=a(31),v=a(1),b={Scope:v.Scope,create:v.create,find:v.find,query:v.query,register:v.register,Container:r.default,Format:d.default,Leaf:c.default,Embed:f.default,Scroll:p.default,Block:h.default,Inline:s.default,Text:l.default,Attributor:{Attribute:u.default,Class:_.default,Style:g.default,Store:$.default}};o.default=b}),(function(e,o,a){var r=this&&this.__extends||(function(){var $=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(v,b){v.__proto__=b}||function(v,b){for(var y in b)b.hasOwnProperty(y)&&(v[y]=b[y])};return function(v,b){$(v,b);function y(){this.constructor=v}v.prototype=b===null?Object.create(b):(y.prototype=b.prototype,new y)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=(function($){r(v,$);function v(b){var y=this;return b="[Parchment] "+b,y=$.call(this,b)||this,y.message=b,y.name=y.constructor.name,y}return v})(Error);o.ParchmentError=d;var c={},p={},s={},h={};o.DATA_KEY="__blot";var f;(function($){$[$.TYPE=3]="TYPE",$[$.LEVEL=12]="LEVEL",$[$.ATTRIBUTE=13]="ATTRIBUTE",$[$.BLOT=14]="BLOT",$[$.INLINE=7]="INLINE",$[$.BLOCK=11]="BLOCK",$[$.BLOCK_BLOT=10]="BLOCK_BLOT",$[$.INLINE_BLOT=6]="INLINE_BLOT",$[$.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",$[$.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",$[$.ANY=15]="ANY"})(f=o.Scope||(o.Scope={}));function l($,v){var b=_($);if(b==null)throw new d("Unable to create "+$+" blot");var y=b,m=$ instanceof Node||$.nodeType===Node.TEXT_NODE?$:y.create(v);return new y(m,v)}o.create=l;function u($,v){return v===void 0&&(v=!1),$==null?null:$[o.DATA_KEY]!=null?$[o.DATA_KEY].blot:v?u($.parentNode,v):null}o.find=u;function _($,v){v===void 0&&(v=f.ANY);var b;if(typeof $=="string")b=h[$]||c[$];else if($ instanceof Text||$.nodeType===Node.TEXT_NODE)b=h.text;else if(typeof $=="number")$&f.LEVEL&f.BLOCK?b=h.block:$&f.LEVEL&f.INLINE&&(b=h.inline);else if($ instanceof HTMLElement){var y=($.getAttribute("class")||"").split(/\s+/);for(var m in y)if(b=p[y[m]],b)break;b=b||s[$.tagName]}return b==null?null:v&f.LEVEL&b.scope&&v&f.TYPE&b.scope?b:null}o.query=_;function g(){for(var $=[],v=0;v<arguments.length;v++)$[v]=arguments[v];if($.length>1)return $.map(function(m){return g(m)});var b=$[0];if(typeof b.blotName!="string"&&typeof b.attrName!="string")throw new d("Invalid definition");if(b.blotName==="abstract")throw new d("Cannot register abstract class");if(h[b.blotName||b.attrName]=b,typeof b.keyName=="string")c[b.keyName]=b;else if(b.className!=null&&(p[b.className]=b),b.tagName!=null){Array.isArray(b.tagName)?b.tagName=b.tagName.map(function(m){return m.toUpperCase()}):b.tagName=b.tagName.toUpperCase();var y=Array.isArray(b.tagName)?b.tagName:[b.tagName];y.forEach(function(m){(s[m]==null||b.className==null)&&(s[m]=b)})}return b}o.register=g}),(function(e,o,a){var r=a(51),d=a(11),c=a(3),p=a(20),s="\0",h=function(f){Array.isArray(f)?this.ops=f:f!=null&&Array.isArray(f.ops)?this.ops=f.ops:this.ops=[]};h.prototype.insert=function(f,l){var u={};return f.length===0?this:(u.insert=f,l!=null&&typeof l=="object"&&Object.keys(l).length>0&&(u.attributes=l),this.push(u))},h.prototype.delete=function(f){return f<=0?this:this.push({delete:f})},h.prototype.retain=function(f,l){if(f<=0)return this;var u={retain:f};return l!=null&&typeof l=="object"&&Object.keys(l).length>0&&(u.attributes=l),this.push(u)},h.prototype.push=function(f){var l=this.ops.length,u=this.ops[l-1];if(f=c(!0,{},f),typeof u=="object"){if(typeof f.delete=="number"&&typeof u.delete=="number")return this.ops[l-1]={delete:u.delete+f.delete},this;if(typeof u.delete=="number"&&f.insert!=null&&(l-=1,u=this.ops[l-1],typeof u!="object"))return this.ops.unshift(f),this;if(d(f.attributes,u.attributes)){if(typeof f.insert=="string"&&typeof u.insert=="string")return this.ops[l-1]={insert:u.insert+f.insert},typeof f.attributes=="object"&&(this.ops[l-1].attributes=f.attributes),this;if(typeof f.retain=="number"&&typeof u.retain=="number")return this.ops[l-1]={retain:u.retain+f.retain},typeof f.attributes=="object"&&(this.ops[l-1].attributes=f.attributes),this}}return l===this.ops.length?this.ops.push(f):this.ops.splice(l,0,f),this},h.prototype.chop=function(){var f=this.ops[this.ops.length-1];return f&&f.retain&&!f.attributes&&this.ops.pop(),this},h.prototype.filter=function(f){return this.ops.filter(f)},h.prototype.forEach=function(f){this.ops.forEach(f)},h.prototype.map=function(f){return this.ops.map(f)},h.prototype.partition=function(f){var l=[],u=[];return this.forEach(function(_){var g=f(_)?l:u;g.push(_)}),[l,u]},h.prototype.reduce=function(f,l){return this.ops.reduce(f,l)},h.prototype.changeLength=function(){return this.reduce(function(f,l){return l.insert?f+p.length(l):l.delete?f-l.delete:f},0)},h.prototype.length=function(){return this.reduce(function(f,l){return f+p.length(l)},0)},h.prototype.slice=function(f,l){f=f||0,typeof l!="number"&&(l=1/0);for(var u=[],_=p.iterator(this.ops),g=0;g<l&&_.hasNext();){var $;g<f?$=_.next(f-g):($=_.next(l-g),u.push($)),g+=p.length($)}return new h(u)},h.prototype.compose=function(f){var l=p.iterator(this.ops),u=p.iterator(f.ops),_=[],g=u.peek();if(g!=null&&typeof g.retain=="number"&&g.attributes==null){for(var $=g.retain;l.peekType()==="insert"&&l.peekLength()<=$;)$-=l.peekLength(),_.push(l.next());g.retain-$>0&&u.next(g.retain-$)}for(var v=new h(_);l.hasNext()||u.hasNext();)if(u.peekType()==="insert")v.push(u.next());else if(l.peekType()==="delete")v.push(l.next());else{var b=Math.min(l.peekLength(),u.peekLength()),y=l.next(b),m=u.next(b);if(typeof m.retain=="number"){var w={};typeof y.retain=="number"?w.retain=b:w.insert=y.insert;var T=p.attributes.compose(y.attributes,m.attributes,typeof y.retain=="number");if(T&&(w.attributes=T),v.push(w),!u.hasNext()&&d(v.ops[v.ops.length-1],w)){var S=new h(l.rest());return v.concat(S).chop()}}else typeof m.delete=="number"&&typeof y.retain=="number"&&v.push(m)}return v.chop()},h.prototype.concat=function(f){var l=new h(this.ops.slice());return f.ops.length>0&&(l.push(f.ops[0]),l.ops=l.ops.concat(f.ops.slice(1))),l},h.prototype.diff=function(f,l){if(this.ops===f.ops)return new h;var u=[this,f].map(function(b){return b.map(function(y){if(y.insert!=null)return typeof y.insert=="string"?y.insert:s;var m=b===f?"on":"with";throw new Error("diff() called "+m+" non-document")}).join("")}),_=new h,g=r(u[0],u[1],l),$=p.iterator(this.ops),v=p.iterator(f.ops);return g.forEach(function(b){for(var y=b[1].length;y>0;){var m=0;switch(b[0]){case r.INSERT:m=Math.min(v.peekLength(),y),_.push(v.next(m));break;case r.DELETE:m=Math.min(y,$.peekLength()),$.next(m),_.delete(m);break;case r.EQUAL:m=Math.min($.peekLength(),v.peekLength(),y);var w=$.next(m),T=v.next(m);d(w.insert,T.insert)?_.retain(m,p.attributes.diff(w.attributes,T.attributes)):_.push(T).delete(m);break}y-=m}}),_.chop()},h.prototype.eachLine=function(f,l){l=l||`
99
+ `;for(var u=p.iterator(this.ops),_=new h,g=0;u.hasNext();){if(u.peekType()!=="insert")return;var $=u.peek(),v=p.length($)-u.peekLength(),b=typeof $.insert=="string"?$.insert.indexOf(l,v)-v:-1;if(b<0)_.push(u.next());else if(b>0)_.push(u.next(b));else{if(f(_,u.next(1).attributes||{},g)===!1)return;g+=1,_=new h}}_.length()>0&&f(_,{},g)},h.prototype.transform=function(f,l){if(l=!!l,typeof f=="number")return this.transformPosition(f,l);for(var u=p.iterator(this.ops),_=p.iterator(f.ops),g=new h;u.hasNext()||_.hasNext();)if(u.peekType()==="insert"&&(l||_.peekType()!=="insert"))g.retain(p.length(u.next()));else if(_.peekType()==="insert")g.push(_.next());else{var $=Math.min(u.peekLength(),_.peekLength()),v=u.next($),b=_.next($);if(v.delete)continue;b.delete?g.push(b):g.retain($,p.attributes.transform(v.attributes,b.attributes,l))}return g.chop()},h.prototype.transformPosition=function(f,l){l=!!l;for(var u=p.iterator(this.ops),_=0;u.hasNext()&&_<=f;){var g=u.peekLength(),$=u.peekType();if(u.next(),$==="delete"){f-=Math.min(g,f-_);continue}else $==="insert"&&(_<f||!l)&&(f+=g);_+=g}return f},e.exports=h}),(function(e,o){var a=Object.prototype.hasOwnProperty,r=Object.prototype.toString,d=Object.defineProperty,c=Object.getOwnPropertyDescriptor,p=function(u){return typeof Array.isArray=="function"?Array.isArray(u):r.call(u)==="[object Array]"},s=function(u){if(!u||r.call(u)!=="[object Object]")return!1;var _=a.call(u,"constructor"),g=u.constructor&&u.constructor.prototype&&a.call(u.constructor.prototype,"isPrototypeOf");if(u.constructor&&!_&&!g)return!1;var $;for($ in u);return typeof $>"u"||a.call(u,$)},h=function(u,_){d&&_.name==="__proto__"?d(u,_.name,{enumerable:!0,configurable:!0,value:_.newValue,writable:!0}):u[_.name]=_.newValue},f=function(u,_){if(_==="__proto__")if(a.call(u,_)){if(c)return c(u,_).value}else return;return u[_]};e.exports=function l(){var u,_,g,$,v,b,y=arguments[0],m=1,w=arguments.length,T=!1;for(typeof y=="boolean"&&(T=y,y=arguments[1]||{},m=2),(y==null||typeof y!="object"&&typeof y!="function")&&(y={});m<w;++m)if(u=arguments[m],u!=null)for(_ in u)g=f(y,_),$=f(u,_),y!==$&&(T&&$&&(s($)||(v=p($)))?(v?(v=!1,b=g&&p(g)?g:[]):b=g&&s(g)?g:{},h(y,{name:_,newValue:l(T,b,$)})):typeof $<"u"&&h(y,{name:_,newValue:$}));return y}}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BlockEmbed=o.bubbleFormats=void 0;var r=(function(){function C(O,N){for(var P=0;P<N.length;P++){var F=N[P];F.enumerable=F.enumerable||!1,F.configurable=!0,"value"in F&&(F.writable=!0),Object.defineProperty(O,F.key,F)}}return function(O,N,P){return N&&C(O.prototype,N),P&&C(O,P),O}})(),d=function C(O,N,P){O===null&&(O=Function.prototype);var F=Object.getOwnPropertyDescriptor(O,N);if(F===void 0){var K=Object.getPrototypeOf(O);return K===null?void 0:C(K,N,P)}else{if("value"in F)return F.value;var W=F.get;return W===void 0?void 0:W.call(P)}},c=a(3),p=y(c),s=a(2),h=y(s),f=a(0),l=y(f),u=a(16),_=y(u),g=a(6),$=y(g),v=a(7),b=y(v);function y(C){return C&&C.__esModule?C:{default:C}}function m(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function w(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function T(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var S=1,x=(function(C){T(O,C);function O(){return m(this,O),w(this,(O.__proto__||Object.getPrototypeOf(O)).apply(this,arguments))}return r(O,[{key:"attach",value:function(){d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"attach",this).call(this),this.attributes=new l.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return new h.default().insert(this.value(),(0,p.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(P,F){var K=l.default.query(P,l.default.Scope.BLOCK_ATTRIBUTE);K!=null&&this.attributes.attribute(K,F)}},{key:"formatAt",value:function(P,F,K,W){this.format(K,W)}},{key:"insertAt",value:function(P,F,K){if(typeof F=="string"&&F.endsWith(`
100
+ `)){var W=l.default.create(D.blotName);this.parent.insertBefore(W,P===0?this:this.next),W.insertAt(0,F.slice(0,-1))}else d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,P,F,K)}}]),O})(l.default.Embed);x.scope=l.default.Scope.BLOCK_BLOT;var D=(function(C){T(O,C);function O(N){m(this,O);var P=w(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N));return P.cache={},P}return r(O,[{key:"delta",value:function(){return this.cache.delta==null&&(this.cache.delta=this.descendants(l.default.Leaf).reduce(function(P,F){return F.length()===0?P:P.insert(F.value(),E(F))},new h.default).insert(`
101
+ `,E(this))),this.cache.delta}},{key:"deleteAt",value:function(P,F){d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"deleteAt",this).call(this,P,F),this.cache={}}},{key:"formatAt",value:function(P,F,K,W){F<=0||(l.default.query(K,l.default.Scope.BLOCK)?P+F===this.length()&&this.format(K,W):d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"formatAt",this).call(this,P,Math.min(F,this.length()-P-1),K,W),this.cache={})}},{key:"insertAt",value:function(P,F,K){if(K!=null)return d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,P,F,K);if(F.length!==0){var W=F.split(`
102
+ `),ee=W.shift();ee.length>0&&(P<this.length()-1||this.children.tail==null?d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,Math.min(P,this.length()-1),ee):this.children.tail.insertAt(this.children.tail.length(),ee),this.cache={});var G=this;W.reduce(function(V,M){return G=G.split(V,!0),G.insertAt(0,M),M.length},P+ee.length)}}},{key:"insertBefore",value:function(P,F){var K=this.children.head;d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertBefore",this).call(this,P,F),K instanceof _.default&&K.remove(),this.cache={}}},{key:"length",value:function(){return this.cache.length==null&&(this.cache.length=d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"length",this).call(this)+S),this.cache.length}},{key:"moveChildren",value:function(P,F){d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"moveChildren",this).call(this,P,F),this.cache={}}},{key:"optimize",value:function(P){d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"optimize",this).call(this,P),this.cache={}}},{key:"path",value:function(P){return d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"path",this).call(this,P,!0)}},{key:"removeChild",value:function(P){d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"removeChild",this).call(this,P),this.cache={}}},{key:"split",value:function(P){var F=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(F&&(P===0||P>=this.length()-S)){var K=this.clone();return P===0?(this.parent.insertBefore(K,this),this):(this.parent.insertBefore(K,this.next),K)}else{var W=d(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"split",this).call(this,P,F);return this.cache={},W}}}]),O})(l.default.Block);D.blotName="block",D.tagName="P",D.defaultChild="break",D.allowedChildren=[$.default,l.default.Embed,b.default];function E(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return C==null||(typeof C.formats=="function"&&(O=(0,p.default)(O,C.formats())),C.parent==null||C.parent.blotName=="scroll"||C.parent.statics.scope!==C.statics.scope)?O:E(C.parent,O)}o.bubbleFormats=E,o.BlockEmbed=x,o.default=D}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.overload=o.expandConfig=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(G){return typeof G}:function(G){return G&&typeof Symbol=="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G},d=(function(){function G(V,M){var A=[],B=!0,H=!1,q=void 0;try{for(var L=V[Symbol.iterator](),U;!(B=(U=L.next()).done)&&(A.push(U.value),!(M&&A.length===M));B=!0);}catch(Z){H=!0,q=Z}finally{try{!B&&L.return&&L.return()}finally{if(H)throw q}}return A}return function(V,M){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return G(V,M);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),c=(function(){function G(V,M){for(var A=0;A<M.length;A++){var B=M[A];B.enumerable=B.enumerable||!1,B.configurable=!0,"value"in B&&(B.writable=!0),Object.defineProperty(V,B.key,B)}}return function(V,M,A){return M&&G(V.prototype,M),A&&G(V,A),V}})();a(50);var p=a(2),s=E(p),h=a(14),f=E(h),l=a(8),u=E(l),_=a(9),g=E(_),$=a(0),v=E($),b=a(15),y=E(b),m=a(3),w=E(m),T=a(10),S=E(T),x=a(34),D=E(x);function E(G){return G&&G.__esModule?G:{default:G}}function C(G,V,M){return V in G?Object.defineProperty(G,V,{value:M,enumerable:!0,configurable:!0,writable:!0}):G[V]=M,G}function O(G,V){if(!(G instanceof V))throw new TypeError("Cannot call a class as a function")}var N=(0,S.default)("quill"),P=(function(){c(G,null,[{key:"debug",value:function(M){M===!0&&(M="log"),S.default.level(M)}},{key:"find",value:function(M){return M.__quill||v.default.find(M)}},{key:"import",value:function(M){return this.imports[M]==null&&N.error("Cannot import "+M+". Are you sure it was registered?"),this.imports[M]}},{key:"register",value:function(M,A){var B=this,H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(typeof M!="string"){var q=M.attrName||M.blotName;typeof q=="string"?this.register("formats/"+q,M,A):Object.keys(M).forEach(function(L){B.register(L,M[L],A)})}else this.imports[M]!=null&&!H&&N.warn("Overwriting "+M+" with",A),this.imports[M]=A,(M.startsWith("blots/")||M.startsWith("formats/"))&&A.blotName!=="abstract"?v.default.register(A):M.startsWith("modules")&&typeof A.register=="function"&&A.register()}}]);function G(V){var M=this,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(O(this,G),this.options=F(V,A),this.container=this.options.container,this.container==null)return N.error("Invalid Quill container",V);this.options.debug&&G.debug(this.options.debug);var B=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new u.default,this.scroll=v.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new f.default(this.scroll),this.selection=new y.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(u.default.events.EDITOR_CHANGE,function(q){q===u.default.events.TEXT_CHANGE&&M.root.classList.toggle("ql-blank",M.editor.isBlank())}),this.emitter.on(u.default.events.SCROLL_UPDATE,function(q,L){var U=M.selection.lastRange,Z=U&&U.length===0?U.index:void 0;K.call(M,function(){return M.editor.update(null,L,Z)},q)});var H=this.clipboard.convert(`<div class='ql-editor' style="white-space: normal;">`+B+"<p><br></p></div>");this.setContents(H),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return c(G,[{key:"addContainer",value:function(M){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(typeof M=="string"){var B=M;M=document.createElement("div"),M.classList.add(B)}return this.container.insertBefore(M,A),M}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(M,A,B){var H=this,q=W(M,A,B),L=d(q,4);return M=L[0],A=L[1],B=L[3],K.call(this,function(){return H.editor.deleteText(M,A)},B,M,-1*A)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.scroll.enable(M),this.container.classList.toggle("ql-disabled",!M)}},{key:"focus",value:function(){var M=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=M,this.scrollIntoView()}},{key:"format",value:function(M,A){var B=this,H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:u.default.sources.API;return K.call(this,function(){var q=B.getSelection(!0),L=new s.default;if(q==null)return L;if(v.default.query(M,v.default.Scope.BLOCK))L=B.editor.formatLine(q.index,q.length,C({},M,A));else{if(q.length===0)return B.selection.format(M,A),L;L=B.editor.formatText(q.index,q.length,C({},M,A))}return B.setSelection(q,u.default.sources.SILENT),L},H)}},{key:"formatLine",value:function(M,A,B,H,q){var L=this,U=void 0,Z=W(M,A,B,H,q),J=d(Z,4);return M=J[0],A=J[1],U=J[2],q=J[3],K.call(this,function(){return L.editor.formatLine(M,A,U)},q,M,0)}},{key:"formatText",value:function(M,A,B,H,q){var L=this,U=void 0,Z=W(M,A,B,H,q),J=d(Z,4);return M=J[0],A=J[1],U=J[2],q=J[3],K.call(this,function(){return L.editor.formatText(M,A,U)},q,M,0)}},{key:"getBounds",value:function(M){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,B=void 0;typeof M=="number"?B=this.selection.getBounds(M,A):B=this.selection.getBounds(M.index,M.length);var H=this.container.getBoundingClientRect();return{bottom:B.bottom-H.top,height:B.height,left:B.left-H.left,right:B.right-H.left,top:B.top-H.top,width:B.width}}},{key:"getContents",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-M,B=W(M,A),H=d(B,2);return M=H[0],A=H[1],this.editor.getContents(M,A)}},{key:"getFormat",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.getSelection(!0),A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return typeof M=="number"?this.editor.getFormat(M,A):this.editor.getFormat(M.index,M.length)}},{key:"getIndex",value:function(M){return M.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(M){return this.scroll.leaf(M)}},{key:"getLine",value:function(M){return this.scroll.line(M)}},{key:"getLines",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE;return typeof M!="number"?this.scroll.lines(M.index,M.length):this.scroll.lines(M,A)}},{key:"getModule",value:function(M){return this.theme.modules[M]}},{key:"getSelection",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return M&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-M,B=W(M,A),H=d(B,2);return M=H[0],A=H[1],this.editor.getText(M,A)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(M,A,B){var H=this,q=arguments.length>3&&arguments[3]!==void 0?arguments[3]:G.sources.API;return K.call(this,function(){return H.editor.insertEmbed(M,A,B)},q,M)}},{key:"insertText",value:function(M,A,B,H,q){var L=this,U=void 0,Z=W(M,0,B,H,q),J=d(Z,4);return M=J[0],U=J[2],q=J[3],K.call(this,function(){return L.editor.insertText(M,A,U)},q,M,A.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(M,A,B){this.clipboard.dangerouslyPasteHTML(M,A,B)}},{key:"removeFormat",value:function(M,A,B){var H=this,q=W(M,A,B),L=d(q,4);return M=L[0],A=L[1],B=L[3],K.call(this,function(){return H.editor.removeFormat(M,A)},B,M)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(M){var A=this,B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:u.default.sources.API;return K.call(this,function(){M=new s.default(M);var H=A.getLength(),q=A.editor.deleteText(0,H),L=A.editor.applyDelta(M),U=L.ops[L.ops.length-1];U!=null&&typeof U.insert=="string"&&U.insert[U.insert.length-1]===`
103
+ `&&(A.editor.deleteText(A.getLength()-1,1),L.delete(1));var Z=q.compose(L);return Z},B)}},{key:"setSelection",value:function(M,A,B){if(M==null)this.selection.setRange(null,A||G.sources.API);else{var H=W(M,A,B),q=d(H,4);M=q[0],A=q[1],B=q[3],this.selection.setRange(new b.Range(M,A),B),B!==u.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(M){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:u.default.sources.API,B=new s.default().insert(M);return this.setContents(B,A)}},{key:"update",value:function(){var M=arguments.length>0&&arguments[0]!==void 0?arguments[0]:u.default.sources.USER,A=this.scroll.update(M);return this.selection.update(M),A}},{key:"updateContents",value:function(M){var A=this,B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:u.default.sources.API;return K.call(this,function(){return M=new s.default(M),A.editor.applyDelta(M,B)},B,!0)}}]),G})();P.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},P.events=u.default.events,P.sources=u.default.sources,P.version="1.3.7",P.imports={delta:s.default,parchment:v.default,"core/module":g.default,"core/theme":D.default};function F(G,V){if(V=(0,w.default)(!0,{container:G,modules:{clipboard:!0,keyboard:!0,history:!0}},V),!V.theme||V.theme===P.DEFAULTS.theme)V.theme=D.default;else if(V.theme=P.import("themes/"+V.theme),V.theme==null)throw new Error("Invalid theme "+V.theme+". Did you register it?");var M=(0,w.default)(!0,{},V.theme.DEFAULTS);[M,V].forEach(function(H){H.modules=H.modules||{},Object.keys(H.modules).forEach(function(q){H.modules[q]===!0&&(H.modules[q]={})})});var A=Object.keys(M.modules).concat(Object.keys(V.modules)),B=A.reduce(function(H,q){var L=P.import("modules/"+q);return L==null?N.error("Cannot load "+q+" module. Are you sure you registered it?"):H[q]=L.DEFAULTS||{},H},{});return V.modules!=null&&V.modules.toolbar&&V.modules.toolbar.constructor!==Object&&(V.modules.toolbar={container:V.modules.toolbar}),V=(0,w.default)(!0,{},P.DEFAULTS,{modules:B},M,V),["bounds","container","scrollingContainer"].forEach(function(H){typeof V[H]=="string"&&(V[H]=document.querySelector(V[H]))}),V.modules=Object.keys(V.modules).reduce(function(H,q){return V.modules[q]&&(H[q]=V.modules[q]),H},{}),V}function K(G,V,M,A){if(this.options.strict&&!this.isEnabled()&&V===u.default.sources.USER)return new s.default;var B=M==null?null:this.getSelection(),H=this.editor.delta,q=G();if(B!=null&&(M===!0&&(M=B.index),A==null?B=ee(B,q,V):A!==0&&(B=ee(B,M,A,V)),this.setSelection(B,u.default.sources.SILENT)),q.length()>0){var L,U=[u.default.events.TEXT_CHANGE,q,H,V];if((L=this.emitter).emit.apply(L,[u.default.events.EDITOR_CHANGE].concat(U)),V!==u.default.sources.SILENT){var Z;(Z=this.emitter).emit.apply(Z,U)}}return q}function W(G,V,M,A,B){var H={};return typeof G.index=="number"&&typeof G.length=="number"?typeof V!="number"?(B=A,A=M,M=V,V=G.length,G=G.index):(V=G.length,G=G.index):typeof V!="number"&&(B=A,A=M,M=V,V=0),(typeof M>"u"?"undefined":r(M))==="object"?(H=M,B=A):typeof M=="string"&&(A!=null?H[M]=A:B=M),B=B||u.default.sources.API,[G,V,H,B]}function ee(G,V,M,A){if(G==null)return null;var B=void 0,H=void 0;if(V instanceof s.default){var q=[G.index,G.index+G.length].map(function(J){return V.transformPosition(J,A!==u.default.sources.USER)}),L=d(q,2);B=L[0],H=L[1]}else{var U=[G.index,G.index+G.length].map(function(J){return J<V||J===V&&A===u.default.sources.USER?J:M>=0?J+M:Math.max(V,J+M)}),Z=d(U,2);B=Z[0],H=Z[1]}return new b.Range(B,H-B)}o.expandConfig=F,o.overload=W,o.default=P}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function $(v,b){for(var y=0;y<b.length;y++){var m=b[y];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(v,m.key,m)}}return function(v,b,y){return b&&$(v.prototype,b),y&&$(v,y),v}})(),d=function $(v,b,y){v===null&&(v=Function.prototype);var m=Object.getOwnPropertyDescriptor(v,b);if(m===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:$(w,b,y)}else{if("value"in m)return m.value;var T=m.get;return T===void 0?void 0:T.call(y)}},c=a(7),p=f(c),s=a(0),h=f(s);function f($){return $&&$.__esModule?$:{default:$}}function l($,v){if(!($ instanceof v))throw new TypeError("Cannot call a class as a function")}function u($,v){if(!$)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:$}function _($,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);$.prototype=Object.create(v&&v.prototype,{constructor:{value:$,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf($,v):$.__proto__=v)}var g=(function($){_(v,$);function v(){return l(this,v),u(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"formatAt",value:function(y,m,w,T){if(v.compare(this.statics.blotName,w)<0&&h.default.query(w,h.default.Scope.BLOT)){var S=this.isolate(y,m);T&&S.wrap(w,T)}else d(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"formatAt",this).call(this,y,m,w,T)}},{key:"optimize",value:function(y){if(d(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"optimize",this).call(this,y),this.parent instanceof v&&v.compare(this.statics.blotName,this.parent.statics.blotName)>0){var m=this.parent.isolate(this.offset(),this.length());this.moveChildren(m),m.wrap(this)}}}],[{key:"compare",value:function(y,m){var w=v.order.indexOf(y),T=v.order.indexOf(m);return w>=0||T>=0?w-T:y===m?0:y<m?-1:1}}]),v})(h.default.Inline);g.allowedChildren=[g,h.default.Embed,p.default],g.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],o.default=g}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}function p(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}function s(l,u){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u&&(typeof u=="object"||typeof u=="function")?u:l}function h(l,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof u);l.prototype=Object.create(u&&u.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),u&&(Object.setPrototypeOf?Object.setPrototypeOf(l,u):l.__proto__=u)}var f=(function(l){h(u,l);function u(){return p(this,u),s(this,(u.__proto__||Object.getPrototypeOf(u)).apply(this,arguments))}return u})(d.default.Text);o.default=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function b(y,m){for(var w=0;w<m.length;w++){var T=m[w];T.enumerable=T.enumerable||!1,T.configurable=!0,"value"in T&&(T.writable=!0),Object.defineProperty(y,T.key,T)}}return function(y,m,w){return m&&b(y.prototype,m),w&&b(y,w),y}})(),d=function b(y,m,w){y===null&&(y=Function.prototype);var T=Object.getOwnPropertyDescriptor(y,m);if(T===void 0){var S=Object.getPrototypeOf(y);return S===null?void 0:b(S,m,w)}else{if("value"in T)return T.value;var x=T.get;return x===void 0?void 0:x.call(w)}},c=a(54),p=f(c),s=a(10),h=f(s);function f(b){return b&&b.__esModule?b:{default:b}}function l(b,y){if(!(b instanceof y))throw new TypeError("Cannot call a class as a function")}function u(b,y){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:b}function _(b,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);b.prototype=Object.create(y&&y.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(b,y):b.__proto__=y)}var g=(0,h.default)("quill:events"),$=["selectionchange","mousedown","mouseup","click"];$.forEach(function(b){document.addEventListener(b,function(){for(var y=arguments.length,m=Array(y),w=0;w<y;w++)m[w]=arguments[w];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(T){if(T.__quill&&T.__quill.emitter){var S;(S=T.__quill.emitter).handleDOM.apply(S,m)}})})});var v=(function(b){_(y,b);function y(){l(this,y);var m=u(this,(y.__proto__||Object.getPrototypeOf(y)).call(this));return m.listeners={},m.on("error",g.error),m}return r(y,[{key:"emit",value:function(){g.log.apply(g,arguments),d(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(w){for(var T=arguments.length,S=Array(T>1?T-1:0),x=1;x<T;x++)S[x-1]=arguments[x];(this.listeners[w.type]||[]).forEach(function(D){var E=D.node,C=D.handler;(w.target===E||E.contains(w.target))&&C.apply(void 0,[w].concat(S))})}},{key:"listenDOM",value:function(w,T,S){this.listeners[w]||(this.listeners[w]=[]),this.listeners[w].push({node:T,handler:S})}}]),y})(p.default);v.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},v.sources={API:"api",SILENT:"silent",USER:"user"},o.default=v}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});function r(c,p){if(!(c instanceof p))throw new TypeError("Cannot call a class as a function")}var d=function c(p){var s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};r(this,c),this.quill=p,this.options=s};d.DEFAULTS={},o.default=d}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=["error","warn","log","info"],d="warn";function c(s){if(r.indexOf(s)<=r.indexOf(d)){for(var h,f=arguments.length,l=Array(f>1?f-1:0),u=1;u<f;u++)l[u-1]=arguments[u];(h=console)[s].apply(h,l)}}function p(s){return r.reduce(function(h,f){return h[f]=c.bind(console,f,s),h},{})}c.level=p.level=function(s){d=s},o.default=p}),(function(e,o,a){var r=Array.prototype.slice,d=a(52),c=a(53),p=e.exports=function(l,u,_){return _||(_={}),l===u?!0:l instanceof Date&&u instanceof Date?l.getTime()===u.getTime():!l||!u||typeof l!="object"&&typeof u!="object"?_.strict?l===u:l==u:f(l,u,_)};function s(l){return l==null}function h(l){return!(!l||typeof l!="object"||typeof l.length!="number"||typeof l.copy!="function"||typeof l.slice!="function"||l.length>0&&typeof l[0]!="number")}function f(l,u,_){var g,$;if(s(l)||s(u)||l.prototype!==u.prototype)return!1;if(c(l))return c(u)?(l=r.call(l),u=r.call(u),p(l,u,_)):!1;if(h(l)){if(!h(u)||l.length!==u.length)return!1;for(g=0;g<l.length;g++)if(l[g]!==u[g])return!1;return!0}try{var v=d(l),b=d(u)}catch{return!1}if(v.length!=b.length)return!1;for(v.sort(),b.sort(),g=v.length-1;g>=0;g--)if(v[g]!=b[g])return!1;for(g=v.length-1;g>=0;g--)if($=v[g],!p(l[$],u[$],_))return!1;return typeof l==typeof u}}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),d=(function(){function c(p,s,h){h===void 0&&(h={}),this.attrName=p,this.keyName=s;var f=r.Scope.TYPE&r.Scope.ATTRIBUTE;h.scope!=null?this.scope=h.scope&r.Scope.LEVEL|f:this.scope=r.Scope.ATTRIBUTE,h.whitelist!=null&&(this.whitelist=h.whitelist)}return c.keys=function(p){return[].map.call(p.attributes,function(s){return s.name})},c.prototype.add=function(p,s){return this.canAdd(p,s)?(p.setAttribute(this.keyName,s),!0):!1},c.prototype.canAdd=function(p,s){var h=r.query(p,r.Scope.BLOT&(this.scope|r.Scope.TYPE));return h==null?!1:this.whitelist==null?!0:typeof s=="string"?this.whitelist.indexOf(s.replace(/["']/g,""))>-1:this.whitelist.indexOf(s)>-1},c.prototype.remove=function(p){p.removeAttribute(this.keyName)},c.prototype.value=function(p){var s=p.getAttribute(this.keyName);return this.canAdd(p,s)&&s?s:""},c})();o.default=d}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Code=void 0;var r=(function(){function x(D,E){var C=[],O=!0,N=!1,P=void 0;try{for(var F=D[Symbol.iterator](),K;!(O=(K=F.next()).done)&&(C.push(K.value),!(E&&C.length===E));O=!0);}catch(W){N=!0,P=W}finally{try{!O&&F.return&&F.return()}finally{if(N)throw P}}return C}return function(D,E){if(Array.isArray(D))return D;if(Symbol.iterator in Object(D))return x(D,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=(function(){function x(D,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(D,O.key,O)}}return function(D,E,C){return E&&x(D.prototype,E),C&&x(D,C),D}})(),c=function x(D,E,C){D===null&&(D=Function.prototype);var O=Object.getOwnPropertyDescriptor(D,E);if(O===void 0){var N=Object.getPrototypeOf(D);return N===null?void 0:x(N,E,C)}else{if("value"in O)return O.value;var P=O.get;return P===void 0?void 0:P.call(C)}},p=a(2),s=b(p),h=a(0),f=b(h),l=a(4),u=b(l),_=a(6),g=b(_),$=a(7),v=b($);function b(x){return x&&x.__esModule?x:{default:x}}function y(x,D){if(!(x instanceof D))throw new TypeError("Cannot call a class as a function")}function m(x,D){if(!x)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return D&&(typeof D=="object"||typeof D=="function")?D:x}function w(x,D){if(typeof D!="function"&&D!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof D);x.prototype=Object.create(D&&D.prototype,{constructor:{value:x,enumerable:!1,writable:!0,configurable:!0}}),D&&(Object.setPrototypeOf?Object.setPrototypeOf(x,D):x.__proto__=D)}var T=(function(x){w(D,x);function D(){return y(this,D),m(this,(D.__proto__||Object.getPrototypeOf(D)).apply(this,arguments))}return D})(g.default);T.blotName="code",T.tagName="CODE";var S=(function(x){w(D,x);function D(){return y(this,D),m(this,(D.__proto__||Object.getPrototypeOf(D)).apply(this,arguments))}return d(D,[{key:"delta",value:function(){var C=this,O=this.domNode.textContent;return O.endsWith(`
102
104
  `)&&(O=O.slice(0,-1)),O.split(`
103
- `).reduce(function(N,R){return N.insert(R).insert(`
104
- `,C.formats())},new d.default)}},{key:"format",value:function(C,O){if(!(C===this.statics.blotName&&O)){var N=this.descendant(y.default,this.length()-1),R=i(N,1),q=R[0];q!=null&&q.deleteAt(q.length()-1,1),l(M.prototype.__proto__||Object.getPrototypeOf(M.prototype),"format",this).call(this,C,O)}}},{key:"formatAt",value:function(C,O,N,R){if(O!==0&&!(f.default.query(N,f.default.Scope.BLOCK)==null||N===this.statics.blotName&&R===this.statics.formats(this.domNode))){var q=this.newlineIndex(C);if(!(q<0||q>=C+O)){var W=this.newlineIndex(C,!0)+1,Y=q-W+1,re=this.isolate(W,Y),K=re.next;re.format(N,R),K instanceof M&&K.formatAt(0,C-W+O-Y,N,R)}}}},{key:"insertAt",value:function(C,O,N){if(N==null){var R=this.descendant(y.default,C),q=i(R,2),W=q[0],Y=q[1];W.insertAt(Y,O)}}},{key:"length",value:function(){var C=this.domNode.textContent.length;return this.domNode.textContent.endsWith(`
105
+ `).reduce(function(N,P){return N.insert(P).insert(`
106
+ `,C.formats())},new s.default)}},{key:"format",value:function(C,O){if(!(C===this.statics.blotName&&O)){var N=this.descendant(v.default,this.length()-1),P=r(N,1),F=P[0];F!=null&&F.deleteAt(F.length()-1,1),c(D.prototype.__proto__||Object.getPrototypeOf(D.prototype),"format",this).call(this,C,O)}}},{key:"formatAt",value:function(C,O,N,P){if(O!==0&&!(f.default.query(N,f.default.Scope.BLOCK)==null||N===this.statics.blotName&&P===this.statics.formats(this.domNode))){var F=this.newlineIndex(C);if(!(F<0||F>=C+O)){var K=this.newlineIndex(C,!0)+1,W=F-K+1,ee=this.isolate(K,W),G=ee.next;ee.format(N,P),G instanceof D&&G.formatAt(0,C-K+O-W,N,P)}}}},{key:"insertAt",value:function(C,O,N){if(N==null){var P=this.descendant(v.default,C),F=r(P,2),K=F[0],W=F[1];K.insertAt(W,O)}}},{key:"length",value:function(){var C=this.domNode.textContent.length;return this.domNode.textContent.endsWith(`
105
107
  `)?C:C+1}},{key:"newlineIndex",value:function(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(O)return this.domNode.textContent.slice(0,C).lastIndexOf(`
106
108
  `);var N=this.domNode.textContent.slice(C).indexOf(`
107
109
  `);return N>-1?C+N:-1}},{key:"optimize",value:function(C){this.domNode.textContent.endsWith(`
108
110
  `)||this.appendChild(f.default.create("text",`
109
- `)),l(M.prototype.__proto__||Object.getPrototypeOf(M.prototype),"optimize",this).call(this,C);var O=this.next;O!=null&&O.prev===this&&O.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===O.statics.formats(O.domNode)&&(O.optimize(C),O.moveChildren(this),O.remove())}},{key:"replace",value:function(C){l(M.prototype.__proto__||Object.getPrototypeOf(M.prototype),"replace",this).call(this,C),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(O){var N=f.default.find(O);N==null?O.parentNode.removeChild(O):N instanceof f.default.Embed?N.remove():N.unwrap()})}}],[{key:"create",value:function(C){var O=l(M.__proto__||Object.getPrototypeOf(M),"create",this).call(this,C);return O.setAttribute("spellcheck",!1),O}},{key:"formats",value:function(){return!0}}]),M}(h.default);S.blotName="code-block",S.tagName="PRE",S.TAB=" ",o.Code=T,o.default=S},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(K){return typeof K}:function(K){return K&&typeof Symbol=="function"&&K.constructor===Symbol&&K!==Symbol.prototype?"symbol":typeof K},s=function(){function K(V,D){var A=[],I=!0,U=!1,F=void 0;try{for(var L=V[Symbol.iterator](),z;!(I=(z=L.next()).done)&&(A.push(z.value),!(D&&A.length===D));I=!0);}catch(Z){U=!0,F=Z}finally{try{!I&&L.return&&L.return()}finally{if(U)throw F}}return A}return function(V,D){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return K(V,D);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function K(V,D){for(var A=0;A<D.length;A++){var I=D[A];I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(V,I.key,I)}}return function(V,D,A){return D&&K(V.prototype,D),A&&K(V,A),V}}(),u=a(2),d=O(u),p=a(20),f=O(p),c=a(0),h=O(c),v=a(13),m=O(v),_=a(24),y=O(_),g=a(4),w=O(g),b=a(16),k=O(b),T=a(21),S=O(T),x=a(11),M=O(x),E=a(3),C=O(E);function O(K){return K&&K.__esModule?K:{default:K}}function N(K,V,D){return V in K?Object.defineProperty(K,V,{value:D,enumerable:!0,configurable:!0,writable:!0}):K[V]=D,K}function R(K,V){if(!(K instanceof V))throw new TypeError("Cannot call a class as a function")}var q=/^[ -~]*$/,W=function(){function K(V){R(this,K),this.scroll=V,this.delta=this.getDelta()}return l(K,[{key:"applyDelta",value:function(D){var A=this,I=!1;this.scroll.update();var U=this.scroll.length();return this.scroll.batchStart(),D=re(D),D.reduce(function(F,L){var z=L.retain||L.delete||L.insert.length||1,Z=L.attributes||{};if(L.insert!=null){if(typeof L.insert=="string"){var J=L.insert;J.endsWith(`
110
- `)&&I&&(I=!1,J=J.slice(0,-1)),F>=U&&!J.endsWith(`
111
- `)&&(I=!0),A.scroll.insertAt(F,J);var ne=A.scroll.line(F),ce=s(ne,2),he=ce[0],be=ce[1],ke=(0,C.default)({},(0,g.bubbleFormats)(he));if(he instanceof w.default){var Oe=he.descendant(h.default.Leaf,be),Re=s(Oe,1),Me=Re[0];ke=(0,C.default)(ke,(0,g.bubbleFormats)(Me))}Z=f.default.attributes.diff(ke,Z)||{}}else if(i(L.insert)==="object"){var Q=Object.keys(L.insert)[0];if(Q==null)return F;A.scroll.insertAt(F,Q,L.insert[Q])}U+=z}return Object.keys(Z).forEach(function(te){A.scroll.formatAt(F,z,te,Z[te])}),F+z},0),D.reduce(function(F,L){return typeof L.delete=="number"?(A.scroll.deleteAt(F,L.delete),F):F+(L.retain||L.insert.length||1)},0),this.scroll.batchEnd(),this.update(D)}},{key:"deleteText",value:function(D,A){return this.scroll.deleteAt(D,A),this.update(new d.default().retain(D).delete(A))}},{key:"formatLine",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return this.scroll.update(),Object.keys(U).forEach(function(F){if(!(I.scroll.whitelist!=null&&!I.scroll.whitelist[F])){var L=I.scroll.lines(D,Math.max(A,1)),z=A;L.forEach(function(Z){var J=Z.length();if(!(Z instanceof m.default))Z.format(F,U[F]);else{var ne=D-Z.offset(I.scroll),ce=Z.newlineIndex(ne+z)-ne+1;Z.formatAt(ne,ce,F,U[F])}z-=J})}}),this.scroll.optimize(),this.update(new d.default().retain(D).retain(A,(0,S.default)(U)))}},{key:"formatText",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return Object.keys(U).forEach(function(F){I.scroll.formatAt(D,A,F,U[F])}),this.update(new d.default().retain(D).retain(A,(0,S.default)(U)))}},{key:"getContents",value:function(D,A){return this.delta.slice(D,D+A)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(D,A){return D.concat(A.delta())},new d.default)}},{key:"getFormat",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,I=[],U=[];A===0?this.scroll.path(D).forEach(function(L){var z=s(L,1),Z=z[0];Z instanceof w.default?I.push(Z):Z instanceof h.default.Leaf&&U.push(Z)}):(I=this.scroll.lines(D,A),U=this.scroll.descendants(h.default.Leaf,D,A));var F=[I,U].map(function(L){if(L.length===0)return{};for(var z=(0,g.bubbleFormats)(L.shift());Object.keys(z).length>0;){var Z=L.shift();if(Z==null)return z;z=Y((0,g.bubbleFormats)(Z),z)}return z});return C.default.apply(C.default,F)}},{key:"getText",value:function(D,A){return this.getContents(D,A).filter(function(I){return typeof I.insert=="string"}).map(function(I){return I.insert}).join("")}},{key:"insertEmbed",value:function(D,A,I){return this.scroll.insertAt(D,A,I),this.update(new d.default().retain(D).insert(N({},A,I)))}},{key:"insertText",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return A=A.replace(/\r\n/g,`
111
+ `)),c(D.prototype.__proto__||Object.getPrototypeOf(D.prototype),"optimize",this).call(this,C);var O=this.next;O!=null&&O.prev===this&&O.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===O.statics.formats(O.domNode)&&(O.optimize(C),O.moveChildren(this),O.remove())}},{key:"replace",value:function(C){c(D.prototype.__proto__||Object.getPrototypeOf(D.prototype),"replace",this).call(this,C),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(O){var N=f.default.find(O);N==null?O.parentNode.removeChild(O):N instanceof f.default.Embed?N.remove():N.unwrap()})}}],[{key:"create",value:function(C){var O=c(D.__proto__||Object.getPrototypeOf(D),"create",this).call(this,C);return O.setAttribute("spellcheck",!1),O}},{key:"formats",value:function(){return!0}}]),D})(u.default);S.blotName="code-block",S.tagName="PRE",S.TAB=" ",o.Code=T,o.default=S}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(G){return typeof G}:function(G){return G&&typeof Symbol=="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G},d=(function(){function G(V,M){var A=[],B=!0,H=!1,q=void 0;try{for(var L=V[Symbol.iterator](),U;!(B=(U=L.next()).done)&&(A.push(U.value),!(M&&A.length===M));B=!0);}catch(Z){H=!0,q=Z}finally{try{!B&&L.return&&L.return()}finally{if(H)throw q}}return A}return function(V,M){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return G(V,M);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),c=(function(){function G(V,M){for(var A=0;A<M.length;A++){var B=M[A];B.enumerable=B.enumerable||!1,B.configurable=!0,"value"in B&&(B.writable=!0),Object.defineProperty(V,B.key,B)}}return function(V,M,A){return M&&G(V.prototype,M),A&&G(V,A),V}})(),p=a(2),s=O(p),h=a(20),f=O(h),l=a(0),u=O(l),_=a(13),g=O(_),$=a(24),v=O($),b=a(4),y=O(b),m=a(16),w=O(m),T=a(21),S=O(T),x=a(11),D=O(x),E=a(3),C=O(E);function O(G){return G&&G.__esModule?G:{default:G}}function N(G,V,M){return V in G?Object.defineProperty(G,V,{value:M,enumerable:!0,configurable:!0,writable:!0}):G[V]=M,G}function P(G,V){if(!(G instanceof V))throw new TypeError("Cannot call a class as a function")}var F=/^[ -~]*$/,K=(function(){function G(V){P(this,G),this.scroll=V,this.delta=this.getDelta()}return c(G,[{key:"applyDelta",value:function(M){var A=this,B=!1;this.scroll.update();var H=this.scroll.length();return this.scroll.batchStart(),M=ee(M),M.reduce(function(q,L){var U=L.retain||L.delete||L.insert.length||1,Z=L.attributes||{};if(L.insert!=null){if(typeof L.insert=="string"){var J=L.insert;J.endsWith(`
112
+ `)&&B&&(B=!1,J=J.slice(0,-1)),q>=H&&!J.endsWith(`
113
+ `)&&(B=!0),A.scroll.insertAt(q,J);var ie=A.scroll.line(q),ce=d(ie,2),he=ce[0],ve=ce[1],we=(0,C.default)({},(0,b.bubbleFormats)(he));if(he instanceof y.default){var Oe=he.descendant(u.default.Leaf,ve),Re=d(Oe,1),Pe=Re[0];we=(0,C.default)(we,(0,b.bubbleFormats)(Pe))}Z=f.default.attributes.diff(we,Z)||{}}else if(r(L.insert)==="object"){var Q=Object.keys(L.insert)[0];if(Q==null)return q;A.scroll.insertAt(q,Q,L.insert[Q])}H+=U}return Object.keys(Z).forEach(function(ne){A.scroll.formatAt(q,U,ne,Z[ne])}),q+U},0),M.reduce(function(q,L){return typeof L.delete=="number"?(A.scroll.deleteAt(q,L.delete),q):q+(L.retain||L.insert.length||1)},0),this.scroll.batchEnd(),this.update(M)}},{key:"deleteText",value:function(M,A){return this.scroll.deleteAt(M,A),this.update(new s.default().retain(M).delete(A))}},{key:"formatLine",value:function(M,A){var B=this,H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return this.scroll.update(),Object.keys(H).forEach(function(q){if(!(B.scroll.whitelist!=null&&!B.scroll.whitelist[q])){var L=B.scroll.lines(M,Math.max(A,1)),U=A;L.forEach(function(Z){var J=Z.length();if(!(Z instanceof g.default))Z.format(q,H[q]);else{var ie=M-Z.offset(B.scroll),ce=Z.newlineIndex(ie+U)-ie+1;Z.formatAt(ie,ce,q,H[q])}U-=J})}}),this.scroll.optimize(),this.update(new s.default().retain(M).retain(A,(0,S.default)(H)))}},{key:"formatText",value:function(M,A){var B=this,H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return Object.keys(H).forEach(function(q){B.scroll.formatAt(M,A,q,H[q])}),this.update(new s.default().retain(M).retain(A,(0,S.default)(H)))}},{key:"getContents",value:function(M,A){return this.delta.slice(M,M+A)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(M,A){return M.concat(A.delta())},new s.default)}},{key:"getFormat",value:function(M){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,B=[],H=[];A===0?this.scroll.path(M).forEach(function(L){var U=d(L,1),Z=U[0];Z instanceof y.default?B.push(Z):Z instanceof u.default.Leaf&&H.push(Z)}):(B=this.scroll.lines(M,A),H=this.scroll.descendants(u.default.Leaf,M,A));var q=[B,H].map(function(L){if(L.length===0)return{};for(var U=(0,b.bubbleFormats)(L.shift());Object.keys(U).length>0;){var Z=L.shift();if(Z==null)return U;U=W((0,b.bubbleFormats)(Z),U)}return U});return C.default.apply(C.default,q)}},{key:"getText",value:function(M,A){return this.getContents(M,A).filter(function(B){return typeof B.insert=="string"}).map(function(B){return B.insert}).join("")}},{key:"insertEmbed",value:function(M,A,B){return this.scroll.insertAt(M,A,B),this.update(new s.default().retain(M).insert(N({},A,B)))}},{key:"insertText",value:function(M,A){var B=this,H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return A=A.replace(/\r\n/g,`
112
114
  `).replace(/\r/g,`
113
- `),this.scroll.insertAt(D,A),Object.keys(U).forEach(function(F){I.scroll.formatAt(D,A.length,F,U[F])}),this.update(new d.default().retain(D).insert(A,(0,S.default)(U)))}},{key:"isBlank",value:function(){if(this.scroll.children.length==0)return!0;if(this.scroll.children.length>1)return!1;var D=this.scroll.children.head;return D.statics.blotName!==w.default.blotName||D.children.length>1?!1:D.children.head instanceof k.default}},{key:"removeFormat",value:function(D,A){var I=this.getText(D,A),U=this.scroll.line(D+A),F=s(U,2),L=F[0],z=F[1],Z=0,J=new d.default;L!=null&&(L instanceof m.default?Z=L.newlineIndex(z)-z+1:Z=L.length()-z,J=L.delta().slice(z,z+Z-1).insert(`
114
- `));var ne=this.getContents(D,A+Z),ce=ne.diff(new d.default().insert(I).concat(J)),he=new d.default().retain(D).concat(ce);return this.applyDelta(he)}},{key:"update",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],I=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,U=this.delta;if(A.length===1&&A[0].type==="characterData"&&A[0].target.data.match(q)&&h.default.find(A[0].target)){var F=h.default.find(A[0].target),L=(0,g.bubbleFormats)(F),z=F.offset(this.scroll),Z=A[0].oldValue.replace(y.default.CONTENTS,""),J=new d.default().insert(Z),ne=new d.default().insert(F.value()),ce=new d.default().retain(z).concat(J.diff(ne,I));D=ce.reduce(function(he,be){return be.insert?he.insert(be.insert,L):he.push(be)},new d.default),this.delta=U.compose(D)}else this.delta=this.getDelta(),(!D||!(0,M.default)(U.compose(D),this.delta))&&(D=U.diff(this.delta,I));return D}}]),K}();function Y(K,V){return Object.keys(V).reduce(function(D,A){return K[A]==null||(V[A]===K[A]?D[A]=V[A]:Array.isArray(V[A])?V[A].indexOf(K[A])<0&&(D[A]=V[A].concat([K[A]])):D[A]=[V[A],K[A]]),D},{})}function re(K){return K.reduce(function(V,D){if(D.insert===1){var A=(0,S.default)(D.attributes);return delete A.image,V.insert({image:D.attributes.image},A)}if(D.attributes!=null&&(D.attributes.list===!0||D.attributes.bullet===!0)&&(D=(0,S.default)(D),D.attributes.list?D.attributes.list="ordered":(D.attributes.list="bullet",delete D.attributes.bullet)),typeof D.insert=="string"){var I=D.insert.replace(/\r\n/g,`
115
+ `),this.scroll.insertAt(M,A),Object.keys(H).forEach(function(q){B.scroll.formatAt(M,A.length,q,H[q])}),this.update(new s.default().retain(M).insert(A,(0,S.default)(H)))}},{key:"isBlank",value:function(){if(this.scroll.children.length==0)return!0;if(this.scroll.children.length>1)return!1;var M=this.scroll.children.head;return M.statics.blotName!==y.default.blotName||M.children.length>1?!1:M.children.head instanceof w.default}},{key:"removeFormat",value:function(M,A){var B=this.getText(M,A),H=this.scroll.line(M+A),q=d(H,2),L=q[0],U=q[1],Z=0,J=new s.default;L!=null&&(L instanceof g.default?Z=L.newlineIndex(U)-U+1:Z=L.length()-U,J=L.delta().slice(U,U+Z-1).insert(`
116
+ `));var ie=this.getContents(M,A+Z),ce=ie.diff(new s.default().insert(B).concat(J)),he=new s.default().retain(M).concat(ce);return this.applyDelta(he)}},{key:"update",value:function(M){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],B=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,H=this.delta;if(A.length===1&&A[0].type==="characterData"&&A[0].target.data.match(F)&&u.default.find(A[0].target)){var q=u.default.find(A[0].target),L=(0,b.bubbleFormats)(q),U=q.offset(this.scroll),Z=A[0].oldValue.replace(v.default.CONTENTS,""),J=new s.default().insert(Z),ie=new s.default().insert(q.value()),ce=new s.default().retain(U).concat(J.diff(ie,B));M=ce.reduce(function(he,ve){return ve.insert?he.insert(ve.insert,L):he.push(ve)},new s.default),this.delta=H.compose(M)}else this.delta=this.getDelta(),(!M||!(0,D.default)(H.compose(M),this.delta))&&(M=H.diff(this.delta,B));return M}}]),G})();function W(G,V){return Object.keys(V).reduce(function(M,A){return G[A]==null||(V[A]===G[A]?M[A]=V[A]:Array.isArray(V[A])?V[A].indexOf(G[A])<0&&(M[A]=V[A].concat([G[A]])):M[A]=[V[A],G[A]]),M},{})}function ee(G){return G.reduce(function(V,M){if(M.insert===1){var A=(0,S.default)(M.attributes);return delete A.image,V.insert({image:M.attributes.image},A)}if(M.attributes!=null&&(M.attributes.list===!0||M.attributes.bullet===!0)&&(M=(0,S.default)(M),M.attributes.list?M.attributes.list="ordered":(M.attributes.list="bullet",delete M.attributes.bullet)),typeof M.insert=="string"){var B=M.insert.replace(/\r\n/g,`
115
117
  `).replace(/\r/g,`
116
- `);return V.insert(I,D.attributes)}return V.push(D)},new d.default)}o.default=W},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Range=void 0;var i=function(){function x(M,E){var C=[],O=!0,N=!1,R=void 0;try{for(var q=M[Symbol.iterator](),W;!(O=(W=q.next()).done)&&(C.push(W.value),!(E&&C.length===E));O=!0);}catch(Y){N=!0,R=Y}finally{try{!O&&q.return&&q.return()}finally{if(N)throw R}}return C}return function(M,E){if(Array.isArray(M))return M;if(Symbol.iterator in Object(M))return x(M,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function x(M,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(M,O.key,O)}}return function(M,E,C){return E&&x(M.prototype,E),C&&x(M,C),M}}(),l=a(0),u=y(l),d=a(21),p=y(d),f=a(11),c=y(f),h=a(8),v=y(h),m=a(10),_=y(m);function y(x){return x&&x.__esModule?x:{default:x}}function g(x){if(Array.isArray(x)){for(var M=0,E=Array(x.length);M<x.length;M++)E[M]=x[M];return E}else return Array.from(x)}function w(x,M){if(!(x instanceof M))throw new TypeError("Cannot call a class as a function")}var b=(0,_.default)("quill:selection"),k=function x(M){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;w(this,x),this.index=M,this.length=E},T=function(){function x(M,E){var C=this;w(this,x),this.emitter=E,this.scroll=M,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=u.default.create("cursor",this),this.lastRange=this.savedRange=new k(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){C.mouseDown||setTimeout(C.update.bind(C,v.default.sources.USER),1)}),this.emitter.on(v.default.events.EDITOR_CHANGE,function(O,N){O===v.default.events.TEXT_CHANGE&&N.length()>0&&C.update(v.default.sources.SILENT)}),this.emitter.on(v.default.events.SCROLL_BEFORE_UPDATE,function(){if(C.hasFocus()){var O=C.getNativeRange();O!=null&&O.start.node!==C.cursor.textNode&&C.emitter.once(v.default.events.SCROLL_UPDATE,function(){try{C.setNativeRange(O.start.node,O.start.offset,O.end.node,O.end.offset)}catch{}})}}),this.emitter.on(v.default.events.SCROLL_OPTIMIZE,function(O,N){if(N.range){var R=N.range,q=R.startNode,W=R.startOffset,Y=R.endNode,re=R.endOffset;C.setNativeRange(q,W,Y,re)}}),this.update(v.default.sources.SILENT)}return s(x,[{key:"handleComposition",value:function(){var E=this;this.root.addEventListener("compositionstart",function(){E.composing=!0}),this.root.addEventListener("compositionend",function(){if(E.composing=!1,E.cursor.parent){var C=E.cursor.restore();if(!C)return;setTimeout(function(){E.setNativeRange(C.startNode,C.startOffset,C.endNode,C.endOffset)},1)}})}},{key:"handleDragging",value:function(){var E=this;this.emitter.listenDOM("mousedown",document.body,function(){E.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){E.mouseDown=!1,E.update(v.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(E,C){if(!(this.scroll.whitelist!=null&&!this.scroll.whitelist[E])){this.scroll.update();var O=this.getNativeRange();if(!(O==null||!O.native.collapsed||u.default.query(E,u.default.Scope.BLOCK))){if(O.start.node!==this.cursor.textNode){var N=u.default.find(O.start.node,!1);if(N==null)return;if(N instanceof u.default.Leaf){var R=N.split(O.start.offset);N.parent.insertBefore(this.cursor,R)}else N.insertBefore(this.cursor,O.start.node);this.cursor.attach()}this.cursor.format(E,C),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,O=this.scroll.length();E=Math.min(E,O-1),C=Math.min(E+C,O-1)-E;var N=void 0,R=this.scroll.leaf(E),q=i(R,2),W=q[0],Y=q[1];if(W==null)return null;var re=W.position(Y,!0),K=i(re,2);N=K[0],Y=K[1];var V=document.createRange();if(C>0){V.setStart(N,Y);var D=this.scroll.leaf(E+C),A=i(D,2);if(W=A[0],Y=A[1],W==null)return null;var I=W.position(Y,!0),U=i(I,2);return N=U[0],Y=U[1],V.setEnd(N,Y),V.getBoundingClientRect()}else{var F="left",L=void 0;return N instanceof Text?(Y<N.data.length?(V.setStart(N,Y),V.setEnd(N,Y+1)):(V.setStart(N,Y-1),V.setEnd(N,Y),F="right"),L=V.getBoundingClientRect()):(L=W.domNode.getBoundingClientRect(),Y>0&&(F="right")),{bottom:L.top+L.height,height:L.height,left:L[F],right:L[F],top:L.top,width:0}}}},{key:"getNativeRange",value:function(){var E=document.getSelection();if(E==null||E.rangeCount<=0)return null;var C=E.getRangeAt(0);if(C==null)return null;var O=this.normalizeNative(C);return b.info("getNativeRange",O),O}},{key:"getRange",value:function(){var E=this.getNativeRange();if(E==null)return[null,null];var C=this.normalizedToRange(E);return[C,E]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(E){var C=this,O=[[E.start.node,E.start.offset]];E.native.collapsed||O.push([E.end.node,E.end.offset]);var N=O.map(function(W){var Y=i(W,2),re=Y[0],K=Y[1],V=u.default.find(re,!0),D=V.offset(C.scroll);return K===0?D:V instanceof u.default.Container?D+V.length():D+V.index(re,K)}),R=Math.min(Math.max.apply(Math,g(N)),this.scroll.length()-1),q=Math.min.apply(Math,[R].concat(g(N)));return new k(q,R-q)}},{key:"normalizeNative",value:function(E){if(!S(this.root,E.startContainer)||!E.collapsed&&!S(this.root,E.endContainer))return null;var C={start:{node:E.startContainer,offset:E.startOffset},end:{node:E.endContainer,offset:E.endOffset},native:E};return[C.start,C.end].forEach(function(O){for(var N=O.node,R=O.offset;!(N instanceof Text)&&N.childNodes.length>0;)if(N.childNodes.length>R)N=N.childNodes[R],R=0;else if(N.childNodes.length===R)N=N.lastChild,R=N instanceof Text?N.data.length:N.childNodes.length+1;else break;O.node=N,O.offset=R}),C}},{key:"rangeToNative",value:function(E){var C=this,O=E.collapsed?[E.index]:[E.index,E.index+E.length],N=[],R=this.scroll.length();return O.forEach(function(q,W){q=Math.min(R-1,q);var Y=void 0,re=C.scroll.leaf(q),K=i(re,2),V=K[0],D=K[1],A=V.position(D,W!==0),I=i(A,2);Y=I[0],D=I[1],N.push(Y,D)}),N.length<2&&(N=N.concat(N)),N}},{key:"scrollIntoView",value:function(E){var C=this.lastRange;if(C!=null){var O=this.getBounds(C.index,C.length);if(O!=null){var N=this.scroll.length()-1,R=this.scroll.line(Math.min(C.index,N)),q=i(R,1),W=q[0],Y=W;if(C.length>0){var re=this.scroll.line(Math.min(C.index+C.length,N)),K=i(re,1);Y=K[0]}if(!(W==null||Y==null)){var V=E.getBoundingClientRect();O.top<V.top?E.scrollTop-=V.top-O.top:O.bottom>V.bottom&&(E.scrollTop+=O.bottom-V.bottom)}}}}},{key:"setNativeRange",value:function(E,C){var O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:E,N=arguments.length>3&&arguments[3]!==void 0?arguments[3]:C,R=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(b.info("setNativeRange",E,C,O,N),!(E!=null&&(this.root.parentNode==null||E.parentNode==null||O.parentNode==null))){var q=document.getSelection();if(q!=null)if(E!=null){this.hasFocus()||this.root.focus();var W=(this.getNativeRange()||{}).native;if(W==null||R||E!==W.startContainer||C!==W.startOffset||O!==W.endContainer||N!==W.endOffset){E.tagName=="BR"&&(C=[].indexOf.call(E.parentNode.childNodes,E),E=E.parentNode),O.tagName=="BR"&&(N=[].indexOf.call(O.parentNode.childNodes,O),O=O.parentNode);var Y=document.createRange();Y.setStart(E,C),Y.setEnd(O,N),q.removeAllRanges(),q.addRange(Y)}}else q.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:v.default.sources.API;if(typeof C=="string"&&(O=C,C=!1),b.info("setRange",E),E!=null){var N=this.rangeToNative(E);this.setNativeRange.apply(this,g(N).concat([C]))}else this.setNativeRange(null);this.update(O)}},{key:"update",value:function(){var E=arguments.length>0&&arguments[0]!==void 0?arguments[0]:v.default.sources.USER,C=this.lastRange,O=this.getRange(),N=i(O,2),R=N[0],q=N[1];if(this.lastRange=R,this.lastRange!=null&&(this.savedRange=this.lastRange),!(0,c.default)(C,this.lastRange)){var W;!this.composing&&q!=null&&q.native.collapsed&&q.start.node!==this.cursor.textNode&&this.cursor.restore();var Y=[v.default.events.SELECTION_CHANGE,(0,p.default)(this.lastRange),(0,p.default)(C),E];if((W=this.emitter).emit.apply(W,[v.default.events.EDITOR_CHANGE].concat(Y)),E!==v.default.sources.SILENT){var re;(re=this.emitter).emit.apply(re,Y)}}}}]),x}();function S(x,M){try{M.parentNode}catch{return!1}return M instanceof Text&&(M=M.parentNode),x.contains(M)}o.Range=k,o.default=T},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(0),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,[{key:"insertInto",value:function(y,g){y.children.length===0?s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"insertInto",this).call(this,y,g):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),m}(u.default.Embed);h.blotName="break",h.tagName="BR",o.default=h},function(e,o,a){var i=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(44),l=a(30),u=a(1),d=function(f){i(c,f);function c(h){var v=f.call(this,h)||this;return v.build(),v}return c.prototype.appendChild=function(h){this.insertBefore(h)},c.prototype.attach=function(){f.prototype.attach.call(this),this.children.forEach(function(h){h.attach()})},c.prototype.build=function(){var h=this;this.children=new s.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(v){try{var m=p(v);h.insertBefore(m,h.children.head||void 0)}catch(_){if(_ instanceof u.ParchmentError)return;throw _}})},c.prototype.deleteAt=function(h,v){if(h===0&&v===this.length())return this.remove();this.children.forEachAt(h,v,function(m,_,y){m.deleteAt(_,y)})},c.prototype.descendant=function(h,v){var m=this.children.find(v),_=m[0],y=m[1];return h.blotName==null&&h(_)||h.blotName!=null&&_ instanceof h?[_,y]:_ instanceof c?_.descendant(h,y):[null,-1]},c.prototype.descendants=function(h,v,m){v===void 0&&(v=0),m===void 0&&(m=Number.MAX_VALUE);var _=[],y=m;return this.children.forEachAt(v,m,function(g,w,b){(h.blotName==null&&h(g)||h.blotName!=null&&g instanceof h)&&_.push(g),g instanceof c&&(_=_.concat(g.descendants(h,w,y))),y-=b}),_},c.prototype.detach=function(){this.children.forEach(function(h){h.detach()}),f.prototype.detach.call(this)},c.prototype.formatAt=function(h,v,m,_){this.children.forEachAt(h,v,function(y,g,w){y.formatAt(g,w,m,_)})},c.prototype.insertAt=function(h,v,m){var _=this.children.find(h),y=_[0],g=_[1];if(y)y.insertAt(g,v,m);else{var w=m==null?u.create("text",v):u.create(v,m);this.appendChild(w)}},c.prototype.insertBefore=function(h,v){if(this.statics.allowedChildren!=null&&!this.statics.allowedChildren.some(function(m){return h instanceof m}))throw new u.ParchmentError("Cannot insert "+h.statics.blotName+" into "+this.statics.blotName);h.insertInto(this,v)},c.prototype.length=function(){return this.children.reduce(function(h,v){return h+v.length()},0)},c.prototype.moveChildren=function(h,v){this.children.forEach(function(m){h.insertBefore(m,v)})},c.prototype.optimize=function(h){if(f.prototype.optimize.call(this,h),this.children.length===0)if(this.statics.defaultChild!=null){var v=u.create(this.statics.defaultChild);this.appendChild(v),v.optimize(h)}else this.remove()},c.prototype.path=function(h,v){v===void 0&&(v=!1);var m=this.children.find(h,v),_=m[0],y=m[1],g=[[this,h]];return _ instanceof c?g.concat(_.path(y,v)):(_!=null&&g.push([_,y]),g)},c.prototype.removeChild=function(h){this.children.remove(h)},c.prototype.replace=function(h){h instanceof c&&h.moveChildren(this),f.prototype.replace.call(this,h)},c.prototype.split=function(h,v){if(v===void 0&&(v=!1),!v){if(h===0)return this;if(h===this.length())return this.next}var m=this.clone();return this.parent.insertBefore(m,this.next),this.children.forEachAt(h,this.length(),function(_,y,g){_=_.split(y,v),m.appendChild(_)}),m},c.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},c.prototype.update=function(h,v){var m=this,_=[],y=[];h.forEach(function(g){g.target===m.domNode&&g.type==="childList"&&(_.push.apply(_,g.addedNodes),y.push.apply(y,g.removedNodes))}),y.forEach(function(g){if(!(g.parentNode!=null&&g.tagName!=="IFRAME"&&document.body.compareDocumentPosition(g)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var w=u.find(g);w!=null&&(w.domNode.parentNode==null||w.domNode.parentNode===m.domNode)&&w.detach()}}),_.filter(function(g){return g.parentNode==m.domNode}).sort(function(g,w){return g===w?0:g.compareDocumentPosition(w)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(g){var w=null;g.nextSibling!=null&&(w=u.find(g.nextSibling));var b=p(g);(b.next!=w||b.next==null)&&(b.parent!=null&&b.parent.removeChild(m),m.insertBefore(b,w||void 0))})},c}(l.default);function p(f){var c=u.find(f);if(c==null)try{c=u.create(f)}catch{c=u.create(u.Scope.INLINE),[].slice.call(f.childNodes).forEach(function(v){c.domNode.appendChild(v)}),f.parentNode&&f.parentNode.replaceChild(c.domNode,f),c.attach()}return c}o.default=d},function(e,o,a){var i=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12),l=a(31),u=a(17),d=a(1),p=function(f){i(c,f);function c(h){var v=f.call(this,h)||this;return v.attributes=new l.default(v.domNode),v}return c.formats=function(h){if(typeof this.tagName=="string")return!0;if(Array.isArray(this.tagName))return h.tagName.toLowerCase()},c.prototype.format=function(h,v){var m=d.query(h);m instanceof s.default?this.attributes.attribute(m,v):v&&m!=null&&(h!==this.statics.blotName||this.formats()[h]!==v)&&this.replaceWith(h,v)},c.prototype.formats=function(){var h=this.attributes.values(),v=this.statics.formats(this.domNode);return v!=null&&(h[this.statics.blotName]=v),h},c.prototype.replaceWith=function(h,v){var m=f.prototype.replaceWith.call(this,h,v);return this.attributes.copy(m),m},c.prototype.update=function(h,v){var m=this;f.prototype.update.call(this,h,v),h.some(function(_){return _.target===m.domNode&&_.type==="attributes"})&&this.attributes.build()},c.prototype.wrap=function(h,v){var m=f.prototype.wrap.call(this,h,v);return m instanceof c&&m.statics.scope===this.statics.scope&&this.attributes.move(m),m},c}(u.default);o.default=p},function(e,o,a){var i=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(30),l=a(1),u=function(d){i(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.value=function(f){return!0},p.prototype.index=function(f,c){return this.domNode===f||this.domNode.compareDocumentPosition(f)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(c,1):-1},p.prototype.position=function(f,c){var h=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return f>0&&(h+=1),[this.parent.domNode,h]},p.prototype.value=function(){var f;return f={},f[this.statics.blotName]=this.statics.value(this.domNode)||!0,f},p.scope=l.Scope.INLINE_BLOT,p}(s.default);o.default=u},function(e,o,a){var i=a(11),s=a(3),l={attributes:{compose:function(d,p,f){typeof d!="object"&&(d={}),typeof p!="object"&&(p={});var c=s(!0,{},p);f||(c=Object.keys(c).reduce(function(v,m){return c[m]!=null&&(v[m]=c[m]),v},{}));for(var h in d)d[h]!==void 0&&p[h]===void 0&&(c[h]=d[h]);return Object.keys(c).length>0?c:void 0},diff:function(d,p){typeof d!="object"&&(d={}),typeof p!="object"&&(p={});var f=Object.keys(d).concat(Object.keys(p)).reduce(function(c,h){return i(d[h],p[h])||(c[h]=p[h]===void 0?null:p[h]),c},{});return Object.keys(f).length>0?f:void 0},transform:function(d,p,f){if(typeof d!="object")return p;if(typeof p=="object"){if(!f)return p;var c=Object.keys(p).reduce(function(h,v){return d[v]===void 0&&(h[v]=p[v]),h},{});return Object.keys(c).length>0?c:void 0}}},iterator:function(d){return new u(d)},length:function(d){return typeof d.delete=="number"?d.delete:typeof d.retain=="number"?d.retain:typeof d.insert=="string"?d.insert.length:1}};function u(d){this.ops=d,this.index=0,this.offset=0}u.prototype.hasNext=function(){return this.peekLength()<1/0},u.prototype.next=function(d){d||(d=1/0);var p=this.ops[this.index];if(p){var f=this.offset,c=l.length(p);if(d>=c-f?(d=c-f,this.index+=1,this.offset=0):this.offset+=d,typeof p.delete=="number")return{delete:d};var h={};return p.attributes&&(h.attributes=p.attributes),typeof p.retain=="number"?h.retain=d:typeof p.insert=="string"?h.insert=p.insert.substr(f,d):h.insert=p.insert,h}else return{retain:1/0}},u.prototype.peek=function(){return this.ops[this.index]},u.prototype.peekLength=function(){return this.ops[this.index]?l.length(this.ops[this.index])-this.offset:1/0},u.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},u.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var d=this.offset,p=this.index,f=this.next(),c=this.ops.slice(this.index);return this.offset=d,this.index=p,[f].concat(c)}else return[]},e.exports=l},function(e,o){var a=function(){function i(m,_){return _!=null&&m instanceof _}var s;try{s=Map}catch{s=function(){}}var l;try{l=Set}catch{l=function(){}}var u;try{u=Promise}catch{u=function(){}}function d(m,_,y,g,w){typeof _=="object"&&(y=_.depth,g=_.prototype,w=_.includeNonEnumerable,_=_.circular);var b=[],k=[],T=typeof Buffer<"u";typeof _>"u"&&(_=!0),typeof y>"u"&&(y=1/0);function S(x,M){if(x===null)return null;if(M===0)return x;var E,C;if(typeof x!="object")return x;if(i(x,s))E=new s;else if(i(x,l))E=new l;else if(i(x,u))E=new u(function(V,D){x.then(function(A){V(S(A,M-1))},function(A){D(S(A,M-1))})});else if(d.__isArray(x))E=[];else if(d.__isRegExp(x))E=new RegExp(x.source,v(x)),x.lastIndex&&(E.lastIndex=x.lastIndex);else if(d.__isDate(x))E=new Date(x.getTime());else{if(T&&Buffer.isBuffer(x))return Buffer.allocUnsafe?E=Buffer.allocUnsafe(x.length):E=new Buffer(x.length),x.copy(E),E;i(x,Error)?E=Object.create(x):typeof g>"u"?(C=Object.getPrototypeOf(x),E=Object.create(C)):(E=Object.create(g),C=g)}if(_){var O=b.indexOf(x);if(O!=-1)return k[O];b.push(x),k.push(E)}i(x,s)&&x.forEach(function(V,D){var A=S(D,M-1),I=S(V,M-1);E.set(A,I)}),i(x,l)&&x.forEach(function(V){var D=S(V,M-1);E.add(D)});for(var N in x){var R;C&&(R=Object.getOwnPropertyDescriptor(C,N)),!(R&&R.set==null)&&(E[N]=S(x[N],M-1))}if(Object.getOwnPropertySymbols)for(var q=Object.getOwnPropertySymbols(x),N=0;N<q.length;N++){var W=q[N],Y=Object.getOwnPropertyDescriptor(x,W);Y&&!Y.enumerable&&!w||(E[W]=S(x[W],M-1),Y.enumerable||Object.defineProperty(E,W,{enumerable:!1}))}if(w)for(var re=Object.getOwnPropertyNames(x),N=0;N<re.length;N++){var K=re[N],Y=Object.getOwnPropertyDescriptor(x,K);Y&&Y.enumerable||(E[K]=S(x[K],M-1),Object.defineProperty(E,K,{enumerable:!1}))}return E}return S(m,y)}d.clonePrototype=function(_){if(_===null)return null;var y=function(){};return y.prototype=_,new y};function p(m){return Object.prototype.toString.call(m)}d.__objToStr=p;function f(m){return typeof m=="object"&&p(m)==="[object Date]"}d.__isDate=f;function c(m){return typeof m=="object"&&p(m)==="[object Array]"}d.__isArray=c;function h(m){return typeof m=="object"&&p(m)==="[object RegExp]"}d.__isRegExp=h;function v(m){var _="";return m.global&&(_+="g"),m.ignoreCase&&(_+="i"),m.multiline&&(_+="m"),_}return d.__getRegExpFlags=v,d}();typeof e=="object"&&e.exports&&(e.exports=a)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function E(C,O){var N=[],R=!0,q=!1,W=void 0;try{for(var Y=C[Symbol.iterator](),re;!(R=(re=Y.next()).done)&&(N.push(re.value),!(O&&N.length===O));R=!0);}catch(K){q=!0,W=K}finally{try{!R&&Y.return&&Y.return()}finally{if(q)throw W}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function E(C,O){for(var N=0;N<O.length;N++){var R=O[N];R.enumerable=R.enumerable||!1,R.configurable=!0,"value"in R&&(R.writable=!0),Object.defineProperty(C,R.key,R)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}}(),l=function E(C,O,N){C===null&&(C=Function.prototype);var R=Object.getOwnPropertyDescriptor(C,O);if(R===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,N)}else{if("value"in R)return R.value;var W=R.get;return W===void 0?void 0:W.call(N)}},u=a(0),d=b(u),p=a(8),f=b(p),c=a(4),h=b(c),v=a(16),m=b(v),_=a(13),y=b(_),g=a(25),w=b(g);function b(E){return E&&E.__esModule?E:{default:E}}function k(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function T(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function S(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}function x(E){return E instanceof h.default||E instanceof c.BlockEmbed}var M=function(E){S(C,E);function C(O,N){k(this,C);var R=T(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O));return R.emitter=N.emitter,Array.isArray(N.whitelist)&&(R.whitelist=N.whitelist.reduce(function(q,W){return q[W]=!0,q},{})),R.domNode.addEventListener("DOMNodeInserted",function(){}),R.optimize(),R.enable(),R}return s(C,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(N,R){var q=this.line(N),W=i(q,2),Y=W[0],re=W[1],K=this.line(N+R),V=i(K,1),D=V[0];if(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"deleteAt",this).call(this,N,R),D!=null&&Y!==D&&re>0){if(Y instanceof c.BlockEmbed||D instanceof c.BlockEmbed){this.optimize();return}if(Y instanceof y.default){var A=Y.newlineIndex(Y.length(),!0);if(A>-1&&(Y=Y.split(A+1),Y===D)){this.optimize();return}}else if(D instanceof y.default){var I=D.newlineIndex(0);I>-1&&D.split(I+1)}var U=D.children.head instanceof m.default?null:D.children.head;Y.moveChildren(D,U),Y.remove()}this.optimize()}},{key:"enable",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.domNode.setAttribute("contenteditable",N)}},{key:"formatAt",value:function(N,R,q,W){this.whitelist!=null&&!this.whitelist[q]||(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"formatAt",this).call(this,N,R,q,W),this.optimize())}},{key:"insertAt",value:function(N,R,q){if(!(q!=null&&this.whitelist!=null&&!this.whitelist[R])){if(N>=this.length())if(q==null||d.default.query(R,d.default.Scope.BLOCK)==null){var W=d.default.create(this.statics.defaultChild);this.appendChild(W),q==null&&R.endsWith(`
117
- `)&&(R=R.slice(0,-1)),W.insertAt(0,R,q)}else{var Y=d.default.create(R,q);this.appendChild(Y)}else l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertAt",this).call(this,N,R,q);this.optimize()}}},{key:"insertBefore",value:function(N,R){if(N.statics.scope===d.default.Scope.INLINE_BLOT){var q=d.default.create(this.statics.defaultChild);q.appendChild(N),N=q}l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertBefore",this).call(this,N,R)}},{key:"leaf",value:function(N){return this.path(N).pop()||[null,-1]}},{key:"line",value:function(N){return N===this.length()?this.line(N-1):this.descendant(x,N)}},{key:"lines",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,q=function W(Y,re,K){var V=[],D=K;return Y.children.forEachAt(re,K,function(A,I,U){x(A)?V.push(A):A instanceof d.default.Container&&(V=V.concat(W(A,I,D))),D-=U}),V};return q(this,N,R)}},{key:"optimize",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};this.batch!==!0&&(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"optimize",this).call(this,N,R),N.length>0&&this.emitter.emit(f.default.events.SCROLL_OPTIMIZE,N,R))}},{key:"path",value:function(N){return l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"path",this).call(this,N).slice(1)}},{key:"update",value:function(N){if(this.batch!==!0){var R=f.default.sources.USER;typeof N=="string"&&(R=N),Array.isArray(N)||(N=this.observer.takeRecords()),N.length>0&&this.emitter.emit(f.default.events.SCROLL_BEFORE_UPDATE,R,N),l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"update",this).call(this,N.concat([])),N.length>0&&this.emitter.emit(f.default.events.SCROLL_UPDATE,R,N)}}}]),C}(d.default.Scroll);M.blotName="scroll",M.className="ql-editor",M.tagName="DIV",M.defaultChild="block",M.allowedChildren=[h.default,c.BlockEmbed,w.default],o.default=M},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SHORTKEY=o.default=void 0;var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(L){return typeof L}:function(L){return L&&typeof Symbol=="function"&&L.constructor===Symbol&&L!==Symbol.prototype?"symbol":typeof L},s=function(){function L(z,Z){var J=[],ne=!0,ce=!1,he=void 0;try{for(var be=z[Symbol.iterator](),ke;!(ne=(ke=be.next()).done)&&(J.push(ke.value),!(Z&&J.length===Z));ne=!0);}catch(Oe){ce=!0,he=Oe}finally{try{!ne&&be.return&&be.return()}finally{if(ce)throw he}}return J}return function(z,Z){if(Array.isArray(z))return z;if(Symbol.iterator in Object(z))return L(z,Z);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function L(z,Z){for(var J=0;J<Z.length;J++){var ne=Z[J];ne.enumerable=ne.enumerable||!1,ne.configurable=!0,"value"in ne&&(ne.writable=!0),Object.defineProperty(z,ne.key,ne)}}return function(z,Z,J){return Z&&L(z.prototype,Z),J&&L(z,J),z}}(),u=a(21),d=E(u),p=a(11),f=E(p),c=a(3),h=E(c),v=a(2),m=E(v),_=a(20),y=E(_),g=a(0),w=E(g),b=a(5),k=E(b),T=a(10),S=E(T),x=a(9),M=E(x);function E(L){return L&&L.__esModule?L:{default:L}}function C(L,z,Z){return z in L?Object.defineProperty(L,z,{value:Z,enumerable:!0,configurable:!0,writable:!0}):L[z]=Z,L}function O(L,z){if(!(L instanceof z))throw new TypeError("Cannot call a class as a function")}function N(L,z){if(!L)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return z&&(typeof z=="object"||typeof z=="function")?z:L}function R(L,z){if(typeof z!="function"&&z!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof z);L.prototype=Object.create(z&&z.prototype,{constructor:{value:L,enumerable:!1,writable:!0,configurable:!0}}),z&&(Object.setPrototypeOf?Object.setPrototypeOf(L,z):L.__proto__=z)}var q=(0,S.default)("quill:keyboard"),W=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",Y=function(L){R(z,L),l(z,null,[{key:"match",value:function(J,ne){return ne=F(ne),["altKey","ctrlKey","metaKey","shiftKey"].some(function(ce){return!!ne[ce]!==J[ce]&&ne[ce]!==null})?!1:ne.key===(J.which||J.keyCode)}}]);function z(Z,J){O(this,z);var ne=N(this,(z.__proto__||Object.getPrototypeOf(z)).call(this,Z,J));return ne.bindings={},Object.keys(ne.options.bindings).forEach(function(ce){ce==="list autofill"&&Z.scroll.whitelist!=null&&!Z.scroll.whitelist.list||ne.options.bindings[ce]&&ne.addBinding(ne.options.bindings[ce])}),ne.addBinding({key:z.keys.ENTER,shiftKey:null},A),ne.addBinding({key:z.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},function(){}),/Firefox/i.test(navigator.userAgent)?(ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!0},K),ne.addBinding({key:z.keys.DELETE},{collapsed:!0},V)):(ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},K),ne.addBinding({key:z.keys.DELETE},{collapsed:!0,suffix:/^.?$/},V)),ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!1},D),ne.addBinding({key:z.keys.DELETE},{collapsed:!1},D),ne.addBinding({key:z.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},K),ne.listen(),ne}return l(z,[{key:"addBinding",value:function(J){var ne=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},ce=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},he=F(J);if(he==null||he.key==null)return q.warn("Attempted to add invalid keyboard binding",he);typeof ne=="function"&&(ne={handler:ne}),typeof ce=="function"&&(ce={handler:ce}),he=(0,h.default)(he,ne,ce),this.bindings[he.key]=this.bindings[he.key]||[],this.bindings[he.key].push(he)}},{key:"listen",value:function(){var J=this;this.quill.root.addEventListener("keydown",function(ne){if(!ne.defaultPrevented){var ce=ne.which||ne.keyCode,he=(J.bindings[ce]||[]).filter(function(Ee){return z.match(ne,Ee)});if(he.length!==0){var be=J.quill.getSelection();if(!(be==null||!J.quill.hasFocus())){var ke=J.quill.getLine(be.index),Oe=s(ke,2),Re=Oe[0],Me=Oe[1],Q=J.quill.getLeaf(be.index),te=s(Q,2),ae=te[0],le=te[1],ie=be.length===0?[ae,le]:J.quill.getLeaf(be.index+be.length),$e=s(ie,2),me=$e[0],ve=$e[1],ze=ae instanceof w.default.Text?ae.value().slice(0,le):"",qe=me instanceof w.default.Text?me.value().slice(ve):"",Ae={collapsed:be.length===0,empty:be.length===0&&Re.length()<=1,format:J.quill.getFormat(be),offset:Me,prefix:ze,suffix:qe},wt=he.some(function(Ee){if(Ee.collapsed!=null&&Ee.collapsed!==Ae.collapsed||Ee.empty!=null&&Ee.empty!==Ae.empty||Ee.offset!=null&&Ee.offset!==Ae.offset)return!1;if(Array.isArray(Ee.format)){if(Ee.format.every(function(rt){return Ae.format[rt]==null}))return!1}else if(i(Ee.format)==="object"&&!Object.keys(Ee.format).every(function(rt){return Ee.format[rt]===!0?Ae.format[rt]!=null:Ee.format[rt]===!1?Ae.format[rt]==null:(0,f.default)(Ee.format[rt],Ae.format[rt])}))return!1;return Ee.prefix!=null&&!Ee.prefix.test(Ae.prefix)||Ee.suffix!=null&&!Ee.suffix.test(Ae.suffix)?!1:Ee.handler.call(J,be,Ae)!==!0});wt&&ne.preventDefault()}}}})}}]),z}(M.default);Y.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},Y.DEFAULTS={bindings:{bold:U("bold"),italic:U("italic"),underline:U("underline"),indent:{key:Y.keys.TAB,format:["blockquote","indent","list"],handler:function(z,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","+1",k.default.sources.USER)}},outdent:{key:Y.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(z,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","-1",k.default.sources.USER)}},"outdent backspace":{key:Y.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(z,Z){Z.format.indent!=null?this.quill.format("indent","-1",k.default.sources.USER):Z.format.list!=null&&this.quill.format("list",!1,k.default.sources.USER)}},"indent code-block":I(!0),"outdent code-block":I(!1),"remove tab":{key:Y.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(z){this.quill.deleteText(z.index-1,1,k.default.sources.USER)}},tab:{key:Y.keys.TAB,handler:function(z){this.quill.history.cutoff();var Z=new m.default().retain(z.index).delete(z.length).insert(" ");this.quill.updateContents(Z,k.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(z.index+1,k.default.sources.SILENT)}},"list empty enter":{key:Y.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(z,Z){this.quill.format("list",!1,k.default.sources.USER),Z.format.indent&&this.quill.format("indent",!1,k.default.sources.USER)}},"checklist enter":{key:Y.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(z){var Z=this.quill.getLine(z.index),J=s(Z,2),ne=J[0],ce=J[1],he=(0,h.default)({},ne.formats(),{list:"checked"}),be=new m.default().retain(z.index).insert(`
118
- `,he).retain(ne.length()-ce-1).retain(1,{list:"unchecked"});this.quill.updateContents(be,k.default.sources.USER),this.quill.setSelection(z.index+1,k.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:Y.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(z,Z){var J=this.quill.getLine(z.index),ne=s(J,2),ce=ne[0],he=ne[1],be=new m.default().retain(z.index).insert(`
119
- `,Z.format).retain(ce.length()-he-1).retain(1,{header:null});this.quill.updateContents(be,k.default.sources.USER),this.quill.setSelection(z.index+1,k.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(z,Z){var J=Z.prefix.length,ne=this.quill.getLine(z.index),ce=s(ne,2),he=ce[0],be=ce[1];if(be>J)return!0;var ke=void 0;switch(Z.prefix.trim()){case"[]":case"[ ]":ke="unchecked";break;case"[x]":ke="checked";break;case"-":case"*":ke="bullet";break;default:ke="ordered"}this.quill.insertText(z.index," ",k.default.sources.USER),this.quill.history.cutoff();var Oe=new m.default().retain(z.index-be).delete(J+1).retain(he.length()-2-be).retain(1,{list:ke});this.quill.updateContents(Oe,k.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(z.index-J,k.default.sources.SILENT)}},"code exit":{key:Y.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(z){var Z=this.quill.getLine(z.index),J=s(Z,2),ne=J[0],ce=J[1],he=new m.default().retain(z.index+ne.length()-ce-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(he,k.default.sources.USER)}},"embed left":re(Y.keys.LEFT,!1),"embed left shift":re(Y.keys.LEFT,!0),"embed right":re(Y.keys.RIGHT,!1),"embed right shift":re(Y.keys.RIGHT,!0)}};function re(L,z){var Z,J=L===Y.keys.LEFT?"prefix":"suffix";return Z={key:L,shiftKey:z,altKey:null},C(Z,J,/^$/),C(Z,"handler",function(ce){var he=ce.index;L===Y.keys.RIGHT&&(he+=ce.length+1);var be=this.quill.getLeaf(he),ke=s(be,1),Oe=ke[0];return Oe instanceof w.default.Embed?(L===Y.keys.LEFT?z?this.quill.setSelection(ce.index-1,ce.length+1,k.default.sources.USER):this.quill.setSelection(ce.index-1,k.default.sources.USER):z?this.quill.setSelection(ce.index,ce.length+1,k.default.sources.USER):this.quill.setSelection(ce.index+ce.length+1,k.default.sources.USER),!1):!0}),Z}function K(L,z){if(!(L.index===0||this.quill.getLength()<=1)){var Z=this.quill.getLine(L.index),J=s(Z,1),ne=J[0],ce={};if(z.offset===0){var he=this.quill.getLine(L.index-1),be=s(he,1),ke=be[0];if(ke!=null&&ke.length()>1){var Oe=ne.formats(),Re=this.quill.getFormat(L.index-1,1);ce=y.default.attributes.diff(Oe,Re)||{}}}var Me=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(z.prefix)?2:1;this.quill.deleteText(L.index-Me,Me,k.default.sources.USER),Object.keys(ce).length>0&&this.quill.formatLine(L.index-Me,Me,ce,k.default.sources.USER),this.quill.focus()}}function V(L,z){var Z=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(z.suffix)?2:1;if(!(L.index>=this.quill.getLength()-Z)){var J={},ne=0,ce=this.quill.getLine(L.index),he=s(ce,1),be=he[0];if(z.offset>=be.length()-1){var ke=this.quill.getLine(L.index+1),Oe=s(ke,1),Re=Oe[0];if(Re){var Me=be.formats(),Q=this.quill.getFormat(L.index,1);J=y.default.attributes.diff(Me,Q)||{},ne=Re.length()}}this.quill.deleteText(L.index,Z,k.default.sources.USER),Object.keys(J).length>0&&this.quill.formatLine(L.index+ne-1,Z,J,k.default.sources.USER)}}function D(L){var z=this.quill.getLines(L),Z={};if(z.length>1){var J=z[0].formats(),ne=z[z.length-1].formats();Z=y.default.attributes.diff(ne,J)||{}}this.quill.deleteText(L,k.default.sources.USER),Object.keys(Z).length>0&&this.quill.formatLine(L.index,1,Z,k.default.sources.USER),this.quill.setSelection(L.index,k.default.sources.SILENT),this.quill.focus()}function A(L,z){var Z=this;L.length>0&&this.quill.scroll.deleteAt(L.index,L.length);var J=Object.keys(z.format).reduce(function(ne,ce){return w.default.query(ce,w.default.Scope.BLOCK)&&!Array.isArray(z.format[ce])&&(ne[ce]=z.format[ce]),ne},{});this.quill.insertText(L.index,`
120
- `,J,k.default.sources.USER),this.quill.setSelection(L.index+1,k.default.sources.SILENT),this.quill.focus(),Object.keys(z.format).forEach(function(ne){J[ne]==null&&(Array.isArray(z.format[ne])||ne!=="link"&&Z.quill.format(ne,z.format[ne],k.default.sources.USER))})}function I(L){return{key:Y.keys.TAB,shiftKey:!L,format:{"code-block":!0},handler:function(Z){var J=w.default.query("code-block"),ne=Z.index,ce=Z.length,he=this.quill.scroll.descendant(J,ne),be=s(he,2),ke=be[0],Oe=be[1];if(ke!=null){var Re=this.quill.getIndex(ke),Me=ke.newlineIndex(Oe,!0)+1,Q=ke.newlineIndex(Re+Oe+ce),te=ke.domNode.textContent.slice(Me,Q).split(`
121
- `);Oe=0,te.forEach(function(ae,le){L?(ke.insertAt(Me+Oe,J.TAB),Oe+=J.TAB.length,le===0?ne+=J.TAB.length:ce+=J.TAB.length):ae.startsWith(J.TAB)&&(ke.deleteAt(Me+Oe,J.TAB.length),Oe-=J.TAB.length,le===0?ne-=J.TAB.length:ce-=J.TAB.length),Oe+=ae.length+1}),this.quill.update(k.default.sources.USER),this.quill.setSelection(ne,ce,k.default.sources.SILENT)}}}}function U(L){return{key:L[0].toUpperCase(),shortKey:!0,handler:function(Z,J){this.quill.format(L,!J.format[L],k.default.sources.USER)}}}function F(L){if(typeof L=="string"||typeof L=="number")return F({key:L});if((typeof L>"u"?"undefined":i(L))==="object"&&(L=(0,d.default)(L,!1)),typeof L.key=="string")if(Y.keys[L.key.toUpperCase()]!=null)L.key=Y.keys[L.key.toUpperCase()];else if(L.key.length===1)L.key=L.key.toUpperCase().charCodeAt(0);else return null;return L.shortKey&&(L[W]=L.shortKey,delete L.shortKey),L}o.default=Y,o.SHORTKEY=W},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function y(g,w){var b=[],k=!0,T=!1,S=void 0;try{for(var x=g[Symbol.iterator](),M;!(k=(M=x.next()).done)&&(b.push(M.value),!(w&&b.length===w));k=!0);}catch(E){T=!0,S=E}finally{try{!k&&x.return&&x.return()}finally{if(T)throw S}}return b}return function(g,w){if(Array.isArray(g))return g;if(Symbol.iterator in Object(g))return y(g,w);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),u=a(0),d=c(u),p=a(7),f=c(p);function c(y){return y&&y.__esModule?y:{default:y}}function h(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function v(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function m(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var _=function(y){m(g,y),l(g,null,[{key:"value",value:function(){}}]);function g(w,b){h(this,g);var k=v(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,w));return k.selection=b,k.textNode=document.createTextNode(g.CONTENTS),k.domNode.appendChild(k.textNode),k._length=0,k}return l(g,[{key:"detach",value:function(){this.parent!=null&&this.parent.removeChild(this)}},{key:"format",value:function(b,k){if(this._length!==0)return s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"format",this).call(this,b,k);for(var T=this,S=0;T!=null&&T.statics.scope!==d.default.Scope.BLOCK_BLOT;)S+=T.offset(T.parent),T=T.parent;T!=null&&(this._length=g.CONTENTS.length,T.optimize(),T.formatAt(S,g.CONTENTS.length,b,k),this._length=0)}},{key:"index",value:function(b,k){return b===this.textNode?0:s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"index",this).call(this,b,k)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!(this.selection.composing||this.parent==null)){var b=this.textNode,k=this.selection.getNativeRange(),T=void 0,S=void 0,x=void 0;if(k!=null&&k.start.node===b&&k.end.node===b){var M=[b,k.start.offset,k.end.offset];T=M[0],S=M[1],x=M[2]}for(;this.domNode.lastChild!=null&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==g.CONTENTS){var E=this.textNode.data.split(g.CONTENTS).join("");this.next instanceof f.default?(T=this.next.domNode,this.next.insertAt(0,E),this.textNode.data=g.CONTENTS):(this.textNode.data=E,this.parent.insertBefore(d.default.create(this.textNode),this),this.textNode=document.createTextNode(g.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),S!=null){var C=[S,x].map(function(N){return Math.max(0,Math.min(T.data.length,N-1))}),O=i(C,2);return S=O[0],x=O[1],{startNode:T,startOffset:S,endNode:T,endOffset:x}}}}},{key:"update",value:function(b,k){var T=this;if(b.some(function(x){return x.type==="characterData"&&x.target===T.textNode})){var S=this.restore();S&&(k.range=S)}}},{key:"value",value:function(){return""}}]),g}(d.default.Embed);_.blotName="cursor",_.className="ql-cursor",_.tagName="span",_.CONTENTS="\uFEFF",o.default=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(0),s=d(i),l=a(4),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return m}(s.default.Container);h.allowedChildren=[u.default,l.BlockEmbed,h],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.ColorStyle=o.ColorClass=o.ColorAttributor=void 0;var i=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(0),u=d(l);function d(_){return _&&_.__esModule?_:{default:_}}function p(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function f(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function c(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var h=function(_){c(y,_);function y(){return p(this,y),f(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return i(y,[{key:"value",value:function(w){var b=s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"value",this).call(this,w);return b.startsWith("rgb(")?(b=b.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+b.split(",").map(function(k){return("00"+parseInt(k).toString(16)).slice(-2)}).join("")):b}}]),y}(u.default.Attributor.Style),v=new u.default.Attributor.Class("color","ql-color",{scope:u.default.Scope.INLINE}),m=new h("color","color",{scope:u.default.Scope.INLINE});o.ColorAttributor=h,o.ColorClass=v,o.ColorStyle=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.sanitize=o.default=void 0;var i=function(){function m(_,y){for(var g=0;g<y.length;g++){var w=y[g];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(_,w.key,w)}}return function(_,y,g){return y&&m(_.prototype,y),g&&m(_,g),_}}(),s=function m(_,y,g){_===null&&(_=Function.prototype);var w=Object.getOwnPropertyDescriptor(_,y);if(w===void 0){var b=Object.getPrototypeOf(_);return b===null?void 0:m(b,y,g)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(g)}},l=a(6),u=d(l);function d(m){return m&&m.__esModule?m:{default:m}}function p(m,_){if(!(m instanceof _))throw new TypeError("Cannot call a class as a function")}function f(m,_){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:m}function c(m,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);m.prototype=Object.create(_&&_.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(m,_):m.__proto__=_)}var h=function(m){c(_,m);function _(){return p(this,_),f(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return i(_,[{key:"format",value:function(g,w){if(g!==this.statics.blotName||!w)return s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"format",this).call(this,g,w);w=this.constructor.sanitize(w),this.domNode.setAttribute("href",w)}}],[{key:"create",value:function(g){var w=s(_.__proto__||Object.getPrototypeOf(_),"create",this).call(this,g);return g=this.sanitize(g),w.setAttribute("href",g),w.setAttribute("rel","noopener noreferrer"),w.setAttribute("target","_blank"),w}},{key:"formats",value:function(g){return g.getAttribute("href")}},{key:"sanitize",value:function(g){return v(g,this.PROTOCOL_WHITELIST)?g:this.SANITIZED_URL}}]),_}(u.default);h.blotName="link",h.tagName="A",h.SANITIZED_URL="about:blank",h.PROTOCOL_WHITELIST=["http","https","mailto","tel"];function v(m,_){var y=document.createElement("a");y.href=m;var g=y.href.slice(0,y.href.indexOf(":"));return _.indexOf(g)>-1}o.default=h,o.sanitize=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(_){return typeof _}:function(_){return _&&typeof Symbol=="function"&&_.constructor===Symbol&&_!==Symbol.prototype?"symbol":typeof _},s=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),l=a(23),u=f(l),d=a(107),p=f(d);function f(_){return _&&_.__esModule?_:{default:_}}function c(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}var h=0;function v(_,y){_.setAttribute(y,_.getAttribute(y)!=="true")}var m=function(){function _(y){var g=this;c(this,_),this.select=y,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){g.togglePicker()}),this.label.addEventListener("keydown",function(w){switch(w.keyCode){case u.default.keys.ENTER:g.togglePicker();break;case u.default.keys.ESCAPE:g.escape(),w.preventDefault();break}}),this.select.addEventListener("change",this.update.bind(this))}return s(_,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),v(this.label,"aria-expanded"),v(this.options,"aria-hidden")}},{key:"buildItem",value:function(g){var w=this,b=document.createElement("span");return b.tabIndex="0",b.setAttribute("role","button"),b.classList.add("ql-picker-item"),g.hasAttribute("value")&&b.setAttribute("data-value",g.getAttribute("value")),g.textContent&&b.setAttribute("data-label",g.textContent),b.addEventListener("click",function(){w.selectItem(b,!0)}),b.addEventListener("keydown",function(k){switch(k.keyCode){case u.default.keys.ENTER:w.selectItem(b,!0),k.preventDefault();break;case u.default.keys.ESCAPE:w.escape(),k.preventDefault();break}}),b}},{key:"buildLabel",value:function(){var g=document.createElement("span");return g.classList.add("ql-picker-label"),g.innerHTML=p.default,g.tabIndex="0",g.setAttribute("role","button"),g.setAttribute("aria-expanded","false"),this.container.appendChild(g),g}},{key:"buildOptions",value:function(){var g=this,w=document.createElement("span");w.classList.add("ql-picker-options"),w.setAttribute("aria-hidden","true"),w.tabIndex="-1",w.id="ql-picker-options-"+h,h+=1,this.label.setAttribute("aria-controls",w.id),this.options=w,[].slice.call(this.select.options).forEach(function(b){var k=g.buildItem(b);w.appendChild(k),b.selected===!0&&g.selectItem(k)}),this.container.appendChild(w)}},{key:"buildPicker",value:function(){var g=this;[].slice.call(this.select.attributes).forEach(function(w){g.container.setAttribute(w.name,w.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var g=this;this.close(),setTimeout(function(){return g.label.focus()},1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(g){var w=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,b=this.container.querySelector(".ql-selected");if(g!==b&&(b!=null&&b.classList.remove("ql-selected"),g!=null&&(g.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(g.parentNode.children,g),g.hasAttribute("data-value")?this.label.setAttribute("data-value",g.getAttribute("data-value")):this.label.removeAttribute("data-value"),g.hasAttribute("data-label")?this.label.setAttribute("data-label",g.getAttribute("data-label")):this.label.removeAttribute("data-label"),w))){if(typeof Event=="function")this.select.dispatchEvent(new Event("change"));else if((typeof Event>"u"?"undefined":i(Event))==="object"){var k=document.createEvent("Event");k.initEvent("change",!0,!0),this.select.dispatchEvent(k)}this.close()}}},{key:"update",value:function(){var g=void 0;if(this.select.selectedIndex>-1){var w=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];g=this.select.options[this.select.selectedIndex],this.selectItem(w)}else this.selectItem(null);var b=g!=null&&g!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",b)}}]),_}();o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(0),s=q(i),l=a(5),u=q(l),d=a(4),p=q(d),f=a(16),c=q(f),h=a(25),v=q(h),m=a(24),_=q(m),y=a(35),g=q(y),w=a(6),b=q(w),k=a(22),T=q(k),S=a(7),x=q(S),M=a(55),E=q(M),C=a(42),O=q(C),N=a(23),R=q(N);function q(W){return W&&W.__esModule?W:{default:W}}u.default.register({"blots/block":p.default,"blots/block/embed":d.BlockEmbed,"blots/break":c.default,"blots/container":v.default,"blots/cursor":_.default,"blots/embed":g.default,"blots/inline":b.default,"blots/scroll":T.default,"blots/text":x.default,"modules/clipboard":E.default,"modules/history":O.default,"modules/keyboard":R.default}),s.default.register(p.default,c.default,_.default,b.default,T.default,x.default),o.default=u.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(1),s=function(){function l(u){this.domNode=u,this.domNode[i.DATA_KEY]={blot:this}}return Object.defineProperty(l.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),l.create=function(u){if(this.tagName==null)throw new i.ParchmentError("Blot definition missing tagName");var d;return Array.isArray(this.tagName)?(typeof u=="string"&&(u=u.toUpperCase(),parseInt(u).toString()===u&&(u=parseInt(u))),typeof u=="number"?d=document.createElement(this.tagName[u-1]):this.tagName.indexOf(u)>-1?d=document.createElement(u):d=document.createElement(this.tagName[0])):d=document.createElement(this.tagName),this.className&&d.classList.add(this.className),d},l.prototype.attach=function(){this.parent!=null&&(this.scroll=this.parent.scroll)},l.prototype.clone=function(){var u=this.domNode.cloneNode(!1);return i.create(u)},l.prototype.detach=function(){this.parent!=null&&this.parent.removeChild(this),delete this.domNode[i.DATA_KEY]},l.prototype.deleteAt=function(u,d){var p=this.isolate(u,d);p.remove()},l.prototype.formatAt=function(u,d,p,f){var c=this.isolate(u,d);if(i.query(p,i.Scope.BLOT)!=null&&f)c.wrap(p,f);else if(i.query(p,i.Scope.ATTRIBUTE)!=null){var h=i.create(this.statics.scope);c.wrap(h),h.format(p,f)}},l.prototype.insertAt=function(u,d,p){var f=p==null?i.create("text",d):i.create(d,p),c=this.split(u);this.parent.insertBefore(f,c)},l.prototype.insertInto=function(u,d){d===void 0&&(d=null),this.parent!=null&&this.parent.children.remove(this);var p=null;u.children.insertBefore(this,d),d!=null&&(p=d.domNode),(this.domNode.parentNode!=u.domNode||this.domNode.nextSibling!=p)&&u.domNode.insertBefore(this.domNode,p),this.parent=u,this.attach()},l.prototype.isolate=function(u,d){var p=this.split(u);return p.split(d),p},l.prototype.length=function(){return 1},l.prototype.offset=function(u){return u===void 0&&(u=this.parent),this.parent==null||this==u?0:this.parent.children.offset(this)+this.parent.offset(u)},l.prototype.optimize=function(u){this.domNode[i.DATA_KEY]!=null&&delete this.domNode[i.DATA_KEY].mutations},l.prototype.remove=function(){this.domNode.parentNode!=null&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},l.prototype.replace=function(u){u.parent!=null&&(u.parent.insertBefore(this,u.next),u.remove())},l.prototype.replaceWith=function(u,d){var p=typeof u=="string"?i.create(u,d):u;return p.replace(this),p},l.prototype.split=function(u,d){return u===0?this:this.next},l.prototype.update=function(u,d){},l.prototype.wrap=function(u,d){var p=typeof u=="string"?i.create(u,d):u;return this.parent!=null&&this.parent.insertBefore(p,this.next),p.appendChild(this),p},l.blotName="abstract",l}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(12),s=a(32),l=a(33),u=a(1),d=function(){function p(f){this.attributes={},this.domNode=f,this.build()}return p.prototype.attribute=function(f,c){c?f.add(this.domNode,c)&&(f.value(this.domNode)!=null?this.attributes[f.attrName]=f:delete this.attributes[f.attrName]):(f.remove(this.domNode),delete this.attributes[f.attrName])},p.prototype.build=function(){var f=this;this.attributes={};var c=i.default.keys(this.domNode),h=s.default.keys(this.domNode),v=l.default.keys(this.domNode);c.concat(h).concat(v).forEach(function(m){var _=u.query(m,u.Scope.ATTRIBUTE);_ instanceof i.default&&(f.attributes[_.attrName]=_)})},p.prototype.copy=function(f){var c=this;Object.keys(this.attributes).forEach(function(h){var v=c.attributes[h].value(c.domNode);f.format(h,v)})},p.prototype.move=function(f){var c=this;this.copy(f),Object.keys(this.attributes).forEach(function(h){c.attributes[h].remove(c.domNode)}),this.attributes={}},p.prototype.values=function(){var f=this;return Object.keys(this.attributes).reduce(function(c,h){return c[h]=f.attributes[h].value(f.domNode),c},{})},p}();o.default=d},function(e,o,a){var i=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function l(d,p){var f=d.getAttribute("class")||"";return f.split(/\s+/).filter(function(c){return c.indexOf(p+"-")===0})}var u=function(d){i(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.keys=function(f){return(f.getAttribute("class")||"").split(/\s+/).map(function(c){return c.split("-").slice(0,-1).join("-")})},p.prototype.add=function(f,c){return this.canAdd(f,c)?(this.remove(f),f.classList.add(this.keyName+"-"+c),!0):!1},p.prototype.remove=function(f){var c=l(f,this.keyName);c.forEach(function(h){f.classList.remove(h)}),f.classList.length===0&&f.removeAttribute("class")},p.prototype.value=function(f){var c=l(f,this.keyName)[0]||"",h=c.slice(this.keyName.length+1);return this.canAdd(f,h)?h:""},p}(s.default);o.default=u},function(e,o,a){var i=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function l(d){var p=d.split("-"),f=p.slice(1).map(function(c){return c[0].toUpperCase()+c.slice(1)}).join("");return p[0]+f}var u=function(d){i(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.keys=function(f){return(f.getAttribute("style")||"").split(";").map(function(c){var h=c.split(":");return h[0].trim()})},p.prototype.add=function(f,c){return this.canAdd(f,c)?(f.style[l(this.keyName)]=c,!0):!1},p.prototype.remove=function(f){f.style[l(this.keyName)]="",f.getAttribute("style")||f.removeAttribute("style")},p.prototype.value=function(f){var c=f.style[l(this.keyName)];return this.canAdd(f,c)?c:""},p}(s.default);o.default=u},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function u(d,p){for(var f=0;f<p.length;f++){var c=p[f];c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(d,c.key,c)}}return function(d,p,f){return p&&u(d.prototype,p),f&&u(d,f),d}}();function s(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}var l=function(){function u(d,p){s(this,u),this.quill=d,this.options=p,this.modules={}}return i(u,[{key:"init",value:function(){var p=this;Object.keys(this.options.modules).forEach(function(f){p.modules[f]==null&&p.addModule(f)})}},{key:"addModule",value:function(p){var f=this.quill.constructor.import("modules/"+p);return this.modules[p]=new f(this.quill,this.options.modules[p]||{}),this.modules[p]}}]),u}();l.DEFAULTS={modules:{}},l.themes={default:l},o.default=l},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=a(0),u=f(l),d=a(7),p=f(d);function f(y){return y&&y.__esModule?y:{default:y}}function c(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function h(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function v(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var m="\uFEFF",_=function(y){v(g,y);function g(w){c(this,g);var b=h(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,w));return b.contentNode=document.createElement("span"),b.contentNode.setAttribute("contenteditable",!1),[].slice.call(b.domNode.childNodes).forEach(function(k){b.contentNode.appendChild(k)}),b.leftGuard=document.createTextNode(m),b.rightGuard=document.createTextNode(m),b.domNode.appendChild(b.leftGuard),b.domNode.appendChild(b.contentNode),b.domNode.appendChild(b.rightGuard),b}return i(g,[{key:"index",value:function(b,k){return b===this.leftGuard?0:b===this.rightGuard?1:s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"index",this).call(this,b,k)}},{key:"restore",value:function(b){var k=void 0,T=void 0,S=b.data.split(m).join("");if(b===this.leftGuard)if(this.prev instanceof p.default){var x=this.prev.length();this.prev.insertAt(x,S),k={startNode:this.prev.domNode,startOffset:x+S.length}}else T=document.createTextNode(S),this.parent.insertBefore(u.default.create(T),this),k={startNode:T,startOffset:S.length};else b===this.rightGuard&&(this.next instanceof p.default?(this.next.insertAt(0,S),k={startNode:this.next.domNode,startOffset:S.length}):(T=document.createTextNode(S),this.parent.insertBefore(u.default.create(T),this.next),k={startNode:T,startOffset:S.length}));return b.data=m,k}},{key:"update",value:function(b,k){var T=this;b.forEach(function(S){if(S.type==="characterData"&&(S.target===T.leftGuard||S.target===T.rightGuard)){var x=T.restore(S.target);x&&(k.range=x)}})}}]),g}(u.default.Embed);o.default=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.AlignStyle=o.AlignClass=o.AlignAttribute=void 0;var i=a(0),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}var u={scope:s.default.Scope.BLOCK,whitelist:["right","center","justify"]},d=new s.default.Attributor.Attribute("align","align",u),p=new s.default.Attributor.Class("align","ql-align",u),f=new s.default.Attributor.Style("align","text-align",u);o.AlignAttribute=d,o.AlignClass=p,o.AlignStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.BackgroundStyle=o.BackgroundClass=void 0;var i=a(0),s=u(i),l=a(26);function u(f){return f&&f.__esModule?f:{default:f}}var d=new s.default.Attributor.Class("background","ql-bg",{scope:s.default.Scope.INLINE}),p=new l.ColorAttributor("background","background-color",{scope:s.default.Scope.INLINE});o.BackgroundClass=d,o.BackgroundStyle=p},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.DirectionStyle=o.DirectionClass=o.DirectionAttribute=void 0;var i=a(0),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}var u={scope:s.default.Scope.BLOCK,whitelist:["rtl"]},d=new s.default.Attributor.Attribute("direction","dir",u),p=new s.default.Attributor.Class("direction","ql-direction",u),f=new s.default.Attributor.Style("direction","direction",u);o.DirectionAttribute=d,o.DirectionClass=p,o.DirectionStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.FontClass=o.FontStyle=void 0;var i=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=a(0),u=d(l);function d(y){return y&&y.__esModule?y:{default:y}}function p(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function f(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function c(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var h={scope:u.default.Scope.INLINE,whitelist:["serif","monospace"]},v=new u.default.Attributor.Class("font","ql-font",h),m=function(y){c(g,y);function g(){return p(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return i(g,[{key:"value",value:function(b){return s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"value",this).call(this,b).replace(/["']/g,"")}}]),g}(u.default.Attributor.Style),_=new m("font","font-family",h);o.FontStyle=_,o.FontClass=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SizeStyle=o.SizeClass=void 0;var i=a(0),s=l(i);function l(p){return p&&p.__esModule?p:{default:p}}var u=new s.default.Attributor.Class("size","ql-size",{scope:s.default.Scope.INLINE,whitelist:["small","large","huge"]}),d=new s.default.Attributor.Style("size","font-size",{scope:s.default.Scope.INLINE,whitelist:["10px","18px","32px"]});o.SizeClass=u,o.SizeStyle=d},function(e,o,a){e.exports={align:{"":a(76),center:a(77),right:a(78),justify:a(79)},background:a(80),blockquote:a(81),bold:a(82),clean:a(83),code:a(58),"code-block":a(58),color:a(84),direction:{"":a(85),rtl:a(86)},float:{center:a(87),full:a(88),left:a(89),right:a(90)},formula:a(91),header:{1:a(92),2:a(93)},italic:a(94),image:a(95),indent:{"+1":a(96),"-1":a(97)},link:a(98),list:{ordered:a(99),bullet:a(100),check:a(101)},script:{sub:a(102),super:a(103)},strike:a(104),underline:a(105),video:a(106)}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.getLastChangeIndex=o.default=void 0;var i=function(){function w(b,k){for(var T=0;T<k.length;T++){var S=k[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(b,S.key,S)}}return function(b,k,T){return k&&w(b.prototype,k),T&&w(b,T),b}}(),s=a(0),l=c(s),u=a(5),d=c(u),p=a(9),f=c(p);function c(w){return w&&w.__esModule?w:{default:w}}function h(w,b){if(!(w instanceof b))throw new TypeError("Cannot call a class as a function")}function v(w,b){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:w}function m(w,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);w.prototype=Object.create(b&&b.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(w,b):w.__proto__=b)}var _=function(w){m(b,w);function b(k,T){h(this,b);var S=v(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,k,T));return S.lastRecorded=0,S.ignoreChange=!1,S.clear(),S.quill.on(d.default.events.EDITOR_CHANGE,function(x,M,E,C){x!==d.default.events.TEXT_CHANGE||S.ignoreChange||(!S.options.userOnly||C===d.default.sources.USER?S.record(M,E):S.transform(M))}),S.quill.keyboard.addBinding({key:"Z",shortKey:!0},S.undo.bind(S)),S.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},S.redo.bind(S)),/Win/i.test(navigator.platform)&&S.quill.keyboard.addBinding({key:"Y",shortKey:!0},S.redo.bind(S)),S}return i(b,[{key:"change",value:function(T,S){if(this.stack[T].length!==0){var x=this.stack[T].pop();this.stack[S].push(x),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(x[T],d.default.sources.USER),this.ignoreChange=!1;var M=g(x[T]);this.quill.setSelection(M)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(T,S){if(T.ops.length!==0){this.stack.redo=[];var x=this.quill.getContents().diff(S),M=Date.now();if(this.lastRecorded+this.options.delay>M&&this.stack.undo.length>0){var E=this.stack.undo.pop();x=x.compose(E.undo),T=E.redo.compose(T)}else this.lastRecorded=M;this.stack.undo.push({redo:T,undo:x}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(T){this.stack.undo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)}),this.stack.redo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),b}(f.default);_.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1};function y(w){var b=w.ops[w.ops.length-1];return b==null?!1:b.insert!=null?typeof b.insert=="string"&&b.insert.endsWith(`
122
- `):b.attributes!=null?Object.keys(b.attributes).some(function(k){return l.default.query(k,l.default.Scope.BLOCK)!=null}):!1}function g(w){var b=w.reduce(function(T,S){return T+=S.delete||0,T},0),k=w.length()-b;return y(w)&&(k-=1),k}o.default=_,o.getLastChangeIndex=g},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BaseTooltip=void 0;var i=function(){function A(I,U){for(var F=0;F<U.length;F++){var L=U[F];L.enumerable=L.enumerable||!1,L.configurable=!0,"value"in L&&(L.writable=!0),Object.defineProperty(I,L.key,L)}}return function(I,U,F){return U&&A(I.prototype,U),F&&A(I,F),I}}(),s=function A(I,U,F){I===null&&(I=Function.prototype);var L=Object.getOwnPropertyDescriptor(I,U);if(L===void 0){var z=Object.getPrototypeOf(I);return z===null?void 0:A(z,U,F)}else{if("value"in L)return L.value;var Z=L.get;return Z===void 0?void 0:Z.call(F)}},l=a(3),u=M(l),d=a(2),p=M(d),f=a(8),c=M(f),h=a(23),v=M(h),m=a(34),_=M(m),y=a(59),g=M(y),w=a(60),b=M(w),k=a(28),T=M(k),S=a(61),x=M(S);function M(A){return A&&A.__esModule?A:{default:A}}function E(A,I){if(!(A instanceof I))throw new TypeError("Cannot call a class as a function")}function C(A,I){if(!A)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return I&&(typeof I=="object"||typeof I=="function")?I:A}function O(A,I){if(typeof I!="function"&&I!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof I);A.prototype=Object.create(I&&I.prototype,{constructor:{value:A,enumerable:!1,writable:!0,configurable:!0}}),I&&(Object.setPrototypeOf?Object.setPrototypeOf(A,I):A.__proto__=I)}var N=[!1,"center","right","justify"],R=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],q=[!1,"serif","monospace"],W=["1","2","3",!1],Y=["small",!1,"large","huge"],re=function(A){O(I,A);function I(U,F){E(this,I);var L=C(this,(I.__proto__||Object.getPrototypeOf(I)).call(this,U,F)),z=function Z(J){if(!document.body.contains(U.root))return document.body.removeEventListener("click",Z);L.tooltip!=null&&!L.tooltip.root.contains(J.target)&&document.activeElement!==L.tooltip.textbox&&!L.quill.hasFocus()&&L.tooltip.hide(),L.pickers!=null&&L.pickers.forEach(function(ne){ne.container.contains(J.target)||ne.close()})};return U.emitter.listenDOM("click",document.body,z),L}return i(I,[{key:"addModule",value:function(F){var L=s(I.prototype.__proto__||Object.getPrototypeOf(I.prototype),"addModule",this).call(this,F);return F==="toolbar"&&this.extendToolbar(L),L}},{key:"buildButtons",value:function(F,L){F.forEach(function(z){var Z=z.getAttribute("class")||"";Z.split(/\s+/).forEach(function(J){if(J.startsWith("ql-")&&(J=J.slice(3),L[J]!=null))if(J==="direction")z.innerHTML=L[J][""]+L[J].rtl;else if(typeof L[J]=="string")z.innerHTML=L[J];else{var ne=z.value||"";ne!=null&&L[J][ne]&&(z.innerHTML=L[J][ne])}})})}},{key:"buildPickers",value:function(F,L){var z=this;this.pickers=F.map(function(J){if(J.classList.contains("ql-align"))return J.querySelector("option")==null&&D(J,N),new b.default(J,L.align);if(J.classList.contains("ql-background")||J.classList.contains("ql-color")){var ne=J.classList.contains("ql-background")?"background":"color";return J.querySelector("option")==null&&D(J,R,ne==="background"?"#ffffff":"#000000"),new g.default(J,L[ne])}else return J.querySelector("option")==null&&(J.classList.contains("ql-font")?D(J,q):J.classList.contains("ql-header")?D(J,W):J.classList.contains("ql-size")&&D(J,Y)),new T.default(J)});var Z=function(){z.pickers.forEach(function(ne){ne.update()})};this.quill.on(c.default.events.EDITOR_CHANGE,Z)}}]),I}(_.default);re.DEFAULTS=(0,u.default)(!0,{},_.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var I=this,U=this.container.querySelector("input.ql-image[type=file]");U==null&&(U=document.createElement("input"),U.setAttribute("type","file"),U.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),U.classList.add("ql-image"),U.addEventListener("change",function(){if(U.files!=null&&U.files[0]!=null){var F=new FileReader;F.onload=function(L){var z=I.quill.getSelection(!0);I.quill.updateContents(new p.default().retain(z.index).delete(z.length).insert({image:L.target.result}),c.default.sources.USER),I.quill.setSelection(z.index+1,c.default.sources.SILENT),U.value=""},F.readAsDataURL(U.files[0])}}),this.container.appendChild(U)),U.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var K=function(A){O(I,A);function I(U,F){E(this,I);var L=C(this,(I.__proto__||Object.getPrototypeOf(I)).call(this,U,F));return L.textbox=L.root.querySelector('input[type="text"]'),L.listen(),L}return i(I,[{key:"listen",value:function(){var F=this;this.textbox.addEventListener("keydown",function(L){v.default.match(L,"enter")?(F.save(),L.preventDefault()):v.default.match(L,"escape")&&(F.cancel(),L.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"link",L=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),L!=null?this.textbox.value=L:F!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+F)||""),this.root.setAttribute("data-mode",F)}},{key:"restoreFocus",value:function(){var F=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=F}},{key:"save",value:function(){var F=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":{var L=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",F,c.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",F,c.default.sources.USER)),this.quill.root.scrollTop=L;break}case"video":F=V(F);case"formula":{if(!F)break;var z=this.quill.getSelection(!0);if(z!=null){var Z=z.index+z.length;this.quill.insertEmbed(Z,this.root.getAttribute("data-mode"),F,c.default.sources.USER),this.root.getAttribute("data-mode")==="formula"&&this.quill.insertText(Z+1," ",c.default.sources.USER),this.quill.setSelection(Z+2,c.default.sources.USER)}break}}this.textbox.value="",this.hide()}}]),I}(x.default);function V(A){var I=A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return I?(I[1]||"https")+"://www.youtube.com/embed/"+I[2]+"?showinfo=0":(I=A.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(I[1]||"https")+"://player.vimeo.com/video/"+I[2]+"/":A}function D(A,I){var U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;I.forEach(function(F){var L=document.createElement("option");F===U?L.setAttribute("selected","selected"):L.setAttribute("value",F),A.appendChild(L)})}o.BaseTooltip=K,o.default=re},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function s(){this.head=this.tail=null,this.length=0}return s.prototype.append=function(){for(var l=[],u=0;u<arguments.length;u++)l[u]=arguments[u];this.insertBefore(l[0],null),l.length>1&&this.append.apply(this,l.slice(1))},s.prototype.contains=function(l){for(var u,d=this.iterator();u=d();)if(u===l)return!0;return!1},s.prototype.insertBefore=function(l,u){l&&(l.next=u,u!=null?(l.prev=u.prev,u.prev!=null&&(u.prev.next=l),u.prev=l,u===this.head&&(this.head=l)):this.tail!=null?(this.tail.next=l,l.prev=this.tail,this.tail=l):(l.prev=null,this.head=this.tail=l),this.length+=1)},s.prototype.offset=function(l){for(var u=0,d=this.head;d!=null;){if(d===l)return u;u+=d.length(),d=d.next}return-1},s.prototype.remove=function(l){this.contains(l)&&(l.prev!=null&&(l.prev.next=l.next),l.next!=null&&(l.next.prev=l.prev),l===this.head&&(this.head=l.next),l===this.tail&&(this.tail=l.prev),this.length-=1)},s.prototype.iterator=function(l){return l===void 0&&(l=this.head),function(){var u=l;return l!=null&&(l=l.next),u}},s.prototype.find=function(l,u){u===void 0&&(u=!1);for(var d,p=this.iterator();d=p();){var f=d.length();if(l<f||u&&l===f&&(d.next==null||d.next.length()!==0))return[d,l];l-=f}return[null,0]},s.prototype.forEach=function(l){for(var u,d=this.iterator();u=d();)l(u)},s.prototype.forEachAt=function(l,u,d){if(!(u<=0))for(var p=this.find(l),f=p[0],c=p[1],h,v=l-c,m=this.iterator(f);(h=m())&&v<l+u;){var _=h.length();l>v?d(h,l-v,Math.min(u,v+_-l)):d(h,0,Math.min(_,l+u-v)),v+=_}},s.prototype.map=function(l){return this.reduce(function(u,d){return u.push(l(d)),u},[])},s.prototype.reduce=function(l,u){for(var d,p=this.iterator();d=p();)u=l(u,d);return u},s}();o.default=i},function(e,o,a){var i=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(17),l=a(1),u={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},d=100,p=function(f){i(c,f);function c(h){var v=f.call(this,h)||this;return v.scroll=v,v.observer=new MutationObserver(function(m){v.update(m)}),v.observer.observe(v.domNode,u),v.attach(),v}return c.prototype.detach=function(){f.prototype.detach.call(this),this.observer.disconnect()},c.prototype.deleteAt=function(h,v){this.update(),h===0&&v===this.length()?this.children.forEach(function(m){m.remove()}):f.prototype.deleteAt.call(this,h,v)},c.prototype.formatAt=function(h,v,m,_){this.update(),f.prototype.formatAt.call(this,h,v,m,_)},c.prototype.insertAt=function(h,v,m){this.update(),f.prototype.insertAt.call(this,h,v,m)},c.prototype.optimize=function(h,v){var m=this;h===void 0&&(h=[]),v===void 0&&(v={}),f.prototype.optimize.call(this,v);for(var _=[].slice.call(this.observer.takeRecords());_.length>0;)h.push(_.pop());for(var y=function(k,T){T===void 0&&(T=!0),!(k==null||k===m)&&k.domNode.parentNode!=null&&(k.domNode[l.DATA_KEY].mutations==null&&(k.domNode[l.DATA_KEY].mutations=[]),T&&y(k.parent))},g=function(k){k.domNode[l.DATA_KEY]==null||k.domNode[l.DATA_KEY].mutations==null||(k instanceof s.default&&k.children.forEach(g),k.optimize(v))},w=h,b=0;w.length>0;b+=1){if(b>=d)throw new Error("[Parchment] Maximum optimize iterations reached");for(w.forEach(function(k){var T=l.find(k.target,!0);T!=null&&(T.domNode===k.target&&(k.type==="childList"?(y(l.find(k.previousSibling,!1)),[].forEach.call(k.addedNodes,function(S){var x=l.find(S,!1);y(x,!1),x instanceof s.default&&x.children.forEach(function(M){y(M,!1)})})):k.type==="attributes"&&y(T.prev)),y(T))}),this.children.forEach(g),w=[].slice.call(this.observer.takeRecords()),_=w.slice();_.length>0;)h.push(_.pop())}},c.prototype.update=function(h,v){var m=this;v===void 0&&(v={}),h=h||this.observer.takeRecords(),h.map(function(_){var y=l.find(_.target,!0);return y==null?null:y.domNode[l.DATA_KEY].mutations==null?(y.domNode[l.DATA_KEY].mutations=[_],y):(y.domNode[l.DATA_KEY].mutations.push(_),null)}).forEach(function(_){_==null||_===m||_.domNode[l.DATA_KEY]==null||_.update(_.domNode[l.DATA_KEY].mutations||[],v)}),this.domNode[l.DATA_KEY].mutations!=null&&f.prototype.update.call(this,this.domNode[l.DATA_KEY].mutations,v),this.optimize(h,v)},c.blotName="scroll",c.defaultChild="block",c.scope=l.Scope.BLOCK_BLOT,c.tagName="DIV",c}(s.default);o.default=p},function(e,o,a){var i=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(f,c){f.__proto__=c}||function(f,c){for(var h in c)c.hasOwnProperty(h)&&(f[h]=c[h])};return function(f,c){p(f,c);function h(){this.constructor=f}f.prototype=c===null?Object.create(c):(h.prototype=c.prototype,new h)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),l=a(1);function u(p,f){if(Object.keys(p).length!==Object.keys(f).length)return!1;for(var c in p)if(p[c]!==f[c])return!1;return!0}var d=function(p){i(f,p);function f(){return p!==null&&p.apply(this,arguments)||this}return f.formats=function(c){if(c.tagName!==f.tagName)return p.formats.call(this,c)},f.prototype.format=function(c,h){var v=this;c===this.statics.blotName&&!h?(this.children.forEach(function(m){m instanceof s.default||(m=m.wrap(f.blotName,!0)),v.attributes.copy(m)}),this.unwrap()):p.prototype.format.call(this,c,h)},f.prototype.formatAt=function(c,h,v,m){if(this.formats()[v]!=null||l.query(v,l.Scope.ATTRIBUTE)){var _=this.isolate(c,h);_.format(v,m)}else p.prototype.formatAt.call(this,c,h,v,m)},f.prototype.optimize=function(c){p.prototype.optimize.call(this,c);var h=this.formats();if(Object.keys(h).length===0)return this.unwrap();var v=this.next;v instanceof f&&v.prev===this&&u(h,v.formats())&&(v.moveChildren(this),v.remove())},f.blotName="inline",f.scope=l.Scope.INLINE_BLOT,f.tagName="SPAN",f}(s.default);o.default=d},function(e,o,a){var i=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),l=a(1),u=function(d){i(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.formats=function(f){var c=l.query(p.blotName).tagName;if(f.tagName!==c)return d.formats.call(this,f)},p.prototype.format=function(f,c){l.query(f,l.Scope.BLOCK)!=null&&(f===this.statics.blotName&&!c?this.replaceWith(p.blotName):d.prototype.format.call(this,f,c))},p.prototype.formatAt=function(f,c,h,v){l.query(h,l.Scope.BLOCK)!=null?this.format(h,v):d.prototype.formatAt.call(this,f,c,h,v)},p.prototype.insertAt=function(f,c,h){if(h==null||l.query(c,l.Scope.INLINE)!=null)d.prototype.insertAt.call(this,f,c,h);else{var v=this.split(f),m=l.create(c,h);v.parent.insertBefore(m,v)}},p.prototype.update=function(f,c){navigator.userAgent.match(/Trident/)?this.build():d.prototype.update.call(this,f,c)},p.blotName="block",p.scope=l.Scope.BLOCK_BLOT,p.tagName="P",p}(s.default);o.default=u},function(e,o,a){var i=this&&this.__extends||function(){var u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(d,p){d.__proto__=p}||function(d,p){for(var f in p)p.hasOwnProperty(f)&&(d[f]=p[f])};return function(d,p){u(d,p);function f(){this.constructor=d}d.prototype=p===null?Object.create(p):(f.prototype=p.prototype,new f)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),l=function(u){i(d,u);function d(){return u!==null&&u.apply(this,arguments)||this}return d.formats=function(p){},d.prototype.format=function(p,f){u.prototype.formatAt.call(this,0,this.length(),p,f)},d.prototype.formatAt=function(p,f,c,h){p===0&&f===this.length()?this.format(c,h):u.prototype.formatAt.call(this,p,f,c,h)},d.prototype.formats=function(){return this.statics.formats(this.domNode)},d}(s.default);o.default=l},function(e,o,a){var i=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),l=a(1),u=function(d){i(p,d);function p(f){var c=d.call(this,f)||this;return c.text=c.statics.value(c.domNode),c}return p.create=function(f){return document.createTextNode(f)},p.value=function(f){var c=f.data;return c.normalize&&(c=c.normalize()),c},p.prototype.deleteAt=function(f,c){this.domNode.data=this.text=this.text.slice(0,f)+this.text.slice(f+c)},p.prototype.index=function(f,c){return this.domNode===f?c:-1},p.prototype.insertAt=function(f,c,h){h==null?(this.text=this.text.slice(0,f)+c+this.text.slice(f),this.domNode.data=this.text):d.prototype.insertAt.call(this,f,c,h)},p.prototype.length=function(){return this.text.length},p.prototype.optimize=function(f){d.prototype.optimize.call(this,f),this.text=this.statics.value(this.domNode),this.text.length===0?this.remove():this.next instanceof p&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},p.prototype.position=function(f,c){return[this.domNode,f]},p.prototype.split=function(f,c){if(c===void 0&&(c=!1),!c){if(f===0)return this;if(f===this.length())return this.next}var h=l.create(this.domNode.splitText(f));return this.parent.insertBefore(h,this.next),this.text=this.statics.value(this.domNode),h},p.prototype.update=function(f,c){var h=this;f.some(function(v){return v.type==="characterData"&&v.target===h.domNode})&&(this.text=this.statics.value(this.domNode))},p.prototype.value=function(){return this.text},p.blotName="text",p.scope=l.Scope.INLINE_BLOT,p}(s.default);o.default=u},function(e,o,a){var i=document.createElement("div");if(i.classList.toggle("test-class",!1),i.classList.contains("test-class")){var s=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(l,u){return arguments.length>1&&!this.contains(l)==!u?u:s.call(this,l)}}String.prototype.startsWith||(String.prototype.startsWith=function(l,u){return u=u||0,this.substr(u,l.length)===l}),String.prototype.endsWith||(String.prototype.endsWith=function(l,u){var d=this.toString();(typeof u!="number"||!isFinite(u)||Math.floor(u)!==u||u>d.length)&&(u=d.length),u-=l.length;var p=d.indexOf(l,u);return p!==-1&&p===u}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(u){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof u!="function")throw new TypeError("predicate must be a function");for(var d=Object(this),p=d.length>>>0,f=arguments[1],c,h=0;h<p;h++)if(c=d[h],u.call(f,c,h,d))return c}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})},function(e,o){var a=-1,i=1,s=0;function l(b,k,T){if(b==k)return b?[[s,b]]:[];(T<0||b.length<T)&&(T=null);var S=f(b,k),x=b.substring(0,S);b=b.substring(S),k=k.substring(S),S=c(b,k);var M=b.substring(b.length-S);b=b.substring(0,b.length-S),k=k.substring(0,k.length-S);var E=u(b,k);return x&&E.unshift([s,x]),M&&E.push([s,M]),v(E),T!=null&&(E=y(E,T)),E=g(E),E}function u(b,k){var T;if(!b)return[[i,k]];if(!k)return[[a,b]];var S=b.length>k.length?b:k,x=b.length>k.length?k:b,M=S.indexOf(x);if(M!=-1)return T=[[i,S.substring(0,M)],[s,x],[i,S.substring(M+x.length)]],b.length>k.length&&(T[0][0]=T[2][0]=a),T;if(x.length==1)return[[a,b],[i,k]];var E=h(b,k);if(E){var C=E[0],O=E[1],N=E[2],R=E[3],q=E[4],W=l(C,N),Y=l(O,R);return W.concat([[s,q]],Y)}return d(b,k)}function d(b,k){for(var T=b.length,S=k.length,x=Math.ceil((T+S)/2),M=x,E=2*x,C=new Array(E),O=new Array(E),N=0;N<E;N++)C[N]=-1,O[N]=-1;C[M+1]=0,O[M+1]=0;for(var R=T-S,q=R%2!=0,W=0,Y=0,re=0,K=0,V=0;V<x;V++){for(var D=-V+W;D<=V-Y;D+=2){var A=M+D,I;D==-V||D!=V&&C[A-1]<C[A+1]?I=C[A+1]:I=C[A-1]+1;for(var U=I-D;I<T&&U<S&&b.charAt(I)==k.charAt(U);)I++,U++;if(C[A]=I,I>T)Y+=2;else if(U>S)W+=2;else if(q){var F=M+R-D;if(F>=0&&F<E&&O[F]!=-1){var L=T-O[F];if(I>=L)return p(b,k,I,U)}}}for(var z=-V+re;z<=V-K;z+=2){var F=M+z,L;z==-V||z!=V&&O[F-1]<O[F+1]?L=O[F+1]:L=O[F-1]+1;for(var Z=L-z;L<T&&Z<S&&b.charAt(T-L-1)==k.charAt(S-Z-1);)L++,Z++;if(O[F]=L,L>T)K+=2;else if(Z>S)re+=2;else if(!q){var A=M+R-z;if(A>=0&&A<E&&C[A]!=-1){var I=C[A],U=M+I-A;if(L=T-L,I>=L)return p(b,k,I,U)}}}}return[[a,b],[i,k]]}function p(b,k,T,S){var x=b.substring(0,T),M=k.substring(0,S),E=b.substring(T),C=k.substring(S),O=l(x,M),N=l(E,C);return O.concat(N)}function f(b,k){if(!b||!k||b.charAt(0)!=k.charAt(0))return 0;for(var T=0,S=Math.min(b.length,k.length),x=S,M=0;T<x;)b.substring(M,x)==k.substring(M,x)?(T=x,M=T):S=x,x=Math.floor((S-T)/2+T);return x}function c(b,k){if(!b||!k||b.charAt(b.length-1)!=k.charAt(k.length-1))return 0;for(var T=0,S=Math.min(b.length,k.length),x=S,M=0;T<x;)b.substring(b.length-x,b.length-M)==k.substring(k.length-x,k.length-M)?(T=x,M=T):S=x,x=Math.floor((S-T)/2+T);return x}function h(b,k){var T=b.length>k.length?b:k,S=b.length>k.length?k:b;if(T.length<4||S.length*2<T.length)return null;function x(Y,re,K){for(var V=Y.substring(K,K+Math.floor(Y.length/4)),D=-1,A="",I,U,F,L;(D=re.indexOf(V,D+1))!=-1;){var z=f(Y.substring(K),re.substring(D)),Z=c(Y.substring(0,K),re.substring(0,D));A.length<Z+z&&(A=re.substring(D-Z,D)+re.substring(D,D+z),I=Y.substring(0,K-Z),U=Y.substring(K+z),F=re.substring(0,D-Z),L=re.substring(D+z))}return A.length*2>=Y.length?[I,U,F,L,A]:null}var M=x(T,S,Math.ceil(T.length/4)),E=x(T,S,Math.ceil(T.length/2)),C;if(!M&&!E)return null;E?M?C=M[4].length>E[4].length?M:E:C=E:C=M;var O,N,R,q;b.length>k.length?(O=C[0],N=C[1],R=C[2],q=C[3]):(R=C[0],q=C[1],O=C[2],N=C[3]);var W=C[4];return[O,N,R,q,W]}function v(b){b.push([s,""]);for(var k=0,T=0,S=0,x="",M="",E;k<b.length;)switch(b[k][0]){case i:S++,M+=b[k][1],k++;break;case a:T++,x+=b[k][1],k++;break;case s:T+S>1?(T!==0&&S!==0&&(E=f(M,x),E!==0&&(k-T-S>0&&b[k-T-S-1][0]==s?b[k-T-S-1][1]+=M.substring(0,E):(b.splice(0,0,[s,M.substring(0,E)]),k++),M=M.substring(E),x=x.substring(E)),E=c(M,x),E!==0&&(b[k][1]=M.substring(M.length-E)+b[k][1],M=M.substring(0,M.length-E),x=x.substring(0,x.length-E))),T===0?b.splice(k-S,T+S,[i,M]):S===0?b.splice(k-T,T+S,[a,x]):b.splice(k-T-S,T+S,[a,x],[i,M]),k=k-T-S+(T?1:0)+(S?1:0)+1):k!==0&&b[k-1][0]==s?(b[k-1][1]+=b[k][1],b.splice(k,1)):k++,S=0,T=0,x="",M="";break}b[b.length-1][1]===""&&b.pop();var C=!1;for(k=1;k<b.length-1;)b[k-1][0]==s&&b[k+1][0]==s&&(b[k][1].substring(b[k][1].length-b[k-1][1].length)==b[k-1][1]?(b[k][1]=b[k-1][1]+b[k][1].substring(0,b[k][1].length-b[k-1][1].length),b[k+1][1]=b[k-1][1]+b[k+1][1],b.splice(k-1,1),C=!0):b[k][1].substring(0,b[k+1][1].length)==b[k+1][1]&&(b[k-1][1]+=b[k+1][1],b[k][1]=b[k][1].substring(b[k+1][1].length)+b[k+1][1],b.splice(k+1,1),C=!0)),k++;C&&v(b)}var m=l;m.INSERT=i,m.DELETE=a,m.EQUAL=s,e.exports=m;function _(b,k){if(k===0)return[s,b];for(var T=0,S=0;S<b.length;S++){var x=b[S];if(x[0]===a||x[0]===s){var M=T+x[1].length;if(k===M)return[S+1,b];if(k<M){b=b.slice();var E=k-T,C=[x[0],x[1].slice(0,E)],O=[x[0],x[1].slice(E)];return b.splice(S,1,C,O),[S+1,b]}else T=M}}throw new Error("cursor_pos is out of bounds!")}function y(b,k){var T=_(b,k),S=T[1],x=T[0],M=S[x],E=S[x+1];if(M==null)return b;if(M[0]!==s)return b;if(E!=null&&M[1]+E[1]===E[1]+M[1])return S.splice(x,2,E,M),w(S,x,2);if(E!=null&&E[1].indexOf(M[1])===0){S.splice(x,2,[E[0],M[1]],[0,M[1]]);var C=E[1].slice(M[1].length);return C.length>0&&S.splice(x+2,0,[E[0],C]),w(S,x,3)}else return b}function g(b){for(var k=!1,T=function(E){return E.charCodeAt(0)>=56320&&E.charCodeAt(0)<=57343},S=function(E){return E.charCodeAt(E.length-1)>=55296&&E.charCodeAt(E.length-1)<=56319},x=2;x<b.length;x+=1)b[x-2][0]===s&&S(b[x-2][1])&&b[x-1][0]===a&&T(b[x-1][1])&&b[x][0]===i&&T(b[x][1])&&(k=!0,b[x-1][1]=b[x-2][1].slice(-1)+b[x-1][1],b[x][1]=b[x-2][1].slice(-1)+b[x][1],b[x-2][1]=b[x-2][1].slice(0,-1));if(!k)return b;for(var M=[],x=0;x<b.length;x+=1)b[x][1].length>0&&M.push(b[x]);return M}function w(b,k,T){for(var S=k+T-1;S>=0&&S>=k-1;S--)if(S+1<b.length){var x=b[S],M=b[S+1];x[0]===M[1]&&b.splice(S,2,[x[0],x[1]+M[1]])}return b}},function(e,o){o=e.exports=typeof Object.keys=="function"?Object.keys:a,o.shim=a;function a(i){var s=[];for(var l in i)s.push(l);return s}},function(e,o){var a=function(){return Object.prototype.toString.call(arguments)}()=="[object Arguments]";o=e.exports=a?i:s,o.supported=i;function i(l){return Object.prototype.toString.call(l)=="[object Arguments]"}o.unsupported=s;function s(l){return l&&typeof l=="object"&&typeof l.length=="number"&&Object.prototype.hasOwnProperty.call(l,"callee")&&!Object.prototype.propertyIsEnumerable.call(l,"callee")||!1}},function(e,o){var a=Object.prototype.hasOwnProperty,i="~";function s(){}Object.create&&(s.prototype=Object.create(null),new s().__proto__||(i=!1));function l(d,p,f){this.fn=d,this.context=p,this.once=f||!1}function u(){this._events=new s,this._eventsCount=0}u.prototype.eventNames=function(){var p=[],f,c;if(this._eventsCount===0)return p;for(c in f=this._events)a.call(f,c)&&p.push(i?c.slice(1):c);return Object.getOwnPropertySymbols?p.concat(Object.getOwnPropertySymbols(f)):p},u.prototype.listeners=function(p,f){var c=i?i+p:p,h=this._events[c];if(f)return!!h;if(!h)return[];if(h.fn)return[h.fn];for(var v=0,m=h.length,_=new Array(m);v<m;v++)_[v]=h[v].fn;return _},u.prototype.emit=function(p,f,c,h,v,m){var _=i?i+p:p;if(!this._events[_])return!1;var y=this._events[_],g=arguments.length,w,b;if(y.fn){switch(y.once&&this.removeListener(p,y.fn,void 0,!0),g){case 1:return y.fn.call(y.context),!0;case 2:return y.fn.call(y.context,f),!0;case 3:return y.fn.call(y.context,f,c),!0;case 4:return y.fn.call(y.context,f,c,h),!0;case 5:return y.fn.call(y.context,f,c,h,v),!0;case 6:return y.fn.call(y.context,f,c,h,v,m),!0}for(b=1,w=new Array(g-1);b<g;b++)w[b-1]=arguments[b];y.fn.apply(y.context,w)}else{var k=y.length,T;for(b=0;b<k;b++)switch(y[b].once&&this.removeListener(p,y[b].fn,void 0,!0),g){case 1:y[b].fn.call(y[b].context);break;case 2:y[b].fn.call(y[b].context,f);break;case 3:y[b].fn.call(y[b].context,f,c);break;case 4:y[b].fn.call(y[b].context,f,c,h);break;default:if(!w)for(T=1,w=new Array(g-1);T<g;T++)w[T-1]=arguments[T];y[b].fn.apply(y[b].context,w)}}return!0},u.prototype.on=function(p,f,c){var h=new l(f,c||this),v=i?i+p:p;return this._events[v]?this._events[v].fn?this._events[v]=[this._events[v],h]:this._events[v].push(h):(this._events[v]=h,this._eventsCount++),this},u.prototype.once=function(p,f,c){var h=new l(f,c||this,!0),v=i?i+p:p;return this._events[v]?this._events[v].fn?this._events[v]=[this._events[v],h]:this._events[v].push(h):(this._events[v]=h,this._eventsCount++),this},u.prototype.removeListener=function(p,f,c,h){var v=i?i+p:p;if(!this._events[v])return this;if(!f)return--this._eventsCount===0?this._events=new s:delete this._events[v],this;var m=this._events[v];if(m.fn)m.fn===f&&(!h||m.once)&&(!c||m.context===c)&&(--this._eventsCount===0?this._events=new s:delete this._events[v]);else{for(var _=0,y=[],g=m.length;_<g;_++)(m[_].fn!==f||h&&!m[_].once||c&&m[_].context!==c)&&y.push(m[_]);y.length?this._events[v]=y.length===1?y[0]:y:--this._eventsCount===0?this._events=new s:delete this._events[v]}return this},u.prototype.removeAllListeners=function(p){var f;return p?(f=i?i+p:p,this._events[f]&&(--this._eventsCount===0?this._events=new s:delete this._events[f])):(this._events=new s,this._eventsCount=0),this},u.prototype.off=u.prototype.removeListener,u.prototype.addListener=u.prototype.on,u.prototype.setMaxListeners=function(){return this},u.prefixed=i,u.EventEmitter=u,typeof e<"u"&&(e.exports=u)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.matchText=o.matchSpacing=o.matchNewline=o.matchBlot=o.matchAttributor=o.default=void 0;var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Q){return typeof Q}:function(Q){return Q&&typeof Symbol=="function"&&Q.constructor===Symbol&&Q!==Symbol.prototype?"symbol":typeof Q},s=function(){function Q(te,ae){var le=[],ie=!0,$e=!1,me=void 0;try{for(var ve=te[Symbol.iterator](),ze;!(ie=(ze=ve.next()).done)&&(le.push(ze.value),!(ae&&le.length===ae));ie=!0);}catch(qe){$e=!0,me=qe}finally{try{!ie&&ve.return&&ve.return()}finally{if($e)throw me}}return le}return function(te,ae){if(Array.isArray(te))return te;if(Symbol.iterator in Object(te))return Q(te,ae);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function Q(te,ae){for(var le=0;le<ae.length;le++){var ie=ae[le];ie.enumerable=ie.enumerable||!1,ie.configurable=!0,"value"in ie&&(ie.writable=!0),Object.defineProperty(te,ie.key,ie)}}return function(te,ae,le){return ae&&Q(te.prototype,ae),le&&Q(te,le),te}}(),u=a(3),d=O(u),p=a(2),f=O(p),c=a(0),h=O(c),v=a(5),m=O(v),_=a(10),y=O(_),g=a(9),w=O(g),b=a(36),k=a(37),T=a(13),S=O(T),x=a(26),M=a(38),E=a(39),C=a(40);function O(Q){return Q&&Q.__esModule?Q:{default:Q}}function N(Q,te,ae){return te in Q?Object.defineProperty(Q,te,{value:ae,enumerable:!0,configurable:!0,writable:!0}):Q[te]=ae,Q}function R(Q,te){if(!(Q instanceof te))throw new TypeError("Cannot call a class as a function")}function q(Q,te){if(!Q)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return te&&(typeof te=="object"||typeof te=="function")?te:Q}function W(Q,te){if(typeof te!="function"&&te!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof te);Q.prototype=Object.create(te&&te.prototype,{constructor:{value:Q,enumerable:!1,writable:!0,configurable:!0}}),te&&(Object.setPrototypeOf?Object.setPrototypeOf(Q,te):Q.__proto__=te)}var Y=(0,y.default)("quill:clipboard"),re="__ql-matcher",K=[[Node.TEXT_NODE,Me],[Node.TEXT_NODE,ke],["br",ce],[Node.ELEMENT_NODE,ke],[Node.ELEMENT_NODE,ne],[Node.ELEMENT_NODE,Oe],[Node.ELEMENT_NODE,J],[Node.ELEMENT_NODE,Re],["li",be],["b",Z.bind(Z,"bold")],["i",Z.bind(Z,"italic")],["style",he]],V=[b.AlignAttribute,M.DirectionAttribute].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),D=[b.AlignStyle,k.BackgroundStyle,x.ColorStyle,M.DirectionStyle,E.FontStyle,C.SizeStyle].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),A=function(Q){W(te,Q);function te(ae,le){R(this,te);var ie=q(this,(te.__proto__||Object.getPrototypeOf(te)).call(this,ae,le));return ie.quill.root.addEventListener("paste",ie.onPaste.bind(ie)),ie.container=ie.quill.addContainer("ql-clipboard"),ie.container.setAttribute("contenteditable",!0),ie.container.setAttribute("tabindex",-1),ie.matchers=[],K.concat(ie.options.matchers).forEach(function($e){var me=s($e,2),ve=me[0],ze=me[1];!le.matchVisual&&ze===Oe||ie.addMatcher(ve,ze)}),ie}return l(te,[{key:"addMatcher",value:function(le,ie){this.matchers.push([le,ie])}},{key:"convert",value:function(le){if(typeof le=="string")return this.container.innerHTML=le.replace(/\>\r?\n +\</g,"><"),this.convert();var ie=this.quill.getFormat(this.quill.selection.savedRange.index);if(ie[S.default.blotName]){var $e=this.container.innerText;return this.container.innerHTML="",new f.default().insert($e,N({},S.default.blotName,ie[S.default.blotName]))}var me=this.prepareMatching(),ve=s(me,2),ze=ve[0],qe=ve[1],Ae=z(this.container,ze,qe);return F(Ae,`
123
- `)&&Ae.ops[Ae.ops.length-1].attributes==null&&(Ae=Ae.compose(new f.default().retain(Ae.length()-1).delete(1))),Y.log("convert",this.container.innerHTML,Ae),this.container.innerHTML="",Ae}},{key:"dangerouslyPasteHTML",value:function(le,ie){var $e=arguments.length>2&&arguments[2]!==void 0?arguments[2]:m.default.sources.API;if(typeof le=="string")this.quill.setContents(this.convert(le),ie),this.quill.setSelection(0,m.default.sources.SILENT);else{var me=this.convert(ie);this.quill.updateContents(new f.default().retain(le).concat(me),$e),this.quill.setSelection(le+me.length(),m.default.sources.SILENT)}}},{key:"onPaste",value:function(le){var ie=this;if(!(le.defaultPrevented||!this.quill.isEnabled())){var $e=this.quill.getSelection(),me=new f.default().retain($e.index),ve=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(m.default.sources.SILENT),setTimeout(function(){me=me.concat(ie.convert()).delete($e.length),ie.quill.updateContents(me,m.default.sources.USER),ie.quill.setSelection(me.length()-$e.length,m.default.sources.SILENT),ie.quill.scrollingContainer.scrollTop=ve,ie.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var le=this,ie=[],$e=[];return this.matchers.forEach(function(me){var ve=s(me,2),ze=ve[0],qe=ve[1];switch(ze){case Node.TEXT_NODE:$e.push(qe);break;case Node.ELEMENT_NODE:ie.push(qe);break;default:[].forEach.call(le.container.querySelectorAll(ze),function(Ae){Ae[re]=Ae[re]||[],Ae[re].push(qe)});break}}),[ie,$e]}}]),te}(w.default);A.DEFAULTS={matchers:[],matchVisual:!0};function I(Q,te,ae){return(typeof te>"u"?"undefined":i(te))==="object"?Object.keys(te).reduce(function(le,ie){return I(le,ie,te[ie])},Q):Q.reduce(function(le,ie){return ie.attributes&&ie.attributes[te]?le.push(ie):le.insert(ie.insert,(0,d.default)({},N({},te,ae),ie.attributes))},new f.default)}function U(Q){if(Q.nodeType!==Node.ELEMENT_NODE)return{};var te="__ql-computed-style";return Q[te]||(Q[te]=window.getComputedStyle(Q))}function F(Q,te){for(var ae="",le=Q.ops.length-1;le>=0&&ae.length<te.length;--le){var ie=Q.ops[le];if(typeof ie.insert!="string")break;ae=ie.insert+ae}return ae.slice(-1*te.length)===te}function L(Q){if(Q.childNodes.length===0)return!1;var te=U(Q);return["block","list-item"].indexOf(te.display)>-1}function z(Q,te,ae){return Q.nodeType===Q.TEXT_NODE?ae.reduce(function(le,ie){return ie(Q,le)},new f.default):Q.nodeType===Q.ELEMENT_NODE?[].reduce.call(Q.childNodes||[],function(le,ie){var $e=z(ie,te,ae);return ie.nodeType===Q.ELEMENT_NODE&&($e=te.reduce(function(me,ve){return ve(ie,me)},$e),$e=(ie[re]||[]).reduce(function(me,ve){return ve(ie,me)},$e)),le.concat($e)},new f.default):new f.default}function Z(Q,te,ae){return I(ae,Q,!0)}function J(Q,te){var ae=h.default.Attributor.Attribute.keys(Q),le=h.default.Attributor.Class.keys(Q),ie=h.default.Attributor.Style.keys(Q),$e={};return ae.concat(le).concat(ie).forEach(function(me){var ve=h.default.query(me,h.default.Scope.ATTRIBUTE);ve!=null&&($e[ve.attrName]=ve.value(Q),$e[ve.attrName])||(ve=V[me],ve!=null&&(ve.attrName===me||ve.keyName===me)&&($e[ve.attrName]=ve.value(Q)||void 0),ve=D[me],ve!=null&&(ve.attrName===me||ve.keyName===me)&&(ve=D[me],$e[ve.attrName]=ve.value(Q)||void 0))}),Object.keys($e).length>0&&(te=I(te,$e)),te}function ne(Q,te){var ae=h.default.query(Q);if(ae==null)return te;if(ae.prototype instanceof h.default.Embed){var le={},ie=ae.value(Q);ie!=null&&(le[ae.blotName]=ie,te=new f.default().insert(le,ae.formats(Q)))}else typeof ae.formats=="function"&&(te=I(te,ae.blotName,ae.formats(Q)));return te}function ce(Q,te){return F(te,`
124
- `)||te.insert(`
125
- `),te}function he(){return new f.default}function be(Q,te){var ae=h.default.query(Q);if(ae==null||ae.blotName!=="list-item"||!F(te,`
126
- `))return te;for(var le=-1,ie=Q.parentNode;!ie.classList.contains("ql-clipboard");)(h.default.query(ie)||{}).blotName==="list"&&(le+=1),ie=ie.parentNode;return le<=0?te:te.compose(new f.default().retain(te.length()-1).retain(1,{indent:le}))}function ke(Q,te){return F(te,`
127
- `)||(L(Q)||te.length()>0&&Q.nextSibling&&L(Q.nextSibling))&&te.insert(`
128
- `),te}function Oe(Q,te){if(L(Q)&&Q.nextElementSibling!=null&&!F(te,`
118
+ `);return V.insert(B,M.attributes)}return V.push(M)},new s.default)}o.default=K}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Range=void 0;var r=(function(){function x(D,E){var C=[],O=!0,N=!1,P=void 0;try{for(var F=D[Symbol.iterator](),K;!(O=(K=F.next()).done)&&(C.push(K.value),!(E&&C.length===E));O=!0);}catch(W){N=!0,P=W}finally{try{!O&&F.return&&F.return()}finally{if(N)throw P}}return C}return function(D,E){if(Array.isArray(D))return D;if(Symbol.iterator in Object(D))return x(D,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=(function(){function x(D,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(D,O.key,O)}}return function(D,E,C){return E&&x(D.prototype,E),C&&x(D,C),D}})(),c=a(0),p=v(c),s=a(21),h=v(s),f=a(11),l=v(f),u=a(8),_=v(u),g=a(10),$=v(g);function v(x){return x&&x.__esModule?x:{default:x}}function b(x){if(Array.isArray(x)){for(var D=0,E=Array(x.length);D<x.length;D++)E[D]=x[D];return E}else return Array.from(x)}function y(x,D){if(!(x instanceof D))throw new TypeError("Cannot call a class as a function")}var m=(0,$.default)("quill:selection"),w=function x(D){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;y(this,x),this.index=D,this.length=E},T=(function(){function x(D,E){var C=this;y(this,x),this.emitter=E,this.scroll=D,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=p.default.create("cursor",this),this.lastRange=this.savedRange=new w(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){C.mouseDown||setTimeout(C.update.bind(C,_.default.sources.USER),1)}),this.emitter.on(_.default.events.EDITOR_CHANGE,function(O,N){O===_.default.events.TEXT_CHANGE&&N.length()>0&&C.update(_.default.sources.SILENT)}),this.emitter.on(_.default.events.SCROLL_BEFORE_UPDATE,function(){if(C.hasFocus()){var O=C.getNativeRange();O!=null&&O.start.node!==C.cursor.textNode&&C.emitter.once(_.default.events.SCROLL_UPDATE,function(){try{C.setNativeRange(O.start.node,O.start.offset,O.end.node,O.end.offset)}catch{}})}}),this.emitter.on(_.default.events.SCROLL_OPTIMIZE,function(O,N){if(N.range){var P=N.range,F=P.startNode,K=P.startOffset,W=P.endNode,ee=P.endOffset;C.setNativeRange(F,K,W,ee)}}),this.update(_.default.sources.SILENT)}return d(x,[{key:"handleComposition",value:function(){var E=this;this.root.addEventListener("compositionstart",function(){E.composing=!0}),this.root.addEventListener("compositionend",function(){if(E.composing=!1,E.cursor.parent){var C=E.cursor.restore();if(!C)return;setTimeout(function(){E.setNativeRange(C.startNode,C.startOffset,C.endNode,C.endOffset)},1)}})}},{key:"handleDragging",value:function(){var E=this;this.emitter.listenDOM("mousedown",document.body,function(){E.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){E.mouseDown=!1,E.update(_.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(E,C){if(!(this.scroll.whitelist!=null&&!this.scroll.whitelist[E])){this.scroll.update();var O=this.getNativeRange();if(!(O==null||!O.native.collapsed||p.default.query(E,p.default.Scope.BLOCK))){if(O.start.node!==this.cursor.textNode){var N=p.default.find(O.start.node,!1);if(N==null)return;if(N instanceof p.default.Leaf){var P=N.split(O.start.offset);N.parent.insertBefore(this.cursor,P)}else N.insertBefore(this.cursor,O.start.node);this.cursor.attach()}this.cursor.format(E,C),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,O=this.scroll.length();E=Math.min(E,O-1),C=Math.min(E+C,O-1)-E;var N=void 0,P=this.scroll.leaf(E),F=r(P,2),K=F[0],W=F[1];if(K==null)return null;var ee=K.position(W,!0),G=r(ee,2);N=G[0],W=G[1];var V=document.createRange();if(C>0){V.setStart(N,W);var M=this.scroll.leaf(E+C),A=r(M,2);if(K=A[0],W=A[1],K==null)return null;var B=K.position(W,!0),H=r(B,2);return N=H[0],W=H[1],V.setEnd(N,W),V.getBoundingClientRect()}else{var q="left",L=void 0;return N instanceof Text?(W<N.data.length?(V.setStart(N,W),V.setEnd(N,W+1)):(V.setStart(N,W-1),V.setEnd(N,W),q="right"),L=V.getBoundingClientRect()):(L=K.domNode.getBoundingClientRect(),W>0&&(q="right")),{bottom:L.top+L.height,height:L.height,left:L[q],right:L[q],top:L.top,width:0}}}},{key:"getNativeRange",value:function(){var E=document.getSelection();if(E==null||E.rangeCount<=0)return null;var C=E.getRangeAt(0);if(C==null)return null;var O=this.normalizeNative(C);return m.info("getNativeRange",O),O}},{key:"getRange",value:function(){var E=this.getNativeRange();if(E==null)return[null,null];var C=this.normalizedToRange(E);return[C,E]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(E){var C=this,O=[[E.start.node,E.start.offset]];E.native.collapsed||O.push([E.end.node,E.end.offset]);var N=O.map(function(K){var W=r(K,2),ee=W[0],G=W[1],V=p.default.find(ee,!0),M=V.offset(C.scroll);return G===0?M:V instanceof p.default.Container?M+V.length():M+V.index(ee,G)}),P=Math.min(Math.max.apply(Math,b(N)),this.scroll.length()-1),F=Math.min.apply(Math,[P].concat(b(N)));return new w(F,P-F)}},{key:"normalizeNative",value:function(E){if(!S(this.root,E.startContainer)||!E.collapsed&&!S(this.root,E.endContainer))return null;var C={start:{node:E.startContainer,offset:E.startOffset},end:{node:E.endContainer,offset:E.endOffset},native:E};return[C.start,C.end].forEach(function(O){for(var N=O.node,P=O.offset;!(N instanceof Text)&&N.childNodes.length>0;)if(N.childNodes.length>P)N=N.childNodes[P],P=0;else if(N.childNodes.length===P)N=N.lastChild,P=N instanceof Text?N.data.length:N.childNodes.length+1;else break;O.node=N,O.offset=P}),C}},{key:"rangeToNative",value:function(E){var C=this,O=E.collapsed?[E.index]:[E.index,E.index+E.length],N=[],P=this.scroll.length();return O.forEach(function(F,K){F=Math.min(P-1,F);var W=void 0,ee=C.scroll.leaf(F),G=r(ee,2),V=G[0],M=G[1],A=V.position(M,K!==0),B=r(A,2);W=B[0],M=B[1],N.push(W,M)}),N.length<2&&(N=N.concat(N)),N}},{key:"scrollIntoView",value:function(E){var C=this.lastRange;if(C!=null){var O=this.getBounds(C.index,C.length);if(O!=null){var N=this.scroll.length()-1,P=this.scroll.line(Math.min(C.index,N)),F=r(P,1),K=F[0],W=K;if(C.length>0){var ee=this.scroll.line(Math.min(C.index+C.length,N)),G=r(ee,1);W=G[0]}if(!(K==null||W==null)){var V=E.getBoundingClientRect();O.top<V.top?E.scrollTop-=V.top-O.top:O.bottom>V.bottom&&(E.scrollTop+=O.bottom-V.bottom)}}}}},{key:"setNativeRange",value:function(E,C){var O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:E,N=arguments.length>3&&arguments[3]!==void 0?arguments[3]:C,P=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(m.info("setNativeRange",E,C,O,N),!(E!=null&&(this.root.parentNode==null||E.parentNode==null||O.parentNode==null))){var F=document.getSelection();if(F!=null)if(E!=null){this.hasFocus()||this.root.focus();var K=(this.getNativeRange()||{}).native;if(K==null||P||E!==K.startContainer||C!==K.startOffset||O!==K.endContainer||N!==K.endOffset){E.tagName=="BR"&&(C=[].indexOf.call(E.parentNode.childNodes,E),E=E.parentNode),O.tagName=="BR"&&(N=[].indexOf.call(O.parentNode.childNodes,O),O=O.parentNode);var W=document.createRange();W.setStart(E,C),W.setEnd(O,N),F.removeAllRanges(),F.addRange(W)}}else F.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:_.default.sources.API;if(typeof C=="string"&&(O=C,C=!1),m.info("setRange",E),E!=null){var N=this.rangeToNative(E);this.setNativeRange.apply(this,b(N).concat([C]))}else this.setNativeRange(null);this.update(O)}},{key:"update",value:function(){var E=arguments.length>0&&arguments[0]!==void 0?arguments[0]:_.default.sources.USER,C=this.lastRange,O=this.getRange(),N=r(O,2),P=N[0],F=N[1];if(this.lastRange=P,this.lastRange!=null&&(this.savedRange=this.lastRange),!(0,l.default)(C,this.lastRange)){var K;!this.composing&&F!=null&&F.native.collapsed&&F.start.node!==this.cursor.textNode&&this.cursor.restore();var W=[_.default.events.SELECTION_CHANGE,(0,h.default)(this.lastRange),(0,h.default)(C),E];if((K=this.emitter).emit.apply(K,[_.default.events.EDITOR_CHANGE].concat(W)),E!==_.default.sources.SILENT){var ee;(ee=this.emitter).emit.apply(ee,W)}}}}]),x})();function S(x,D){try{D.parentNode}catch{return!1}return D instanceof Text&&(D=D.parentNode),x.contains(D)}o.Range=w,o.default=T}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function _(g,$){for(var v=0;v<$.length;v++){var b=$[v];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,$,v){return $&&_(g.prototype,$),v&&_(g,v),g}})(),d=function _(g,$,v){g===null&&(g=Function.prototype);var b=Object.getOwnPropertyDescriptor(g,$);if(b===void 0){var y=Object.getPrototypeOf(g);return y===null?void 0:_(y,$,v)}else{if("value"in b)return b.value;var m=b.get;return m===void 0?void 0:m.call(v)}},c=a(0),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g(){return h(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"insertInto",value:function(v,b){v.children.length===0?d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"insertInto",this).call(this,v,b):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),g})(p.default.Embed);u.blotName="break",u.tagName="BR",o.default=u}),(function(e,o,a){var r=this&&this.__extends||(function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,u){l.__proto__=u}||function(l,u){for(var _ in u)u.hasOwnProperty(_)&&(l[_]=u[_])};return function(l,u){f(l,u);function _(){this.constructor=l}l.prototype=u===null?Object.create(u):(_.prototype=u.prototype,new _)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(44),c=a(30),p=a(1),s=(function(f){r(l,f);function l(u){var _=f.call(this,u)||this;return _.build(),_}return l.prototype.appendChild=function(u){this.insertBefore(u)},l.prototype.attach=function(){f.prototype.attach.call(this),this.children.forEach(function(u){u.attach()})},l.prototype.build=function(){var u=this;this.children=new d.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(_){try{var g=h(_);u.insertBefore(g,u.children.head||void 0)}catch($){if($ instanceof p.ParchmentError)return;throw $}})},l.prototype.deleteAt=function(u,_){if(u===0&&_===this.length())return this.remove();this.children.forEachAt(u,_,function(g,$,v){g.deleteAt($,v)})},l.prototype.descendant=function(u,_){var g=this.children.find(_),$=g[0],v=g[1];return u.blotName==null&&u($)||u.blotName!=null&&$ instanceof u?[$,v]:$ instanceof l?$.descendant(u,v):[null,-1]},l.prototype.descendants=function(u,_,g){_===void 0&&(_=0),g===void 0&&(g=Number.MAX_VALUE);var $=[],v=g;return this.children.forEachAt(_,g,function(b,y,m){(u.blotName==null&&u(b)||u.blotName!=null&&b instanceof u)&&$.push(b),b instanceof l&&($=$.concat(b.descendants(u,y,v))),v-=m}),$},l.prototype.detach=function(){this.children.forEach(function(u){u.detach()}),f.prototype.detach.call(this)},l.prototype.formatAt=function(u,_,g,$){this.children.forEachAt(u,_,function(v,b,y){v.formatAt(b,y,g,$)})},l.prototype.insertAt=function(u,_,g){var $=this.children.find(u),v=$[0],b=$[1];if(v)v.insertAt(b,_,g);else{var y=g==null?p.create("text",_):p.create(_,g);this.appendChild(y)}},l.prototype.insertBefore=function(u,_){if(this.statics.allowedChildren!=null&&!this.statics.allowedChildren.some(function(g){return u instanceof g}))throw new p.ParchmentError("Cannot insert "+u.statics.blotName+" into "+this.statics.blotName);u.insertInto(this,_)},l.prototype.length=function(){return this.children.reduce(function(u,_){return u+_.length()},0)},l.prototype.moveChildren=function(u,_){this.children.forEach(function(g){u.insertBefore(g,_)})},l.prototype.optimize=function(u){if(f.prototype.optimize.call(this,u),this.children.length===0)if(this.statics.defaultChild!=null){var _=p.create(this.statics.defaultChild);this.appendChild(_),_.optimize(u)}else this.remove()},l.prototype.path=function(u,_){_===void 0&&(_=!1);var g=this.children.find(u,_),$=g[0],v=g[1],b=[[this,u]];return $ instanceof l?b.concat($.path(v,_)):($!=null&&b.push([$,v]),b)},l.prototype.removeChild=function(u){this.children.remove(u)},l.prototype.replace=function(u){u instanceof l&&u.moveChildren(this),f.prototype.replace.call(this,u)},l.prototype.split=function(u,_){if(_===void 0&&(_=!1),!_){if(u===0)return this;if(u===this.length())return this.next}var g=this.clone();return this.parent.insertBefore(g,this.next),this.children.forEachAt(u,this.length(),function($,v,b){$=$.split(v,_),g.appendChild($)}),g},l.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},l.prototype.update=function(u,_){var g=this,$=[],v=[];u.forEach(function(b){b.target===g.domNode&&b.type==="childList"&&($.push.apply($,b.addedNodes),v.push.apply(v,b.removedNodes))}),v.forEach(function(b){if(!(b.parentNode!=null&&b.tagName!=="IFRAME"&&document.body.compareDocumentPosition(b)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var y=p.find(b);y!=null&&(y.domNode.parentNode==null||y.domNode.parentNode===g.domNode)&&y.detach()}}),$.filter(function(b){return b.parentNode==g.domNode}).sort(function(b,y){return b===y?0:b.compareDocumentPosition(y)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(b){var y=null;b.nextSibling!=null&&(y=p.find(b.nextSibling));var m=h(b);(m.next!=y||m.next==null)&&(m.parent!=null&&m.parent.removeChild(g),g.insertBefore(m,y||void 0))})},l})(c.default);function h(f){var l=p.find(f);if(l==null)try{l=p.create(f)}catch{l=p.create(p.Scope.INLINE),[].slice.call(f.childNodes).forEach(function(_){l.domNode.appendChild(_)}),f.parentNode&&f.parentNode.replaceChild(l.domNode,f),l.attach()}return l}o.default=s}),(function(e,o,a){var r=this&&this.__extends||(function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,u){l.__proto__=u}||function(l,u){for(var _ in u)u.hasOwnProperty(_)&&(l[_]=u[_])};return function(l,u){f(l,u);function _(){this.constructor=l}l.prototype=u===null?Object.create(u):(_.prototype=u.prototype,new _)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(12),c=a(31),p=a(17),s=a(1),h=(function(f){r(l,f);function l(u){var _=f.call(this,u)||this;return _.attributes=new c.default(_.domNode),_}return l.formats=function(u){if(typeof this.tagName=="string")return!0;if(Array.isArray(this.tagName))return u.tagName.toLowerCase()},l.prototype.format=function(u,_){var g=s.query(u);g instanceof d.default?this.attributes.attribute(g,_):_&&g!=null&&(u!==this.statics.blotName||this.formats()[u]!==_)&&this.replaceWith(u,_)},l.prototype.formats=function(){var u=this.attributes.values(),_=this.statics.formats(this.domNode);return _!=null&&(u[this.statics.blotName]=_),u},l.prototype.replaceWith=function(u,_){var g=f.prototype.replaceWith.call(this,u,_);return this.attributes.copy(g),g},l.prototype.update=function(u,_){var g=this;f.prototype.update.call(this,u,_),u.some(function($){return $.target===g.domNode&&$.type==="attributes"})&&this.attributes.build()},l.prototype.wrap=function(u,_){var g=f.prototype.wrap.call(this,u,_);return g instanceof l&&g.statics.scope===this.statics.scope&&this.attributes.move(g),g},l})(p.default);o.default=h}),(function(e,o,a){var r=this&&this.__extends||(function(){var s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){s(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(30),c=a(1),p=(function(s){r(h,s);function h(){return s!==null&&s.apply(this,arguments)||this}return h.value=function(f){return!0},h.prototype.index=function(f,l){return this.domNode===f||this.domNode.compareDocumentPosition(f)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(l,1):-1},h.prototype.position=function(f,l){var u=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return f>0&&(u+=1),[this.parent.domNode,u]},h.prototype.value=function(){var f;return f={},f[this.statics.blotName]=this.statics.value(this.domNode)||!0,f},h.scope=c.Scope.INLINE_BLOT,h})(d.default);o.default=p}),(function(e,o,a){var r=a(11),d=a(3),c={attributes:{compose:function(s,h,f){typeof s!="object"&&(s={}),typeof h!="object"&&(h={});var l=d(!0,{},h);f||(l=Object.keys(l).reduce(function(_,g){return l[g]!=null&&(_[g]=l[g]),_},{}));for(var u in s)s[u]!==void 0&&h[u]===void 0&&(l[u]=s[u]);return Object.keys(l).length>0?l:void 0},diff:function(s,h){typeof s!="object"&&(s={}),typeof h!="object"&&(h={});var f=Object.keys(s).concat(Object.keys(h)).reduce(function(l,u){return r(s[u],h[u])||(l[u]=h[u]===void 0?null:h[u]),l},{});return Object.keys(f).length>0?f:void 0},transform:function(s,h,f){if(typeof s!="object")return h;if(typeof h=="object"){if(!f)return h;var l=Object.keys(h).reduce(function(u,_){return s[_]===void 0&&(u[_]=h[_]),u},{});return Object.keys(l).length>0?l:void 0}}},iterator:function(s){return new p(s)},length:function(s){return typeof s.delete=="number"?s.delete:typeof s.retain=="number"?s.retain:typeof s.insert=="string"?s.insert.length:1}};function p(s){this.ops=s,this.index=0,this.offset=0}p.prototype.hasNext=function(){return this.peekLength()<1/0},p.prototype.next=function(s){s||(s=1/0);var h=this.ops[this.index];if(h){var f=this.offset,l=c.length(h);if(s>=l-f?(s=l-f,this.index+=1,this.offset=0):this.offset+=s,typeof h.delete=="number")return{delete:s};var u={};return h.attributes&&(u.attributes=h.attributes),typeof h.retain=="number"?u.retain=s:typeof h.insert=="string"?u.insert=h.insert.substr(f,s):u.insert=h.insert,u}else return{retain:1/0}},p.prototype.peek=function(){return this.ops[this.index]},p.prototype.peekLength=function(){return this.ops[this.index]?c.length(this.ops[this.index])-this.offset:1/0},p.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},p.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var s=this.offset,h=this.index,f=this.next(),l=this.ops.slice(this.index);return this.offset=s,this.index=h,[f].concat(l)}else return[]},e.exports=c}),(function(e,o){var a=(function(){function r(g,$){return $!=null&&g instanceof $}var d;try{d=Map}catch{d=function(){}}var c;try{c=Set}catch{c=function(){}}var p;try{p=Promise}catch{p=function(){}}function s(g,$,v,b,y){typeof $=="object"&&(v=$.depth,b=$.prototype,y=$.includeNonEnumerable,$=$.circular);var m=[],w=[],T=typeof Buffer<"u";typeof $>"u"&&($=!0),typeof v>"u"&&(v=1/0);function S(x,D){if(x===null)return null;if(D===0)return x;var E,C;if(typeof x!="object")return x;if(r(x,d))E=new d;else if(r(x,c))E=new c;else if(r(x,p))E=new p(function(V,M){x.then(function(A){V(S(A,D-1))},function(A){M(S(A,D-1))})});else if(s.__isArray(x))E=[];else if(s.__isRegExp(x))E=new RegExp(x.source,_(x)),x.lastIndex&&(E.lastIndex=x.lastIndex);else if(s.__isDate(x))E=new Date(x.getTime());else{if(T&&Buffer.isBuffer(x))return Buffer.allocUnsafe?E=Buffer.allocUnsafe(x.length):E=new Buffer(x.length),x.copy(E),E;r(x,Error)?E=Object.create(x):typeof b>"u"?(C=Object.getPrototypeOf(x),E=Object.create(C)):(E=Object.create(b),C=b)}if($){var O=m.indexOf(x);if(O!=-1)return w[O];m.push(x),w.push(E)}r(x,d)&&x.forEach(function(V,M){var A=S(M,D-1),B=S(V,D-1);E.set(A,B)}),r(x,c)&&x.forEach(function(V){var M=S(V,D-1);E.add(M)});for(var N in x){var P;C&&(P=Object.getOwnPropertyDescriptor(C,N)),!(P&&P.set==null)&&(E[N]=S(x[N],D-1))}if(Object.getOwnPropertySymbols)for(var F=Object.getOwnPropertySymbols(x),N=0;N<F.length;N++){var K=F[N],W=Object.getOwnPropertyDescriptor(x,K);W&&!W.enumerable&&!y||(E[K]=S(x[K],D-1),W.enumerable||Object.defineProperty(E,K,{enumerable:!1}))}if(y)for(var ee=Object.getOwnPropertyNames(x),N=0;N<ee.length;N++){var G=ee[N],W=Object.getOwnPropertyDescriptor(x,G);W&&W.enumerable||(E[G]=S(x[G],D-1),Object.defineProperty(E,G,{enumerable:!1}))}return E}return S(g,v)}s.clonePrototype=function($){if($===null)return null;var v=function(){};return v.prototype=$,new v};function h(g){return Object.prototype.toString.call(g)}s.__objToStr=h;function f(g){return typeof g=="object"&&h(g)==="[object Date]"}s.__isDate=f;function l(g){return typeof g=="object"&&h(g)==="[object Array]"}s.__isArray=l;function u(g){return typeof g=="object"&&h(g)==="[object RegExp]"}s.__isRegExp=u;function _(g){var $="";return g.global&&($+="g"),g.ignoreCase&&($+="i"),g.multiline&&($+="m"),$}return s.__getRegExpFlags=_,s})();typeof e=="object"&&e.exports&&(e.exports=a)}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function E(C,O){var N=[],P=!0,F=!1,K=void 0;try{for(var W=C[Symbol.iterator](),ee;!(P=(ee=W.next()).done)&&(N.push(ee.value),!(O&&N.length===O));P=!0);}catch(G){F=!0,K=G}finally{try{!P&&W.return&&W.return()}finally{if(F)throw K}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=(function(){function E(C,O){for(var N=0;N<O.length;N++){var P=O[N];P.enumerable=P.enumerable||!1,P.configurable=!0,"value"in P&&(P.writable=!0),Object.defineProperty(C,P.key,P)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}})(),c=function E(C,O,N){C===null&&(C=Function.prototype);var P=Object.getOwnPropertyDescriptor(C,O);if(P===void 0){var F=Object.getPrototypeOf(C);return F===null?void 0:E(F,O,N)}else{if("value"in P)return P.value;var K=P.get;return K===void 0?void 0:K.call(N)}},p=a(0),s=m(p),h=a(8),f=m(h),l=a(4),u=m(l),_=a(16),g=m(_),$=a(13),v=m($),b=a(25),y=m(b);function m(E){return E&&E.__esModule?E:{default:E}}function w(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function T(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function S(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}function x(E){return E instanceof u.default||E instanceof l.BlockEmbed}var D=(function(E){S(C,E);function C(O,N){w(this,C);var P=T(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O));return P.emitter=N.emitter,Array.isArray(N.whitelist)&&(P.whitelist=N.whitelist.reduce(function(F,K){return F[K]=!0,F},{})),P.domNode.addEventListener("DOMNodeInserted",function(){}),P.optimize(),P.enable(),P}return d(C,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(N,P){var F=this.line(N),K=r(F,2),W=K[0],ee=K[1],G=this.line(N+P),V=r(G,1),M=V[0];if(c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"deleteAt",this).call(this,N,P),M!=null&&W!==M&&ee>0){if(W instanceof l.BlockEmbed||M instanceof l.BlockEmbed){this.optimize();return}if(W instanceof v.default){var A=W.newlineIndex(W.length(),!0);if(A>-1&&(W=W.split(A+1),W===M)){this.optimize();return}}else if(M instanceof v.default){var B=M.newlineIndex(0);B>-1&&M.split(B+1)}var H=M.children.head instanceof g.default?null:M.children.head;W.moveChildren(M,H),W.remove()}this.optimize()}},{key:"enable",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.domNode.setAttribute("contenteditable",N)}},{key:"formatAt",value:function(N,P,F,K){this.whitelist!=null&&!this.whitelist[F]||(c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"formatAt",this).call(this,N,P,F,K),this.optimize())}},{key:"insertAt",value:function(N,P,F){if(!(F!=null&&this.whitelist!=null&&!this.whitelist[P])){if(N>=this.length())if(F==null||s.default.query(P,s.default.Scope.BLOCK)==null){var K=s.default.create(this.statics.defaultChild);this.appendChild(K),F==null&&P.endsWith(`
119
+ `)&&(P=P.slice(0,-1)),K.insertAt(0,P,F)}else{var W=s.default.create(P,F);this.appendChild(W)}else c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertAt",this).call(this,N,P,F);this.optimize()}}},{key:"insertBefore",value:function(N,P){if(N.statics.scope===s.default.Scope.INLINE_BLOT){var F=s.default.create(this.statics.defaultChild);F.appendChild(N),N=F}c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertBefore",this).call(this,N,P)}},{key:"leaf",value:function(N){return this.path(N).pop()||[null,-1]}},{key:"line",value:function(N){return N===this.length()?this.line(N-1):this.descendant(x,N)}},{key:"lines",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,P=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,F=function K(W,ee,G){var V=[],M=G;return W.children.forEachAt(ee,G,function(A,B,H){x(A)?V.push(A):A instanceof s.default.Container&&(V=V.concat(K(A,B,M))),M-=H}),V};return F(this,N,P)}},{key:"optimize",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],P=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};this.batch!==!0&&(c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"optimize",this).call(this,N,P),N.length>0&&this.emitter.emit(f.default.events.SCROLL_OPTIMIZE,N,P))}},{key:"path",value:function(N){return c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"path",this).call(this,N).slice(1)}},{key:"update",value:function(N){if(this.batch!==!0){var P=f.default.sources.USER;typeof N=="string"&&(P=N),Array.isArray(N)||(N=this.observer.takeRecords()),N.length>0&&this.emitter.emit(f.default.events.SCROLL_BEFORE_UPDATE,P,N),c(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"update",this).call(this,N.concat([])),N.length>0&&this.emitter.emit(f.default.events.SCROLL_UPDATE,P,N)}}}]),C})(s.default.Scroll);D.blotName="scroll",D.className="ql-editor",D.tagName="DIV",D.defaultChild="block",D.allowedChildren=[u.default,l.BlockEmbed,y.default],o.default=D}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SHORTKEY=o.default=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(L){return typeof L}:function(L){return L&&typeof Symbol=="function"&&L.constructor===Symbol&&L!==Symbol.prototype?"symbol":typeof L},d=(function(){function L(U,Z){var J=[],ie=!0,ce=!1,he=void 0;try{for(var ve=U[Symbol.iterator](),we;!(ie=(we=ve.next()).done)&&(J.push(we.value),!(Z&&J.length===Z));ie=!0);}catch(Oe){ce=!0,he=Oe}finally{try{!ie&&ve.return&&ve.return()}finally{if(ce)throw he}}return J}return function(U,Z){if(Array.isArray(U))return U;if(Symbol.iterator in Object(U))return L(U,Z);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),c=(function(){function L(U,Z){for(var J=0;J<Z.length;J++){var ie=Z[J];ie.enumerable=ie.enumerable||!1,ie.configurable=!0,"value"in ie&&(ie.writable=!0),Object.defineProperty(U,ie.key,ie)}}return function(U,Z,J){return Z&&L(U.prototype,Z),J&&L(U,J),U}})(),p=a(21),s=E(p),h=a(11),f=E(h),l=a(3),u=E(l),_=a(2),g=E(_),$=a(20),v=E($),b=a(0),y=E(b),m=a(5),w=E(m),T=a(10),S=E(T),x=a(9),D=E(x);function E(L){return L&&L.__esModule?L:{default:L}}function C(L,U,Z){return U in L?Object.defineProperty(L,U,{value:Z,enumerable:!0,configurable:!0,writable:!0}):L[U]=Z,L}function O(L,U){if(!(L instanceof U))throw new TypeError("Cannot call a class as a function")}function N(L,U){if(!L)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return U&&(typeof U=="object"||typeof U=="function")?U:L}function P(L,U){if(typeof U!="function"&&U!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof U);L.prototype=Object.create(U&&U.prototype,{constructor:{value:L,enumerable:!1,writable:!0,configurable:!0}}),U&&(Object.setPrototypeOf?Object.setPrototypeOf(L,U):L.__proto__=U)}var F=(0,S.default)("quill:keyboard"),K=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",W=(function(L){P(U,L),c(U,null,[{key:"match",value:function(J,ie){return ie=q(ie),["altKey","ctrlKey","metaKey","shiftKey"].some(function(ce){return!!ie[ce]!==J[ce]&&ie[ce]!==null})?!1:ie.key===(J.which||J.keyCode)}}]);function U(Z,J){O(this,U);var ie=N(this,(U.__proto__||Object.getPrototypeOf(U)).call(this,Z,J));return ie.bindings={},Object.keys(ie.options.bindings).forEach(function(ce){ce==="list autofill"&&Z.scroll.whitelist!=null&&!Z.scroll.whitelist.list||ie.options.bindings[ce]&&ie.addBinding(ie.options.bindings[ce])}),ie.addBinding({key:U.keys.ENTER,shiftKey:null},A),ie.addBinding({key:U.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},function(){}),/Firefox/i.test(navigator.userAgent)?(ie.addBinding({key:U.keys.BACKSPACE},{collapsed:!0},G),ie.addBinding({key:U.keys.DELETE},{collapsed:!0},V)):(ie.addBinding({key:U.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},G),ie.addBinding({key:U.keys.DELETE},{collapsed:!0,suffix:/^.?$/},V)),ie.addBinding({key:U.keys.BACKSPACE},{collapsed:!1},M),ie.addBinding({key:U.keys.DELETE},{collapsed:!1},M),ie.addBinding({key:U.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},G),ie.listen(),ie}return c(U,[{key:"addBinding",value:function(J){var ie=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},ce=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},he=q(J);if(he==null||he.key==null)return F.warn("Attempted to add invalid keyboard binding",he);typeof ie=="function"&&(ie={handler:ie}),typeof ce=="function"&&(ce={handler:ce}),he=(0,u.default)(he,ie,ce),this.bindings[he.key]=this.bindings[he.key]||[],this.bindings[he.key].push(he)}},{key:"listen",value:function(){var J=this;this.quill.root.addEventListener("keydown",function(ie){if(!ie.defaultPrevented){var ce=ie.which||ie.keyCode,he=(J.bindings[ce]||[]).filter(function(Se){return U.match(ie,Se)});if(he.length!==0){var ve=J.quill.getSelection();if(!(ve==null||!J.quill.hasFocus())){var we=J.quill.getLine(ve.index),Oe=d(we,2),Re=Oe[0],Pe=Oe[1],Q=J.quill.getLeaf(ve.index),ne=d(Q,2),ae=ne[0],le=ne[1],re=ve.length===0?[ae,le]:J.quill.getLeaf(ve.index+ve.length),$e=d(re,2),me=$e[0],_e=$e[1],He=ae instanceof y.default.Text?ae.value().slice(0,le):"",je=me instanceof y.default.Text?me.value().slice(_e):"",Ne={collapsed:ve.length===0,empty:ve.length===0&&Re.length()<=1,format:J.quill.getFormat(ve),offset:Pe,prefix:He,suffix:je},gt=he.some(function(Se){if(Se.collapsed!=null&&Se.collapsed!==Ne.collapsed||Se.empty!=null&&Se.empty!==Ne.empty||Se.offset!=null&&Se.offset!==Ne.offset)return!1;if(Array.isArray(Se.format)){if(Se.format.every(function(nt){return Ne.format[nt]==null}))return!1}else if(r(Se.format)==="object"&&!Object.keys(Se.format).every(function(nt){return Se.format[nt]===!0?Ne.format[nt]!=null:Se.format[nt]===!1?Ne.format[nt]==null:(0,f.default)(Se.format[nt],Ne.format[nt])}))return!1;return Se.prefix!=null&&!Se.prefix.test(Ne.prefix)||Se.suffix!=null&&!Se.suffix.test(Ne.suffix)?!1:Se.handler.call(J,ve,Ne)!==!0});gt&&ie.preventDefault()}}}})}}]),U})(D.default);W.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},W.DEFAULTS={bindings:{bold:H("bold"),italic:H("italic"),underline:H("underline"),indent:{key:W.keys.TAB,format:["blockquote","indent","list"],handler:function(U,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","+1",w.default.sources.USER)}},outdent:{key:W.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(U,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","-1",w.default.sources.USER)}},"outdent backspace":{key:W.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(U,Z){Z.format.indent!=null?this.quill.format("indent","-1",w.default.sources.USER):Z.format.list!=null&&this.quill.format("list",!1,w.default.sources.USER)}},"indent code-block":B(!0),"outdent code-block":B(!1),"remove tab":{key:W.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(U){this.quill.deleteText(U.index-1,1,w.default.sources.USER)}},tab:{key:W.keys.TAB,handler:function(U){this.quill.history.cutoff();var Z=new g.default().retain(U.index).delete(U.length).insert(" ");this.quill.updateContents(Z,w.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(U.index+1,w.default.sources.SILENT)}},"list empty enter":{key:W.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(U,Z){this.quill.format("list",!1,w.default.sources.USER),Z.format.indent&&this.quill.format("indent",!1,w.default.sources.USER)}},"checklist enter":{key:W.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(U){var Z=this.quill.getLine(U.index),J=d(Z,2),ie=J[0],ce=J[1],he=(0,u.default)({},ie.formats(),{list:"checked"}),ve=new g.default().retain(U.index).insert(`
120
+ `,he).retain(ie.length()-ce-1).retain(1,{list:"unchecked"});this.quill.updateContents(ve,w.default.sources.USER),this.quill.setSelection(U.index+1,w.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:W.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(U,Z){var J=this.quill.getLine(U.index),ie=d(J,2),ce=ie[0],he=ie[1],ve=new g.default().retain(U.index).insert(`
121
+ `,Z.format).retain(ce.length()-he-1).retain(1,{header:null});this.quill.updateContents(ve,w.default.sources.USER),this.quill.setSelection(U.index+1,w.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(U,Z){var J=Z.prefix.length,ie=this.quill.getLine(U.index),ce=d(ie,2),he=ce[0],ve=ce[1];if(ve>J)return!0;var we=void 0;switch(Z.prefix.trim()){case"[]":case"[ ]":we="unchecked";break;case"[x]":we="checked";break;case"-":case"*":we="bullet";break;default:we="ordered"}this.quill.insertText(U.index," ",w.default.sources.USER),this.quill.history.cutoff();var Oe=new g.default().retain(U.index-ve).delete(J+1).retain(he.length()-2-ve).retain(1,{list:we});this.quill.updateContents(Oe,w.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(U.index-J,w.default.sources.SILENT)}},"code exit":{key:W.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(U){var Z=this.quill.getLine(U.index),J=d(Z,2),ie=J[0],ce=J[1],he=new g.default().retain(U.index+ie.length()-ce-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(he,w.default.sources.USER)}},"embed left":ee(W.keys.LEFT,!1),"embed left shift":ee(W.keys.LEFT,!0),"embed right":ee(W.keys.RIGHT,!1),"embed right shift":ee(W.keys.RIGHT,!0)}};function ee(L,U){var Z,J=L===W.keys.LEFT?"prefix":"suffix";return Z={key:L,shiftKey:U,altKey:null},C(Z,J,/^$/),C(Z,"handler",function(ce){var he=ce.index;L===W.keys.RIGHT&&(he+=ce.length+1);var ve=this.quill.getLeaf(he),we=d(ve,1),Oe=we[0];return Oe instanceof y.default.Embed?(L===W.keys.LEFT?U?this.quill.setSelection(ce.index-1,ce.length+1,w.default.sources.USER):this.quill.setSelection(ce.index-1,w.default.sources.USER):U?this.quill.setSelection(ce.index,ce.length+1,w.default.sources.USER):this.quill.setSelection(ce.index+ce.length+1,w.default.sources.USER),!1):!0}),Z}function G(L,U){if(!(L.index===0||this.quill.getLength()<=1)){var Z=this.quill.getLine(L.index),J=d(Z,1),ie=J[0],ce={};if(U.offset===0){var he=this.quill.getLine(L.index-1),ve=d(he,1),we=ve[0];if(we!=null&&we.length()>1){var Oe=ie.formats(),Re=this.quill.getFormat(L.index-1,1);ce=v.default.attributes.diff(Oe,Re)||{}}}var Pe=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(U.prefix)?2:1;this.quill.deleteText(L.index-Pe,Pe,w.default.sources.USER),Object.keys(ce).length>0&&this.quill.formatLine(L.index-Pe,Pe,ce,w.default.sources.USER),this.quill.focus()}}function V(L,U){var Z=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(U.suffix)?2:1;if(!(L.index>=this.quill.getLength()-Z)){var J={},ie=0,ce=this.quill.getLine(L.index),he=d(ce,1),ve=he[0];if(U.offset>=ve.length()-1){var we=this.quill.getLine(L.index+1),Oe=d(we,1),Re=Oe[0];if(Re){var Pe=ve.formats(),Q=this.quill.getFormat(L.index,1);J=v.default.attributes.diff(Pe,Q)||{},ie=Re.length()}}this.quill.deleteText(L.index,Z,w.default.sources.USER),Object.keys(J).length>0&&this.quill.formatLine(L.index+ie-1,Z,J,w.default.sources.USER)}}function M(L){var U=this.quill.getLines(L),Z={};if(U.length>1){var J=U[0].formats(),ie=U[U.length-1].formats();Z=v.default.attributes.diff(ie,J)||{}}this.quill.deleteText(L,w.default.sources.USER),Object.keys(Z).length>0&&this.quill.formatLine(L.index,1,Z,w.default.sources.USER),this.quill.setSelection(L.index,w.default.sources.SILENT),this.quill.focus()}function A(L,U){var Z=this;L.length>0&&this.quill.scroll.deleteAt(L.index,L.length);var J=Object.keys(U.format).reduce(function(ie,ce){return y.default.query(ce,y.default.Scope.BLOCK)&&!Array.isArray(U.format[ce])&&(ie[ce]=U.format[ce]),ie},{});this.quill.insertText(L.index,`
122
+ `,J,w.default.sources.USER),this.quill.setSelection(L.index+1,w.default.sources.SILENT),this.quill.focus(),Object.keys(U.format).forEach(function(ie){J[ie]==null&&(Array.isArray(U.format[ie])||ie!=="link"&&Z.quill.format(ie,U.format[ie],w.default.sources.USER))})}function B(L){return{key:W.keys.TAB,shiftKey:!L,format:{"code-block":!0},handler:function(Z){var J=y.default.query("code-block"),ie=Z.index,ce=Z.length,he=this.quill.scroll.descendant(J,ie),ve=d(he,2),we=ve[0],Oe=ve[1];if(we!=null){var Re=this.quill.getIndex(we),Pe=we.newlineIndex(Oe,!0)+1,Q=we.newlineIndex(Re+Oe+ce),ne=we.domNode.textContent.slice(Pe,Q).split(`
123
+ `);Oe=0,ne.forEach(function(ae,le){L?(we.insertAt(Pe+Oe,J.TAB),Oe+=J.TAB.length,le===0?ie+=J.TAB.length:ce+=J.TAB.length):ae.startsWith(J.TAB)&&(we.deleteAt(Pe+Oe,J.TAB.length),Oe-=J.TAB.length,le===0?ie-=J.TAB.length:ce-=J.TAB.length),Oe+=ae.length+1}),this.quill.update(w.default.sources.USER),this.quill.setSelection(ie,ce,w.default.sources.SILENT)}}}}function H(L){return{key:L[0].toUpperCase(),shortKey:!0,handler:function(Z,J){this.quill.format(L,!J.format[L],w.default.sources.USER)}}}function q(L){if(typeof L=="string"||typeof L=="number")return q({key:L});if((typeof L>"u"?"undefined":r(L))==="object"&&(L=(0,s.default)(L,!1)),typeof L.key=="string")if(W.keys[L.key.toUpperCase()]!=null)L.key=W.keys[L.key.toUpperCase()];else if(L.key.length===1)L.key=L.key.toUpperCase().charCodeAt(0);else return null;return L.shortKey&&(L[K]=L.shortKey,delete L.shortKey),L}o.default=W,o.SHORTKEY=K}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function v(b,y){var m=[],w=!0,T=!1,S=void 0;try{for(var x=b[Symbol.iterator](),D;!(w=(D=x.next()).done)&&(m.push(D.value),!(y&&m.length===y));w=!0);}catch(E){T=!0,S=E}finally{try{!w&&x.return&&x.return()}finally{if(T)throw S}}return m}return function(b,y){if(Array.isArray(b))return b;if(Symbol.iterator in Object(b))return v(b,y);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=function v(b,y,m){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,y);if(w===void 0){var T=Object.getPrototypeOf(b);return T===null?void 0:v(T,y,m)}else{if("value"in w)return w.value;var S=w.get;return S===void 0?void 0:S.call(m)}},c=(function(){function v(b,y){for(var m=0;m<y.length;m++){var w=y[m];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,y,m){return y&&v(b.prototype,y),m&&v(b,m),b}})(),p=a(0),s=l(p),h=a(7),f=l(h);function l(v){return v&&v.__esModule?v:{default:v}}function u(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")}function _(v,b){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:v}function g(v,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);v.prototype=Object.create(b&&b.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(v,b):v.__proto__=b)}var $=(function(v){g(b,v),c(b,null,[{key:"value",value:function(){}}]);function b(y,m){u(this,b);var w=_(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,y));return w.selection=m,w.textNode=document.createTextNode(b.CONTENTS),w.domNode.appendChild(w.textNode),w._length=0,w}return c(b,[{key:"detach",value:function(){this.parent!=null&&this.parent.removeChild(this)}},{key:"format",value:function(m,w){if(this._length!==0)return d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"format",this).call(this,m,w);for(var T=this,S=0;T!=null&&T.statics.scope!==s.default.Scope.BLOCK_BLOT;)S+=T.offset(T.parent),T=T.parent;T!=null&&(this._length=b.CONTENTS.length,T.optimize(),T.formatAt(S,b.CONTENTS.length,m,w),this._length=0)}},{key:"index",value:function(m,w){return m===this.textNode?0:d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"index",this).call(this,m,w)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!(this.selection.composing||this.parent==null)){var m=this.textNode,w=this.selection.getNativeRange(),T=void 0,S=void 0,x=void 0;if(w!=null&&w.start.node===m&&w.end.node===m){var D=[m,w.start.offset,w.end.offset];T=D[0],S=D[1],x=D[2]}for(;this.domNode.lastChild!=null&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==b.CONTENTS){var E=this.textNode.data.split(b.CONTENTS).join("");this.next instanceof f.default?(T=this.next.domNode,this.next.insertAt(0,E),this.textNode.data=b.CONTENTS):(this.textNode.data=E,this.parent.insertBefore(s.default.create(this.textNode),this),this.textNode=document.createTextNode(b.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),S!=null){var C=[S,x].map(function(N){return Math.max(0,Math.min(T.data.length,N-1))}),O=r(C,2);return S=O[0],x=O[1],{startNode:T,startOffset:S,endNode:T,endOffset:x}}}}},{key:"update",value:function(m,w){var T=this;if(m.some(function(x){return x.type==="characterData"&&x.target===T.textNode})){var S=this.restore();S&&(w.range=S)}}},{key:"value",value:function(){return""}}]),b})(s.default.Embed);$.blotName="cursor",$.className="ql-cursor",$.tagName="span",$.CONTENTS="\uFEFF",o.default=$}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),d=s(r),c=a(4),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g(){return h(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return g})(d.default.Container);u.allowedChildren=[p.default,c.BlockEmbed,u],o.default=u}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.ColorStyle=o.ColorClass=o.ColorAttributor=void 0;var r=(function(){function $(v,b){for(var y=0;y<b.length;y++){var m=b[y];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(v,m.key,m)}}return function(v,b,y){return b&&$(v.prototype,b),y&&$(v,y),v}})(),d=function $(v,b,y){v===null&&(v=Function.prototype);var m=Object.getOwnPropertyDescriptor(v,b);if(m===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:$(w,b,y)}else{if("value"in m)return m.value;var T=m.get;return T===void 0?void 0:T.call(y)}},c=a(0),p=s(c);function s($){return $&&$.__esModule?$:{default:$}}function h($,v){if(!($ instanceof v))throw new TypeError("Cannot call a class as a function")}function f($,v){if(!$)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:$}function l($,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);$.prototype=Object.create(v&&v.prototype,{constructor:{value:$,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf($,v):$.__proto__=v)}var u=(function($){l(v,$);function v(){return h(this,v),f(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"value",value:function(y){var m=d(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"value",this).call(this,y);return m.startsWith("rgb(")?(m=m.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+m.split(",").map(function(w){return("00"+parseInt(w).toString(16)).slice(-2)}).join("")):m}}]),v})(p.default.Attributor.Style),_=new p.default.Attributor.Class("color","ql-color",{scope:p.default.Scope.INLINE}),g=new u("color","color",{scope:p.default.Scope.INLINE});o.ColorAttributor=u,o.ColorClass=_,o.ColorStyle=g}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.sanitize=o.default=void 0;var r=(function(){function g($,v){for(var b=0;b<v.length;b++){var y=v[b];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty($,y.key,y)}}return function($,v,b){return v&&g($.prototype,v),b&&g($,b),$}})(),d=function g($,v,b){$===null&&($=Function.prototype);var y=Object.getOwnPropertyDescriptor($,v);if(y===void 0){var m=Object.getPrototypeOf($);return m===null?void 0:g(m,v,b)}else{if("value"in y)return y.value;var w=y.get;return w===void 0?void 0:w.call(b)}},c=a(6),p=s(c);function s(g){return g&&g.__esModule?g:{default:g}}function h(g,$){if(!(g instanceof $))throw new TypeError("Cannot call a class as a function")}function f(g,$){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return $&&(typeof $=="object"||typeof $=="function")?$:g}function l(g,$){if(typeof $!="function"&&$!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof $);g.prototype=Object.create($&&$.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),$&&(Object.setPrototypeOf?Object.setPrototypeOf(g,$):g.__proto__=$)}var u=(function(g){l($,g);function $(){return h(this,$),f(this,($.__proto__||Object.getPrototypeOf($)).apply(this,arguments))}return r($,[{key:"format",value:function(b,y){if(b!==this.statics.blotName||!y)return d($.prototype.__proto__||Object.getPrototypeOf($.prototype),"format",this).call(this,b,y);y=this.constructor.sanitize(y),this.domNode.setAttribute("href",y)}}],[{key:"create",value:function(b){var y=d($.__proto__||Object.getPrototypeOf($),"create",this).call(this,b);return b=this.sanitize(b),y.setAttribute("href",b),y.setAttribute("rel","noopener noreferrer"),y.setAttribute("target","_blank"),y}},{key:"formats",value:function(b){return b.getAttribute("href")}},{key:"sanitize",value:function(b){return _(b,this.PROTOCOL_WHITELIST)?b:this.SANITIZED_URL}}]),$})(p.default);u.blotName="link",u.tagName="A",u.SANITIZED_URL="about:blank",u.PROTOCOL_WHITELIST=["http","https","mailto","tel"];function _(g,$){var v=document.createElement("a");v.href=g;var b=v.href.slice(0,v.href.indexOf(":"));return $.indexOf(b)>-1}o.default=u,o.sanitize=_}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function($){return typeof $}:function($){return $&&typeof Symbol=="function"&&$.constructor===Symbol&&$!==Symbol.prototype?"symbol":typeof $},d=(function(){function $(v,b){for(var y=0;y<b.length;y++){var m=b[y];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(v,m.key,m)}}return function(v,b,y){return b&&$(v.prototype,b),y&&$(v,y),v}})(),c=a(23),p=f(c),s=a(107),h=f(s);function f($){return $&&$.__esModule?$:{default:$}}function l($,v){if(!($ instanceof v))throw new TypeError("Cannot call a class as a function")}var u=0;function _($,v){$.setAttribute(v,$.getAttribute(v)!=="true")}var g=(function(){function $(v){var b=this;l(this,$),this.select=v,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){b.togglePicker()}),this.label.addEventListener("keydown",function(y){switch(y.keyCode){case p.default.keys.ENTER:b.togglePicker();break;case p.default.keys.ESCAPE:b.escape(),y.preventDefault();break}}),this.select.addEventListener("change",this.update.bind(this))}return d($,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),_(this.label,"aria-expanded"),_(this.options,"aria-hidden")}},{key:"buildItem",value:function(b){var y=this,m=document.createElement("span");return m.tabIndex="0",m.setAttribute("role","button"),m.classList.add("ql-picker-item"),b.hasAttribute("value")&&m.setAttribute("data-value",b.getAttribute("value")),b.textContent&&m.setAttribute("data-label",b.textContent),m.addEventListener("click",function(){y.selectItem(m,!0)}),m.addEventListener("keydown",function(w){switch(w.keyCode){case p.default.keys.ENTER:y.selectItem(m,!0),w.preventDefault();break;case p.default.keys.ESCAPE:y.escape(),w.preventDefault();break}}),m}},{key:"buildLabel",value:function(){var b=document.createElement("span");return b.classList.add("ql-picker-label"),b.innerHTML=h.default,b.tabIndex="0",b.setAttribute("role","button"),b.setAttribute("aria-expanded","false"),this.container.appendChild(b),b}},{key:"buildOptions",value:function(){var b=this,y=document.createElement("span");y.classList.add("ql-picker-options"),y.setAttribute("aria-hidden","true"),y.tabIndex="-1",y.id="ql-picker-options-"+u,u+=1,this.label.setAttribute("aria-controls",y.id),this.options=y,[].slice.call(this.select.options).forEach(function(m){var w=b.buildItem(m);y.appendChild(w),m.selected===!0&&b.selectItem(w)}),this.container.appendChild(y)}},{key:"buildPicker",value:function(){var b=this;[].slice.call(this.select.attributes).forEach(function(y){b.container.setAttribute(y.name,y.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var b=this;this.close(),setTimeout(function(){return b.label.focus()},1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(b){var y=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,m=this.container.querySelector(".ql-selected");if(b!==m&&(m!=null&&m.classList.remove("ql-selected"),b!=null&&(b.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(b.parentNode.children,b),b.hasAttribute("data-value")?this.label.setAttribute("data-value",b.getAttribute("data-value")):this.label.removeAttribute("data-value"),b.hasAttribute("data-label")?this.label.setAttribute("data-label",b.getAttribute("data-label")):this.label.removeAttribute("data-label"),y))){if(typeof Event=="function")this.select.dispatchEvent(new Event("change"));else if((typeof Event>"u"?"undefined":r(Event))==="object"){var w=document.createEvent("Event");w.initEvent("change",!0,!0),this.select.dispatchEvent(w)}this.close()}}},{key:"update",value:function(){var b=void 0;if(this.select.selectedIndex>-1){var y=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];b=this.select.options[this.select.selectedIndex],this.selectItem(y)}else this.selectItem(null);var m=b!=null&&b!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",m)}}]),$})();o.default=g}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),d=F(r),c=a(5),p=F(c),s=a(4),h=F(s),f=a(16),l=F(f),u=a(25),_=F(u),g=a(24),$=F(g),v=a(35),b=F(v),y=a(6),m=F(y),w=a(22),T=F(w),S=a(7),x=F(S),D=a(55),E=F(D),C=a(42),O=F(C),N=a(23),P=F(N);function F(K){return K&&K.__esModule?K:{default:K}}p.default.register({"blots/block":h.default,"blots/block/embed":s.BlockEmbed,"blots/break":l.default,"blots/container":_.default,"blots/cursor":$.default,"blots/embed":b.default,"blots/inline":m.default,"blots/scroll":T.default,"blots/text":x.default,"modules/clipboard":E.default,"modules/history":O.default,"modules/keyboard":P.default}),d.default.register(h.default,l.default,$.default,m.default,T.default,x.default),o.default=p.default}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),d=(function(){function c(p){this.domNode=p,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(c.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),c.create=function(p){if(this.tagName==null)throw new r.ParchmentError("Blot definition missing tagName");var s;return Array.isArray(this.tagName)?(typeof p=="string"&&(p=p.toUpperCase(),parseInt(p).toString()===p&&(p=parseInt(p))),typeof p=="number"?s=document.createElement(this.tagName[p-1]):this.tagName.indexOf(p)>-1?s=document.createElement(p):s=document.createElement(this.tagName[0])):s=document.createElement(this.tagName),this.className&&s.classList.add(this.className),s},c.prototype.attach=function(){this.parent!=null&&(this.scroll=this.parent.scroll)},c.prototype.clone=function(){var p=this.domNode.cloneNode(!1);return r.create(p)},c.prototype.detach=function(){this.parent!=null&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},c.prototype.deleteAt=function(p,s){var h=this.isolate(p,s);h.remove()},c.prototype.formatAt=function(p,s,h,f){var l=this.isolate(p,s);if(r.query(h,r.Scope.BLOT)!=null&&f)l.wrap(h,f);else if(r.query(h,r.Scope.ATTRIBUTE)!=null){var u=r.create(this.statics.scope);l.wrap(u),u.format(h,f)}},c.prototype.insertAt=function(p,s,h){var f=h==null?r.create("text",s):r.create(s,h),l=this.split(p);this.parent.insertBefore(f,l)},c.prototype.insertInto=function(p,s){s===void 0&&(s=null),this.parent!=null&&this.parent.children.remove(this);var h=null;p.children.insertBefore(this,s),s!=null&&(h=s.domNode),(this.domNode.parentNode!=p.domNode||this.domNode.nextSibling!=h)&&p.domNode.insertBefore(this.domNode,h),this.parent=p,this.attach()},c.prototype.isolate=function(p,s){var h=this.split(p);return h.split(s),h},c.prototype.length=function(){return 1},c.prototype.offset=function(p){return p===void 0&&(p=this.parent),this.parent==null||this==p?0:this.parent.children.offset(this)+this.parent.offset(p)},c.prototype.optimize=function(p){this.domNode[r.DATA_KEY]!=null&&delete this.domNode[r.DATA_KEY].mutations},c.prototype.remove=function(){this.domNode.parentNode!=null&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},c.prototype.replace=function(p){p.parent!=null&&(p.parent.insertBefore(this,p.next),p.remove())},c.prototype.replaceWith=function(p,s){var h=typeof p=="string"?r.create(p,s):p;return h.replace(this),h},c.prototype.split=function(p,s){return p===0?this:this.next},c.prototype.update=function(p,s){},c.prototype.wrap=function(p,s){var h=typeof p=="string"?r.create(p,s):p;return this.parent!=null&&this.parent.insertBefore(h,this.next),h.appendChild(this),h},c.blotName="abstract",c})();o.default=d}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(12),d=a(32),c=a(33),p=a(1),s=(function(){function h(f){this.attributes={},this.domNode=f,this.build()}return h.prototype.attribute=function(f,l){l?f.add(this.domNode,l)&&(f.value(this.domNode)!=null?this.attributes[f.attrName]=f:delete this.attributes[f.attrName]):(f.remove(this.domNode),delete this.attributes[f.attrName])},h.prototype.build=function(){var f=this;this.attributes={};var l=r.default.keys(this.domNode),u=d.default.keys(this.domNode),_=c.default.keys(this.domNode);l.concat(u).concat(_).forEach(function(g){var $=p.query(g,p.Scope.ATTRIBUTE);$ instanceof r.default&&(f.attributes[$.attrName]=$)})},h.prototype.copy=function(f){var l=this;Object.keys(this.attributes).forEach(function(u){var _=l.attributes[u].value(l.domNode);f.format(u,_)})},h.prototype.move=function(f){var l=this;this.copy(f),Object.keys(this.attributes).forEach(function(u){l.attributes[u].remove(l.domNode)}),this.attributes={}},h.prototype.values=function(){var f=this;return Object.keys(this.attributes).reduce(function(l,u){return l[u]=f.attributes[u].value(f.domNode),l},{})},h})();o.default=s}),(function(e,o,a){var r=this&&this.__extends||(function(){var s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){s(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(12);function c(s,h){var f=s.getAttribute("class")||"";return f.split(/\s+/).filter(function(l){return l.indexOf(h+"-")===0})}var p=(function(s){r(h,s);function h(){return s!==null&&s.apply(this,arguments)||this}return h.keys=function(f){return(f.getAttribute("class")||"").split(/\s+/).map(function(l){return l.split("-").slice(0,-1).join("-")})},h.prototype.add=function(f,l){return this.canAdd(f,l)?(this.remove(f),f.classList.add(this.keyName+"-"+l),!0):!1},h.prototype.remove=function(f){var l=c(f,this.keyName);l.forEach(function(u){f.classList.remove(u)}),f.classList.length===0&&f.removeAttribute("class")},h.prototype.value=function(f){var l=c(f,this.keyName)[0]||"",u=l.slice(this.keyName.length+1);return this.canAdd(f,u)?u:""},h})(d.default);o.default=p}),(function(e,o,a){var r=this&&this.__extends||(function(){var s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){s(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(12);function c(s){var h=s.split("-"),f=h.slice(1).map(function(l){return l[0].toUpperCase()+l.slice(1)}).join("");return h[0]+f}var p=(function(s){r(h,s);function h(){return s!==null&&s.apply(this,arguments)||this}return h.keys=function(f){return(f.getAttribute("style")||"").split(";").map(function(l){var u=l.split(":");return u[0].trim()})},h.prototype.add=function(f,l){return this.canAdd(f,l)?(f.style[c(this.keyName)]=l,!0):!1},h.prototype.remove=function(f){f.style[c(this.keyName)]="",f.getAttribute("style")||f.removeAttribute("style")},h.prototype.value=function(f){var l=f.style[c(this.keyName)];return this.canAdd(f,l)?l:""},h})(d.default);o.default=p}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function p(s,h){for(var f=0;f<h.length;f++){var l=h[f];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(s,l.key,l)}}return function(s,h,f){return h&&p(s.prototype,h),f&&p(s,f),s}})();function d(p,s){if(!(p instanceof s))throw new TypeError("Cannot call a class as a function")}var c=(function(){function p(s,h){d(this,p),this.quill=s,this.options=h,this.modules={}}return r(p,[{key:"init",value:function(){var h=this;Object.keys(this.options.modules).forEach(function(f){h.modules[f]==null&&h.addModule(f)})}},{key:"addModule",value:function(h){var f=this.quill.constructor.import("modules/"+h);return this.modules[h]=new f(this.quill,this.options.modules[h]||{}),this.modules[h]}}]),p})();c.DEFAULTS={modules:{}},c.themes={default:c},o.default=c}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function v(b,y){for(var m=0;m<y.length;m++){var w=y[m];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,y,m){return y&&v(b.prototype,y),m&&v(b,m),b}})(),d=function v(b,y,m){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,y);if(w===void 0){var T=Object.getPrototypeOf(b);return T===null?void 0:v(T,y,m)}else{if("value"in w)return w.value;var S=w.get;return S===void 0?void 0:S.call(m)}},c=a(0),p=f(c),s=a(7),h=f(s);function f(v){return v&&v.__esModule?v:{default:v}}function l(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")}function u(v,b){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:v}function _(v,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);v.prototype=Object.create(b&&b.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(v,b):v.__proto__=b)}var g="\uFEFF",$=(function(v){_(b,v);function b(y){l(this,b);var m=u(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,y));return m.contentNode=document.createElement("span"),m.contentNode.setAttribute("contenteditable",!1),[].slice.call(m.domNode.childNodes).forEach(function(w){m.contentNode.appendChild(w)}),m.leftGuard=document.createTextNode(g),m.rightGuard=document.createTextNode(g),m.domNode.appendChild(m.leftGuard),m.domNode.appendChild(m.contentNode),m.domNode.appendChild(m.rightGuard),m}return r(b,[{key:"index",value:function(m,w){return m===this.leftGuard?0:m===this.rightGuard?1:d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"index",this).call(this,m,w)}},{key:"restore",value:function(m){var w=void 0,T=void 0,S=m.data.split(g).join("");if(m===this.leftGuard)if(this.prev instanceof h.default){var x=this.prev.length();this.prev.insertAt(x,S),w={startNode:this.prev.domNode,startOffset:x+S.length}}else T=document.createTextNode(S),this.parent.insertBefore(p.default.create(T),this),w={startNode:T,startOffset:S.length};else m===this.rightGuard&&(this.next instanceof h.default?(this.next.insertAt(0,S),w={startNode:this.next.domNode,startOffset:S.length}):(T=document.createTextNode(S),this.parent.insertBefore(p.default.create(T),this.next),w={startNode:T,startOffset:S.length}));return m.data=g,w}},{key:"update",value:function(m,w){var T=this;m.forEach(function(S){if(S.type==="characterData"&&(S.target===T.leftGuard||S.target===T.rightGuard)){var x=T.restore(S.target);x&&(w.range=x)}})}}]),b})(p.default.Embed);o.default=$}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.AlignStyle=o.AlignClass=o.AlignAttribute=void 0;var r=a(0),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}var p={scope:d.default.Scope.BLOCK,whitelist:["right","center","justify"]},s=new d.default.Attributor.Attribute("align","align",p),h=new d.default.Attributor.Class("align","ql-align",p),f=new d.default.Attributor.Style("align","text-align",p);o.AlignAttribute=s,o.AlignClass=h,o.AlignStyle=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.BackgroundStyle=o.BackgroundClass=void 0;var r=a(0),d=p(r),c=a(26);function p(f){return f&&f.__esModule?f:{default:f}}var s=new d.default.Attributor.Class("background","ql-bg",{scope:d.default.Scope.INLINE}),h=new c.ColorAttributor("background","background-color",{scope:d.default.Scope.INLINE});o.BackgroundClass=s,o.BackgroundStyle=h}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.DirectionStyle=o.DirectionClass=o.DirectionAttribute=void 0;var r=a(0),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}var p={scope:d.default.Scope.BLOCK,whitelist:["rtl"]},s=new d.default.Attributor.Attribute("direction","dir",p),h=new d.default.Attributor.Class("direction","ql-direction",p),f=new d.default.Attributor.Style("direction","direction",p);o.DirectionAttribute=s,o.DirectionClass=h,o.DirectionStyle=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.FontClass=o.FontStyle=void 0;var r=(function(){function v(b,y){for(var m=0;m<y.length;m++){var w=y[m];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,y,m){return y&&v(b.prototype,y),m&&v(b,m),b}})(),d=function v(b,y,m){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,y);if(w===void 0){var T=Object.getPrototypeOf(b);return T===null?void 0:v(T,y,m)}else{if("value"in w)return w.value;var S=w.get;return S===void 0?void 0:S.call(m)}},c=a(0),p=s(c);function s(v){return v&&v.__esModule?v:{default:v}}function h(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")}function f(v,b){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:v}function l(v,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);v.prototype=Object.create(b&&b.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(v,b):v.__proto__=b)}var u={scope:p.default.Scope.INLINE,whitelist:["serif","monospace"]},_=new p.default.Attributor.Class("font","ql-font",u),g=(function(v){l(b,v);function b(){return h(this,b),f(this,(b.__proto__||Object.getPrototypeOf(b)).apply(this,arguments))}return r(b,[{key:"value",value:function(m){return d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"value",this).call(this,m).replace(/["']/g,"")}}]),b})(p.default.Attributor.Style),$=new g("font","font-family",u);o.FontStyle=$,o.FontClass=_}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SizeStyle=o.SizeClass=void 0;var r=a(0),d=c(r);function c(h){return h&&h.__esModule?h:{default:h}}var p=new d.default.Attributor.Class("size","ql-size",{scope:d.default.Scope.INLINE,whitelist:["small","large","huge"]}),s=new d.default.Attributor.Style("size","font-size",{scope:d.default.Scope.INLINE,whitelist:["10px","18px","32px"]});o.SizeClass=p,o.SizeStyle=s}),(function(e,o,a){e.exports={align:{"":a(76),center:a(77),right:a(78),justify:a(79)},background:a(80),blockquote:a(81),bold:a(82),clean:a(83),code:a(58),"code-block":a(58),color:a(84),direction:{"":a(85),rtl:a(86)},float:{center:a(87),full:a(88),left:a(89),right:a(90)},formula:a(91),header:{1:a(92),2:a(93)},italic:a(94),image:a(95),indent:{"+1":a(96),"-1":a(97)},link:a(98),list:{ordered:a(99),bullet:a(100),check:a(101)},script:{sub:a(102),super:a(103)},strike:a(104),underline:a(105),video:a(106)}}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.getLastChangeIndex=o.default=void 0;var r=(function(){function y(m,w){for(var T=0;T<w.length;T++){var S=w[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(m,S.key,S)}}return function(m,w,T){return w&&y(m.prototype,w),T&&y(m,T),m}})(),d=a(0),c=l(d),p=a(5),s=l(p),h=a(9),f=l(h);function l(y){return y&&y.__esModule?y:{default:y}}function u(y,m){if(!(y instanceof m))throw new TypeError("Cannot call a class as a function")}function _(y,m){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:y}function g(y,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);y.prototype=Object.create(m&&m.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(y,m):y.__proto__=m)}var $=(function(y){g(m,y);function m(w,T){u(this,m);var S=_(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,w,T));return S.lastRecorded=0,S.ignoreChange=!1,S.clear(),S.quill.on(s.default.events.EDITOR_CHANGE,function(x,D,E,C){x!==s.default.events.TEXT_CHANGE||S.ignoreChange||(!S.options.userOnly||C===s.default.sources.USER?S.record(D,E):S.transform(D))}),S.quill.keyboard.addBinding({key:"Z",shortKey:!0},S.undo.bind(S)),S.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},S.redo.bind(S)),/Win/i.test(navigator.platform)&&S.quill.keyboard.addBinding({key:"Y",shortKey:!0},S.redo.bind(S)),S}return r(m,[{key:"change",value:function(T,S){if(this.stack[T].length!==0){var x=this.stack[T].pop();this.stack[S].push(x),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(x[T],s.default.sources.USER),this.ignoreChange=!1;var D=b(x[T]);this.quill.setSelection(D)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(T,S){if(T.ops.length!==0){this.stack.redo=[];var x=this.quill.getContents().diff(S),D=Date.now();if(this.lastRecorded+this.options.delay>D&&this.stack.undo.length>0){var E=this.stack.undo.pop();x=x.compose(E.undo),T=E.redo.compose(T)}else this.lastRecorded=D;this.stack.undo.push({redo:T,undo:x}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(T){this.stack.undo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)}),this.stack.redo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),m})(f.default);$.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1};function v(y){var m=y.ops[y.ops.length-1];return m==null?!1:m.insert!=null?typeof m.insert=="string"&&m.insert.endsWith(`
124
+ `):m.attributes!=null?Object.keys(m.attributes).some(function(w){return c.default.query(w,c.default.Scope.BLOCK)!=null}):!1}function b(y){var m=y.reduce(function(T,S){return T+=S.delete||0,T},0),w=y.length()-m;return v(y)&&(w-=1),w}o.default=$,o.getLastChangeIndex=b}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BaseTooltip=void 0;var r=(function(){function A(B,H){for(var q=0;q<H.length;q++){var L=H[q];L.enumerable=L.enumerable||!1,L.configurable=!0,"value"in L&&(L.writable=!0),Object.defineProperty(B,L.key,L)}}return function(B,H,q){return H&&A(B.prototype,H),q&&A(B,q),B}})(),d=function A(B,H,q){B===null&&(B=Function.prototype);var L=Object.getOwnPropertyDescriptor(B,H);if(L===void 0){var U=Object.getPrototypeOf(B);return U===null?void 0:A(U,H,q)}else{if("value"in L)return L.value;var Z=L.get;return Z===void 0?void 0:Z.call(q)}},c=a(3),p=D(c),s=a(2),h=D(s),f=a(8),l=D(f),u=a(23),_=D(u),g=a(34),$=D(g),v=a(59),b=D(v),y=a(60),m=D(y),w=a(28),T=D(w),S=a(61),x=D(S);function D(A){return A&&A.__esModule?A:{default:A}}function E(A,B){if(!(A instanceof B))throw new TypeError("Cannot call a class as a function")}function C(A,B){if(!A)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return B&&(typeof B=="object"||typeof B=="function")?B:A}function O(A,B){if(typeof B!="function"&&B!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof B);A.prototype=Object.create(B&&B.prototype,{constructor:{value:A,enumerable:!1,writable:!0,configurable:!0}}),B&&(Object.setPrototypeOf?Object.setPrototypeOf(A,B):A.__proto__=B)}var N=[!1,"center","right","justify"],P=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],F=[!1,"serif","monospace"],K=["1","2","3",!1],W=["small",!1,"large","huge"],ee=(function(A){O(B,A);function B(H,q){E(this,B);var L=C(this,(B.__proto__||Object.getPrototypeOf(B)).call(this,H,q)),U=function Z(J){if(!document.body.contains(H.root))return document.body.removeEventListener("click",Z);L.tooltip!=null&&!L.tooltip.root.contains(J.target)&&document.activeElement!==L.tooltip.textbox&&!L.quill.hasFocus()&&L.tooltip.hide(),L.pickers!=null&&L.pickers.forEach(function(ie){ie.container.contains(J.target)||ie.close()})};return H.emitter.listenDOM("click",document.body,U),L}return r(B,[{key:"addModule",value:function(q){var L=d(B.prototype.__proto__||Object.getPrototypeOf(B.prototype),"addModule",this).call(this,q);return q==="toolbar"&&this.extendToolbar(L),L}},{key:"buildButtons",value:function(q,L){q.forEach(function(U){var Z=U.getAttribute("class")||"";Z.split(/\s+/).forEach(function(J){if(J.startsWith("ql-")&&(J=J.slice(3),L[J]!=null))if(J==="direction")U.innerHTML=L[J][""]+L[J].rtl;else if(typeof L[J]=="string")U.innerHTML=L[J];else{var ie=U.value||"";ie!=null&&L[J][ie]&&(U.innerHTML=L[J][ie])}})})}},{key:"buildPickers",value:function(q,L){var U=this;this.pickers=q.map(function(J){if(J.classList.contains("ql-align"))return J.querySelector("option")==null&&M(J,N),new m.default(J,L.align);if(J.classList.contains("ql-background")||J.classList.contains("ql-color")){var ie=J.classList.contains("ql-background")?"background":"color";return J.querySelector("option")==null&&M(J,P,ie==="background"?"#ffffff":"#000000"),new b.default(J,L[ie])}else return J.querySelector("option")==null&&(J.classList.contains("ql-font")?M(J,F):J.classList.contains("ql-header")?M(J,K):J.classList.contains("ql-size")&&M(J,W)),new T.default(J)});var Z=function(){U.pickers.forEach(function(ie){ie.update()})};this.quill.on(l.default.events.EDITOR_CHANGE,Z)}}]),B})($.default);ee.DEFAULTS=(0,p.default)(!0,{},$.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var B=this,H=this.container.querySelector("input.ql-image[type=file]");H==null&&(H=document.createElement("input"),H.setAttribute("type","file"),H.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),H.classList.add("ql-image"),H.addEventListener("change",function(){if(H.files!=null&&H.files[0]!=null){var q=new FileReader;q.onload=function(L){var U=B.quill.getSelection(!0);B.quill.updateContents(new h.default().retain(U.index).delete(U.length).insert({image:L.target.result}),l.default.sources.USER),B.quill.setSelection(U.index+1,l.default.sources.SILENT),H.value=""},q.readAsDataURL(H.files[0])}}),this.container.appendChild(H)),H.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var G=(function(A){O(B,A);function B(H,q){E(this,B);var L=C(this,(B.__proto__||Object.getPrototypeOf(B)).call(this,H,q));return L.textbox=L.root.querySelector('input[type="text"]'),L.listen(),L}return r(B,[{key:"listen",value:function(){var q=this;this.textbox.addEventListener("keydown",function(L){_.default.match(L,"enter")?(q.save(),L.preventDefault()):_.default.match(L,"escape")&&(q.cancel(),L.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var q=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"link",L=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),L!=null?this.textbox.value=L:q!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+q)||""),this.root.setAttribute("data-mode",q)}},{key:"restoreFocus",value:function(){var q=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=q}},{key:"save",value:function(){var q=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":{var L=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",q,l.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",q,l.default.sources.USER)),this.quill.root.scrollTop=L;break}case"video":q=V(q);case"formula":{if(!q)break;var U=this.quill.getSelection(!0);if(U!=null){var Z=U.index+U.length;this.quill.insertEmbed(Z,this.root.getAttribute("data-mode"),q,l.default.sources.USER),this.root.getAttribute("data-mode")==="formula"&&this.quill.insertText(Z+1," ",l.default.sources.USER),this.quill.setSelection(Z+2,l.default.sources.USER)}break}}this.textbox.value="",this.hide()}}]),B})(x.default);function V(A){var B=A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return B?(B[1]||"https")+"://www.youtube.com/embed/"+B[2]+"?showinfo=0":(B=A.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(B[1]||"https")+"://player.vimeo.com/video/"+B[2]+"/":A}function M(A,B){var H=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;B.forEach(function(q){var L=document.createElement("option");q===H?L.setAttribute("selected","selected"):L.setAttribute("value",q),A.appendChild(L)})}o.BaseTooltip=G,o.default=ee}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function d(){this.head=this.tail=null,this.length=0}return d.prototype.append=function(){for(var c=[],p=0;p<arguments.length;p++)c[p]=arguments[p];this.insertBefore(c[0],null),c.length>1&&this.append.apply(this,c.slice(1))},d.prototype.contains=function(c){for(var p,s=this.iterator();p=s();)if(p===c)return!0;return!1},d.prototype.insertBefore=function(c,p){c&&(c.next=p,p!=null?(c.prev=p.prev,p.prev!=null&&(p.prev.next=c),p.prev=c,p===this.head&&(this.head=c)):this.tail!=null?(this.tail.next=c,c.prev=this.tail,this.tail=c):(c.prev=null,this.head=this.tail=c),this.length+=1)},d.prototype.offset=function(c){for(var p=0,s=this.head;s!=null;){if(s===c)return p;p+=s.length(),s=s.next}return-1},d.prototype.remove=function(c){this.contains(c)&&(c.prev!=null&&(c.prev.next=c.next),c.next!=null&&(c.next.prev=c.prev),c===this.head&&(this.head=c.next),c===this.tail&&(this.tail=c.prev),this.length-=1)},d.prototype.iterator=function(c){return c===void 0&&(c=this.head),function(){var p=c;return c!=null&&(c=c.next),p}},d.prototype.find=function(c,p){p===void 0&&(p=!1);for(var s,h=this.iterator();s=h();){var f=s.length();if(c<f||p&&c===f&&(s.next==null||s.next.length()!==0))return[s,c];c-=f}return[null,0]},d.prototype.forEach=function(c){for(var p,s=this.iterator();p=s();)c(p)},d.prototype.forEachAt=function(c,p,s){if(!(p<=0))for(var h=this.find(c),f=h[0],l=h[1],u,_=c-l,g=this.iterator(f);(u=g())&&_<c+p;){var $=u.length();c>_?s(u,c-_,Math.min(p,_+$-c)):s(u,0,Math.min($,c+p-_)),_+=$}},d.prototype.map=function(c){return this.reduce(function(p,s){return p.push(c(s)),p},[])},d.prototype.reduce=function(c,p){for(var s,h=this.iterator();s=h();)p=c(p,s);return p},d})();o.default=r}),(function(e,o,a){var r=this&&this.__extends||(function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,u){l.__proto__=u}||function(l,u){for(var _ in u)u.hasOwnProperty(_)&&(l[_]=u[_])};return function(l,u){f(l,u);function _(){this.constructor=l}l.prototype=u===null?Object.create(u):(_.prototype=u.prototype,new _)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(17),c=a(1),p={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},s=100,h=(function(f){r(l,f);function l(u){var _=f.call(this,u)||this;return _.scroll=_,_.observer=new MutationObserver(function(g){_.update(g)}),_.observer.observe(_.domNode,p),_.attach(),_}return l.prototype.detach=function(){f.prototype.detach.call(this),this.observer.disconnect()},l.prototype.deleteAt=function(u,_){this.update(),u===0&&_===this.length()?this.children.forEach(function(g){g.remove()}):f.prototype.deleteAt.call(this,u,_)},l.prototype.formatAt=function(u,_,g,$){this.update(),f.prototype.formatAt.call(this,u,_,g,$)},l.prototype.insertAt=function(u,_,g){this.update(),f.prototype.insertAt.call(this,u,_,g)},l.prototype.optimize=function(u,_){var g=this;u===void 0&&(u=[]),_===void 0&&(_={}),f.prototype.optimize.call(this,_);for(var $=[].slice.call(this.observer.takeRecords());$.length>0;)u.push($.pop());for(var v=function(w,T){T===void 0&&(T=!0),!(w==null||w===g)&&w.domNode.parentNode!=null&&(w.domNode[c.DATA_KEY].mutations==null&&(w.domNode[c.DATA_KEY].mutations=[]),T&&v(w.parent))},b=function(w){w.domNode[c.DATA_KEY]==null||w.domNode[c.DATA_KEY].mutations==null||(w instanceof d.default&&w.children.forEach(b),w.optimize(_))},y=u,m=0;y.length>0;m+=1){if(m>=s)throw new Error("[Parchment] Maximum optimize iterations reached");for(y.forEach(function(w){var T=c.find(w.target,!0);T!=null&&(T.domNode===w.target&&(w.type==="childList"?(v(c.find(w.previousSibling,!1)),[].forEach.call(w.addedNodes,function(S){var x=c.find(S,!1);v(x,!1),x instanceof d.default&&x.children.forEach(function(D){v(D,!1)})})):w.type==="attributes"&&v(T.prev)),v(T))}),this.children.forEach(b),y=[].slice.call(this.observer.takeRecords()),$=y.slice();$.length>0;)u.push($.pop())}},l.prototype.update=function(u,_){var g=this;_===void 0&&(_={}),u=u||this.observer.takeRecords(),u.map(function($){var v=c.find($.target,!0);return v==null?null:v.domNode[c.DATA_KEY].mutations==null?(v.domNode[c.DATA_KEY].mutations=[$],v):(v.domNode[c.DATA_KEY].mutations.push($),null)}).forEach(function($){$==null||$===g||$.domNode[c.DATA_KEY]==null||$.update($.domNode[c.DATA_KEY].mutations||[],_)}),this.domNode[c.DATA_KEY].mutations!=null&&f.prototype.update.call(this,this.domNode[c.DATA_KEY].mutations,_),this.optimize(u,_)},l.blotName="scroll",l.defaultChild="block",l.scope=c.Scope.BLOCK_BLOT,l.tagName="DIV",l})(d.default);o.default=h}),(function(e,o,a){var r=this&&this.__extends||(function(){var h=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(f,l){f.__proto__=l}||function(f,l){for(var u in l)l.hasOwnProperty(u)&&(f[u]=l[u])};return function(f,l){h(f,l);function u(){this.constructor=f}f.prototype=l===null?Object.create(l):(u.prototype=l.prototype,new u)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(18),c=a(1);function p(h,f){if(Object.keys(h).length!==Object.keys(f).length)return!1;for(var l in h)if(h[l]!==f[l])return!1;return!0}var s=(function(h){r(f,h);function f(){return h!==null&&h.apply(this,arguments)||this}return f.formats=function(l){if(l.tagName!==f.tagName)return h.formats.call(this,l)},f.prototype.format=function(l,u){var _=this;l===this.statics.blotName&&!u?(this.children.forEach(function(g){g instanceof d.default||(g=g.wrap(f.blotName,!0)),_.attributes.copy(g)}),this.unwrap()):h.prototype.format.call(this,l,u)},f.prototype.formatAt=function(l,u,_,g){if(this.formats()[_]!=null||c.query(_,c.Scope.ATTRIBUTE)){var $=this.isolate(l,u);$.format(_,g)}else h.prototype.formatAt.call(this,l,u,_,g)},f.prototype.optimize=function(l){h.prototype.optimize.call(this,l);var u=this.formats();if(Object.keys(u).length===0)return this.unwrap();var _=this.next;_ instanceof f&&_.prev===this&&p(u,_.formats())&&(_.moveChildren(this),_.remove())},f.blotName="inline",f.scope=c.Scope.INLINE_BLOT,f.tagName="SPAN",f})(d.default);o.default=s}),(function(e,o,a){var r=this&&this.__extends||(function(){var s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){s(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(18),c=a(1),p=(function(s){r(h,s);function h(){return s!==null&&s.apply(this,arguments)||this}return h.formats=function(f){var l=c.query(h.blotName).tagName;if(f.tagName!==l)return s.formats.call(this,f)},h.prototype.format=function(f,l){c.query(f,c.Scope.BLOCK)!=null&&(f===this.statics.blotName&&!l?this.replaceWith(h.blotName):s.prototype.format.call(this,f,l))},h.prototype.formatAt=function(f,l,u,_){c.query(u,c.Scope.BLOCK)!=null?this.format(u,_):s.prototype.formatAt.call(this,f,l,u,_)},h.prototype.insertAt=function(f,l,u){if(u==null||c.query(l,c.Scope.INLINE)!=null)s.prototype.insertAt.call(this,f,l,u);else{var _=this.split(f),g=c.create(l,u);_.parent.insertBefore(g,_)}},h.prototype.update=function(f,l){navigator.userAgent.match(/Trident/)?this.build():s.prototype.update.call(this,f,l)},h.blotName="block",h.scope=c.Scope.BLOCK_BLOT,h.tagName="P",h})(d.default);o.default=p}),(function(e,o,a){var r=this&&this.__extends||(function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(s,h){s.__proto__=h}||function(s,h){for(var f in h)h.hasOwnProperty(f)&&(s[f]=h[f])};return function(s,h){p(s,h);function f(){this.constructor=s}s.prototype=h===null?Object.create(h):(f.prototype=h.prototype,new f)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(19),c=(function(p){r(s,p);function s(){return p!==null&&p.apply(this,arguments)||this}return s.formats=function(h){},s.prototype.format=function(h,f){p.prototype.formatAt.call(this,0,this.length(),h,f)},s.prototype.formatAt=function(h,f,l,u){h===0&&f===this.length()?this.format(l,u):p.prototype.formatAt.call(this,h,f,l,u)},s.prototype.formats=function(){return this.statics.formats(this.domNode)},s})(d.default);o.default=c}),(function(e,o,a){var r=this&&this.__extends||(function(){var s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){s(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}})();Object.defineProperty(o,"__esModule",{value:!0});var d=a(19),c=a(1),p=(function(s){r(h,s);function h(f){var l=s.call(this,f)||this;return l.text=l.statics.value(l.domNode),l}return h.create=function(f){return document.createTextNode(f)},h.value=function(f){var l=f.data;return l.normalize&&(l=l.normalize()),l},h.prototype.deleteAt=function(f,l){this.domNode.data=this.text=this.text.slice(0,f)+this.text.slice(f+l)},h.prototype.index=function(f,l){return this.domNode===f?l:-1},h.prototype.insertAt=function(f,l,u){u==null?(this.text=this.text.slice(0,f)+l+this.text.slice(f),this.domNode.data=this.text):s.prototype.insertAt.call(this,f,l,u)},h.prototype.length=function(){return this.text.length},h.prototype.optimize=function(f){s.prototype.optimize.call(this,f),this.text=this.statics.value(this.domNode),this.text.length===0?this.remove():this.next instanceof h&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},h.prototype.position=function(f,l){return[this.domNode,f]},h.prototype.split=function(f,l){if(l===void 0&&(l=!1),!l){if(f===0)return this;if(f===this.length())return this.next}var u=c.create(this.domNode.splitText(f));return this.parent.insertBefore(u,this.next),this.text=this.statics.value(this.domNode),u},h.prototype.update=function(f,l){var u=this;f.some(function(_){return _.type==="characterData"&&_.target===u.domNode})&&(this.text=this.statics.value(this.domNode))},h.prototype.value=function(){return this.text},h.blotName="text",h.scope=c.Scope.INLINE_BLOT,h})(d.default);o.default=p}),(function(e,o,a){var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var d=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(c,p){return arguments.length>1&&!this.contains(c)==!p?p:d.call(this,c)}}String.prototype.startsWith||(String.prototype.startsWith=function(c,p){return p=p||0,this.substr(p,c.length)===c}),String.prototype.endsWith||(String.prototype.endsWith=function(c,p){var s=this.toString();(typeof p!="number"||!isFinite(p)||Math.floor(p)!==p||p>s.length)&&(p=s.length),p-=c.length;var h=s.indexOf(c,p);return h!==-1&&h===p}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(p){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof p!="function")throw new TypeError("predicate must be a function");for(var s=Object(this),h=s.length>>>0,f=arguments[1],l,u=0;u<h;u++)if(l=s[u],p.call(f,l,u,s))return l}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})}),(function(e,o){var a=-1,r=1,d=0;function c(m,w,T){if(m==w)return m?[[d,m]]:[];(T<0||m.length<T)&&(T=null);var S=f(m,w),x=m.substring(0,S);m=m.substring(S),w=w.substring(S),S=l(m,w);var D=m.substring(m.length-S);m=m.substring(0,m.length-S),w=w.substring(0,w.length-S);var E=p(m,w);return x&&E.unshift([d,x]),D&&E.push([d,D]),_(E),T!=null&&(E=v(E,T)),E=b(E),E}function p(m,w){var T;if(!m)return[[r,w]];if(!w)return[[a,m]];var S=m.length>w.length?m:w,x=m.length>w.length?w:m,D=S.indexOf(x);if(D!=-1)return T=[[r,S.substring(0,D)],[d,x],[r,S.substring(D+x.length)]],m.length>w.length&&(T[0][0]=T[2][0]=a),T;if(x.length==1)return[[a,m],[r,w]];var E=u(m,w);if(E){var C=E[0],O=E[1],N=E[2],P=E[3],F=E[4],K=c(C,N),W=c(O,P);return K.concat([[d,F]],W)}return s(m,w)}function s(m,w){for(var T=m.length,S=w.length,x=Math.ceil((T+S)/2),D=x,E=2*x,C=new Array(E),O=new Array(E),N=0;N<E;N++)C[N]=-1,O[N]=-1;C[D+1]=0,O[D+1]=0;for(var P=T-S,F=P%2!=0,K=0,W=0,ee=0,G=0,V=0;V<x;V++){for(var M=-V+K;M<=V-W;M+=2){var A=D+M,B;M==-V||M!=V&&C[A-1]<C[A+1]?B=C[A+1]:B=C[A-1]+1;for(var H=B-M;B<T&&H<S&&m.charAt(B)==w.charAt(H);)B++,H++;if(C[A]=B,B>T)W+=2;else if(H>S)K+=2;else if(F){var q=D+P-M;if(q>=0&&q<E&&O[q]!=-1){var L=T-O[q];if(B>=L)return h(m,w,B,H)}}}for(var U=-V+ee;U<=V-G;U+=2){var q=D+U,L;U==-V||U!=V&&O[q-1]<O[q+1]?L=O[q+1]:L=O[q-1]+1;for(var Z=L-U;L<T&&Z<S&&m.charAt(T-L-1)==w.charAt(S-Z-1);)L++,Z++;if(O[q]=L,L>T)G+=2;else if(Z>S)ee+=2;else if(!F){var A=D+P-U;if(A>=0&&A<E&&C[A]!=-1){var B=C[A],H=D+B-A;if(L=T-L,B>=L)return h(m,w,B,H)}}}}return[[a,m],[r,w]]}function h(m,w,T,S){var x=m.substring(0,T),D=w.substring(0,S),E=m.substring(T),C=w.substring(S),O=c(x,D),N=c(E,C);return O.concat(N)}function f(m,w){if(!m||!w||m.charAt(0)!=w.charAt(0))return 0;for(var T=0,S=Math.min(m.length,w.length),x=S,D=0;T<x;)m.substring(D,x)==w.substring(D,x)?(T=x,D=T):S=x,x=Math.floor((S-T)/2+T);return x}function l(m,w){if(!m||!w||m.charAt(m.length-1)!=w.charAt(w.length-1))return 0;for(var T=0,S=Math.min(m.length,w.length),x=S,D=0;T<x;)m.substring(m.length-x,m.length-D)==w.substring(w.length-x,w.length-D)?(T=x,D=T):S=x,x=Math.floor((S-T)/2+T);return x}function u(m,w){var T=m.length>w.length?m:w,S=m.length>w.length?w:m;if(T.length<4||S.length*2<T.length)return null;function x(W,ee,G){for(var V=W.substring(G,G+Math.floor(W.length/4)),M=-1,A="",B,H,q,L;(M=ee.indexOf(V,M+1))!=-1;){var U=f(W.substring(G),ee.substring(M)),Z=l(W.substring(0,G),ee.substring(0,M));A.length<Z+U&&(A=ee.substring(M-Z,M)+ee.substring(M,M+U),B=W.substring(0,G-Z),H=W.substring(G+U),q=ee.substring(0,M-Z),L=ee.substring(M+U))}return A.length*2>=W.length?[B,H,q,L,A]:null}var D=x(T,S,Math.ceil(T.length/4)),E=x(T,S,Math.ceil(T.length/2)),C;if(!D&&!E)return null;E?D?C=D[4].length>E[4].length?D:E:C=E:C=D;var O,N,P,F;m.length>w.length?(O=C[0],N=C[1],P=C[2],F=C[3]):(P=C[0],F=C[1],O=C[2],N=C[3]);var K=C[4];return[O,N,P,F,K]}function _(m){m.push([d,""]);for(var w=0,T=0,S=0,x="",D="",E;w<m.length;)switch(m[w][0]){case r:S++,D+=m[w][1],w++;break;case a:T++,x+=m[w][1],w++;break;case d:T+S>1?(T!==0&&S!==0&&(E=f(D,x),E!==0&&(w-T-S>0&&m[w-T-S-1][0]==d?m[w-T-S-1][1]+=D.substring(0,E):(m.splice(0,0,[d,D.substring(0,E)]),w++),D=D.substring(E),x=x.substring(E)),E=l(D,x),E!==0&&(m[w][1]=D.substring(D.length-E)+m[w][1],D=D.substring(0,D.length-E),x=x.substring(0,x.length-E))),T===0?m.splice(w-S,T+S,[r,D]):S===0?m.splice(w-T,T+S,[a,x]):m.splice(w-T-S,T+S,[a,x],[r,D]),w=w-T-S+(T?1:0)+(S?1:0)+1):w!==0&&m[w-1][0]==d?(m[w-1][1]+=m[w][1],m.splice(w,1)):w++,S=0,T=0,x="",D="";break}m[m.length-1][1]===""&&m.pop();var C=!1;for(w=1;w<m.length-1;)m[w-1][0]==d&&m[w+1][0]==d&&(m[w][1].substring(m[w][1].length-m[w-1][1].length)==m[w-1][1]?(m[w][1]=m[w-1][1]+m[w][1].substring(0,m[w][1].length-m[w-1][1].length),m[w+1][1]=m[w-1][1]+m[w+1][1],m.splice(w-1,1),C=!0):m[w][1].substring(0,m[w+1][1].length)==m[w+1][1]&&(m[w-1][1]+=m[w+1][1],m[w][1]=m[w][1].substring(m[w+1][1].length)+m[w+1][1],m.splice(w+1,1),C=!0)),w++;C&&_(m)}var g=c;g.INSERT=r,g.DELETE=a,g.EQUAL=d,e.exports=g;function $(m,w){if(w===0)return[d,m];for(var T=0,S=0;S<m.length;S++){var x=m[S];if(x[0]===a||x[0]===d){var D=T+x[1].length;if(w===D)return[S+1,m];if(w<D){m=m.slice();var E=w-T,C=[x[0],x[1].slice(0,E)],O=[x[0],x[1].slice(E)];return m.splice(S,1,C,O),[S+1,m]}else T=D}}throw new Error("cursor_pos is out of bounds!")}function v(m,w){var T=$(m,w),S=T[1],x=T[0],D=S[x],E=S[x+1];if(D==null)return m;if(D[0]!==d)return m;if(E!=null&&D[1]+E[1]===E[1]+D[1])return S.splice(x,2,E,D),y(S,x,2);if(E!=null&&E[1].indexOf(D[1])===0){S.splice(x,2,[E[0],D[1]],[0,D[1]]);var C=E[1].slice(D[1].length);return C.length>0&&S.splice(x+2,0,[E[0],C]),y(S,x,3)}else return m}function b(m){for(var w=!1,T=function(E){return E.charCodeAt(0)>=56320&&E.charCodeAt(0)<=57343},S=function(E){return E.charCodeAt(E.length-1)>=55296&&E.charCodeAt(E.length-1)<=56319},x=2;x<m.length;x+=1)m[x-2][0]===d&&S(m[x-2][1])&&m[x-1][0]===a&&T(m[x-1][1])&&m[x][0]===r&&T(m[x][1])&&(w=!0,m[x-1][1]=m[x-2][1].slice(-1)+m[x-1][1],m[x][1]=m[x-2][1].slice(-1)+m[x][1],m[x-2][1]=m[x-2][1].slice(0,-1));if(!w)return m;for(var D=[],x=0;x<m.length;x+=1)m[x][1].length>0&&D.push(m[x]);return D}function y(m,w,T){for(var S=w+T-1;S>=0&&S>=w-1;S--)if(S+1<m.length){var x=m[S],D=m[S+1];x[0]===D[1]&&m.splice(S,2,[x[0],x[1]+D[1]])}return m}}),(function(e,o){o=e.exports=typeof Object.keys=="function"?Object.keys:a,o.shim=a;function a(r){var d=[];for(var c in r)d.push(c);return d}}),(function(e,o){var a=(function(){return Object.prototype.toString.call(arguments)})()=="[object Arguments]";o=e.exports=a?r:d,o.supported=r;function r(c){return Object.prototype.toString.call(c)=="[object Arguments]"}o.unsupported=d;function d(c){return c&&typeof c=="object"&&typeof c.length=="number"&&Object.prototype.hasOwnProperty.call(c,"callee")&&!Object.prototype.propertyIsEnumerable.call(c,"callee")||!1}}),(function(e,o){var a=Object.prototype.hasOwnProperty,r="~";function d(){}Object.create&&(d.prototype=Object.create(null),new d().__proto__||(r=!1));function c(s,h,f){this.fn=s,this.context=h,this.once=f||!1}function p(){this._events=new d,this._eventsCount=0}p.prototype.eventNames=function(){var h=[],f,l;if(this._eventsCount===0)return h;for(l in f=this._events)a.call(f,l)&&h.push(r?l.slice(1):l);return Object.getOwnPropertySymbols?h.concat(Object.getOwnPropertySymbols(f)):h},p.prototype.listeners=function(h,f){var l=r?r+h:h,u=this._events[l];if(f)return!!u;if(!u)return[];if(u.fn)return[u.fn];for(var _=0,g=u.length,$=new Array(g);_<g;_++)$[_]=u[_].fn;return $},p.prototype.emit=function(h,f,l,u,_,g){var $=r?r+h:h;if(!this._events[$])return!1;var v=this._events[$],b=arguments.length,y,m;if(v.fn){switch(v.once&&this.removeListener(h,v.fn,void 0,!0),b){case 1:return v.fn.call(v.context),!0;case 2:return v.fn.call(v.context,f),!0;case 3:return v.fn.call(v.context,f,l),!0;case 4:return v.fn.call(v.context,f,l,u),!0;case 5:return v.fn.call(v.context,f,l,u,_),!0;case 6:return v.fn.call(v.context,f,l,u,_,g),!0}for(m=1,y=new Array(b-1);m<b;m++)y[m-1]=arguments[m];v.fn.apply(v.context,y)}else{var w=v.length,T;for(m=0;m<w;m++)switch(v[m].once&&this.removeListener(h,v[m].fn,void 0,!0),b){case 1:v[m].fn.call(v[m].context);break;case 2:v[m].fn.call(v[m].context,f);break;case 3:v[m].fn.call(v[m].context,f,l);break;case 4:v[m].fn.call(v[m].context,f,l,u);break;default:if(!y)for(T=1,y=new Array(b-1);T<b;T++)y[T-1]=arguments[T];v[m].fn.apply(v[m].context,y)}}return!0},p.prototype.on=function(h,f,l){var u=new c(f,l||this),_=r?r+h:h;return this._events[_]?this._events[_].fn?this._events[_]=[this._events[_],u]:this._events[_].push(u):(this._events[_]=u,this._eventsCount++),this},p.prototype.once=function(h,f,l){var u=new c(f,l||this,!0),_=r?r+h:h;return this._events[_]?this._events[_].fn?this._events[_]=[this._events[_],u]:this._events[_].push(u):(this._events[_]=u,this._eventsCount++),this},p.prototype.removeListener=function(h,f,l,u){var _=r?r+h:h;if(!this._events[_])return this;if(!f)return--this._eventsCount===0?this._events=new d:delete this._events[_],this;var g=this._events[_];if(g.fn)g.fn===f&&(!u||g.once)&&(!l||g.context===l)&&(--this._eventsCount===0?this._events=new d:delete this._events[_]);else{for(var $=0,v=[],b=g.length;$<b;$++)(g[$].fn!==f||u&&!g[$].once||l&&g[$].context!==l)&&v.push(g[$]);v.length?this._events[_]=v.length===1?v[0]:v:--this._eventsCount===0?this._events=new d:delete this._events[_]}return this},p.prototype.removeAllListeners=function(h){var f;return h?(f=r?r+h:h,this._events[f]&&(--this._eventsCount===0?this._events=new d:delete this._events[f])):(this._events=new d,this._eventsCount=0),this},p.prototype.off=p.prototype.removeListener,p.prototype.addListener=p.prototype.on,p.prototype.setMaxListeners=function(){return this},p.prefixed=r,p.EventEmitter=p,typeof e<"u"&&(e.exports=p)}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.matchText=o.matchSpacing=o.matchNewline=o.matchBlot=o.matchAttributor=o.default=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Q){return typeof Q}:function(Q){return Q&&typeof Symbol=="function"&&Q.constructor===Symbol&&Q!==Symbol.prototype?"symbol":typeof Q},d=(function(){function Q(ne,ae){var le=[],re=!0,$e=!1,me=void 0;try{for(var _e=ne[Symbol.iterator](),He;!(re=(He=_e.next()).done)&&(le.push(He.value),!(ae&&le.length===ae));re=!0);}catch(je){$e=!0,me=je}finally{try{!re&&_e.return&&_e.return()}finally{if($e)throw me}}return le}return function(ne,ae){if(Array.isArray(ne))return ne;if(Symbol.iterator in Object(ne))return Q(ne,ae);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),c=(function(){function Q(ne,ae){for(var le=0;le<ae.length;le++){var re=ae[le];re.enumerable=re.enumerable||!1,re.configurable=!0,"value"in re&&(re.writable=!0),Object.defineProperty(ne,re.key,re)}}return function(ne,ae,le){return ae&&Q(ne.prototype,ae),le&&Q(ne,le),ne}})(),p=a(3),s=O(p),h=a(2),f=O(h),l=a(0),u=O(l),_=a(5),g=O(_),$=a(10),v=O($),b=a(9),y=O(b),m=a(36),w=a(37),T=a(13),S=O(T),x=a(26),D=a(38),E=a(39),C=a(40);function O(Q){return Q&&Q.__esModule?Q:{default:Q}}function N(Q,ne,ae){return ne in Q?Object.defineProperty(Q,ne,{value:ae,enumerable:!0,configurable:!0,writable:!0}):Q[ne]=ae,Q}function P(Q,ne){if(!(Q instanceof ne))throw new TypeError("Cannot call a class as a function")}function F(Q,ne){if(!Q)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return ne&&(typeof ne=="object"||typeof ne=="function")?ne:Q}function K(Q,ne){if(typeof ne!="function"&&ne!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof ne);Q.prototype=Object.create(ne&&ne.prototype,{constructor:{value:Q,enumerable:!1,writable:!0,configurable:!0}}),ne&&(Object.setPrototypeOf?Object.setPrototypeOf(Q,ne):Q.__proto__=ne)}var W=(0,v.default)("quill:clipboard"),ee="__ql-matcher",G=[[Node.TEXT_NODE,Pe],[Node.TEXT_NODE,we],["br",ce],[Node.ELEMENT_NODE,we],[Node.ELEMENT_NODE,ie],[Node.ELEMENT_NODE,Oe],[Node.ELEMENT_NODE,J],[Node.ELEMENT_NODE,Re],["li",ve],["b",Z.bind(Z,"bold")],["i",Z.bind(Z,"italic")],["style",he]],V=[m.AlignAttribute,D.DirectionAttribute].reduce(function(Q,ne){return Q[ne.keyName]=ne,Q},{}),M=[m.AlignStyle,w.BackgroundStyle,x.ColorStyle,D.DirectionStyle,E.FontStyle,C.SizeStyle].reduce(function(Q,ne){return Q[ne.keyName]=ne,Q},{}),A=(function(Q){K(ne,Q);function ne(ae,le){P(this,ne);var re=F(this,(ne.__proto__||Object.getPrototypeOf(ne)).call(this,ae,le));return re.quill.root.addEventListener("paste",re.onPaste.bind(re)),re.container=re.quill.addContainer("ql-clipboard"),re.container.setAttribute("contenteditable",!0),re.container.setAttribute("tabindex",-1),re.matchers=[],G.concat(re.options.matchers).forEach(function($e){var me=d($e,2),_e=me[0],He=me[1];!le.matchVisual&&He===Oe||re.addMatcher(_e,He)}),re}return c(ne,[{key:"addMatcher",value:function(le,re){this.matchers.push([le,re])}},{key:"convert",value:function(le){if(typeof le=="string")return this.container.innerHTML=le.replace(/\>\r?\n +\</g,"><"),this.convert();var re=this.quill.getFormat(this.quill.selection.savedRange.index);if(re[S.default.blotName]){var $e=this.container.innerText;return this.container.innerHTML="",new f.default().insert($e,N({},S.default.blotName,re[S.default.blotName]))}var me=this.prepareMatching(),_e=d(me,2),He=_e[0],je=_e[1],Ne=U(this.container,He,je);return q(Ne,`
125
+ `)&&Ne.ops[Ne.ops.length-1].attributes==null&&(Ne=Ne.compose(new f.default().retain(Ne.length()-1).delete(1))),W.log("convert",this.container.innerHTML,Ne),this.container.innerHTML="",Ne}},{key:"dangerouslyPasteHTML",value:function(le,re){var $e=arguments.length>2&&arguments[2]!==void 0?arguments[2]:g.default.sources.API;if(typeof le=="string")this.quill.setContents(this.convert(le),re),this.quill.setSelection(0,g.default.sources.SILENT);else{var me=this.convert(re);this.quill.updateContents(new f.default().retain(le).concat(me),$e),this.quill.setSelection(le+me.length(),g.default.sources.SILENT)}}},{key:"onPaste",value:function(le){var re=this;if(!(le.defaultPrevented||!this.quill.isEnabled())){var $e=this.quill.getSelection(),me=new f.default().retain($e.index),_e=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(g.default.sources.SILENT),setTimeout(function(){me=me.concat(re.convert()).delete($e.length),re.quill.updateContents(me,g.default.sources.USER),re.quill.setSelection(me.length()-$e.length,g.default.sources.SILENT),re.quill.scrollingContainer.scrollTop=_e,re.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var le=this,re=[],$e=[];return this.matchers.forEach(function(me){var _e=d(me,2),He=_e[0],je=_e[1];switch(He){case Node.TEXT_NODE:$e.push(je);break;case Node.ELEMENT_NODE:re.push(je);break;default:[].forEach.call(le.container.querySelectorAll(He),function(Ne){Ne[ee]=Ne[ee]||[],Ne[ee].push(je)});break}}),[re,$e]}}]),ne})(y.default);A.DEFAULTS={matchers:[],matchVisual:!0};function B(Q,ne,ae){return(typeof ne>"u"?"undefined":r(ne))==="object"?Object.keys(ne).reduce(function(le,re){return B(le,re,ne[re])},Q):Q.reduce(function(le,re){return re.attributes&&re.attributes[ne]?le.push(re):le.insert(re.insert,(0,s.default)({},N({},ne,ae),re.attributes))},new f.default)}function H(Q){if(Q.nodeType!==Node.ELEMENT_NODE)return{};var ne="__ql-computed-style";return Q[ne]||(Q[ne]=window.getComputedStyle(Q))}function q(Q,ne){for(var ae="",le=Q.ops.length-1;le>=0&&ae.length<ne.length;--le){var re=Q.ops[le];if(typeof re.insert!="string")break;ae=re.insert+ae}return ae.slice(-1*ne.length)===ne}function L(Q){if(Q.childNodes.length===0)return!1;var ne=H(Q);return["block","list-item"].indexOf(ne.display)>-1}function U(Q,ne,ae){return Q.nodeType===Q.TEXT_NODE?ae.reduce(function(le,re){return re(Q,le)},new f.default):Q.nodeType===Q.ELEMENT_NODE?[].reduce.call(Q.childNodes||[],function(le,re){var $e=U(re,ne,ae);return re.nodeType===Q.ELEMENT_NODE&&($e=ne.reduce(function(me,_e){return _e(re,me)},$e),$e=(re[ee]||[]).reduce(function(me,_e){return _e(re,me)},$e)),le.concat($e)},new f.default):new f.default}function Z(Q,ne,ae){return B(ae,Q,!0)}function J(Q,ne){var ae=u.default.Attributor.Attribute.keys(Q),le=u.default.Attributor.Class.keys(Q),re=u.default.Attributor.Style.keys(Q),$e={};return ae.concat(le).concat(re).forEach(function(me){var _e=u.default.query(me,u.default.Scope.ATTRIBUTE);_e!=null&&($e[_e.attrName]=_e.value(Q),$e[_e.attrName])||(_e=V[me],_e!=null&&(_e.attrName===me||_e.keyName===me)&&($e[_e.attrName]=_e.value(Q)||void 0),_e=M[me],_e!=null&&(_e.attrName===me||_e.keyName===me)&&(_e=M[me],$e[_e.attrName]=_e.value(Q)||void 0))}),Object.keys($e).length>0&&(ne=B(ne,$e)),ne}function ie(Q,ne){var ae=u.default.query(Q);if(ae==null)return ne;if(ae.prototype instanceof u.default.Embed){var le={},re=ae.value(Q);re!=null&&(le[ae.blotName]=re,ne=new f.default().insert(le,ae.formats(Q)))}else typeof ae.formats=="function"&&(ne=B(ne,ae.blotName,ae.formats(Q)));return ne}function ce(Q,ne){return q(ne,`
126
+ `)||ne.insert(`
127
+ `),ne}function he(){return new f.default}function ve(Q,ne){var ae=u.default.query(Q);if(ae==null||ae.blotName!=="list-item"||!q(ne,`
128
+ `))return ne;for(var le=-1,re=Q.parentNode;!re.classList.contains("ql-clipboard");)(u.default.query(re)||{}).blotName==="list"&&(le+=1),re=re.parentNode;return le<=0?ne:ne.compose(new f.default().retain(ne.length()-1).retain(1,{indent:le}))}function we(Q,ne){return q(ne,`
129
+ `)||(L(Q)||ne.length()>0&&Q.nextSibling&&L(Q.nextSibling))&&ne.insert(`
130
+ `),ne}function Oe(Q,ne){if(L(Q)&&Q.nextElementSibling!=null&&!q(ne,`
129
131
 
130
- `)){var ae=Q.offsetHeight+parseFloat(U(Q).marginTop)+parseFloat(U(Q).marginBottom);Q.nextElementSibling.offsetTop>Q.offsetTop+ae*1.5&&te.insert(`
131
- `)}return te}function Re(Q,te){var ae={},le=Q.style||{};return le.fontStyle&&U(Q).fontStyle==="italic"&&(ae.italic=!0),le.fontWeight&&(U(Q).fontWeight.startsWith("bold")||parseInt(U(Q).fontWeight)>=700)&&(ae.bold=!0),Object.keys(ae).length>0&&(te=I(te,ae)),parseFloat(le.textIndent||0)>0&&(te=new f.default().insert(" ").concat(te)),te}function Me(Q,te){var ae=Q.data;if(Q.parentNode.tagName==="O:P")return te.insert(ae.trim());if(ae.trim().length===0&&Q.parentNode.classList.contains("ql-clipboard"))return te;if(!U(Q.parentNode).whiteSpace.startsWith("pre")){var le=function($e,me){return me=me.replace(/[^\u00a0]/g,""),me.length<1&&$e?" ":me};ae=ae.replace(/\r\n/g," ").replace(/\n/g," "),ae=ae.replace(/\s\s+/g,le.bind(le,!0)),(Q.previousSibling==null&&L(Q.parentNode)||Q.previousSibling!=null&&L(Q.previousSibling))&&(ae=ae.replace(/^\s+/,le.bind(le,!1))),(Q.nextSibling==null&&L(Q.parentNode)||Q.nextSibling!=null&&L(Q.nextSibling))&&(ae=ae.replace(/\s+$/,le.bind(le,!1)))}return te.insert(ae)}o.default=A,o.matchAttributor=J,o.matchBlot=ne,o.matchNewline=ke,o.matchSpacing=Oe,o.matchText=Me},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(6),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,[{key:"optimize",value:function(y){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"optimize",this).call(this,y),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),m}(u.default);h.blotName="bold",h.tagName=["STRONG","B"],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.addControls=o.default=void 0;var i=function(){function C(O,N){var R=[],q=!0,W=!1,Y=void 0;try{for(var re=O[Symbol.iterator](),K;!(q=(K=re.next()).done)&&(R.push(K.value),!(N&&R.length===N));q=!0);}catch(V){W=!0,Y=V}finally{try{!q&&re.return&&re.return()}finally{if(W)throw Y}}return R}return function(O,N){if(Array.isArray(O))return O;if(Symbol.iterator in Object(O))return C(O,N);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function C(O,N){for(var R=0;R<N.length;R++){var q=N[R];q.enumerable=q.enumerable||!1,q.configurable=!0,"value"in q&&(q.writable=!0),Object.defineProperty(O,q.key,q)}}return function(O,N,R){return N&&C(O.prototype,N),R&&C(O,R),O}}(),l=a(2),u=y(l),d=a(0),p=y(d),f=a(5),c=y(f),h=a(10),v=y(h),m=a(9),_=y(m);function y(C){return C&&C.__esModule?C:{default:C}}function g(C,O,N){return O in C?Object.defineProperty(C,O,{value:N,enumerable:!0,configurable:!0,writable:!0}):C[O]=N,C}function w(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function b(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function k(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var T=(0,v.default)("quill:toolbar"),S=function(C){k(O,C);function O(N,R){w(this,O);var q=b(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N,R));if(Array.isArray(q.options.container)){var W=document.createElement("div");M(W,q.options.container),N.container.parentNode.insertBefore(W,N.container),q.container=W}else typeof q.options.container=="string"?q.container=document.querySelector(q.options.container):q.container=q.options.container;if(!(q.container instanceof HTMLElement)){var Y;return Y=T.error("Container required for toolbar",q.options),b(q,Y)}return q.container.classList.add("ql-toolbar"),q.controls=[],q.handlers={},Object.keys(q.options.handlers).forEach(function(re){q.addHandler(re,q.options.handlers[re])}),[].forEach.call(q.container.querySelectorAll("button, select"),function(re){q.attach(re)}),q.quill.on(c.default.events.EDITOR_CHANGE,function(re,K){re===c.default.events.SELECTION_CHANGE&&q.update(K)}),q.quill.on(c.default.events.SCROLL_OPTIMIZE,function(){var re=q.quill.selection.getRange(),K=i(re,1),V=K[0];q.update(V)}),q}return s(O,[{key:"addHandler",value:function(R,q){this.handlers[R]=q}},{key:"attach",value:function(R){var q=this,W=[].find.call(R.classList,function(re){return re.indexOf("ql-")===0});if(W){if(W=W.slice(3),R.tagName==="BUTTON"&&R.setAttribute("type","button"),this.handlers[W]==null){if(this.quill.scroll.whitelist!=null&&this.quill.scroll.whitelist[W]==null){T.warn("ignoring attaching to disabled format",W,R);return}if(p.default.query(W)==null){T.warn("ignoring attaching to nonexistent format",W,R);return}}var Y=R.tagName==="SELECT"?"change":"click";R.addEventListener(Y,function(re){var K=void 0;if(R.tagName==="SELECT"){if(R.selectedIndex<0)return;var V=R.options[R.selectedIndex];V.hasAttribute("selected")?K=!1:K=V.value||!1}else R.classList.contains("ql-active")?K=!1:K=R.value||!R.hasAttribute("value"),re.preventDefault();q.quill.focus();var D=q.quill.selection.getRange(),A=i(D,1),I=A[0];if(q.handlers[W]!=null)q.handlers[W].call(q,K);else if(p.default.query(W).prototype instanceof p.default.Embed){if(K=prompt("Enter "+W),!K)return;q.quill.updateContents(new u.default().retain(I.index).delete(I.length).insert(g({},W,K)),c.default.sources.USER)}else q.quill.format(W,K,c.default.sources.USER);q.update(I)}),this.controls.push([W,R])}}},{key:"update",value:function(R){var q=R==null?{}:this.quill.getFormat(R);this.controls.forEach(function(W){var Y=i(W,2),re=Y[0],K=Y[1];if(K.tagName==="SELECT"){var V=void 0;if(R==null)V=null;else if(q[re]==null)V=K.querySelector("option[selected]");else if(!Array.isArray(q[re])){var D=q[re];typeof D=="string"&&(D=D.replace(/\"/g,'\\"')),V=K.querySelector('option[value="'+D+'"]')}V==null?(K.value="",K.selectedIndex=-1):V.selected=!0}else if(R==null)K.classList.remove("ql-active");else if(K.hasAttribute("value")){var A=q[re]===K.getAttribute("value")||q[re]!=null&&q[re].toString()===K.getAttribute("value")||q[re]==null&&!K.getAttribute("value");K.classList.toggle("ql-active",A)}else K.classList.toggle("ql-active",q[re]!=null)})}}]),O}(_.default);S.DEFAULTS={};function x(C,O,N){var R=document.createElement("button");R.setAttribute("type","button"),R.classList.add("ql-"+O),N!=null&&(R.value=N),C.appendChild(R)}function M(C,O){Array.isArray(O[0])||(O=[O]),O.forEach(function(N){var R=document.createElement("span");R.classList.add("ql-formats"),N.forEach(function(q){if(typeof q=="string")x(R,q);else{var W=Object.keys(q)[0],Y=q[W];Array.isArray(Y)?E(R,W,Y):x(R,W,Y)}}),C.appendChild(R)})}function E(C,O,N){var R=document.createElement("select");R.classList.add("ql-"+O),N.forEach(function(q){var W=document.createElement("option");q!==!1?W.setAttribute("value",q):W.setAttribute("selected","selected"),R.appendChild(W)}),C.appendChild(R)}S.DEFAULTS={container:null,handlers:{clean:function(){var O=this,N=this.quill.getSelection();if(N!=null)if(N.length==0){var R=this.quill.getFormat();Object.keys(R).forEach(function(q){p.default.query(q,p.default.Scope.INLINE)!=null&&O.quill.format(q,!1)})}else this.quill.removeFormat(N,c.default.sources.USER)},direction:function(O){var N=this.quill.getFormat().align;O==="rtl"&&N==null?this.quill.format("align","right",c.default.sources.USER):!O&&N==="right"&&this.quill.format("align",!1,c.default.sources.USER),this.quill.format("direction",O,c.default.sources.USER)},indent:function(O){var N=this.quill.getSelection(),R=this.quill.getFormat(N),q=parseInt(R.indent||0);if(O==="+1"||O==="-1"){var W=O==="+1"?1:-1;R.direction==="rtl"&&(W*=-1),this.quill.format("indent",q+W,c.default.sources.USER)}},link:function(O){O===!0&&(O=prompt("Enter link URL:")),this.quill.format("link",O,c.default.sources.USER)},list:function(O){var N=this.quill.getSelection(),R=this.quill.getFormat(N);O==="check"?R.list==="checked"||R.list==="unchecked"?this.quill.format("list",!1,c.default.sources.USER):this.quill.format("list","unchecked",c.default.sources.USER):this.quill.format("list",O,c.default.sources.USER)}}},o.default=S,o.addControls=M},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(28),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(_,y){p(this,m);var g=f(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,_));return g.label.innerHTML=y,g.container.classList.add("ql-color-picker"),[].slice.call(g.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(w){w.classList.add("ql-primary")}),g}return i(m,[{key:"buildItem",value:function(y){var g=s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"buildItem",this).call(this,y);return g.style.backgroundColor=y.getAttribute("value")||"",g}},{key:"selectItem",value:function(y,g){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"selectItem",this).call(this,y,g);var w=this.label.querySelector(".ql-color-label"),b=y&&y.getAttribute("data-value")||"";w&&(w.tagName==="line"?w.style.stroke=b:w.style.fill=b)}}]),m}(u.default);o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(28),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(_,y){p(this,m);var g=f(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,_));return g.container.classList.add("ql-icon-picker"),[].forEach.call(g.container.querySelectorAll(".ql-picker-item"),function(w){w.innerHTML=y[w.getAttribute("data-value")||""]}),g.defaultItem=g.container.querySelector(".ql-selected"),g.selectItem(g.defaultItem),g}return i(m,[{key:"selectItem",value:function(y,g){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"selectItem",this).call(this,y,g),y=y||this.defaultItem,this.label.innerHTML=y.innerHTML}}]),m}(u.default);o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function u(d,p){for(var f=0;f<p.length;f++){var c=p[f];c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(d,c.key,c)}}return function(d,p,f){return p&&u(d.prototype,p),f&&u(d,f),d}}();function s(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}var l=function(){function u(d,p){var f=this;s(this,u),this.quill=d,this.boundsContainer=p||document.body,this.root=d.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){f.root.style.marginTop=-1*f.quill.root.scrollTop+"px"}),this.hide()}return i(u,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(p){var f=p.left+p.width/2-this.root.offsetWidth/2,c=p.bottom+this.quill.root.scrollTop;this.root.style.left=f+"px",this.root.style.top=c+"px",this.root.classList.remove("ql-flip");var h=this.boundsContainer.getBoundingClientRect(),v=this.root.getBoundingClientRect(),m=0;if(v.right>h.right&&(m=h.right-v.right,this.root.style.left=f+m+"px"),v.left<h.left&&(m=h.left-v.left,this.root.style.left=f+m+"px"),v.bottom>h.bottom){var _=v.bottom-v.top,y=p.bottom-p.top+_;this.root.style.top=c-y+"px",this.root.classList.add("ql-flip")}return m}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),u}();o.default=l},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function E(C,O){var N=[],R=!0,q=!1,W=void 0;try{for(var Y=C[Symbol.iterator](),re;!(R=(re=Y.next()).done)&&(N.push(re.value),!(O&&N.length===O));R=!0);}catch(K){q=!0,W=K}finally{try{!R&&Y.return&&Y.return()}finally{if(q)throw W}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function E(C,O,N){C===null&&(C=Function.prototype);var R=Object.getOwnPropertyDescriptor(C,O);if(R===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,N)}else{if("value"in R)return R.value;var W=R.get;return W===void 0?void 0:W.call(N)}},l=function(){function E(C,O){for(var N=0;N<O.length;N++){var R=O[N];R.enumerable=R.enumerable||!1,R.configurable=!0,"value"in R&&(R.writable=!0),Object.defineProperty(C,R.key,R)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}}(),u=a(3),d=w(u),p=a(8),f=w(p),c=a(43),h=w(c),v=a(27),m=w(v),_=a(15),y=a(41),g=w(y);function w(E){return E&&E.__esModule?E:{default:E}}function b(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function k(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function T(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}var S=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],x=function(E){T(C,E);function C(O,N){b(this,C),N.modules.toolbar!=null&&N.modules.toolbar.container==null&&(N.modules.toolbar.container=S);var R=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return R.quill.container.classList.add("ql-snow"),R}return l(C,[{key:"extendToolbar",value:function(N){N.container.classList.add("ql-snow"),this.buildButtons([].slice.call(N.container.querySelectorAll("button")),g.default),this.buildPickers([].slice.call(N.container.querySelectorAll("select")),g.default),this.tooltip=new M(this.quill,this.options.bounds),N.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(R,q){N.handlers.link.call(N,!q.format.link)})}}]),C}(h.default);x.DEFAULTS=(0,d.default)(!0,{},h.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(C){if(C){var O=this.quill.getSelection();if(O==null||O.length==0)return;var N=this.quill.getText(O);/^\S+@\S+\.\S+$/.test(N)&&N.indexOf("mailto:")!==0&&(N="mailto:"+N);var R=this.quill.theme.tooltip;R.edit("link",N)}else this.quill.format("link",!1)}}}}});var M=function(E){T(C,E);function C(O,N){b(this,C);var R=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return R.preview=R.root.querySelector("a.ql-preview"),R}return l(C,[{key:"listen",value:function(){var N=this;s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(R){N.root.classList.contains("ql-editing")?N.save():N.edit("link",N.preview.textContent),R.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(R){if(N.linkRange!=null){var q=N.linkRange;N.restoreFocus(),N.quill.formatText(q,"link",!1,f.default.sources.USER),delete N.linkRange}R.preventDefault(),N.hide()}),this.quill.on(f.default.events.SELECTION_CHANGE,function(R,q,W){if(R!=null){if(R.length===0&&W===f.default.sources.USER){var Y=N.quill.scroll.descendant(m.default,R.index),re=i(Y,2),K=re[0],V=re[1];if(K!=null){N.linkRange=new _.Range(R.index-V,K.length());var D=m.default.formats(K.domNode);N.preview.textContent=D,N.preview.setAttribute("href",D),N.show(),N.position(N.quill.getBounds(N.linkRange));return}}else delete N.linkRange;N.hide()}})}},{key:"show",value:function(){s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),C}(c.BaseTooltip);M.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),o.default=x},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(29),s=ie(i),l=a(36),u=a(38),d=a(64),p=a(65),f=ie(p),c=a(66),h=ie(c),v=a(67),m=ie(v),_=a(37),y=a(26),g=a(39),w=a(40),b=a(56),k=ie(b),T=a(68),S=ie(T),x=a(27),M=ie(x),E=a(69),C=ie(E),O=a(70),N=ie(O),R=a(71),q=ie(R),W=a(72),Y=ie(W),re=a(73),K=ie(re),V=a(13),D=ie(V),A=a(74),I=ie(A),U=a(75),F=ie(U),L=a(57),z=ie(L),Z=a(41),J=ie(Z),ne=a(28),ce=ie(ne),he=a(59),be=ie(he),ke=a(60),Oe=ie(ke),Re=a(61),Me=ie(Re),Q=a(108),te=ie(Q),ae=a(62),le=ie(ae);function ie($e){return $e&&$e.__esModule?$e:{default:$e}}s.default.register({"attributors/attribute/direction":u.DirectionAttribute,"attributors/class/align":l.AlignClass,"attributors/class/background":_.BackgroundClass,"attributors/class/color":y.ColorClass,"attributors/class/direction":u.DirectionClass,"attributors/class/font":g.FontClass,"attributors/class/size":w.SizeClass,"attributors/style/align":l.AlignStyle,"attributors/style/background":_.BackgroundStyle,"attributors/style/color":y.ColorStyle,"attributors/style/direction":u.DirectionStyle,"attributors/style/font":g.FontStyle,"attributors/style/size":w.SizeStyle},!0),s.default.register({"formats/align":l.AlignClass,"formats/direction":u.DirectionClass,"formats/indent":d.IndentClass,"formats/background":_.BackgroundStyle,"formats/color":y.ColorStyle,"formats/font":g.FontClass,"formats/size":w.SizeClass,"formats/blockquote":f.default,"formats/code-block":D.default,"formats/header":h.default,"formats/list":m.default,"formats/bold":k.default,"formats/code":V.Code,"formats/italic":S.default,"formats/link":M.default,"formats/script":C.default,"formats/strike":N.default,"formats/underline":q.default,"formats/image":Y.default,"formats/video":K.default,"formats/list/item":v.ListItem,"modules/formula":I.default,"modules/syntax":F.default,"modules/toolbar":z.default,"themes/bubble":te.default,"themes/snow":le.default,"ui/icons":J.default,"ui/picker":ce.default,"ui/icon-picker":Oe.default,"ui/color-picker":be.default,"ui/tooltip":Me.default},!0),o.default=s.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.IndentClass=void 0;var i=function(){function m(_,y){for(var g=0;g<y.length;g++){var w=y[g];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(_,w.key,w)}}return function(_,y,g){return y&&m(_.prototype,y),g&&m(_,g),_}}(),s=function m(_,y,g){_===null&&(_=Function.prototype);var w=Object.getOwnPropertyDescriptor(_,y);if(w===void 0){var b=Object.getPrototypeOf(_);return b===null?void 0:m(b,y,g)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(g)}},l=a(0),u=d(l);function d(m){return m&&m.__esModule?m:{default:m}}function p(m,_){if(!(m instanceof _))throw new TypeError("Cannot call a class as a function")}function f(m,_){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:m}function c(m,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);m.prototype=Object.create(_&&_.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(m,_):m.__proto__=_)}var h=function(m){c(_,m);function _(){return p(this,_),f(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return i(_,[{key:"add",value:function(g,w){if(w==="+1"||w==="-1"){var b=this.value(g)||0;w=w==="+1"?b+1:b-1}return w===0?(this.remove(g),!0):s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"add",this).call(this,g,w)}},{key:"canAdd",value:function(g,w){return s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"canAdd",this).call(this,g,w)||s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"canAdd",this).call(this,g,parseInt(w))}},{key:"value",value:function(g){return parseInt(s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"value",this).call(this,g))||void 0}}]),_}(u.default.Attributor.Class),v=new h("indent","ql-indent",{scope:u.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});o.IndentClass=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(4),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="blockquote",f.tagName="blockquote",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function h(v,m){for(var _=0;_<m.length;_++){var y=m[_];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,m,_){return m&&h(v.prototype,m),_&&h(v,_),v}}(),s=a(4),l=u(s);function u(h){return h&&h.__esModule?h:{default:h}}function d(h,v){if(!(h instanceof v))throw new TypeError("Cannot call a class as a function")}function p(h,v){if(!h)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:h}function f(h,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);h.prototype=Object.create(v&&v.prototype,{constructor:{value:h,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(h,v):h.__proto__=v)}var c=function(h){f(v,h);function v(){return d(this,v),p(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return i(v,null,[{key:"formats",value:function(_){return this.tagName.indexOf(_.tagName)+1}}]),v}(l.default);c.blotName="header",c.tagName=["H1","H2","H3","H4","H5","H6"],o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.ListItem=void 0;var i=function(){function b(k,T){for(var S=0;S<T.length;S++){var x=T[S];x.enumerable=x.enumerable||!1,x.configurable=!0,"value"in x&&(x.writable=!0),Object.defineProperty(k,x.key,x)}}return function(k,T,S){return T&&b(k.prototype,T),S&&b(k,S),k}}(),s=function b(k,T,S){k===null&&(k=Function.prototype);var x=Object.getOwnPropertyDescriptor(k,T);if(x===void 0){var M=Object.getPrototypeOf(k);return M===null?void 0:b(M,T,S)}else{if("value"in x)return x.value;var E=x.get;return E===void 0?void 0:E.call(S)}},l=a(0),u=h(l),d=a(4),p=h(d),f=a(25),c=h(f);function h(b){return b&&b.__esModule?b:{default:b}}function v(b,k,T){return k in b?Object.defineProperty(b,k,{value:T,enumerable:!0,configurable:!0,writable:!0}):b[k]=T,b}function m(b,k){if(!(b instanceof k))throw new TypeError("Cannot call a class as a function")}function _(b,k){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return k&&(typeof k=="object"||typeof k=="function")?k:b}function y(b,k){if(typeof k!="function"&&k!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof k);b.prototype=Object.create(k&&k.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),k&&(Object.setPrototypeOf?Object.setPrototypeOf(b,k):b.__proto__=k)}var g=function(b){y(k,b);function k(){return m(this,k),_(this,(k.__proto__||Object.getPrototypeOf(k)).apply(this,arguments))}return i(k,[{key:"format",value:function(S,x){S===w.blotName&&!x?this.replaceWith(u.default.create(this.statics.scope)):s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"format",this).call(this,S,x)}},{key:"remove",value:function(){this.prev==null&&this.next==null?this.parent.remove():s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(S,x){return this.parent.isolate(this.offset(this.parent),this.length()),S===this.parent.statics.blotName?(this.parent.replaceWith(S,x),this):(this.parent.unwrap(),s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replaceWith",this).call(this,S,x))}}],[{key:"formats",value:function(S){return S.tagName===this.tagName?void 0:s(k.__proto__||Object.getPrototypeOf(k),"formats",this).call(this,S)}}]),k}(p.default);g.blotName="list-item",g.tagName="LI";var w=function(b){y(k,b),i(k,null,[{key:"create",value:function(S){var x=S==="ordered"?"OL":"UL",M=s(k.__proto__||Object.getPrototypeOf(k),"create",this).call(this,x);return(S==="checked"||S==="unchecked")&&M.setAttribute("data-checked",S==="checked"),M}},{key:"formats",value:function(S){if(S.tagName==="OL")return"ordered";if(S.tagName==="UL")return S.hasAttribute("data-checked")?S.getAttribute("data-checked")==="true"?"checked":"unchecked":"bullet"}}]);function k(T){m(this,k);var S=_(this,(k.__proto__||Object.getPrototypeOf(k)).call(this,T)),x=function(E){if(E.target.parentNode===T){var C=S.statics.formats(T),O=u.default.find(E.target);C==="checked"?O.format("list","unchecked"):C==="unchecked"&&O.format("list","checked")}};return T.addEventListener("touchstart",x),T.addEventListener("mousedown",x),S}return i(k,[{key:"format",value:function(S,x){this.children.length>0&&this.children.tail.format(S,x)}},{key:"formats",value:function(){return v({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(S,x){if(S instanceof g)s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"insertBefore",this).call(this,S,x);else{var M=x==null?this.length():x.offset(this),E=this.split(M);E.parent.insertBefore(S,E)}}},{key:"optimize",value:function(S){s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"optimize",this).call(this,S);var x=this.next;x!=null&&x.prev===this&&x.statics.blotName===this.statics.blotName&&x.domNode.tagName===this.domNode.tagName&&x.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(x.moveChildren(this),x.remove())}},{key:"replace",value:function(S){if(S.statics.blotName!==this.statics.blotName){var x=u.default.create(this.statics.defaultChild);S.moveChildren(x),this.appendChild(x)}s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replace",this).call(this,S)}}]),k}(c.default);w.blotName="list",w.scope=u.default.Scope.BLOCK_BLOT,w.tagName=["OL","UL"],w.defaultChild="list-item",w.allowedChildren=[g],o.ListItem=g,o.default=w},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(56),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="italic",f.tagName=["EM","I"],o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(6),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,null,[{key:"create",value:function(y){return y==="super"?document.createElement("sup"):y==="sub"?document.createElement("sub"):s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,y)}},{key:"formats",value:function(y){if(y.tagName==="SUB")return"sub";if(y.tagName==="SUP")return"super"}}]),m}(u.default);h.blotName="script",h.tagName=["SUB","SUP"],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(6),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="strike",f.tagName="S",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=a(6),s=l(i);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="underline",f.tagName="U",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(0),u=p(l),d=a(27);function p(_){return _&&_.__esModule?_:{default:_}}function f(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function c(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function h(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var v=["alt","height","width"],m=function(_){h(y,_);function y(){return f(this,y),c(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return i(y,[{key:"format",value:function(w,b){v.indexOf(w)>-1?b?this.domNode.setAttribute(w,b):this.domNode.removeAttribute(w):s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"format",this).call(this,w,b)}}],[{key:"create",value:function(w){var b=s(y.__proto__||Object.getPrototypeOf(y),"create",this).call(this,w);return typeof w=="string"&&b.setAttribute("src",this.sanitize(w)),b}},{key:"formats",value:function(w){return v.reduce(function(b,k){return w.hasAttribute(k)&&(b[k]=w.getAttribute(k)),b},{})}},{key:"match",value:function(w){return/\.(jpe?g|gif|png)$/.test(w)||/^data:image\/.+;base64/.test(w)}},{key:"sanitize",value:function(w){return(0,d.sanitize)(w,["http","https","data"])?w:"//:0"}},{key:"value",value:function(w){return w.getAttribute("src")}}]),y}(u.default.Embed);m.blotName="image",m.tagName="IMG",o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var i=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(4),u=a(27),d=p(u);function p(_){return _&&_.__esModule?_:{default:_}}function f(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function c(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function h(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var v=["height","width"],m=function(_){h(y,_);function y(){return f(this,y),c(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return i(y,[{key:"format",value:function(w,b){v.indexOf(w)>-1?b?this.domNode.setAttribute(w,b):this.domNode.removeAttribute(w):s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"format",this).call(this,w,b)}}],[{key:"create",value:function(w){var b=s(y.__proto__||Object.getPrototypeOf(y),"create",this).call(this,w);return b.setAttribute("frameborder","0"),b.setAttribute("allowfullscreen",!0),b.setAttribute("src",this.sanitize(w)),b}},{key:"formats",value:function(w){return v.reduce(function(b,k){return w.hasAttribute(k)&&(b[k]=w.getAttribute(k)),b},{})}},{key:"sanitize",value:function(w){return d.default.sanitize(w)}},{key:"value",value:function(w){return w.getAttribute("src")}}]),y}(l.BlockEmbed);m.blotName="video",m.className="ql-video",m.tagName="IFRAME",o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.FormulaBlot=void 0;var i=function(){function w(b,k){for(var T=0;T<k.length;T++){var S=k[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(b,S.key,S)}}return function(b,k,T){return k&&w(b.prototype,k),T&&w(b,T),b}}(),s=function w(b,k,T){b===null&&(b=Function.prototype);var S=Object.getOwnPropertyDescriptor(b,k);if(S===void 0){var x=Object.getPrototypeOf(b);return x===null?void 0:w(x,k,T)}else{if("value"in S)return S.value;var M=S.get;return M===void 0?void 0:M.call(T)}},l=a(35),u=h(l),d=a(5),p=h(d),f=a(9),c=h(f);function h(w){return w&&w.__esModule?w:{default:w}}function v(w,b){if(!(w instanceof b))throw new TypeError("Cannot call a class as a function")}function m(w,b){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:w}function _(w,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);w.prototype=Object.create(b&&b.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(w,b):w.__proto__=b)}var y=function(w){_(b,w);function b(){return v(this,b),m(this,(b.__proto__||Object.getPrototypeOf(b)).apply(this,arguments))}return i(b,null,[{key:"create",value:function(T){var S=s(b.__proto__||Object.getPrototypeOf(b),"create",this).call(this,T);return typeof T=="string"&&(window.katex.render(T,S,{throwOnError:!1,errorColor:"#f00"}),S.setAttribute("data-value",T)),S}},{key:"value",value:function(T){return T.getAttribute("data-value")}}]),b}(u.default);y.blotName="formula",y.className="ql-formula",y.tagName="SPAN";var g=function(w){_(b,w),i(b,null,[{key:"register",value:function(){p.default.register(y,!0)}}]);function b(){v(this,b);var k=m(this,(b.__proto__||Object.getPrototypeOf(b)).call(this));if(window.katex==null)throw new Error("Formula module requires KaTeX.");return k}return b}(c.default);o.FormulaBlot=y,o.default=g},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.CodeToken=o.CodeBlock=void 0;var i=function(){function T(S,x){for(var M=0;M<x.length;M++){var E=x[M];E.enumerable=E.enumerable||!1,E.configurable=!0,"value"in E&&(E.writable=!0),Object.defineProperty(S,E.key,E)}}return function(S,x,M){return x&&T(S.prototype,x),M&&T(S,M),S}}(),s=function T(S,x,M){S===null&&(S=Function.prototype);var E=Object.getOwnPropertyDescriptor(S,x);if(E===void 0){var C=Object.getPrototypeOf(S);return C===null?void 0:T(C,x,M)}else{if("value"in E)return E.value;var O=E.get;return O===void 0?void 0:O.call(M)}},l=a(0),u=m(l),d=a(5),p=m(d),f=a(9),c=m(f),h=a(13),v=m(h);function m(T){return T&&T.__esModule?T:{default:T}}function _(T,S){if(!(T instanceof S))throw new TypeError("Cannot call a class as a function")}function y(T,S){if(!T)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:T}function g(T,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);T.prototype=Object.create(S&&S.prototype,{constructor:{value:T,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(T,S):T.__proto__=S)}var w=function(T){g(S,T);function S(){return _(this,S),y(this,(S.__proto__||Object.getPrototypeOf(S)).apply(this,arguments))}return i(S,[{key:"replaceWith",value:function(M){this.domNode.textContent=this.domNode.textContent,this.attach(),s(S.prototype.__proto__||Object.getPrototypeOf(S.prototype),"replaceWith",this).call(this,M)}},{key:"highlight",value:function(M){var E=this.domNode.textContent;this.cachedText!==E&&((E.trim().length>0||this.cachedText==null)&&(this.domNode.innerHTML=M(E),this.domNode.normalize(),this.attach()),this.cachedText=E)}}]),S}(v.default);w.className="ql-syntax";var b=new u.default.Attributor.Class("token","hljs",{scope:u.default.Scope.INLINE}),k=function(T){g(S,T),i(S,null,[{key:"register",value:function(){p.default.register(b,!0),p.default.register(w,!0)}}]);function S(x,M){_(this,S);var E=y(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,x,M));if(typeof E.options.highlight!="function")throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var C=null;return E.quill.on(p.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(C),C=setTimeout(function(){E.highlight(),C=null},E.options.interval)}),E.highlight(),E}return i(S,[{key:"highlight",value:function(){var M=this;if(!this.quill.selection.composing){this.quill.update(p.default.sources.USER);var E=this.quill.getSelection();this.quill.scroll.descendants(w).forEach(function(C){C.highlight(M.options.highlight)}),this.quill.update(p.default.sources.SILENT),E!=null&&this.quill.setSelection(E,p.default.sources.SILENT)}}}]),S}(c.default);k.DEFAULTS={highlight:function(){return window.hljs==null?null:function(T){var S=window.hljs.highlightAuto(T);return S.value}}(),interval:1e3},o.CodeBlock=w,o.CodeToken=b,o.default=k},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BubbleTooltip=void 0;var i=function S(x,M,E){x===null&&(x=Function.prototype);var C=Object.getOwnPropertyDescriptor(x,M);if(C===void 0){var O=Object.getPrototypeOf(x);return O===null?void 0:S(O,M,E)}else{if("value"in C)return C.value;var N=C.get;return N===void 0?void 0:N.call(E)}},s=function(){function S(x,M){for(var E=0;E<M.length;E++){var C=M[E];C.enumerable=C.enumerable||!1,C.configurable=!0,"value"in C&&(C.writable=!0),Object.defineProperty(x,C.key,C)}}return function(x,M,E){return M&&S(x.prototype,M),E&&S(x,E),x}}(),l=a(3),u=_(l),d=a(8),p=_(d),f=a(43),c=_(f),h=a(15),v=a(41),m=_(v);function _(S){return S&&S.__esModule?S:{default:S}}function y(S,x){if(!(S instanceof x))throw new TypeError("Cannot call a class as a function")}function g(S,x){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return x&&(typeof x=="object"||typeof x=="function")?x:S}function w(S,x){if(typeof x!="function"&&x!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof x);S.prototype=Object.create(x&&x.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),x&&(Object.setPrototypeOf?Object.setPrototypeOf(S,x):S.__proto__=x)}var b=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],k=function(S){w(x,S);function x(M,E){y(this,x),E.modules.toolbar!=null&&E.modules.toolbar.container==null&&(E.modules.toolbar.container=b);var C=g(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,M,E));return C.quill.container.classList.add("ql-bubble"),C}return s(x,[{key:"extendToolbar",value:function(E){this.tooltip=new T(this.quill,this.options.bounds),this.tooltip.root.appendChild(E.container),this.buildButtons([].slice.call(E.container.querySelectorAll("button")),m.default),this.buildPickers([].slice.call(E.container.querySelectorAll("select")),m.default)}}]),x}(c.default);k.DEFAULTS=(0,u.default)(!0,{},c.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(x){x?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var T=function(S){w(x,S);function x(M,E){y(this,x);var C=g(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,M,E));return C.quill.on(p.default.events.EDITOR_CHANGE,function(O,N,R,q){if(O===p.default.events.SELECTION_CHANGE)if(N!=null&&N.length>0&&q===p.default.sources.USER){C.show(),C.root.style.left="0px",C.root.style.width="",C.root.style.width=C.root.offsetWidth+"px";var W=C.quill.getLines(N.index,N.length);if(W.length===1)C.position(C.quill.getBounds(N));else{var Y=W[W.length-1],re=C.quill.getIndex(Y),K=Math.min(Y.length()-1,N.index+N.length-re),V=C.quill.getBounds(new h.Range(re,K));C.position(V)}}else document.activeElement!==C.textbox&&C.quill.hasFocus()&&C.hide()}),C}return s(x,[{key:"listen",value:function(){var E=this;i(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){E.root.classList.remove("ql-editing")}),this.quill.on(p.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!E.root.classList.contains("ql-hidden")){var C=E.quill.getSelection();C!=null&&E.position(E.quill.getBounds(C))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(E){var C=i(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"position",this).call(this,E),O=this.root.querySelector(".ql-tooltip-arrow");if(O.style.marginLeft="",C===0)return C;O.style.marginLeft=-1*C-O.offsetWidth/2+"px"}}]),x}(f.BaseTooltip);T.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),o.BubbleTooltip=T,o.default=k},function(e,o,a){e.exports=a(63)}]).default})})($a);var N1=$a.exports;const xe=Cn(N1);var $t=-1,bt=1,lt=0;function Dn(t,n,e,o){if(t===n)return t?[[lt,t]]:[];if(e!=null){var a=B1(t,n,e);if(a)return a}var i=fi(t,n),s=t.substring(0,i);t=t.substring(i),n=n.substring(i),i=hi(t,n);var l=t.substring(t.length-i);t=t.substring(0,t.length-i),n=n.substring(0,n.length-i);var u=A1(t,n);return s&&u.unshift([lt,s]),l&&u.push([lt,l]),ka(u,o),u}function A1(t,n){var e;if(!t)return[[bt,n]];if(!n)return[[$t,t]];var o=t.length>n.length?t:n,a=t.length>n.length?n:t,i=o.indexOf(a);if(i!==-1)return e=[[bt,o.substring(0,i)],[lt,a],[bt,o.substring(i+a.length)]],t.length>n.length&&(e[0][0]=e[2][0]=$t),e;if(a.length===1)return[[$t,t],[bt,n]];var s=P1(t,n);if(s){var l=s[0],u=s[1],d=s[2],p=s[3],f=s[4],c=Dn(l,d),h=Dn(u,p);return c.concat([[lt,f]],h)}return D1(t,n)}function D1(t,n){for(var e=t.length,o=n.length,a=Math.ceil((e+o)/2),i=a,s=2*a,l=new Array(s),u=new Array(s),d=0;d<s;d++)l[d]=-1,u[d]=-1;l[i+1]=0,u[i+1]=0;for(var p=e-o,f=p%2!==0,c=0,h=0,v=0,m=0,_=0;_<a;_++){for(var y=-_+c;y<=_-h;y+=2){var g=i+y,w;y===-_||y!==_&&l[g-1]<l[g+1]?w=l[g+1]:w=l[g-1]+1;for(var b=w-y;w<e&&b<o&&t.charAt(w)===n.charAt(b);)w++,b++;if(l[g]=w,w>e)h+=2;else if(b>o)c+=2;else if(f){var k=i+p-y;if(k>=0&&k<s&&u[k]!==-1){var T=e-u[k];if(w>=T)return wa(t,n,w,b)}}}for(var S=-_+v;S<=_-m;S+=2){var k=i+S,T;S===-_||S!==_&&u[k-1]<u[k+1]?T=u[k+1]:T=u[k-1]+1;for(var x=T-S;T<e&&x<o&&t.charAt(e-T-1)===n.charAt(o-x-1);)T++,x++;if(u[k]=T,T>e)m+=2;else if(x>o)v+=2;else if(!f){var g=i+p-S;if(g>=0&&g<s&&l[g]!==-1){var w=l[g],b=i+w-g;if(T=e-T,w>=T)return wa(t,n,w,b)}}}}return[[$t,t],[bt,n]]}function wa(t,n,e,o){var a=t.substring(0,e),i=n.substring(0,o),s=t.substring(e),l=n.substring(o),u=Dn(a,i),d=Dn(s,l);return u.concat(d)}function fi(t,n){if(!t||!n||t.charAt(0)!==n.charAt(0))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,i=0;e<a;)t.substring(i,a)==n.substring(i,a)?(e=a,i=e):o=a,a=Math.floor((o-e)/2+e);return Ca(t.charCodeAt(a-1))&&a--,a}function hi(t,n){if(!t||!n||t.slice(-1)!==n.slice(-1))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,i=0;e<a;)t.substring(t.length-a,t.length-i)==n.substring(n.length-a,n.length-i)?(e=a,i=e):o=a,a=Math.floor((o-e)/2+e);return Oa(t.charCodeAt(t.length-a))&&a--,a}function P1(t,n){var e=t.length>n.length?t:n,o=t.length>n.length?n:t;if(e.length<4||o.length*2<e.length)return null;function a(h,v,m){for(var _=h.substring(m,m+Math.floor(h.length/4)),y=-1,g="",w,b,k,T;(y=v.indexOf(_,y+1))!==-1;){var S=fi(h.substring(m),v.substring(y)),x=hi(h.substring(0,m),v.substring(0,y));g.length<x+S&&(g=v.substring(y-x,y)+v.substring(y,y+S),w=h.substring(0,m-x),b=h.substring(m+S),k=v.substring(0,y-x),T=v.substring(y+S))}return g.length*2>=h.length?[w,b,k,T,g]:null}var i=a(e,o,Math.ceil(e.length/4)),s=a(e,o,Math.ceil(e.length/2)),l;if(!i&&!s)return null;s?i?l=i[4].length>s[4].length?i:s:l=s:l=i;var u,d,p,f;t.length>n.length?(u=l[0],d=l[1],p=l[2],f=l[3]):(p=l[0],f=l[1],u=l[2],d=l[3]);var c=l[4];return[u,d,p,f,c]}function ka(t,n){t.push([lt,""]);for(var e=0,o=0,a=0,i="",s="",l;e<t.length;){if(e<t.length-1&&!t[e][1]){t.splice(e,1);continue}switch(t[e][0]){case bt:a++,s+=t[e][1],e++;break;case $t:o++,i+=t[e][1],e++;break;case lt:var u=e-a-o-1;if(n){if(u>=0&&Sa(t[u][1])){var d=t[u][1].slice(-1);if(t[u][1]=t[u][1].slice(0,-1),i=d+i,s=d+s,!t[u][1]){t.splice(u,1),e--;var p=u-1;t[p]&&t[p][0]===bt&&(a++,s=t[p][1]+s,p--),t[p]&&t[p][0]===$t&&(o++,i=t[p][1]+i,p--),u=p}}if(Ea(t[e][1])){var d=t[e][1].charAt(0);t[e][1]=t[e][1].slice(1),i+=d,s+=d}}if(e<t.length-1&&!t[e][1]){t.splice(e,1);break}if(i.length>0||s.length>0){i.length>0&&s.length>0&&(l=fi(s,i),l!==0&&(u>=0?t[u][1]+=s.substring(0,l):(t.splice(0,0,[lt,s.substring(0,l)]),e++),s=s.substring(l),i=i.substring(l)),l=hi(s,i),l!==0&&(t[e][1]=s.substring(s.length-l)+t[e][1],s=s.substring(0,s.length-l),i=i.substring(0,i.length-l)));var f=a+o;i.length===0&&s.length===0?(t.splice(e-f,f),e=e-f):i.length===0?(t.splice(e-f,f,[bt,s]),e=e-f+1):s.length===0?(t.splice(e-f,f,[$t,i]),e=e-f+1):(t.splice(e-f,f,[$t,i],[bt,s]),e=e-f+2)}e!==0&&t[e-1][0]===lt?(t[e-1][1]+=t[e][1],t.splice(e,1)):e++,a=0,o=0,i="",s="";break}}t[t.length-1][1]===""&&t.pop();var c=!1;for(e=1;e<t.length-1;)t[e-1][0]===lt&&t[e+1][0]===lt&&(t[e][1].substring(t[e][1].length-t[e-1][1].length)===t[e-1][1]?(t[e][1]=t[e-1][1]+t[e][1].substring(0,t[e][1].length-t[e-1][1].length),t[e+1][1]=t[e-1][1]+t[e+1][1],t.splice(e-1,1),c=!0):t[e][1].substring(0,t[e+1][1].length)==t[e+1][1]&&(t[e-1][1]+=t[e+1][1],t[e][1]=t[e][1].substring(t[e+1][1].length)+t[e+1][1],t.splice(e+1,1),c=!0)),e++;c&&ka(t,n)}function Ca(t){return t>=55296&&t<=56319}function Oa(t){return t>=56320&&t<=57343}function Ea(t){return Oa(t.charCodeAt(0))}function Sa(t){return Ca(t.charCodeAt(t.length-1))}function I1(t){for(var n=[],e=0;e<t.length;e++)t[e][1].length>0&&n.push(t[e]);return n}function pi(t,n,e,o){return Sa(t)||Ea(o)?null:I1([[lt,t],[$t,n],[bt,e],[lt,o]])}function B1(t,n,e){var o=typeof e=="number"?{index:e,length:0}:e.oldRange,a=typeof e=="number"?null:e.newRange,i=t.length,s=n.length;if(o.length===0&&(a===null||a.length===0)){var l=o.index,u=t.slice(0,l),d=t.slice(l),p=a?a.index:null;e:{var f=l+s-i;if(p!==null&&p!==f||f<0||f>s)break e;var c=n.slice(0,f),h=n.slice(f);if(h!==d)break e;var v=Math.min(l,f),m=u.slice(0,v),_=c.slice(0,v);if(m!==_)break e;var y=u.slice(v),g=c.slice(v);return pi(m,y,g,d)}e:{if(p!==null&&p!==l)break e;var w=l,c=n.slice(0,w),h=n.slice(w);if(c!==u)break e;var b=Math.min(i-w,s-w),k=d.slice(d.length-b),T=h.slice(h.length-b);if(k!==T)break e;var y=d.slice(0,d.length-b),g=h.slice(0,h.length-b);return pi(u,y,g,k)}}if(o.length>0&&a&&a.length===0)e:{var m=t.slice(0,o.index),k=t.slice(o.index+o.length),v=m.length,b=k.length;if(s<v+b)break e;var _=n.slice(0,v),T=n.slice(s-b);if(m!==_||k!==T)break e;var y=t.slice(v,i-b),g=n.slice(v,s-b);return pi(m,y,g,k)}return null}function mr(t,n,e){return Dn(t,n,e,!0)}mr.INSERT=bt,mr.DELETE=$t,mr.EQUAL=lt;var M1=mr,gr={exports:{}};gr.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=9007199254740991,i="[object Arguments]",s="[object Array]",l="[object Boolean]",u="[object Date]",d="[object Error]",p="[object Function]",f="[object GeneratorFunction]",c="[object Map]",h="[object Number]",v="[object Object]",m="[object Promise]",_="[object RegExp]",y="[object Set]",g="[object String]",w="[object Symbol]",b="[object WeakMap]",k="[object ArrayBuffer]",T="[object DataView]",S="[object Float32Array]",x="[object Float64Array]",M="[object Int8Array]",E="[object Int16Array]",C="[object Int32Array]",O="[object Uint8Array]",N="[object Uint8ClampedArray]",R="[object Uint16Array]",q="[object Uint32Array]",W=/[\\^$.*+?()[\]{}|]/g,Y=/\w*$/,re=/^\[object .+?Constructor\]$/,K=/^(?:0|[1-9]\d*)$/,V={};V[i]=V[s]=V[k]=V[T]=V[l]=V[u]=V[S]=V[x]=V[M]=V[E]=V[C]=V[c]=V[h]=V[v]=V[_]=V[y]=V[g]=V[w]=V[O]=V[N]=V[R]=V[q]=!0,V[d]=V[p]=V[b]=!1;var D=typeof je=="object"&&je&&je.Object===Object&&je,A=typeof self=="object"&&self&&self.Object===Object&&self,I=D||A||Function("return this")(),U=n&&!n.nodeType&&n,F=U&&!0&&t&&!t.nodeType&&t,L=F&&F.exports===U;function z($,P){return $.set(P[0],P[1]),$}function Z($,P){return $.add(P),$}function J($,P){for(var H=-1,ee=$?$.length:0;++H<ee&&P($[H],H,$)!==!1;);return $}function ne($,P){for(var H=-1,ee=P.length,we=$.length;++H<ee;)$[we+H]=P[H];return $}function ce($,P,H,ee){var we=-1,fe=$?$.length:0;for(ee&&fe&&(H=$[++we]);++we<fe;)H=P(H,$[we],we,$);return H}function he($,P){for(var H=-1,ee=Array($);++H<$;)ee[H]=P(H);return ee}function be($,P){return $==null?void 0:$[P]}function ke($){var P=!1;if($!=null&&typeof $.toString!="function")try{P=!!($+"")}catch{}return P}function Oe($){var P=-1,H=Array($.size);return $.forEach(function(ee,we){H[++P]=[we,ee]}),H}function Re($,P){return function(H){return $(P(H))}}function Me($){var P=-1,H=Array($.size);return $.forEach(function(ee){H[++P]=ee}),H}var Q=Array.prototype,te=Function.prototype,ae=Object.prototype,le=I["__core-js_shared__"],ie=function(){var $=/[^.]+$/.exec(le&&le.keys&&le.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),$e=te.toString,me=ae.hasOwnProperty,ve=ae.toString,ze=RegExp("^"+$e.call(me).replace(W,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),qe=L?I.Buffer:void 0,Ae=I.Symbol,wt=I.Uint8Array,Ee=Re(Object.getPrototypeOf,Object),rt=Object.create,Jt=ae.propertyIsEnumerable,Bn=Q.splice,Xt=Object.getOwnPropertySymbols,Pe=qe?qe.isBuffer:void 0,zt=Re(Object.keys,Object),kt=vt(I,"DataView"),Pt=vt(I,"Map"),Ze=vt(I,"Promise"),Ct=vt(I,"Set"),it=vt(I,"WeakMap"),It=vt(Object,"create"),Qt=ot(kt),B=ot(Pt),j=ot(Ze),G=ot(Ct),X=ot(it),oe=Ae?Ae.prototype:void 0,se=oe?oe.valueOf:void 0;function ye($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function ue(){this.__data__=It?It(null):{}}function Ce($){return this.has($)&&delete this.__data__[$]}function de($){var P=this.__data__;if(It){var H=P[$];return H===o?void 0:H}return me.call(P,$)?P[$]:void 0}function ge($){var P=this.__data__;return It?P[$]!==void 0:me.call(P,$)}function Te($,P){var H=this.__data__;return H[$]=It&&P===void 0?o:P,this}ye.prototype.clear=ue,ye.prototype.delete=Ce,ye.prototype.get=de,ye.prototype.has=ge,ye.prototype.set=Te;function Be($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ge(){this.__data__=[]}function Bt($){var P=this.__data__,H=hn(P,$);if(H<0)return!1;var ee=P.length-1;return H==ee?P.pop():Bn.call(P,H,1),!0}function Ot($){var P=this.__data__,H=hn(P,$);return H<0?void 0:P[H][1]}function Mn($){return hn(this.__data__,$)>-1}function en($,P){var H=this.__data__,ee=hn(H,$);return ee<0?H.push([$,P]):H[ee][1]=P,this}Be.prototype.clear=Ge,Be.prototype.delete=Bt,Be.prototype.get=Ot,Be.prototype.has=Mn,Be.prototype.set=en;function Ue($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ln(){this.__data__={hash:new ye,map:new(Pt||Be),string:new ye}}function Rn($){return nn(this,$).delete($)}function jn($){return nn(this,$).get($)}function Vn($){return nn(this,$).has($)}function qn($,P){return nn(this,$).set($,P),this}Ue.prototype.clear=Ln,Ue.prototype.delete=Rn,Ue.prototype.get=jn,Ue.prototype.has=Vn,Ue.prototype.set=qn;function Je($){this.__data__=new Be($)}function Fn(){this.__data__=new Be}function vi($){return this.__data__.delete($)}function _i($){return this.__data__.get($)}function $i($){return this.__data__.has($)}function wi($,P){var H=this.__data__;if(H instanceof Be){var ee=H.__data__;if(!Pt||ee.length<e-1)return ee.push([$,P]),this;H=this.__data__=new Ue(ee)}return H.set($,P),this}Je.prototype.clear=Fn,Je.prototype.delete=vi,Je.prototype.get=_i,Je.prototype.has=$i,Je.prototype.set=wi;function fn($,P){var H=Kn($)||mn($)?he($.length,String):[],ee=H.length,we=!!ee;for(var fe in $)(P||me.call($,fe))&&!(we&&(fe=="length"||Mi(fe,ee)))&&H.push(fe);return H}function wr($,P,H){var ee=$[P];(!(me.call($,P)&&Sr(ee,H))||H===void 0&&!(P in $))&&($[P]=H)}function hn($,P){for(var H=$.length;H--;)if(Sr($[H][0],P))return H;return-1}function Et($,P){return $&&Un(P,Wn(P),$)}function Hn($,P,H,ee,we,fe,Se){var Ne;if(ee&&(Ne=fe?ee($,we,fe,Se):ee($)),Ne!==void 0)return Ne;if(!xt($))return $;var Fe=Kn($);if(Fe){if(Ne=Ii($),!P)return Ai($,Ne)}else{var Ie=Lt($),Xe=Ie==p||Ie==f;if(xr($))return pn($,P);if(Ie==v||Ie==i||Xe&&!fe){if(ke($))return fe?$:{};if(Ne=St(Xe?{}:$),!P)return Di($,Et(Ne,$))}else{if(!V[Ie])return fe?$:{};Ne=Bi($,Ie,Hn,P)}}Se||(Se=new Je);var ct=Se.get($);if(ct)return ct;if(Se.set($,Ne),!Fe)var He=H?Pi($):Wn($);return J(He||$,function(Qe,We){He&&(We=Qe,Qe=$[We]),wr(Ne,We,Hn(Qe,P,H,ee,We,$,Se))}),Ne}function ki($){return xt($)?rt($):{}}function Ci($,P,H){var ee=P($);return Kn($)?ee:ne(ee,H($))}function Oi($){return ve.call($)}function Ei($){if(!xt($)||Ri($))return!1;var P=Gn($)||ke($)?ze:re;return P.test(ot($))}function Si($){if(!Or($))return zt($);var P=[];for(var H in Object($))me.call($,H)&&H!="constructor"&&P.push(H);return P}function pn($,P){if(P)return $.slice();var H=new $.constructor($.length);return $.copy(H),H}function zn($){var P=new $.constructor($.byteLength);return new wt(P).set(new wt($)),P}function tn($,P){var H=P?zn($.buffer):$.buffer;return new $.constructor(H,$.byteOffset,$.byteLength)}function kr($,P,H){var ee=P?H(Oe($),!0):Oe($);return ce(ee,z,new $.constructor)}function Cr($){var P=new $.constructor($.source,Y.exec($));return P.lastIndex=$.lastIndex,P}function xi($,P,H){var ee=P?H(Me($),!0):Me($);return ce(ee,Z,new $.constructor)}function Ti($){return se?Object(se.call($)):{}}function Ni($,P){var H=P?zn($.buffer):$.buffer;return new $.constructor(H,$.byteOffset,$.length)}function Ai($,P){var H=-1,ee=$.length;for(P||(P=Array(ee));++H<ee;)P[H]=$[H];return P}function Un($,P,H,ee){H||(H={});for(var we=-1,fe=P.length;++we<fe;){var Se=P[we],Ne=ee?ee(H[Se],$[Se],Se,H,$):void 0;wr(H,Se,Ne===void 0?$[Se]:Ne)}return H}function Di($,P){return Un($,Mt($),P)}function Pi($){return Ci($,Wn,Mt)}function nn($,P){var H=$.__data__;return Li(P)?H[typeof P=="string"?"string":"hash"]:H.map}function vt($,P){var H=be($,P);return Ei(H)?H:void 0}var Mt=Xt?Re(Xt,Object):Vi,Lt=Oi;(kt&&Lt(new kt(new ArrayBuffer(1)))!=T||Pt&&Lt(new Pt)!=c||Ze&&Lt(Ze.resolve())!=m||Ct&&Lt(new Ct)!=y||it&&Lt(new it)!=b)&&(Lt=function($){var P=ve.call($),H=P==v?$.constructor:void 0,ee=H?ot(H):void 0;if(ee)switch(ee){case Qt:return T;case B:return c;case j:return m;case G:return y;case X:return b}return P});function Ii($){var P=$.length,H=$.constructor(P);return P&&typeof $[0]=="string"&&me.call($,"index")&&(H.index=$.index,H.input=$.input),H}function St($){return typeof $.constructor=="function"&&!Or($)?ki(Ee($)):{}}function Bi($,P,H,ee){var we=$.constructor;switch(P){case k:return zn($);case l:case u:return new we(+$);case T:return tn($,ee);case S:case x:case M:case E:case C:case O:case N:case R:case q:return Ni($,ee);case c:return kr($,ee,H);case h:case g:return new we($);case _:return Cr($);case y:return xi($,ee,H);case w:return Ti($)}}function Mi($,P){return P=P??a,!!P&&(typeof $=="number"||K.test($))&&$>-1&&$%1==0&&$<P}function Li($){var P=typeof $;return P=="string"||P=="number"||P=="symbol"||P=="boolean"?$!=="__proto__":$===null}function Ri($){return!!ie&&ie in $}function Or($){var P=$&&$.constructor,H=typeof P=="function"&&P.prototype||ae;return $===H}function ot($){if($!=null){try{return $e.call($)}catch{}try{return $+""}catch{}}return""}function Er($){return Hn($,!0,!0)}function Sr($,P){return $===P||$!==$&&P!==P}function mn($){return ji($)&&me.call($,"callee")&&(!Jt.call($,"callee")||ve.call($)==i)}var Kn=Array.isArray;function gn($){return $!=null&&Tr($.length)&&!Gn($)}function ji($){return Nr($)&&gn($)}var xr=Pe||qi;function Gn($){var P=xt($)?ve.call($):"";return P==p||P==f}function Tr($){return typeof $=="number"&&$>-1&&$%1==0&&$<=a}function xt($){var P=typeof $;return!!$&&(P=="object"||P=="function")}function Nr($){return!!$&&typeof $=="object"}function Wn($){return gn($)?fn($):Si($)}function Vi(){return[]}function qi(){return!1}t.exports=Er}(gr,gr.exports);var xa=gr.exports,yr={exports:{}};yr.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=1,i=2,s=9007199254740991,l="[object Arguments]",u="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",f="[object Date]",c="[object Error]",h="[object Function]",v="[object GeneratorFunction]",m="[object Map]",_="[object Number]",y="[object Null]",g="[object Object]",w="[object Promise]",b="[object Proxy]",k="[object RegExp]",T="[object Set]",S="[object String]",x="[object Symbol]",M="[object Undefined]",E="[object WeakMap]",C="[object ArrayBuffer]",O="[object DataView]",N="[object Float32Array]",R="[object Float64Array]",q="[object Int8Array]",W="[object Int16Array]",Y="[object Int32Array]",re="[object Uint8Array]",K="[object Uint8ClampedArray]",V="[object Uint16Array]",D="[object Uint32Array]",A=/[\\^$.*+?()[\]{}|]/g,I=/^\[object .+?Constructor\]$/,U=/^(?:0|[1-9]\d*)$/,F={};F[N]=F[R]=F[q]=F[W]=F[Y]=F[re]=F[K]=F[V]=F[D]=!0,F[l]=F[u]=F[C]=F[p]=F[O]=F[f]=F[c]=F[h]=F[m]=F[_]=F[g]=F[k]=F[T]=F[S]=F[E]=!1;var L=typeof je=="object"&&je&&je.Object===Object&&je,z=typeof self=="object"&&self&&self.Object===Object&&self,Z=L||z||Function("return this")(),J=n&&!n.nodeType&&n,ne=J&&!0&&t&&!t.nodeType&&t,ce=ne&&ne.exports===J,he=ce&&L.process,be=function(){try{return he&&he.binding&&he.binding("util")}catch{}}(),ke=be&&be.isTypedArray;function Oe($,P){for(var H=-1,ee=$==null?0:$.length,we=0,fe=[];++H<ee;){var Se=$[H];P(Se,H,$)&&(fe[we++]=Se)}return fe}function Re($,P){for(var H=-1,ee=P.length,we=$.length;++H<ee;)$[we+H]=P[H];return $}function Me($,P){for(var H=-1,ee=$==null?0:$.length;++H<ee;)if(P($[H],H,$))return!0;return!1}function Q($,P){for(var H=-1,ee=Array($);++H<$;)ee[H]=P(H);return ee}function te($){return function(P){return $(P)}}function ae($,P){return $.has(P)}function le($,P){return $==null?void 0:$[P]}function ie($){var P=-1,H=Array($.size);return $.forEach(function(ee,we){H[++P]=[we,ee]}),H}function $e($,P){return function(H){return $(P(H))}}function me($){var P=-1,H=Array($.size);return $.forEach(function(ee){H[++P]=ee}),H}var ve=Array.prototype,ze=Function.prototype,qe=Object.prototype,Ae=Z["__core-js_shared__"],wt=ze.toString,Ee=qe.hasOwnProperty,rt=function(){var $=/[^.]+$/.exec(Ae&&Ae.keys&&Ae.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),Jt=qe.toString,Bn=RegExp("^"+wt.call(Ee).replace(A,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Xt=ce?Z.Buffer:void 0,Pe=Z.Symbol,zt=Z.Uint8Array,kt=qe.propertyIsEnumerable,Pt=ve.splice,Ze=Pe?Pe.toStringTag:void 0,Ct=Object.getOwnPropertySymbols,it=Xt?Xt.isBuffer:void 0,It=$e(Object.keys,Object),Qt=Mt(Z,"DataView"),B=Mt(Z,"Map"),j=Mt(Z,"Promise"),G=Mt(Z,"Set"),X=Mt(Z,"WeakMap"),oe=Mt(Object,"create"),se=ot(Qt),ye=ot(B),ue=ot(j),Ce=ot(G),de=ot(X),ge=Pe?Pe.prototype:void 0,Te=ge?ge.valueOf:void 0;function Be($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ge(){this.__data__=oe?oe(null):{},this.size=0}function Bt($){var P=this.has($)&&delete this.__data__[$];return this.size-=P?1:0,P}function Ot($){var P=this.__data__;if(oe){var H=P[$];return H===o?void 0:H}return Ee.call(P,$)?P[$]:void 0}function Mn($){var P=this.__data__;return oe?P[$]!==void 0:Ee.call(P,$)}function en($,P){var H=this.__data__;return this.size+=this.has($)?0:1,H[$]=oe&&P===void 0?o:P,this}Be.prototype.clear=Ge,Be.prototype.delete=Bt,Be.prototype.get=Ot,Be.prototype.has=Mn,Be.prototype.set=en;function Ue($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ln(){this.__data__=[],this.size=0}function Rn($){var P=this.__data__,H=pn(P,$);if(H<0)return!1;var ee=P.length-1;return H==ee?P.pop():Pt.call(P,H,1),--this.size,!0}function jn($){var P=this.__data__,H=pn(P,$);return H<0?void 0:P[H][1]}function Vn($){return pn(this.__data__,$)>-1}function qn($,P){var H=this.__data__,ee=pn(H,$);return ee<0?(++this.size,H.push([$,P])):H[ee][1]=P,this}Ue.prototype.clear=Ln,Ue.prototype.delete=Rn,Ue.prototype.get=jn,Ue.prototype.has=Vn,Ue.prototype.set=qn;function Je($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Fn(){this.size=0,this.__data__={hash:new Be,map:new(B||Ue),string:new Be}}function vi($){var P=vt(this,$).delete($);return this.size-=P?1:0,P}function _i($){return vt(this,$).get($)}function $i($){return vt(this,$).has($)}function wi($,P){var H=vt(this,$),ee=H.size;return H.set($,P),this.size+=H.size==ee?0:1,this}Je.prototype.clear=Fn,Je.prototype.delete=vi,Je.prototype.get=_i,Je.prototype.has=$i,Je.prototype.set=wi;function fn($){var P=-1,H=$==null?0:$.length;for(this.__data__=new Je;++P<H;)this.add($[P])}function wr($){return this.__data__.set($,o),this}function hn($){return this.__data__.has($)}fn.prototype.add=fn.prototype.push=wr,fn.prototype.has=hn;function Et($){var P=this.__data__=new Ue($);this.size=P.size}function Hn(){this.__data__=new Ue,this.size=0}function ki($){var P=this.__data__,H=P.delete($);return this.size=P.size,H}function Ci($){return this.__data__.get($)}function Oi($){return this.__data__.has($)}function Ei($,P){var H=this.__data__;if(H instanceof Ue){var ee=H.__data__;if(!B||ee.length<e-1)return ee.push([$,P]),this.size=++H.size,this;H=this.__data__=new Je(ee)}return H.set($,P),this.size=H.size,this}Et.prototype.clear=Hn,Et.prototype.delete=ki,Et.prototype.get=Ci,Et.prototype.has=Oi,Et.prototype.set=Ei;function Si($,P){var H=mn($),ee=!H&&Sr($),we=!H&&!ee&&gn($),fe=!H&&!ee&&!we&&Nr($),Se=H||ee||we||fe,Ne=Se?Q($.length,String):[],Fe=Ne.length;for(var Ie in $)(P||Ee.call($,Ie))&&!(Se&&(Ie=="length"||we&&(Ie=="offset"||Ie=="parent")||fe&&(Ie=="buffer"||Ie=="byteLength"||Ie=="byteOffset")||Bi(Ie,Fe)))&&Ne.push(Ie);return Ne}function pn($,P){for(var H=$.length;H--;)if(Er($[H][0],P))return H;return-1}function zn($,P,H){var ee=P($);return mn($)?ee:Re(ee,H($))}function tn($){return $==null?$===void 0?M:y:Ze&&Ze in Object($)?Lt($):Or($)}function kr($){return xt($)&&tn($)==l}function Cr($,P,H,ee,we){return $===P?!0:$==null||P==null||!xt($)&&!xt(P)?$!==$&&P!==P:xi($,P,H,ee,Cr,we)}function xi($,P,H,ee,we,fe){var Se=mn($),Ne=mn(P),Fe=Se?u:St($),Ie=Ne?u:St(P);Fe=Fe==l?g:Fe,Ie=Ie==l?g:Ie;var Xe=Fe==g,ct=Ie==g,He=Fe==Ie;if(He&&gn($)){if(!gn(P))return!1;Se=!0,Xe=!1}if(He&&!Xe)return fe||(fe=new Et),Se||Nr($)?Un($,P,H,ee,we,fe):Di($,P,Fe,H,ee,we,fe);if(!(H&a)){var Qe=Xe&&Ee.call($,"__wrapped__"),We=ct&&Ee.call(P,"__wrapped__");if(Qe||We){var Ut=Qe?$.value():$,Rt=We?P.value():P;return fe||(fe=new Et),we(Ut,Rt,H,ee,fe)}}return He?(fe||(fe=new Et),Pi($,P,H,ee,we,fe)):!1}function Ti($){if(!Tr($)||Li($))return!1;var P=xr($)?Bn:I;return P.test(ot($))}function Ni($){return xt($)&&Gn($.length)&&!!F[tn($)]}function Ai($){if(!Ri($))return It($);var P=[];for(var H in Object($))Ee.call($,H)&&H!="constructor"&&P.push(H);return P}function Un($,P,H,ee,we,fe){var Se=H&a,Ne=$.length,Fe=P.length;if(Ne!=Fe&&!(Se&&Fe>Ne))return!1;var Ie=fe.get($);if(Ie&&fe.get(P))return Ie==P;var Xe=-1,ct=!0,He=H&i?new fn:void 0;for(fe.set($,P),fe.set(P,$);++Xe<Ne;){var Qe=$[Xe],We=P[Xe];if(ee)var Ut=Se?ee(We,Qe,Xe,P,$,fe):ee(Qe,We,Xe,$,P,fe);if(Ut!==void 0){if(Ut)continue;ct=!1;break}if(He){if(!Me(P,function(Rt,rn){if(!ae(He,rn)&&(Qe===Rt||we(Qe,Rt,H,ee,fe)))return He.push(rn)})){ct=!1;break}}else if(!(Qe===We||we(Qe,We,H,ee,fe))){ct=!1;break}}return fe.delete($),fe.delete(P),ct}function Di($,P,H,ee,we,fe,Se){switch(H){case O:if($.byteLength!=P.byteLength||$.byteOffset!=P.byteOffset)return!1;$=$.buffer,P=P.buffer;case C:return!($.byteLength!=P.byteLength||!fe(new zt($),new zt(P)));case p:case f:case _:return Er(+$,+P);case c:return $.name==P.name&&$.message==P.message;case k:case S:return $==P+"";case m:var Ne=ie;case T:var Fe=ee&a;if(Ne||(Ne=me),$.size!=P.size&&!Fe)return!1;var Ie=Se.get($);if(Ie)return Ie==P;ee|=i,Se.set($,P);var Xe=Un(Ne($),Ne(P),ee,we,fe,Se);return Se.delete($),Xe;case x:if(Te)return Te.call($)==Te.call(P)}return!1}function Pi($,P,H,ee,we,fe){var Se=H&a,Ne=nn($),Fe=Ne.length,Ie=nn(P),Xe=Ie.length;if(Fe!=Xe&&!Se)return!1;for(var ct=Fe;ct--;){var He=Ne[ct];if(!(Se?He in P:Ee.call(P,He)))return!1}var Qe=fe.get($);if(Qe&&fe.get(P))return Qe==P;var We=!0;fe.set($,P),fe.set(P,$);for(var Ut=Se;++ct<Fe;){He=Ne[ct];var Rt=$[He],rn=P[He];if(ee)var ja=Se?ee(rn,Rt,He,P,$,fe):ee(Rt,rn,He,$,P,fe);if(!(ja===void 0?Rt===rn||we(Rt,rn,H,ee,fe):ja)){We=!1;break}Ut||(Ut=He=="constructor")}if(We&&!Ut){var Ar=$.constructor,Dr=P.constructor;Ar!=Dr&&"constructor"in $&&"constructor"in P&&!(typeof Ar=="function"&&Ar instanceof Ar&&typeof Dr=="function"&&Dr instanceof Dr)&&(We=!1)}return fe.delete($),fe.delete(P),We}function nn($){return zn($,Wn,Ii)}function vt($,P){var H=$.__data__;return Mi(P)?H[typeof P=="string"?"string":"hash"]:H.map}function Mt($,P){var H=le($,P);return Ti(H)?H:void 0}function Lt($){var P=Ee.call($,Ze),H=$[Ze];try{$[Ze]=void 0;var ee=!0}catch{}var we=Jt.call($);return ee&&(P?$[Ze]=H:delete $[Ze]),we}var Ii=Ct?function($){return $==null?[]:($=Object($),Oe(Ct($),function(P){return kt.call($,P)}))}:Vi,St=tn;(Qt&&St(new Qt(new ArrayBuffer(1)))!=O||B&&St(new B)!=m||j&&St(j.resolve())!=w||G&&St(new G)!=T||X&&St(new X)!=E)&&(St=function($){var P=tn($),H=P==g?$.constructor:void 0,ee=H?ot(H):"";if(ee)switch(ee){case se:return O;case ye:return m;case ue:return w;case Ce:return T;case de:return E}return P});function Bi($,P){return P=P??s,!!P&&(typeof $=="number"||U.test($))&&$>-1&&$%1==0&&$<P}function Mi($){var P=typeof $;return P=="string"||P=="number"||P=="symbol"||P=="boolean"?$!=="__proto__":$===null}function Li($){return!!rt&&rt in $}function Ri($){var P=$&&$.constructor,H=typeof P=="function"&&P.prototype||qe;return $===H}function Or($){return Jt.call($)}function ot($){if($!=null){try{return wt.call($)}catch{}try{return $+""}catch{}}return""}function Er($,P){return $===P||$!==$&&P!==P}var Sr=kr(function(){return arguments}())?kr:function($){return xt($)&&Ee.call($,"callee")&&!kt.call($,"callee")},mn=Array.isArray;function Kn($){return $!=null&&Gn($.length)&&!xr($)}var gn=it||qi;function ji($,P){return Cr($,P)}function xr($){if(!Tr($))return!1;var P=tn($);return P==h||P==v||P==d||P==b}function Gn($){return typeof $=="number"&&$>-1&&$%1==0&&$<=s}function Tr($){var P=typeof $;return $!=null&&(P=="object"||P=="function")}function xt($){return $!=null&&typeof $=="object"}var Nr=ke?te(ke):Ni;function Wn($){return Kn($)?Si($):Ai($)}function Vi(){return[]}function qi(){return!1}t.exports=ji}(yr,yr.exports);var Ta=yr.exports,mi={},Na=je&&je.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(mi,"__esModule",{value:!0});var L1=Na(xa),R1=Na(Ta),gi;(function(t){function n(i,s,l){i===void 0&&(i={}),s===void 0&&(s={}),typeof i!="object"&&(i={}),typeof s!="object"&&(s={});var u=L1.default(s);l||(u=Object.keys(u).reduce(function(p,f){return u[f]!=null&&(p[f]=u[f]),p},{}));for(var d in i)i[d]!==void 0&&s[d]===void 0&&(u[d]=i[d]);return Object.keys(u).length>0?u:void 0}t.compose=n;function e(i,s){i===void 0&&(i={}),s===void 0&&(s={}),typeof i!="object"&&(i={}),typeof s!="object"&&(s={});var l=Object.keys(i).concat(Object.keys(s)).reduce(function(u,d){return R1.default(i[d],s[d])||(u[d]=s[d]===void 0?null:s[d]),u},{});return Object.keys(l).length>0?l:void 0}t.diff=e;function o(i,s){i===void 0&&(i={}),s===void 0&&(s={}),i=i||{};var l=Object.keys(s).reduce(function(u,d){return s[d]!==i[d]&&i[d]!==void 0&&(u[d]=s[d]),u},{});return Object.keys(i).reduce(function(u,d){return i[d]!==s[d]&&s[d]===void 0&&(u[d]=null),u},l)}t.invert=o;function a(i,s,l){if(l===void 0&&(l=!1),typeof i!="object")return s;if(typeof s=="object"){if(!l)return s;var u=Object.keys(s).reduce(function(d,p){return i[p]===void 0&&(d[p]=s[p]),d},{});return Object.keys(u).length>0?u:void 0}}t.transform=a})(gi||(gi={})),mi.default=gi;var br={},vr={},Aa;function j1(){if(Aa)return vr;Aa=1;var t=je&&je.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(vr,"__esModule",{value:!0});var n=t(Pa()),e=function(){function o(a){this.ops=a,this.index=0,this.offset=0}return o.prototype.hasNext=function(){return this.peekLength()<1/0},o.prototype.next=function(a){a||(a=1/0);var i=this.ops[this.index];if(i){var s=this.offset,l=n.default.length(i);if(a>=l-s?(a=l-s,this.index+=1,this.offset=0):this.offset+=a,typeof i.delete=="number")return{delete:a};var u={};return i.attributes&&(u.attributes=i.attributes),typeof i.retain=="number"?u.retain=a:typeof i.insert=="string"?u.insert=i.insert.substr(s,a):u.insert=i.insert,u}else return{retain:1/0}},o.prototype.peek=function(){return this.ops[this.index]},o.prototype.peekLength=function(){return this.ops[this.index]?n.default.length(this.ops[this.index])-this.offset:1/0},o.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},o.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var a=this.offset,i=this.index,s=this.next(),l=this.ops.slice(this.index);return this.offset=a,this.index=i,[s].concat(l)}else return[]},o}();return vr.default=e,vr}var Da;function Pa(){if(Da)return br;Da=1;var t=je&&je.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(br,"__esModule",{value:!0});var n=t(j1()),e;return function(o){function a(s){return new n.default(s)}o.iterator=a;function i(s){return typeof s.delete=="number"?s.delete:typeof s.retain=="number"?s.retain:typeof s.insert=="string"?s.insert.length:1}o.length=i}(e||(e={})),br.default=e,br}var Pn=je&&je.__importDefault||function(t){return t&&t.__esModule?t:{default:t}},_r=Pn(M1),V1=Pn(xa),yi=Pn(Ta),In=Pn(mi),Ke=Pn(Pa()),q1=String.fromCharCode(0),F1=function(){function t(n){Array.isArray(n)?this.ops=n:n!=null&&Array.isArray(n.ops)?this.ops=n.ops:this.ops=[]}return t.prototype.insert=function(n,e){var o={};return typeof n=="string"&&n.length===0?this:(o.insert=n,e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o))},t.prototype.delete=function(n){return n<=0?this:this.push({delete:n})},t.prototype.retain=function(n,e){if(n<=0)return this;var o={retain:n};return e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o)},t.prototype.push=function(n){var e=this.ops.length,o=this.ops[e-1];if(n=V1.default(n),typeof o=="object"){if(typeof n.delete=="number"&&typeof o.delete=="number")return this.ops[e-1]={delete:o.delete+n.delete},this;if(typeof o.delete=="number"&&n.insert!=null&&(e-=1,o=this.ops[e-1],typeof o!="object"))return this.ops.unshift(n),this;if(yi.default(n.attributes,o.attributes)){if(typeof n.insert=="string"&&typeof o.insert=="string")return this.ops[e-1]={insert:o.insert+n.insert},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this;if(typeof n.retain=="number"&&typeof o.retain=="number")return this.ops[e-1]={retain:o.retain+n.retain},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this}}return e===this.ops.length?this.ops.push(n):this.ops.splice(e,0,n),this},t.prototype.chop=function(){var n=this.ops[this.ops.length-1];return n&&n.retain&&!n.attributes&&this.ops.pop(),this},t.prototype.filter=function(n){return this.ops.filter(n)},t.prototype.forEach=function(n){this.ops.forEach(n)},t.prototype.map=function(n){return this.ops.map(n)},t.prototype.partition=function(n){var e=[],o=[];return this.forEach(function(a){var i=n(a)?e:o;i.push(a)}),[e,o]},t.prototype.reduce=function(n,e){return this.ops.reduce(n,e)},t.prototype.changeLength=function(){return this.reduce(function(n,e){return e.insert?n+Ke.default.length(e):e.delete?n-e.delete:n},0)},t.prototype.length=function(){return this.reduce(function(n,e){return n+Ke.default.length(e)},0)},t.prototype.slice=function(n,e){n===void 0&&(n=0),e===void 0&&(e=1/0);for(var o=[],a=Ke.default.iterator(this.ops),i=0;i<e&&a.hasNext();){var s=void 0;i<n?s=a.next(n-i):(s=a.next(e-i),o.push(s)),i+=Ke.default.length(s)}return new t(o)},t.prototype.compose=function(n){var e=Ke.default.iterator(this.ops),o=Ke.default.iterator(n.ops),a=[],i=o.peek();if(i!=null&&typeof i.retain=="number"&&i.attributes==null){for(var s=i.retain;e.peekType()==="insert"&&e.peekLength()<=s;)s-=e.peekLength(),a.push(e.next());i.retain-s>0&&o.next(i.retain-s)}for(var l=new t(a);e.hasNext()||o.hasNext();)if(o.peekType()==="insert")l.push(o.next());else if(e.peekType()==="delete")l.push(e.next());else{var u=Math.min(e.peekLength(),o.peekLength()),d=e.next(u),p=o.next(u);if(typeof p.retain=="number"){var f={};typeof d.retain=="number"?f.retain=u:f.insert=d.insert;var c=In.default.compose(d.attributes,p.attributes,typeof d.retain=="number");if(c&&(f.attributes=c),l.push(f),!o.hasNext()&&yi.default(l.ops[l.ops.length-1],f)){var h=new t(e.rest());return l.concat(h).chop()}}else typeof p.delete=="number"&&typeof d.retain=="number"&&l.push(p)}return l.chop()},t.prototype.concat=function(n){var e=new t(this.ops.slice());return n.ops.length>0&&(e.push(n.ops[0]),e.ops=e.ops.concat(n.ops.slice(1))),e},t.prototype.diff=function(n,e){if(this.ops===n.ops)return new t;var o=[this,n].map(function(u){return u.map(function(d){if(d.insert!=null)return typeof d.insert=="string"?d.insert:q1;var p=u===n?"on":"with";throw new Error("diff() called "+p+" non-document")}).join("")}),a=new t,i=_r.default(o[0],o[1],e),s=Ke.default.iterator(this.ops),l=Ke.default.iterator(n.ops);return i.forEach(function(u){for(var d=u[1].length;d>0;){var p=0;switch(u[0]){case _r.default.INSERT:p=Math.min(l.peekLength(),d),a.push(l.next(p));break;case _r.default.DELETE:p=Math.min(d,s.peekLength()),s.next(p),a.delete(p);break;case _r.default.EQUAL:p=Math.min(s.peekLength(),l.peekLength(),d);var f=s.next(p),c=l.next(p);yi.default(f.insert,c.insert)?a.retain(p,In.default.diff(f.attributes,c.attributes)):a.push(c).delete(p);break}d-=p}}),a.chop()},t.prototype.eachLine=function(n,e){e===void 0&&(e=`
132
- `);for(var o=Ke.default.iterator(this.ops),a=new t,i=0;o.hasNext();){if(o.peekType()!=="insert")return;var s=o.peek(),l=Ke.default.length(s)-o.peekLength(),u=typeof s.insert=="string"?s.insert.indexOf(e,l)-l:-1;if(u<0)a.push(o.next());else if(u>0)a.push(o.next(u));else{if(n(a,o.next(1).attributes||{},i)===!1)return;i+=1,a=new t}}a.length()>0&&n(a,{},i)},t.prototype.invert=function(n){var e=new t;return this.reduce(function(o,a){if(a.insert)e.delete(Ke.default.length(a));else{if(a.retain&&a.attributes==null)return e.retain(a.retain),o+a.retain;if(a.delete||a.retain&&a.attributes){var i=a.delete||a.retain,s=n.slice(o,o+i);return s.forEach(function(l){a.delete?e.push(l):a.retain&&a.attributes&&e.retain(Ke.default.length(l),In.default.invert(a.attributes,l.attributes))}),o+i}}return o},0),e.chop()},t.prototype.transform=function(n,e){if(e===void 0&&(e=!1),e=!!e,typeof n=="number")return this.transformPosition(n,e);for(var o=n,a=Ke.default.iterator(this.ops),i=Ke.default.iterator(o.ops),s=new t;a.hasNext()||i.hasNext();)if(a.peekType()==="insert"&&(e||i.peekType()!=="insert"))s.retain(Ke.default.length(a.next()));else if(i.peekType()==="insert")s.push(i.next());else{var l=Math.min(a.peekLength(),i.peekLength()),u=a.next(l),d=i.next(l);if(u.delete)continue;d.delete?s.push(d):s.retain(l,In.default.transform(u.attributes,d.attributes,e))}return s.chop()},t.prototype.transformPosition=function(n,e){e===void 0&&(e=!1),e=!!e;for(var o=Ke.default.iterator(this.ops),a=0;o.hasNext()&&a<=n;){var i=o.peekLength(),s=o.peekType();if(o.next(),s==="delete"){n-=Math.min(i,n-a);continue}else s==="insert"&&(a<n||!e)&&(n+=i);a+=i}return n},t.Op=Ke.default,t.AttributeMap=In.default,t}(),H1=F1;const z1=Cn(H1);/*!
132
+ `)){var ae=Q.offsetHeight+parseFloat(H(Q).marginTop)+parseFloat(H(Q).marginBottom);Q.nextElementSibling.offsetTop>Q.offsetTop+ae*1.5&&ne.insert(`
133
+ `)}return ne}function Re(Q,ne){var ae={},le=Q.style||{};return le.fontStyle&&H(Q).fontStyle==="italic"&&(ae.italic=!0),le.fontWeight&&(H(Q).fontWeight.startsWith("bold")||parseInt(H(Q).fontWeight)>=700)&&(ae.bold=!0),Object.keys(ae).length>0&&(ne=B(ne,ae)),parseFloat(le.textIndent||0)>0&&(ne=new f.default().insert(" ").concat(ne)),ne}function Pe(Q,ne){var ae=Q.data;if(Q.parentNode.tagName==="O:P")return ne.insert(ae.trim());if(ae.trim().length===0&&Q.parentNode.classList.contains("ql-clipboard"))return ne;if(!H(Q.parentNode).whiteSpace.startsWith("pre")){var le=function($e,me){return me=me.replace(/[^\u00a0]/g,""),me.length<1&&$e?" ":me};ae=ae.replace(/\r\n/g," ").replace(/\n/g," "),ae=ae.replace(/\s\s+/g,le.bind(le,!0)),(Q.previousSibling==null&&L(Q.parentNode)||Q.previousSibling!=null&&L(Q.previousSibling))&&(ae=ae.replace(/^\s+/,le.bind(le,!1))),(Q.nextSibling==null&&L(Q.parentNode)||Q.nextSibling!=null&&L(Q.nextSibling))&&(ae=ae.replace(/\s+$/,le.bind(le,!1)))}return ne.insert(ae)}o.default=A,o.matchAttributor=J,o.matchBlot=ie,o.matchNewline=we,o.matchSpacing=Oe,o.matchText=Pe}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function _(g,$){for(var v=0;v<$.length;v++){var b=$[v];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,$,v){return $&&_(g.prototype,$),v&&_(g,v),g}})(),d=function _(g,$,v){g===null&&(g=Function.prototype);var b=Object.getOwnPropertyDescriptor(g,$);if(b===void 0){var y=Object.getPrototypeOf(g);return y===null?void 0:_(y,$,v)}else{if("value"in b)return b.value;var m=b.get;return m===void 0?void 0:m.call(v)}},c=a(6),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g(){return h(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"optimize",value:function(v){d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"optimize",this).call(this,v),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return d(g.__proto__||Object.getPrototypeOf(g),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),g})(p.default);u.blotName="bold",u.tagName=["STRONG","B"],o.default=u}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.addControls=o.default=void 0;var r=(function(){function C(O,N){var P=[],F=!0,K=!1,W=void 0;try{for(var ee=O[Symbol.iterator](),G;!(F=(G=ee.next()).done)&&(P.push(G.value),!(N&&P.length===N));F=!0);}catch(V){K=!0,W=V}finally{try{!F&&ee.return&&ee.return()}finally{if(K)throw W}}return P}return function(O,N){if(Array.isArray(O))return O;if(Symbol.iterator in Object(O))return C(O,N);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=(function(){function C(O,N){for(var P=0;P<N.length;P++){var F=N[P];F.enumerable=F.enumerable||!1,F.configurable=!0,"value"in F&&(F.writable=!0),Object.defineProperty(O,F.key,F)}}return function(O,N,P){return N&&C(O.prototype,N),P&&C(O,P),O}})(),c=a(2),p=v(c),s=a(0),h=v(s),f=a(5),l=v(f),u=a(10),_=v(u),g=a(9),$=v(g);function v(C){return C&&C.__esModule?C:{default:C}}function b(C,O,N){return O in C?Object.defineProperty(C,O,{value:N,enumerable:!0,configurable:!0,writable:!0}):C[O]=N,C}function y(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function m(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function w(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var T=(0,_.default)("quill:toolbar"),S=(function(C){w(O,C);function O(N,P){y(this,O);var F=m(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N,P));if(Array.isArray(F.options.container)){var K=document.createElement("div");D(K,F.options.container),N.container.parentNode.insertBefore(K,N.container),F.container=K}else typeof F.options.container=="string"?F.container=document.querySelector(F.options.container):F.container=F.options.container;if(!(F.container instanceof HTMLElement)){var W;return W=T.error("Container required for toolbar",F.options),m(F,W)}return F.container.classList.add("ql-toolbar"),F.controls=[],F.handlers={},Object.keys(F.options.handlers).forEach(function(ee){F.addHandler(ee,F.options.handlers[ee])}),[].forEach.call(F.container.querySelectorAll("button, select"),function(ee){F.attach(ee)}),F.quill.on(l.default.events.EDITOR_CHANGE,function(ee,G){ee===l.default.events.SELECTION_CHANGE&&F.update(G)}),F.quill.on(l.default.events.SCROLL_OPTIMIZE,function(){var ee=F.quill.selection.getRange(),G=r(ee,1),V=G[0];F.update(V)}),F}return d(O,[{key:"addHandler",value:function(P,F){this.handlers[P]=F}},{key:"attach",value:function(P){var F=this,K=[].find.call(P.classList,function(ee){return ee.indexOf("ql-")===0});if(K){if(K=K.slice(3),P.tagName==="BUTTON"&&P.setAttribute("type","button"),this.handlers[K]==null){if(this.quill.scroll.whitelist!=null&&this.quill.scroll.whitelist[K]==null){T.warn("ignoring attaching to disabled format",K,P);return}if(h.default.query(K)==null){T.warn("ignoring attaching to nonexistent format",K,P);return}}var W=P.tagName==="SELECT"?"change":"click";P.addEventListener(W,function(ee){var G=void 0;if(P.tagName==="SELECT"){if(P.selectedIndex<0)return;var V=P.options[P.selectedIndex];V.hasAttribute("selected")?G=!1:G=V.value||!1}else P.classList.contains("ql-active")?G=!1:G=P.value||!P.hasAttribute("value"),ee.preventDefault();F.quill.focus();var M=F.quill.selection.getRange(),A=r(M,1),B=A[0];if(F.handlers[K]!=null)F.handlers[K].call(F,G);else if(h.default.query(K).prototype instanceof h.default.Embed){if(G=prompt("Enter "+K),!G)return;F.quill.updateContents(new p.default().retain(B.index).delete(B.length).insert(b({},K,G)),l.default.sources.USER)}else F.quill.format(K,G,l.default.sources.USER);F.update(B)}),this.controls.push([K,P])}}},{key:"update",value:function(P){var F=P==null?{}:this.quill.getFormat(P);this.controls.forEach(function(K){var W=r(K,2),ee=W[0],G=W[1];if(G.tagName==="SELECT"){var V=void 0;if(P==null)V=null;else if(F[ee]==null)V=G.querySelector("option[selected]");else if(!Array.isArray(F[ee])){var M=F[ee];typeof M=="string"&&(M=M.replace(/\"/g,'\\"')),V=G.querySelector('option[value="'+M+'"]')}V==null?(G.value="",G.selectedIndex=-1):V.selected=!0}else if(P==null)G.classList.remove("ql-active");else if(G.hasAttribute("value")){var A=F[ee]===G.getAttribute("value")||F[ee]!=null&&F[ee].toString()===G.getAttribute("value")||F[ee]==null&&!G.getAttribute("value");G.classList.toggle("ql-active",A)}else G.classList.toggle("ql-active",F[ee]!=null)})}}]),O})($.default);S.DEFAULTS={};function x(C,O,N){var P=document.createElement("button");P.setAttribute("type","button"),P.classList.add("ql-"+O),N!=null&&(P.value=N),C.appendChild(P)}function D(C,O){Array.isArray(O[0])||(O=[O]),O.forEach(function(N){var P=document.createElement("span");P.classList.add("ql-formats"),N.forEach(function(F){if(typeof F=="string")x(P,F);else{var K=Object.keys(F)[0],W=F[K];Array.isArray(W)?E(P,K,W):x(P,K,W)}}),C.appendChild(P)})}function E(C,O,N){var P=document.createElement("select");P.classList.add("ql-"+O),N.forEach(function(F){var K=document.createElement("option");F!==!1?K.setAttribute("value",F):K.setAttribute("selected","selected"),P.appendChild(K)}),C.appendChild(P)}S.DEFAULTS={container:null,handlers:{clean:function(){var O=this,N=this.quill.getSelection();if(N!=null)if(N.length==0){var P=this.quill.getFormat();Object.keys(P).forEach(function(F){h.default.query(F,h.default.Scope.INLINE)!=null&&O.quill.format(F,!1)})}else this.quill.removeFormat(N,l.default.sources.USER)},direction:function(O){var N=this.quill.getFormat().align;O==="rtl"&&N==null?this.quill.format("align","right",l.default.sources.USER):!O&&N==="right"&&this.quill.format("align",!1,l.default.sources.USER),this.quill.format("direction",O,l.default.sources.USER)},indent:function(O){var N=this.quill.getSelection(),P=this.quill.getFormat(N),F=parseInt(P.indent||0);if(O==="+1"||O==="-1"){var K=O==="+1"?1:-1;P.direction==="rtl"&&(K*=-1),this.quill.format("indent",F+K,l.default.sources.USER)}},link:function(O){O===!0&&(O=prompt("Enter link URL:")),this.quill.format("link",O,l.default.sources.USER)},list:function(O){var N=this.quill.getSelection(),P=this.quill.getFormat(N);O==="check"?P.list==="checked"||P.list==="unchecked"?this.quill.format("list",!1,l.default.sources.USER):this.quill.format("list","unchecked",l.default.sources.USER):this.quill.format("list",O,l.default.sources.USER)}}},o.default=S,o.addControls=D}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function _(g,$){for(var v=0;v<$.length;v++){var b=$[v];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,$,v){return $&&_(g.prototype,$),v&&_(g,v),g}})(),d=function _(g,$,v){g===null&&(g=Function.prototype);var b=Object.getOwnPropertyDescriptor(g,$);if(b===void 0){var y=Object.getPrototypeOf(g);return y===null?void 0:_(y,$,v)}else{if("value"in b)return b.value;var m=b.get;return m===void 0?void 0:m.call(v)}},c=a(28),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g($,v){h(this,g);var b=f(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,$));return b.label.innerHTML=v,b.container.classList.add("ql-color-picker"),[].slice.call(b.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(y){y.classList.add("ql-primary")}),b}return r(g,[{key:"buildItem",value:function(v){var b=d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"buildItem",this).call(this,v);return b.style.backgroundColor=v.getAttribute("value")||"",b}},{key:"selectItem",value:function(v,b){d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"selectItem",this).call(this,v,b);var y=this.label.querySelector(".ql-color-label"),m=v&&v.getAttribute("data-value")||"";y&&(y.tagName==="line"?y.style.stroke=m:y.style.fill=m)}}]),g})(p.default);o.default=u}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function _(g,$){for(var v=0;v<$.length;v++){var b=$[v];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,$,v){return $&&_(g.prototype,$),v&&_(g,v),g}})(),d=function _(g,$,v){g===null&&(g=Function.prototype);var b=Object.getOwnPropertyDescriptor(g,$);if(b===void 0){var y=Object.getPrototypeOf(g);return y===null?void 0:_(y,$,v)}else{if("value"in b)return b.value;var m=b.get;return m===void 0?void 0:m.call(v)}},c=a(28),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g($,v){h(this,g);var b=f(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,$));return b.container.classList.add("ql-icon-picker"),[].forEach.call(b.container.querySelectorAll(".ql-picker-item"),function(y){y.innerHTML=v[y.getAttribute("data-value")||""]}),b.defaultItem=b.container.querySelector(".ql-selected"),b.selectItem(b.defaultItem),b}return r(g,[{key:"selectItem",value:function(v,b){d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"selectItem",this).call(this,v,b),v=v||this.defaultItem,this.label.innerHTML=v.innerHTML}}]),g})(p.default);o.default=u}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function p(s,h){for(var f=0;f<h.length;f++){var l=h[f];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(s,l.key,l)}}return function(s,h,f){return h&&p(s.prototype,h),f&&p(s,f),s}})();function d(p,s){if(!(p instanceof s))throw new TypeError("Cannot call a class as a function")}var c=(function(){function p(s,h){var f=this;d(this,p),this.quill=s,this.boundsContainer=h||document.body,this.root=s.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){f.root.style.marginTop=-1*f.quill.root.scrollTop+"px"}),this.hide()}return r(p,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(h){var f=h.left+h.width/2-this.root.offsetWidth/2,l=h.bottom+this.quill.root.scrollTop;this.root.style.left=f+"px",this.root.style.top=l+"px",this.root.classList.remove("ql-flip");var u=this.boundsContainer.getBoundingClientRect(),_=this.root.getBoundingClientRect(),g=0;if(_.right>u.right&&(g=u.right-_.right,this.root.style.left=f+g+"px"),_.left<u.left&&(g=u.left-_.left,this.root.style.left=f+g+"px"),_.bottom>u.bottom){var $=_.bottom-_.top,v=h.bottom-h.top+$;this.root.style.top=l-v+"px",this.root.classList.add("ql-flip")}return g}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),p})();o.default=c}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function E(C,O){var N=[],P=!0,F=!1,K=void 0;try{for(var W=C[Symbol.iterator](),ee;!(P=(ee=W.next()).done)&&(N.push(ee.value),!(O&&N.length===O));P=!0);}catch(G){F=!0,K=G}finally{try{!P&&W.return&&W.return()}finally{if(F)throw K}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}})(),d=function E(C,O,N){C===null&&(C=Function.prototype);var P=Object.getOwnPropertyDescriptor(C,O);if(P===void 0){var F=Object.getPrototypeOf(C);return F===null?void 0:E(F,O,N)}else{if("value"in P)return P.value;var K=P.get;return K===void 0?void 0:K.call(N)}},c=(function(){function E(C,O){for(var N=0;N<O.length;N++){var P=O[N];P.enumerable=P.enumerable||!1,P.configurable=!0,"value"in P&&(P.writable=!0),Object.defineProperty(C,P.key,P)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}})(),p=a(3),s=y(p),h=a(8),f=y(h),l=a(43),u=y(l),_=a(27),g=y(_),$=a(15),v=a(41),b=y(v);function y(E){return E&&E.__esModule?E:{default:E}}function m(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function w(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function T(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}var S=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],x=(function(E){T(C,E);function C(O,N){m(this,C),N.modules.toolbar!=null&&N.modules.toolbar.container==null&&(N.modules.toolbar.container=S);var P=w(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return P.quill.container.classList.add("ql-snow"),P}return c(C,[{key:"extendToolbar",value:function(N){N.container.classList.add("ql-snow"),this.buildButtons([].slice.call(N.container.querySelectorAll("button")),b.default),this.buildPickers([].slice.call(N.container.querySelectorAll("select")),b.default),this.tooltip=new D(this.quill,this.options.bounds),N.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(P,F){N.handlers.link.call(N,!F.format.link)})}}]),C})(u.default);x.DEFAULTS=(0,s.default)(!0,{},u.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(C){if(C){var O=this.quill.getSelection();if(O==null||O.length==0)return;var N=this.quill.getText(O);/^\S+@\S+\.\S+$/.test(N)&&N.indexOf("mailto:")!==0&&(N="mailto:"+N);var P=this.quill.theme.tooltip;P.edit("link",N)}else this.quill.format("link",!1)}}}}});var D=(function(E){T(C,E);function C(O,N){m(this,C);var P=w(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return P.preview=P.root.querySelector("a.ql-preview"),P}return c(C,[{key:"listen",value:function(){var N=this;d(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(P){N.root.classList.contains("ql-editing")?N.save():N.edit("link",N.preview.textContent),P.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(P){if(N.linkRange!=null){var F=N.linkRange;N.restoreFocus(),N.quill.formatText(F,"link",!1,f.default.sources.USER),delete N.linkRange}P.preventDefault(),N.hide()}),this.quill.on(f.default.events.SELECTION_CHANGE,function(P,F,K){if(P!=null){if(P.length===0&&K===f.default.sources.USER){var W=N.quill.scroll.descendant(g.default,P.index),ee=r(W,2),G=ee[0],V=ee[1];if(G!=null){N.linkRange=new $.Range(P.index-V,G.length());var M=g.default.formats(G.domNode);N.preview.textContent=M,N.preview.setAttribute("href",M),N.show(),N.position(N.quill.getBounds(N.linkRange));return}}else delete N.linkRange;N.hide()}})}},{key:"show",value:function(){d(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),C})(l.BaseTooltip);D.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),o.default=x}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(29),d=re(r),c=a(36),p=a(38),s=a(64),h=a(65),f=re(h),l=a(66),u=re(l),_=a(67),g=re(_),$=a(37),v=a(26),b=a(39),y=a(40),m=a(56),w=re(m),T=a(68),S=re(T),x=a(27),D=re(x),E=a(69),C=re(E),O=a(70),N=re(O),P=a(71),F=re(P),K=a(72),W=re(K),ee=a(73),G=re(ee),V=a(13),M=re(V),A=a(74),B=re(A),H=a(75),q=re(H),L=a(57),U=re(L),Z=a(41),J=re(Z),ie=a(28),ce=re(ie),he=a(59),ve=re(he),we=a(60),Oe=re(we),Re=a(61),Pe=re(Re),Q=a(108),ne=re(Q),ae=a(62),le=re(ae);function re($e){return $e&&$e.__esModule?$e:{default:$e}}d.default.register({"attributors/attribute/direction":p.DirectionAttribute,"attributors/class/align":c.AlignClass,"attributors/class/background":$.BackgroundClass,"attributors/class/color":v.ColorClass,"attributors/class/direction":p.DirectionClass,"attributors/class/font":b.FontClass,"attributors/class/size":y.SizeClass,"attributors/style/align":c.AlignStyle,"attributors/style/background":$.BackgroundStyle,"attributors/style/color":v.ColorStyle,"attributors/style/direction":p.DirectionStyle,"attributors/style/font":b.FontStyle,"attributors/style/size":y.SizeStyle},!0),d.default.register({"formats/align":c.AlignClass,"formats/direction":p.DirectionClass,"formats/indent":s.IndentClass,"formats/background":$.BackgroundStyle,"formats/color":v.ColorStyle,"formats/font":b.FontClass,"formats/size":y.SizeClass,"formats/blockquote":f.default,"formats/code-block":M.default,"formats/header":u.default,"formats/list":g.default,"formats/bold":w.default,"formats/code":V.Code,"formats/italic":S.default,"formats/link":D.default,"formats/script":C.default,"formats/strike":N.default,"formats/underline":F.default,"formats/image":W.default,"formats/video":G.default,"formats/list/item":_.ListItem,"modules/formula":B.default,"modules/syntax":q.default,"modules/toolbar":U.default,"themes/bubble":ne.default,"themes/snow":le.default,"ui/icons":J.default,"ui/picker":ce.default,"ui/icon-picker":Oe.default,"ui/color-picker":ve.default,"ui/tooltip":Pe.default},!0),o.default=d.default}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.IndentClass=void 0;var r=(function(){function g($,v){for(var b=0;b<v.length;b++){var y=v[b];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty($,y.key,y)}}return function($,v,b){return v&&g($.prototype,v),b&&g($,b),$}})(),d=function g($,v,b){$===null&&($=Function.prototype);var y=Object.getOwnPropertyDescriptor($,v);if(y===void 0){var m=Object.getPrototypeOf($);return m===null?void 0:g(m,v,b)}else{if("value"in y)return y.value;var w=y.get;return w===void 0?void 0:w.call(b)}},c=a(0),p=s(c);function s(g){return g&&g.__esModule?g:{default:g}}function h(g,$){if(!(g instanceof $))throw new TypeError("Cannot call a class as a function")}function f(g,$){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return $&&(typeof $=="object"||typeof $=="function")?$:g}function l(g,$){if(typeof $!="function"&&$!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof $);g.prototype=Object.create($&&$.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),$&&(Object.setPrototypeOf?Object.setPrototypeOf(g,$):g.__proto__=$)}var u=(function(g){l($,g);function $(){return h(this,$),f(this,($.__proto__||Object.getPrototypeOf($)).apply(this,arguments))}return r($,[{key:"add",value:function(b,y){if(y==="+1"||y==="-1"){var m=this.value(b)||0;y=y==="+1"?m+1:m-1}return y===0?(this.remove(b),!0):d($.prototype.__proto__||Object.getPrototypeOf($.prototype),"add",this).call(this,b,y)}},{key:"canAdd",value:function(b,y){return d($.prototype.__proto__||Object.getPrototypeOf($.prototype),"canAdd",this).call(this,b,y)||d($.prototype.__proto__||Object.getPrototypeOf($.prototype),"canAdd",this).call(this,b,parseInt(y))}},{key:"value",value:function(b){return parseInt(d($.prototype.__proto__||Object.getPrototypeOf($.prototype),"value",this).call(this,b))||void 0}}]),$})(p.default.Attributor.Class),_=new u("indent","ql-indent",{scope:p.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});o.IndentClass=_}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(4),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}function p(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}function s(l,u){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u&&(typeof u=="object"||typeof u=="function")?u:l}function h(l,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof u);l.prototype=Object.create(u&&u.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),u&&(Object.setPrototypeOf?Object.setPrototypeOf(l,u):l.__proto__=u)}var f=(function(l){h(u,l);function u(){return p(this,u),s(this,(u.__proto__||Object.getPrototypeOf(u)).apply(this,arguments))}return u})(d.default);f.blotName="blockquote",f.tagName="blockquote",o.default=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function u(_,g){for(var $=0;$<g.length;$++){var v=g[$];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(_,v.key,v)}}return function(_,g,$){return g&&u(_.prototype,g),$&&u(_,$),_}})(),d=a(4),c=p(d);function p(u){return u&&u.__esModule?u:{default:u}}function s(u,_){if(!(u instanceof _))throw new TypeError("Cannot call a class as a function")}function h(u,_){if(!u)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:u}function f(u,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);u.prototype=Object.create(_&&_.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(u,_):u.__proto__=_)}var l=(function(u){f(_,u);function _(){return s(this,_),h(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return r(_,null,[{key:"formats",value:function($){return this.tagName.indexOf($.tagName)+1}}]),_})(c.default);l.blotName="header",l.tagName=["H1","H2","H3","H4","H5","H6"],o.default=l}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.ListItem=void 0;var r=(function(){function m(w,T){for(var S=0;S<T.length;S++){var x=T[S];x.enumerable=x.enumerable||!1,x.configurable=!0,"value"in x&&(x.writable=!0),Object.defineProperty(w,x.key,x)}}return function(w,T,S){return T&&m(w.prototype,T),S&&m(w,S),w}})(),d=function m(w,T,S){w===null&&(w=Function.prototype);var x=Object.getOwnPropertyDescriptor(w,T);if(x===void 0){var D=Object.getPrototypeOf(w);return D===null?void 0:m(D,T,S)}else{if("value"in x)return x.value;var E=x.get;return E===void 0?void 0:E.call(S)}},c=a(0),p=u(c),s=a(4),h=u(s),f=a(25),l=u(f);function u(m){return m&&m.__esModule?m:{default:m}}function _(m,w,T){return w in m?Object.defineProperty(m,w,{value:T,enumerable:!0,configurable:!0,writable:!0}):m[w]=T,m}function g(m,w){if(!(m instanceof w))throw new TypeError("Cannot call a class as a function")}function $(m,w){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return w&&(typeof w=="object"||typeof w=="function")?w:m}function v(m,w){if(typeof w!="function"&&w!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof w);m.prototype=Object.create(w&&w.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),w&&(Object.setPrototypeOf?Object.setPrototypeOf(m,w):m.__proto__=w)}var b=(function(m){v(w,m);function w(){return g(this,w),$(this,(w.__proto__||Object.getPrototypeOf(w)).apply(this,arguments))}return r(w,[{key:"format",value:function(S,x){S===y.blotName&&!x?this.replaceWith(p.default.create(this.statics.scope)):d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"format",this).call(this,S,x)}},{key:"remove",value:function(){this.prev==null&&this.next==null?this.parent.remove():d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(S,x){return this.parent.isolate(this.offset(this.parent),this.length()),S===this.parent.statics.blotName?(this.parent.replaceWith(S,x),this):(this.parent.unwrap(),d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"replaceWith",this).call(this,S,x))}}],[{key:"formats",value:function(S){return S.tagName===this.tagName?void 0:d(w.__proto__||Object.getPrototypeOf(w),"formats",this).call(this,S)}}]),w})(h.default);b.blotName="list-item",b.tagName="LI";var y=(function(m){v(w,m),r(w,null,[{key:"create",value:function(S){var x=S==="ordered"?"OL":"UL",D=d(w.__proto__||Object.getPrototypeOf(w),"create",this).call(this,x);return(S==="checked"||S==="unchecked")&&D.setAttribute("data-checked",S==="checked"),D}},{key:"formats",value:function(S){if(S.tagName==="OL")return"ordered";if(S.tagName==="UL")return S.hasAttribute("data-checked")?S.getAttribute("data-checked")==="true"?"checked":"unchecked":"bullet"}}]);function w(T){g(this,w);var S=$(this,(w.__proto__||Object.getPrototypeOf(w)).call(this,T)),x=function(E){if(E.target.parentNode===T){var C=S.statics.formats(T),O=p.default.find(E.target);C==="checked"?O.format("list","unchecked"):C==="unchecked"&&O.format("list","checked")}};return T.addEventListener("touchstart",x),T.addEventListener("mousedown",x),S}return r(w,[{key:"format",value:function(S,x){this.children.length>0&&this.children.tail.format(S,x)}},{key:"formats",value:function(){return _({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(S,x){if(S instanceof b)d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"insertBefore",this).call(this,S,x);else{var D=x==null?this.length():x.offset(this),E=this.split(D);E.parent.insertBefore(S,E)}}},{key:"optimize",value:function(S){d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"optimize",this).call(this,S);var x=this.next;x!=null&&x.prev===this&&x.statics.blotName===this.statics.blotName&&x.domNode.tagName===this.domNode.tagName&&x.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(x.moveChildren(this),x.remove())}},{key:"replace",value:function(S){if(S.statics.blotName!==this.statics.blotName){var x=p.default.create(this.statics.defaultChild);S.moveChildren(x),this.appendChild(x)}d(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"replace",this).call(this,S)}}]),w})(l.default);y.blotName="list",y.scope=p.default.Scope.BLOCK_BLOT,y.tagName=["OL","UL"],y.defaultChild="list-item",y.allowedChildren=[b],o.ListItem=b,o.default=y}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(56),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}function p(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}function s(l,u){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u&&(typeof u=="object"||typeof u=="function")?u:l}function h(l,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof u);l.prototype=Object.create(u&&u.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),u&&(Object.setPrototypeOf?Object.setPrototypeOf(l,u):l.__proto__=u)}var f=(function(l){h(u,l);function u(){return p(this,u),s(this,(u.__proto__||Object.getPrototypeOf(u)).apply(this,arguments))}return u})(d.default);f.blotName="italic",f.tagName=["EM","I"],o.default=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function _(g,$){for(var v=0;v<$.length;v++){var b=$[v];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,$,v){return $&&_(g.prototype,$),v&&_(g,v),g}})(),d=function _(g,$,v){g===null&&(g=Function.prototype);var b=Object.getOwnPropertyDescriptor(g,$);if(b===void 0){var y=Object.getPrototypeOf(g);return y===null?void 0:_(y,$,v)}else{if("value"in b)return b.value;var m=b.get;return m===void 0?void 0:m.call(v)}},c=a(6),p=s(c);function s(_){return _&&_.__esModule?_:{default:_}}function h(_,g){if(!(_ instanceof g))throw new TypeError("Cannot call a class as a function")}function f(_,g){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:_}function l(_,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);_.prototype=Object.create(g&&g.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(_,g):_.__proto__=g)}var u=(function(_){l(g,_);function g(){return h(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,null,[{key:"create",value:function(v){return v==="super"?document.createElement("sup"):v==="sub"?document.createElement("sub"):d(g.__proto__||Object.getPrototypeOf(g),"create",this).call(this,v)}},{key:"formats",value:function(v){if(v.tagName==="SUB")return"sub";if(v.tagName==="SUP")return"super"}}]),g})(p.default);u.blotName="script",u.tagName=["SUB","SUP"],o.default=u}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}function p(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}function s(l,u){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u&&(typeof u=="object"||typeof u=="function")?u:l}function h(l,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof u);l.prototype=Object.create(u&&u.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),u&&(Object.setPrototypeOf?Object.setPrototypeOf(l,u):l.__proto__=u)}var f=(function(l){h(u,l);function u(){return p(this,u),s(this,(u.__proto__||Object.getPrototypeOf(u)).apply(this,arguments))}return u})(d.default);f.blotName="strike",f.tagName="S",o.default=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),d=c(r);function c(l){return l&&l.__esModule?l:{default:l}}function p(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}function s(l,u){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u&&(typeof u=="object"||typeof u=="function")?u:l}function h(l,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof u);l.prototype=Object.create(u&&u.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),u&&(Object.setPrototypeOf?Object.setPrototypeOf(l,u):l.__proto__=u)}var f=(function(l){h(u,l);function u(){return p(this,u),s(this,(u.__proto__||Object.getPrototypeOf(u)).apply(this,arguments))}return u})(d.default);f.blotName="underline",f.tagName="U",o.default=f}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function $(v,b){for(var y=0;y<b.length;y++){var m=b[y];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(v,m.key,m)}}return function(v,b,y){return b&&$(v.prototype,b),y&&$(v,y),v}})(),d=function $(v,b,y){v===null&&(v=Function.prototype);var m=Object.getOwnPropertyDescriptor(v,b);if(m===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:$(w,b,y)}else{if("value"in m)return m.value;var T=m.get;return T===void 0?void 0:T.call(y)}},c=a(0),p=h(c),s=a(27);function h($){return $&&$.__esModule?$:{default:$}}function f($,v){if(!($ instanceof v))throw new TypeError("Cannot call a class as a function")}function l($,v){if(!$)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:$}function u($,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);$.prototype=Object.create(v&&v.prototype,{constructor:{value:$,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf($,v):$.__proto__=v)}var _=["alt","height","width"],g=(function($){u(v,$);function v(){return f(this,v),l(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"format",value:function(y,m){_.indexOf(y)>-1?m?this.domNode.setAttribute(y,m):this.domNode.removeAttribute(y):d(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"format",this).call(this,y,m)}}],[{key:"create",value:function(y){var m=d(v.__proto__||Object.getPrototypeOf(v),"create",this).call(this,y);return typeof y=="string"&&m.setAttribute("src",this.sanitize(y)),m}},{key:"formats",value:function(y){return _.reduce(function(m,w){return y.hasAttribute(w)&&(m[w]=y.getAttribute(w)),m},{})}},{key:"match",value:function(y){return/\.(jpe?g|gif|png)$/.test(y)||/^data:image\/.+;base64/.test(y)}},{key:"sanitize",value:function(y){return(0,s.sanitize)(y,["http","https","data"])?y:"//:0"}},{key:"value",value:function(y){return y.getAttribute("src")}}]),v})(p.default.Embed);g.blotName="image",g.tagName="IMG",o.default=g}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=(function(){function $(v,b){for(var y=0;y<b.length;y++){var m=b[y];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(v,m.key,m)}}return function(v,b,y){return b&&$(v.prototype,b),y&&$(v,y),v}})(),d=function $(v,b,y){v===null&&(v=Function.prototype);var m=Object.getOwnPropertyDescriptor(v,b);if(m===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:$(w,b,y)}else{if("value"in m)return m.value;var T=m.get;return T===void 0?void 0:T.call(y)}},c=a(4),p=a(27),s=h(p);function h($){return $&&$.__esModule?$:{default:$}}function f($,v){if(!($ instanceof v))throw new TypeError("Cannot call a class as a function")}function l($,v){if(!$)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:$}function u($,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);$.prototype=Object.create(v&&v.prototype,{constructor:{value:$,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf($,v):$.__proto__=v)}var _=["height","width"],g=(function($){u(v,$);function v(){return f(this,v),l(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"format",value:function(y,m){_.indexOf(y)>-1?m?this.domNode.setAttribute(y,m):this.domNode.removeAttribute(y):d(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"format",this).call(this,y,m)}}],[{key:"create",value:function(y){var m=d(v.__proto__||Object.getPrototypeOf(v),"create",this).call(this,y);return m.setAttribute("frameborder","0"),m.setAttribute("allowfullscreen",!0),m.setAttribute("src",this.sanitize(y)),m}},{key:"formats",value:function(y){return _.reduce(function(m,w){return y.hasAttribute(w)&&(m[w]=y.getAttribute(w)),m},{})}},{key:"sanitize",value:function(y){return s.default.sanitize(y)}},{key:"value",value:function(y){return y.getAttribute("src")}}]),v})(c.BlockEmbed);g.blotName="video",g.className="ql-video",g.tagName="IFRAME",o.default=g}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.FormulaBlot=void 0;var r=(function(){function y(m,w){for(var T=0;T<w.length;T++){var S=w[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(m,S.key,S)}}return function(m,w,T){return w&&y(m.prototype,w),T&&y(m,T),m}})(),d=function y(m,w,T){m===null&&(m=Function.prototype);var S=Object.getOwnPropertyDescriptor(m,w);if(S===void 0){var x=Object.getPrototypeOf(m);return x===null?void 0:y(x,w,T)}else{if("value"in S)return S.value;var D=S.get;return D===void 0?void 0:D.call(T)}},c=a(35),p=u(c),s=a(5),h=u(s),f=a(9),l=u(f);function u(y){return y&&y.__esModule?y:{default:y}}function _(y,m){if(!(y instanceof m))throw new TypeError("Cannot call a class as a function")}function g(y,m){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:y}function $(y,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);y.prototype=Object.create(m&&m.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(y,m):y.__proto__=m)}var v=(function(y){$(m,y);function m(){return _(this,m),g(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,null,[{key:"create",value:function(T){var S=d(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,T);return typeof T=="string"&&(window.katex.render(T,S,{throwOnError:!1,errorColor:"#f00"}),S.setAttribute("data-value",T)),S}},{key:"value",value:function(T){return T.getAttribute("data-value")}}]),m})(p.default);v.blotName="formula",v.className="ql-formula",v.tagName="SPAN";var b=(function(y){$(m,y),r(m,null,[{key:"register",value:function(){h.default.register(v,!0)}}]);function m(){_(this,m);var w=g(this,(m.__proto__||Object.getPrototypeOf(m)).call(this));if(window.katex==null)throw new Error("Formula module requires KaTeX.");return w}return m})(l.default);o.FormulaBlot=v,o.default=b}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.CodeToken=o.CodeBlock=void 0;var r=(function(){function T(S,x){for(var D=0;D<x.length;D++){var E=x[D];E.enumerable=E.enumerable||!1,E.configurable=!0,"value"in E&&(E.writable=!0),Object.defineProperty(S,E.key,E)}}return function(S,x,D){return x&&T(S.prototype,x),D&&T(S,D),S}})(),d=function T(S,x,D){S===null&&(S=Function.prototype);var E=Object.getOwnPropertyDescriptor(S,x);if(E===void 0){var C=Object.getPrototypeOf(S);return C===null?void 0:T(C,x,D)}else{if("value"in E)return E.value;var O=E.get;return O===void 0?void 0:O.call(D)}},c=a(0),p=g(c),s=a(5),h=g(s),f=a(9),l=g(f),u=a(13),_=g(u);function g(T){return T&&T.__esModule?T:{default:T}}function $(T,S){if(!(T instanceof S))throw new TypeError("Cannot call a class as a function")}function v(T,S){if(!T)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:T}function b(T,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);T.prototype=Object.create(S&&S.prototype,{constructor:{value:T,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(T,S):T.__proto__=S)}var y=(function(T){b(S,T);function S(){return $(this,S),v(this,(S.__proto__||Object.getPrototypeOf(S)).apply(this,arguments))}return r(S,[{key:"replaceWith",value:function(D){this.domNode.textContent=this.domNode.textContent,this.attach(),d(S.prototype.__proto__||Object.getPrototypeOf(S.prototype),"replaceWith",this).call(this,D)}},{key:"highlight",value:function(D){var E=this.domNode.textContent;this.cachedText!==E&&((E.trim().length>0||this.cachedText==null)&&(this.domNode.innerHTML=D(E),this.domNode.normalize(),this.attach()),this.cachedText=E)}}]),S})(_.default);y.className="ql-syntax";var m=new p.default.Attributor.Class("token","hljs",{scope:p.default.Scope.INLINE}),w=(function(T){b(S,T),r(S,null,[{key:"register",value:function(){h.default.register(m,!0),h.default.register(y,!0)}}]);function S(x,D){$(this,S);var E=v(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,x,D));if(typeof E.options.highlight!="function")throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var C=null;return E.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(C),C=setTimeout(function(){E.highlight(),C=null},E.options.interval)}),E.highlight(),E}return r(S,[{key:"highlight",value:function(){var D=this;if(!this.quill.selection.composing){this.quill.update(h.default.sources.USER);var E=this.quill.getSelection();this.quill.scroll.descendants(y).forEach(function(C){C.highlight(D.options.highlight)}),this.quill.update(h.default.sources.SILENT),E!=null&&this.quill.setSelection(E,h.default.sources.SILENT)}}}]),S})(l.default);w.DEFAULTS={highlight:(function(){return window.hljs==null?null:function(T){var S=window.hljs.highlightAuto(T);return S.value}})(),interval:1e3},o.CodeBlock=y,o.CodeToken=m,o.default=w}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'}),(function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'}),(function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'}),(function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'}),(function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'}),(function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'}),(function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BubbleTooltip=void 0;var r=function S(x,D,E){x===null&&(x=Function.prototype);var C=Object.getOwnPropertyDescriptor(x,D);if(C===void 0){var O=Object.getPrototypeOf(x);return O===null?void 0:S(O,D,E)}else{if("value"in C)return C.value;var N=C.get;return N===void 0?void 0:N.call(E)}},d=(function(){function S(x,D){for(var E=0;E<D.length;E++){var C=D[E];C.enumerable=C.enumerable||!1,C.configurable=!0,"value"in C&&(C.writable=!0),Object.defineProperty(x,C.key,C)}}return function(x,D,E){return D&&S(x.prototype,D),E&&S(x,E),x}})(),c=a(3),p=$(c),s=a(8),h=$(s),f=a(43),l=$(f),u=a(15),_=a(41),g=$(_);function $(S){return S&&S.__esModule?S:{default:S}}function v(S,x){if(!(S instanceof x))throw new TypeError("Cannot call a class as a function")}function b(S,x){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return x&&(typeof x=="object"||typeof x=="function")?x:S}function y(S,x){if(typeof x!="function"&&x!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof x);S.prototype=Object.create(x&&x.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),x&&(Object.setPrototypeOf?Object.setPrototypeOf(S,x):S.__proto__=x)}var m=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],w=(function(S){y(x,S);function x(D,E){v(this,x),E.modules.toolbar!=null&&E.modules.toolbar.container==null&&(E.modules.toolbar.container=m);var C=b(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,D,E));return C.quill.container.classList.add("ql-bubble"),C}return d(x,[{key:"extendToolbar",value:function(E){this.tooltip=new T(this.quill,this.options.bounds),this.tooltip.root.appendChild(E.container),this.buildButtons([].slice.call(E.container.querySelectorAll("button")),g.default),this.buildPickers([].slice.call(E.container.querySelectorAll("select")),g.default)}}]),x})(l.default);w.DEFAULTS=(0,p.default)(!0,{},l.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(x){x?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var T=(function(S){y(x,S);function x(D,E){v(this,x);var C=b(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,D,E));return C.quill.on(h.default.events.EDITOR_CHANGE,function(O,N,P,F){if(O===h.default.events.SELECTION_CHANGE)if(N!=null&&N.length>0&&F===h.default.sources.USER){C.show(),C.root.style.left="0px",C.root.style.width="",C.root.style.width=C.root.offsetWidth+"px";var K=C.quill.getLines(N.index,N.length);if(K.length===1)C.position(C.quill.getBounds(N));else{var W=K[K.length-1],ee=C.quill.getIndex(W),G=Math.min(W.length()-1,N.index+N.length-ee),V=C.quill.getBounds(new u.Range(ee,G));C.position(V)}}else document.activeElement!==C.textbox&&C.quill.hasFocus()&&C.hide()}),C}return d(x,[{key:"listen",value:function(){var E=this;r(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){E.root.classList.remove("ql-editing")}),this.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!E.root.classList.contains("ql-hidden")){var C=E.quill.getSelection();C!=null&&E.position(E.quill.getBounds(C))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(E){var C=r(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"position",this).call(this,E),O=this.root.querySelector(".ql-tooltip-arrow");if(O.style.marginLeft="",C===0)return C;O.style.marginLeft=-1*C-O.offsetWidth/2+"px"}}]),x})(f.BaseTooltip);T.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),o.BubbleTooltip=T,o.default=w}),(function(e,o,a){e.exports=a(63)})]).default})})(_i)),_i.exports}var rp=ip();const Ee=En(rp);var yr,Oa;function op(){if(Oa)return yr;Oa=1;var t=-1,i=1,e=0;function o(y,m,w,T){if(y===m)return y?[[e,y]]:[];if(w!=null){var S=v(y,m,w);if(S)return S}var x=c(y,m),D=y.substring(0,x);y=y.substring(x),m=m.substring(x),x=p(y,m);var E=y.substring(y.length-x);y=y.substring(0,y.length-x),m=m.substring(0,m.length-x);var C=a(y,m);return D&&C.unshift([e,D]),E&&C.push([e,E]),h(C,T),C}function a(y,m){var w;if(!y)return[[i,m]];if(!m)return[[t,y]];var T=y.length>m.length?y:m,S=y.length>m.length?m:y,x=T.indexOf(S);if(x!==-1)return w=[[i,T.substring(0,x)],[e,S],[i,T.substring(x+S.length)]],y.length>m.length&&(w[0][0]=w[2][0]=t),w;if(S.length===1)return[[t,y],[i,m]];var D=s(y,m);if(D){var E=D[0],C=D[1],O=D[2],N=D[3],P=D[4],F=o(E,O),K=o(C,N);return F.concat([[e,P]],K)}return r(y,m)}function r(y,m){for(var w=y.length,T=m.length,S=Math.ceil((w+T)/2),x=S,D=2*S,E=new Array(D),C=new Array(D),O=0;O<D;O++)E[O]=-1,C[O]=-1;E[x+1]=0,C[x+1]=0;for(var N=w-T,P=N%2!==0,F=0,K=0,W=0,ee=0,G=0;G<S;G++){for(var V=-G+F;V<=G-K;V+=2){var M=x+V,A;V===-G||V!==G&&E[M-1]<E[M+1]?A=E[M+1]:A=E[M-1]+1;for(var B=A-V;A<w&&B<T&&y.charAt(A)===m.charAt(B);)A++,B++;if(E[M]=A,A>w)K+=2;else if(B>T)F+=2;else if(P){var H=x+N-V;if(H>=0&&H<D&&C[H]!==-1){var q=w-C[H];if(A>=q)return d(y,m,A,B)}}}for(var L=-G+W;L<=G-ee;L+=2){var H=x+L,q;L===-G||L!==G&&C[H-1]<C[H+1]?q=C[H+1]:q=C[H-1]+1;for(var U=q-L;q<w&&U<T&&y.charAt(w-q-1)===m.charAt(T-U-1);)q++,U++;if(C[H]=q,q>w)ee+=2;else if(U>T)W+=2;else if(!P){var M=x+N-L;if(M>=0&&M<D&&E[M]!==-1){var A=E[M],B=x+A-M;if(q=w-q,A>=q)return d(y,m,A,B)}}}}return[[t,y],[i,m]]}function d(y,m,w,T){var S=y.substring(0,w),x=m.substring(0,T),D=y.substring(w),E=m.substring(T),C=o(S,x),O=o(D,E);return C.concat(O)}function c(y,m){if(!y||!m||y.charAt(0)!==m.charAt(0))return 0;for(var w=0,T=Math.min(y.length,m.length),S=T,x=0;w<S;)y.substring(x,S)==m.substring(x,S)?(w=S,x=w):T=S,S=Math.floor((T-w)/2+w);return f(y.charCodeAt(S-1))&&S--,S}function p(y,m){if(!y||!m||y.slice(-1)!==m.slice(-1))return 0;for(var w=0,T=Math.min(y.length,m.length),S=T,x=0;w<S;)y.substring(y.length-S,y.length-x)==m.substring(m.length-S,m.length-x)?(w=S,x=w):T=S,S=Math.floor((T-w)/2+w);return l(y.charCodeAt(y.length-S))&&S--,S}function s(y,m){var w=y.length>m.length?y:m,T=y.length>m.length?m:y;if(w.length<4||T.length*2<w.length)return null;function S(K,W,ee){for(var G=K.substring(ee,ee+Math.floor(K.length/4)),V=-1,M="",A,B,H,q;(V=W.indexOf(G,V+1))!==-1;){var L=c(K.substring(ee),W.substring(V)),U=p(K.substring(0,ee),W.substring(0,V));M.length<U+L&&(M=W.substring(V-U,V)+W.substring(V,V+L),A=K.substring(0,ee-U),B=K.substring(ee+L),H=W.substring(0,V-U),q=W.substring(V+L))}return M.length*2>=K.length?[A,B,H,q,M]:null}var x=S(w,T,Math.ceil(w.length/4)),D=S(w,T,Math.ceil(w.length/2)),E;if(!x&&!D)return null;D?x?E=x[4].length>D[4].length?x:D:E=D:E=x;var C,O,N,P;y.length>m.length?(C=E[0],O=E[1],N=E[2],P=E[3]):(N=E[0],P=E[1],C=E[2],O=E[3]);var F=E[4];return[C,O,N,P,F]}function h(y,m){y.push([e,""]);for(var w=0,T=0,S=0,x="",D="",E;w<y.length;){if(w<y.length-1&&!y[w][1]){y.splice(w,1);continue}switch(y[w][0]){case i:S++,D+=y[w][1],w++;break;case t:T++,x+=y[w][1],w++;break;case e:var C=w-S-T-1;if(m){if(C>=0&&_(y[C][1])){var O=y[C][1].slice(-1);if(y[C][1]=y[C][1].slice(0,-1),x=O+x,D=O+D,!y[C][1]){y.splice(C,1),w--;var N=C-1;y[N]&&y[N][0]===i&&(S++,D=y[N][1]+D,N--),y[N]&&y[N][0]===t&&(T++,x=y[N][1]+x,N--),C=N}}if(u(y[w][1])){var O=y[w][1].charAt(0);y[w][1]=y[w][1].slice(1),x+=O,D+=O}}if(w<y.length-1&&!y[w][1]){y.splice(w,1);break}if(x.length>0||D.length>0){x.length>0&&D.length>0&&(E=c(D,x),E!==0&&(C>=0?y[C][1]+=D.substring(0,E):(y.splice(0,0,[e,D.substring(0,E)]),w++),D=D.substring(E),x=x.substring(E)),E=p(D,x),E!==0&&(y[w][1]=D.substring(D.length-E)+y[w][1],D=D.substring(0,D.length-E),x=x.substring(0,x.length-E)));var P=S+T;x.length===0&&D.length===0?(y.splice(w-P,P),w=w-P):x.length===0?(y.splice(w-P,P,[i,D]),w=w-P+1):D.length===0?(y.splice(w-P,P,[t,x]),w=w-P+1):(y.splice(w-P,P,[t,x],[i,D]),w=w-P+2)}w!==0&&y[w-1][0]===e?(y[w-1][1]+=y[w][1],y.splice(w,1)):w++,S=0,T=0,x="",D="";break}}y[y.length-1][1]===""&&y.pop();var F=!1;for(w=1;w<y.length-1;)y[w-1][0]===e&&y[w+1][0]===e&&(y[w][1].substring(y[w][1].length-y[w-1][1].length)===y[w-1][1]?(y[w][1]=y[w-1][1]+y[w][1].substring(0,y[w][1].length-y[w-1][1].length),y[w+1][1]=y[w-1][1]+y[w+1][1],y.splice(w-1,1),F=!0):y[w][1].substring(0,y[w+1][1].length)==y[w+1][1]&&(y[w-1][1]+=y[w+1][1],y[w][1]=y[w][1].substring(y[w+1][1].length)+y[w+1][1],y.splice(w+1,1),F=!0)),w++;F&&h(y,m)}function f(y){return y>=55296&&y<=56319}function l(y){return y>=56320&&y<=57343}function u(y){return l(y.charCodeAt(0))}function _(y){return f(y.charCodeAt(y.length-1))}function g(y){for(var m=[],w=0;w<y.length;w++)y[w][1].length>0&&m.push(y[w]);return m}function $(y,m,w,T){return _(y)||u(T)?null:g([[e,y],[t,m],[i,w],[e,T]])}function v(y,m,w){var T=typeof w=="number"?{index:w,length:0}:w.oldRange,S=typeof w=="number"?null:w.newRange,x=y.length,D=m.length;if(T.length===0&&(S===null||S.length===0)){var E=T.index,C=y.slice(0,E),O=y.slice(E),N=S?S.index:null;e:{var P=E+D-x;if(N!==null&&N!==P||P<0||P>D)break e;var F=m.slice(0,P),K=m.slice(P);if(K!==O)break e;var W=Math.min(E,P),ee=C.slice(0,W),G=F.slice(0,W);if(ee!==G)break e;var V=C.slice(W),M=F.slice(W);return $(ee,V,M,O)}e:{if(N!==null&&N!==E)break e;var A=E,F=m.slice(0,A),K=m.slice(A);if(F!==C)break e;var B=Math.min(x-A,D-A),H=O.slice(O.length-B),q=K.slice(K.length-B);if(H!==q)break e;var V=O.slice(0,O.length-B),M=K.slice(0,K.length-B);return $(C,V,M,H)}}if(T.length>0&&S&&S.length===0)e:{var ee=y.slice(0,T.index),H=y.slice(T.index+T.length),W=ee.length,B=H.length;if(D<W+B)break e;var G=m.slice(0,W),q=m.slice(D-B);if(ee!==G||H!==q)break e;var V=y.slice(W,x-B),M=m.slice(W,D-B);return $(ee,V,M,H)}return null}function b(y,m,w){return o(y,m,w,!0)}return b.INSERT=i,b.DELETE=t,b.EQUAL=e,yr=b,yr}var Bn={exports:{}};Bn.exports;var Ea;function Sa(){return Ea||(Ea=1,(function(t,i){var e=200,o="__lodash_hash_undefined__",a=9007199254740991,r="[object Arguments]",d="[object Array]",c="[object Boolean]",p="[object Date]",s="[object Error]",h="[object Function]",f="[object GeneratorFunction]",l="[object Map]",u="[object Number]",_="[object Object]",g="[object Promise]",$="[object RegExp]",v="[object Set]",b="[object String]",y="[object Symbol]",m="[object WeakMap]",w="[object ArrayBuffer]",T="[object DataView]",S="[object Float32Array]",x="[object Float64Array]",D="[object Int8Array]",E="[object Int16Array]",C="[object Int32Array]",O="[object Uint8Array]",N="[object Uint8ClampedArray]",P="[object Uint16Array]",F="[object Uint32Array]",K=/[\\^$.*+?()[\]{}|]/g,W=/\w*$/,ee=/^\[object .+?Constructor\]$/,G=/^(?:0|[1-9]\d*)$/,V={};V[r]=V[d]=V[w]=V[T]=V[c]=V[p]=V[S]=V[x]=V[D]=V[E]=V[C]=V[l]=V[u]=V[_]=V[$]=V[v]=V[b]=V[y]=V[O]=V[N]=V[P]=V[F]=!0,V[s]=V[h]=V[m]=!1;var M=typeof Ft=="object"&&Ft&&Ft.Object===Object&&Ft,A=typeof self=="object"&&self&&self.Object===Object&&self,B=M||A||Function("return this")(),H=i&&!i.nodeType&&i,q=H&&!0&&t&&!t.nodeType&&t,L=q&&q.exports===H;function U(k,I){return k.set(I[0],I[1]),k}function Z(k,I){return k.add(I),k}function J(k,I){for(var z=-1,te=k?k.length:0;++z<te&&I(k[z],z,k)!==!1;);return k}function ie(k,I){for(var z=-1,te=I.length,ke=k.length;++z<te;)k[ke+z]=I[z];return k}function ce(k,I,z,te){for(var ke=-1,pe=k?k.length:0;++ke<pe;)z=I(z,k[ke],ke,k);return z}function he(k,I){for(var z=-1,te=Array(k);++z<k;)te[z]=I(z);return te}function ve(k,I){return k==null?void 0:k[I]}function we(k){var I=!1;if(k!=null&&typeof k.toString!="function")try{I=!!(k+"")}catch{}return I}function Oe(k){var I=-1,z=Array(k.size);return k.forEach(function(te,ke){z[++I]=[ke,te]}),z}function Re(k,I){return function(z){return k(I(z))}}function Pe(k){var I=-1,z=Array(k.size);return k.forEach(function(te){z[++I]=te}),z}var Q=Array.prototype,ne=Function.prototype,ae=Object.prototype,le=B["__core-js_shared__"],re=(function(){var k=/[^.]+$/.exec(le&&le.keys&&le.keys.IE_PROTO||"");return k?"Symbol(src)_1."+k:""})(),$e=ne.toString,me=ae.hasOwnProperty,_e=ae.toString,He=RegExp("^"+$e.call(me).replace(K,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),je=L?B.Buffer:void 0,Ne=B.Symbol,gt=B.Uint8Array,Se=Re(Object.getPrototypeOf,Object),nt=Object.create,Gt=ae.propertyIsEnumerable,Ln=Q.splice,Wt=Object.getOwnPropertySymbols,Me=je?je.isBuffer:void 0,qt=Re(Object.keys,Object),yt=pt(B,"DataView"),At=pt(B,"Map"),We=pt(B,"Promise"),bt=pt(B,"Set"),it=pt(B,"WeakMap"),Dt=pt(Object,"create"),Yt=rt(yt),R=rt(At),j=rt(We),Y=rt(bt),X=rt(it),oe=Ne?Ne.prototype:void 0,se=oe?oe.valueOf:void 0;function ye(k){var I=-1,z=k?k.length:0;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function ue(){this.__data__=Dt?Dt(null):{}}function Ce(k){return this.has(k)&&delete this.__data__[k]}function de(k){var I=this.__data__;if(Dt){var z=I[k];return z===o?void 0:z}return me.call(I,k)?I[k]:void 0}function ge(k){var I=this.__data__;return Dt?I[k]!==void 0:me.call(I,k)}function xe(k,I){var z=this.__data__;return z[k]=Dt&&I===void 0?o:I,this}ye.prototype.clear=ue,ye.prototype.delete=Ce,ye.prototype.get=de,ye.prototype.has=ge,ye.prototype.set=xe;function Ie(k){var I=-1,z=k?k.length:0;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function Ue(){this.__data__=[]}function Mt(k){var I=this.__data__,z=hn(I,k);if(z<0)return!1;var te=I.length-1;return z==te?I.pop():Ln.call(I,z,1),!0}function vt(k){var I=this.__data__,z=hn(I,k);return z<0?void 0:I[z][1]}function Rn(k){return hn(this.__data__,k)>-1}function Zt(k,I){var z=this.__data__,te=hn(z,k);return te<0?z.push([k,I]):z[te][1]=I,this}Ie.prototype.clear=Ue,Ie.prototype.delete=Mt,Ie.prototype.get=vt,Ie.prototype.has=Rn,Ie.prototype.set=Zt;function ze(k){var I=-1,z=k?k.length:0;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function Vn(){this.__data__={hash:new ye,map:new(At||Ie),string:new ye}}function jn(k){return Xt(this,k).delete(k)}function Fn(k){return Xt(this,k).get(k)}function qn(k){return Xt(this,k).has(k)}function Hn(k,I){return Xt(this,k).set(k,I),this}ze.prototype.clear=Vn,ze.prototype.delete=jn,ze.prototype.get=Fn,ze.prototype.has=qn,ze.prototype.set=Hn;function Ye(k){this.__data__=new Ie(k)}function zn(){this.__data__=new Ie}function vr(k){return this.__data__.delete(k)}function _r(k){return this.__data__.get(k)}function $r(k){return this.__data__.has(k)}function wr(k,I){var z=this.__data__;if(z instanceof Ie){var te=z.__data__;if(!At||te.length<e-1)return te.push([k,I]),this;z=this.__data__=new ze(te)}return z.set(k,I),this}Ye.prototype.clear=zn,Ye.prototype.delete=vr,Ye.prototype.get=_r,Ye.prototype.has=$r,Ye.prototype.set=wr;function fn(k,I){var z=Wn(k)||mn(k)?he(k.length,String):[],te=z.length,ke=!!te;for(var pe in k)me.call(k,pe)&&!(ke&&(pe=="length"||Pr(pe,te)))&&z.push(pe);return z}function ki(k,I,z){var te=k[I];(!(me.call(k,I)&&xi(te,z))||z===void 0&&!(I in k))&&(k[I]=z)}function hn(k,I){for(var z=k.length;z--;)if(xi(k[z][0],I))return z;return-1}function _t(k,I){return k&&Gn(I,Zn(I),k)}function Un(k,I,z,te,ke,pe,Ae){var Te;if(te&&(Te=pe?te(k,ke,pe,Ae):te(k)),Te!==void 0)return Te;if(!wt(k))return k;var Fe=Wn(k);if(Fe){if(Te=Br(k),!I)return Ar(k,Te)}else{var Be=It(k),Ze=Be==h||Be==f;if(Ti(k))return pn(k,I);if(Be==_||Be==r||Ze&&!pe){if(we(k))return pe?k:{};if(Te=$t(Ze?{}:k),!I)return Dr(k,_t(Te,k))}else{if(!V[Be])return pe?k:{};Te=Ir(k,Be,Un,I)}}Ae||(Ae=new Ye);var at=Ae.get(k);if(at)return at;if(Ae.set(k,Te),!Fe)var qe=z?Mr(k):Zn(k);return J(qe||k,function(Je,Ke){qe&&(Ke=Je,Je=k[Ke]),ki(Te,Ke,Un(Je,I,z,te,Ke,k,Ae))}),Te}function kr(k){return wt(k)?nt(k):{}}function Cr(k,I,z){var te=I(k);return Wn(k)?te:ie(te,z(k))}function Or(k){return _e.call(k)}function Er(k){if(!wt(k)||Rr(k))return!1;var I=Yn(k)||we(k)?He:ee;return I.test(rt(k))}function Sr(k){if(!Ei(k))return qt(k);var I=[];for(var z in Object(k))me.call(k,z)&&z!="constructor"&&I.push(z);return I}function pn(k,I){if(I)return k.slice();var z=new k.constructor(k.length);return k.copy(z),z}function Kn(k){var I=new k.constructor(k.byteLength);return new gt(I).set(new gt(k)),I}function Jt(k,I){var z=I?Kn(k.buffer):k.buffer;return new k.constructor(z,k.byteOffset,k.byteLength)}function Ci(k,I,z){var te=I?z(Oe(k),!0):Oe(k);return ce(te,U,new k.constructor)}function Oi(k){var I=new k.constructor(k.source,W.exec(k));return I.lastIndex=k.lastIndex,I}function xr(k,I,z){var te=I?z(Pe(k),!0):Pe(k);return ce(te,Z,new k.constructor)}function Tr(k){return se?Object(se.call(k)):{}}function Nr(k,I){var z=I?Kn(k.buffer):k.buffer;return new k.constructor(z,k.byteOffset,k.length)}function Ar(k,I){var z=-1,te=k.length;for(I||(I=Array(te));++z<te;)I[z]=k[z];return I}function Gn(k,I,z,te){z||(z={});for(var ke=-1,pe=I.length;++ke<pe;){var Ae=I[ke],Te=void 0;ki(z,Ae,Te===void 0?k[Ae]:Te)}return z}function Dr(k,I){return Gn(k,Bt(k),I)}function Mr(k){return Cr(k,Zn,Bt)}function Xt(k,I){var z=k.__data__;return Lr(I)?z[typeof I=="string"?"string":"hash"]:z.map}function pt(k,I){var z=ve(k,I);return Er(z)?z:void 0}var Bt=Wt?Re(Wt,Object):jr,It=Or;(yt&&It(new yt(new ArrayBuffer(1)))!=T||At&&It(new At)!=l||We&&It(We.resolve())!=g||bt&&It(new bt)!=v||it&&It(new it)!=m)&&(It=function(k){var I=_e.call(k),z=I==_?k.constructor:void 0,te=z?rt(z):void 0;if(te)switch(te){case Yt:return T;case R:return l;case j:return g;case Y:return v;case X:return m}return I});function Br(k){var I=k.length,z=k.constructor(I);return I&&typeof k[0]=="string"&&me.call(k,"index")&&(z.index=k.index,z.input=k.input),z}function $t(k){return typeof k.constructor=="function"&&!Ei(k)?kr(Se(k)):{}}function Ir(k,I,z,te){var ke=k.constructor;switch(I){case w:return Kn(k);case c:case p:return new ke(+k);case T:return Jt(k,te);case S:case x:case D:case E:case C:case O:case N:case P:case F:return Nr(k,te);case l:return Ci(k,te,z);case u:case b:return new ke(k);case $:return Oi(k);case v:return xr(k,te,z);case y:return Tr(k)}}function Pr(k,I){return I=I??a,!!I&&(typeof k=="number"||G.test(k))&&k>-1&&k%1==0&&k<I}function Lr(k){var I=typeof k;return I=="string"||I=="number"||I=="symbol"||I=="boolean"?k!=="__proto__":k===null}function Rr(k){return!!re&&re in k}function Ei(k){var I=k&&k.constructor,z=typeof I=="function"&&I.prototype||ae;return k===z}function rt(k){if(k!=null){try{return $e.call(k)}catch{}try{return k+""}catch{}}return""}function Si(k){return Un(k,!0,!0)}function xi(k,I){return k===I||k!==k&&I!==I}function mn(k){return Vr(k)&&me.call(k,"callee")&&(!Gt.call(k,"callee")||_e.call(k)==r)}var Wn=Array.isArray;function gn(k){return k!=null&&Ni(k.length)&&!Yn(k)}function Vr(k){return Ai(k)&&gn(k)}var Ti=Me||Fr;function Yn(k){var I=wt(k)?_e.call(k):"";return I==h||I==f}function Ni(k){return typeof k=="number"&&k>-1&&k%1==0&&k<=a}function wt(k){var I=typeof k;return!!k&&(I=="object"||I=="function")}function Ai(k){return!!k&&typeof k=="object"}function Zn(k){return gn(k)?fn(k):Sr(k)}function jr(){return[]}function Fr(){return!1}t.exports=Si})(Bn,Bn.exports)),Bn.exports}var In={exports:{}};In.exports;var xa;function Ta(){return xa||(xa=1,(function(t,i){var e=200,o="__lodash_hash_undefined__",a=1,r=2,d=9007199254740991,c="[object Arguments]",p="[object Array]",s="[object AsyncFunction]",h="[object Boolean]",f="[object Date]",l="[object Error]",u="[object Function]",_="[object GeneratorFunction]",g="[object Map]",$="[object Number]",v="[object Null]",b="[object Object]",y="[object Promise]",m="[object Proxy]",w="[object RegExp]",T="[object Set]",S="[object String]",x="[object Symbol]",D="[object Undefined]",E="[object WeakMap]",C="[object ArrayBuffer]",O="[object DataView]",N="[object Float32Array]",P="[object Float64Array]",F="[object Int8Array]",K="[object Int16Array]",W="[object Int32Array]",ee="[object Uint8Array]",G="[object Uint8ClampedArray]",V="[object Uint16Array]",M="[object Uint32Array]",A=/[\\^$.*+?()[\]{}|]/g,B=/^\[object .+?Constructor\]$/,H=/^(?:0|[1-9]\d*)$/,q={};q[N]=q[P]=q[F]=q[K]=q[W]=q[ee]=q[G]=q[V]=q[M]=!0,q[c]=q[p]=q[C]=q[h]=q[O]=q[f]=q[l]=q[u]=q[g]=q[$]=q[b]=q[w]=q[T]=q[S]=q[E]=!1;var L=typeof Ft=="object"&&Ft&&Ft.Object===Object&&Ft,U=typeof self=="object"&&self&&self.Object===Object&&self,Z=L||U||Function("return this")(),J=i&&!i.nodeType&&i,ie=J&&!0&&t&&!t.nodeType&&t,ce=ie&&ie.exports===J,he=ce&&L.process,ve=(function(){try{return he&&he.binding&&he.binding("util")}catch{}})(),we=ve&&ve.isTypedArray;function Oe(k,I){for(var z=-1,te=k==null?0:k.length,ke=0,pe=[];++z<te;){var Ae=k[z];I(Ae,z,k)&&(pe[ke++]=Ae)}return pe}function Re(k,I){for(var z=-1,te=I.length,ke=k.length;++z<te;)k[ke+z]=I[z];return k}function Pe(k,I){for(var z=-1,te=k==null?0:k.length;++z<te;)if(I(k[z],z,k))return!0;return!1}function Q(k,I){for(var z=-1,te=Array(k);++z<k;)te[z]=I(z);return te}function ne(k){return function(I){return k(I)}}function ae(k,I){return k.has(I)}function le(k,I){return k==null?void 0:k[I]}function re(k){var I=-1,z=Array(k.size);return k.forEach(function(te,ke){z[++I]=[ke,te]}),z}function $e(k,I){return function(z){return k(I(z))}}function me(k){var I=-1,z=Array(k.size);return k.forEach(function(te){z[++I]=te}),z}var _e=Array.prototype,He=Function.prototype,je=Object.prototype,Ne=Z["__core-js_shared__"],gt=He.toString,Se=je.hasOwnProperty,nt=(function(){var k=/[^.]+$/.exec(Ne&&Ne.keys&&Ne.keys.IE_PROTO||"");return k?"Symbol(src)_1."+k:""})(),Gt=je.toString,Ln=RegExp("^"+gt.call(Se).replace(A,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Wt=ce?Z.Buffer:void 0,Me=Z.Symbol,qt=Z.Uint8Array,yt=je.propertyIsEnumerable,At=_e.splice,We=Me?Me.toStringTag:void 0,bt=Object.getOwnPropertySymbols,it=Wt?Wt.isBuffer:void 0,Dt=$e(Object.keys,Object),Yt=Bt(Z,"DataView"),R=Bt(Z,"Map"),j=Bt(Z,"Promise"),Y=Bt(Z,"Set"),X=Bt(Z,"WeakMap"),oe=Bt(Object,"create"),se=rt(Yt),ye=rt(R),ue=rt(j),Ce=rt(Y),de=rt(X),ge=Me?Me.prototype:void 0,xe=ge?ge.valueOf:void 0;function Ie(k){var I=-1,z=k==null?0:k.length;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function Ue(){this.__data__=oe?oe(null):{},this.size=0}function Mt(k){var I=this.has(k)&&delete this.__data__[k];return this.size-=I?1:0,I}function vt(k){var I=this.__data__;if(oe){var z=I[k];return z===o?void 0:z}return Se.call(I,k)?I[k]:void 0}function Rn(k){var I=this.__data__;return oe?I[k]!==void 0:Se.call(I,k)}function Zt(k,I){var z=this.__data__;return this.size+=this.has(k)?0:1,z[k]=oe&&I===void 0?o:I,this}Ie.prototype.clear=Ue,Ie.prototype.delete=Mt,Ie.prototype.get=vt,Ie.prototype.has=Rn,Ie.prototype.set=Zt;function ze(k){var I=-1,z=k==null?0:k.length;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function Vn(){this.__data__=[],this.size=0}function jn(k){var I=this.__data__,z=pn(I,k);if(z<0)return!1;var te=I.length-1;return z==te?I.pop():At.call(I,z,1),--this.size,!0}function Fn(k){var I=this.__data__,z=pn(I,k);return z<0?void 0:I[z][1]}function qn(k){return pn(this.__data__,k)>-1}function Hn(k,I){var z=this.__data__,te=pn(z,k);return te<0?(++this.size,z.push([k,I])):z[te][1]=I,this}ze.prototype.clear=Vn,ze.prototype.delete=jn,ze.prototype.get=Fn,ze.prototype.has=qn,ze.prototype.set=Hn;function Ye(k){var I=-1,z=k==null?0:k.length;for(this.clear();++I<z;){var te=k[I];this.set(te[0],te[1])}}function zn(){this.size=0,this.__data__={hash:new Ie,map:new(R||ze),string:new Ie}}function vr(k){var I=pt(this,k).delete(k);return this.size-=I?1:0,I}function _r(k){return pt(this,k).get(k)}function $r(k){return pt(this,k).has(k)}function wr(k,I){var z=pt(this,k),te=z.size;return z.set(k,I),this.size+=z.size==te?0:1,this}Ye.prototype.clear=zn,Ye.prototype.delete=vr,Ye.prototype.get=_r,Ye.prototype.has=$r,Ye.prototype.set=wr;function fn(k){var I=-1,z=k==null?0:k.length;for(this.__data__=new Ye;++I<z;)this.add(k[I])}function ki(k){return this.__data__.set(k,o),this}function hn(k){return this.__data__.has(k)}fn.prototype.add=fn.prototype.push=ki,fn.prototype.has=hn;function _t(k){var I=this.__data__=new ze(k);this.size=I.size}function Un(){this.__data__=new ze,this.size=0}function kr(k){var I=this.__data__,z=I.delete(k);return this.size=I.size,z}function Cr(k){return this.__data__.get(k)}function Or(k){return this.__data__.has(k)}function Er(k,I){var z=this.__data__;if(z instanceof ze){var te=z.__data__;if(!R||te.length<e-1)return te.push([k,I]),this.size=++z.size,this;z=this.__data__=new Ye(te)}return z.set(k,I),this.size=z.size,this}_t.prototype.clear=Un,_t.prototype.delete=kr,_t.prototype.get=Cr,_t.prototype.has=Or,_t.prototype.set=Er;function Sr(k,I){var z=mn(k),te=!z&&xi(k),ke=!z&&!te&&gn(k),pe=!z&&!te&&!ke&&Ai(k),Ae=z||te||ke||pe,Te=Ae?Q(k.length,String):[],Fe=Te.length;for(var Be in k)Se.call(k,Be)&&!(Ae&&(Be=="length"||ke&&(Be=="offset"||Be=="parent")||pe&&(Be=="buffer"||Be=="byteLength"||Be=="byteOffset")||Ir(Be,Fe)))&&Te.push(Be);return Te}function pn(k,I){for(var z=k.length;z--;)if(Si(k[z][0],I))return z;return-1}function Kn(k,I,z){var te=I(k);return mn(k)?te:Re(te,z(k))}function Jt(k){return k==null?k===void 0?D:v:We&&We in Object(k)?It(k):Ei(k)}function Ci(k){return wt(k)&&Jt(k)==c}function Oi(k,I,z,te,ke){return k===I?!0:k==null||I==null||!wt(k)&&!wt(I)?k!==k&&I!==I:xr(k,I,z,te,Oi,ke)}function xr(k,I,z,te,ke,pe){var Ae=mn(k),Te=mn(I),Fe=Ae?p:$t(k),Be=Te?p:$t(I);Fe=Fe==c?b:Fe,Be=Be==c?b:Be;var Ze=Fe==b,at=Be==b,qe=Fe==Be;if(qe&&gn(k)){if(!gn(I))return!1;Ae=!0,Ze=!1}if(qe&&!Ze)return pe||(pe=new _t),Ae||Ai(k)?Gn(k,I,z,te,ke,pe):Dr(k,I,Fe,z,te,ke,pe);if(!(z&a)){var Je=Ze&&Se.call(k,"__wrapped__"),Ke=at&&Se.call(I,"__wrapped__");if(Je||Ke){var Ht=Je?k.value():k,Pt=Ke?I.value():I;return pe||(pe=new _t),ke(Ht,Pt,z,te,pe)}}return qe?(pe||(pe=new _t),Mr(k,I,z,te,ke,pe)):!1}function Tr(k){if(!Ni(k)||Lr(k))return!1;var I=Ti(k)?Ln:B;return I.test(rt(k))}function Nr(k){return wt(k)&&Yn(k.length)&&!!q[Jt(k)]}function Ar(k){if(!Rr(k))return Dt(k);var I=[];for(var z in Object(k))Se.call(k,z)&&z!="constructor"&&I.push(z);return I}function Gn(k,I,z,te,ke,pe){var Ae=z&a,Te=k.length,Fe=I.length;if(Te!=Fe&&!(Ae&&Fe>Te))return!1;var Be=pe.get(k);if(Be&&pe.get(I))return Be==I;var Ze=-1,at=!0,qe=z&r?new fn:void 0;for(pe.set(k,I),pe.set(I,k);++Ze<Te;){var Je=k[Ze],Ke=I[Ze];if(te)var Ht=Ae?te(Ke,Je,Ze,I,k,pe):te(Je,Ke,Ze,k,I,pe);if(Ht!==void 0){if(Ht)continue;at=!1;break}if(qe){if(!Pe(I,function(Pt,Qt){if(!ae(qe,Qt)&&(Je===Pt||ke(Je,Pt,z,te,pe)))return qe.push(Qt)})){at=!1;break}}else if(!(Je===Ke||ke(Je,Ke,z,te,pe))){at=!1;break}}return pe.delete(k),pe.delete(I),at}function Dr(k,I,z,te,ke,pe,Ae){switch(z){case O:if(k.byteLength!=I.byteLength||k.byteOffset!=I.byteOffset)return!1;k=k.buffer,I=I.buffer;case C:return!(k.byteLength!=I.byteLength||!pe(new qt(k),new qt(I)));case h:case f:case $:return Si(+k,+I);case l:return k.name==I.name&&k.message==I.message;case w:case S:return k==I+"";case g:var Te=re;case T:var Fe=te&a;if(Te||(Te=me),k.size!=I.size&&!Fe)return!1;var Be=Ae.get(k);if(Be)return Be==I;te|=r,Ae.set(k,I);var Ze=Gn(Te(k),Te(I),te,ke,pe,Ae);return Ae.delete(k),Ze;case x:if(xe)return xe.call(k)==xe.call(I)}return!1}function Mr(k,I,z,te,ke,pe){var Ae=z&a,Te=Xt(k),Fe=Te.length,Be=Xt(I),Ze=Be.length;if(Fe!=Ze&&!Ae)return!1;for(var at=Fe;at--;){var qe=Te[at];if(!(Ae?qe in I:Se.call(I,qe)))return!1}var Je=pe.get(k);if(Je&&pe.get(I))return Je==I;var Ke=!0;pe.set(k,I),pe.set(I,k);for(var Ht=Ae;++at<Fe;){qe=Te[at];var Pt=k[qe],Qt=I[qe];if(te)var qa=Ae?te(Qt,Pt,qe,I,k,pe):te(Pt,Qt,qe,k,I,pe);if(!(qa===void 0?Pt===Qt||ke(Pt,Qt,z,te,pe):qa)){Ke=!1;break}Ht||(Ht=qe=="constructor")}if(Ke&&!Ht){var Di=k.constructor,Mi=I.constructor;Di!=Mi&&"constructor"in k&&"constructor"in I&&!(typeof Di=="function"&&Di instanceof Di&&typeof Mi=="function"&&Mi instanceof Mi)&&(Ke=!1)}return pe.delete(k),pe.delete(I),Ke}function Xt(k){return Kn(k,Zn,Br)}function pt(k,I){var z=k.__data__;return Pr(I)?z[typeof I=="string"?"string":"hash"]:z.map}function Bt(k,I){var z=le(k,I);return Tr(z)?z:void 0}function It(k){var I=Se.call(k,We),z=k[We];try{k[We]=void 0;var te=!0}catch{}var ke=Gt.call(k);return te&&(I?k[We]=z:delete k[We]),ke}var Br=bt?function(k){return k==null?[]:(k=Object(k),Oe(bt(k),function(I){return yt.call(k,I)}))}:jr,$t=Jt;(Yt&&$t(new Yt(new ArrayBuffer(1)))!=O||R&&$t(new R)!=g||j&&$t(j.resolve())!=y||Y&&$t(new Y)!=T||X&&$t(new X)!=E)&&($t=function(k){var I=Jt(k),z=I==b?k.constructor:void 0,te=z?rt(z):"";if(te)switch(te){case se:return O;case ye:return g;case ue:return y;case Ce:return T;case de:return E}return I});function Ir(k,I){return I=I??d,!!I&&(typeof k=="number"||H.test(k))&&k>-1&&k%1==0&&k<I}function Pr(k){var I=typeof k;return I=="string"||I=="number"||I=="symbol"||I=="boolean"?k!=="__proto__":k===null}function Lr(k){return!!nt&&nt in k}function Rr(k){var I=k&&k.constructor,z=typeof I=="function"&&I.prototype||je;return k===z}function Ei(k){return Gt.call(k)}function rt(k){if(k!=null){try{return gt.call(k)}catch{}try{return k+""}catch{}}return""}function Si(k,I){return k===I||k!==k&&I!==I}var xi=Ci((function(){return arguments})())?Ci:function(k){return wt(k)&&Se.call(k,"callee")&&!yt.call(k,"callee")},mn=Array.isArray;function Wn(k){return k!=null&&Yn(k.length)&&!Ti(k)}var gn=it||Fr;function Vr(k,I){return Oi(k,I)}function Ti(k){if(!Ni(k))return!1;var I=Jt(k);return I==u||I==_||I==s||I==m}function Yn(k){return typeof k=="number"&&k>-1&&k%1==0&&k<=d}function Ni(k){var I=typeof k;return k!=null&&(I=="object"||I=="function")}function wt(k){return k!=null&&typeof k=="object"}var Ai=we?ne(we):Nr;function Zn(k){return Wn(k)?Sr(k):Ar(k)}function jr(){return[]}function Fr(){return!1}t.exports=Vr})(In,In.exports)),In.exports}var cn={},Na;function ap(){if(Na)return cn;Na=1;var t=cn&&cn.__importDefault||function(a){return a&&a.__esModule?a:{default:a}};Object.defineProperty(cn,"__esModule",{value:!0});var i=t(Sa()),e=t(Ta()),o;return(function(a){function r(s,h,f){s===void 0&&(s={}),h===void 0&&(h={}),typeof s!="object"&&(s={}),typeof h!="object"&&(h={});var l=i.default(h);f||(l=Object.keys(l).reduce(function(_,g){return l[g]!=null&&(_[g]=l[g]),_},{}));for(var u in s)s[u]!==void 0&&h[u]===void 0&&(l[u]=s[u]);return Object.keys(l).length>0?l:void 0}a.compose=r;function d(s,h){s===void 0&&(s={}),h===void 0&&(h={}),typeof s!="object"&&(s={}),typeof h!="object"&&(h={});var f=Object.keys(s).concat(Object.keys(h)).reduce(function(l,u){return e.default(s[u],h[u])||(l[u]=h[u]===void 0?null:h[u]),l},{});return Object.keys(f).length>0?f:void 0}a.diff=d;function c(s,h){s===void 0&&(s={}),h===void 0&&(h={}),s=s||{};var f=Object.keys(h).reduce(function(l,u){return h[u]!==s[u]&&s[u]!==void 0&&(l[u]=h[u]),l},{});return Object.keys(s).reduce(function(l,u){return s[u]!==h[u]&&h[u]===void 0&&(l[u]=null),l},f)}a.invert=c;function p(s,h,f){if(f===void 0&&(f=!1),typeof s!="object")return h;if(typeof h=="object"){if(!f)return h;var l=Object.keys(h).reduce(function(u,_){return s[_]===void 0&&(u[_]=h[_]),u},{});return Object.keys(l).length>0?l:void 0}}a.transform=p})(o||(o={})),cn.default=o,cn}var dn={},un={},Aa;function lp(){if(Aa)return un;Aa=1;var t=un&&un.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(un,"__esModule",{value:!0});var i=t(Ma()),e=(function(){function o(a){this.ops=a,this.index=0,this.offset=0}return o.prototype.hasNext=function(){return this.peekLength()<1/0},o.prototype.next=function(a){a||(a=1/0);var r=this.ops[this.index];if(r){var d=this.offset,c=i.default.length(r);if(a>=c-d?(a=c-d,this.index+=1,this.offset=0):this.offset+=a,typeof r.delete=="number")return{delete:a};var p={};return r.attributes&&(p.attributes=r.attributes),typeof r.retain=="number"?p.retain=a:typeof r.insert=="string"?p.insert=r.insert.substr(d,a):p.insert=r.insert,p}else return{retain:1/0}},o.prototype.peek=function(){return this.ops[this.index]},o.prototype.peekLength=function(){return this.ops[this.index]?i.default.length(this.ops[this.index])-this.offset:1/0},o.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},o.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var a=this.offset,r=this.index,d=this.next(),c=this.ops.slice(this.index);return this.offset=a,this.index=r,[d].concat(c)}else return[]},o})();return un.default=e,un}var Da;function Ma(){if(Da)return dn;Da=1;var t=dn&&dn.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(dn,"__esModule",{value:!0});var i=t(lp()),e;return(function(o){function a(d){return new i.default(d)}o.iterator=a;function r(d){return typeof d.delete=="number"?d.delete:typeof d.retain=="number"?d.retain:typeof d.insert=="string"?d.insert.length:1}o.length=r})(e||(e={})),dn.default=e,dn}var Pn,Ba;function sp(){if(Ba)return Pn;Ba=1;var t=Pn&&Pn.__importDefault||function(p){return p&&p.__esModule?p:{default:p}},i=t(op()),e=t(Sa()),o=t(Ta()),a=t(ap()),r=t(Ma()),d="\0",c=(function(){function p(s){Array.isArray(s)?this.ops=s:s!=null&&Array.isArray(s.ops)?this.ops=s.ops:this.ops=[]}return p.prototype.insert=function(s,h){var f={};return typeof s=="string"&&s.length===0?this:(f.insert=s,h!=null&&typeof h=="object"&&Object.keys(h).length>0&&(f.attributes=h),this.push(f))},p.prototype.delete=function(s){return s<=0?this:this.push({delete:s})},p.prototype.retain=function(s,h){if(s<=0)return this;var f={retain:s};return h!=null&&typeof h=="object"&&Object.keys(h).length>0&&(f.attributes=h),this.push(f)},p.prototype.push=function(s){var h=this.ops.length,f=this.ops[h-1];if(s=e.default(s),typeof f=="object"){if(typeof s.delete=="number"&&typeof f.delete=="number")return this.ops[h-1]={delete:f.delete+s.delete},this;if(typeof f.delete=="number"&&s.insert!=null&&(h-=1,f=this.ops[h-1],typeof f!="object"))return this.ops.unshift(s),this;if(o.default(s.attributes,f.attributes)){if(typeof s.insert=="string"&&typeof f.insert=="string")return this.ops[h-1]={insert:f.insert+s.insert},typeof s.attributes=="object"&&(this.ops[h-1].attributes=s.attributes),this;if(typeof s.retain=="number"&&typeof f.retain=="number")return this.ops[h-1]={retain:f.retain+s.retain},typeof s.attributes=="object"&&(this.ops[h-1].attributes=s.attributes),this}}return h===this.ops.length?this.ops.push(s):this.ops.splice(h,0,s),this},p.prototype.chop=function(){var s=this.ops[this.ops.length-1];return s&&s.retain&&!s.attributes&&this.ops.pop(),this},p.prototype.filter=function(s){return this.ops.filter(s)},p.prototype.forEach=function(s){this.ops.forEach(s)},p.prototype.map=function(s){return this.ops.map(s)},p.prototype.partition=function(s){var h=[],f=[];return this.forEach(function(l){var u=s(l)?h:f;u.push(l)}),[h,f]},p.prototype.reduce=function(s,h){return this.ops.reduce(s,h)},p.prototype.changeLength=function(){return this.reduce(function(s,h){return h.insert?s+r.default.length(h):h.delete?s-h.delete:s},0)},p.prototype.length=function(){return this.reduce(function(s,h){return s+r.default.length(h)},0)},p.prototype.slice=function(s,h){s===void 0&&(s=0),h===void 0&&(h=1/0);for(var f=[],l=r.default.iterator(this.ops),u=0;u<h&&l.hasNext();){var _=void 0;u<s?_=l.next(s-u):(_=l.next(h-u),f.push(_)),u+=r.default.length(_)}return new p(f)},p.prototype.compose=function(s){var h=r.default.iterator(this.ops),f=r.default.iterator(s.ops),l=[],u=f.peek();if(u!=null&&typeof u.retain=="number"&&u.attributes==null){for(var _=u.retain;h.peekType()==="insert"&&h.peekLength()<=_;)_-=h.peekLength(),l.push(h.next());u.retain-_>0&&f.next(u.retain-_)}for(var g=new p(l);h.hasNext()||f.hasNext();)if(f.peekType()==="insert")g.push(f.next());else if(h.peekType()==="delete")g.push(h.next());else{var $=Math.min(h.peekLength(),f.peekLength()),v=h.next($),b=f.next($);if(typeof b.retain=="number"){var y={};typeof v.retain=="number"?y.retain=$:y.insert=v.insert;var m=a.default.compose(v.attributes,b.attributes,typeof v.retain=="number");if(m&&(y.attributes=m),g.push(y),!f.hasNext()&&o.default(g.ops[g.ops.length-1],y)){var w=new p(h.rest());return g.concat(w).chop()}}else typeof b.delete=="number"&&typeof v.retain=="number"&&g.push(b)}return g.chop()},p.prototype.concat=function(s){var h=new p(this.ops.slice());return s.ops.length>0&&(h.push(s.ops[0]),h.ops=h.ops.concat(s.ops.slice(1))),h},p.prototype.diff=function(s,h){if(this.ops===s.ops)return new p;var f=[this,s].map(function($){return $.map(function(v){if(v.insert!=null)return typeof v.insert=="string"?v.insert:d;var b=$===s?"on":"with";throw new Error("diff() called "+b+" non-document")}).join("")}),l=new p,u=i.default(f[0],f[1],h),_=r.default.iterator(this.ops),g=r.default.iterator(s.ops);return u.forEach(function($){for(var v=$[1].length;v>0;){var b=0;switch($[0]){case i.default.INSERT:b=Math.min(g.peekLength(),v),l.push(g.next(b));break;case i.default.DELETE:b=Math.min(v,_.peekLength()),_.next(b),l.delete(b);break;case i.default.EQUAL:b=Math.min(_.peekLength(),g.peekLength(),v);var y=_.next(b),m=g.next(b);o.default(y.insert,m.insert)?l.retain(b,a.default.diff(y.attributes,m.attributes)):l.push(m).delete(b);break}v-=b}}),l.chop()},p.prototype.eachLine=function(s,h){h===void 0&&(h=`
134
+ `);for(var f=r.default.iterator(this.ops),l=new p,u=0;f.hasNext();){if(f.peekType()!=="insert")return;var _=f.peek(),g=r.default.length(_)-f.peekLength(),$=typeof _.insert=="string"?_.insert.indexOf(h,g)-g:-1;if($<0)l.push(f.next());else if($>0)l.push(f.next($));else{if(s(l,f.next(1).attributes||{},u)===!1)return;u+=1,l=new p}}l.length()>0&&s(l,{},u)},p.prototype.invert=function(s){var h=new p;return this.reduce(function(f,l){if(l.insert)h.delete(r.default.length(l));else{if(l.retain&&l.attributes==null)return h.retain(l.retain),f+l.retain;if(l.delete||l.retain&&l.attributes){var u=l.delete||l.retain,_=s.slice(f,f+u);return _.forEach(function(g){l.delete?h.push(g):l.retain&&l.attributes&&h.retain(r.default.length(g),a.default.invert(l.attributes,g.attributes))}),f+u}}return f},0),h.chop()},p.prototype.transform=function(s,h){if(h===void 0&&(h=!1),h=!!h,typeof s=="number")return this.transformPosition(s,h);for(var f=s,l=r.default.iterator(this.ops),u=r.default.iterator(f.ops),_=new p;l.hasNext()||u.hasNext();)if(l.peekType()==="insert"&&(h||u.peekType()!=="insert"))_.retain(r.default.length(l.next()));else if(u.peekType()==="insert")_.push(u.next());else{var g=Math.min(l.peekLength(),u.peekLength()),$=l.next(g),v=u.next(g);if($.delete)continue;v.delete?_.push(v):_.retain(g,a.default.transform($.attributes,v.attributes,h))}return _.chop()},p.prototype.transformPosition=function(s,h){h===void 0&&(h=!1),h=!!h;for(var f=r.default.iterator(this.ops),l=0;f.hasNext()&&l<=s;){var u=f.peekLength(),_=f.peekType();if(f.next(),_==="delete"){s-=Math.min(u,s-l);continue}else _==="insert"&&(l<s||!h)&&(s+=u);l+=u}return s},p.Op=r.default,p.AttributeMap=a.default,p})();return Pn=c,Pn}var cp=sp();const dp=En(cp);/*!
133
135
  * VueQuill @vueup/vue-quill v1.2.0
134
136
  * https://vueup.github.io/vue-quill/
135
137
  *
@@ -139,38 +141,38 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
139
141
  * Copyright (c) 2023 Ahmad Luthfi Masruri
140
142
  * Released under the MIT license
141
143
  * Date: 2023-05-12T08:44:03.742Z
142
- */const Ia={essential:[[{header:[1,2,3,4,5,6,!1]}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}],["blockquote","code-block","link"],[{color:[]},"clean"]],minimal:[[{header:1},{header:2}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}]],full:[["bold","italic","underline","strike"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{indent:"-1"},{indent:"+1"}],[{direction:"rtl"}],[{size:["small",!1,"large","huge"]}],[{header:[1,2,3,4,5,6,!1]}],[{color:[]},{background:[]}],[{font:[]}],[{align:[]}],["link","video","image"],["clean"]]},U1=r.defineComponent({name:"QuillEditor",inheritAttrs:!1,props:{content:{type:[String,Object]},contentType:{type:String,default:"delta",validator:t=>["delta","html","text"].includes(t)},enable:{type:Boolean,default:!0},readOnly:{type:Boolean,default:!1},placeholder:{type:String,required:!1},theme:{type:String,default:"snow",validator:t=>["snow","bubble",""].includes(t)},toolbar:{type:[String,Array,Object],required:!1,validator:t=>typeof t=="string"&&t!==""?t.charAt(0)==="#"?!0:Object.keys(Ia).indexOf(t)!==-1:!0},modules:{type:Object,required:!1},options:{type:Object,required:!1},globalOptions:{type:Object,required:!1}},emits:["textChange","selectionChange","editorChange","update:content","focus","blur","ready"],setup:(t,n)=>{r.onMounted(()=>{i()}),r.onBeforeUnmount(()=>{e=null});let e,o;const a=r.ref(),i=()=>{var C;if(a.value){if(o=s(),t.modules)if(Array.isArray(t.modules))for(const O of t.modules)xe.register(`modules/${O.name}`,O.module);else xe.register(`modules/${t.modules.name}`,t.modules.module);e=new xe(a.value,o),w(t.content),e.on("text-change",f),e.on("selection-change",h),e.on("editor-change",v),t.theme!=="bubble"&&a.value.classList.remove("ql-bubble"),t.theme!=="snow"&&a.value.classList.remove("ql-snow"),(C=e.getModule("toolbar"))===null||C===void 0||C.container.addEventListener("mousedown",O=>{O.preventDefault()}),n.emit("ready",e)}},s=()=>{const C={};if(t.theme!==""&&(C.theme=t.theme),t.readOnly&&(C.readOnly=t.readOnly),t.placeholder&&(C.placeholder=t.placeholder),t.toolbar&&t.toolbar!==""&&(C.modules={toolbar:(()=>{if(typeof t.toolbar=="object")return t.toolbar;if(typeof t.toolbar=="string")return t.toolbar.charAt(0)==="#"?t.toolbar:Ia[t.toolbar]})()}),t.modules){const O=(()=>{var N,R;const q={};if(Array.isArray(t.modules))for(const W of t.modules)q[W.name]=(N=W.options)!==null&&N!==void 0?N:{};else q[t.modules.name]=(R=t.modules.options)!==null&&R!==void 0?R:{};return q})();C.modules=Object.assign({},C.modules,O)}return Object.assign({},t.globalOptions,t.options,C)},l=C=>typeof C=="object"&&C?C.slice():C,u=C=>Object.values(C.ops).some(O=>!O.retain||Object.keys(O).length!==1);let d;const p=C=>{if(typeof d==typeof C){if(C===d)return!0;if(typeof C=="object"&&C&&typeof d=="object"&&d)return!u(d.diff(C))}return!1},f=(C,O,N)=>{d=l(g()),p(t.content)||n.emit("update:content",d),n.emit("textChange",{delta:C,oldContents:O,source:N})},c=r.ref(),h=(C,O,N)=>{c.value=!!(e!=null&&e.hasFocus()),n.emit("selectionChange",{range:C,oldRange:O,source:N})};r.watch(c,C=>{C?n.emit("focus",a):n.emit("blur",a)});const v=(...C)=>{C[0]==="text-change"&&n.emit("editorChange",{name:C[0],delta:C[1],oldContents:C[2],source:C[3]}),C[0]==="selection-change"&&n.emit("editorChange",{name:C[0],range:C[1],oldRange:C[2],source:C[3]})},m=()=>a.value,_=()=>{var C;return(C=e==null?void 0:e.getModule("toolbar"))===null||C===void 0?void 0:C.container},y=()=>{if(e)return e;throw`The quill editor hasn't been instantiated yet,
144
+ */const Ia={essential:[[{header:[1,2,3,4,5,6,!1]}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}],["blockquote","code-block","link"],[{color:[]},"clean"]],minimal:[[{header:1},{header:2}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}]],full:[["bold","italic","underline","strike"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{indent:"-1"},{indent:"+1"}],[{direction:"rtl"}],[{size:["small",!1,"large","huge"]}],[{header:[1,2,3,4,5,6,!1]}],[{color:[]},{background:[]}],[{font:[]}],[{align:[]}],["link","video","image"],["clean"]]},up=n.defineComponent({name:"QuillEditor",inheritAttrs:!1,props:{content:{type:[String,Object]},contentType:{type:String,default:"delta",validator:t=>["delta","html","text"].includes(t)},enable:{type:Boolean,default:!0},readOnly:{type:Boolean,default:!1},placeholder:{type:String,required:!1},theme:{type:String,default:"snow",validator:t=>["snow","bubble",""].includes(t)},toolbar:{type:[String,Array,Object],required:!1,validator:t=>typeof t=="string"&&t!==""?t.charAt(0)==="#"?!0:Object.keys(Ia).indexOf(t)!==-1:!0},modules:{type:Object,required:!1},options:{type:Object,required:!1},globalOptions:{type:Object,required:!1}},emits:["textChange","selectionChange","editorChange","update:content","focus","blur","ready"],setup:(t,i)=>{n.onMounted(()=>{r()}),n.onBeforeUnmount(()=>{e=null});let e,o;const a=n.ref(),r=()=>{var C;if(a.value){if(o=d(),t.modules)if(Array.isArray(t.modules))for(const O of t.modules)Ee.register(`modules/${O.name}`,O.module);else Ee.register(`modules/${t.modules.name}`,t.modules.module);e=new Ee(a.value,o),y(t.content),e.on("text-change",f),e.on("selection-change",u),e.on("editor-change",_),t.theme!=="bubble"&&a.value.classList.remove("ql-bubble"),t.theme!=="snow"&&a.value.classList.remove("ql-snow"),(C=e.getModule("toolbar"))===null||C===void 0||C.container.addEventListener("mousedown",O=>{O.preventDefault()}),i.emit("ready",e)}},d=()=>{const C={};if(t.theme!==""&&(C.theme=t.theme),t.readOnly&&(C.readOnly=t.readOnly),t.placeholder&&(C.placeholder=t.placeholder),t.toolbar&&t.toolbar!==""&&(C.modules={toolbar:(()=>{if(typeof t.toolbar=="object")return t.toolbar;if(typeof t.toolbar=="string")return t.toolbar.charAt(0)==="#"?t.toolbar:Ia[t.toolbar]})()}),t.modules){const O=(()=>{var N,P;const F={};if(Array.isArray(t.modules))for(const K of t.modules)F[K.name]=(N=K.options)!==null&&N!==void 0?N:{};else F[t.modules.name]=(P=t.modules.options)!==null&&P!==void 0?P:{};return F})();C.modules=Object.assign({},C.modules,O)}return Object.assign({},t.globalOptions,t.options,C)},c=C=>typeof C=="object"&&C?C.slice():C,p=C=>Object.values(C.ops).some(O=>!O.retain||Object.keys(O).length!==1);let s;const h=C=>{if(typeof s==typeof C){if(C===s)return!0;if(typeof C=="object"&&C&&typeof s=="object"&&s)return!p(s.diff(C))}return!1},f=(C,O,N)=>{s=c(b()),h(t.content)||i.emit("update:content",s),i.emit("textChange",{delta:C,oldContents:O,source:N})},l=n.ref(),u=(C,O,N)=>{l.value=!!(e!=null&&e.hasFocus()),i.emit("selectionChange",{range:C,oldRange:O,source:N})};n.watch(l,C=>{C?i.emit("focus",a):i.emit("blur",a)});const _=(...C)=>{C[0]==="text-change"&&i.emit("editorChange",{name:C[0],delta:C[1],oldContents:C[2],source:C[3]}),C[0]==="selection-change"&&i.emit("editorChange",{name:C[0],range:C[1],oldRange:C[2],source:C[3]})},g=()=>a.value,$=()=>{var C;return(C=e==null?void 0:e.getModule("toolbar"))===null||C===void 0?void 0:C.container},v=()=>{if(e)return e;throw`The quill editor hasn't been instantiated yet,
143
145
  make sure to call this method when the editor ready
144
- or use v-on:ready="onReady(quill)" event instead.`},g=(C,O)=>t.contentType==="html"?T():t.contentType==="text"?b(C,O):e==null?void 0:e.getContents(C,O),w=(C,O="api")=>{const N=C||(t.contentType==="delta"?new z1:"");t.contentType==="html"?S(N):t.contentType==="text"?k(N,O):e==null||e.setContents(N,O),d=l(N)},b=(C,O)=>{var N;return(N=e==null?void 0:e.getText(C,O))!==null&&N!==void 0?N:""},k=(C,O="api")=>{e==null||e.setText(C,O)},T=()=>{var C;return(C=e==null?void 0:e.root.innerHTML)!==null&&C!==void 0?C:""},S=C=>{e&&(e.root.innerHTML=C)},x=(C,O="api")=>{const N=e==null?void 0:e.clipboard.convert(C);N&&(e==null||e.setContents(N,O))},M=()=>{e==null||e.focus()},E=()=>{r.nextTick(()=>{var C;!n.slots.toolbar&&e&&((C=e.getModule("toolbar"))===null||C===void 0||C.container.remove()),i()})};return r.watch(()=>t.content,C=>{if(!e||!C||p(C))return;const O=e.getSelection();O&&r.nextTick(()=>e==null?void 0:e.setSelection(O)),w(C)},{deep:!0}),r.watch(()=>t.enable,C=>{e&&e.enable(C)}),{editor:a,getEditor:m,getToolbar:_,getQuill:y,getContents:g,setContents:w,getHTML:T,setHTML:S,pasteHTML:x,focus:M,getText:b,setText:k,reinit:E}},render(){var t,n;return[(n=(t=this.$slots).toolbar)===null||n===void 0?void 0:n.call(t),r.h("div",{ref:"editor",...this.$attrs})]}}),K1=xe.import("formats/list"),G1=xe.import("formats/list/item"),W1=xe.import("parchment");class $r extends G1{format(n,e){n===Zt.blotName&&!e?this.replaceWith(W1.create(this.statics.scope)):super.format(n,e)}clone(){const n=super.clone();return n.domNode.classList.remove("checked"),n}}$r.blotName="alphabet-list-item",$r.tagName="LI";class Zt extends K1{static create(){const n=super.create("bullet");return n.setAttribute("type","a"),n}static formats(){return"bullet"}}Zt.blotName="alphabet-list",Zt.tagName="OL",Zt.className="alphabet-list",Zt.defaultChild="alphabet-list-item",Zt.allowedChildren=[$r];function Y1(t){return new DOMParser().parseFromString(t,"text/html").body.textContent||""}var Ba={exports:{}};(function(t,n){(function(o,a){t.exports=a()})(typeof self<"u"?self:je,function(){return function(e){var o={};function a(i){if(o[i])return o[i].exports;var s=o[i]={i,l:!1,exports:{}};return e[i].call(s.exports,s,s.exports,a),s.l=!0,s.exports}return a.m=e,a.c=o,a.d=function(i,s,l){a.o(i,s)||Object.defineProperty(i,s,{configurable:!1,enumerable:!0,get:l})},a.n=function(i){var s=i&&i.__esModule?function(){return i.default}:function(){return i};return a.d(s,"a",s),s},a.o=function(i,s){return Object.prototype.hasOwnProperty.call(i,s)},a.p="",a(a.s=0)}([function(e,o,a){function i(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(o,"__esModule",{value:!0});var s=a(1);function l(u,d){var p=u.import("parchment"),f=s.default(u);f.className=d&&d.className||"ql-placeholder-content",u.register(f);var c=function h(v,m){var _=this;i(this,h),this.quill=v,this.onTextChange=function(y,g,w){if(w===u.sources.USER){var b=_.quill.getContents(),k=b.diff(g),T=k.ops.filter(function(S){return S.insert&&S.insert.placeholder&&S.insert.placeholder.required}).length;T&&_.quill.updateContents(k,u.sources.SILENT)}},this.onClick=function(y){var g=p.find(y.target.parentNode);if(g instanceof f){var w=_.quill.getIndex(g);_.quill.setSelection(w,g.length(),u.sources.USER)}},this.toolbarHandler=function(y){var g=_.quill.getSelection(),w=_.placeholders.filter(function(b){return b.id===y})[0];if(!w)throw new Error("Missing placeholder for "+y);_.quill.deleteText(g.index,g.length),_.quill.insertEmbed(g.index,"placeholder",w,u.sources.USER),_.quill.setSelection(g.index+1,0)},this.placeholders=m.placeholders,f.delimiters=m.delimiters||["{","}"],this.quill.getModule("toolbar").addHandler("placeholder",this.toolbarHandler),this.quill.root.addEventListener("click",this.onClick),this.quill.on("text-change",this.onTextChange)};return c}o.default=l},function(e,o,a){var i=function(){function f(c,h){for(var v=0;v<h.length;v++){var m=h[v];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(c,m.key,m)}}return function(c,h,v){return h&&f(c.prototype,h),v&&f(c,v),c}}(),s=function f(c,h,v){c===null&&(c=Function.prototype);var m=Object.getOwnPropertyDescriptor(c,h);if(m===void 0){var _=Object.getPrototypeOf(c);return _===null?void 0:f(_,h,v)}else{if("value"in m)return m.value;var y=m.get;return y===void 0?void 0:y.call(v)}};function l(f,c){if(!(f instanceof c))throw new TypeError("Cannot call a class as a function")}function u(f,c){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:f}function d(f,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);f.prototype=Object.create(c&&c.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(f,c):f.__proto__=c)}Object.defineProperty(o,"__esModule",{value:!0});function p(f){var c=f.import("blots/embed"),h=function(v){d(m,v);function m(){return l(this,m),u(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,[{key:"length",value:function(){return 1}},{key:"deleteAt",value:function(y,g){this.domNode.dataset.required||s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"deleteAt",this).call(this,y,g)}}],[{key:"create",value:function(y){var g=s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,y);y.required&&g.setAttribute("data-required","true"),g.setAttribute("data-id",y.id),g.setAttribute("data-label",y.label),g.setAttribute("spellcheck","false");var w=m.delimiters,b=typeof w=="string"?""+w+y.label+w:""+w[0]+y.label+(w[1]||w[0]),k=document.createTextNode(b);if(f.version<"1.3"){var T=document.createElement("span");T.setAttribute("contenteditable","false"),T.appendChild(k),g.appendChild(T)}else g.appendChild(k);return g}},{key:"value",value:function(y){return y.dataset}}]),m}(c);return h.blotName="placeholder",h.tagName="span",h}o.default=p}])})})(Ba);var Z1=Ba.exports;const J1=Cn(Z1),Vp="",X1=`
146
+ or use v-on:ready="onReady(quill)" event instead.`},b=(C,O)=>t.contentType==="html"?T():t.contentType==="text"?m(C,O):e==null?void 0:e.getContents(C,O),y=(C,O="api")=>{const N=C||(t.contentType==="delta"?new dp:"");t.contentType==="html"?S(N):t.contentType==="text"?w(N,O):e==null||e.setContents(N,O),s=c(N)},m=(C,O)=>{var N;return(N=e==null?void 0:e.getText(C,O))!==null&&N!==void 0?N:""},w=(C,O="api")=>{e==null||e.setText(C,O)},T=()=>{var C;return(C=e==null?void 0:e.root.innerHTML)!==null&&C!==void 0?C:""},S=C=>{e&&(e.root.innerHTML=C)},x=(C,O="api")=>{const N=e==null?void 0:e.clipboard.convert(C);N&&(e==null||e.setContents(N,O))},D=()=>{e==null||e.focus()},E=()=>{n.nextTick(()=>{var C;!i.slots.toolbar&&e&&((C=e.getModule("toolbar"))===null||C===void 0||C.container.remove()),r()})};return n.watch(()=>t.content,C=>{if(!e||!C||h(C))return;const O=e.getSelection();O&&n.nextTick(()=>e==null?void 0:e.setSelection(O)),y(C)},{deep:!0}),n.watch(()=>t.enable,C=>{e&&e.enable(C)}),{editor:a,getEditor:g,getToolbar:$,getQuill:v,getContents:b,setContents:y,getHTML:T,setHTML:S,pasteHTML:x,focus:D,getText:m,setText:w,reinit:E}},render(){var t,i;return[(i=(t=this.$slots).toolbar)===null||i===void 0?void 0:i.call(t),n.h("div",{ref:"editor",...this.$attrs})]}}),fp={props:{placeholders:{type:Array,default:[]},uid:{type:String,default:""},hiddenElements:{type:Array,default:()=>[]}},mounted(){this.$nextTick(()=>{var t;(t=this.$refs.toolbar)==null||t.classList.remove("ql-toolbar")})},methods:{isElementHidden(t){return this.hiddenElements.includes(t)}},components:{IbIconButton:Xe,IbIcon:Le,IbDropdownList:Cn},directives:{Tooltip:St}},hp={class:"ib-toolbar toolbar",ref:"toolbar"},pp={class:"toolbar-group header-toolbar-group"},mp=n.createElementVNode("label",{class:"toolbar-group__label",for:"placeholders"},"Placeholder Selector",-1),gp={id:"placeholders",class:"ql-placeholder"},yp=n.createElementVNode("option",{selected:"",value:"default",class:"disabled"},null,-1),bp=["value"],vp={key:0,class:"toolbar-group header-toolbar-group"},_p=["for"],$p=["id"],wp=[n.createStaticVNode('<option value="1"></option><option value="2"></option><option value="3"></option><option value="4"></option><option value="5"></option><option value="6"></option><option selected></option>',7)],kp={key:1,class:"toolbar-group header-toolbar-group"},Cp=["for"],Op=["id"],Ep=[n.createStaticVNode('<option value="12px">12 px</option><option value="14px">14 px</option><option value="16px">16 px</option><option value="20px">20 px</option><option value="24px">24 px</option><option value="36px">36 px</option><option value="48px">48 px</option>',7)],Sp={class:"toolbar-group"},xp={class:"toolbar-group"},Tp=["for"],Np=["id"],Ap=["for"],Dp=["id"],Mp={class:"toolbar-group"},Bp={class:"toolbar-group"},Ip={class:"toolbar-group"},Pp={key:2,class:"toolbar-group"};function Lp(t,i,e,o,a,r){const d=n.resolveComponent("ib-icon-button"),c=n.resolveComponent("ib-icon"),p=n.resolveComponent("ib-dropdown-list"),s=n.resolveDirective("tooltip");return n.openBlock(),n.createElementBlock("div",hp,[n.withDirectives(n.createElementVNode("div",pp,[mp,n.createElementVNode("select",gp,[yp,(n.openBlock(!0),n.createElementBlock(n.Fragment,null,n.renderList(e.placeholders,h=>(n.openBlock(),n.createElementBlock("option",{key:h.id,value:h.id},n.toDisplayString(h.label),9,bp))),128))])],512),[[n.vShow,e.placeholders.length]]),r.isElementHidden("header")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createElementBlock("div",vp,[n.createElementVNode("label",{class:"toolbar-group__label",for:"header-selector"+e.uid},"Header Selector",8,_p),n.createElementVNode("select",{id:"header-selector"+e.uid,class:"ql-header"},wp,8,$p)])),[[s,t.lang("text_style",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("font-size")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createElementBlock("div",kp,[n.createElementVNode("label",{class:"toolbar-group__label",for:"font-size-selector"+e.uid},"Font Size Selector",8,Cp),n.createElementVNode("select",{id:"font-size-selector"+e.uid,class:"ql-size ql-header"},Ep,8,Op)])),[[s,t.lang("font_size",t.langComponents.COMPONENT_SYSTEM)]]),n.createElementVNode("div",Sp,[r.isElementHidden("bold")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:0,"aria-label":"button-bold",class:"toolbar-item ql-bold",kind:"ghost"},null,512)),[[s,t.lang("bold",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("italic")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:1,"aria-label":"button-italic",class:"toolbar-item ql-italic",kind:"ghost"},null,512)),[[s,t.lang("italic",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("underline")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:2,"aria-label":"button-underline",class:"toolbar-item ql-underline",kind:"ghost"},null,512)),[[s,t.lang("underline",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("strike")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:3,"aria-label":"button-strike",class:"toolbar-item ql-strike",kind:"ghost"},null,512)),[[s,t.lang("strikethrough",t.langComponents.COMPONENT_SYSTEM)]])]),n.createElementVNode("div",xp,[n.withDirectives((n.openBlock(),n.createElementBlock("div",null,[n.withDirectives((n.openBlock(),n.createElementBlock("label",{class:"toolbar-group__label",for:"background-selector"+e.uid},[n.createTextVNode(" Background Selector ")],8,Tp)),[[s,t.lang("highlight_color",t.langComponents.COMPONENT_SYSTEM)]]),n.withDirectives(n.createElementVNode("select",{id:"background-selector"+e.uid,class:"ql-background"},null,8,Np),[[s,t.lang("highlight_color",t.langComponents.COMPONENT_SYSTEM)]])])),[[s,t.lang("highlight_color",t.langComponents.COMPONENT_SYSTEM)]]),n.withDirectives((n.openBlock(),n.createElementBlock("div",null,[n.withDirectives((n.openBlock(),n.createElementBlock("label",{class:"toolbar-group__label",for:"color-selector"+e.uid},[n.createTextVNode("Background Color Selector")],8,Ap)),[[s,t.lang("text_color",t.langComponents.COMPONENT_SYSTEM)]]),n.createElementVNode("select",{id:"color-selector"+e.uid,class:"ql-color"},null,8,Dp)])),[[s,t.lang("text_color",t.langComponents.COMPONENT_SYSTEM)]])]),n.createElementVNode("div",Mp,[r.isElementHidden("code")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:0,"aria-label":"button-code-block",class:"toolbar-item ql-code-block",kind:"ghost"},null,512)),[[s,t.lang("code_snippet",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("image")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:1,"aria-label":"button-image",class:"toolbar-item ql-image",kind:"ghost"},null,512)),[[s,t.lang("insert_image",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("link")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:2,"aria-label":"button-link",class:"toolbar-item ql-link",kind:"ghost"},null,512)),[[s,t.lang("insert_link",t.langComponents.COMPONENT_SYSTEM)]])]),n.createElementVNode("div",Bp,[r.isElementHidden("align")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:0,"aria-label":"button-align",class:"toolbar-item ql-align",kind:"ghost"},null,512)),[[s,t.lang("align_left",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("align-center")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:1,"aria-label":"button-align-center",class:"ql-align toolbar-item",value:"center",kind:"ghost"},null,512)),[[s,t.lang("align_center",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("align-right")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:2,"aria-label":"button-align-right",class:"ql-align toolbar-item",value:"right",kind:"ghost"},null,512)),[[s,t.lang("align_right",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("align-justify")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:3,"aria-label":"button-align-justify",class:"ql-align toolbar-item",value:"justify",kind:"ghost"},null,512)),[[s,t.lang("justify",t.langComponents.COMPONENT_SYSTEM)]])]),n.createElementVNode("div",Ip,[r.isElementHidden("ordered-list")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:0,"aria-label":"button-ordered-list",class:"ql-list toolbar-item",value:"ordered",kind:"ghost"},null,512)),[[s,t.lang("number_list",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("bullet-list")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:1,"aria-label":"button-bullet-list",class:"ql-list toolbar-item",value:"bullet",kind:"ghost"},null,512)),[[s,t.lang("bullet_list",t.langComponents.COMPONENT_SYSTEM)]]),r.isElementHidden("alphabet-list")?n.createCommentVNode("",!0):n.withDirectives((n.openBlock(),n.createBlock(d,{key:2,"aria-label":"button-alphabet-list",class:"ql-alphabet-list alphabet-list toolbar-item",kind:"ghost"},null,512)),[[s,t.lang("alphabet_list",t.langComponents.COMPONENT_SYSTEM)]])]),t.$slots.actions?(n.openBlock(),n.createElementBlock("div",Pp,[n.createVNode(p,null,{trigger:n.withCtx(()=>[n.withDirectives((n.openBlock(),n.createBlock(d,{kind:"ghost"},{default:n.withCtx(()=>[n.createVNode(c,{name:"ellipsis-horizontal-sharp"})]),_:1})),[[s,t.lang("actions",t.langComponents.COMPONENT_SYSTEM)]])]),body:n.withCtx(()=>[n.renderSlot(t.$slots,"actions")]),_:3})])):n.createCommentVNode("",!0)],512)}const Pa=be(fp,[["render",Lp]]);function Rp(t){return new DOMParser().parseFromString(t,"text/html").body.textContent||""}var $i={exports:{}},Vp=$i.exports,La;function jp(){return La||(La=1,(function(t,i){(function(o,a){t.exports=a()})(typeof self<"u"?self:Vp,function(){return(function(e){var o={};function a(r){if(o[r])return o[r].exports;var d=o[r]={i:r,l:!1,exports:{}};return e[r].call(d.exports,d,d.exports,a),d.l=!0,d.exports}return a.m=e,a.c=o,a.d=function(r,d,c){a.o(r,d)||Object.defineProperty(r,d,{configurable:!1,enumerable:!0,get:c})},a.n=function(r){var d=r&&r.__esModule?function(){return r.default}:function(){return r};return a.d(d,"a",d),d},a.o=function(r,d){return Object.prototype.hasOwnProperty.call(r,d)},a.p="",a(a.s=0)})([(function(e,o,a){function r(p,s){if(!(p instanceof s))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(o,"__esModule",{value:!0});var d=a(1);function c(p,s){var h=p.import("parchment"),f=d.default(p);f.className=s&&s.className||"ql-placeholder-content",p.register(f);var l=function u(_,g){var $=this;r(this,u),this.quill=_,this.onTextChange=function(v,b,y){if(y===p.sources.USER){var m=$.quill.getContents(),w=m.diff(b),T=w.ops.filter(function(S){return S.insert&&S.insert.placeholder&&S.insert.placeholder.required}).length;T&&$.quill.updateContents(w,p.sources.SILENT)}},this.onClick=function(v){var b=h.find(v.target.parentNode);if(b instanceof f){var y=$.quill.getIndex(b);$.quill.setSelection(y,b.length(),p.sources.USER)}},this.toolbarHandler=function(v){var b=$.quill.getSelection(),y=$.placeholders.filter(function(m){return m.id===v})[0];if(!y)throw new Error("Missing placeholder for "+v);$.quill.deleteText(b.index,b.length),$.quill.insertEmbed(b.index,"placeholder",y,p.sources.USER),$.quill.setSelection(b.index+1,0)},this.placeholders=g.placeholders,f.delimiters=g.delimiters||["{","}"],this.quill.getModule("toolbar").addHandler("placeholder",this.toolbarHandler),this.quill.root.addEventListener("click",this.onClick),this.quill.on("text-change",this.onTextChange)};return l}o.default=c}),(function(e,o,a){var r=(function(){function f(l,u){for(var _=0;_<u.length;_++){var g=u[_];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(l,g.key,g)}}return function(l,u,_){return u&&f(l.prototype,u),_&&f(l,_),l}})(),d=function f(l,u,_){l===null&&(l=Function.prototype);var g=Object.getOwnPropertyDescriptor(l,u);if(g===void 0){var $=Object.getPrototypeOf(l);return $===null?void 0:f($,u,_)}else{if("value"in g)return g.value;var v=g.get;return v===void 0?void 0:v.call(_)}};function c(f,l){if(!(f instanceof l))throw new TypeError("Cannot call a class as a function")}function p(f,l){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return l&&(typeof l=="object"||typeof l=="function")?l:f}function s(f,l){if(typeof l!="function"&&l!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof l);f.prototype=Object.create(l&&l.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),l&&(Object.setPrototypeOf?Object.setPrototypeOf(f,l):f.__proto__=l)}Object.defineProperty(o,"__esModule",{value:!0});function h(f){var l=f.import("blots/embed"),u=(function(_){s(g,_);function g(){return c(this,g),p(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"length",value:function(){return 1}},{key:"deleteAt",value:function(v,b){this.domNode.dataset.required||d(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"deleteAt",this).call(this,v,b)}}],[{key:"create",value:function(v){var b=d(g.__proto__||Object.getPrototypeOf(g),"create",this).call(this,v);v.required&&b.setAttribute("data-required","true"),b.setAttribute("data-id",v.id),b.setAttribute("data-label",v.label),b.setAttribute("spellcheck","false");var y=g.delimiters,m=typeof y=="string"?""+y+v.label+y:""+y[0]+v.label+(y[1]||y[0]),w=document.createTextNode(m);if(f.version<"1.3"){var T=document.createElement("span");T.setAttribute("contenteditable","false"),T.appendChild(w),b.appendChild(T)}else b.appendChild(w);return b}},{key:"value",value:function(v){return v.dataset}}]),g})(l);return u.blotName="placeholder",u.tagName="span",u}o.default=h})])})})($i)),$i.exports}var Fp=jp();const qp=En(Fp),Hp=Ee.import("formats/list"),zp=Ee.import("formats/list/item"),Up=Ee.import("parchment");class wi extends zp{format(i,e){i===Kt.blotName&&!e?this.replaceWith(Up.create(this.statics.scope)):super.format(i,e)}clone(){const i=super.clone();return i.domNode.classList.remove("checked"),i}}wi.blotName="alphabet-list-item",wi.tagName="LI";class Kt extends Hp{static create(){const i=super.create("bullet");return i.setAttribute("type","a"),i}static formats(){return"bullet"}}Kt.blotName="alphabet-list",Kt.tagName="OL",Kt.className="alphabet-list",Kt.defaultChild="alphabet-list-item",Kt.allowedChildren=[wi];const Kp=Ee.import("formats/image");class br extends Kp{static create(i){const e=super.create(i);return e.setAttribute("data-supernova-id",i),e.setAttribute("src","#"),e}static value(i){return i.getAttribute("data-supernova-id")}}br.blotName="custom-image",br.tagName="img";const Gp=`
145
147
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
146
148
  <path d="M6.31836 14.9023V5.09961H9.88672C10.9805 5.09961 11.8213 5.30013 12.4092 5.70117C12.9971 6.10221 13.291 6.66732 13.291 7.39648C13.291 7.92513 13.111 8.3877 12.751 8.78418C12.3955 9.18066 11.9398 9.45638 11.3838 9.61133V9.63867C12.0811 9.72526 12.637 9.98275 13.0518 10.4111C13.471 10.8395 13.6807 11.3613 13.6807 11.9766C13.6807 12.8743 13.3594 13.5876 12.7168 14.1162C12.0742 14.6403 11.1969 14.9023 10.085 14.9023H6.31836ZM8.52637 6.72656V9.05078H9.49707C9.9528 9.05078 10.3105 8.94141 10.5703 8.72266C10.8346 8.49935 10.9668 8.19401 10.9668 7.80664C10.9668 7.08659 10.429 6.72656 9.35352 6.72656H8.52637ZM8.52637 10.6914V13.2754H9.72266C10.2331 13.2754 10.6318 13.1569 10.9189 12.9199C11.2106 12.6829 11.3564 12.3594 11.3564 11.9492C11.3564 11.5573 11.2129 11.2497 10.9258 11.0264C10.6432 10.8031 10.2467 10.6914 9.73633 10.6914H8.52637Z" class="fill" fill="#1A1A1A"/>
147
149
  </svg>
148
- `,Q1=`
150
+ `,Wp=`
149
151
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
150
152
  <path d="M9.54492 14.9023H8.36914L10.4404 5.09961H11.6299L9.54492 14.9023Z" class="fill" fill="#1A1A1A"/>
151
153
  </svg>
152
- `,e0=`
154
+ `,Yp=`
153
155
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
154
156
  <path d="M13.6475 10.7197C13.6475 13.4723 12.4056 14.8486 9.92188 14.8486C7.54297 14.8486 6.35352 13.5247 6.35352 10.877V4.88184H7.50195V10.8018C7.50195 12.8115 8.34961 13.8164 10.0449 13.8164C11.681 13.8164 12.499 12.8457 12.499 10.9043V4.88184H13.6475V10.7197Z" class="fill" fill="#1A1A1A"/>
155
157
  <path d="M5.19141 16.3047H14.8096V17.1182H5.19141V16.3047Z" class="fill" fill="#1A1A1A"/>
156
158
  </svg>
157
- `,t0=`
159
+ `,Zp=`
158
160
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
159
161
  <path d="M14.6668 9.99805L5.33594 9.99805" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
160
162
  <path d="M12.9158 5.33398H8.83776C8.25237 5.33398 6.03696 5.3923 6.50351 7.9583" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
161
163
  <path d="M6.43941 14.6624H10.5174C11.1028 14.6624 14.0882 14.953 12.3364 10.2886" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
162
164
  </svg>
163
- `,n0=`
165
+ `,Jp=`
164
166
  <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
165
167
  <path d="M6.5 11H4.5C3.70435 11 2.94129 10.6839 2.37868 10.1213C1.81607 9.55871 1.5 8.79565 1.5 8C1.5 7.20435 1.81607 6.44129 2.37868 5.87868C2.94129 5.31607 3.70435 5 4.5 5H6.5M9.5 5H11.5C12.2956 5 13.0587 5.31607 13.6213 5.87868C14.1839 6.44129 14.5 7.20435 14.5 8C14.5 8.79565 14.1839 9.55871 13.6213 10.1213C13.0587 10.6839 12.2956 11 11.5 11H9.5M5.10281 8H10.9597" class="stroke" stroke="#1A1A1A" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
166
168
  </svg>
167
169
 
168
- `,r0=`
170
+ `,Xp=`
169
171
  <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
170
172
  <path d="M5 11.5L1 8L5 4.5M11 11.5L15 8L11 4.5M9.5 3L6.5 13" class="stroke" stroke="#1A1A1A" stroke-linecap="round" stroke-linejoin="round"/>
171
173
  </svg>
172
174
 
173
- `,i0=`
175
+ `,Qp=`
174
176
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
175
177
  <rect x="3" y="3" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
176
178
  <rect x="3" y="7" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
@@ -178,14 +180,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
178
180
  <rect x="3" y="15" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
179
181
  </svg>
180
182
 
181
- `,o0=`
183
+ `,e0=`
182
184
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
183
185
  <rect x="3" y="3" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
184
186
  <rect x="5" y="7" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
185
187
  <rect x="3" y="11" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
186
188
  <rect x="5" y="15" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
187
189
  </svg>
188
- `,a0=`
190
+ `,t0=`
189
191
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
190
192
  <rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 3)" class="fill" fill="#1A1A1A"/>
191
193
  <rect width="10" height="2" rx="1" transform="matrix(-1 0 0 1 17 7)" class="fill" fill="#1A1A1A"/>
@@ -193,14 +195,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
193
195
  <rect width="10" height="2" rx="1" transform="matrix(-1 0 0 1 17 15)" class="fill" fill="#1A1A1A"/>
194
196
  </svg>
195
197
 
196
- `,l0=`
198
+ `,n0=`
197
199
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
198
200
  <rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 3)" class="fill" fill="#1A1A1A"/>
199
201
  <rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 7)" class="fill" fill="#1A1A1A"/>
200
202
  <rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 11)" class="fill" fill="#1A1A1A"/>
201
203
  <rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 15)" class="fill" fill="#1A1A1A"/>
202
204
  </svg>
203
- `,s0=`
205
+ `,i0=`
204
206
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
205
207
  <path d="M3.625 3.63672V6.5H3.00977V4.33203C2.97591 4.36198 2.93555 4.39062 2.88867 4.41797C2.8431 4.44401 2.79427 4.4681 2.74219 4.49023C2.6901 4.51107 2.63607 4.5293 2.58008 4.54492C2.52409 4.55924 2.46875 4.56966 2.41406 4.57617V4.05664C2.57422 4.00977 2.72526 3.94987 2.86719 3.87695C3.00911 3.80404 3.13737 3.72396 3.25195 3.63672H3.625Z" class="fill" fill="#1A1A1A"/>
206
208
  <path d="M2.83789 10.9883H4.02539V11.5H2.16211V11.2891C2.16211 11.1458 2.1862 11.0176 2.23438 10.9043C2.28255 10.7897 2.3431 10.6875 2.41602 10.5977C2.48893 10.5065 2.56836 10.4264 2.6543 10.3574C2.74154 10.2871 2.82422 10.224 2.90234 10.168C2.98438 10.1094 3.05599 10.0534 3.11719 10C3.17969 9.94661 3.23177 9.89388 3.27344 9.8418C3.31641 9.78841 3.34831 9.73503 3.36914 9.68164C3.38997 9.62695 3.40039 9.56901 3.40039 9.50781C3.40039 9.38802 3.36654 9.29753 3.29883 9.23633C3.23112 9.17513 3.1276 9.14453 2.98828 9.14453C2.7474 9.14453 2.51693 9.24023 2.29688 9.43164V8.88867C2.54036 8.73112 2.8151 8.65234 3.12109 8.65234C3.26302 8.65234 3.38997 8.67122 3.50195 8.70898C3.61523 8.74544 3.71094 8.79818 3.78906 8.86719C3.86719 8.9362 3.92643 9.02018 3.9668 9.11914C4.00846 9.2168 4.0293 9.32617 4.0293 9.44727C4.0293 9.57617 4.00911 9.69076 3.96875 9.79102C3.92969 9.89128 3.87695 9.98242 3.81055 10.0645C3.74544 10.1465 3.66992 10.222 3.58398 10.291C3.49805 10.3587 3.40885 10.4245 3.31641 10.4883C3.25391 10.5326 3.19336 10.5768 3.13477 10.6211C3.07747 10.6641 3.02669 10.707 2.98242 10.75C2.93815 10.7917 2.90299 10.8327 2.87695 10.873C2.85091 10.9134 2.83789 10.9518 2.83789 10.9883Z" class="fill" fill="#1A1A1A"/>
@@ -209,7 +211,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
209
211
  <rect x="7" y="9.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
210
212
  <rect x="7" y="14.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
211
213
  </svg>
212
- `,c0=`
214
+ `,r0=`
213
215
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
214
216
  <rect x="6.5" y="4" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
215
217
  <rect x="6.5" y="9" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
@@ -218,7 +220,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
218
220
  <circle cx="3.5" cy="10" r="1" class="fill" fill="#1A1A1A"/>
219
221
  <circle cx="3.5" cy="5" r="1" class="fill" fill="#1A1A1A"/>
220
222
  </svg>
221
- `,d0=`
223
+ `,o0=`
222
224
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
223
225
  <path d="M3.92383 6.5H3.33984V6.21289H3.33203C3.19792 6.43685 2.99935 6.54883 2.73633 6.54883C2.54232 6.54883 2.38932 6.49414 2.27734 6.38477C2.16667 6.27409 2.11133 6.12695 2.11133 5.94336C2.11133 5.55534 2.34115 5.33138 2.80078 5.27148L3.34375 5.19922C3.34375 4.98047 3.22526 4.87109 2.98828 4.87109C2.75 4.87109 2.52344 4.94206 2.30859 5.08398V4.61914C2.39453 4.57487 2.51172 4.53581 2.66016 4.50195C2.8099 4.4681 2.94596 4.45117 3.06836 4.45117C3.63867 4.45117 3.92383 4.73568 3.92383 5.30469V6.5ZM3.34375 5.6875V5.55273L2.98047 5.59961C2.77995 5.62565 2.67969 5.71615 2.67969 5.87109C2.67969 5.94141 2.70378 5.99935 2.75195 6.04492C2.80143 6.08919 2.86784 6.11133 2.95117 6.11133C3.06706 6.11133 3.16146 6.07161 3.23438 5.99219C3.30729 5.91146 3.34375 5.8099 3.34375 5.6875Z" class="fill" fill="#1A1A1A"/>
224
226
  <path d="M2.88477 11.2676H2.87695V11.5H2.25977V8.53906H2.87695V9.80078H2.88477C3.03711 9.56771 3.25391 9.45117 3.53516 9.45117C3.79297 9.45117 3.99154 9.53971 4.13086 9.7168C4.27018 9.89388 4.33984 10.1361 4.33984 10.4434C4.33984 10.7767 4.25846 11.0443 4.0957 11.2461C3.93294 11.4479 3.71549 11.5488 3.44336 11.5488C3.19727 11.5488 3.01107 11.4551 2.88477 11.2676ZM2.86719 10.4238V10.6289C2.86719 10.7578 2.9043 10.8646 2.97852 10.9492C3.05273 11.0339 3.14779 11.0762 3.26367 11.0762C3.4043 11.0762 3.51302 11.0221 3.58984 10.9141C3.66797 10.8047 3.70703 10.6504 3.70703 10.4512C3.70703 10.2858 3.67122 10.1569 3.59961 10.0645C3.5293 9.9707 3.42839 9.92383 3.29688 9.92383C3.17318 9.92383 3.07031 9.97005 2.98828 10.0625C2.90755 10.1549 2.86719 10.2754 2.86719 10.4238Z" class="fill" fill="#1A1A1A"/>
@@ -227,4 +229,10 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
227
229
  <rect x="7" y="9.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
228
230
  <rect x="7" y="14.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
229
231
  </svg>
230
- `,qp="";xe.register(xe.import("attributors/attribute/direction"),!0),xe.register(xe.import("attributors/class/align"),!0),xe.register(xe.import("attributors/class/direction"),!0),xe.register(xe.import("attributors/class/font"),!0),xe.register(xe.import("attributors/class/size"),!0),xe.register(xe.import("attributors/style/align"),!0),xe.register(xe.import("attributors/style/background"),!0),xe.register(xe.import("attributors/style/color"),!0),xe.register(xe.import("attributors/style/direction"),!0),xe.register(xe.import("attributors/style/font"),!0),xe.register(xe.import("attributors/style/size"),!0);const st=xe.import("ui/icons");st.bold=X1,st.italic=Q1,st.underline=e0,st.strike=t0,st["code-block"]=r0,st.link=n0,st.align[""]=i0,st.align.center=o0,st.align.right=a0,st.align.justify=l0,st.list.ordered=s0,st.list.bullet=c0,st["alphabet-list"]=d0,xe.register({"formats/alphabet-list":Zt,"formats/alphabet-list/item":$r}),xe.register("modules/placeholder",J1(xe,{className:"ql-placeholder-content"})),xe.register(st),xe.debug("error");const u0={name:"IbTextEditor",props:{name:{type:String,required:!0},placeholder:{type:String,default:""},placeholders:{type:Array,default:()=>[]},modelValue:{type:String},content:{type:String,default:""},readOnly:{type:Boolean,default:!1},enable:{type:Boolean,default:!0},modules:{type:[Object,Array],default:()=>{}},options:{type:Object,default:()=>{}},characterLimit:{type:[String,Number],default:null},error:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""}},emits:["onOverLimitHandler","update:modelValue","change","blur"],mounted(){this.$refs.toolbar.classList.remove("ql-toolbar");const t=this.$refs.wrapper.querySelector("input[data-link]");t.dataset.link="Enter Link",this.updateCharacterLength()},data(){return{data:this.modelValue?this.modelValue:this.content,characterLength:0,isFocus:!1}},watch:{content(t){this.data=t},data(t){const n=this.cleanPlaceholderSpans(t);this.$emit("update:modelValue",n)},characterOverLimit(t){this.$emit("onOverLimitHandler",t)}},methods:{onChange(){let t=this.cleanPlaceholderSpans(this.data);this.data=this.patchListStylePosition(t),this.updateCharacterLength(),this.$emit("change",this.data)},onBlur(t){this.$emit("blur",this.cleanPlaceholderSpans(this.data),t),this.isFocus=!1},onFocus(){this.isFocus=!0},updateCharacterLength(){this.characterLength=Y1(this.data).length},cleanPlaceholderSpans(t){if(!t)return t;let n;do n=t,t=t.replace(/<span contenteditable="false">([\s\S]*?)<\/span>/g,(e,o)=>o.replace(/[\u200B-\u200F\uFEFF]/g,""));while(n!==t);return t},patchListStylePosition(t){const n=document.createElement("div");return n.innerHTML=t,n.querySelectorAll('ul[style*="text-align"], ol[style*="text-align"], li[style*="text-align"]').forEach(e=>{const o=e.getAttribute("style")??"";if(!/list-style-position\s*:\s*inside/i.test(o)){const a=(o.trim().endsWith(";")||o.trim()===""?o:o+";")+" list-style-position: inside;";e.setAttribute("style",a)}}),n.innerHTML}},computed:{config(){const t={placeholder:this.data.length?"":this.placeholder,readOnly:this.readOnly?this.readOnly:this.disable,enable:this.enable,modules:{toolbar:{container:"#toolbar"},placeholder:{delimiters:["{{","}}"],placeholders:this.placeholders}}};return Object.assign(t,this.options)},characterOverLimit(){return!!this.characterLimit&&this.characterLength>this.characterLimit}},components:{QuillEditor:U1,IbIconButton:ut,IbAlert:Ft,IbCharacterCount:zr}},f0=["name","disabled","value"],h0={class:"ib-text-editor",ref:"wrapper"},p0={id:"toolbar",class:"toolbar",ref:"toolbar"},m0={class:"toolbar-group header-toolbar-group"},g0=r.createElementVNode("label",{class:"toolbar-group__label",for:"placeholders"},"Placeholder Selector",-1),y0={id:"placeholders",class:"ql-placeholder"},b0=r.createElementVNode("option",{selected:"",value:"default",class:"disabled"},null,-1),v0=["value"],_0=r.createStaticVNode('<div class="toolbar-group header-toolbar-group"><label class="toolbar-group__label" for="header-selector">Header Selector</label><select id="header-selector" class="ql-header"><option value="1"></option><option value="2"></option><option value="3"></option><option value="4"></option><option value="5"></option><option value="6"></option><option selected></option></select></div>',1),$0={class:"toolbar-group"},w0=r.createStaticVNode('<div class="toolbar-group"><label class="toolbar-group__label" for="background-selector">Background Selector</label><select id="background-selector" class="ql-background"></select><label class="toolbar-group__label" for="color-selector">Background Color Selector</label><select id="color-selector" class="ql-color"></select></div>',1),k0={class:"toolbar-group"},C0={class:"toolbar-group"},O0={class:"toolbar-group"};function E0(t,n,e,o,a,i){const s=r.resolveComponent("ib-character-count"),l=r.resolveComponent("ib-alert"),u=r.resolveComponent("QuillEditor"),d=r.resolveComponent("ib-icon-button");return r.openBlock(),r.createElementBlock("div",{class:r.normalizeClass(["textarea-wrapper",{error:i.characterOverLimit||e.error||e.errorMessage.length,focus:a.isFocus,disable:e.disable}])},[e.characterLimit?(r.openBlock(),r.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.characterLength},null,8,["character-limit","character-length"])):r.createCommentVNode("",!0),e.errorMessage.length?(r.openBlock(),r.createBlock(l,{key:1,class:"error-message"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.errorMessage),1)]),_:1})):r.createCommentVNode("",!0),r.withDirectives(r.createVNode(l,{class:"error-message"},{default:r.withCtx(()=>[r.createTextVNode(r.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[r.vShow,e.characterLimitErrorMessage.length&&i.characterOverLimit]]),r.createElementVNode("input",{name:e.name,type:"hidden",disabled:e.disable,value:a.data},null,8,f0),r.createElementVNode("div",{class:r.normalizeClass(["ib-text-editor-wrapper",{disable:e.disable}])},[r.createElementVNode("div",h0,[r.createVNode(u,{"aria-label":"text-editor",onTextChange:i.onChange,onBlur:i.onBlur,onFocus:i.onFocus,ref:"quill",content:a.data,"onUpdate:content":n[0]||(n[0]=p=>a.data=p),contentType:"html",options:i.config,modules:e.modules},null,8,["onTextChange","onBlur","onFocus","content","options","modules"])],512),r.createElementVNode("div",p0,[r.withDirectives(r.createElementVNode("div",m0,[g0,r.createElementVNode("select",y0,[b0,(r.openBlock(!0),r.createElementBlock(r.Fragment,null,r.renderList(e.placeholders,p=>(r.openBlock(),r.createElementBlock("option",{key:p.id,value:p.id},r.toDisplayString(p.label),9,v0))),128))])],512),[[r.vShow,e.placeholders.length]]),_0,r.createElementVNode("div",$0,[r.createVNode(d,{"aria-label":"button-bold",class:"toolbar-item ql-bold",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-italic",class:"toolbar-item ql-italic",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-underline",class:"toolbar-item ql-underline",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-strike",class:"toolbar-item ql-strike",kind:"ghost"})]),w0,r.createElementVNode("div",k0,[r.createVNode(d,{"aria-label":"button-code-block",class:"toolbar-item ql-code-block",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-link",class:"toolbar-item ql-link",kind:"ghost"})]),r.createElementVNode("div",C0,[r.createVNode(d,{"aria-label":"button-align",class:"toolbar-item ql-align",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-align-center",class:"ql-align toolbar-item",value:"center",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-align-right",class:"ql-align toolbar-item",value:"right",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-align-justify",class:"ql-align toolbar-item",value:"justify",kind:"ghost"})]),r.createElementVNode("div",O0,[r.createVNode(d,{"aria-label":"button-ordered-list",class:"ql-list toolbar-item",value:"ordered",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-bullet-list",class:"ql-list toolbar-item",value:"bullet",kind:"ghost"}),r.createVNode(d,{"aria-label":"button-alphabet-list",class:"ql-alphabet-list alphabet-list toolbar-item",kind:"ghost"})])],512)],2)],2)}const S0=_e(u0,[["render",E0]]),Fp="",x0={name:"IbTable",computed:{hasThead(){return!!this.$slots.thead}}},T0={class:"ib-table-wrapper"},N0={class:"ib-table"};function A0(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("div",T0,[r.createElementVNode("table",N0,[i.hasThead?r.renderSlot(t.$slots,"thead",{key:0},void 0,!0):r.createCommentVNode("",!0),r.createElementVNode("tbody",null,[r.renderSlot(t.$slots,"tbody",{},void 0,!0)])])])}const D0=_e(x0,[["render",A0],["__scopeId","data-v-5dceb760"]]),Hp="",P0={name:"IbRow"},I0={class:"ib-tr"};function B0(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("tr",I0,[r.renderSlot(t.$slots,"default",{ref:"row"})])}const M0=_e(P0,[["render",B0]]),zp="",L0={name:"IbCell",props:{fixed:{type:Boolean,default:!1}},data(){return{attr:{}}},mounted(){this.fixed&&this.freezeCol()},methods:{freezeCol(){const t=this.$el.getBoundingClientRect(),n=this.$el.closest("tr").getBoundingClientRect();this.attr.style||(this.attr.style={}),this.attr.style.minWidth=`${t.width}px`,this.attr.style.left=`${t.left-n.left}px`,this.attr.class+=" fixed"}}},R0={class:"cell"};function j0(t,n,e,o,a,i){return r.openBlock(),r.createElementBlock("td",r.mergeProps({onResize:n[0]||(n[0]=(...s)=>i.freezeCol&&i.freezeCol(...s)),class:"ib-cell"},this.attr),[r.createElementVNode("div",R0,[r.renderSlot(t.$slots,"default",{},void 0,!0)])],16)}const Ma=_e(L0,[["render",j0],["__scopeId","data-v-e74bb0f3"]]),Up="",V0={name:"IbCheckboxCell",props:{isChecked:{type:Boolean,default:!1},fixed:{type:Boolean,default:!1}},components:{IbCell:Ma,IbCheckbox:Fr}};function q0(t,n,e,o,a,i){const s=r.resolveComponent("ib-checkbox"),l=r.resolveComponent("ib-cell");return r.openBlock(),r.createBlock(l,{fixed:e.fixed,class:"ib-checkbox-cell"},{default:r.withCtx(()=>[r.createVNode(s,{"is-checked":e.isChecked},null,8,["is-checked"])]),_:1},8,["fixed"])}const F0=_e(V0,[["render",q0]]),bi=new ko,La=(t,n)=>{if(So(t)){const e=Object.keys(n.modifiers)[0]||n.arg,o={title:n.value.title||"",text:typeof n.value=="object"?n.value.text:n.value};bi.createTooltip(t,o,e)}},Ra=()=>{bi.destroyTooltip()},H0={mounted(t,n){t.addEventListener("mouseenter",()=>La(t,n)),t.addEventListener("mouseleave",Ra)},beforeUnmount(t,n){bi.destroyTooltip(),t.removeEventListener("mouseenter",()=>La(t,n)),t.removeEventListener("mouseleave",Ra)}};pe.IbAccordion=Wa,pe.IbAlert=Ft,pe.IbAvatar=Jl,pe.IbBadge=es,pe.IbBreadcrumbs=Tc,pe.IbButton=Hi,pe.IbButtonGroup=is,pe.IbCell=Ma,pe.IbCharactersCount=zr,pe.IbCheckbox=Fr,pe.IbCheckboxCell=F0,pe.IbCheckboxGroup=pu,pe.IbChips=lu,pe.IbDatePicker=of,pe.IbDropdown=ir,pe.IbDropdownItem=jr,pe.IbDropdownList=or,pe.IbFormGroup=uu,pe.IbIcon=Le,pe.IbIconButton=ut,pe.IbInput=qr,pe.IbLabel=kn,pe.IbLimitSelector=Ao,pe.IbModal=Zs,pe.IbPagination=Id,pe.IbPanel=tu,pe.IbPhoneInput=T1,pe.IbPopover=fo,pe.IbProgressBar=qd,pe.IbRadio=wu,pe.IbRow=M0,pe.IbSorting=$c,pe.IbSplitButton=Fs,pe.IbSplitButtonItem=Us,pe.IbStatusIndicator=Gd,pe.IbTab=uc,pe.IbTabDropdown=$o,pe.IbTable=D0,pe.IbTabs=sc,pe.IbTagPill=ls,pe.IbTextEditor=S0,pe.IbTextarea=Iu,pe.IbToggle=Eo,pe.IbToggleTip=mo,pe.IbTooltip=ln,pe.IbTreeSelect=No,pe.OutsideDirective=nr,pe.TextOverflowTooltipDirective=H0,pe.TooltipDirective=Wt,Object.defineProperty(pe,Symbol.toStringTag,{value:"Module"})});
232
+ `,a0=`
233
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
234
+ <path d="M16.25 3.125H3.75C2.71447 3.125 1.875 3.96447 1.875 5V15C1.875 16.0355 2.71447 16.875 3.75 16.875H16.25C17.2855 16.875 18.125 16.0355 18.125 15V5C18.125 3.96447 17.2855 3.125 16.25 3.125Z" stroke="#1A1A1A" stroke-width="1.25" stroke-linejoin="round"/>
235
+ <path d="M13.125 8.125C13.8154 8.125 14.375 7.56536 14.375 6.875C14.375 6.18464 13.8154 5.625 13.125 5.625C12.4346 5.625 11.875 6.18464 11.875 6.875C11.875 7.56536 12.4346 8.125 13.125 8.125Z" stroke="#1A1A1A" stroke-width="1.25" stroke-miterlimit="10"/>
236
+ <path d="M8.75 16.8741L13.568 12.0561C13.7883 11.8353 14.0832 11.7049 14.3948 11.6904C14.7064 11.676 15.0121 11.7785 15.252 11.978L18.125 14.3741M11.875 13.1159L8.33359 9.58111C8.10824 9.35581 7.80535 9.22508 7.48684 9.21564C7.16832 9.2062 6.85822 9.31876 6.61992 9.53032L1.875 13.7491L11.875 13.1159Z" stroke="#1A1A1A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
237
+ </svg>
238
+ `,Ra=Ee.import("attributors/class/size");Ra.whitelist=["12px","14px","16px","20px","24px","36px","48px"];const Va=Ee.import("attributors/style/size");Va.whitelist=["12px","14px","16px","20px","24px","36px","48px"];function ja(){Ee.register(Ee.import("attributors/attribute/direction"),!0),Ee.register(Ee.import("attributors/class/align"),!0),Ee.register(Ee.import("attributors/class/direction"),!0),Ee.register(Ee.import("attributors/class/font"),!0),Ee.register(Ra,!0),Ee.register(Ee.import("attributors/style/align"),!0),Ee.register(Ee.import("attributors/style/background"),!0),Ee.register(Ee.import("attributors/style/color"),!0),Ee.register(Ee.import("attributors/style/direction"),!0),Ee.register(Ee.import("attributors/style/font"),!0),Ee.register(Va,!0),l0(),s0()}function l0(){const t=Ee.import("ui/icons");t.bold=Gp,t.italic=Wp,t.underline=Yp,t.strike=Zp,t["code-block"]=Xp,t.link=Jp,t.align[""]=Qp,t.align.center=e0,t.align.right=t0,t.align.justify=n0,t.list.ordered=i0,t.list.bullet=r0,t["alphabet-list"]=o0,t.image=a0,Ee.register(t)}function s0(){Ee.register({"formats/alphabet-list":Kt,"formats/alphabet-list/item":wi,"formats/custom-image":br})}Ee.register("modules/placeholder",qp(Ee,{className:"ql-placeholder-content"})),Ee.debug("error"),ja();const c0={name:"IbTextEditor",props:{name:{type:String,required:!0},placeholder:{type:String,default:""},placeholders:{type:Array,default:()=>[]},modelValue:{type:String},content:{type:String,default:""},readOnly:{type:Boolean,default:!1},enable:{type:Boolean,default:!0},modules:{type:[Object,Array],default:()=>{}},options:{type:Object,default:()=>{}},characterLimit:{type:[String,Number],default:null},error:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""},hiddenElements:{type:Array,default:()=>["font-size","image"]}},emits:["onOverLimitHandler","update:modelValue","change","blur"],mounted(){const t=this.$refs.wrapper.querySelector("input[data-link]");t.dataset.link="Enter Link",this.updateCharacterLength()},data(){return{data:this.modelValue?this.modelValue:this.content,characterLength:0,isFocus:!1}},watch:{content(t){this.data=t},data(t){const i=this.cleanPlaceholderSpans(t);this.$emit("update:modelValue",i)},characterOverLimit(t){this.$emit("onOverLimitHandler",t)}},methods:{onChange(){let t=this.cleanPlaceholderSpans(this.data);this.data=this.patchListStylePosition(t),this.updateCharacterLength(),this.$emit("change",this.data)},onBlur(t){this.$emit("blur",this.cleanPlaceholderSpans(this.data),t),this.isFocus=!1},onFocus(){this.isFocus=!0},updateCharacterLength(){this.characterLength=Rp(this.data).length},cleanPlaceholderSpans(t){if(!t)return t;let i;do i=t,t=t.replace(/<span contenteditable="false">([\s\S]*?)<\/span>/g,(e,o)=>o.replace(/[\u200B-\u200F\uFEFF]/g,""));while(i!==t);return t},patchListStylePosition(t){const i=document.createElement("div");return i.innerHTML=t,i.querySelectorAll('ul[style*="text-align"], ol[style*="text-align"], li[style*="text-align"]').forEach(e=>{const o=e.getAttribute("style")??"";if(!/list-style-position\s*:\s*inside/i.test(o)){const a=(o.trim().endsWith(";")||o.trim()===""?o:o+";")+" list-style-position: inside;";e.setAttribute("style",a)}}),i.innerHTML}},computed:{config(){const t={placeholder:this.data.length?"":this.placeholder,readOnly:this.readOnly?this.readOnly:this.disable,enable:this.enable,modules:{toolbar:{container:"#toolbar",handlers:{image:this.imageButtonClickHandler}},placeholder:{delimiters:["{{","}}"],placeholders:this.placeholders}}};return Object.assign(t,this.options)},characterOverLimit(){return!!this.characterLimit&&this.characterLength>this.characterLimit},uid(){return Math.random().toString(36).substr(2,9)}},components:{QuillEditor:up,IbIconButton:Xe,IbAlert:jt,IbCharacterCount:Yi,Toolbar:Pa}},d0=["name","disabled","value"],u0={class:"ib-text-editor",ref:"wrapper"};function f0(t,i,e,o,a,r){const d=n.resolveComponent("ib-character-count"),c=n.resolveComponent("ib-alert"),p=n.resolveComponent("QuillEditor"),s=n.resolveComponent("Toolbar");return n.openBlock(),n.createElementBlock("div",{class:n.normalizeClass(["textarea-wrapper",{error:r.characterOverLimit||e.error||e.errorMessage.length,focus:a.isFocus,disable:e.disable}])},[e.characterLimit?(n.openBlock(),n.createBlock(d,{key:0,"character-limit":e.characterLimit,"character-length":a.characterLength},null,8,["character-limit","character-length"])):n.createCommentVNode("",!0),e.errorMessage.length?(n.openBlock(),n.createBlock(c,{key:1,class:"error-message"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.errorMessage),1)]),_:1})):n.createCommentVNode("",!0),n.withDirectives(n.createVNode(c,{class:"error-message"},{default:n.withCtx(()=>[n.createTextVNode(n.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[n.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),n.createElementVNode("input",{name:e.name,type:"hidden",disabled:e.disable,value:a.data},null,8,d0),n.createElementVNode("div",{class:n.normalizeClass(["ib-text-editor-wrapper",{disable:e.disable}])},[n.createElementVNode("div",u0,[n.createVNode(p,{"aria-label":"text-editor",onTextChange:r.onChange,onBlur:r.onBlur,onFocus:r.onFocus,ref:"quill",content:a.data,"onUpdate:content":i[0]||(i[0]=h=>a.data=h),contentType:"html",options:r.config,modules:e.modules},null,8,["onTextChange","onBlur","onFocus","content","options","modules"])],512),n.createVNode(s,{id:"toolbar",class:"toolbar",ref:"toolbar",placeholders:e.placeholders,uid:r.uid,"hidden-elements":e.hiddenElements},null,8,["placeholders","uid","hidden-elements"])],2)],2)}const h0=be(c0,[["render",f0],["__scopeId","data-v-6f456437"]]),p0={name:"IbTable",computed:{hasThead(){return!!this.$slots.thead}}},m0={class:"ib-table-wrapper"},g0={class:"ib-table"};function y0(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("div",m0,[n.createElementVNode("table",g0,[r.hasThead?n.renderSlot(t.$slots,"thead",{key:0},void 0,!0):n.createCommentVNode("",!0),n.createElementVNode("tbody",null,[n.renderSlot(t.$slots,"tbody",{},void 0,!0)])])])}const b0=be(p0,[["render",y0],["__scopeId","data-v-5dceb760"]]),v0={name:"IbRow"},_0={class:"ib-tr"};function $0(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("tr",_0,[n.renderSlot(t.$slots,"default",{ref:"row"})])}const w0=be(v0,[["render",$0]]),k0={name:"IbCell",props:{fixed:{type:Boolean,default:!1}},data(){return{attr:{}}},mounted(){this.fixed&&this.freezeCol()},methods:{freezeCol(){const t=this.$el.getBoundingClientRect(),i=this.$el.closest("tr").getBoundingClientRect();this.attr.style||(this.attr.style={}),this.attr.style.minWidth=`${t.width}px`,this.attr.style.left=`${t.left-i.left}px`,this.attr.class+=" fixed"}}},C0={class:"cell"};function O0(t,i,e,o,a,r){return n.openBlock(),n.createElementBlock("td",n.mergeProps({onResize:i[0]||(i[0]=(...d)=>r.freezeCol&&r.freezeCol(...d)),class:"ib-cell"},this.attr),[n.createElementVNode("div",C0,[n.renderSlot(t.$slots,"default",{},void 0,!0)])],16)}const Fa=be(k0,[["render",O0],["__scopeId","data-v-e4ce74a7"]]),E0={name:"IbCheckboxCell",props:{isChecked:{type:Boolean,default:!1},fixed:{type:Boolean,default:!1}},components:{IbCell:Fa,IbCheckbox:Ki}};function S0(t,i,e,o,a,r){const d=n.resolveComponent("ib-checkbox"),c=n.resolveComponent("ib-cell");return n.openBlock(),n.createBlock(c,{fixed:e.fixed,class:"ib-checkbox-cell"},{default:n.withCtx(()=>[n.createVNode(d,{"is-checked":e.isChecked},null,8,["is-checked"])]),_:1},8,["fixed"])}const x0=be(E0,[["render",S0]]);fe.IbAccordion=Ja,fe.IbAlert=jt,fe.IbAvatar=ls,fe.IbBadge=ds,fe.IbBreadcrumbs=Ic,fe.IbButton=Hr,fe.IbButtonGroup=ps,fe.IbCell=Fa,fe.IbCharactersCount=Yi,fe.IbCheckbox=Ki,fe.IbCheckboxCell=x0,fe.IbCheckboxGroup=Ru,fe.IbChips=Au,fe.IbDatePicker=Af,fe.IbDropdown=si,fe.IbDropdownItem=qi,fe.IbDropdownList=Cn,fe.IbFormGroup=Iu,fe.IbIcon=Le,fe.IbIconButton=Xe,fe.IbInput=Ui,fe.IbLabel=On,fe.IbLimitSelector=Vo,fe.IbModal=oc,fe.IbPagination=ru,fe.IbPanel=Ou,fe.IbPhoneInput=tp,fe.IbPopover=ho,fe.IbProgressBar=uu,fe.IbRadio=Ku,fe.IbRow=w0,fe.IbSelect=Gi,fe.IbSorting=Sc,fe.IbSplitButton=Js,fe.IbSplitButtonItem=ec,fe.IbStatusIndicator=yu,fe.IbTab=vc,fe.IbTabDropdown=Eo,fe.IbTable=b0,fe.IbTabs=gc,fe.IbTagPill=ys,fe.IbTextEditor=h0,fe.IbTextEditorToolbar=Pa,fe.IbTextarea=of,fe.IbToggle=Po,fe.IbToggleTip=_o,fe.IbTooltip=_n,fe.IbTreeSelect=Gi,fe.OutsideDirective=ai,fe.TextOverflowTooltipDirective=No,fe.TooltipDirective=St,fe.setupTextEditor=ja,Object.defineProperty(fe,Symbol.toStringTag,{value:"Module"})}));