From b8b72bc1404e6bc926106d500415d275d35e8387 Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 10:40:48 +0100 Subject: [PATCH 1/8] chore(docs): Update hero colors --- demo/src/pages/Index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/src/pages/Index.vue b/demo/src/pages/Index.vue index 16e87f8..7a36148 100644 --- a/demo/src/pages/Index.vue +++ b/demo/src/pages/Index.vue @@ -125,8 +125,8 @@ a { .page-header { color: #fff; text-align: center; - background-color: #592496; - background-image: linear-gradient(120deg, #d88e04, #592496); } + background-color: #ffffaa; + background-image: linear-gradient(120deg, #1780f7, #4df3ff); } @media screen and (min-width: 64em) { .page-header { From 1f27be110612ed05076fe7a139f6599d062105b0 Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 16:29:02 +0100 Subject: [PATCH 2/8] feat(QScroller): add public methods canMovePrevious, canMoveNext, previous, next, getItemIndex and getCurrentIndex --- src/component/QScroller.js | 40 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/src/component/QScroller.js b/src/component/QScroller.js index 4b2604e..8495348 100644 --- a/src/component/QScroller.js +++ b/src/component/QScroller.js @@ -61,8 +61,43 @@ export default Vue.extend({ }, methods: { - emitValue () { - this.$emit('input', this.value) + canMovePrevious () { + if (this.$refs.scroller) { + return this.$refs.scroller.canScroll(-1) + } + return false + }, + + canMoveNext () { + if (this.$refs.scroller) { + return this.$refs.scroller.canScroll(1) + } + return false + }, + + previous () { + if (this.$refs.scroller) { + return this.$refs.scroller.move(-1) + } + return false + }, + + next () { + if (this.$refs.scroller) { + return this.$refs.scroller.move(1) + } + return false + }, + + getItemIndex (value) { + if (this.$refs.scroller) { + return this.$refs.scroller.getItemIndex(value) + } + return -1 + }, + + getCurrentIndex () { + return this.getItemIndex(this.value) }, onResize () { @@ -132,6 +167,7 @@ export default Vue.extend({ __renderScroller (h) { return h(ScrollerBase, { + ref: 'scroller', props: { value: this.value, items: this.items, From 683d99dac27101f7018931161ab154781888a224 Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 16:29:42 +0100 Subject: [PATCH 3/8] feat(docs): Update QScroller documentation --- demo/src/markdown/scroller.md | 37 ++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/demo/src/markdown/scroller.md b/demo/src/markdown/scroller.md index 2e44d09..44c49fe 100644 --- a/demo/src/markdown/scroller.md +++ b/demo/src/markdown/scroller.md @@ -104,12 +104,12 @@ Then, your `v-model` variable should contain a `value` from your list for an ini | Vue Property | Type | Default | Description | | --- | :---: | :---: | --- | -| border-color | String | #ccc | This is the color of outside border when `no-border` is not `true`. This **has** to be a css color (not a Quasar color) or css color name | -| bar-color | String | #ccc | This is the color of the middle bars. This **has** to be a css color (not a Quasar color) or css color name | -| color | String | white | This is the color of the text. Applies to header and footer. It can be a css color or from the Quasar color palette | -| background-color | String | primary | This is the color of the background. Applies to header and footer. It can be a css color or from the Quasar color palette | -| inner-color | String | primary | This is the color of the scroller text. It can be a css color or from the Quasar color palette | -| inner-background-color | String | white | This is the color of the scroller background. It can be a css color or from the Quasar color palette | +| border-color | String | #ccc | This is the color of outside border when `no-border` property is not `true`. This **has** to be a css color (not a Quasar color) or css color name (see note below) | +| bar-color | String | #ccc | This is the color of the middle bars. This **has** to be a css color (not a Quasar color) or css color name (see note below) | +| color | String | white | This is the color of the text. Applies to header and footer. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette | +| background-color | String | primary | This is the color of the background. Applies to header and footer. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette | +| inner-color | String | primary | This is the color of the scroller text. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette | +| inner-background-color | String | white | This is the color of the scroller background. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette | | dense | Boolean | | If the component should be in dense mode | | disable | Boolean | | If the component should be disabled | | rounded-border | Boolean | | If the component should have rounded corners | @@ -132,17 +132,26 @@ Then, your `v-model` variable should contain a `value` from your list for an ini | Property | Type | Default | Description | | :--- | :---: | :---: | --- | +| input | | | | +| close | | | Occurs when the footer button is clicked, usually used to close the component (in dev land) when used in a `QPopupProxy` | ### QScroller Vue Methods -| Property | Type | Default | Description | -| :--- | :---: | :---: | --- | - +| Property | Arg | Description | +| :--- | :---: | --- | +| canMovePrevious | |Returns true if can move to the previous item, otherwise returns false | +| canMoveNext | |Returns true if can move to the next item, otherwise returns false | +| previous | |Move to the previous item | +| next | |Move to the next item | +| getItemIndex | value |Returns the index of the passed value, otherwise returns -1 on error or not found| +| getCurrentIndex | | Returns the index of the current selection, otherwise returns -1 on error or not found ### QScroller Vue Slots -| Property | Type | Default | Description | +| Property | Arg | Description | | :--- | :---: | :---: | --- | +| header | value | Header scoped slot | +| footer | value | Footer scoped slot | ## QTimeScroller Vue Properties @@ -161,10 +170,10 @@ Then, your `v-model` variable should contain a `value` from your list for an ini | disabled-minutes | Array | [ ] | Minutes that should be disabled (always use 0 through to 59) | | no-hours | Boolean | | Do not show the Hours scroller | | no-minutes | Boolean | | Do not show the Minutes scroller | -| hours | Array | | Array of hours to be displayed | -| minutes | Array | | Array of minutes to be displayed | -| min-time | String | '00:00' | Any time before this time will be disabled | -| max-time | String | '24:00' | Any time after this time will be disabled | +| hours | Array | | (TBD) Array of hours to be displayed | +| minutes | Array | | (TBD) Array of minutes to be displayed | +| min-time | String | '00:00' | (TBD) Any time before this time will be disabled | +| max-time | String | '24:00' | (TBD) Any time after this time will be disabled | ## QTimeRangeScroller Vue Properties From 280c5695c87e814c57c458df7653ce685e9eb9cf Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 16:29:59 +0100 Subject: [PATCH 4/8] chore: update demo --- docs/css/011ca09e.86ce1ae7.css | 1 - docs/css/011ca09e.92605a6a.css | 1 + docs/index.html | 2 +- docs/js/011ca09e.191e0b1a.js | 1 + docs/js/011ca09e.2225e835.js | 1 - docs/js/{runtime.86674c39.js => runtime.8658ed30.js} | 2 +- docs/js/{vendor.61d9d784.js => vendor.a573ce0a.js} | 10 +++++----- 7 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 docs/css/011ca09e.86ce1ae7.css create mode 100644 docs/css/011ca09e.92605a6a.css create mode 100644 docs/js/011ca09e.191e0b1a.js delete mode 100644 docs/js/011ca09e.2225e835.js rename docs/js/{runtime.86674c39.js => runtime.8658ed30.js} (94%) rename docs/js/{vendor.61d9d784.js => vendor.a573ce0a.js} (77%) diff --git a/docs/css/011ca09e.86ce1ae7.css b/docs/css/011ca09e.86ce1ae7.css deleted file mode 100644 index 4d0ecac..0000000 --- a/docs/css/011ca09e.86ce1ae7.css +++ /dev/null @@ -1 +0,0 @@ -.q-markdown--table tr:nth-child(odd){background-color:#f2f2f2}.q-markdown code,.q-markdown pre{background-color:#bfe0fb!important}.q-markdown pre{background-image:linear-gradient(transparent 3%,#bfe0fb 0)!important;color:#555}.q-markdown--code__inner{border-left:2px solid #afa0ff!important}.token.entity,.token.operator,.token.url,.token.variable{color:#a67f59;background:transparent!important}body{padding:0;margin:0;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.5;background-color:#f8f8ff;color:#606c71}a{color:#1e6bb8;text-decoration:none}a:hover{text-decoration:underline}.btn{display:inline-block;margin-bottom:1rem;color:hsla(0,0%,100%,.7);background-color:hsla(0,0%,100%,.08);border-color:hsla(0,0%,100%,.2);border-style:solid;border-width:1px;border-radius:.3rem;transition:color .2s,background-color .2s,border-color .2s}.btn+.btn{margin-left:1rem}.btn:hover{color:hsla(0,0%,100%,.8);text-decoration:none;background-color:hsla(0,0%,100%,.2);border-color:hsla(0,0%,100%,.3)}@media screen and (min-width:64em){.btn{padding:.75rem 1rem}}@media screen and (min-width:42em) and (max-width:64em){.btn{padding:.6rem .9rem;font-size:.9rem}}@media screen and (max-width:42em){.btn{display:block;width:100%;padding:.75rem;font-size:.9rem}.btn+.btn{margin-top:1rem;margin-left:0}}.page-header{color:#fff;text-align:center;background-color:#592496;background-image:linear-gradient(120deg,#d88e04,#592496)}@media screen and (min-width:64em){.page-header{padding:5rem 6rem}}@media screen and (min-width:42em) and (max-width:64em){.page-header{padding:3rem 4rem}}@media screen and (max-width:42em){.page-header{padding:2rem 1rem}}.project-name{font-weight:700;margin-top:0;margin-bottom:.1rem}@media screen and (min-width:64em){.project-name{font-size:3.25rem}}@media screen and (min-width:42em) and (max-width:64em){.project-name{font-size:2.25rem}}@media screen and (max-width:42em){.project-name{font-size:1.75rem}}.project-tagline{margin-bottom:2rem;font-weight:400;opacity:.7}@media screen and (min-width:64em){.project-tagline{font-size:1.25rem}}@media screen and (min-width:42em) and (max-width:64em){.project-tagline{font-size:1.15rem}}@media screen and (max-width:42em){.project-tagline{font-size:1rem}}.main-content :first-child{margin-top:0}.main-content img{max-width:100%}.main-content h1,.main-content h2,.main-content h3,.main-content h4,.main-content h5,.main-content h6{margin-top:2rem;margin-bottom:1rem;font-weight:400;color:#159957}.main-content p{margin-bottom:1em}.main-content code{padding:2px 4px;font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:.9rem;color:#383e41;background-color:#f3f6fa;border-radius:.3rem}.main-content pre{padding:.8rem;margin-top:0;margin-bottom:1rem;font:1rem Consolas,Liberation Mono,Menlo,Courier,monospace;color:#567482;word-wrap:normal;background-color:#f3f6fa;border:1px solid #dce6f0;border-radius:.3rem}.main-content pre>code{padding:0;margin:0;font-size:.9rem;color:#567482;word-break:normal;white-space:pre;background:transparent;border:0}.main-content .highlight{margin-bottom:1rem}.main-content .highlight pre{margin-bottom:0;word-break:normal}.main-content .highlight pre,.main-content pre{padding:.8rem;overflow:auto;font-size:.9rem;line-height:1.45;border-radius:.3rem}.main-content pre code,.main-content pre tt{display:inline;max-width:none;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.main-content pre code:after,.main-content pre code:before,.main-content pre tt:after,.main-content pre tt:before{content:normal}.main-content ol,.main-content ul{margin-top:0}.main-content blockquote{padding:0 1rem;margin-left:0;color:#819198;border-left:.3rem solid #dce6f0}.main-content blockquote>:first-child{margin-top:0}.main-content blockquote>:last-child{margin-bottom:0}.main-content table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.main-content table th{font-weight:700}.main-content table td,.main-content table th{padding:.5rem 1rem;border:1px solid #e9ebec}.main-content dl{padding:0}.main-content dl dt{padding:0;margin-top:1rem;font-size:1rem;font-weight:700}.main-content dl dd{padding:0;margin-bottom:1rem}.main-content hr{height:2px;padding:0;margin:1rem 0;background-color:#eff0f1;border:0}@media screen and (min-width:64em){.main-content{max-width:64rem;padding:2rem 6rem;margin:0 auto;font-size:1.1rem}}@media screen and (min-width:42em) and (max-width:64em){.main-content{padding:2rem 4rem;font-size:1.1rem}}@media screen and (max-width:42em){.main-content{padding:2rem 1rem;font-size:1rem}}.site-footer{padding-top:2rem;margin-top:2rem;border-top:1px solid #eff0f1}.site-footer-owner{display:block;font-weight:700}.site-footer-credits{color:#819198}@media screen and (min-width:64em){.site-footer{font-size:1rem}}@media screen and (min-width:42em) and (max-width:64em){.site-footer{font-size:1rem}}@media screen and (max-width:42em){.site-footer{font-size:.9rem}} \ No newline at end of file diff --git a/docs/css/011ca09e.92605a6a.css b/docs/css/011ca09e.92605a6a.css new file mode 100644 index 0000000..30b8478 --- /dev/null +++ b/docs/css/011ca09e.92605a6a.css @@ -0,0 +1 @@ +.q-markdown--table tr:nth-child(odd){background-color:#f2f2f2}.q-markdown code,.q-markdown pre{background-color:#bfe0fb!important}.q-markdown pre{background-image:linear-gradient(transparent 3%,#bfe0fb 0)!important;color:#555}.q-markdown--code__inner{border-left:2px solid #afa0ff!important}.token.entity,.token.operator,.token.url,.token.variable{color:#a67f59;background:transparent!important}body{padding:0;margin:0;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.5;background-color:#f8f8ff;color:#606c71}a{color:#1e6bb8;text-decoration:none}a:hover{text-decoration:underline}.btn{display:inline-block;margin-bottom:1rem;color:hsla(0,0%,100%,.7);background-color:hsla(0,0%,100%,.08);border-color:hsla(0,0%,100%,.2);border-style:solid;border-width:1px;border-radius:.3rem;transition:color .2s,background-color .2s,border-color .2s}.btn+.btn{margin-left:1rem}.btn:hover{color:hsla(0,0%,100%,.8);text-decoration:none;background-color:hsla(0,0%,100%,.2);border-color:hsla(0,0%,100%,.3)}@media screen and (min-width:64em){.btn{padding:.75rem 1rem}}@media screen and (min-width:42em) and (max-width:64em){.btn{padding:.6rem .9rem;font-size:.9rem}}@media screen and (max-width:42em){.btn{display:block;width:100%;padding:.75rem;font-size:.9rem}.btn+.btn{margin-top:1rem;margin-left:0}}.page-header{color:#fff;text-align:center;background-color:#ffa;background-image:linear-gradient(120deg,#1780f7,#4df3ff)}@media screen and (min-width:64em){.page-header{padding:5rem 6rem}}@media screen and (min-width:42em) and (max-width:64em){.page-header{padding:3rem 4rem}}@media screen and (max-width:42em){.page-header{padding:2rem 1rem}}.project-name{font-weight:700;margin-top:0;margin-bottom:.1rem}@media screen and (min-width:64em){.project-name{font-size:3.25rem}}@media screen and (min-width:42em) and (max-width:64em){.project-name{font-size:2.25rem}}@media screen and (max-width:42em){.project-name{font-size:1.75rem}}.project-tagline{margin-bottom:2rem;font-weight:400;opacity:.7}@media screen and (min-width:64em){.project-tagline{font-size:1.25rem}}@media screen and (min-width:42em) and (max-width:64em){.project-tagline{font-size:1.15rem}}@media screen and (max-width:42em){.project-tagline{font-size:1rem}}.main-content :first-child{margin-top:0}.main-content img{max-width:100%}.main-content h1,.main-content h2,.main-content h3,.main-content h4,.main-content h5,.main-content h6{margin-top:2rem;margin-bottom:1rem;font-weight:400;color:#159957}.main-content p{margin-bottom:1em}.main-content code{padding:2px 4px;font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:.9rem;color:#383e41;background-color:#f3f6fa;border-radius:.3rem}.main-content pre{padding:.8rem;margin-top:0;margin-bottom:1rem;font:1rem Consolas,Liberation Mono,Menlo,Courier,monospace;color:#567482;word-wrap:normal;background-color:#f3f6fa;border:1px solid #dce6f0;border-radius:.3rem}.main-content pre>code{padding:0;margin:0;font-size:.9rem;color:#567482;word-break:normal;white-space:pre;background:transparent;border:0}.main-content .highlight{margin-bottom:1rem}.main-content .highlight pre{margin-bottom:0;word-break:normal}.main-content .highlight pre,.main-content pre{padding:.8rem;overflow:auto;font-size:.9rem;line-height:1.45;border-radius:.3rem}.main-content pre code,.main-content pre tt{display:inline;max-width:none;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.main-content pre code:after,.main-content pre code:before,.main-content pre tt:after,.main-content pre tt:before{content:normal}.main-content ol,.main-content ul{margin-top:0}.main-content blockquote{padding:0 1rem;margin-left:0;color:#819198;border-left:.3rem solid #dce6f0}.main-content blockquote>:first-child{margin-top:0}.main-content blockquote>:last-child{margin-bottom:0}.main-content table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.main-content table th{font-weight:700}.main-content table td,.main-content table th{padding:.5rem 1rem;border:1px solid #e9ebec}.main-content dl{padding:0}.main-content dl dt{padding:0;margin-top:1rem;font-size:1rem;font-weight:700}.main-content dl dd{padding:0;margin-bottom:1rem}.main-content hr{height:2px;padding:0;margin:1rem 0;background-color:#eff0f1;border:0}@media screen and (min-width:64em){.main-content{max-width:64rem;padding:2rem 6rem;margin:0 auto;font-size:1.1rem}}@media screen and (min-width:42em) and (max-width:64em){.main-content{padding:2rem 4rem;font-size:1.1rem}}@media screen and (max-width:42em){.main-content{padding:2rem 1rem;font-size:1rem}}.site-footer{padding-top:2rem;margin-top:2rem;border-top:1px solid #eff0f1}.site-footer-owner{display:block;font-weight:700}.site-footer-credits{color:#819198}@media screen and (min-width:64em){.site-footer{font-size:1rem}}@media screen and (min-width:42em) and (max-width:64em){.site-footer{font-size:1rem}}@media screen and (max-width:42em){.site-footer{font-size:.9rem}} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index fb73b01..aabb6a7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -QScroller demo app
\ No newline at end of file +QScroller demo app
\ No newline at end of file diff --git a/docs/js/011ca09e.191e0b1a.js b/docs/js/011ca09e.191e0b1a.js new file mode 100644 index 0000000..987bf59 --- /dev/null +++ b/docs/js/011ca09e.191e0b1a.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["011ca09e"],{"3e63":function(e,n,r){"use strict";var o=r("dd4f"),t=r.n(o);t.a},"8b24":function(e,n,r){"use strict";r.r(n);var o=function(){var e=this,n=e.$createElement,r=e._self._c||n;return r("div",[e._m(0),r("main",{staticClass:"flex flex-start justify-center inset-shadow"},[r("div",{staticClass:"q-pa-md col-12-sm col-8-md col-6-lg inset-shadow",staticStyle:{width:"100%",height:"3px"}}),r("div",{staticClass:"q-pa-md col-12-sm col-8-md col-6-lg bg-white shadow-1",staticStyle:{"max-width":"800px",width:"100%"}},[r("q-markdown",{attrs:{src:e.markdown,toc:""},on:{data:e.onToc}})],1)])])},t=[function(){var e=this,n=e.$createElement,r=e._self._c||n;return r("section",{staticClass:"page-header"},[r("h1",{staticClass:"project-name"},[e._v("QScroller")]),r("h2",{staticClass:"project-tagline"}),r("a",{staticClass:"btn",attrs:{href:"https://github.com/quasarframework/app-extension-qscroller",target:"_blank"}},[e._v("View on GitHub")]),r("a",{staticClass:"btn",attrs:{href:"/app-extension-qscroller/#/demo",target:"_blank"}},[e._v("Demo")])])}],a="QScroller Components\n===\n\n> Please note, this is currently a work-in-progress (WIP) and not yet release to NPM as an installable package.\n\n**QScroller** is a [Quasar App Extension](https://v1.quasar-framework.org/app-extensions/introduction). There are many components avalable:\n- QScroller\n- QTimeScroller\n- QTimeRangeScroller\n- QDateScroller\n- QDateRangeScroller\n- QDateTimeScroller\n- QDateTimeRangeScroller\n\n# Features\n\n# Install\nTo add this App Extension to your Quasar application, run the following (in your Quasar app folder):\n```\nquasar ext add @quasar/qscroller\n```\n\n# Uninstall\nTo remove this App Extension from your Quasar application, run the following (in your Quasar app folder):\n```\nquasar ext remove @quasar/qscroller\n```\n\n# Describe\nYou can use:\n- `quasar describe QScroller`\n- `quasar describe QTimeScroller`\n- `quasar describe QTimeRangeScroller`\n- `quasar describe QDateScroller`\n- `quasar describe QDateRangeScroller`\n- `quasar describe QDateTimeScroller`\n- `quasar describe QDateTimeRangeScroller`\n\n# Demo Project\nCan be found [here](https://github.com/quasarframework/app-extension-qscroller/tree/master/demo).\n\n# Demo\nCan be found [here](/app-extension-qscroller/#/demo).\n\n---\n\n# Working with QScroller\n\nIn order to get the best mileage from QScroller and all of its components it is important to understand all aspects which will be described below.\n\nFirst and foremost, it should also be known that the native date format used internally, and with the v-model, is `YYYY-mm-dd` to avoid confusion with positioning of the day and month in other date formats. All incoming and outgoing dates will use this format.\n\nThe default locale of QDateTimeScroller is **en-us**. This can easily be changed via the `locale` property. Any area of each scroller that displays text and numbers is locale-aware.\n\n## QScroller\n\n![QScroller](statics/q-scroller.png =200x200)\n\nThe QScroller component is made to take any type of arbitray data and display it in a list-like manner so an item can be selected. All other scrollers have this base functionality. Some scrollers, will be based on multiple instances of this functionality.\n\nEach row in a scroller instance is a **QBtn**. As a result of this, you have all of the properties available to you as you would for QBtn. However, this only applies to QScroller as the other scrollers generate data for selection (being based on dates and times).\n\nThe data pushed into the `items` propery of the QScroller component is an array of objects, that looks like the properties for QBtn. Only the `value` property is required if you pass in an array of objects. Alternatively, you can pass in an array of strings if you don't care about special handling and just want the default handling.\n\nExample:\n\n```js\ndata: [\n { value: 'Anteater', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Baboons', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Cheetah', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Chimpanzee', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n ...\n]\n```\n\nThen, your `v-model` variable should contain a `value` from your list for an initial selection. And, the `v-model` variable will be populated with `value` data upon user selection.\n\n## QTimeScroller\n\n![QTimeScroller](statics/q-time-scroller.png =200x200) ![QTimeScroller-ampm](statics/q-time-scroller-ampm.png =200x200)\n\n## QTimeRangeScroller\n\n![QTimeRangeScroller](statics/q-time-range-scroller.png =200x200) ![QTimeRangeScroller-ampm](statics/q-time-range-scroller-ampm.png =200x200)\n\n## QDateScroller\n\n![QDateScroller](statics/q-date-scroller.png =200x200)\n\n## QDateRangeScroller\n\n## QDateTimeScroller\n\n![QDateTimeScroller](statics/q-date-time-scroller.png =300x300) ![QDateTimeScroller-ampm](statics/q-date-time-scroller-ampm.png =300x300)\n\n## Locale\n\n## Colorizing\n\n# API\n\n## Common Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| border-color | String | #ccc | This is the color of outside border when `no-border` property is not `true`. This **has** to be a css color (not a Quasar color) or css color name (see note below) |\n| bar-color | String | #ccc | This is the color of the middle bars. This **has** to be a css color (not a Quasar color) or css color name (see note below) |\n| color | String | white | This is the color of the text. Applies to header and footer. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette |\n| background-color | String | primary | This is the color of the background. Applies to header and footer. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette |\n| inner-color | String | primary | This is the color of the scroller text. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette |\n| inner-background-color | String | white | This is the color of the scroller background. It can be a css color `(#|((rgb|hsl)a)` or from the Quasar color palette |\n| dense | Boolean | | If the component should be in dense mode |\n| disable | Boolean | | If the component should be disabled |\n| rounded-border | Boolean | | If the component should have rounded corners |\n| no-border | Boolean | | If the component should not have a border |\n| no-shadow | Boolean | | If the component should not display shadow when header/footer are displayed |\n| no-header | Boolean | | If the component should not display the header |\n| no-footer | Boolean | | If the component should not display the footer |\n\n> Note: When `css color or from the Quasar color palette` is used, you cannot use css named colors (ex: ghostwhite) as it will be interpreted as a Quasar color.\n\n## QScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | (required) v-model |\n| items | Array | | (required) The items to display in the scroller |\n| disabled-items | Array | | Items in the list that are to be disabled |\n\n### QScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n| input | | | |\n| close | | | Occurs when the footer button is clicked, usually used to close the component (in dev land) when used in a `QPopupProxy` |\n\n### QScroller Vue Methods\n\n| Property | Arg | Description |\n| :--- | :---: | --- |\n| canMovePrevious | |Returns true if can move to the previous item, otherwise returns false |\n| canMoveNext | |Returns true if can move to the next item, otherwise returns false |\n| previous | |Move to the previous item |\n| next | |Move to the next item |\n| getItemIndex | value |Returns the index of the passed value, otherwise returns -1 on error or not found|\n| getCurrentIndex | | Returns the index of the current selection, otherwise returns -1 on error or not found\n\n### QScroller Vue Slots\n\n| Property | Arg | Description |\n| :--- | :---: | :---: | --- |\n| header | value | Header scoped slot |\n| footer | value | Footer scoped slot |\n\n## QTimeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | (required) v-model in the form of `hh:mm` |\n| items | Array | | (required) The items to display in the scroller |\n| disabled-items | Array | | Items in the list that are to be disabled |\n| locale | String | en-us | The locale to use |\n| hour24-format | Boolean | true | If time should be in 24 hour format |\n| am-pm-labels | Array | ['AM', 'PM'] | If `hour24-format` is false, the labels to be used for AM and PM |\n| minute-interval | String, Number | 1 | The minute interval step |\n| hour-interval | String, Number | 1 | The hour interval step |\n| short-time-label | Boolean | | If displayed time in the header should be in a short format |\n| disabled-hours | Array | [ ] | Hours that should be disabled (always use 0 through to 23) |\n| disabled-minutes | Array | [ ] | Minutes that should be disabled (always use 0 through to 59) |\n| no-hours | Boolean | | Do not show the Hours scroller |\n| no-minutes | Boolean | | Do not show the Minutes scroller |\n| hours | Array | | (TBD) Array of hours to be displayed |\n| minutes | Array | | (TBD) Array of minutes to be displayed |\n| min-time | String | '00:00' | (TBD) Any time before this time will be disabled |\n| max-time | String | '24:00' | (TBD) Any time after this time will be disabled |\n\n## QTimeRangeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | Array | | v-model in the form of `[hh:mm, hh:mm]` or `hh:mm<>hh:mm` where `<>` is the `display-separator` property |\n| display-separator | String | ' - ' | Use to parse the two time values in `v-model` when a String is passed in. Used when displaying the time range in the header, and used in the emit of selected time range (when String v-model is used) |\n| start-minute-interval | Number, String | 1 | |\n| start-hour-interval | Number, String | 1 | TBD |\n| start-short-time-label | Boolean | - | |\n| start-disabled-minutes | Array | [ ] | |\n| start-no-minutes | Boolean | - | |\n| start-no-hours | Boolean | - | |\n| start-hours | Array | - | TBD |\n| start-minutes | Array | - | TBD |\n| start-min-time | String | '00:00' | TBD |\n| start-max-time | String | '24:00' | TBD |\n| end-minute-interval | Number, String | 1 | |\n| end-hour-interval | Number, String | 1 | TBD |\n| end-short-time-label | Boolean | - | |\n| end-disabled-minutes | Array | [ ] | |\n| end-no-minutes | Boolean | - | |\n| end-no-hours | Boolean | - | |\n| end-hours | Array | - | TBD |\n| end-minutes | Array | - | TBD |\n| end-min-time | String | '00:00' | TBD |\n| end-max-time | String | '24:00' | TBD |\n\n## QDateScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | v-model in the form of `YYYY-mm-dd` |\n| min-date | String | | The minimum date to display in the form of `YYYY-mm-dd` |\n| max-date | String | | The maximum date to display in the form of `YYYY-mm-dd` |\n| disabled-years | Array | [ ] | Array of numbers or strings for years that should be disabled |\n| disabled-months | Array | [ ] | Array of numbers or strings for months that should be disabled (note: this is 1-based) |\n| disabled-days | Array | [ ] | Array of numbers or strings for days that should be disabled |\n| short-year-label | Boolean | | If displayed year in the header should be in a short format |\n| short-month-label | Boolean | | If displayed month in the header should be in a short format |\n| short-day-label | Boolean | | If displayed day in the header should be in a short format |\n| show-month-label | Boolean | | If displayed month should be displayed as a string in the locale format |\n| short-month-label | Boolean | | If displayed weekday should be displayed in short format |\n| show-weekday-label | Boolean | | If displayed weekday should be displayed as a string in the locale format |\n| no-year | Boolean | | Do not show the Year scroller |\n| no-month | Boolean | | Do not show the Month scroller |\n| no-day | Boolean | | Do not show the Day scroller |\n\n\n## QDateRangeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | Array | - | v-model in the form of `[YYYY-mm-dd, YYYY-mm-dd]` |\n\n## QDateTimeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | v-model in the form of `YYYY-mm-dd hh:mm` |\n\n## QTimeScroller\n\n### QTimeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QTimeRangeScroller\n\n### QScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateScroller\n\n### QDateScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateRangeScroller\n\n### QDateRangeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateTimeScroller\n\n### QDateTimeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateTimeRangeScroller\n\n### QDateTimeRangeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n",l={name:"PageIndex",data:function(){return{markdown:a}},computed:{toc:{get:function(){return this.$store.state.common.toc},set:function(e){this.$store.commit("common/toc",e)}}},methods:{onToc:function(e){this.toc=e}}},s=l,i=(r("3e63"),r("2877")),c=Object(i["a"])(s,o,t,!1,null,null,null);n["default"]=c.exports},dd4f:function(e,n,r){}}]); \ No newline at end of file diff --git a/docs/js/011ca09e.2225e835.js b/docs/js/011ca09e.2225e835.js deleted file mode 100644 index b24c616..0000000 --- a/docs/js/011ca09e.2225e835.js +++ /dev/null @@ -1 +0,0 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["011ca09e"],{"3e63":function(e,n,r){"use strict";var o=r("dd4f"),t=r.n(o);t.a},"8b24":function(e,n,r){"use strict";r.r(n);var o=function(){var e=this,n=e.$createElement,r=e._self._c||n;return r("div",[e._m(0),r("main",{staticClass:"flex flex-start justify-center inset-shadow"},[r("div",{staticClass:"q-pa-md col-12-sm col-8-md col-6-lg inset-shadow",staticStyle:{width:"100%",height:"3px"}}),r("div",{staticClass:"q-pa-md col-12-sm col-8-md col-6-lg bg-white shadow-1",staticStyle:{"max-width":"800px",width:"100%"}},[r("q-markdown",{attrs:{src:e.markdown,toc:""},on:{data:e.onToc}})],1)])])},t=[function(){var e=this,n=e.$createElement,r=e._self._c||n;return r("section",{staticClass:"page-header"},[r("h1",{staticClass:"project-name"},[e._v("QScroller")]),r("h2",{staticClass:"project-tagline"}),r("a",{staticClass:"btn",attrs:{href:"https://github.com/quasarframework/app-extension-qscroller",target:"_blank"}},[e._v("View on GitHub")]),r("a",{staticClass:"btn",attrs:{href:"/app-extension-qscroller/#/demo",target:"_blank"}},[e._v("Demo")])])}],a="QScroller Components\n===\n\n> Please note, this is currently a work-in-progress (WIP) and not yet release to NPM as an installable package.\n\n**QScroller** is a [Quasar App Extension](https://v1.quasar-framework.org/app-extensions/introduction). There are many components avalable:\n- QScroller\n- QTimeScroller\n- QTimeRangeScroller\n- QDateScroller\n- QDateRangeScroller\n- QDateTimeScroller\n- QDateTimeRangeScroller\n\n# Features\n\n# Install\nTo add this App Extension to your Quasar application, run the following (in your Quasar app folder):\n```\nquasar ext add @quasar/qscroller\n```\n\n# Uninstall\nTo remove this App Extension from your Quasar application, run the following (in your Quasar app folder):\n```\nquasar ext remove @quasar/qscroller\n```\n\n# Describe\nYou can use:\n- `quasar describe QScroller`\n- `quasar describe QTimeScroller`\n- `quasar describe QTimeRangeScroller`\n- `quasar describe QDateScroller`\n- `quasar describe QDateRangeScroller`\n- `quasar describe QDateTimeScroller`\n- `quasar describe QDateTimeRangeScroller`\n\n# Demo Project\nCan be found [here](https://github.com/quasarframework/app-extension-qscroller/tree/master/demo).\n\n# Demo\nCan be found [here](/app-extension-qscroller/#/demo).\n\n---\n\n# Working with QScroller\n\nIn order to get the best mileage from QScroller and all of its components it is important to understand all aspects which will be described below.\n\nFirst and foremost, it should also be known that the native date format used internally, and with the v-model, is `YYYY-mm-dd` to avoid confusion with positioning of the day and month in other date formats. All incoming and outgoing dates will use this format.\n\nThe default locale of QDateTimeScroller is **en-us**. This can easily be changed via the `locale` property. Any area of each scroller that displays text and numbers is locale-aware.\n\n## QScroller\n\n![QScroller](statics/q-scroller.png =200x200)\n\nThe QScroller component is made to take any type of arbitray data and display it in a list-like manner so an item can be selected. All other scrollers have this base functionality. Some scrollers, will be based on multiple instances of this functionality.\n\nEach row in a scroller instance is a **QBtn**. As a result of this, you have all of the properties available to you as you would for QBtn. However, this only applies to QScroller as the other scrollers generate data for selection (being based on dates and times).\n\nThe data pushed into the `items` propery of the QScroller component is an array of objects, that looks like the properties for QBtn. Only the `value` property is required if you pass in an array of objects. Alternatively, you can pass in an array of strings if you don't care about special handling and just want the default handling.\n\nExample:\n\n```js\ndata: [\n { value: 'Anteater', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Baboons', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Cheetah', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n { value: 'Chimpanzee', noCaps: true, icon: '', iconRight: '', disabled: false, align: 'around' },\n ...\n]\n```\n\nThen, your `v-model` variable should contain a `value` from your list for an initial selection. And, the `v-model` variable will be populated with `value` data upon user selection.\n\n## QTimeScroller\n\n![QTimeScroller](statics/q-time-scroller.png =200x200) ![QTimeScroller-ampm](statics/q-time-scroller-ampm.png =200x200)\n\n## QTimeRangeScroller\n\n![QTimeRangeScroller](statics/q-time-range-scroller.png =200x200) ![QTimeRangeScroller-ampm](statics/q-time-range-scroller-ampm.png =200x200)\n\n## QDateScroller\n\n![QDateScroller](statics/q-date-scroller.png =200x200)\n\n## QDateRangeScroller\n\n## QDateTimeScroller\n\n![QDateTimeScroller](statics/q-date-time-scroller.png =300x300) ![QDateTimeScroller-ampm](statics/q-date-time-scroller-ampm.png =300x300)\n\n## Locale\n\n## Colorizing\n\n# API\n\n## Common Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| border-color | String | #ccc | This is the color of outside border when `no-border` is not `true`. This **has** to be a css color (not a Quasar color) or css color name |\n| bar-color | String | #ccc | This is the color of the middle bars. This **has** to be a css color (not a Quasar color) or css color name |\n| color | String | white | This is the color of the text. Applies to header and footer. It can be a css color or from the Quasar color palette |\n| background-color | String | primary | This is the color of the background. Applies to header and footer. It can be a css color or from the Quasar color palette |\n| inner-color | String | primary | This is the color of the scroller text. It can be a css color or from the Quasar color palette |\n| inner-background-color | String | white | This is the color of the scroller background. It can be a css color or from the Quasar color palette |\n| dense | Boolean | | If the component should be in dense mode |\n| disable | Boolean | | If the component should be disabled |\n| rounded-border | Boolean | | If the component should have rounded corners |\n| no-border | Boolean | | If the component should not have a border |\n| no-shadow | Boolean | | If the component should not display shadow when header/footer are displayed |\n| no-header | Boolean | | If the component should not display the header |\n| no-footer | Boolean | | If the component should not display the footer |\n\n> Note: When `css color or from the Quasar color palette` is used, you cannot use css named colors (ex: ghostwhite) as it will be interpreted as a Quasar color.\n\n## QScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | (required) v-model |\n| items | Array | | (required) The items to display in the scroller |\n| disabled-items | Array | | Items in the list that are to be disabled |\n\n### QScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n\n### QScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QTimeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | (required) v-model in the form of `hh:mm` |\n| items | Array | | (required) The items to display in the scroller |\n| disabled-items | Array | | Items in the list that are to be disabled |\n| locale | String | en-us | The locale to use |\n| hour24-format | Boolean | true | If time should be in 24 hour format |\n| am-pm-labels | Array | ['AM', 'PM'] | If `hour24-format` is false, the labels to be used for AM and PM |\n| minute-interval | String, Number | 1 | The minute interval step |\n| hour-interval | String, Number | 1 | The hour interval step |\n| short-time-label | Boolean | | If displayed time in the header should be in a short format |\n| disabled-hours | Array | [ ] | Hours that should be disabled (always use 0 through to 23) |\n| disabled-minutes | Array | [ ] | Minutes that should be disabled (always use 0 through to 59) |\n| no-hours | Boolean | | Do not show the Hours scroller |\n| no-minutes | Boolean | | Do not show the Minutes scroller |\n| hours | Array | | Array of hours to be displayed |\n| minutes | Array | | Array of minutes to be displayed |\n| min-time | String | '00:00' | Any time before this time will be disabled |\n| max-time | String | '24:00' | Any time after this time will be disabled |\n\n## QTimeRangeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | Array | | v-model in the form of `[hh:mm, hh:mm]` or `hh:mm<>hh:mm` where `<>` is the `display-separator` property |\n| display-separator | String | ' - ' | Use to parse the two time values in `v-model` when a String is passed in. Used when displaying the time range in the header, and used in the emit of selected time range (when String v-model is used) |\n| start-minute-interval | Number, String | 1 | |\n| start-hour-interval | Number, String | 1 | TBD |\n| start-short-time-label | Boolean | - | |\n| start-disabled-minutes | Array | [ ] | |\n| start-no-minutes | Boolean | - | |\n| start-no-hours | Boolean | - | |\n| start-hours | Array | - | TBD |\n| start-minutes | Array | - | TBD |\n| start-min-time | String | '00:00' | TBD |\n| start-max-time | String | '24:00' | TBD |\n| end-minute-interval | Number, String | 1 | |\n| end-hour-interval | Number, String | 1 | TBD |\n| end-short-time-label | Boolean | - | |\n| end-disabled-minutes | Array | [ ] | |\n| end-no-minutes | Boolean | - | |\n| end-no-hours | Boolean | - | |\n| end-hours | Array | - | TBD |\n| end-minutes | Array | - | TBD |\n| end-min-time | String | '00:00' | TBD |\n| end-max-time | String | '24:00' | TBD |\n\n## QDateScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | v-model in the form of `YYYY-mm-dd` |\n| min-date | String | | The minimum date to display in the form of `YYYY-mm-dd` |\n| max-date | String | | The maximum date to display in the form of `YYYY-mm-dd` |\n| disabled-years | Array | [ ] | Array of numbers or strings for years that should be disabled |\n| disabled-months | Array | [ ] | Array of numbers or strings for months that should be disabled (note: this is 1-based) |\n| disabled-days | Array | [ ] | Array of numbers or strings for days that should be disabled |\n| short-year-label | Boolean | | If displayed year in the header should be in a short format |\n| short-month-label | Boolean | | If displayed month in the header should be in a short format |\n| short-day-label | Boolean | | If displayed day in the header should be in a short format |\n| show-month-label | Boolean | | If displayed month should be displayed as a string in the locale format |\n| short-month-label | Boolean | | If displayed weekday should be displayed in short format |\n| show-weekday-label | Boolean | | If displayed weekday should be displayed as a string in the locale format |\n| no-year | Boolean | | Do not show the Year scroller |\n| no-month | Boolean | | Do not show the Month scroller |\n| no-day | Boolean | | Do not show the Day scroller |\n\n\n## QDateRangeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | Array | - | v-model in the form of `[YYYY-mm-dd, YYYY-mm-dd]` |\n\n## QDateTimeScroller Vue Properties\n\n| Vue Property | Type | Default | Description |\n| --- | :---: | :---: | --- |\n| value | String | | v-model in the form of `YYYY-mm-dd hh:mm` |\n\n## QTimeScroller\n\n### QTimeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QTimeRangeScroller\n\n### QScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QTimeRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateScroller\n\n### QDateScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateRangeScroller\n\n### QDateRangeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateTimeScroller\n\n### QDateTimeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n## QDateTimeRangeScroller\n\n### QDateTimeRangeScroller Vue Properties\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Events\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Methods\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n\n### QDateTimeRangeScroller Vue Slots\n\n| Property | Type | Default | Description |\n| :--- | :---: | :---: | --- |\n",l={name:"PageIndex",data:function(){return{markdown:a}},computed:{toc:{get:function(){return this.$store.state.common.toc},set:function(e){this.$store.commit("common/toc",e)}}},methods:{onToc:function(e){this.toc=e}}},s=l,i=(r("3e63"),r("2877")),c=Object(i["a"])(s,o,t,!1,null,null,null);n["default"]=c.exports},dd4f:function(e,n,r){}}]); \ No newline at end of file diff --git a/docs/js/runtime.86674c39.js b/docs/js/runtime.8658ed30.js similarity index 94% rename from docs/js/runtime.86674c39.js rename to docs/js/runtime.8658ed30.js index e2f21ff..bcef01f 100644 --- a/docs/js/runtime.86674c39.js +++ b/docs/js/runtime.8658ed30.js @@ -1 +1 @@ -(function(e){function t(t){for(var n,o,i=t[0],c=t[1],d=t[2],f=0,l=[];f=55296&&t<=57343)&&(!(t>=64976&&t<=65007)&&(65535!==(65535&t)&&65534!==(65535&t)&&(!(t>=0&&t<=8)&&(11!==t&&(!(t>=14&&t<=31)&&(!(t>=127&&t<=159)&&!(t>1114111)))))))}function u(t){if(t>65535){t-=65536;var e=55296+(t>>10),n=56320+(1023&t);return String.fromCharCode(e,n)}return String.fromCharCode(t)}var h=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,d=/&([a-z#][a-z0-9]{1,31});/gi,f=new RegExp(h.source+"|"+d.source,"gi"),p=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,m=n("bd68");function v(t,e){var n=0;return s(m,e)?m[e]:35===e.charCodeAt(0)&&p.test(e)&&(n="x"===e[1].toLowerCase()?parseInt(e.slice(2),16):parseInt(e.slice(1),10),l(n))?u(n):t}function g(t){return t.indexOf("\\")<0?t:t.replace(h,"$1")}function _(t){return t.indexOf("\\")<0&&t.indexOf("&")<0?t:t.replace(f,function(t,e,n){return e||v(t,n)})}var b=/[&<>"]/,y=/[&<>"]/g,w={"&":"&","<":"<",">":">",'"':"""};function k(t){return w[t]}function x(t){return b.test(t)?t.replace(y,k):t}var C=/[.?*+^$[\]\\(){}|-]/g;function S(t){return t.replace(C,"\\$&")}function A(t){switch(t){case 9:case 32:return!0}return!1}function E(t){if(t>=8192&&t<=8202)return!0;switch(t){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var q=n("7ca0");function T(t){return q.test(t)}function O(t){switch(t){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function D(t){return t.trim().replace(/\s+/g," ").toUpperCase()}e.lib={},e.lib.mdurl=n("d8a6"),e.lib.ucmicro=n("d5d1"),e.assign=a,e.isString=r,e.has=s,e.unescapeMd=g,e.unescapeAll=_,e.isValidEntityCode=l,e.fromCodePoint=u,e.escapeHtml=x,e.arrayReplaceAt=c,e.isSpace=A,e.isWhiteSpace=E,e.isMdAsciiPunct=O,e.isPunctChar=T,e.escapeRE=S,e.normalizeReference=D},"00bd":function(t,e,n){"use strict";t.exports=function(t,e){return t[e].content}},"00f0":function(t,e){function n(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e=l?t?"":void 0:(o=a.charCodeAt(c),o<55296||o>56319||c+1===l||(s=a.charCodeAt(c+1))<56320||s>57343?t?a.charAt(c):o:t?a.slice(c,c+2):s-56320+(o-55296<<10)+65536)}}},"033f":function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e"),s=n("dde5");e["a"]=o["a"].extend({name:"QItemSection",props:{avatar:Boolean,thumbnail:Boolean,side:Boolean,top:Boolean,noWrap:Boolean},computed:{classes:function(){var t=this.avatar||this.side||this.thumbnail;return r()({"q-item__section--top":this.top,"q-item__section--avatar":this.avatar,"q-item__section--thumbnail":this.thumbnail,"q-item__section--side":t,"q-item__section--nowrap":this.noWrap,"q-item__section--main":!t},"justify-".concat(this.top?"start":"center"),!0)}},render:function(t){return t("div",{staticClass:"q-item__section column",class:this.classes,on:this.$listeners},Object(s["a"])(this,"default"))}})},"0378":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("ac6a"),n("cadf"),n("5df3"),n("551c"),n("ff57")),s=n.n(o),a=n("2b0e"),c=n("d882"),l=n("dde5"),u=n("2c75");e["a"]=a["a"].extend({name:"QForm",props:{autofocus:Boolean},mounted:function(){this.validateIndex=0,!0===this.autofocus&&this.focus()},methods:{validate:function(){var t=this,e=[];this.validateIndex++;for(var n=Object(u["a"])(this),i=function(e){t.$emit("validation-"+(!0===e?"success":"error"))},r=function(t){var r=n[t];if("function"===typeof r.validate){var o=r.validate();if("function"===typeof o.then)e.push(o.then(function(t){return{valid:t,comp:r}},function(t){return{valid:!1,comp:r,error:t}}));else if(!0!==o)return i(!1),"function"===typeof r.focus&&r.focus(),{v:Promise.resolve(!1)}}},o=0;o=4)return!1;if(o=t.src.charCodeAt(l),35!==o||l>=u)return!1;s=1,o=t.src.charCodeAt(++l);while(35===o&&l6||ll&&i(t.src.charCodeAt(a-1))&&(u=a),t.line=e+1,c=t.push("heading_open","h"+String(s),1),c.markup="########".slice(0,s),c.map=[e,t.line],c=t.push("inline","",0),c.content=t.src.slice(l,u).trim(),c.map=[e,t.line],c.children=[],c=t.push("heading_close","h"+String(s),-1),c.markup="########".slice(0,s),!0))}},"0831":function(t,e,n){"use strict";n.d(e,"d",function(){return o}),n.d(e,"c",function(){return c}),n.d(e,"b",function(){return l}),n.d(e,"h",function(){return p}),n.d(e,"g",function(){return m}),n.d(e,"e",function(){return v}),n.d(e,"f",function(){return g});n("6762"),n("2fdb");var i,r=n("f303");function o(t){return t.closest(".scroll,.scroll-y,.overflow-auto")||window}function s(t){return(t===window?document.body:t).scrollHeight}function a(t){return(t===window?document.body:t).scrollWidth}function c(t){return t===window?window.pageYOffset||window.scrollY||document.body.scrollTop||0:t.scrollTop}function l(t){return t===window?window.pageXOffset||window.scrollX||document.body.scrollLeft||0:t.scrollLeft}function u(t,e,n){var i=c(t);n<=0?i!==e&&d(t,e):requestAnimationFrame(function(){var r=i+(e-i)/Math.max(16,n)*16;d(t,r),r!==e&&u(t,e,n-16)})}function h(t,e,n){var i=l(t);n<=0?i!==e&&f(t,e):requestAnimationFrame(function(){var r=i+(e-i)/Math.max(16,n)*16;f(t,r),r!==e&&h(t,e,n-16)})}function d(t,e){t!==window?t.scrollTop=e:window.scrollTo(0,e)}function f(t,e){t!==window?t.scrollLeft=e:window.scrollTo(e,0)}function p(t,e,n){n?u(t,e,n):d(t,e)}function m(t,e,n){n?h(t,e,n):f(t,e)}function v(){if(void 0!==i)return i;var t=document.createElement("p"),e=document.createElement("div");Object(r["a"])(t,{width:"100%",height:"200px"}),Object(r["a"])(e,{position:"absolute",top:"0px",left:"0px",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var n=t.offsetWidth;e.style.overflow="scroll";var o=t.offsetWidth;return n===o&&(o=e.clientWidth),e.remove(),i=n-o,i}function g(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!(!t||t.nodeType!==Node.ELEMENT_NODE)&&(e?t.scrollHeight>t.clientHeight&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-y"])):t.scrollWidth>t.clientWidth&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-x"])))}e["a"]={getScrollTarget:o,getScrollHeight:s,getScrollWidth:a,getScrollPosition:c,getHorizontalScrollPosition:l,animScrollTo:u,animHorizontalScrollTo:h,setScrollPosition:p,setHorizontalScrollPosition:m,getScrollbarWidth:v,hasScrollbar:g}},"08ae":function(t,e,n){"use strict";var i=n("0068"),r=n("565b"),o=n("7cc2"),s=n("a915"),a=n("7696"),c=n("4cb4"),l=n("fbcd"),u=n("d8a6"),h=n("c570"),d={default:n("8a31"),zero:n("1caa"),commonmark:n("428d")},f=/^(vbscript|javascript|file|data):/,p=/^data:image\/(gif|png|jpeg|webp);/;function m(t){var e=t.trim().toLowerCase();return!f.test(e)||!!p.test(e)}var v=["http:","https:","mailto:"];function g(t){var e=u.parse(t,!0);if(e.hostname&&(!e.protocol||v.indexOf(e.protocol)>=0))try{e.hostname=h.toASCII(e.hostname)}catch(n){}return u.encode(u.format(e))}function _(t){var e=u.parse(t,!0);if(e.hostname&&(!e.protocol||v.indexOf(e.protocol)>=0))try{e.hostname=h.toUnicode(e.hostname)}catch(n){}return u.decode(u.format(e))}function b(t,e){if(!(this instanceof b))return new b(t,e);e||i.isString(t)||(e=t||{},t="default"),this.inline=new c,this.block=new a,this.core=new s,this.renderer=new o,this.linkify=new l,this.validateLink=m,this.normalizeLink=g,this.normalizeLinkText=_,this.utils=i,this.helpers=i.assign({},r),this.options={},this.configure(t),e&&this.set(e)}b.prototype.set=function(t){return i.assign(this.options,t),this},b.prototype.configure=function(t){var e,n=this;if(i.isString(t)&&(e=t,t=d[e],!t))throw new Error('Wrong `markdown-it` preset "'+e+'", check name');if(!t)throw new Error("Wrong `markdown-it` preset, can't be empty");return t.options&&n.set(t.options),t.components&&Object.keys(t.components).forEach(function(e){t.components[e].rules&&n[e].ruler.enableOnly(t.components[e].rules),t.components[e].rules2&&n[e].ruler2.enableOnly(t.components[e].rules2)}),this},b.prototype.enable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.enable(t,!0))},this),n=n.concat(this.inline.ruler2.enable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+i);return this},b.prototype.disable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.disable(t,!0))},this),n=n.concat(this.inline.ruler2.disable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+i);return this},b.prototype.use=function(t){var e=[this].concat(Array.prototype.slice.call(arguments,1));return t.apply(t,e),this},b.prototype.parse=function(t,e){if("string"!==typeof t)throw new Error("Input data should be a String");var n=new this.core.State(t,this,e);return this.core.process(n),n.tokens},b.prototype.render=function(t,e){return e=e||{},this.renderer.render(this.parse(t,e),this.options,e)},b.prototype.parseInline=function(t,e){var n=new this.core.State(t,this,e);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(t,e){return e=e||{},this.renderer.render(this.parseInline(t,e),this.options,e)},t.exports=b},"0909":function(t,e,n){"use strict";var i=n("0967");e["a"]={data:function(){return{canRender:!i["d"]}},mounted:function(){!1===this.canRender&&(this.canRender=!0)}}},"0967":function(t,e,n){"use strict";n.d(e,"c",function(){return a}),n.d(e,"b",function(){return c}),n.d(e,"d",function(){return l});n("f751");var i,r=n("3c93"),o=n.n(r),s=n("2b0e"),a="undefined"===typeof window,c=!1,l=a;function u(t,e){var n=/(edge)\/([\w.]+)/.exec(t)||/(opr)[\/]([\w.]+)/.exec(t)||/(vivaldi)[\/]([\w.]+)/.exec(t)||/(chrome)[\/]([\w.]+)/.exec(t)||/(iemobile)[\/]([\w.]+)/.exec(t)||/(version)(applewebkit)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+).*(version)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+)/.exec(t)||/(opera)(?:.*version|)[\/]([\w.]+)/.exec(t)||/(msie) ([\w.]+)/.exec(t)||t.indexOf("trident")>=0&&/(rv)(?::| )([\w.]+)/.exec(t)||t.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(t)||[];return{browser:n[5]||n[3]||n[1]||"",version:n[2]||n[4]||"0",versionNumber:n[4]||n[2]||"0",platform:e[0]||""}}function h(t){return/(ipad)/.exec(t)||/(ipod)/.exec(t)||/(windows phone)/.exec(t)||/(iphone)/.exec(t)||/(kindle)/.exec(t)||/(silk)/.exec(t)||/(android)/.exec(t)||/(win)/.exec(t)||/(mac)/.exec(t)||/(linux)/.exec(t)||/(cros)/.exec(t)||/(playbook)/.exec(t)||/(bb)/.exec(t)||/(blackberry)/.exec(t)||[]}function d(t){t=(t||navigator.userAgent||navigator.vendor||window.opera).toLowerCase();var e=h(t),n=u(t,e),i={};return n.browser&&(i[n.browser]=!0,i.version=n.version,i.versionNumber=parseInt(n.versionNumber,10)),n.platform&&(i[n.platform]=!0),(i.android||i.bb||i.blackberry||i.ipad||i.iphone||i.ipod||i.kindle||i.playbook||i.silk||i["windows phone"])&&(i.mobile=!0),(i.ipod||i.ipad||i.iphone)&&(i.ios=!0),i["windows phone"]&&(i.winphone=!0,delete i["windows phone"]),(i.cros||i.mac||i.linux||i.win)&&(i.desktop=!0),(i.chrome||i.opr||i.safari||i.vivaldi)&&(i.webkit=!0),(i.rv||i.iemobile)&&(n.browser="ie",i.ie=!0),i.edge&&(n.browser="edge",i.edge=!0),(i.safari&&i.blackberry||i.bb)&&(n.browser="blackberry",i.blackberry=!0),i.safari&&i.playbook&&(n.browser="playbook",i.playbook=!0),i.opr&&(n.browser="opera",i.opera=!0),i.safari&&i.android&&(n.browser="android",i.android=!0),i.safari&&i.kindle&&(n.browser="kindle",i.kindle=!0),i.safari&&i.silk&&(n.browser="silk",i.silk=!0),i.vivaldi&&(n.browser="vivaldi",i.vivaldi=!0),i.name=n.browser,i.platform=n.platform,!1===a&&(window.process&&window.process.versions&&window.process.versions.electron?i.electron=!0:0===document.location.href.indexOf("chrome-extension://")?i.chromeExt=!0:(window._cordovaNative||window.cordova)&&(i.cordova=!0),c=void 0===i.cordova&&void 0===i.electron&&!!document.querySelector("[data-server-rendered]"),!0===c&&(l=!0)),i}function f(){if(void 0!==i)return i;try{if(window.localStorage)return i=!0,!0}catch(t){}return i=!1,!1}function p(){return{has:{touch:function(){return!!("ontouchstart"in document.documentElement)||window.navigator.msMaxTouchPoints>0}(),webStorage:f()},within:{iframe:window.self!==window.top}}}e["a"]={has:{touch:!1,webStorage:!1},within:{iframe:!1},parseSSR:function(t){return t?{is:d(t.req.headers["user-agent"]),has:this.has,within:this.within}:o()({is:d()},p())},install:function(t,e){var n=this;!0!==a?(this.is=d(),!0===c?(e.takeover.push(function(t){l=c=!1,Object.assign(t.platform,p())}),s["a"].util.defineReactive(t,"platform",this)):(Object.assign(this,p()),t.platform=this)):e.server.push(function(t,e){t.platform=n.parseSSR(e.ssr)})}}},"096b":function(t,e,n){"use strict";function i(t,e,n){this.type=t,this.tag=e,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}i.prototype.attrIndex=function(t){var e,n,i;if(!this.attrs)return-1;for(e=this.attrs,n=0,i=e.length;n=0&&(n=this.attrs[e][1]),n},i.prototype.attrJoin=function(t,e){var n=this.attrIndex(t);n<0?this.attrPush([t,e]):this.attrs[n][1]=this.attrs[n][1]+" "+e},t.exports=i},"097b":function(t,e,n){"use strict";var i=n("096b"),r=n("0068").isWhiteSpace,o=n("0068").isPunctChar,s=n("0068").isMdAsciiPunct;function a(t,e,n,i){this.src=t,this.env=n,this.md=e,this.tokens=i,this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[]}a.prototype.pushPending=function(){var t=new i("text","",0);return t.content=this.pending,t.level=this.pendingLevel,this.tokens.push(t),this.pending="",t},a.prototype.push=function(t,e,n){this.pending&&this.pushPending();var r=new i(t,e,n);return n<0&&this.level--,r.level=this.level,n>0&&this.level++,this.pendingLevel=this.level,this.tokens.push(r),r},a.prototype.scanDelims=function(t,e){var n,i,a,c,l,u,h,d,f,p=t,m=!0,v=!0,g=this.posMax,_=this.src.charCodeAt(t);n=t>0?this.src.charCodeAt(t-1):32;while(pw;w++)if((d||w in _)&&(m=_[w],v=b(m,w,g),t))if(n)k[w]=v;else if(v)switch(t){case 3:return!0;case 5:return m;case 6:return w;case 2:k.push(m)}else if(u)return!1;return h?-1:l||u?u:k}}},"0bfb":function(t,e,n){"use strict";var i=n("cb7c");t.exports=function(){var t=i(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},"0d4c":function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},"0d58":function(t,e,n){var i=n("ce10"),r=n("e11e");t.exports=Object.keys||function(t){return i(t,r)}},"0d59":function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r={props:{color:String,size:{type:[Number,String],default:"1em"}},computed:{classes:function(){if(this.color)return"text-".concat(this.color)}}};e["a"]=i["a"].extend({name:"QSpinner",mixins:[r],props:{thickness:{type:Number,default:5}},render:function(t){return t("svg",{staticClass:"q-spinner q-spinner-mat",class:this.classes,on:this.$listeners,attrs:{width:this.size,height:this.size,viewBox:"25 25 50 50"}},[t("circle",{staticClass:"path",attrs:{cx:"50",cy:"50",r:"20",fill:"none",stroke:"currentColor","stroke-width":this.thickness,"stroke-miterlimit":"10"}})])}})},"0dcc":function(t,e,n){"use strict";function i(t){return"BM"===t.toString("ascii",0,2)}function r(t){return{width:t.readUInt32LE(18),height:t.readUInt32LE(22)}}t.exports={detect:i,calculate:r}},1169:function(t,e,n){var i=n("2d95");t.exports=Array.isArray||function(t){return"Array"==i(t)}},"11e9":function(t,e,n){var i=n("52a7"),r=n("4630"),o=n("6821"),s=n("6a99"),a=n("69a8"),c=n("c69a"),l=Object.getOwnPropertyDescriptor;e.f=n("9e1e")?l:function(t,e){if(t=o(t),e=s(e,!0),c)try{return l(t,e)}catch(n){}if(a(t,e))return r(!i.f.call(t,e),t[e])}},"135b":function(t,e,n){"use strict";var i={ffdb:"0001010101",ffe0:"4a46494600",ffe1:"4578696600",ffe2:"4943435f50",ffe3:"",ffe8:"5350494646",ffec:"4475636b79",ffed:"50686f746f",ffee:"41646f6265"},r=["",""];function o(t){var e=t.toString("hex",0,2),n=t.toString("hex",2,4);if("ffd8"!==e)return!1;var o=t.toString("hex",6,11),s=n&&i[n];return""===s?(console.warn(r[0]+"this looks like a unrecognised jpeg\nplease report the issue here\n"+r[1],"\thttps://github.com/netroy/image-size/issues/new\n"),!1):o===s||"ffdb"===n}function s(t,e){return{height:t.readUInt16BE(e),width:t.readUInt16BE(e+2)}}function a(t,e){if(e>t.length)throw new TypeError("Corrupt JPG, exceeded buffer limits");if(255!==t[e])throw new TypeError("Invalid JPG, marker table corrupted")}function c(t){var e,n;t=t.slice(4);while(t.length){if(e=t.readUInt16BE(0),a(t,e),n=t[e+1],192===n||194===n)return s(t,e+5);t=t.slice(e+2)}throw new TypeError("Invalid JPG, no size found")}t.exports={detect:o,calculate:c}},1495:function(t,e,n){var i=n("86cc"),r=n("cb7c"),o=n("0d58");t.exports=n("9e1e")?Object.defineProperties:function(t,e){r(t);var n,s=o(e),a=s.length,c=0;while(a>c)i.f(t,n=s[c++],e[n]);return t}},1732:function(t,e,n){"use strict";n("6b54");function i(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}e["a"]=function(){return i()+i()+"-"+i()+"-"+i()+"-"+i()+"-"+i()+i()+i()}},1991:function(t,e,n){var i,r,o,s=n("9b43"),a=n("31f4"),c=n("fab2"),l=n("230e"),u=n("7726"),h=u.process,d=u.setImmediate,f=u.clearImmediate,p=u.MessageChannel,m=u.Dispatch,v=0,g={},_="onreadystatechange",b=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},y=function(t){b.call(t.data)};d&&f||(d=function(t){var e=[],n=1;while(arguments.length>n)e.push(arguments[n++]);return g[++v]=function(){a("function"==typeof t?t:Function(t),e)},i(v),v},f=function(t){delete g[t]},"process"==n("2d95")(h)?i=function(t){h.nextTick(s(b,t,1))}:m&&m.now?i=function(t){m.now(s(b,t,1))}:p?(r=new p,o=r.port2,r.port1.onmessage=y,i=s(o.postMessage,o,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(i=function(t){u.postMessage(t+"","*")},u.addEventListener("message",y,!1)):i=_ in l("script")?function(t){c.appendChild(l("script"))[_]=function(){c.removeChild(this),b.call(t)}}:function(t){setTimeout(s(b,t,1),0)}),t.exports={set:d,clear:f}},"199e":function(t,e,n){"use strict";t.exports=function(t,e,n){var i,r,o,s,a,c,l,u,h,d,f=e+1,p=t.md.block.ruler.getRules("paragraph");if(t.sCount[e]-t.blkIndent>=4)return!1;for(d=t.parentType,t.parentType="paragraph";f3)){if(t.sCount[f]>=t.blkIndent&&(c=t.bMarks[f]+t.tShift[f],l=t.eMarks[f],c=l)))){u=61===h?1:2;break}if(!(t.sCount[f]<0)){for(r=!1,o=0,s=p.length;o1&&void 0!==arguments[1]?arguments[1]:250,i=arguments.length>2?arguments[2]:void 0;function r(){for(var r=this,o=arguments.length,s=new Array(o),a=0;a1?arguments[1]:void 0)}}),n("9c6c")(o)},"214f":function(t,e,n){"use strict";n("b0c5");var i=n("2aba"),r=n("32e9"),o=n("79e5"),s=n("be13"),a=n("2b4c"),c=n("520a"),l=a("species"),u=!o(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$")}),h=function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();t.exports=function(t,e,n){var d=a(t),f=!o(function(){var e={};return e[d]=function(){return 7},7!=""[t](e)}),p=f?!o(function(){var e=!1,n=/a/;return n.exec=function(){return e=!0,null},"split"===t&&(n.constructor={},n.constructor[l]=function(){return n}),n[d](""),!e}):void 0;if(!f||!p||"replace"===t&&!u||"split"===t&&!h){var m=/./[d],v=n(s,d,""[t],function(t,e,n,i,r){return e.exec===c?f&&!r?{done:!0,value:m.call(e,n,i)}:{done:!0,value:t.call(n,e,i)}:{done:!1}}),g=v[0],_=v[1];i(String.prototype,t,g),r(RegExp.prototype,d,2==e?function(t,e){return _.call(t,this,e)}:function(t){return _.call(t,this)})}}},2248:function(t,e,n){"use strict";n.d(e,"a",function(){return r});var i=n("0967");function r(){if(void 0!==window.getSelection){var t=window.getSelection();void 0!==t.empty?t.empty():void 0!==t.removeAllRanges&&(t.removeAllRanges(),!0!==i["a"].is.mobile&&t.addRange(document.createRange()))}else void 0!==document.selection&&document.selection.empty()}},"230e":function(t,e,n){var i=n("d3f4"),r=n("7726").document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},2330:function(t,e,n){"use strict";var i=n("8e72"),r=n.n(i),o=(n("a481"),n("c5f6"),n("2b0e")),s=n("d4cd"),a=n.n(s),c=n("362d"),l=n.n(c),u=n("54f6"),h=n.n(u),d=n("7ba6"),f=n.n(d),p=n("e6f9"),m=n.n(p),v=n("ff97"),g=n.n(v),_=n("5121"),b=n.n(_),y=n("cf2b"),w=n.n(y),k=n("4bb9"),x=n.n(k),C=n("746a"),S=n.n(C),A=n("be03"),E=n.n(A),q=n("8102"),T=n.n(q),O=o["a"].extend({name:"QMarkdown",props:{src:{type:String,default:""},noHtml:Boolean,noLink:Boolean,noLinkify:Boolean,noTypographer:Boolean,noBreaks:Boolean,noHighlight:Boolean,noEmoji:Boolean,noSubscript:Boolean,noSuperscript:Boolean,noFootnote:Boolean,noDeflist:Boolean,noAbbreviation:Boolean,noInsert:Boolean,noMark:Boolean,noImage:Boolean,noTasklist:Boolean,noContainer:Boolean,toc:Boolean,tocStart:{type:Number,default:1,validator:function(t){return t>=1&&t<=5}},tocEnd:{type:Number,default:3,validator:function(t){return t>=2&&t<=6}},taskListsEnable:Boolean,taskListsLabel:Boolean,taskListsLabelAfter:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array]},data:function(){return{source:this.src}},watch:{src:function(t){this.source=this.src}},methods:{__slugify:function(t){return encodeURIComponent(String(t).trim().replace(/\s+/g,"-"))},__extendBlockQuote:function(t){t.renderer.rules.blockquote_open=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--note"),r.renderToken(t,e,n)}},__extendHeading:function(t,e){var n=this;t.renderer.rules.heading_open=function(t,i,r,o,s){var a=t[i],c=t[i+1].children.reduce(function(t,e){return t+e.content},""),l="q-markdown--heading-".concat(a.tag);"="===a.markup?l+=" q-markdown--title-heavy":"-"===a.markup&&(l+=" q-markdown--title-light");var u=n.__slugify(c);if(a.attrSet("id",u),a.attrSet("class",l),n.toc){var h=parseInt(a.tag[1]);n.tocStart&&n.tocEnd&&n.tocStart=n.tocStart&&h<=n.tocEnd&&e.push({id:u,label:c,level:h,children:[]})}return s.renderToken(t,i,r)}},__extendImage:function(t){t.renderer.rules.image=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--image"),r.renderToken(t,e,n)}},__extendTable:function(t){t.renderer.rules.table_open=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--table"),r.renderToken(t,e,n)}},__extendLink:function(t){t.renderer.rules.link_open=function(t,e,n,i,r){var o=t[e],s=o.attrIndex("href");return"/"===o.attrs[s][1][0]?o.attrSet("class","q-markdown--link q-markdown--link-local"):(o.attrSet("class","q-markdown--link q-markdown--link-external"),o.attrSet("target","_blank")),r.renderToken(t,e,n)}},__extendToken:function(t){var e=t.renderer.rules.code_inline;t.renderer.rules.code_inline=function(t,n,i,r,o){var s=t[n];return s.attrSet("class","q-markdown--token"),e(t,n,i,r,o)}},__createContainer:function(t,e){return[S.a,t,{render:function(n,i){var r=n[i],o=r.info.trim().slice(t.length).trim();return 1===r.nesting?'

').concat(o||e,"

\n"):"
\n"}}]},__extendContainers:function(t){var e,n,i,o;this.__isEnabled(this.noContainer)&&(e=(n=(i=(o=t.use.apply(t,r()(this.__createContainer("info","INFO")))).use.apply(o,r()(this.__createContainer("tip","TIP")))).use.apply(i,r()(this.__createContainer("warning","WARNING")))).use.apply(n,r()(this.__createContainer("danger","IMPORTANT")))).use.apply(e,r()(this.__createContainer("",""))).use(S.a,"v-pre",{render:function(t,e){return 1===t[e].nesting?"
\n":"
\n"}})},__isEnabled:function(t){return void 0===t||!1===t},makeTree:function(t){for(var e=[],n=null,i=function(t){if(1===t.level)n=t,e.push(t);else if(2===t.level)n.children.push(t);else{for(var i=n,r=0;r0&&r.disable(c);var u=r.render(s);return this.toc&&o.length>0&&this.$emit("data",o),t("div",{staticClass:"q-markdown",class:this.contentClass,style:this.contentStyle,domProps:{innerHTML:u}})}});e["a"]=function(t){var e=t.Vue;e.component("q-markdown",O)}},"23c6":function(t,e,n){var i=n("2d95"),r=n("2b4c")("toStringTag"),o="Arguments"==i(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(n){}};t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),r))?n:o?i(e):"Object"==(a=i(e))&&"function"==typeof e.callee?"Arguments":a}},"24e8":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("6762"),n("2fdb"),n("2b0e")),s=n("7ee0"),a=n("9e62"),c=n("efe6"),l=n("a267"),u=n("dde5"),h=n("d882"),d=0,f={standard:"fixed-full flex-center",top:"fixed-top justify-center",bottom:"fixed-bottom justify-center",right:"fixed-right items-center",left:"fixed-left items-center"},p={top:["down","up"],bottom:["up","down"],right:["left","right"],left:["right","left"]};e["a"]=o["a"].extend({name:"QDialog",mixins:[s["a"],a["a"],c["a"]],modelToggle:{history:!0},props:{persistent:Boolean,autoClose:Boolean,noEscDismiss:Boolean,noBackdropDismiss:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,seamless:Boolean,maximized:Boolean,fullWidth:Boolean,fullHeight:Boolean,square:Boolean,position:{type:String,default:"standard",validator:function(t){return"standard"===t||["top","bottom","left","right"].includes(t)}},transitionShow:{type:String,default:"scale"},transitionHide:{type:String,default:"scale"}},data:function(){return{transitionState:this.showing}},watch:{$route:function(){!0!==this.persistent&&!0!==this.noRouteDismiss&&!0!==this.seamless&&this.hide()},showing:function(t){var e=this;"standard"===this.position&&this.transitionShow===this.transitionHide||this.$nextTick(function(){e.transitionState=t})},maximized:function(t,e){!0===this.showing&&(this.__updateState(!1,e),this.__updateState(!0,t))},seamless:function(t){!0===this.showing&&this.__preventScroll(!t)},useBackdrop:function(t){if(!0===this.$q.platform.is.desktop){var e="".concat(!0===t?"add":"remove","EventListener");document.body[e]("focusin",this.__onFocusChange)}}},computed:{classes:function(){return"q-dialog__inner--".concat(!0===this.maximized?"maximized":"minimized"," ")+"q-dialog__inner--".concat(this.position," ").concat(f[this.position])+(!0===this.fullWidth?" q-dialog__inner--fullwidth":"")+(!0===this.fullHeight?" q-dialog__inner--fullheight":"")+(!0===this.square?" q-dialog__inner--square":"")},transition:function(){return"q-transition--"+("standard"===this.position?!0===this.transitionState?this.transitionHide:this.transitionShow:"slide-"+p[this.position][!0===this.transitionState?1:0])},useBackdrop:function(){return!0===this.showing&&!0!==this.seamless}},methods:{focus:function(){var t=void 0!==this.__portal.$refs?this.__portal.$refs.inner:void 0;void 0!==t&&!0!==t.contains(document.activeElement)&&(this.$q.platform.is.ios&&(this.avoidAutoClose=!0,t.click(),this.avoidAutoClose=!1),t=t.querySelector("[autofocus]")||t,t.focus())},shake:function(){this.focus();var t=void 0!==this.__portal.$refs?this.__portal.$refs.inner:void 0;void 0!==t&&(t.classList.remove("q-animate--scale"),t.classList.add("q-animate--scale"),clearTimeout(this.shakeTimeout),this.shakeTimeout=setTimeout(function(){t.classList.remove("q-animate--scale")},170))},__show:function(t){var e=this;clearTimeout(this.timer),this.__refocusTarget=!1===this.noRefocus?document.activeElement:void 0,this.__updateState(!0,this.maximized),l["a"].register(this,function(){!0!==e.seamless&&(!0===e.persistent||!0===e.noEscDismiss?!0!==e.maximized&&e.shake():(e.$emit("escape-key"),e.hide()))}),this.__showPortal(),!0!==this.noFocus&&(document.activeElement.blur(),this.$nextTick(function(){e.focus()})),!0===this.$q.platform.is.desktop&&!0===this.useBackdrop&&document.body.addEventListener("focusin",this.__onFocusChange),this.timer=setTimeout(function(){e.$emit("show",t)},300)},__hide:function(t){var e=this;this.__cleanup(!0),this.timer=setTimeout(function(){void 0!==e.__refocusTarget&&e.__refocusTarget.focus(),e.__hidePortal(),e.$emit("hide",t)},300)},__cleanup:function(t){clearTimeout(this.timer),clearTimeout(this.shakeTimeout),!0===this.$q.platform.is.desktop&&!0!==this.seamless&&document.body.removeEventListener("focusin",this.__onFocusChange),!0!==t&&!0!==this.showing||(l["a"].pop(this),this.__updateState(!1,this.maximized))},__updateState:function(t,e){!0!==this.seamless&&this.__preventScroll(t),!0===e&&(!0===t?d<1&&document.body.classList.add("q-body--dialog"):d<2&&document.body.classList.remove("q-body--dialog"),d+=!0===t?1:-1)},__onAutoClose:function(t){!0!==this.avoidAutoClose&&(this.hide(t),void 0!==this.$listeners.click&&this.$emit("click",t))},__onBackdropClick:function(t){!0!==this.persistent&&!0!==this.noBackdropDismiss?this.hide(t):this.shake()},__onFocusChange:function(t){void 0!==this.__portal&&void 0!==this.__portal.$el&&null===this.__portal.$el.nextElementSibling&&!0!==this.__portal.$el.contains(t.target)&&this.__portal.$refs.inner.focus()},__render:function(t){var e=r()({},this.$listeners,{input:h["g"]});return!0===this.autoClose&&(e.click=this.__onAutoClose),t("div",{staticClass:"q-dialog fullscreen no-pointer-events",class:this.contentClass,style:this.contentStyle,attrs:this.$attrs},[t("transition",{props:{name:"q-transition--fade"}},!0===this.useBackdrop?[t("div",{staticClass:"q-dialog__backdrop fixed-full",on:{touchmove:h["h"],click:this.__onBackdropClick}})]:null),t("transition",{props:{name:this.transition}},[!0===this.showing?t("div",{ref:"inner",staticClass:"q-dialog__inner flex no-pointer-events",class:this.classes,attrs:{tabindex:-1},on:e},Object(u["a"])(this,"default")):null])])},__onPortalClose:function(t){this.hide(t)}},mounted:function(){!0===this.value&&this.show()},beforeDestroy:function(){this.__cleanup()}})},2621:function(t,e){e.f=Object.getOwnPropertySymbols},"27ee":function(t,e,n){var i=n("23c6"),r=n("2b4c")("iterator"),o=n("84f2");t.exports=n("8378").getIteratorMethod=function(t){if(void 0!=t)return t[r]||t["@@iterator"]||o[i(t)]}},"27f9":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("c5f6"),n("2b0e")),s=n("8572"),a=(n("a481"),n("ac6a"),n("cadf"),n("456d"),n("3b2b"),{"#":{pattern:/[\d]/},S:{pattern:/[a-zA-Z]/},N:{pattern:/[0-9a-zA-Z]/},A:{pattern:/[a-zA-Z]/,transform:function(t){return t.toLocaleUpperCase()}},a:{pattern:/[a-zA-Z]/,transform:function(t){return t.toLocaleLowerCase()}},X:{pattern:/[0-9a-zA-Z]/,transform:function(t){return t.toLocaleUpperCase()}},x:{pattern:/[0-9a-zA-Z]/,transform:function(t){return t.toLocaleLowerCase()}}}),c=new RegExp("["+Object.keys(a).join("")+"]","g"),l={date:"####/##/##",datetime:"####/##/## ##:##",time:"##:##",fulltime:"##:##:##",phone:"(###) ### - ####",card:"#### #### #### ####"},u={props:{mask:String,fillMask:Boolean,unmaskedValue:Boolean},watch:{mask:function(t){if(void 0!==t)this.__updateMaskValue(this.innerValue);else{var e=this.__unmask(this.innerValue);this.value!==e&&this.$emit("input",e)}},fillMask:function(t){!0===this.hasMask&&this.__updateMaskValue(this.innerValue)},unmaskedValue:function(t){!0===this.hasMask&&this.__updateMaskValue(this.innerValue)}},computed:{hasMask:function(){return void 0!==this.mask&&this.mask.length>0},computedMask:function(){return l[this.mask]||this.mask}},methods:{__getInitialMaskedValue:function(){if(void 0!==this.mask&&this.mask.length>0){var t=l[this.mask]||this.mask,e=this.__mask(this.__unmask(this.value),t);return!0===this.fillMask?this.__fillWithMask(e,t):e}return this.value},__updateMaskValue:function(t){var e=this,n=this.$refs.input,i=this.__unmask(t),r=this.__mask(i,this.computedMask),o=!0===this.fillMask?this.__fillWithMask(r,this.computedMask):r,s=this.__getCursor(n);n.value!==o&&(n.value=o),this.innerValue!==o&&(this.innerValue=o),this.$nextTick(function(){e.__updateCursor(n,s,e.innerValue)}),!0===this.unmaskedValue&&(o=this.__unmask(o)),this.value!==o&&this.__emitValue(o,!0)},__getCursor:function(t){for(var e=t.selectionEnd,n=t.value,i=0,r=0;r0;r++)/[\w]/.test(n[r])&&e--,i++;t.setSelectionRange(i,i)},__onMaskedKeydown:function(t){var e=this.$refs.input;if(39===t.keyCode){var n=e.selectionEnd;if(/[\W ]/.test(e.value[n])){for(n++;n0;i--)if(/[\w]/.test(e.value[i])){i+=2;break}i>=0&&e.setSelectionRange(i,i)}}void 0!==this.$listeners.keydown&&this.$emit("keydown",t)},__mask:function(t,e){if(void 0===t||null===t||""===t)return"";var n=0,i=0,r="";while(n0?t+e.slice(t.length).replace(c,"_"):t}}},h=n("1c16"),d=n("d882");e["a"]=o["a"].extend({name:"QInput",mixins:[s["a"],u],props:{value:[String,Number],type:{type:String,default:"text"},debounce:[String,Number],maxlength:[Number,String],autogrow:Boolean,inputClass:[Array,String,Object],inputStyle:[Array,String,Object]},watch:{value:function(t){if(!0===this.hasMask){if(!0===this.stopValueWatcher)return void(this.stopValueWatcher=!1);this.__updateMaskValue(t)}else this.innerValue!==t&&(this.innerValue=t);!0===this.autogrow&&this.$nextTick(this.__adjustHeightDebounce)},autogrow:function(t){if(!0===t)this.$nextTick(this.__adjustHeightDebounce);else if(this.$attrs.rows>0){var e=this.$refs.input;e.style.height="auto"}}},data:function(){return{innerValue:this.__getInitialMaskedValue()}},computed:{isTextarea:function(){return"textarea"===this.type||!0===this.autogrow},fieldClass:function(){return"q-".concat(!0===this.isTextarea?"textarea":"input")+(!0===this.autogrow?" q-textarea--autogrow":"")}},methods:{focus:function(){this.$refs.input.focus()},__onInput:function(t){if("file"!==this.type){var e=t.target.value;!0===this.hasMask?this.__updateMaskValue(e):this.__emitValue(e),!0===this.autogrow&&this.__adjustHeight()}else this.$emit("input",t.target.files)},__emitValue:function(t,e){var n=this,i=function(){!0===n.hasOwnProperty("tempValue")&&delete n.tempValue,n.value!==t&&(!0===e&&(n.stopValueWatcher=!0),n.$emit("input",t))};void 0!==this.debounce?(clearTimeout(this.emitTimer),this.tempValue=t,this.emitTimer=setTimeout(i,this.debounce)):i()},__adjustHeight:function(){var t=this.$refs.input;t.style.height="1px",t.style.height=t.scrollHeight+"px"},__getControl:function(t){var e=r()({},this.$listeners,{input:this.__onInput,focus:d["g"],blur:d["g"]});!0===this.hasMask&&(e.keydown=this.__onMaskedKeydown);var n=r()({tabindex:0,autofocus:this.autofocus,rows:"textarea"===this.type?6:void 0},this.$attrs,{"aria-label":this.label,type:this.type,maxlength:this.maxlength,disabled:this.disable,readonly:this.readonly});return!0===this.autogrow&&(n.rows=1),t(this.isTextarea?"textarea":"input",{ref:"input",staticClass:"q-field__native",style:this.inputStyle,class:this.inputClass,attrs:n,on:e,domProps:"file"!==this.type?{value:!0===this.hasOwnProperty("tempValue")?this.tempValue:this.innerValue}:null})}},created:function(){this.__adjustHeightDebounce=Object(h["a"])(this.__adjustHeight,100)},mounted:function(){!0===this.autogrow&&this.__adjustHeight()},beforeDestroy:function(){clearTimeout(this.emitTimer)}})},2877:function(t,e,n){"use strict";function i(t,e,n,i,r,o,s,a){var c,l="function"===typeof t?t.options:t;if(e&&(l.render=e,l.staticRenderFns=n,l._compiled=!0),i&&(l.functional=!0),o&&(l._scopeId="data-v-"+o),s?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},l._ssrRegister=c):r&&(c=a?function(){r.call(this,this.$root.$options.shadowRoot)}:r),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(t,e){return c.call(e),u(t,e)}}else{var h=l.beforeCreate;l.beforeCreate=h?[].concat(h,c):[c]}return{exports:t,options:l}}n.d(e,"a",function(){return i})},"28a5":function(t,e,n){"use strict";var i=n("aae3"),r=n("cb7c"),o=n("ebd6"),s=n("0390"),a=n("9def"),c=n("5f1b"),l=n("520a"),u=n("79e5"),h=Math.min,d=[].push,f="split",p="length",m="lastIndex",v=4294967295,g=!u(function(){RegExp(v,"y")});n("214f")("split",2,function(t,e,n,u){var _;return _="c"=="abbc"[f](/(b)*/)[1]||4!="test"[f](/(?:)/,-1)[p]||2!="ab"[f](/(?:ab)*/)[p]||4!="."[f](/(.?)(.?)/)[p]||"."[f](/()()/)[p]>1||""[f](/.?/)[p]?function(t,e){var r=String(this);if(void 0===t&&0===e)return[];if(!i(t))return n.call(r,t,e);var o,s,a,c=[],u=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),h=0,f=void 0===e?v:e>>>0,g=new RegExp(t.source,u+"g");while(o=l.call(g,r)){if(s=g[m],s>h&&(c.push(r.slice(h,o.index)),o[p]>1&&o.index=f))break;g[m]===o.index&&g[m]++}return h===r[p]?!a&&g.test("")||c.push(""):c.push(r.slice(h)),c[p]>f?c.slice(0,f):c}:"0"[f](void 0,0)[p]?function(t,e){return void 0===t&&0===e?[]:n.call(this,t,e)}:n,[function(n,i){var r=t(this),o=void 0==n?void 0:n[e];return void 0!==o?o.call(n,r,i):_.call(String(r),n,i)},function(t,e){var i=u(_,t,this,e,_!==n);if(i.done)return i.value;var l=r(t),d=String(this),f=o(l,RegExp),p=l.unicode,m=(l.ignoreCase?"i":"")+(l.multiline?"m":"")+(l.unicode?"u":"")+(g?"y":"g"),b=new f(g?l:"^(?:"+l.source+")",m),y=void 0===e?v:e>>>0;if(0===y)return[];if(0===d.length)return null===c(b,d)?[d]:[];var w=0,k=0,x=[];while(k/,r=/^<([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)>/;t.exports=function(t,e){var n,o,s,a,c,l,u=t.pos;return 60===t.src.charCodeAt(u)&&(n=t.src.slice(u),!(n.indexOf(">")<0)&&(r.test(n)?(o=n.match(r),a=o[0].slice(1,-1),c=t.md.normalizeLink(a),!!t.md.validateLink(c)&&(e||(l=t.push("link_open","a",1),l.attrs=[["href",c]],l.markup="autolink",l.info="auto",l=t.push("text","",0),l.content=t.md.normalizeLinkText(a),l=t.push("link_close","a",-1),l.markup="autolink",l.info="auto"),t.pos+=o[0].length,!0)):!!i.test(n)&&(s=n.match(i),a=s[0].slice(1,-1),c=t.md.normalizeLink("mailto:"+a),!!t.md.validateLink(c)&&(e||(l=t.push("link_open","a",1),l.attrs=[["href",c]],l.markup="autolink",l.info="auto",l=t.push("text","",0),l.content=t.md.normalizeLinkText(a),l=t.push("link_close","a",-1),l.markup="autolink",l.info="auto"),t.pos+=s[0].length,!0))))}},"29aa":function(t,e,n){},"2a19":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("2fdb"),n("6762"),n("f751"),n("2b0e")),s=n("adc8"),a=n.n(s),c=n("dde5"),l=n("0016"),u=o["a"].extend({name:"QAvatar",props:{size:String,fontSize:String,color:String,textColor:String,icon:String,square:Boolean,rounded:Boolean},computed:{contentClass:function(){var t;return t={},a()(t,"bg-".concat(this.color),this.color),a()(t,"text-".concat(this.textColor," q-chip--colored"),this.textColor),a()(t,"q-avatar__content--square",this.square),a()(t,"rounded-borders",this.rounded),t},style:function(){if(this.size)return{fontSize:this.size}},contentStyle:function(){if(this.fontSize)return{fontSize:this.fontSize}}},methods:{__getContent:function(t){return void 0!==this.icon?[t(l["a"],{props:{name:this.icon}})].concat(Object(c["a"])(this,"default")):Object(c["a"])(this,"default")}},render:function(t){return t("div",{staticClass:"q-avatar",style:this.style,on:this.$listeners},[t("div",{staticClass:"q-avatar__content row flex-center overflow-hidden",class:this.contentClass,style:this.contentStyle},[this.__getContent(t)])])}}),h=n("9c40"),d=n("1732"),f=function(t){var e=JSON.stringify(t);if(e)return JSON.parse(e)},p=n("0967"),m={},v=["top-left","top-right","bottom-left","bottom-right","top","bottom","left","right","center"],g={name:"QNotifications",data:{notifs:{center:[],left:[],right:[],top:[],"top-left":[],"top-right":[],bottom:[],"bottom-left":[],"bottom-right":[]}},methods:{add:function(t){var e=this;if(!t)return console.error("Notify: parameter required"),!1;var n=Object.assign({textColor:"white"},m,"string"===typeof t?{message:t}:f(t));if(n.position){if(!v.includes(n.position))return console.error("Notify: wrong position: ".concat(n.position)),!1}else n.position="bottom";if(n.__uid=Object(d["a"])(),void 0===n.timeout)n.timeout=5e3;else{var i=parseInt(n.timeout,10);if(isNaN(i)||i<0)return console.error("Notify: wrong timeout: ".concat(n.timeout)),!1;n.timeout=i}var r=function(){e.remove(n)},o=(t.actions||[]).concat(m.actions||[]);if(o.length>0&&(n.actions=o.map(function(t){var e=t.handler,n=f(t);return n.handler="function"===typeof e?function(){e(),!t.noDismiss&&r()}:function(){return r()},n})),"function"===typeof t.onDismiss&&(n.onDismiss=t.onDismiss),n.closeBtn){var s=[{closeBtn:!0,label:n.closeBtn,handler:r}];n.actions=n.actions?n.actions.concat(s):s}n.timeout>0&&(n.__timeout=setTimeout(function(){r()},n.timeout+1e3)),void 0===n.multiLine&&n.actions&&(n.multiLine=n.actions.length>1),n.staticClass=["q-notification row items-center",n.color&&"bg-".concat(n.color),n.textColor&&"text-".concat(n.textColor),"q-notification--".concat(n.multiLine?"multi-line":"standard"),n.classes].filter(function(t){return t}).join(" ");var a=n.position.indexOf("top")>-1?"unshift":"push";return this.notifs[n.position][a](n),r},remove:function(t){t.__timeout&&clearTimeout(t.__timeout);var e=this.notifs[t.position].indexOf(t);if(-1!==e){var n=this.$refs["notif_".concat(t.__uid)];if(n){var i=getComputedStyle(n),r=i.width,o=i.height;n.style.left="".concat(n.offsetLeft,"px"),n.style.width=r,n.style.height=o}this.notifs[t.position].splice(e,1),"function"===typeof t.onDismiss&&t.onDismiss()}}},render:function(t){var e=this;return t("div",{staticClass:"q-notifications"},v.map(function(n){var i=["left","center","right"].includes(n)?"center":n.indexOf("top")>-1?"top":"bottom",o=n.indexOf("left")>-1?"start":n.indexOf("right")>-1?"end":"center",s=["left","right"].includes(n)?"items-".concat("left"===n?"start":"end"," justify-center"):"center"===n?"flex-center":"items-".concat(o);return t("transition-group",{key:n,staticClass:"q-notifications__list q-notifications__list--".concat(i," fixed column ").concat(s),tag:"div",props:{name:"q-notification--".concat(n),mode:"out-in"}},e.notifs[n].map(function(e){return t("div",{ref:"notif_".concat(e.__uid),key:e.__uid,staticClass:e.staticClass},[t("div",{staticClass:"row items-center "+(e.multiLine?"col-all":"col")},[e.icon?t(l["a"],{staticClass:"q-notification__icon col-auto",props:{name:e.icon}}):null,e.avatar?t(u,{staticClass:"q-notification__avatar col-auto"},[t("img",{attrs:{src:e.avatar}})]):null,t("div",{staticClass:"q-notification__message col"},[e.message])]),e.actions?t("div",{staticClass:"q-notification__actions row items-center "+(e.multiLine?"col-all justify-end":"col-auto")},e.actions.map(function(e){return t(h["a"],{props:r()({flat:!0},e),on:{click:e.handler}})})):null])}))}))}};function _(){var t=document.createElement("div");document.body.appendChild(t),this.__vm=new o["a"](g),this.__vm.$mount(t)}e["a"]={create:function(t){return!0===p["c"]?function(){}:this.__vm.add(t)},setDefaults:function(t){Object.assign(m,t)},install:function(t){if(!0===p["c"])return t.$q.notify=function(){},void(t.$q.notify.setDefaults=function(){});_.call(this,t),t.cfg.notify&&this.setDefaults(t.cfg.notify),t.$q.notify=this.create.bind(this),t.$q.notify.setDefaults=this.setDefaults}}},"2aba":function(t,e,n){var i=n("7726"),r=n("32e9"),o=n("69a8"),s=n("ca5a")("src"),a=n("fa5b"),c="toString",l=(""+a).split(c);n("8378").inspectSource=function(t){return a.call(t)},(t.exports=function(t,e,n,a){var c="function"==typeof n;c&&(o(n,"name")||r(n,"name",e)),t[e]!==n&&(c&&(o(n,s)||r(n,s,t[e]?""+t[e]:l.join(String(e)))),t===i?t[e]=n:a?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,c,function(){return"function"==typeof this&&this[s]||a.call(this)})},"2aeb":function(t,e,n){var i=n("cb7c"),r=n("1495"),o=n("e11e"),s=n("613b")("IE_PROTO"),a=function(){},c="prototype",l=function(){var t,e=n("230e")("iframe"),i=o.length,r="<",s=">";e.style.display="none",n("fab2").appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(r+"script"+s+"document.F=Object"+r+"/script"+s),t.close(),l=t.F;while(i--)delete l[c][o[i]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[c]=i(t),n=new a,a[c]=null,n[s]=t):n=l(),void 0===e?n:r(n,e)}},"2b0e":function(t,e,n){"use strict";(function(t){ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["vendor"],{"0016":function(t,e,n){"use strict";n("f559"),n("7f7f");var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QIcon",props:{name:String,color:String,size:String,left:Boolean,right:Boolean},computed:{type:function(){var t,e=this.name;if(!e)return{cls:void 0,content:void 0};var n="q-icon"+(!0===this.left?" on-left":"")+(!0===this.right?" on-right":"");if(!0===e.startsWith("img:"))return{img:!0,cls:n,src:e.substring(4)};var i=" ";return/^fa[s|r|l|b]{0,1} /.test(e)||!0===e.startsWith("icon-")?t=e:!0===e.startsWith("bt-")?t="bt ".concat(e):!0===e.startsWith("eva-")?t="eva ".concat(e):!0===/^ion-(md|ios|logo)/.test(e)?t="ionicons ".concat(e):!0===e.startsWith("ion-")?t="ionicons ion-".concat(!0===this.$q.platform.is.ios?"ios":"md").concat(e.substr(3)):!0===e.startsWith("mdi-")?t="mdi ".concat(e):!0===e.startsWith("iconfont ")?t="".concat(e):!0===e.startsWith("ti-")?t="themify-icon ".concat(e):(t="material-icons",i=e),{cls:t+" "+n+(void 0!==this.color?" text-".concat(this.color):""),content:i}},style:function(){if(void 0!==this.size)return{fontSize:this.size}}},render:function(t){return!0===this.type.img?t("img",{staticClass:this.type.cls,style:this.style,on:this.$listeners,attrs:{src:this.type.src}}):t("i",{staticClass:this.type.cls,style:this.style,on:this.$listeners,attrs:{"aria-hidden":!0}},[this.type.content,Object(r["a"])(this,"default")])}})},"0068":function(t,e,n){"use strict";function i(t){return Object.prototype.toString.call(t)}function r(t){return"[object String]"===i(t)}var o=Object.prototype.hasOwnProperty;function s(t,e){return o.call(t,e)}function a(t){var e=Array.prototype.slice.call(arguments,1);return e.forEach(function(e){if(e){if("object"!==typeof e)throw new TypeError(e+"must be object");Object.keys(e).forEach(function(n){t[n]=e[n]})}}),t}function c(t,e,n){return[].concat(t.slice(0,e),n,t.slice(e+1))}function l(t){return!(t>=55296&&t<=57343)&&(!(t>=64976&&t<=65007)&&(65535!==(65535&t)&&65534!==(65535&t)&&(!(t>=0&&t<=8)&&(11!==t&&(!(t>=14&&t<=31)&&(!(t>=127&&t<=159)&&!(t>1114111)))))))}function u(t){if(t>65535){t-=65536;var e=55296+(t>>10),n=56320+(1023&t);return String.fromCharCode(e,n)}return String.fromCharCode(t)}var h=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,d=/&([a-z#][a-z0-9]{1,31});/gi,f=new RegExp(h.source+"|"+d.source,"gi"),p=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,m=n("bd68");function v(t,e){var n=0;return s(m,e)?m[e]:35===e.charCodeAt(0)&&p.test(e)&&(n="x"===e[1].toLowerCase()?parseInt(e.slice(2),16):parseInt(e.slice(1),10),l(n))?u(n):t}function g(t){return t.indexOf("\\")<0?t:t.replace(h,"$1")}function _(t){return t.indexOf("\\")<0&&t.indexOf("&")<0?t:t.replace(f,function(t,e,n){return e||v(t,n)})}var b=/[&<>"]/,y=/[&<>"]/g,w={"&":"&","<":"<",">":">",'"':"""};function k(t){return w[t]}function x(t){return b.test(t)?t.replace(y,k):t}var C=/[.?*+^$[\]\\(){}|-]/g;function S(t){return t.replace(C,"\\$&")}function A(t){switch(t){case 9:case 32:return!0}return!1}function E(t){if(t>=8192&&t<=8202)return!0;switch(t){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var q=n("7ca0");function T(t){return q.test(t)}function $(t){switch(t){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function O(t){return t.trim().replace(/\s+/g," ").toUpperCase()}e.lib={},e.lib.mdurl=n("d8a6"),e.lib.ucmicro=n("d5d1"),e.assign=a,e.isString=r,e.has=s,e.unescapeMd=g,e.unescapeAll=_,e.isValidEntityCode=l,e.fromCodePoint=u,e.escapeHtml=x,e.arrayReplaceAt=c,e.isSpace=A,e.isWhiteSpace=E,e.isMdAsciiPunct=$,e.isPunctChar=T,e.escapeRE=S,e.normalizeReference=O},"00bd":function(t,e,n){"use strict";t.exports=function(t,e){return t[e].content}},"00f0":function(t,e){function n(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e=l?t?"":void 0:(o=a.charCodeAt(c),o<55296||o>56319||c+1===l||(s=a.charCodeAt(c+1))<56320||s>57343?t?a.charAt(c):o:t?a.slice(c,c+2):s-56320+(o-55296<<10)+65536)}}},"033f":function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e"),s=n("dde5");e["a"]=o["a"].extend({name:"QItemSection",props:{avatar:Boolean,thumbnail:Boolean,side:Boolean,top:Boolean,noWrap:Boolean},computed:{classes:function(){var t=this.avatar||this.side||this.thumbnail;return r()({"q-item__section--top":this.top,"q-item__section--avatar":this.avatar,"q-item__section--thumbnail":this.thumbnail,"q-item__section--side":t,"q-item__section--nowrap":this.noWrap,"q-item__section--main":!t},"justify-".concat(this.top?"start":"center"),!0)}},render:function(t){return t("div",{staticClass:"q-item__section column",class:this.classes,on:this.$listeners},Object(s["a"])(this,"default"))}})},"0378":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("ac6a"),n("cadf"),n("5df3"),n("551c"),n("ff57")),s=n.n(o),a=n("2b0e"),c=n("d882"),l=n("dde5"),u=n("2c75");e["a"]=a["a"].extend({name:"QForm",props:{autofocus:Boolean},mounted:function(){this.validateIndex=0,!0===this.autofocus&&this.focus()},methods:{validate:function(){var t=this,e=[];this.validateIndex++;for(var n=Object(u["a"])(this),i=function(e){t.$emit("validation-"+(!0===e?"success":"error"))},r=function(t){var r=n[t];if("function"===typeof r.validate){var o=r.validate();if("function"===typeof o.then)e.push(o.then(function(t){return{valid:t,comp:r}},function(t){return{valid:!1,comp:r,error:t}}));else if(!0!==o)return i(!1),"function"===typeof r.focus&&r.focus(),{v:Promise.resolve(!1)}}},o=0;o=4)return!1;if(o=t.src.charCodeAt(l),35!==o||l>=u)return!1;s=1,o=t.src.charCodeAt(++l);while(35===o&&l6||ll&&i(t.src.charCodeAt(a-1))&&(u=a),t.line=e+1,c=t.push("heading_open","h"+String(s),1),c.markup="########".slice(0,s),c.map=[e,t.line],c=t.push("inline","",0),c.content=t.src.slice(l,u).trim(),c.map=[e,t.line],c.children=[],c=t.push("heading_close","h"+String(s),-1),c.markup="########".slice(0,s),!0))}},"0831":function(t,e,n){"use strict";n.d(e,"d",function(){return o}),n.d(e,"c",function(){return c}),n.d(e,"b",function(){return l}),n.d(e,"h",function(){return p}),n.d(e,"g",function(){return m}),n.d(e,"e",function(){return v}),n.d(e,"f",function(){return g});n("6762"),n("2fdb");var i,r=n("f303");function o(t){return t.closest(".scroll,.scroll-y,.overflow-auto")||window}function s(t){return(t===window?document.body:t).scrollHeight}function a(t){return(t===window?document.body:t).scrollWidth}function c(t){return t===window?window.pageYOffset||window.scrollY||document.body.scrollTop||0:t.scrollTop}function l(t){return t===window?window.pageXOffset||window.scrollX||document.body.scrollLeft||0:t.scrollLeft}function u(t,e,n){var i=c(t);n<=0?i!==e&&d(t,e):requestAnimationFrame(function(){var r=i+(e-i)/Math.max(16,n)*16;d(t,r),r!==e&&u(t,e,n-16)})}function h(t,e,n){var i=l(t);n<=0?i!==e&&f(t,e):requestAnimationFrame(function(){var r=i+(e-i)/Math.max(16,n)*16;f(t,r),r!==e&&h(t,e,n-16)})}function d(t,e){t!==window?t.scrollTop=e:window.scrollTo(0,e)}function f(t,e){t!==window?t.scrollLeft=e:window.scrollTo(e,0)}function p(t,e,n){n?u(t,e,n):d(t,e)}function m(t,e,n){n?h(t,e,n):f(t,e)}function v(){if(void 0!==i)return i;var t=document.createElement("p"),e=document.createElement("div");Object(r["a"])(t,{width:"100%",height:"200px"}),Object(r["a"])(e,{position:"absolute",top:"0px",left:"0px",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var n=t.offsetWidth;e.style.overflow="scroll";var o=t.offsetWidth;return n===o&&(o=e.clientWidth),e.remove(),i=n-o,i}function g(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!(!t||t.nodeType!==Node.ELEMENT_NODE)&&(e?t.scrollHeight>t.clientHeight&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-y"])):t.scrollWidth>t.clientWidth&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-x"])))}e["a"]={getScrollTarget:o,getScrollHeight:s,getScrollWidth:a,getScrollPosition:c,getHorizontalScrollPosition:l,animScrollTo:u,animHorizontalScrollTo:h,setScrollPosition:p,setHorizontalScrollPosition:m,getScrollbarWidth:v,hasScrollbar:g}},"08ae":function(t,e,n){"use strict";var i=n("0068"),r=n("565b"),o=n("7cc2"),s=n("a915"),a=n("7696"),c=n("4cb4"),l=n("fbcd"),u=n("d8a6"),h=n("c570"),d={default:n("8a31"),zero:n("1caa"),commonmark:n("428d")},f=/^(vbscript|javascript|file|data):/,p=/^data:image\/(gif|png|jpeg|webp);/;function m(t){var e=t.trim().toLowerCase();return!f.test(e)||!!p.test(e)}var v=["http:","https:","mailto:"];function g(t){var e=u.parse(t,!0);if(e.hostname&&(!e.protocol||v.indexOf(e.protocol)>=0))try{e.hostname=h.toASCII(e.hostname)}catch(n){}return u.encode(u.format(e))}function _(t){var e=u.parse(t,!0);if(e.hostname&&(!e.protocol||v.indexOf(e.protocol)>=0))try{e.hostname=h.toUnicode(e.hostname)}catch(n){}return u.decode(u.format(e))}function b(t,e){if(!(this instanceof b))return new b(t,e);e||i.isString(t)||(e=t||{},t="default"),this.inline=new c,this.block=new a,this.core=new s,this.renderer=new o,this.linkify=new l,this.validateLink=m,this.normalizeLink=g,this.normalizeLinkText=_,this.utils=i,this.helpers=i.assign({},r),this.options={},this.configure(t),e&&this.set(e)}b.prototype.set=function(t){return i.assign(this.options,t),this},b.prototype.configure=function(t){var e,n=this;if(i.isString(t)&&(e=t,t=d[e],!t))throw new Error('Wrong `markdown-it` preset "'+e+'", check name');if(!t)throw new Error("Wrong `markdown-it` preset, can't be empty");return t.options&&n.set(t.options),t.components&&Object.keys(t.components).forEach(function(e){t.components[e].rules&&n[e].ruler.enableOnly(t.components[e].rules),t.components[e].rules2&&n[e].ruler2.enableOnly(t.components[e].rules2)}),this},b.prototype.enable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.enable(t,!0))},this),n=n.concat(this.inline.ruler2.enable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+i);return this},b.prototype.disable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.disable(t,!0))},this),n=n.concat(this.inline.ruler2.disable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+i);return this},b.prototype.use=function(t){var e=[this].concat(Array.prototype.slice.call(arguments,1));return t.apply(t,e),this},b.prototype.parse=function(t,e){if("string"!==typeof t)throw new Error("Input data should be a String");var n=new this.core.State(t,this,e);return this.core.process(n),n.tokens},b.prototype.render=function(t,e){return e=e||{},this.renderer.render(this.parse(t,e),this.options,e)},b.prototype.parseInline=function(t,e){var n=new this.core.State(t,this,e);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(t,e){return e=e||{},this.renderer.render(this.parseInline(t,e),this.options,e)},t.exports=b},"0909":function(t,e,n){"use strict";var i=n("0967");e["a"]={data:function(){return{canRender:!i["d"]}},mounted:function(){!1===this.canRender&&(this.canRender=!0)}}},"0967":function(t,e,n){"use strict";n.d(e,"c",function(){return a}),n.d(e,"b",function(){return c}),n.d(e,"d",function(){return l});n("f751");var i,r=n("3c93"),o=n.n(r),s=n("2b0e"),a="undefined"===typeof window,c=!1,l=a;function u(t,e){var n=/(edge)\/([\w.]+)/.exec(t)||/(opr)[\/]([\w.]+)/.exec(t)||/(vivaldi)[\/]([\w.]+)/.exec(t)||/(chrome)[\/]([\w.]+)/.exec(t)||/(iemobile)[\/]([\w.]+)/.exec(t)||/(version)(applewebkit)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+).*(version)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+)/.exec(t)||/(opera)(?:.*version|)[\/]([\w.]+)/.exec(t)||/(msie) ([\w.]+)/.exec(t)||t.indexOf("trident")>=0&&/(rv)(?::| )([\w.]+)/.exec(t)||t.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(t)||[];return{browser:n[5]||n[3]||n[1]||"",version:n[2]||n[4]||"0",versionNumber:n[4]||n[2]||"0",platform:e[0]||""}}function h(t){return/(ipad)/.exec(t)||/(ipod)/.exec(t)||/(windows phone)/.exec(t)||/(iphone)/.exec(t)||/(kindle)/.exec(t)||/(silk)/.exec(t)||/(android)/.exec(t)||/(win)/.exec(t)||/(mac)/.exec(t)||/(linux)/.exec(t)||/(cros)/.exec(t)||/(playbook)/.exec(t)||/(bb)/.exec(t)||/(blackberry)/.exec(t)||[]}function d(t){t=(t||navigator.userAgent||navigator.vendor||window.opera).toLowerCase();var e=h(t),n=u(t,e),i={};return n.browser&&(i[n.browser]=!0,i.version=n.version,i.versionNumber=parseInt(n.versionNumber,10)),n.platform&&(i[n.platform]=!0),(i.android||i.bb||i.blackberry||i.ipad||i.iphone||i.ipod||i.kindle||i.playbook||i.silk||i["windows phone"])&&(i.mobile=!0),(i.ipod||i.ipad||i.iphone)&&(i.ios=!0),i["windows phone"]&&(i.winphone=!0,delete i["windows phone"]),(i.cros||i.mac||i.linux||i.win)&&(i.desktop=!0),(i.chrome||i.opr||i.safari||i.vivaldi)&&(i.webkit=!0),(i.rv||i.iemobile)&&(n.browser="ie",i.ie=!0),i.edge&&(n.browser="edge",i.edge=!0),(i.safari&&i.blackberry||i.bb)&&(n.browser="blackberry",i.blackberry=!0),i.safari&&i.playbook&&(n.browser="playbook",i.playbook=!0),i.opr&&(n.browser="opera",i.opera=!0),i.safari&&i.android&&(n.browser="android",i.android=!0),i.safari&&i.kindle&&(n.browser="kindle",i.kindle=!0),i.safari&&i.silk&&(n.browser="silk",i.silk=!0),i.vivaldi&&(n.browser="vivaldi",i.vivaldi=!0),i.name=n.browser,i.platform=n.platform,!1===a&&(window.process&&window.process.versions&&window.process.versions.electron?i.electron=!0:0===document.location.href.indexOf("chrome-extension://")?i.chromeExt=!0:(window._cordovaNative||window.cordova)&&(i.cordova=!0),c=void 0===i.cordova&&void 0===i.electron&&!!document.querySelector("[data-server-rendered]"),!0===c&&(l=!0)),i}function f(){if(void 0!==i)return i;try{if(window.localStorage)return i=!0,!0}catch(t){}return i=!1,!1}function p(){return{has:{touch:function(){return!!("ontouchstart"in document.documentElement)||window.navigator.msMaxTouchPoints>0}(),webStorage:f()},within:{iframe:window.self!==window.top}}}e["a"]={has:{touch:!1,webStorage:!1},within:{iframe:!1},parseSSR:function(t){return t?{is:d(t.req.headers["user-agent"]),has:this.has,within:this.within}:o()({is:d()},p())},install:function(t,e){var n=this;!0!==a?(this.is=d(),!0===c?(e.takeover.push(function(t){l=c=!1,Object.assign(t.platform,p())}),s["a"].util.defineReactive(t,"platform",this)):(Object.assign(this,p()),t.platform=this)):e.server.push(function(t,e){t.platform=n.parseSSR(e.ssr)})}}},"096b":function(t,e,n){"use strict";function i(t,e,n){this.type=t,this.tag=e,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}i.prototype.attrIndex=function(t){var e,n,i;if(!this.attrs)return-1;for(e=this.attrs,n=0,i=e.length;n=0&&(n=this.attrs[e][1]),n},i.prototype.attrJoin=function(t,e){var n=this.attrIndex(t);n<0?this.attrPush([t,e]):this.attrs[n][1]=this.attrs[n][1]+" "+e},t.exports=i},"097b":function(t,e,n){"use strict";var i=n("096b"),r=n("0068").isWhiteSpace,o=n("0068").isPunctChar,s=n("0068").isMdAsciiPunct;function a(t,e,n,i){this.src=t,this.env=n,this.md=e,this.tokens=i,this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[]}a.prototype.pushPending=function(){var t=new i("text","",0);return t.content=this.pending,t.level=this.pendingLevel,this.tokens.push(t),this.pending="",t},a.prototype.push=function(t,e,n){this.pending&&this.pushPending();var r=new i(t,e,n);return n<0&&this.level--,r.level=this.level,n>0&&this.level++,this.pendingLevel=this.level,this.tokens.push(r),r},a.prototype.scanDelims=function(t,e){var n,i,a,c,l,u,h,d,f,p=t,m=!0,v=!0,g=this.posMax,_=this.src.charCodeAt(t);n=t>0?this.src.charCodeAt(t-1):32;while(pw;w++)if((d||w in _)&&(m=_[w],v=b(m,w,g),t))if(n)k[w]=v;else if(v)switch(t){case 3:return!0;case 5:return m;case 6:return w;case 2:k.push(m)}else if(u)return!1;return h?-1:l||u?u:k}}},"0bfb":function(t,e,n){"use strict";var i=n("cb7c");t.exports=function(){var t=i(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},"0d4c":function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},"0d58":function(t,e,n){var i=n("ce10"),r=n("e11e");t.exports=Object.keys||function(t){return i(t,r)}},"0d59":function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r={props:{color:String,size:{type:[Number,String],default:"1em"}},computed:{classes:function(){if(this.color)return"text-".concat(this.color)}}};e["a"]=i["a"].extend({name:"QSpinner",mixins:[r],props:{thickness:{type:Number,default:5}},render:function(t){return t("svg",{staticClass:"q-spinner q-spinner-mat",class:this.classes,on:this.$listeners,attrs:{width:this.size,height:this.size,viewBox:"25 25 50 50"}},[t("circle",{staticClass:"path",attrs:{cx:"50",cy:"50",r:"20",fill:"none",stroke:"currentColor","stroke-width":this.thickness,"stroke-miterlimit":"10"}})])}})},"0dcc":function(t,e,n){"use strict";function i(t){return"BM"===t.toString("ascii",0,2)}function r(t){return{width:t.readUInt32LE(18),height:t.readUInt32LE(22)}}t.exports={detect:i,calculate:r}},1169:function(t,e,n){var i=n("2d95");t.exports=Array.isArray||function(t){return"Array"==i(t)}},"11e9":function(t,e,n){var i=n("52a7"),r=n("4630"),o=n("6821"),s=n("6a99"),a=n("69a8"),c=n("c69a"),l=Object.getOwnPropertyDescriptor;e.f=n("9e1e")?l:function(t,e){if(t=o(t),e=s(e,!0),c)try{return l(t,e)}catch(n){}if(a(t,e))return r(!i.f.call(t,e),t[e])}},"135b":function(t,e,n){"use strict";var i={ffdb:"0001010101",ffe0:"4a46494600",ffe1:"4578696600",ffe2:"4943435f50",ffe3:"",ffe8:"5350494646",ffec:"4475636b79",ffed:"50686f746f",ffee:"41646f6265"},r=["",""];function o(t){var e=t.toString("hex",0,2),n=t.toString("hex",2,4);if("ffd8"!==e)return!1;var o=t.toString("hex",6,11),s=n&&i[n];return""===s?(console.warn(r[0]+"this looks like a unrecognised jpeg\nplease report the issue here\n"+r[1],"\thttps://github.com/netroy/image-size/issues/new\n"),!1):o===s||"ffdb"===n}function s(t,e){return{height:t.readUInt16BE(e),width:t.readUInt16BE(e+2)}}function a(t,e){if(e>t.length)throw new TypeError("Corrupt JPG, exceeded buffer limits");if(255!==t[e])throw new TypeError("Invalid JPG, marker table corrupted")}function c(t){var e,n;t=t.slice(4);while(t.length){if(e=t.readUInt16BE(0),a(t,e),n=t[e+1],192===n||194===n)return s(t,e+5);t=t.slice(e+2)}throw new TypeError("Invalid JPG, no size found")}t.exports={detect:o,calculate:c}},1495:function(t,e,n){var i=n("86cc"),r=n("cb7c"),o=n("0d58");t.exports=n("9e1e")?Object.defineProperties:function(t,e){r(t);var n,s=o(e),a=s.length,c=0;while(a>c)i.f(t,n=s[c++],e[n]);return t}},1732:function(t,e,n){"use strict";n("6b54");function i(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}e["a"]=function(){return i()+i()+"-"+i()+"-"+i()+"-"+i()+"-"+i()+i()+i()}},1991:function(t,e,n){var i,r,o,s=n("9b43"),a=n("31f4"),c=n("fab2"),l=n("230e"),u=n("7726"),h=u.process,d=u.setImmediate,f=u.clearImmediate,p=u.MessageChannel,m=u.Dispatch,v=0,g={},_="onreadystatechange",b=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},y=function(t){b.call(t.data)};d&&f||(d=function(t){var e=[],n=1;while(arguments.length>n)e.push(arguments[n++]);return g[++v]=function(){a("function"==typeof t?t:Function(t),e)},i(v),v},f=function(t){delete g[t]},"process"==n("2d95")(h)?i=function(t){h.nextTick(s(b,t,1))}:m&&m.now?i=function(t){m.now(s(b,t,1))}:p?(r=new p,o=r.port2,r.port1.onmessage=y,i=s(o.postMessage,o,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(i=function(t){u.postMessage(t+"","*")},u.addEventListener("message",y,!1)):i=_ in l("script")?function(t){c.appendChild(l("script"))[_]=function(){c.removeChild(this),b.call(t)}}:function(t){setTimeout(s(b,t,1),0)}),t.exports={set:d,clear:f}},"199e":function(t,e,n){"use strict";t.exports=function(t,e,n){var i,r,o,s,a,c,l,u,h,d,f=e+1,p=t.md.block.ruler.getRules("paragraph");if(t.sCount[e]-t.blkIndent>=4)return!1;for(d=t.parentType,t.parentType="paragraph";f3)){if(t.sCount[f]>=t.blkIndent&&(c=t.bMarks[f]+t.tShift[f],l=t.eMarks[f],c=l)))){u=61===h?1:2;break}if(!(t.sCount[f]<0)){for(r=!1,o=0,s=p.length;o1&&void 0!==arguments[1]?arguments[1]:250,i=arguments.length>2?arguments[2]:void 0;function r(){for(var r=this,o=arguments.length,s=new Array(o),a=0;a1?arguments[1]:void 0)}}),n("9c6c")(o)},"214f":function(t,e,n){"use strict";n("b0c5");var i=n("2aba"),r=n("32e9"),o=n("79e5"),s=n("be13"),a=n("2b4c"),c=n("520a"),l=a("species"),u=!o(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$
")}),h=function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();t.exports=function(t,e,n){var d=a(t),f=!o(function(){var e={};return e[d]=function(){return 7},7!=""[t](e)}),p=f?!o(function(){var e=!1,n=/a/;return n.exec=function(){return e=!0,null},"split"===t&&(n.constructor={},n.constructor[l]=function(){return n}),n[d](""),!e}):void 0;if(!f||!p||"replace"===t&&!u||"split"===t&&!h){var m=/./[d],v=n(s,d,""[t],function(t,e,n,i,r){return e.exec===c?f&&!r?{done:!0,value:m.call(e,n,i)}:{done:!0,value:t.call(n,e,i)}:{done:!1}}),g=v[0],_=v[1];i(String.prototype,t,g),r(RegExp.prototype,d,2==e?function(t,e){return _.call(t,this,e)}:function(t){return _.call(t,this)})}}},2248:function(t,e,n){"use strict";n.d(e,"a",function(){return r});var i=n("0967");function r(){if(void 0!==window.getSelection){var t=window.getSelection();void 0!==t.empty?t.empty():void 0!==t.removeAllRanges&&(t.removeAllRanges(),!0!==i["a"].is.mobile&&t.addRange(document.createRange()))}else void 0!==document.selection&&document.selection.empty()}},"230e":function(t,e,n){var i=n("d3f4"),r=n("7726").document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},2330:function(t,e,n){"use strict";var i=n("8e72"),r=n.n(i),o=(n("a481"),n("c5f6"),n("2b0e")),s=n("d4cd"),a=n.n(s),c=n("362d"),l=n.n(c),u=n("54f6"),h=n.n(u),d=n("7ba6"),f=n.n(d),p=n("e6f9"),m=n.n(p),v=n("ff97"),g=n.n(v),_=n("5121"),b=n.n(_),y=n("cf2b"),w=n.n(y),k=n("4bb9"),x=n.n(k),C=n("746a"),S=n.n(C),A=n("be03"),E=n.n(A),q=n("8102"),T=n.n(q),$=o["a"].extend({name:"QMarkdown",props:{src:{type:String,default:""},noHtml:Boolean,noLink:Boolean,noLinkify:Boolean,noTypographer:Boolean,noBreaks:Boolean,noHighlight:Boolean,noEmoji:Boolean,noSubscript:Boolean,noSuperscript:Boolean,noFootnote:Boolean,noDeflist:Boolean,noAbbreviation:Boolean,noInsert:Boolean,noMark:Boolean,noImage:Boolean,noTasklist:Boolean,noContainer:Boolean,toc:Boolean,tocStart:{type:Number,default:1,validator:function(t){return t>=1&&t<=5}},tocEnd:{type:Number,default:3,validator:function(t){return t>=2&&t<=6}},taskListsEnable:Boolean,taskListsLabel:Boolean,taskListsLabelAfter:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array]},data:function(){return{source:this.src}},watch:{src:function(t){this.source=this.src}},methods:{__slugify:function(t){return encodeURIComponent(String(t).trim().replace(/\s+/g,"-"))},__extendBlockQuote:function(t){t.renderer.rules.blockquote_open=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--note"),r.renderToken(t,e,n)}},__extendHeading:function(t,e){var n=this;t.renderer.rules.heading_open=function(t,i,r,o,s){var a=t[i],c=t[i+1].children.reduce(function(t,e){return t+e.content},""),l="q-markdown--heading-".concat(a.tag);"="===a.markup?l+=" q-markdown--title-heavy":"-"===a.markup&&(l+=" q-markdown--title-light");var u=n.__slugify(c);if(a.attrSet("id",u),a.attrSet("class",l),n.toc){var h=parseInt(a.tag[1]);n.tocStart&&n.tocEnd&&n.tocStart=n.tocStart&&h<=n.tocEnd&&e.push({id:u,label:c,level:h,children:[]})}return s.renderToken(t,i,r)}},__extendImage:function(t){t.renderer.rules.image=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--image"),r.renderToken(t,e,n)}},__extendTable:function(t){t.renderer.rules.table_open=function(t,e,n,i,r){var o=t[e];return o.attrSet("class","q-markdown--table"),r.renderToken(t,e,n)}},__extendLink:function(t){t.renderer.rules.link_open=function(t,e,n,i,r){var o=t[e],s=o.attrIndex("href");return"/"===o.attrs[s][1][0]?o.attrSet("class","q-markdown--link q-markdown--link-local"):(o.attrSet("class","q-markdown--link q-markdown--link-external"),o.attrSet("target","_blank")),r.renderToken(t,e,n)}},__extendToken:function(t){var e=t.renderer.rules.code_inline;t.renderer.rules.code_inline=function(t,n,i,r,o){var s=t[n];return s.attrSet("class","q-markdown--token"),e(t,n,i,r,o)}},__createContainer:function(t,e){return[S.a,t,{render:function(n,i){var r=n[i],o=r.info.trim().slice(t.length).trim();return 1===r.nesting?'

').concat(o||e,"

\n"):"
\n"}}]},__extendContainers:function(t){var e,n,i,o;this.__isEnabled(this.noContainer)&&(e=(n=(i=(o=t.use.apply(t,r()(this.__createContainer("info","INFO")))).use.apply(o,r()(this.__createContainer("tip","TIP")))).use.apply(i,r()(this.__createContainer("warning","WARNING")))).use.apply(n,r()(this.__createContainer("danger","IMPORTANT")))).use.apply(e,r()(this.__createContainer("",""))).use(S.a,"v-pre",{render:function(t,e){return 1===t[e].nesting?"
\n":"
\n"}})},__isEnabled:function(t){return void 0===t||!1===t},makeTree:function(t){for(var e=[],n=null,i=function(t){if(1===t.level)n=t,e.push(t);else if(2===t.level)n.children.push(t);else{for(var i=n,r=0;r0&&r.disable(c);var u=r.render(s);return this.toc&&o.length>0&&this.$emit("data",o),t("div",{staticClass:"q-markdown",class:this.contentClass,style:this.contentStyle,domProps:{innerHTML:u}})}});e["a"]=function(t){var e=t.Vue;e.component("q-markdown",$)}},"23c6":function(t,e,n){var i=n("2d95"),r=n("2b4c")("toStringTag"),o="Arguments"==i(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(n){}};t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),r))?n:o?i(e):"Object"==(a=i(e))&&"function"==typeof e.callee?"Arguments":a}},"24e8":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("6762"),n("2fdb"),n("2b0e")),s=n("7ee0"),a=n("9e62"),c=n("efe6"),l=n("a267"),u=n("dde5"),h=n("d882"),d=0,f={standard:"fixed-full flex-center",top:"fixed-top justify-center",bottom:"fixed-bottom justify-center",right:"fixed-right items-center",left:"fixed-left items-center"},p={top:["down","up"],bottom:["up","down"],right:["left","right"],left:["right","left"]};e["a"]=o["a"].extend({name:"QDialog",mixins:[s["a"],a["a"],c["a"]],modelToggle:{history:!0},props:{persistent:Boolean,autoClose:Boolean,noEscDismiss:Boolean,noBackdropDismiss:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,seamless:Boolean,maximized:Boolean,fullWidth:Boolean,fullHeight:Boolean,square:Boolean,position:{type:String,default:"standard",validator:function(t){return"standard"===t||["top","bottom","left","right"].includes(t)}},transitionShow:{type:String,default:"scale"},transitionHide:{type:String,default:"scale"}},data:function(){return{transitionState:this.showing}},watch:{$route:function(){!0!==this.persistent&&!0!==this.noRouteDismiss&&!0!==this.seamless&&this.hide()},showing:function(t){var e=this;"standard"===this.position&&this.transitionShow===this.transitionHide||this.$nextTick(function(){e.transitionState=t})},maximized:function(t,e){!0===this.showing&&(this.__updateState(!1,e),this.__updateState(!0,t))},seamless:function(t){!0===this.showing&&this.__preventScroll(!t)},useBackdrop:function(t){if(!0===this.$q.platform.is.desktop){var e="".concat(!0===t?"add":"remove","EventListener");document.body[e]("focusin",this.__onFocusChange)}}},computed:{classes:function(){return"q-dialog__inner--".concat(!0===this.maximized?"maximized":"minimized"," ")+"q-dialog__inner--".concat(this.position," ").concat(f[this.position])+(!0===this.fullWidth?" q-dialog__inner--fullwidth":"")+(!0===this.fullHeight?" q-dialog__inner--fullheight":"")+(!0===this.square?" q-dialog__inner--square":"")},transition:function(){return"q-transition--"+("standard"===this.position?!0===this.transitionState?this.transitionHide:this.transitionShow:"slide-"+p[this.position][!0===this.transitionState?1:0])},useBackdrop:function(){return!0===this.showing&&!0!==this.seamless}},methods:{focus:function(){var t=void 0!==this.__portal.$refs?this.__portal.$refs.inner:void 0;void 0!==t&&!0!==t.contains(document.activeElement)&&(this.$q.platform.is.ios&&(this.avoidAutoClose=!0,t.click(),this.avoidAutoClose=!1),t=t.querySelector("[autofocus]")||t,t.focus())},shake:function(){this.focus();var t=void 0!==this.__portal.$refs?this.__portal.$refs.inner:void 0;void 0!==t&&(t.classList.remove("q-animate--scale"),t.classList.add("q-animate--scale"),clearTimeout(this.shakeTimeout),this.shakeTimeout=setTimeout(function(){t.classList.remove("q-animate--scale")},170))},__show:function(t){var e=this;clearTimeout(this.timer),this.__refocusTarget=!1===this.noRefocus?document.activeElement:void 0,this.__updateState(!0,this.maximized),l["a"].register(this,function(){!0!==e.seamless&&(!0===e.persistent||!0===e.noEscDismiss?!0!==e.maximized&&e.shake():(e.$emit("escape-key"),e.hide()))}),this.__showPortal(),!0!==this.noFocus&&(document.activeElement.blur(),this.$nextTick(function(){e.focus()})),!0===this.$q.platform.is.desktop&&!0===this.useBackdrop&&document.body.addEventListener("focusin",this.__onFocusChange),this.timer=setTimeout(function(){e.$emit("show",t)},300)},__hide:function(t){var e=this;this.__cleanup(!0),this.timer=setTimeout(function(){void 0!==e.__refocusTarget&&e.__refocusTarget.focus(),e.__hidePortal(),e.$emit("hide",t)},300)},__cleanup:function(t){clearTimeout(this.timer),clearTimeout(this.shakeTimeout),!0===this.$q.platform.is.desktop&&!0!==this.seamless&&document.body.removeEventListener("focusin",this.__onFocusChange),!0!==t&&!0!==this.showing||(l["a"].pop(this),this.__updateState(!1,this.maximized))},__updateState:function(t,e){!0!==this.seamless&&this.__preventScroll(t),!0===e&&(!0===t?d<1&&document.body.classList.add("q-body--dialog"):d<2&&document.body.classList.remove("q-body--dialog"),d+=!0===t?1:-1)},__onAutoClose:function(t){!0!==this.avoidAutoClose&&(this.hide(t),void 0!==this.$listeners.click&&this.$emit("click",t))},__onBackdropClick:function(t){!0!==this.persistent&&!0!==this.noBackdropDismiss?this.hide(t):this.shake()},__onFocusChange:function(t){void 0!==this.__portal&&void 0!==this.__portal.$el&&null===this.__portal.$el.nextElementSibling&&!0!==this.__portal.$el.contains(t.target)&&this.__portal.$refs.inner.focus()},__render:function(t){var e=r()({},this.$listeners,{input:h["g"]});return!0===this.autoClose&&(e.click=this.__onAutoClose),t("div",{staticClass:"q-dialog fullscreen no-pointer-events",class:this.contentClass,style:this.contentStyle,attrs:this.$attrs},[t("transition",{props:{name:"q-transition--fade"}},!0===this.useBackdrop?[t("div",{staticClass:"q-dialog__backdrop fixed-full",on:{touchmove:h["h"],click:this.__onBackdropClick}})]:null),t("transition",{props:{name:this.transition}},[!0===this.showing?t("div",{ref:"inner",staticClass:"q-dialog__inner flex no-pointer-events",class:this.classes,attrs:{tabindex:-1},on:e},Object(u["a"])(this,"default")):null])])},__onPortalClose:function(t){this.hide(t)}},mounted:function(){!0===this.value&&this.show()},beforeDestroy:function(){this.__cleanup()}})},2621:function(t,e){e.f=Object.getOwnPropertySymbols},"27ee":function(t,e,n){var i=n("23c6"),r=n("2b4c")("iterator"),o=n("84f2");t.exports=n("8378").getIteratorMethod=function(t){if(void 0!=t)return t[r]||t["@@iterator"]||o[i(t)]}},"27f9":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("c5f6"),n("2b0e")),s=n("8572"),a=(n("a481"),n("ac6a"),n("cadf"),n("456d"),n("3b2b"),{"#":{pattern:/[\d]/},S:{pattern:/[a-zA-Z]/},N:{pattern:/[0-9a-zA-Z]/},A:{pattern:/[a-zA-Z]/,transform:function(t){return t.toLocaleUpperCase()}},a:{pattern:/[a-zA-Z]/,transform:function(t){return t.toLocaleLowerCase()}},X:{pattern:/[0-9a-zA-Z]/,transform:function(t){return t.toLocaleUpperCase()}},x:{pattern:/[0-9a-zA-Z]/,transform:function(t){return t.toLocaleLowerCase()}}}),c=new RegExp("["+Object.keys(a).join("")+"]","g"),l={date:"####/##/##",datetime:"####/##/## ##:##",time:"##:##",fulltime:"##:##:##",phone:"(###) ### - ####",card:"#### #### #### ####"},u={props:{mask:String,fillMask:Boolean,unmaskedValue:Boolean},watch:{mask:function(t){if(void 0!==t)this.__updateMaskValue(this.innerValue);else{var e=this.__unmask(this.innerValue);this.value!==e&&this.$emit("input",e)}},fillMask:function(t){!0===this.hasMask&&this.__updateMaskValue(this.innerValue)},unmaskedValue:function(t){!0===this.hasMask&&this.__updateMaskValue(this.innerValue)}},computed:{hasMask:function(){return void 0!==this.mask&&this.mask.length>0},computedMask:function(){return l[this.mask]||this.mask}},methods:{__getInitialMaskedValue:function(){if(void 0!==this.mask&&this.mask.length>0){var t=l[this.mask]||this.mask,e=this.__mask(this.__unmask(this.value),t);return!0===this.fillMask?this.__fillWithMask(e,t):e}return this.value},__updateMaskValue:function(t){var e=this,n=this.$refs.input,i=this.__unmask(t),r=this.__mask(i,this.computedMask),o=!0===this.fillMask?this.__fillWithMask(r,this.computedMask):r,s=this.__getCursor(n);n.value!==o&&(n.value=o),this.innerValue!==o&&(this.innerValue=o),this.$nextTick(function(){e.__updateCursor(n,s,e.innerValue)}),!0===this.unmaskedValue&&(o=this.__unmask(o)),this.value!==o&&this.__emitValue(o,!0)},__getCursor:function(t){for(var e=t.selectionEnd,n=t.value,i=0,r=0;r0;r++)/[\w]/.test(n[r])&&e--,i++;t.setSelectionRange(i,i)},__onMaskedKeydown:function(t){var e=this.$refs.input;if(39===t.keyCode){var n=e.selectionEnd;if(/[\W ]/.test(e.value[n])){for(n++;n0;i--)if(/[\w]/.test(e.value[i])){i+=2;break}i>=0&&e.setSelectionRange(i,i)}}void 0!==this.$listeners.keydown&&this.$emit("keydown",t)},__mask:function(t,e){if(void 0===t||null===t||""===t)return"";var n=0,i=0,r="";while(n0?t+e.slice(t.length).replace(c,"_"):t}}},h=n("1c16"),d=n("d882");e["a"]=o["a"].extend({name:"QInput",mixins:[s["a"],u],props:{value:[String,Number],type:{type:String,default:"text"},debounce:[String,Number],maxlength:[Number,String],autogrow:Boolean,inputClass:[Array,String,Object],inputStyle:[Array,String,Object]},watch:{value:function(t){if(!0===this.hasMask){if(!0===this.stopValueWatcher)return void(this.stopValueWatcher=!1);this.__updateMaskValue(t)}else this.innerValue!==t&&(this.innerValue=t);!0===this.autogrow&&this.$nextTick(this.__adjustHeightDebounce)},autogrow:function(t){if(!0===t)this.$nextTick(this.__adjustHeightDebounce);else if(this.$attrs.rows>0){var e=this.$refs.input;e.style.height="auto"}}},data:function(){return{innerValue:this.__getInitialMaskedValue()}},computed:{isTextarea:function(){return"textarea"===this.type||!0===this.autogrow},fieldClass:function(){return"q-".concat(!0===this.isTextarea?"textarea":"input")+(!0===this.autogrow?" q-textarea--autogrow":"")}},methods:{focus:function(){this.$refs.input.focus()},__onInput:function(t){if("file"!==this.type){var e=t.target.value;!0===this.hasMask?this.__updateMaskValue(e):this.__emitValue(e),!0===this.autogrow&&this.__adjustHeight()}else this.$emit("input",t.target.files)},__emitValue:function(t,e){var n=this,i=function(){!0===n.hasOwnProperty("tempValue")&&delete n.tempValue,n.value!==t&&(!0===e&&(n.stopValueWatcher=!0),n.$emit("input",t))};void 0!==this.debounce?(clearTimeout(this.emitTimer),this.tempValue=t,this.emitTimer=setTimeout(i,this.debounce)):i()},__adjustHeight:function(){var t=this.$refs.input;t.style.height="1px",t.style.height=t.scrollHeight+"px"},__getControl:function(t){var e=r()({},this.$listeners,{input:this.__onInput,focus:d["g"],blur:d["g"]});!0===this.hasMask&&(e.keydown=this.__onMaskedKeydown);var n=r()({tabindex:0,autofocus:this.autofocus,rows:"textarea"===this.type?6:void 0},this.$attrs,{"aria-label":this.label,type:this.type,maxlength:this.maxlength,disabled:this.disable,readonly:this.readonly});return!0===this.autogrow&&(n.rows=1),t(this.isTextarea?"textarea":"input",{ref:"input",staticClass:"q-field__native",style:this.inputStyle,class:this.inputClass,attrs:n,on:e,domProps:"file"!==this.type?{value:!0===this.hasOwnProperty("tempValue")?this.tempValue:this.innerValue}:null})}},created:function(){this.__adjustHeightDebounce=Object(h["a"])(this.__adjustHeight,100)},mounted:function(){!0===this.autogrow&&this.__adjustHeight()},beforeDestroy:function(){clearTimeout(this.emitTimer)}})},2877:function(t,e,n){"use strict";function i(t,e,n,i,r,o,s,a){var c,l="function"===typeof t?t.options:t;if(e&&(l.render=e,l.staticRenderFns=n,l._compiled=!0),i&&(l.functional=!0),o&&(l._scopeId="data-v-"+o),s?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},l._ssrRegister=c):r&&(c=a?function(){r.call(this,this.$root.$options.shadowRoot)}:r),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(t,e){return c.call(e),u(t,e)}}else{var h=l.beforeCreate;l.beforeCreate=h?[].concat(h,c):[c]}return{exports:t,options:l}}n.d(e,"a",function(){return i})},"28a5":function(t,e,n){"use strict";var i=n("aae3"),r=n("cb7c"),o=n("ebd6"),s=n("0390"),a=n("9def"),c=n("5f1b"),l=n("520a"),u=n("79e5"),h=Math.min,d=[].push,f="split",p="length",m="lastIndex",v=4294967295,g=!u(function(){RegExp(v,"y")});n("214f")("split",2,function(t,e,n,u){var _;return _="c"=="abbc"[f](/(b)*/)[1]||4!="test"[f](/(?:)/,-1)[p]||2!="ab"[f](/(?:ab)*/)[p]||4!="."[f](/(.?)(.?)/)[p]||"."[f](/()()/)[p]>1||""[f](/.?/)[p]?function(t,e){var r=String(this);if(void 0===t&&0===e)return[];if(!i(t))return n.call(r,t,e);var o,s,a,c=[],u=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),h=0,f=void 0===e?v:e>>>0,g=new RegExp(t.source,u+"g");while(o=l.call(g,r)){if(s=g[m],s>h&&(c.push(r.slice(h,o.index)),o[p]>1&&o.index=f))break;g[m]===o.index&&g[m]++}return h===r[p]?!a&&g.test("")||c.push(""):c.push(r.slice(h)),c[p]>f?c.slice(0,f):c}:"0"[f](void 0,0)[p]?function(t,e){return void 0===t&&0===e?[]:n.call(this,t,e)}:n,[function(n,i){var r=t(this),o=void 0==n?void 0:n[e];return void 0!==o?o.call(n,r,i):_.call(String(r),n,i)},function(t,e){var i=u(_,t,this,e,_!==n);if(i.done)return i.value;var l=r(t),d=String(this),f=o(l,RegExp),p=l.unicode,m=(l.ignoreCase?"i":"")+(l.multiline?"m":"")+(l.unicode?"u":"")+(g?"y":"g"),b=new f(g?l:"^(?:"+l.source+")",m),y=void 0===e?v:e>>>0;if(0===y)return[];if(0===d.length)return null===c(b,d)?[d]:[];var w=0,k=0,x=[];while(k/,r=/^<([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)>/;t.exports=function(t,e){var n,o,s,a,c,l,u=t.pos;return 60===t.src.charCodeAt(u)&&(n=t.src.slice(u),!(n.indexOf(">")<0)&&(r.test(n)?(o=n.match(r),a=o[0].slice(1,-1),c=t.md.normalizeLink(a),!!t.md.validateLink(c)&&(e||(l=t.push("link_open","a",1),l.attrs=[["href",c]],l.markup="autolink",l.info="auto",l=t.push("text","",0),l.content=t.md.normalizeLinkText(a),l=t.push("link_close","a",-1),l.markup="autolink",l.info="auto"),t.pos+=o[0].length,!0)):!!i.test(n)&&(s=n.match(i),a=s[0].slice(1,-1),c=t.md.normalizeLink("mailto:"+a),!!t.md.validateLink(c)&&(e||(l=t.push("link_open","a",1),l.attrs=[["href",c]],l.markup="autolink",l.info="auto",l=t.push("text","",0),l.content=t.md.normalizeLinkText(a),l=t.push("link_close","a",-1),l.markup="autolink",l.info="auto"),t.pos+=s[0].length,!0))))}},"29aa":function(t,e,n){},"2a19":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("2fdb"),n("6762"),n("f751"),n("2b0e")),s=n("adc8"),a=n.n(s),c=n("dde5"),l=n("0016"),u=o["a"].extend({name:"QAvatar",props:{size:String,fontSize:String,color:String,textColor:String,icon:String,square:Boolean,rounded:Boolean},computed:{contentClass:function(){var t;return t={},a()(t,"bg-".concat(this.color),this.color),a()(t,"text-".concat(this.textColor," q-chip--colored"),this.textColor),a()(t,"q-avatar__content--square",this.square),a()(t,"rounded-borders",this.rounded),t},style:function(){if(this.size)return{fontSize:this.size}},contentStyle:function(){if(this.fontSize)return{fontSize:this.fontSize}}},methods:{__getContent:function(t){return void 0!==this.icon?[t(l["a"],{props:{name:this.icon}})].concat(Object(c["a"])(this,"default")):Object(c["a"])(this,"default")}},render:function(t){return t("div",{staticClass:"q-avatar",style:this.style,on:this.$listeners},[t("div",{staticClass:"q-avatar__content row flex-center overflow-hidden",class:this.contentClass,style:this.contentStyle},[this.__getContent(t)])])}}),h=n("9c40"),d=n("1732"),f=function(t){var e=JSON.stringify(t);if(e)return JSON.parse(e)},p=n("0967"),m={},v=["top-left","top-right","bottom-left","bottom-right","top","bottom","left","right","center"],g={name:"QNotifications",data:{notifs:{center:[],left:[],right:[],top:[],"top-left":[],"top-right":[],bottom:[],"bottom-left":[],"bottom-right":[]}},methods:{add:function(t){var e=this;if(!t)return console.error("Notify: parameter required"),!1;var n=Object.assign({textColor:"white"},m,"string"===typeof t?{message:t}:f(t));if(n.position){if(!v.includes(n.position))return console.error("Notify: wrong position: ".concat(n.position)),!1}else n.position="bottom";if(n.__uid=Object(d["a"])(),void 0===n.timeout)n.timeout=5e3;else{var i=parseInt(n.timeout,10);if(isNaN(i)||i<0)return console.error("Notify: wrong timeout: ".concat(n.timeout)),!1;n.timeout=i}var r=function(){e.remove(n)},o=(t.actions||[]).concat(m.actions||[]);if(o.length>0&&(n.actions=o.map(function(t){var e=t.handler,n=f(t);return n.handler="function"===typeof e?function(){e(),!t.noDismiss&&r()}:function(){return r()},n})),"function"===typeof t.onDismiss&&(n.onDismiss=t.onDismiss),n.closeBtn){var s=[{closeBtn:!0,label:n.closeBtn,handler:r}];n.actions=n.actions?n.actions.concat(s):s}n.timeout>0&&(n.__timeout=setTimeout(function(){r()},n.timeout+1e3)),void 0===n.multiLine&&n.actions&&(n.multiLine=n.actions.length>1),n.staticClass=["q-notification row items-center",n.color&&"bg-".concat(n.color),n.textColor&&"text-".concat(n.textColor),"q-notification--".concat(n.multiLine?"multi-line":"standard"),n.classes].filter(function(t){return t}).join(" ");var a=n.position.indexOf("top")>-1?"unshift":"push";return this.notifs[n.position][a](n),r},remove:function(t){t.__timeout&&clearTimeout(t.__timeout);var e=this.notifs[t.position].indexOf(t);if(-1!==e){var n=this.$refs["notif_".concat(t.__uid)];if(n){var i=getComputedStyle(n),r=i.width,o=i.height;n.style.left="".concat(n.offsetLeft,"px"),n.style.width=r,n.style.height=o}this.notifs[t.position].splice(e,1),"function"===typeof t.onDismiss&&t.onDismiss()}}},render:function(t){var e=this;return t("div",{staticClass:"q-notifications"},v.map(function(n){var i=["left","center","right"].includes(n)?"center":n.indexOf("top")>-1?"top":"bottom",o=n.indexOf("left")>-1?"start":n.indexOf("right")>-1?"end":"center",s=["left","right"].includes(n)?"items-".concat("left"===n?"start":"end"," justify-center"):"center"===n?"flex-center":"items-".concat(o);return t("transition-group",{key:n,staticClass:"q-notifications__list q-notifications__list--".concat(i," fixed column ").concat(s),tag:"div",props:{name:"q-notification--".concat(n),mode:"out-in"}},e.notifs[n].map(function(e){return t("div",{ref:"notif_".concat(e.__uid),key:e.__uid,staticClass:e.staticClass},[t("div",{staticClass:"row items-center "+(e.multiLine?"col-all":"col")},[e.icon?t(l["a"],{staticClass:"q-notification__icon col-auto",props:{name:e.icon}}):null,e.avatar?t(u,{staticClass:"q-notification__avatar col-auto"},[t("img",{attrs:{src:e.avatar}})]):null,t("div",{staticClass:"q-notification__message col"},[e.message])]),e.actions?t("div",{staticClass:"q-notification__actions row items-center "+(e.multiLine?"col-all justify-end":"col-auto")},e.actions.map(function(e){return t(h["a"],{props:r()({flat:!0},e),on:{click:e.handler}})})):null])}))}))}};function _(){var t=document.createElement("div");document.body.appendChild(t),this.__vm=new o["a"](g),this.__vm.$mount(t)}e["a"]={create:function(t){return!0===p["c"]?function(){}:this.__vm.add(t)},setDefaults:function(t){Object.assign(m,t)},install:function(t){if(!0===p["c"])return t.$q.notify=function(){},void(t.$q.notify.setDefaults=function(){});_.call(this,t),t.cfg.notify&&this.setDefaults(t.cfg.notify),t.$q.notify=this.create.bind(this),t.$q.notify.setDefaults=this.setDefaults}}},"2aba":function(t,e,n){var i=n("7726"),r=n("32e9"),o=n("69a8"),s=n("ca5a")("src"),a=n("fa5b"),c="toString",l=(""+a).split(c);n("8378").inspectSource=function(t){return a.call(t)},(t.exports=function(t,e,n,a){var c="function"==typeof n;c&&(o(n,"name")||r(n,"name",e)),t[e]!==n&&(c&&(o(n,s)||r(n,s,t[e]?""+t[e]:l.join(String(e)))),t===i?t[e]=n:a?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,c,function(){return"function"==typeof this&&this[s]||a.call(this)})},"2aeb":function(t,e,n){var i=n("cb7c"),r=n("1495"),o=n("e11e"),s=n("613b")("IE_PROTO"),a=function(){},c="prototype",l=function(){var t,e=n("230e")("iframe"),i=o.length,r="<",s=">";e.style.display="none",n("fab2").appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(r+"script"+s+"document.F=Object"+r+"/script"+s),t.close(),l=t.F;while(i--)delete l[c][o[i]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[c]=i(t),n=new a,a[c]=null,n[s]=t):n=l(),void 0===e?n:r(n,e)}},"2b0e":function(t,e,n){"use strict";(function(t){ /*! * Vue.js v2.6.10 * (c) 2014-2019 Evan You * Released under the MIT License. */ -var n=Object.freeze({});function i(t){return void 0===t||null===t}function r(t){return void 0!==t&&null!==t}function o(t){return!0===t}function s(t){return!1===t}function a(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var l=Object.prototype.toString;function u(t){return"[object Object]"===l.call(t)}function h(t){return"[object RegExp]"===l.call(t)}function d(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return r(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function p(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===l?JSON.stringify(t,null,2):String(t)}function m(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),i=t.split(","),r=0;r-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function y(t,e){return b.call(t,e)}function w(t){var e=Object.create(null);return function(n){var i=e[n];return i||(e[n]=t(n))}}var k=/-(\w)/g,x=w(function(t){return t.replace(k,function(t,e){return e?e.toUpperCase():""})}),C=w(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),S=/\B([A-Z])/g,A=w(function(t){return t.replace(S,"-$1").toLowerCase()});function E(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function q(t,e){return t.bind(e)}var T=Function.prototype.bind?q:E;function O(t,e){e=e||0;var n=t.length-e,i=new Array(n);while(n--)i[n]=t[n+e];return i}function D(t,e){for(var n in e)t[n]=e[n];return t}function $(t){for(var e={},n=0;n0,nt=J&&J.indexOf("edge/")>0,it=(J&&J.indexOf("android"),J&&/iphone|ipad|ipod|ios/.test(J)||"ios"===X),rt=(J&&/chrome\/\d+/.test(J),J&&/phantomjs/.test(J),J&&J.match(/firefox\/(\d+)/)),ot={}.watch,st=!1;if(Z)try{var at={};Object.defineProperty(at,"passive",{get:function(){st=!0}}),window.addEventListener("test-passive",null,at)}catch(xs){}var ct=function(){return void 0===G&&(G=!Z&&!K&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),G},lt=Z&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ut(t){return"function"===typeof t&&/native code/.test(t.toString())}var ht,dt="undefined"!==typeof Symbol&&ut(Symbol)&&"undefined"!==typeof Reflect&&ut(Reflect.ownKeys);ht="undefined"!==typeof Set&&ut(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ft=L,pt=0,mt=function(){this.id=pt++,this.subs=[]};mt.prototype.addSub=function(t){this.subs.push(t)},mt.prototype.removeSub=function(t){_(this.subs,t)},mt.prototype.depend=function(){mt.target&&mt.target.addDep(this)},mt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!y(r,"default"))s=!1;else if(""===s||s===A(t)){var c=te(String,r.type);(c<0||a0&&(s=Ee(s,(e||"")+"_"+n),Ae(s[0])&&Ae(l)&&(u[c]=kt(l.text+s[0].text),s.shift()),u.push.apply(u,s)):a(s)?Ae(l)?u[c]=kt(l.text+s):""!==s&&u.push(kt(s)):Ae(s)&&Ae(l)?u[c]=kt(l.text+s.text):(o(t._isVList)&&r(s.tag)&&i(s.key)&&r(e)&&(s.key="__vlist"+e+"_"+n+"__"),u.push(s)));return u}function qe(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function Te(t){var e=Oe(t.$options.inject,t);e&&(Tt(!1),Object.keys(e).forEach(function(n){Mt(t,n,e[n])}),Tt(!0))}function Oe(t,e){if(t){for(var n=Object.create(null),i=dt?Reflect.ownKeys(t):Object.keys(t),r=0;r0,s=t?!!t.$stable:!o,a=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(s&&i&&i!==n&&a===i.$key&&!o&&!i.$hasNormal)return i;for(var c in r={},t)t[c]&&"$"!==c[0]&&(r[c]=Me(e,c,t[c]))}else r={};for(var l in e)l in r||(r[l]=Ie(e,l));return t&&Object.isExtensible(t)&&(t._normalized=r),U(r,"$stable",s),U(r,"$key",a),U(r,"$hasNormal",o),r}function Me(t,e,n){var i=function(){var t=arguments.length?n.apply(null,arguments):n({});return t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:Se(t),t&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:i,enumerable:!0,configurable:!0}),i}function Ie(t,e){return function(){return t[e]}}function je(t,e){var n,i,o,s,a;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),i=0,o=t.length;i1?O(n):n;for(var i=O(arguments,1),r='event handler for "'+t+'"',o=0,s=n.length;odocument.createEvent("Event").timeStamp&&(Gn=function(){return Qn.now()})}function Zn(){var t,e;for(Wn=Gn(),Vn=!0,Rn.sort(function(t,e){return t.id-e.id}),Un=0;UnUn&&Rn[n].id>t.id)n--;Rn.splice(n+1,0,t)}else Rn.push(t);Hn||(Hn=!0,pe(Zn))}}var ei=0,ni=function(t,e,n,i,r){this.vm=t,r&&(t._watcher=this),t._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ei,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ht,this.newDepIds=new ht,this.expression="","function"===typeof e?this.getter=e:(this.getter=W(e),this.getter||(this.getter=L)),this.value=this.lazy?void 0:this.get()};ni.prototype.get=function(){var t;gt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(xs){if(!this.user)throw xs;ee(xs,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ve(t),_t(),this.cleanupDeps()}return t},ni.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},ni.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},ni.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():ti(this)},ni.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(xs){ee(xs,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},ni.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ni.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},ni.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||_(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var ii={enumerable:!0,configurable:!0,get:L,set:L};function ri(t,e,n){ii.get=function(){return this[e][n]},ii.set=function(t){this[e][n]=t},Object.defineProperty(t,n,ii)}function oi(t){t._watchers=[];var e=t.$options;e.props&&si(t,e.props),e.methods&&pi(t,e.methods),e.data?ai(t):Lt(t._data={},!0),e.computed&&ui(t,e.computed),e.watch&&e.watch!==ot&&mi(t,e.watch)}function si(t,e){var n=t.$options.propsData||{},i=t._props={},r=t.$options._propKeys=[],o=!t.$parent;o||Tt(!1);var s=function(o){r.push(o);var s=Zt(o,e,n,t);Mt(i,o,s),o in t||ri(t,"_props",o)};for(var a in e)s(a);Tt(!0)}function ai(t){var e=t.$options.data;e=t._data="function"===typeof e?ci(e,t):e||{},u(e)||(e={});var n=Object.keys(e),i=t.$options.props,r=(t.$options.methods,n.length);while(r--){var o=n[r];0,i&&y(i,o)||V(o)||ri(t,"_data",o)}Lt(e,!0)}function ci(t,e){gt();try{return t.call(e,e)}catch(xs){return ee(xs,e,"data()"),{}}finally{_t()}}var li={lazy:!0};function ui(t,e){var n=t._computedWatchers=Object.create(null),i=ct();for(var r in e){var o=e[r],s="function"===typeof o?o:o.get;0,i||(n[r]=new ni(t,s||L,L,li)),r in t||hi(t,r,o)}}function hi(t,e,n){var i=!ct();"function"===typeof n?(ii.get=i?di(e):fi(n),ii.set=L):(ii.get=n.get?i&&!1!==n.cache?di(e):fi(n.get):L,ii.set=n.set||L),Object.defineProperty(t,e,ii)}function di(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),mt.target&&e.depend(),e.value}}function fi(t){return function(){return t.call(this,this)}}function pi(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?L:T(e[n],t)}function mi(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var r=0;r-1)return this;var n=O(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function Si(t){t.mixin=function(t){return this.options=Gt(this.options,t),this}}function Ai(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,r=t._Ctor||(t._Ctor={});if(r[i])return r[i];var o=t.name||n.options.name;var s=function(t){this._init(t)};return s.prototype=Object.create(n.prototype),s.prototype.constructor=s,s.cid=e++,s.options=Gt(n.options,t),s["super"]=n,s.options.props&&Ei(s),s.options.computed&&qi(s),s.extend=n.extend,s.mixin=n.mixin,s.use=n.use,R.forEach(function(t){s[t]=n[t]}),o&&(s.options.components[o]=s),s.superOptions=n.options,s.extendOptions=t,s.sealedOptions=D({},s.options),r[i]=s,s}}function Ei(t){var e=t.options.props;for(var n in e)ri(t.prototype,"_props",n)}function qi(t){var e=t.options.computed;for(var n in e)hi(t.prototype,n,e[n])}function Ti(t){R.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}function Oi(t){return t&&(t.Ctor.options.name||t.tag)}function Di(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!h(t)&&t.test(e)}function $i(t,e){var n=t.cache,i=t.keys,r=t._vnode;for(var o in n){var s=n[o];if(s){var a=Oi(s.componentOptions);a&&!e(a)&&Li(n,o,i,r)}}}function Li(t,e,n,i){var r=t[e];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),t[e]=null,_(n,e)}bi(xi),gi(xi),Tn(xi),Ln(xi),_n(xi);var Mi=[String,RegExp,Array],Ii={name:"keep-alive",abstract:!0,props:{include:Mi,exclude:Mi,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Li(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",function(e){$i(t,function(t){return Di(e,t)})}),this.$watch("exclude",function(e){$i(t,function(t){return!Di(e,t)})})},render:function(){var t=this.$slots.default,e=xn(t),n=e&&e.componentOptions;if(n){var i=Oi(n),r=this,o=r.include,s=r.exclude;if(o&&(!i||!Di(o,i))||s&&i&&Di(s,i))return e;var a=this,c=a.cache,l=a.keys,u=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[u]?(e.componentInstance=c[u].componentInstance,_(l,u),l.push(u)):(c[u]=e,l.push(u),this.max&&l.length>parseInt(this.max)&&Li(c,l[0],l,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}},ji={KeepAlive:Ii};function Bi(t){var e={get:function(){return N}};Object.defineProperty(t,"config",e),t.util={warn:ft,extend:D,mergeOptions:Gt,defineReactive:Mt},t.set=It,t.delete=jt,t.nextTick=pe,t.observable=function(t){return Lt(t),t},t.options=Object.create(null),R.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,D(t.options.components,ji),Ci(t),Si(t),Ai(t),Ti(t)}Bi(xi),Object.defineProperty(xi.prototype,"$isServer",{get:ct}),Object.defineProperty(xi.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(xi,"FunctionalRenderContext",{value:Ke}),xi.version="2.6.10";var Fi=v("style,class"),Pi=v("input,textarea,option,select,progress"),Ri=function(t,e,n){return"value"===n&&Pi(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},zi=v("contenteditable,draggable,spellcheck"),Ni=v("events,caret,typing,plaintext-only"),Hi=function(t,e){return Gi(e)||"false"===e?"false":"contenteditable"===t&&Ni(e)?e:"true"},Vi=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Ui="http://www.w3.org/1999/xlink",Yi=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Wi=function(t){return Yi(t)?t.slice(6,t.length):""},Gi=function(t){return null==t||!1===t};function Qi(t){var e=t.data,n=t,i=t;while(r(i.componentInstance))i=i.componentInstance._vnode,i&&i.data&&(e=Zi(i.data,e));while(r(n=n.parent))n&&n.data&&(e=Zi(e,n.data));return Ki(e.staticClass,e.class)}function Zi(t,e){return{staticClass:Xi(t.staticClass,e.staticClass),class:r(t.class)?[t.class,e.class]:e.class}}function Ki(t,e){return r(t)||r(e)?Xi(t,Ji(e)):""}function Xi(t,e){return t?e?t+" "+e:t:e||""}function Ji(t){return Array.isArray(t)?tr(t):c(t)?er(t):"string"===typeof t?t:""}function tr(t){for(var e,n="",i=0,o=t.length;i-1?ar[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ar[t]=/HTMLUnknownElement/.test(e.toString())}var lr=v("text,number,password,search,email,tel,url");function ur(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function hr(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)}function dr(t,e){return document.createElementNS(nr[t],e)}function fr(t){return document.createTextNode(t)}function pr(t){return document.createComment(t)}function mr(t,e,n){t.insertBefore(e,n)}function vr(t,e){t.removeChild(e)}function gr(t,e){t.appendChild(e)}function _r(t){return t.parentNode}function br(t){return t.nextSibling}function yr(t){return t.tagName}function wr(t,e){t.textContent=e}function kr(t,e){t.setAttribute(e,"")}var xr=Object.freeze({createElement:hr,createElementNS:dr,createTextNode:fr,createComment:pr,insertBefore:mr,removeChild:vr,appendChild:gr,parentNode:_r,nextSibling:br,tagName:yr,setTextContent:wr,setStyleScope:kr}),Cr={create:function(t,e){Sr(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Sr(t,!0),Sr(e))},destroy:function(t){Sr(t,!0)}};function Sr(t,e){var n=t.data.ref;if(r(n)){var i=t.context,o=t.componentInstance||t.elm,s=i.$refs;e?Array.isArray(s[n])?_(s[n],o):s[n]===o&&(s[n]=void 0):t.data.refInFor?Array.isArray(s[n])?s[n].indexOf(o)<0&&s[n].push(o):s[n]=[o]:s[n]=o}}var Ar=new bt("",{},[]),Er=["create","activate","update","remove","destroy"];function qr(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&r(t.data)===r(e.data)&&Tr(t,e)||o(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&i(e.asyncFactory.error))}function Tr(t,e){if("input"!==t.tag)return!0;var n,i=r(n=t.data)&&r(n=n.attrs)&&n.type,o=r(n=e.data)&&r(n=n.attrs)&&n.type;return i===o||lr(i)&&lr(o)}function Or(t,e,n){var i,o,s={};for(i=e;i<=n;++i)o=t[i].key,r(o)&&(s[o]=i);return s}function Dr(t){var e,n,s={},c=t.modules,l=t.nodeOps;for(e=0;em?(h=i(n[_+1])?null:n[_+1].elm,x(t,h,n,p,_,o)):p>_&&S(t,e,d,m)}function q(t,e,n,i){for(var o=n;o-1?Nr(t,e,n):Vi(e)?Gi(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):zi(e)?t.setAttribute(e,Hi(e,n)):Yi(e)?Gi(n)?t.removeAttributeNS(Ui,Wi(e)):t.setAttributeNS(Ui,e,n):Nr(t,e,n)}function Nr(t,e,n){if(Gi(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var Hr={create:Rr,update:Rr};function Vr(t,e){var n=e.elm,o=e.data,s=t.data;if(!(i(o.staticClass)&&i(o.class)&&(i(s)||i(s.staticClass)&&i(s.class)))){var a=Qi(e),c=n._transitionClasses;r(c)&&(a=Xi(a,Ji(c))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var Ur,Yr={create:Vr,update:Vr},Wr="__r",Gr="__c";function Qr(t){if(r(t[Wr])){var e=tt?"change":"input";t[e]=[].concat(t[Wr],t[e]||[]),delete t[Wr]}r(t[Gr])&&(t.change=[].concat(t[Gr],t.change||[]),delete t[Gr])}function Zr(t,e,n){var i=Ur;return function r(){var o=e.apply(null,arguments);null!==o&&Jr(t,r,n,i)}}var Kr=se&&!(rt&&Number(rt[1])<=53);function Xr(t,e,n,i){if(Kr){var r=Wn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=r||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}Ur.addEventListener(t,e,st?{capture:n,passive:i}:n)}function Jr(t,e,n,i){(i||Ur).removeEventListener(t,e._wrapper||e,n)}function to(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};Ur=e.elm,Qr(n),ye(n,r,Xr,Jr,Zr,e.context),Ur=void 0}}var eo,no={create:to,update:to};function io(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,o,s=e.elm,a=t.data.domProps||{},c=e.data.domProps||{};for(n in r(c.__ob__)&&(c=e.data.domProps=D({},c)),a)n in c||(s[n]="");for(n in c){if(o=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),o===a[n])continue;1===s.childNodes.length&&s.removeChild(s.childNodes[0])}if("value"===n&&"PROGRESS"!==s.tagName){s._value=o;var l=i(o)?"":String(o);ro(s,l)&&(s.value=l)}else if("innerHTML"===n&&rr(s.tagName)&&i(s.innerHTML)){eo=eo||document.createElement("div"),eo.innerHTML=""+o+"";var u=eo.firstChild;while(s.firstChild)s.removeChild(s.firstChild);while(u.firstChild)s.appendChild(u.firstChild)}else if(o!==a[n])try{s[n]=o}catch(xs){}}}}function ro(t,e){return!t.composing&&("OPTION"===t.tagName||oo(t,e)||so(t,e))}function oo(t,e){var n=!0;try{n=document.activeElement!==t}catch(xs){}return n&&t.value!==e}function so(t,e){var n=t.value,i=t._vModifiers;if(r(i)){if(i.number)return m(n)!==m(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}var ao={create:io,update:io},co=w(function(t){var e={},n=/;(?![^(]*\))/g,i=/:(.+)/;return t.split(n).forEach(function(t){if(t){var n=t.split(i);n.length>1&&(e[n[0].trim()]=n[1].trim())}}),e});function lo(t){var e=uo(t.style);return t.staticStyle?D(t.staticStyle,e):e}function uo(t){return Array.isArray(t)?$(t):"string"===typeof t?co(t):t}function ho(t,e){var n,i={};if(e){var r=t;while(r.componentInstance)r=r.componentInstance._vnode,r&&r.data&&(n=lo(r.data))&&D(i,n)}(n=lo(t.data))&&D(i,n);var o=t;while(o=o.parent)o.data&&(n=lo(o.data))&&D(i,n);return i}var fo,po=/^--/,mo=/\s*!important$/,vo=function(t,e,n){if(po.test(e))t.style.setProperty(e,n);else if(mo.test(n))t.style.setProperty(A(e),n.replace(mo,""),"important");else{var i=_o(e);if(Array.isArray(n))for(var r=0,o=n.length;r-1?e.split(wo).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function xo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wo).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",i=" "+e+" ";while(n.indexOf(i)>=0)n=n.replace(i," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Co(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&D(e,So(t.name||"v")),D(e,t),e}return"string"===typeof t?So(t):void 0}}var So=w(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),Ao=Z&&!et,Eo="transition",qo="animation",To="transition",Oo="transitionend",Do="animation",$o="animationend";Ao&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(To="WebkitTransition",Oo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Do="WebkitAnimation",$o="webkitAnimationEnd"));var Lo=Z?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mo(t){Lo(function(){Lo(t)})}function Io(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ko(t,e))}function jo(t,e){t._transitionClasses&&_(t._transitionClasses,e),xo(t,e)}function Bo(t,e,n){var i=Po(t,e),r=i.type,o=i.timeout,s=i.propCount;if(!r)return n();var a=r===Eo?Oo:$o,c=0,l=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++c>=s&&l()};setTimeout(function(){c0&&(n=Eo,u=s,h=o.length):e===qo?l>0&&(n=qo,u=l,h=c.length):(u=Math.max(s,l),n=u>0?s>l?Eo:qo:null,h=n?n===Eo?o.length:c.length:0);var d=n===Eo&&Fo.test(i[To+"Property"]);return{type:n,timeout:u,propCount:h,hasTransform:d}}function Ro(t,e){while(t.length1}function Yo(t,e){!0!==e.data.show&&No(e)}var Wo=Z?{create:Yo,activate:Yo,remove:function(t,e){!0!==t.data.show?Ho(t,e):e()}}:{},Go=[Hr,Yr,no,ao,yo,Wo],Qo=Go.concat(Pr),Zo=Dr({nodeOps:xr,modules:Qo});et&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&rs(t,"input")});var Ko={inserted:function(t,e,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?we(n,"postpatch",function(){Ko.componentUpdated(t,e,n)}):Xo(t,e,n.context),t._vOptions=[].map.call(t.options,es)):("textarea"===n.tag||lr(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ns),t.addEventListener("compositionend",is),t.addEventListener("change",is),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Xo(t,e,n.context);var i=t._vOptions,r=t._vOptions=[].map.call(t.options,es);if(r.some(function(t,e){return!j(t,i[e])})){var o=t.multiple?e.value.some(function(t){return ts(t,r)}):e.value!==e.oldValue&&ts(e.value,r);o&&rs(t,"change")}}}};function Xo(t,e,n){Jo(t,e,n),(tt||nt)&&setTimeout(function(){Jo(t,e,n)},0)}function Jo(t,e,n){var i=e.value,r=t.multiple;if(!r||Array.isArray(i)){for(var o,s,a=0,c=t.options.length;a-1,s.selected!==o&&(s.selected=o);else if(j(es(s),i))return void(t.selectedIndex!==a&&(t.selectedIndex=a));r||(t.selectedIndex=-1)}}function ts(t,e){return e.every(function(e){return!j(e,t)})}function es(t){return"_value"in t?t._value:t.value}function ns(t){t.target.composing=!0}function is(t){t.target.composing&&(t.target.composing=!1,rs(t.target,"input"))}function rs(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function os(t){return!t.componentInstance||t.data&&t.data.transition?t:os(t.componentInstance._vnode)}var ss={bind:function(t,e,n){var i=e.value;n=os(n);var r=n.data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&r?(n.data.show=!0,No(n,function(){t.style.display=o})):t.style.display=i?o:"none"},update:function(t,e,n){var i=e.value,r=e.oldValue;if(!i!==!r){n=os(n);var o=n.data&&n.data.transition;o?(n.data.show=!0,i?No(n,function(){t.style.display=t.__vOriginalDisplay}):Ho(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,i,r){r||(t.style.display=t.__vOriginalDisplay)}},as={model:Ko,show:ss},cs={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ls(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?ls(xn(e.children)):t}function us(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var r=n._parentListeners;for(var o in r)e[x(o)]=r[o];return e}function hs(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ds(t){while(t=t.parent)if(t.data.transition)return!0}function fs(t,e){return e.key===t.key&&e.tag===t.tag}var ps=function(t){return t.tag||kn(t)},ms=function(t){return"show"===t.name},vs={name:"transition",props:cs,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(ps),n.length)){0;var i=this.mode;0;var r=n[0];if(ds(this.$vnode))return r;var o=ls(r);if(!o)return r;if(this._leaving)return hs(t,r);var s="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?s+"comment":s+o.tag:a(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var c=(o.data||(o.data={})).transition=us(this),l=this._vnode,u=ls(l);if(o.data.directives&&o.data.directives.some(ms)&&(o.data.show=!0),u&&u.data&&!fs(o,u)&&!kn(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=D({},c);if("out-in"===i)return this._leaving=!0,we(h,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),hs(t,r);if("in-out"===i){if(kn(o))return l;var d,f=function(){d()};we(c,"afterEnter",f),we(c,"enterCancelled",f),we(h,"delayLeave",function(t){d=t})}}return r}}},gs=D({tag:String,moveClass:String},cs);delete gs.mode;var _s={props:gs,beforeMount:function(){var t=this,e=this._update;this._update=function(n,i){var r=Dn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,r(),e.call(t,n,i)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],s=us(this),a=0;a0&&(e=e.concat(l(t)))}),e}},"2c91":function(t,e,n){"use strict";var i=n("2b0e");e["a"]=i["a"].extend({name:"QSpace",render:function(t){return t("div",{staticClass:"q-space"})}})},"2d00":function(t,e){t.exports=!1},"2d95":function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},"2ea3":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QPage",inject:{pageContainer:{default:function(){console.error("QPage needs to be child of QPageContainer")}},layout:{}},props:{padding:Boolean,styleFn:Function},computed:{style:function(){var t=(!0===this.layout.header.space?this.layout.header.size:0)+(!0===this.layout.footer.space?this.layout.footer.size:0);if("function"===typeof this.styleFn)return this.styleFn(t);var e=!0===this.layout.container?this.layout.containerHeight-t+"px":0!==t?"calc(100vh - ".concat(t,"px)"):"100vh";return{minHeight:e}},classes:function(){if(!0===this.padding)return"q-layout-padding"}},render:function(t){return t("main",{staticClass:"q-page",style:this.style,class:this.classes,on:this.$listeners},Object(r["a"])(this,"default"))}})},"2f21":function(t,e,n){"use strict";var i=n("79e5");t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},"2f62":function(t,e,n){"use strict"; +var n=Object.freeze({});function i(t){return void 0===t||null===t}function r(t){return void 0!==t&&null!==t}function o(t){return!0===t}function s(t){return!1===t}function a(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var l=Object.prototype.toString;function u(t){return"[object Object]"===l.call(t)}function h(t){return"[object RegExp]"===l.call(t)}function d(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return r(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function p(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===l?JSON.stringify(t,null,2):String(t)}function m(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),i=t.split(","),r=0;r-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function y(t,e){return b.call(t,e)}function w(t){var e=Object.create(null);return function(n){var i=e[n];return i||(e[n]=t(n))}}var k=/-(\w)/g,x=w(function(t){return t.replace(k,function(t,e){return e?e.toUpperCase():""})}),C=w(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),S=/\B([A-Z])/g,A=w(function(t){return t.replace(S,"-$1").toLowerCase()});function E(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function q(t,e){return t.bind(e)}var T=Function.prototype.bind?q:E;function $(t,e){e=e||0;var n=t.length-e,i=new Array(n);while(n--)i[n]=t[n+e];return i}function O(t,e){for(var n in e)t[n]=e[n];return t}function D(t){for(var e={},n=0;n0,nt=J&&J.indexOf("edge/")>0,it=(J&&J.indexOf("android"),J&&/iphone|ipad|ipod|ios/.test(J)||"ios"===X),rt=(J&&/chrome\/\d+/.test(J),J&&/phantomjs/.test(J),J&&J.match(/firefox\/(\d+)/)),ot={}.watch,st=!1;if(Z)try{var at={};Object.defineProperty(at,"passive",{get:function(){st=!0}}),window.addEventListener("test-passive",null,at)}catch(xs){}var ct=function(){return void 0===G&&(G=!Z&&!K&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),G},lt=Z&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ut(t){return"function"===typeof t&&/native code/.test(t.toString())}var ht,dt="undefined"!==typeof Symbol&&ut(Symbol)&&"undefined"!==typeof Reflect&&ut(Reflect.ownKeys);ht="undefined"!==typeof Set&&ut(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ft=L,pt=0,mt=function(){this.id=pt++,this.subs=[]};mt.prototype.addSub=function(t){this.subs.push(t)},mt.prototype.removeSub=function(t){_(this.subs,t)},mt.prototype.depend=function(){mt.target&&mt.target.addDep(this)},mt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!y(r,"default"))s=!1;else if(""===s||s===A(t)){var c=te(String,r.type);(c<0||a0&&(s=Ee(s,(e||"")+"_"+n),Ae(s[0])&&Ae(l)&&(u[c]=kt(l.text+s[0].text),s.shift()),u.push.apply(u,s)):a(s)?Ae(l)?u[c]=kt(l.text+s):""!==s&&u.push(kt(s)):Ae(s)&&Ae(l)?u[c]=kt(l.text+s.text):(o(t._isVList)&&r(s.tag)&&i(s.key)&&r(e)&&(s.key="__vlist"+e+"_"+n+"__"),u.push(s)));return u}function qe(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function Te(t){var e=$e(t.$options.inject,t);e&&(Tt(!1),Object.keys(e).forEach(function(n){Mt(t,n,e[n])}),Tt(!0))}function $e(t,e){if(t){for(var n=Object.create(null),i=dt?Reflect.ownKeys(t):Object.keys(t),r=0;r0,s=t?!!t.$stable:!o,a=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(s&&i&&i!==n&&a===i.$key&&!o&&!i.$hasNormal)return i;for(var c in r={},t)t[c]&&"$"!==c[0]&&(r[c]=Me(e,c,t[c]))}else r={};for(var l in e)l in r||(r[l]=Ie(e,l));return t&&Object.isExtensible(t)&&(t._normalized=r),U(r,"$stable",s),U(r,"$key",a),U(r,"$hasNormal",o),r}function Me(t,e,n){var i=function(){var t=arguments.length?n.apply(null,arguments):n({});return t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:Se(t),t&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:i,enumerable:!0,configurable:!0}),i}function Ie(t,e){return function(){return t[e]}}function je(t,e){var n,i,o,s,a;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),i=0,o=t.length;i1?$(n):n;for(var i=$(arguments,1),r='event handler for "'+t+'"',o=0,s=n.length;odocument.createEvent("Event").timeStamp&&(Gn=function(){return Qn.now()})}function Zn(){var t,e;for(Wn=Gn(),Vn=!0,Rn.sort(function(t,e){return t.id-e.id}),Un=0;UnUn&&Rn[n].id>t.id)n--;Rn.splice(n+1,0,t)}else Rn.push(t);Hn||(Hn=!0,pe(Zn))}}var ei=0,ni=function(t,e,n,i,r){this.vm=t,r&&(t._watcher=this),t._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ei,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ht,this.newDepIds=new ht,this.expression="","function"===typeof e?this.getter=e:(this.getter=W(e),this.getter||(this.getter=L)),this.value=this.lazy?void 0:this.get()};ni.prototype.get=function(){var t;gt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(xs){if(!this.user)throw xs;ee(xs,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ve(t),_t(),this.cleanupDeps()}return t},ni.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},ni.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},ni.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():ti(this)},ni.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(xs){ee(xs,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},ni.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ni.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},ni.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||_(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var ii={enumerable:!0,configurable:!0,get:L,set:L};function ri(t,e,n){ii.get=function(){return this[e][n]},ii.set=function(t){this[e][n]=t},Object.defineProperty(t,n,ii)}function oi(t){t._watchers=[];var e=t.$options;e.props&&si(t,e.props),e.methods&&pi(t,e.methods),e.data?ai(t):Lt(t._data={},!0),e.computed&&ui(t,e.computed),e.watch&&e.watch!==ot&&mi(t,e.watch)}function si(t,e){var n=t.$options.propsData||{},i=t._props={},r=t.$options._propKeys=[],o=!t.$parent;o||Tt(!1);var s=function(o){r.push(o);var s=Zt(o,e,n,t);Mt(i,o,s),o in t||ri(t,"_props",o)};for(var a in e)s(a);Tt(!0)}function ai(t){var e=t.$options.data;e=t._data="function"===typeof e?ci(e,t):e||{},u(e)||(e={});var n=Object.keys(e),i=t.$options.props,r=(t.$options.methods,n.length);while(r--){var o=n[r];0,i&&y(i,o)||V(o)||ri(t,"_data",o)}Lt(e,!0)}function ci(t,e){gt();try{return t.call(e,e)}catch(xs){return ee(xs,e,"data()"),{}}finally{_t()}}var li={lazy:!0};function ui(t,e){var n=t._computedWatchers=Object.create(null),i=ct();for(var r in e){var o=e[r],s="function"===typeof o?o:o.get;0,i||(n[r]=new ni(t,s||L,L,li)),r in t||hi(t,r,o)}}function hi(t,e,n){var i=!ct();"function"===typeof n?(ii.get=i?di(e):fi(n),ii.set=L):(ii.get=n.get?i&&!1!==n.cache?di(e):fi(n.get):L,ii.set=n.set||L),Object.defineProperty(t,e,ii)}function di(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),mt.target&&e.depend(),e.value}}function fi(t){return function(){return t.call(this,this)}}function pi(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?L:T(e[n],t)}function mi(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var r=0;r-1)return this;var n=$(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function Si(t){t.mixin=function(t){return this.options=Gt(this.options,t),this}}function Ai(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,r=t._Ctor||(t._Ctor={});if(r[i])return r[i];var o=t.name||n.options.name;var s=function(t){this._init(t)};return s.prototype=Object.create(n.prototype),s.prototype.constructor=s,s.cid=e++,s.options=Gt(n.options,t),s["super"]=n,s.options.props&&Ei(s),s.options.computed&&qi(s),s.extend=n.extend,s.mixin=n.mixin,s.use=n.use,R.forEach(function(t){s[t]=n[t]}),o&&(s.options.components[o]=s),s.superOptions=n.options,s.extendOptions=t,s.sealedOptions=O({},s.options),r[i]=s,s}}function Ei(t){var e=t.options.props;for(var n in e)ri(t.prototype,"_props",n)}function qi(t){var e=t.options.computed;for(var n in e)hi(t.prototype,n,e[n])}function Ti(t){R.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}function $i(t){return t&&(t.Ctor.options.name||t.tag)}function Oi(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!h(t)&&t.test(e)}function Di(t,e){var n=t.cache,i=t.keys,r=t._vnode;for(var o in n){var s=n[o];if(s){var a=$i(s.componentOptions);a&&!e(a)&&Li(n,o,i,r)}}}function Li(t,e,n,i){var r=t[e];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),t[e]=null,_(n,e)}bi(xi),gi(xi),Tn(xi),Ln(xi),_n(xi);var Mi=[String,RegExp,Array],Ii={name:"keep-alive",abstract:!0,props:{include:Mi,exclude:Mi,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Li(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",function(e){Di(t,function(t){return Oi(e,t)})}),this.$watch("exclude",function(e){Di(t,function(t){return!Oi(e,t)})})},render:function(){var t=this.$slots.default,e=xn(t),n=e&&e.componentOptions;if(n){var i=$i(n),r=this,o=r.include,s=r.exclude;if(o&&(!i||!Oi(o,i))||s&&i&&Oi(s,i))return e;var a=this,c=a.cache,l=a.keys,u=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[u]?(e.componentInstance=c[u].componentInstance,_(l,u),l.push(u)):(c[u]=e,l.push(u),this.max&&l.length>parseInt(this.max)&&Li(c,l[0],l,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}},ji={KeepAlive:Ii};function Bi(t){var e={get:function(){return N}};Object.defineProperty(t,"config",e),t.util={warn:ft,extend:O,mergeOptions:Gt,defineReactive:Mt},t.set=It,t.delete=jt,t.nextTick=pe,t.observable=function(t){return Lt(t),t},t.options=Object.create(null),R.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,O(t.options.components,ji),Ci(t),Si(t),Ai(t),Ti(t)}Bi(xi),Object.defineProperty(xi.prototype,"$isServer",{get:ct}),Object.defineProperty(xi.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(xi,"FunctionalRenderContext",{value:Ke}),xi.version="2.6.10";var Fi=v("style,class"),Pi=v("input,textarea,option,select,progress"),Ri=function(t,e,n){return"value"===n&&Pi(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},zi=v("contenteditable,draggable,spellcheck"),Ni=v("events,caret,typing,plaintext-only"),Hi=function(t,e){return Gi(e)||"false"===e?"false":"contenteditable"===t&&Ni(e)?e:"true"},Vi=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Ui="http://www.w3.org/1999/xlink",Yi=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Wi=function(t){return Yi(t)?t.slice(6,t.length):""},Gi=function(t){return null==t||!1===t};function Qi(t){var e=t.data,n=t,i=t;while(r(i.componentInstance))i=i.componentInstance._vnode,i&&i.data&&(e=Zi(i.data,e));while(r(n=n.parent))n&&n.data&&(e=Zi(e,n.data));return Ki(e.staticClass,e.class)}function Zi(t,e){return{staticClass:Xi(t.staticClass,e.staticClass),class:r(t.class)?[t.class,e.class]:e.class}}function Ki(t,e){return r(t)||r(e)?Xi(t,Ji(e)):""}function Xi(t,e){return t?e?t+" "+e:t:e||""}function Ji(t){return Array.isArray(t)?tr(t):c(t)?er(t):"string"===typeof t?t:""}function tr(t){for(var e,n="",i=0,o=t.length;i-1?ar[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ar[t]=/HTMLUnknownElement/.test(e.toString())}var lr=v("text,number,password,search,email,tel,url");function ur(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function hr(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)}function dr(t,e){return document.createElementNS(nr[t],e)}function fr(t){return document.createTextNode(t)}function pr(t){return document.createComment(t)}function mr(t,e,n){t.insertBefore(e,n)}function vr(t,e){t.removeChild(e)}function gr(t,e){t.appendChild(e)}function _r(t){return t.parentNode}function br(t){return t.nextSibling}function yr(t){return t.tagName}function wr(t,e){t.textContent=e}function kr(t,e){t.setAttribute(e,"")}var xr=Object.freeze({createElement:hr,createElementNS:dr,createTextNode:fr,createComment:pr,insertBefore:mr,removeChild:vr,appendChild:gr,parentNode:_r,nextSibling:br,tagName:yr,setTextContent:wr,setStyleScope:kr}),Cr={create:function(t,e){Sr(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Sr(t,!0),Sr(e))},destroy:function(t){Sr(t,!0)}};function Sr(t,e){var n=t.data.ref;if(r(n)){var i=t.context,o=t.componentInstance||t.elm,s=i.$refs;e?Array.isArray(s[n])?_(s[n],o):s[n]===o&&(s[n]=void 0):t.data.refInFor?Array.isArray(s[n])?s[n].indexOf(o)<0&&s[n].push(o):s[n]=[o]:s[n]=o}}var Ar=new bt("",{},[]),Er=["create","activate","update","remove","destroy"];function qr(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&r(t.data)===r(e.data)&&Tr(t,e)||o(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&i(e.asyncFactory.error))}function Tr(t,e){if("input"!==t.tag)return!0;var n,i=r(n=t.data)&&r(n=n.attrs)&&n.type,o=r(n=e.data)&&r(n=n.attrs)&&n.type;return i===o||lr(i)&&lr(o)}function $r(t,e,n){var i,o,s={};for(i=e;i<=n;++i)o=t[i].key,r(o)&&(s[o]=i);return s}function Or(t){var e,n,s={},c=t.modules,l=t.nodeOps;for(e=0;em?(h=i(n[_+1])?null:n[_+1].elm,x(t,h,n,p,_,o)):p>_&&S(t,e,d,m)}function q(t,e,n,i){for(var o=n;o-1?Nr(t,e,n):Vi(e)?Gi(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):zi(e)?t.setAttribute(e,Hi(e,n)):Yi(e)?Gi(n)?t.removeAttributeNS(Ui,Wi(e)):t.setAttributeNS(Ui,e,n):Nr(t,e,n)}function Nr(t,e,n){if(Gi(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var Hr={create:Rr,update:Rr};function Vr(t,e){var n=e.elm,o=e.data,s=t.data;if(!(i(o.staticClass)&&i(o.class)&&(i(s)||i(s.staticClass)&&i(s.class)))){var a=Qi(e),c=n._transitionClasses;r(c)&&(a=Xi(a,Ji(c))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var Ur,Yr={create:Vr,update:Vr},Wr="__r",Gr="__c";function Qr(t){if(r(t[Wr])){var e=tt?"change":"input";t[e]=[].concat(t[Wr],t[e]||[]),delete t[Wr]}r(t[Gr])&&(t.change=[].concat(t[Gr],t.change||[]),delete t[Gr])}function Zr(t,e,n){var i=Ur;return function r(){var o=e.apply(null,arguments);null!==o&&Jr(t,r,n,i)}}var Kr=se&&!(rt&&Number(rt[1])<=53);function Xr(t,e,n,i){if(Kr){var r=Wn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=r||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}Ur.addEventListener(t,e,st?{capture:n,passive:i}:n)}function Jr(t,e,n,i){(i||Ur).removeEventListener(t,e._wrapper||e,n)}function to(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};Ur=e.elm,Qr(n),ye(n,r,Xr,Jr,Zr,e.context),Ur=void 0}}var eo,no={create:to,update:to};function io(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,o,s=e.elm,a=t.data.domProps||{},c=e.data.domProps||{};for(n in r(c.__ob__)&&(c=e.data.domProps=O({},c)),a)n in c||(s[n]="");for(n in c){if(o=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),o===a[n])continue;1===s.childNodes.length&&s.removeChild(s.childNodes[0])}if("value"===n&&"PROGRESS"!==s.tagName){s._value=o;var l=i(o)?"":String(o);ro(s,l)&&(s.value=l)}else if("innerHTML"===n&&rr(s.tagName)&&i(s.innerHTML)){eo=eo||document.createElement("div"),eo.innerHTML=""+o+"";var u=eo.firstChild;while(s.firstChild)s.removeChild(s.firstChild);while(u.firstChild)s.appendChild(u.firstChild)}else if(o!==a[n])try{s[n]=o}catch(xs){}}}}function ro(t,e){return!t.composing&&("OPTION"===t.tagName||oo(t,e)||so(t,e))}function oo(t,e){var n=!0;try{n=document.activeElement!==t}catch(xs){}return n&&t.value!==e}function so(t,e){var n=t.value,i=t._vModifiers;if(r(i)){if(i.number)return m(n)!==m(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}var ao={create:io,update:io},co=w(function(t){var e={},n=/;(?![^(]*\))/g,i=/:(.+)/;return t.split(n).forEach(function(t){if(t){var n=t.split(i);n.length>1&&(e[n[0].trim()]=n[1].trim())}}),e});function lo(t){var e=uo(t.style);return t.staticStyle?O(t.staticStyle,e):e}function uo(t){return Array.isArray(t)?D(t):"string"===typeof t?co(t):t}function ho(t,e){var n,i={};if(e){var r=t;while(r.componentInstance)r=r.componentInstance._vnode,r&&r.data&&(n=lo(r.data))&&O(i,n)}(n=lo(t.data))&&O(i,n);var o=t;while(o=o.parent)o.data&&(n=lo(o.data))&&O(i,n);return i}var fo,po=/^--/,mo=/\s*!important$/,vo=function(t,e,n){if(po.test(e))t.style.setProperty(e,n);else if(mo.test(n))t.style.setProperty(A(e),n.replace(mo,""),"important");else{var i=_o(e);if(Array.isArray(n))for(var r=0,o=n.length;r-1?e.split(wo).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function xo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wo).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",i=" "+e+" ";while(n.indexOf(i)>=0)n=n.replace(i," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Co(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&O(e,So(t.name||"v")),O(e,t),e}return"string"===typeof t?So(t):void 0}}var So=w(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),Ao=Z&&!et,Eo="transition",qo="animation",To="transition",$o="transitionend",Oo="animation",Do="animationend";Ao&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(To="WebkitTransition",$o="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Oo="WebkitAnimation",Do="webkitAnimationEnd"));var Lo=Z?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mo(t){Lo(function(){Lo(t)})}function Io(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ko(t,e))}function jo(t,e){t._transitionClasses&&_(t._transitionClasses,e),xo(t,e)}function Bo(t,e,n){var i=Po(t,e),r=i.type,o=i.timeout,s=i.propCount;if(!r)return n();var a=r===Eo?$o:Do,c=0,l=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++c>=s&&l()};setTimeout(function(){c0&&(n=Eo,u=s,h=o.length):e===qo?l>0&&(n=qo,u=l,h=c.length):(u=Math.max(s,l),n=u>0?s>l?Eo:qo:null,h=n?n===Eo?o.length:c.length:0);var d=n===Eo&&Fo.test(i[To+"Property"]);return{type:n,timeout:u,propCount:h,hasTransform:d}}function Ro(t,e){while(t.length1}function Yo(t,e){!0!==e.data.show&&No(e)}var Wo=Z?{create:Yo,activate:Yo,remove:function(t,e){!0!==t.data.show?Ho(t,e):e()}}:{},Go=[Hr,Yr,no,ao,yo,Wo],Qo=Go.concat(Pr),Zo=Or({nodeOps:xr,modules:Qo});et&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&rs(t,"input")});var Ko={inserted:function(t,e,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?we(n,"postpatch",function(){Ko.componentUpdated(t,e,n)}):Xo(t,e,n.context),t._vOptions=[].map.call(t.options,es)):("textarea"===n.tag||lr(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ns),t.addEventListener("compositionend",is),t.addEventListener("change",is),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Xo(t,e,n.context);var i=t._vOptions,r=t._vOptions=[].map.call(t.options,es);if(r.some(function(t,e){return!j(t,i[e])})){var o=t.multiple?e.value.some(function(t){return ts(t,r)}):e.value!==e.oldValue&&ts(e.value,r);o&&rs(t,"change")}}}};function Xo(t,e,n){Jo(t,e,n),(tt||nt)&&setTimeout(function(){Jo(t,e,n)},0)}function Jo(t,e,n){var i=e.value,r=t.multiple;if(!r||Array.isArray(i)){for(var o,s,a=0,c=t.options.length;a-1,s.selected!==o&&(s.selected=o);else if(j(es(s),i))return void(t.selectedIndex!==a&&(t.selectedIndex=a));r||(t.selectedIndex=-1)}}function ts(t,e){return e.every(function(e){return!j(e,t)})}function es(t){return"_value"in t?t._value:t.value}function ns(t){t.target.composing=!0}function is(t){t.target.composing&&(t.target.composing=!1,rs(t.target,"input"))}function rs(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function os(t){return!t.componentInstance||t.data&&t.data.transition?t:os(t.componentInstance._vnode)}var ss={bind:function(t,e,n){var i=e.value;n=os(n);var r=n.data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&r?(n.data.show=!0,No(n,function(){t.style.display=o})):t.style.display=i?o:"none"},update:function(t,e,n){var i=e.value,r=e.oldValue;if(!i!==!r){n=os(n);var o=n.data&&n.data.transition;o?(n.data.show=!0,i?No(n,function(){t.style.display=t.__vOriginalDisplay}):Ho(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,i,r){r||(t.style.display=t.__vOriginalDisplay)}},as={model:Ko,show:ss},cs={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ls(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?ls(xn(e.children)):t}function us(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var r=n._parentListeners;for(var o in r)e[x(o)]=r[o];return e}function hs(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ds(t){while(t=t.parent)if(t.data.transition)return!0}function fs(t,e){return e.key===t.key&&e.tag===t.tag}var ps=function(t){return t.tag||kn(t)},ms=function(t){return"show"===t.name},vs={name:"transition",props:cs,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(ps),n.length)){0;var i=this.mode;0;var r=n[0];if(ds(this.$vnode))return r;var o=ls(r);if(!o)return r;if(this._leaving)return hs(t,r);var s="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?s+"comment":s+o.tag:a(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var c=(o.data||(o.data={})).transition=us(this),l=this._vnode,u=ls(l);if(o.data.directives&&o.data.directives.some(ms)&&(o.data.show=!0),u&&u.data&&!fs(o,u)&&!kn(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=O({},c);if("out-in"===i)return this._leaving=!0,we(h,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),hs(t,r);if("in-out"===i){if(kn(o))return l;var d,f=function(){d()};we(c,"afterEnter",f),we(c,"enterCancelled",f),we(h,"delayLeave",function(t){d=t})}}return r}}},gs=O({tag:String,moveClass:String},cs);delete gs.mode;var _s={props:gs,beforeMount:function(){var t=this,e=this._update;this._update=function(n,i){var r=On(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,r(),e.call(t,n,i)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],s=us(this),a=0;a0&&(e=e.concat(l(t)))}),e}},"2c91":function(t,e,n){"use strict";var i=n("2b0e");e["a"]=i["a"].extend({name:"QSpace",render:function(t){return t("div",{staticClass:"q-space"})}})},"2d00":function(t,e){t.exports=!1},"2d95":function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},"2ea3":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QPage",inject:{pageContainer:{default:function(){console.error("QPage needs to be child of QPageContainer")}},layout:{}},props:{padding:Boolean,styleFn:Function},computed:{style:function(){var t=(!0===this.layout.header.space?this.layout.header.size:0)+(!0===this.layout.footer.space?this.layout.footer.size:0);if("function"===typeof this.styleFn)return this.styleFn(t);var e=!0===this.layout.container?this.layout.containerHeight-t+"px":0!==t?"calc(100vh - ".concat(t,"px)"):"100vh";return{minHeight:e}},classes:function(){if(!0===this.padding)return"q-layout-padding"}},render:function(t){return t("main",{staticClass:"q-page",style:this.style,class:this.classes,on:this.$listeners},Object(r["a"])(this,"default"))}})},"2f21":function(t,e,n){"use strict";var i=n("79e5");t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},"2f62":function(t,e,n){"use strict"; /** * vuex v3.1.0 * (c) 2019 Evan You * @license MIT */ -function i(t){var e=Number(t.version.split(".")[0]);if(e>=2)t.mixin({beforeCreate:i});else{var n=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[i].concat(t.init):i,n.call(this,t)}}function i(){var t=this.$options;t.store?this.$store="function"===typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}n.d(e,"b",function(){return D});var r="undefined"!==typeof window&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function o(t){r&&(t._devtoolHook=r,r.emit("vuex:init",t),r.on("vuex:travel-to-state",function(e){t.replaceState(e)}),t.subscribe(function(t,e){r.emit("vuex:mutation",t,e)}))}function s(t,e){Object.keys(t).forEach(function(n){return e(t[n],n)})}function a(t){return null!==t&&"object"===typeof t}function c(t){return t&&"function"===typeof t.then}var l=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"===typeof n?n():n)||{}},u={namespaced:{configurable:!0}};u.namespaced.get=function(){return!!this._rawModule.namespaced},l.prototype.addChild=function(t,e){this._children[t]=e},l.prototype.removeChild=function(t){delete this._children[t]},l.prototype.getChild=function(t){return this._children[t]},l.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},l.prototype.forEachChild=function(t){s(this._children,t)},l.prototype.forEachGetter=function(t){this._rawModule.getters&&s(this._rawModule.getters,t)},l.prototype.forEachAction=function(t){this._rawModule.actions&&s(this._rawModule.actions,t)},l.prototype.forEachMutation=function(t){this._rawModule.mutations&&s(this._rawModule.mutations,t)},Object.defineProperties(l.prototype,u);var h=function(t){this.register([],t,!1)};function d(t,e,n){if(e.update(n),n.modules)for(var i in n.modules){if(!e.getChild(i))return void 0;d(t.concat(i),e.getChild(i),n.modules[i])}}h.prototype.get=function(t){return t.reduce(function(t,e){return t.getChild(e)},this.root)},h.prototype.getNamespace=function(t){var e=this.root;return t.reduce(function(t,n){return e=e.getChild(n),t+(e.namespaced?n+"/":"")},"")},h.prototype.update=function(t){d([],this.root,t)},h.prototype.register=function(t,e,n){var i=this;void 0===n&&(n=!0);var r=new l(e,n);if(0===t.length)this.root=r;else{var o=this.get(t.slice(0,-1));o.addChild(t[t.length-1],r)}e.modules&&s(e.modules,function(e,r){i.register(t.concat(r),e,n)})},h.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];e.getChild(n).runtime&&e.removeChild(n)};var f;var p=function(t){var e=this;void 0===t&&(t={}),!f&&"undefined"!==typeof window&&window.Vue&&q(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var i=t.strict;void 0===i&&(i=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new h(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new f;var r=this,s=this,a=s.dispatch,c=s.commit;this.dispatch=function(t,e){return a.call(r,t,e)},this.commit=function(t,e,n){return c.call(r,t,e,n)},this.strict=i;var l=this._modules.root.state;b(this,l,[],this._modules.root),_(this,l),n.forEach(function(t){return t(e)});var u=void 0!==t.devtools?t.devtools:f.config.devtools;u&&o(this)},m={state:{configurable:!0}};function v(t,e){return e.indexOf(t)<0&&e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function g(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;b(t,n,[],t._modules.root,!0),_(t,n,e)}function _(t,e,n){var i=t._vm;t.getters={};var r=t._wrappedGetters,o={};s(r,function(e,n){o[n]=function(){return e(t)},Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})});var a=f.config.silent;f.config.silent=!0,t._vm=new f({data:{$$state:e},computed:o}),f.config.silent=a,t.strict&&S(t),i&&(n&&t._withCommit(function(){i._data.$$state=null}),f.nextTick(function(){return i.$destroy()}))}function b(t,e,n,i,r){var o=!n.length,s=t._modules.getNamespace(n);if(i.namespaced&&(t._modulesNamespaceMap[s]=i),!o&&!r){var a=A(e,n.slice(0,-1)),c=n[n.length-1];t._withCommit(function(){f.set(a,c,i.state)})}var l=i.context=y(t,s,n);i.forEachMutation(function(e,n){var i=s+n;k(t,i,e,l)}),i.forEachAction(function(e,n){var i=e.root?n:s+n,r=e.handler||e;x(t,i,r,l)}),i.forEachGetter(function(e,n){var i=s+n;C(t,i,e,l)}),i.forEachChild(function(i,o){b(t,e,n.concat(o),i,r)})}function y(t,e,n){var i=""===e,r={dispatch:i?t.dispatch:function(n,i,r){var o=E(n,i,r),s=o.payload,a=o.options,c=o.type;return a&&a.root||(c=e+c),t.dispatch(c,s)},commit:i?t.commit:function(n,i,r){var o=E(n,i,r),s=o.payload,a=o.options,c=o.type;a&&a.root||(c=e+c),t.commit(c,s,a)}};return Object.defineProperties(r,{getters:{get:i?function(){return t.getters}:function(){return w(t,e)}},state:{get:function(){return A(t.state,n)}}}),r}function w(t,e){var n={},i=e.length;return Object.keys(t.getters).forEach(function(r){if(r.slice(0,i)===e){var o=r.slice(i);Object.defineProperty(n,o,{get:function(){return t.getters[r]},enumerable:!0})}}),n}function k(t,e,n,i){var r=t._mutations[e]||(t._mutations[e]=[]);r.push(function(e){n.call(t,i.state,e)})}function x(t,e,n,i){var r=t._actions[e]||(t._actions[e]=[]);r.push(function(e,r){var o=n.call(t,{dispatch:i.dispatch,commit:i.commit,getters:i.getters,state:i.state,rootGetters:t.getters,rootState:t.state},e,r);return c(o)||(o=Promise.resolve(o)),t._devtoolHook?o.catch(function(e){throw t._devtoolHook.emit("vuex:error",e),e}):o})}function C(t,e,n,i){t._wrappedGetters[e]||(t._wrappedGetters[e]=function(t){return n(i.state,i.getters,t.state,t.getters)})}function S(t){t._vm.$watch(function(){return this._data.$$state},function(){0},{deep:!0,sync:!0})}function A(t,e){return e.length?e.reduce(function(t,e){return t[e]},t):t}function E(t,e,n){return a(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function q(t){f&&t===f||(f=t,i(f))}m.state.get=function(){return this._vm._data.$$state},m.state.set=function(t){0},p.prototype.commit=function(t,e,n){var i=this,r=E(t,e,n),o=r.type,s=r.payload,a=(r.options,{type:o,payload:s}),c=this._mutations[o];c&&(this._withCommit(function(){c.forEach(function(t){t(s)})}),this._subscribers.forEach(function(t){return t(a,i.state)}))},p.prototype.dispatch=function(t,e){var n=this,i=E(t,e),r=i.type,o=i.payload,s={type:r,payload:o},a=this._actions[r];if(a){try{this._actionSubscribers.filter(function(t){return t.before}).forEach(function(t){return t.before(s,n.state)})}catch(l){0}var c=a.length>1?Promise.all(a.map(function(t){return t(o)})):a[0](o);return c.then(function(t){try{n._actionSubscribers.filter(function(t){return t.after}).forEach(function(t){return t.after(s,n.state)})}catch(l){0}return t})}},p.prototype.subscribe=function(t){return v(t,this._subscribers)},p.prototype.subscribeAction=function(t){var e="function"===typeof t?{before:t}:t;return v(e,this._actionSubscribers)},p.prototype.watch=function(t,e,n){var i=this;return this._watcherVM.$watch(function(){return t(i.state,i.getters)},e,n)},p.prototype.replaceState=function(t){var e=this;this._withCommit(function(){e._vm._data.$$state=t})},p.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"===typeof t&&(t=[t]),this._modules.register(t,e),b(this,this.state,t,this._modules.get(t),n.preserveState),_(this,this.state)},p.prototype.unregisterModule=function(t){var e=this;"string"===typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var n=A(e.state,t.slice(0,-1));f.delete(n,t[t.length-1])}),g(this)},p.prototype.hotUpdate=function(t){this._modules.update(t),g(this,!0)},p.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(p.prototype,m);var T=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var i=j(this.$store,"mapState",t);if(!i)return;e=i.context.state,n=i.context.getters}return"function"===typeof r?r.call(this,e,n):e[r]},n[i].vuex=!0}),n}),O=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var i=this.$store.commit;if(t){var o=j(this.$store,"mapMutations",t);if(!o)return;i=o.context.commit}return"function"===typeof r?r.apply(this,[i].concat(e)):i.apply(this.$store,[r].concat(e))}}),n}),D=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;r=t+r,n[i]=function(){if(!t||j(this.$store,"mapGetters",t))return this.$store.getters[r]},n[i].vuex=!0}),n}),$=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var i=this.$store.dispatch;if(t){var o=j(this.$store,"mapActions",t);if(!o)return;i=o.context.dispatch}return"function"===typeof r?r.apply(this,[i].concat(e)):i.apply(this.$store,[r].concat(e))}}),n}),L=function(t){return{mapState:T.bind(null,t),mapGetters:D.bind(null,t),mapMutations:O.bind(null,t),mapActions:$.bind(null,t)}};function M(t){return Array.isArray(t)?t.map(function(t){return{key:t,val:t}}):Object.keys(t).map(function(e){return{key:e,val:t[e]}})}function I(t){return function(e,n){return"string"!==typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function j(t,e,n){var i=t._modulesNamespaceMap[n];return i}var B={Store:p,install:q,version:"3.1.0",mapState:T,mapMutations:O,mapGetters:D,mapActions:$,createNamespacedHelpers:L};e["a"]=B},"2fdb":function(t,e,n){"use strict";var i=n("5ca1"),r=n("d2c8"),o="includes";i(i.P+i.F*n("5147")(o),"String",{includes:function(t){return!!~r(this,t,o).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},"30c0":function(t,e,n){"use strict";function i(t,e,n){var i,r=e,o={ok:!1,pos:e,value:""};i=t.charCodeAt(e);while(e=48&&i<=57||37===i)i=t.charCodeAt(++e);return o.ok=!0,o.pos=e,o.value=t.slice(r,e),o}t.exports=function(t,e,n){var r,o={ok:!1,pos:0,width:"",height:""};if(e>=n)return o;if(r=t.charCodeAt(e),61!==r)return o;if(e++,r=t.charCodeAt(e),120!==r&&(r<48||r>57))return o;var s=i(t,e,n);if(e=s.pos,r=t.charCodeAt(e),120!==r)return o;e++;var a=i(t,e,n);return e=a.pos,o.width=s.value,o.height=a.value,o.pos=e,o.ok=!0,o}},"31f4":function(t,e){t.exports=function(t,e,n){var i=void 0===n;switch(e.length){case 0:return i?t():t.call(n);case 1:return i?t(e[0]):t.call(n,e[0]);case 2:return i?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return i?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return i?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},"32e9":function(t,e,n){var i=n("86cc"),r=n("4630");t.exports=n("9e1e")?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},"33a4":function(t,e,n){var i=n("84f2"),r=n("2b4c")("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(i.Array===t||o[r]===t)}},"33d5":function(t,e){},3408:function(t,e,n){"use strict";t.exports=function(t){var e;t.inlineMode?(e=new t.Token("inline","",0),e.content=t.src,e.map=[0,1],e.children=[],t.tokens.push(e)):t.md.block.parse(t.src,t.md,t.env,t.tokens)}},"362d":function(t,e,n){"use strict";var i=n("fa38"),r=n("aa43"),o=n("00bd"),s=n("48cc"),a=n("38c8");t.exports=function(t,e){var n={defs:i,shortcuts:r,enabled:[]},c=a(t.utils.assign({},n,e||{}));t.renderer.rules.emoji=o,t.core.ruler.push("emoji",s(t,c.defs,c.shortcuts,c.scanRE,c.replaceRE))}},"377c":function(t,e,n){"use strict";t.exports=function(t,e,n,i){n=n||0;var r=i?"BE":"LE",o=t["readUInt"+e+r];return o.call(t,n)}},3786:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("dde5");e["a"]=i["a"].extend({name:"QRadio",props:{value:{required:!0},val:{required:!0},label:String,leftLabel:Boolean,color:String,keepColor:Boolean,dark:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return this.value===this.val},classes:function(){return{disabled:this.disable,"q-radio--dark":this.dark,"q-radio--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-radio__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0}},methods:{set:function(t){void 0!==t&&Object(r["h"])(t),!0!==this.disable&&!0!==this.isTrue&&this.$emit("input",this.val)},__keyDown:function(t){13!==t.keyCode&&32!==t.keyCode||this.set(t)}},render:function(t){return t("div",{staticClass:"q-radio cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.set,keydown:this.__keyDown}},[t("div",{staticClass:"q-radio__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-radio__native q-ma-none q-pa-none invisible",attrs:{type:"checkbox"},on:{change:this.set}}):null,t("div",{staticClass:"q-radio__bg absolute"},[t("div",{staticClass:"q-radio__outer-circle absolute-full"}),t("div",{staticClass:"q-radio__inner-circle absolute-full"})])]),void 0!==this.label||void 0!==this.$scopedSlots.default?t("div",{staticClass:"q-radio__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(o["a"])(this,"default"))):null])}})},3846:function(t,e,n){n("9e1e")&&"g"!=/./g.flags&&n("86cc").f(RegExp.prototype,"flags",{configurable:!0,get:n("0bfb")})},"386b":function(t,e,n){var i=n("5ca1"),r=n("79e5"),o=n("be13"),s=/"/g,a=function(t,e,n,i){var r=String(o(t)),a="<"+e;return""!==n&&(a+=" "+n+'="'+String(i).replace(s,""")+'"'),a+">"+r+""};t.exports=function(t,e){var n={};n[t]=e(a),i(i.P+i.F*r(function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}),"String",n)}},"38c8":function(t,e,n){"use strict";function i(t){return t.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}t.exports=function(t){var e,n=t.defs;t.enabled.length&&(n=Object.keys(n).reduce(function(e,i){return t.enabled.indexOf(i)>=0&&(e[i]=n[i]),e},{})),e=Object.keys(t.shortcuts).reduce(function(e,i){return n[i]?Array.isArray(t.shortcuts[i])?(t.shortcuts[i].forEach(function(t){e[t]=i}),e):(e[t.shortcuts[i]]=i,e):e},{});var r=Object.keys(n).map(function(t){return":"+t+":"}).concat(Object.keys(e)).sort().reverse().map(function(t){return i(t)}).join("|"),o=RegExp(r),s=RegExp(r,"g");return{defs:n,shortcuts:e,scanRE:o,replaceRE:s}}},"38fd":function(t,e,n){var i=n("69a8"),r=n("4bf8"),o=n("613b")("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},"3b2b":function(t,e,n){var i=n("7726"),r=n("5dbc"),o=n("86cc").f,s=n("9093").f,a=n("aae3"),c=n("0bfb"),l=i.RegExp,u=l,h=l.prototype,d=/a/g,f=/a/g,p=new l(d)!==d;if(n("9e1e")&&(!p||n("79e5")(function(){return f[n("2b4c")("match")]=!1,l(d)!=d||l(f)==f||"/a/i"!=l(d,"i")}))){l=function(t,e){var n=this instanceof l,i=a(t),o=void 0===e;return!n&&i&&t.constructor===l&&o?t:r(p?new u(i&&!o?t.source:t,e):u((i=t instanceof l)?t.source:t,i&&o?c.call(t):e),n?this:h,l)};for(var m=function(t){t in l||o(l,t,{configurable:!0,get:function(){return u[t]},set:function(e){u[t]=e}})},v=s(u),g=0;v.length>g;)m(v[g++]);h.constructor=l,l.prototype=h,n("2aba")(i,"RegExp",l)}n("7a56")("RegExp")},"3c93":function(t,e,n){var i=n("adc8");function r(t){for(var e=1;e=0&&32===t.pending.charCodeAt(n)?n>=1&&32===t.pending.charCodeAt(n-1)?(t.pending=t.pending.replace(/ +$/,""),t.push("hardbreak","br",0)):(t.pending=t.pending.slice(0,-1),t.push("softbreak","br",0)):t.push("softbreak","br",0)),o++;while(o0&&(clearTimeout(this.bufferTimer),this.bufferTimer=void 0,this.buffer.length=0),this.bufferRoute=this.$route,void 0!==t&&(!0===t.remove?this.buffer=this.buffer.filter(function(e){return e.name!==t.name}):this.buffer.push(t)),void 0===this.bufferTimer&&(this.bufferTimer=setTimeout(function(){for(var t=[],n=0;ni:this.$refs.content.scrollWidth>n;this.scrollable!==r&&(this.scrollable=r),!0===r&&this.$nextTick(function(){return e.__updateArrows()});var o=(!0===this.vertical?i:n)0&&(this.$refs.content[!0===this.vertical?"scrollTop":"scrollLeft"]+=m,this.__updateArrows())}},__updateArrows:function(){var t=this.$refs.content,e=t.getBoundingClientRect(),n=!0===this.vertical?t.scrollTop:t.scrollLeft;this.leftArrow=n>0,this.rightArrow=!0===this.vertical?n+e.height+5=t)&&(r=!0,n=t),e[!0===this.vertical?"scrollTop":"scrollLeft"]=n,this.__updateArrows(),r}},created:function(){this.buffer=[]},mounted:function(){if(!0===this.topIndicator){var t=Object({NODE_ENV:"production",CLIENT:!0,SERVER:!1,DEV:!1,PROD:!0,MODE:"spa",VUE_ROUTER_MODE:"hash",VUE_ROUTER_BASE:"",APP_URL:"undefined"});!0!==t.PROD&&console.info("\n\n[Quasar] QTabs info: please rename top-indicator to switch-indicator prop")}},beforeDestroy:function(){clearTimeout(this.bufferTimer),clearTimeout(this.animateTimer)},render:function(t){return t("div",{staticClass:"q-tabs row no-wrap items-center",class:this.classes,on:r()({input:c["g"]},this.$listeners),attrs:{role:"tablist"}},[t(a["a"],{on:{resize:this.__updateContainer}}),t(s["a"],{staticClass:"q-tabs__arrow q-tabs__arrow--left q-tab__icon",class:!0===this.leftArrow?"":"q-tabs__arrow--faded",props:{name:this.leftIcon||(!0===this.vertical?this.$q.iconSet.tabs.up:this.$q.iconSet.tabs.left)},nativeOn:{mousedown:this.__scrollToStart,touchstart:this.__scrollToStart,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll}}),t("div",{ref:"content",staticClass:"q-tabs__content row no-wrap items-center",class:this.alignClass},Object(l["a"])(this,"default")),t(s["a"],{staticClass:"q-tabs__arrow q-tabs__arrow--right q-tab__icon",class:!0===this.rightArrow?"":"q-tabs__arrow--faded",props:{name:this.rightIcon||(!0===this.vertical?this.$q.iconSet.tabs.down:this.$q.iconSet.tabs.right)},nativeOn:{mousedown:this.__scrollToEnd,touchstart:this.__scrollToEnd,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll}})])}})},"43e0":function(t,e,n){"use strict";t.exports=function(t){var e="";return e+=t.protocol||"",e+=t.slashes?"//":"",e+=t.auth?t.auth+"@":"",t.hostname&&-1!==t.hostname.indexOf(":")?e+="["+t.hostname+"]":e+=t.hostname||"",e+=t.port?":"+t.port:"",e+=t.pathname||"",e+=t.search||"",e+=t.hash||"",e}},"44a8":function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,o,s,a,c=e+1,l=t.md.block.ruler.getRules("paragraph"),u=t.lineMax;for(a=t.parentType,t.parentType="paragraph";c3)&&!(t.sCount[c]<0)){for(i=!1,r=0,o=l.length;r0?i:n)(t)}},4630:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"469d":function(t,e,n){(function(t){function n(t,e){for(var n=0,i=t.length-1;i>=0;i--){var r=t[i];"."===r?t.splice(i,1):".."===r?(t.splice(i,1),n++):n&&(t.splice(i,1),n--)}if(e)for(;n--;n)t.unshift("..");return t}var i=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,r=function(t){return i.exec(t).slice(1)};function o(t,e){if(t.filter)return t.filter(e);for(var n=[],i=0;i=-1&&!i;r--){var s=r>=0?arguments[r]:t.cwd();if("string"!==typeof s)throw new TypeError("Arguments to path.resolve must be strings");s&&(e=s+"/"+e,i="/"===s.charAt(0))}return e=n(o(e.split("/"),function(t){return!!t}),!i).join("/"),(i?"/":"")+e||"."},e.normalize=function(t){var i=e.isAbsolute(t),r="/"===s(t,-1);return t=n(o(t.split("/"),function(t){return!!t}),!i).join("/"),t||i||(t="."),t&&r&&(t+="/"),(i?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(o(t,function(t,e){if("string"!==typeof t)throw new TypeError("Arguments to path.join must be strings");return t}).join("/"))},e.relative=function(t,n){function i(t){for(var e=0;e=0;n--)if(""!==t[n])break;return e>n?[]:t.slice(e,n-e+1)}t=e.resolve(t).substr(1),n=e.resolve(n).substr(1);for(var r=i(t.split("/")),o=i(n.split("/")),s=Math.min(r.length,o.length),a=s,c=0;c0&&!a.test(u[r-1]))return;if(r+i.lengthc&&(s=new o("text","",0),s.content=t.slice(c,r),l.push(s)),s=new o("emoji","",0),s.markup=h,s.content=e[h],l.push(s),c=r+i.length}),c=0;e--)a=s[e],"link_open"!==a.type&&"link_close"!==a.type||"auto"===a.info&&(u-=a.nesting),"text"===a.type&&0===u&&i.test(a.content)&&(l[n].children=s=o(s,e,c(a.content,a.level,t.Token)))}}},4917:function(t,e,n){"use strict";var i=n("cb7c"),r=n("9def"),o=n("0390"),s=n("5f1b");n("214f")("match",1,function(t,e,n,a){return[function(n){var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},function(t){var e=a(n,t,this);if(e.done)return e.value;var c=i(t),l=String(this);if(!c.global)return s(c,l);var u=c.unicode;c.lastIndex=0;var h,d=[],f=0;while(null!==(h=s(c,l))){var p=String(h[0]);d[f]=p,""===p&&(c.lastIndex=o(l,r(c.lastIndex),u)),f++}return 0===f?null:d}]})},"497d":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QList",props:{bordered:Boolean,dense:Boolean,separator:Boolean,dark:Boolean,padding:Boolean},computed:{classes:function(){return{"q-list--bordered":this.bordered,"q-list--dense":this.dense,"q-list--separator":this.separator,"q-list--dark":this.dark,"q-list--padding":this.padding}}},render:function(t){return t("div",{staticClass:"q-list",class:this.classes,on:this.$listeners},Object(r["a"])(this,"default"))}})},4983:function(t,e,n){"use strict";n("f751"),n("c5f6");var i=n("2b0e"),r=n("7937"),o=n("d882"),s=n("0831"),a=n("dde5"),c=n("b6d5"),l=n("edca"),u=n("75c3");e["a"]=i["a"].extend({name:"QScrollArea",directives:{TouchPan:u["a"]},props:{thumbStyle:{type:Object,default:function(){return{}}},contentStyle:{type:Object,default:function(){return{}}},contentActiveStyle:{type:Object,default:function(){return{}}},delay:{type:[String,Number],default:1e3},horizontal:Boolean},data:function(){return{active:!1,hover:!1,containerWidth:0,containerHeight:0,scrollPosition:0,scrollSize:0}},computed:{thumbHidden:function(){return this.scrollSize<=this.containerSize||!this.active&&!this.hover},thumbSize:function(){return Math.round(Object(r["a"])(this.containerSize*this.containerSize/this.scrollSize,50,this.containerSize))},style:function(){var t=this.scrollPercentage*(this.containerSize-this.thumbSize);return Object.assign({},this.thumbStyle,!0===this.horizontal?{left:"".concat(t,"px"),width:"".concat(this.thumbSize,"px")}:{top:"".concat(t,"px"),height:"".concat(this.thumbSize,"px")})},mainStyle:function(){return!0===this.thumbHidden?this.contentStyle:this.contentActiveStyle},scrollPercentage:function(){var t=Object(r["a"])(this.scrollPosition/(this.scrollSize-this.containerSize),0,1);return Math.round(1e4*t)/1e4},direction:function(){return this.horizontal?"right":"down"},containerSize:function(){return!0===this.horizontal?this.containerWidth:this.containerHeight},dirProps:function(){return!0===this.horizontal?{el:"scrollLeft",wheel:"x"}:{el:"scrollTop",wheel:"y"}},thumbClass:function(){return"q-scrollarea__thumb--".concat(!0===this.horizontal?"h absolute-bottom":"v absolute-right")+(!0===this.thumbHidden?" q-scrollarea__thumb--invisible":"")}},methods:{setScrollPosition:function(t,e){!0===this.horizontal?Object(s["g"])(this.$refs.target,t,e):Object(s["h"])(this.$refs.target,t,e)},__updateContainer:function(t){var e=t.height,n=t.width;this.containerWidth!==n&&(this.containerWidth=n,this.__setActive(!0,!0)),this.containerHeight!==e&&(this.containerHeight=e,this.__setActive(!0,!0))},__updateScroll:function(t){var e=t.position;this.scrollPosition!==e&&(this.scrollPosition=e,this.__setActive(!0,!0))},__updateScrollSize:function(t){var e=t.height,n=t.width;this.horizontal?this.scrollSize!==n&&(this.scrollSize=n,this.__setActive(!0,!0)):this.scrollSize!==e&&(this.scrollSize=e,this.__setActive(!0,!0))},__panThumb:function(t){t.isFirst&&(this.refPos=this.scrollPosition,this.__setActive(!0,!0)),t.isFinal&&this.__setActive(!1);var e=(this.scrollSize-this.containerSize)/(this.containerSize-this.thumbSize),n=this.horizontal?t.distance.x:t.distance.y,i=this.refPos+(t.direction===this.direction?1:-1)*n*e;this.__setScroll(i)},__panContainer:function(t){t.isFirst&&(this.refPos=this.scrollPosition,this.__setActive(!0,!0)),t.isFinal&&this.__setActive(!1);var e=this.horizontal?t.distance.x:t.distance.y,n=this.refPos+(t.direction===this.direction?-1:1)*e;this.__setScroll(n),n>0&&n+this.containerSize0&&e[this.dirProps.el]+this.containerSizeb;b++)if(v=e?_(s(p=t[b])[0],p[1]):_(t[b]),v===l||v===u)return v}else for(m=g.call(t);!(p=m.next()).done;)if(v=r(m,_,p.value,e),v===l||v===u)return v};e.BREAK=l,e.RETURN=u},"4a94":function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,o,s,a,c=t.pos,l=t.src.charCodeAt(c);if(96!==l)return!1;n=c,c++,i=t.posMax;while(c=s)return-1;if(n=t.src.charCodeAt(o++),n<48||n>57)return-1;for(;;){if(o>=s)return-1;if(n=t.src.charCodeAt(o++),!(n>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-r>=10)return-1}return o=4)return!1;if(i&&"paragraph"===t.parentType&&t.tShift[e]>=t.blkIndent&&(I=!0),(T=o(t,e))>=0){if(f=!0,D=t.bMarks[e]+t.tShift[e],b=Number(t.src.substr(D,T-D-1)),I&&1!==b)return!1}else{if(!((T=r(t,e))>=0))return!1;f=!1}if(I&&t.skipSpaces(T)>=t.eMarks[e])return!1;if(_=t.src.charCodeAt(T-1),i)return!0;g=t.tokens.length,f?(M=t.push("ordered_list_open","ol",1),1!==b&&(M.attrs=[["start",b]])):M=t.push("bullet_list_open","ul",1),M.map=v=[e,0],M.markup=String.fromCharCode(_),w=e,O=!1,L=t.md.block.ruler.getRules("list"),S=t.parentType,t.parentType="list";while(w=y?1:k-d,h>4&&(h=1),u=d+h,M=t.push("list_item_open","li",1),M.markup=String.fromCharCode(_),M.map=p=[e,0],x=t.blkIndent,E=t.tight,A=t.tShift[e],C=t.sCount[e],t.blkIndent=u,t.tight=!0,t.tShift[e]=c-t.bMarks[e],t.sCount[e]=k,c>=y&&t.isEmpty(e+1)?t.line=Math.min(t.line+2,n):t.md.block.tokenize(t,e,n,!0),t.tight&&!O||(j=!1),O=t.line-e>1&&t.isEmpty(t.line-1),t.blkIndent=x,t.tShift[e]=A,t.sCount[e]=C,t.tight=E,M=t.push("list_item_close","li",-1),M.markup=String.fromCharCode(_),w=e=t.line,p[1]=w,c=t.bMarks[e],w>=n)break;if(t.sCount[w]=o)break}else t.pending+=t.src[t.pos++]}t.pending&&t.pushPending()},s.prototype.parse=function(t,e,n,i){var r,o,s,a=new this.State(t,e,n,i);for(this.tokenize(a),o=this.ruler2.getRules(""),s=o.length,r=0;rthis.containerHeight?Object(l["e"])():0;this.scrollbarWidth!==t&&(this.scrollbarWidth=t)}}}})},"4dd6":function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},"4e73":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("8449"),n("2b0e")),s=n("c474"),a=n("7ee0"),c=n("9e62"),l=n("7562"),u=n("d882"),h=n("0967"),d=!0!==u["d"].hasPassive||{passive:!1,capture:!0},f={name:"click-outside",bind:function(t,e){var n=e.value,i=e.arg,r={trigger:n,handler:function(e){var n=e&&e.target;if(n&&n!==document.body){if(t.contains(n))return;if(void 0!==i)for(var o=0;o^`|~",r=t.utils.lib.ucmicro.P.source,o=t.utils.lib.ucmicro.Z.source;function s(t,e,n,i){var r,o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(l+2>=u)return!1;if(42!==t.src.charCodeAt(l++))return!1;if(91!==t.src.charCodeAt(l++))return!1;for(a=l;l=0;s--)if(_=l[s],"text"===_.type&&(f=0,h=_.content,p.lastIndex=0,d=[],g.test(h))){while(m=p.exec(h))(m.index>0||m[1].length>0)&&(u=new t.Token("text","",0),u.content=h.slice(f,m.index+m[1].length),d.push(u)),u=new t.Token("abbr_open","abbr",1),u.attrs=[["title",t.env.abbreviations[":"+m[2]]]],d.push(u),u=new t.Token("text","",0),u.content=m[2],d.push(u),u=new t.Token("abbr_close","abbr",-1),d.push(u),p.lastIndex-=m[3].length,f=p.lastIndex;d.length&&(f1&&o.call(s[0],n,function(){for(u=1;u'+'').concat(n,"")+""}return""}},"52a7":function(t,e){e.f={}.propertyIsEnumerable},"54b4":function(t,e,n){"use strict";n("f751");var i=n("3c93"),r=n.n(i),o=(n("c5f6"),n("2b0e")),s=n("6ab5"),a=n("033f"),c=n("e208"),l=n("0016"),u=n("dde5"),h=o["a"].extend({name:"QSlideTransition",props:{appear:Boolean,duration:{type:Number,default:300}},methods:{__begin:function(t,e,n){t.style.overflowY="hidden",void 0!==e&&(t.style.height="".concat(e,"px")),t.style.transition="height ".concat(this.duration,"ms cubic-bezier(.25, .8, .50, 1)"),this.animating=!0,this.done=n},__end:function(t,e){t.style.overflowY=null,t.style.height=null,t.style.transition=null,this.__cleanup(),e!==this.lastEvent&&this.$emit(e)},__cleanup:function(){this.done&&this.done(),this.done=null,this.animating=!1,clearTimeout(this.timer),this.el.removeEventListener("transitionend",this.animListener),this.animListener=null}},beforeDestroy:function(){this.animating&&this.__cleanup()},render:function(t){var e=this;return t("transition",{props:{css:!1,appear:this.appear},on:{enter:function(t,n){var i=0;e.el=t,!0===e.animating?(e.__cleanup(),i=t.offsetHeight===t.scrollHeight?0:void 0):e.lastEvent="hide",e.__begin(t,i,n),e.timer=setTimeout(function(){t.style.height="".concat(t.scrollHeight,"px"),e.animListener=function(){e.__end(t,"show")},t.addEventListener("transitionend",e.animListener)},100)},leave:function(t,n){var i;e.el=t,!0===e.animating?e.__cleanup():(e.lastEvent="show",i=t.scrollHeight),e.__begin(t,i,n),e.timer=setTimeout(function(){t.style.height=0,e.animListener=function(){e.__end(t,"hide")},t.addEventListener("transitionend",e.animListener)},100)}}},Object(u["a"])(this,"default"))}}),d=n("eb85"),f=n("8716"),p=n("7ee0"),m=n("d882"),v="q:expansion-item:close";e["a"]=o["a"].extend({name:"QExpansionItem",mixins:[f["a"],p["a"]],props:{icon:String,label:String,labelLines:[Number,String],caption:String,captionLines:[Number,String],dark:Boolean,dense:Boolean,expandIcon:String,expandIconClass:String,duration:Number,headerInsetLevel:Number,contentInsetLevel:Number,expandSeparator:Boolean,defaultOpened:Boolean,expandIconToggle:Boolean,switchToggleSide:Boolean,denseToggle:Boolean,group:String,popup:Boolean,headerStyle:[Array,String,Object],headerClass:[Array,String,Object]},watch:{showing:function(t){t&&this.group&&this.$root.$emit(v,this)}},computed:{classes:function(){return"q-expansion-item--".concat(!0===this.showing?"expanded":"collapsed")+" q-expansion-item--".concat(!0===this.popup?"popup":"standard")},contentStyle:function(){if(void 0!==this.contentInsetLevel)return{paddingLeft:56*this.contentInsetLevel+"px"}},isClickable:function(){return!0===this.hasRouterLink||!0!==this.expandIconToggle},expansionIcon:function(){return this.expandIcon||(this.denseToggle?this.$q.iconSet.expansionItem.denseIcon:this.$q.iconSet.expansionItem.icon)},activeToggleIcon:function(){return!0!==this.disable&&(!0===this.hasRouterLink||!0===this.expandIconToggle)}},methods:{__onHeaderClick:function(t){!0!==this.hasRouterLink&&this.toggle(t),this.$emit("click",t)},__toggleIconKeyboard:function(t){13===t.keyCode&&this.__toggleIcon(t,!0)},__toggleIcon:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),this.toggle(t),Object(m["h"])(t)},__eventHandler:function(t){this.group&&this!==t&&t.group===this.group&&this.hide()},__getToggleIcon:function(t){return t(a["a"],{staticClass:"cursor-pointer".concat(!0===this.denseToggle&&!0===this.switchToggleSide?" items-end":""),class:this.expandIconClass,props:{side:!0!==this.switchToggleSide,avatar:this.switchToggleSide},on:!0===this.activeToggleIcon?{click:this.__toggleIcon,keyup:this.__toggleIconKeyboard}:void 0},[t(l["a"],{staticClass:"q-expansion-item__toggle-icon q-focusable",class:{"rotate-180":this.showing,invisible:this.disable},props:{name:this.expansionIcon},attrs:!0===this.activeToggleIcon?{tabindex:0}:void 0},[t("div",{staticClass:"q-focus-helper q-focus-helper--round",attrs:{tabindex:-1},ref:"blurTarget"})])])},__getHeader:function(t){var e;void 0!==this.$scopedSlots.header?e=[].concat(this.$scopedSlots.header()):(e=[t(a["a"],[t(c["a"],{props:{lines:this.labelLines}},[this.label||""]),this.caption?t(c["a"],{props:{lines:this.captionLines,caption:!0}},[this.caption]):null])],this.icon&&e[!0===this.switchToggleSide?"push":"unshift"](t(a["a"],{props:{side:!0===this.switchToggleSide,avatar:!0!==this.switchToggleSide}},[t(l["a"],{props:{name:this.icon}})]))),e[!0===this.switchToggleSide?"unshift":"push"](this.__getToggleIcon(t));var n={ref:"item",style:this.headerStyle,class:this.headerClass,props:{dark:this.dark,disable:this.disable,dense:this.dense,insetLevel:this.headerInsetLevel}};if(!0===this.isClickable){var i=!0===this.hasRouterLink?"nativeOn":"on";n.props.clickable=!0,n[i]=r()({},this.$listeners,{click:this.__onHeaderClick}),!0===this.hasRouterLink&&Object.assign(n.props,this.routerLinkProps)}return t(s["a"],n,e)},__getContent:function(t){var e=[this.__getHeader(t),t(h,{props:{duration:this.duration}},[t("div",{staticClass:"q-expansion-item__content relative-position",style:this.contentStyle,directives:[{name:"show",value:this.showing}]},Object(u["a"])(this,"default"))])];return this.expandSeparator&&e.push(t(d["a"],{staticClass:"q-expansion-item__border q-expansion-item__border--top absolute-top",props:{dark:this.dark}}),t(d["a"],{staticClass:"q-expansion-item__border q-expansion-item__border--bottom absolute-bottom",props:{dark:this.dark}})),e}},render:function(t){return t("div",{staticClass:"q-expansion-item q-item-type",class:this.classes},[t("div",{staticClass:"q-expansion-item__container relative-position"},this.__getContent(t))])},created:function(){this.$root.$on(v,this.__eventHandler),!0===this.value?this.showing=!0:!0===this.defaultOpened&&(this.$emit("input",!0),this.showing=!0)},beforeDestroy:function(){this.$root.$off(v,this.__eventHandler)}})},"54e1":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QBanner",props:{inlineActions:Boolean,dense:Boolean,rounded:Boolean},render:function(t){var e=Object(r["a"])(this,"action");return t("div",{staticClass:"q-banner row items-center",class:{"q-banner--top-padding":void 0!==e&&!this.inlineActions,"q-banner--dense":this.dense,"rounded-borders":this.rounded},on:this.$listeners},[t("div",{staticClass:"q-banner__avatar col-auto row items-center"},Object(r["a"])(this,"avatar")),t("div",{staticClass:"q-banner__content col text-body2"},Object(r["a"])(this,"default")),void 0!==e?t("div",{staticClass:"q-banner__actions row items-center justify-end",class:this.inlineActions?"col-auto":"col-all"},e):null])}})},"54f6":function(t,e,n){"use strict";var i=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;function r(t,e){var n,r,o,s=t.posMax,a=t.pos;if(126!==t.src.charCodeAt(a))return!1;if(e)return!1;if(a+2>=s)return!1;t.pos=a+1;while(t.poso)s(n[o++]);t._c=[],t._n=!1,e&&!t._h&&I(t)})}},I=function(t){g.call(c,function(){var e,n,i,r=t._v,o=j(t);if(o&&(e=y(function(){T?S.emit("unhandledRejection",r,t):(n=c.onunhandledrejection)?n({promise:t,reason:r}):(i=c.console)&&i.error&&i.error("Unhandled promise rejection",r)}),t._h=T||j(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},j=function(t){return 1!==t._h&&0===(t._a||t._c).length},B=function(t){g.call(c,function(){var e;T?S.emit("rejectionHandled",t):(e=c.onrejectionhandled)&&e({promise:t,reason:t._v})})},F=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),M(e,!0))},P=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw C("Promise can't be resolved itself");(e=L(t))?_(function(){var i={_w:n,_d:!1};try{e.call(t,l(P,i,1),l(F,i,1))}catch(r){F.call(i,r)}}):(n._v=t,n._s=1,M(n,!1))}catch(i){F.call({_w:n,_d:!1},i)}}};$||(q=function(t){p(this,q,x,"_h"),f(t),i.call(this);try{t(l(P,this,1),l(F,this,1))}catch(e){F.call(this,e)}},i=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n("dcbc")(q.prototype,{then:function(t,e){var n=D(v(this,q));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?S.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&M(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new i;this.promise=t,this.resolve=l(P,t,1),this.reject=l(F,t,1)},b.f=D=function(t){return t===q||t===s?new o(t):r(t)}),h(h.G+h.W+h.F*!$,{Promise:q}),n("7f20")(q,x),n("7a56")(x),s=n("8378")[x],h(h.S+h.F*!$,x,{reject:function(t){var e=D(this),n=e.reject;return n(t),e.promise}}),h(h.S+h.F*(a||!$),x,{resolve:function(t){return k(a&&this===s?q:this,t)}}),h(h.S+h.F*!($&&n("5cc5")(function(t){q.all(t)["catch"](O)})),x,{all:function(t){var e=this,n=D(e),i=n.resolve,r=n.reject,o=y(function(){var n=[],o=0,s=1;m(t,!1,function(t){var a=o++,c=!1;n.push(void 0),s++,e.resolve(t).then(function(t){c||(c=!0,n[a]=t,--s||i(n))},r)}),--s||i(n)});return o.e&&r(o.v),n.promise},race:function(t){var e=this,n=D(e),i=n.reject,r=y(function(){m(t,!1,function(t){e.resolve(t).then(n.resolve,i)})});return r.e&&i(r.v),n.promise}})},5537:function(t,e,n){var i=n("8378"),r=n("7726"),o="__core-js_shared__",s=r[o]||(r[o]={});(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n("2d00")?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},"55dd":function(t,e,n){"use strict";var i=n("5ca1"),r=n("d8e8"),o=n("4bf8"),s=n("79e5"),a=[].sort,c=[1,2,3];i(i.P+i.F*(s(function(){c.sort(void 0)})||!s(function(){c.sort(null)})||!n("2f21")(a)),"Array",{sort:function(t){return void 0===t?a.call(o(this)):a.call(o(this),r(t))}})},"565b":function(t,e,n){"use strict";e.parseLinkLabel=n("df56"),e.parseLinkDestination=n("e4ca"),e.parseLinkTitle=n("7d91")},5694:function(t,e,n){"use strict";n.d(e,"d",function(){return c}),n.d(e,"c",function(){return l}),n.d(e,"b",function(){return u}),n.d(e,"a",function(){return h});n("6762"),n("28a5");var i=n("adc8"),r=n.n(i),o=(n("c5f6"),n("7937")),s=n("d882"),a=n("75c3"),c=[34,37,40,33,39,38];function l(t,e,n){var i=Object(s["e"])(t),r=Object(o["a"])((i.left-e.left)/e.width,0,1);return n?1-r:r}function u(t,e,n,i,r){var s=e+t*(n-e);if(i>0){var a=(s-e)%i;s+=(Math.abs(a)>=i/2?(a<0?-1:1)*i:0)-a}return r>0&&(s=parseFloat(s.toFixed(r))),Object(o["a"])(s,e,n)}var h={directives:{TouchPan:a["a"]},props:{min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1,validator:function(t){return t>=0}},color:String,labelColor:String,dark:Boolean,dense:Boolean,label:Boolean,labelAlways:Boolean,markers:Boolean,snap:Boolean,disable:Boolean,readonly:Boolean,tabindex:[String,Number]},data:function(){return{active:!1,preventFocus:!1,focus:!1}},computed:{classes:function(){var t;return t={},r()(t,"text-".concat(this.color),this.color),r()(t,"q-slider--".concat(this.active?"":"in","active"),!0),r()(t,"disabled",this.disable),r()(t,"q-slider--editable",this.editable),r()(t,"q-slider--focus","both"===this.focus),r()(t,"q-slider--label",this.label||this.labelAlways),r()(t,"q-slider--label-always",this.labelAlways),r()(t,"q-slider--dark",this.dark),r()(t,"q-slider--dense",this.dense),t},editable:function(){return!this.disable&&!this.readonly},decimals:function(){return(String(this.step).trim("0").split(".")[1]||"").length},computedStep:function(){return 0===this.step?1:this.step},markerStyle:function(){return{backgroundSize:100*this.computedStep/(this.max-this.min)+"% 2px"}},computedTabindex:function(){return!0===this.editable?this.tabindex||0:-1},horizProp:function(){return!0===this.$q.lang.rtl?"right":"left"}},methods:{__pan:function(t){t.isFinal?(this.dragging&&(this.__updatePosition(t.evt),this.__updateValue(!0),this.dragging=!1),this.active=!1):t.isFirst?(this.dragging=this.__getDragging(t.evt),this.__updatePosition(t.evt),this.active=!0):(this.__updatePosition(t.evt),this.__updateValue())},__blur:function(){this.focus=!1},__activate:function(t){this.__updatePosition(t,this.__getDragging(t)),this.preventFocus=!0,this.active=!0,document.addEventListener("mouseup",this.__deactivate,!0)},__deactivate:function(){this.preventFocus=!1,this.active=!1,this.__updateValue(!0),this.__blur(),document.removeEventListener("mouseup",this.__deactivate,!0)},__mobileClick:function(t){this.__updatePosition(t,this.__getDragging(t)),this.__updateValue(!0)},__keyup:function(t){c.includes(t.keyCode)&&this.__updateValue(!0)}},beforeDestroy:function(){document.removeEventListener("mouseup",this.__deactivate,!0)}}},5706:function(t,e,n){"use strict";var i="[a-zA-Z_:][a-zA-Z0-9:._-]*",r="[^\"'=<>`\\x00-\\x20]+",o="'[^']*'",s='"[^"]*"',a="(?:"+r+"|"+o+"|"+s+")",c="(?:\\s+"+i+"(?:\\s*=\\s*"+a+")?)",l="<[A-Za-z][A-Za-z0-9\\-]*"+c+"*\\s*\\/?>",u="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",h="\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e",d="<[?].*?[?]>",f="]*>",p="",m=new RegExp("^(?:"+l+"|"+u+"|"+h+"|"+d+"|"+f+"|"+p+")"),v=new RegExp("^(?:"+l+"|"+u+")");t.exports.HTML_TAG_RE=m,t.exports.HTML_OPEN_CLOSE_TAG_RE=v},"573e":function(t,e,n){},"582c":function(t,e,n){"use strict";var i=n("0967");e["a"]={__history:[],add:function(){},remove:function(){},install:function(t,e){var n=this;if(!i["c"]&&t.platform.is.cordova){this.add=function(t){n.__history.push(t)},this.remove=function(t){var e=n.__history.indexOf(t);e>=0&&n.__history.splice(e,1)};var r=void 0===e.cordova||!1!==e.cordova.backButtonExit;document.addEventListener("deviceready",function(){document.addEventListener("backbutton",function(){n.__history.length?n.__history.pop().handler():r&&"#/"===window.location.hash?navigator.app.exitApp():window.history.back()},!1)})}}}},"58a8":function(t,e,n){"use strict";n("6762"),n("2fdb"),n("c5f6");var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QBadge",props:{color:String,textColor:String,floating:Boolean,transparent:Boolean,multiLine:Boolean,label:[Number,String],align:{type:String,validator:function(t){return["top","middle","bottom"].includes(t)}}},computed:{style:function(){if(void 0!==this.align)return{verticalAlign:this.align}},classes:function(){return"q-badge flex inline items-center no-wrap"+" q-badge--".concat(!0===this.multiLine?"multi":"single","-line")+(void 0!==this.color?" bg-".concat(this.color):"")+(void 0!==this.textColor?" text-".concat(this.textColor):"")+(!0===this.floating?" q-badge--floating":"")+(!0===this.transparent?" q-badge--transparent":"")}},render:function(t){return t("div",{style:this.style,class:this.classes,on:this.$listeners},void 0!==this.label?[this.label]:Object(r["a"])(this,"default"))}})},"5b54":function(t,e,n){"use strict";var i=n("bd68"),r=n("0068").has,o=n("0068").isValidEntityCode,s=n("0068").fromCodePoint,a=/^&#((?:x[a-f0-9]{1,8}|[0-9]{1,8}));/i,c=/^&([a-z][a-z0-9]{1,31});/i;t.exports=function(t,e){var n,l,u,h=t.pos,d=t.posMax;if(38!==t.src.charCodeAt(h))return!1;if(h+1=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},"5eda":function(t,e,n){var i=n("5ca1"),r=n("8378"),o=n("79e5");t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],s={};s[t]=e(n),i(i.S+i.F*o(function(){n(1)}),"Object",s)}},"5f1b":function(t,e,n){"use strict";var i=n("23c6"),r=RegExp.prototype.exec;t.exports=function(t,e){var n=t.exec;if("function"===typeof n){var o=n.call(t,e);if("object"!==typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==i(t))throw new TypeError("RegExp#exec called on incompatible receiver");return r.call(t,e)}},"5fbd":function(t,e,n){"use strict";var i=n("e1f3"),r=n("5706").HTML_OPEN_CLOSE_TAG_RE,o=[[/^<(script|pre|style)(?=(\s|>|$))/i,/<\/(script|pre|style)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(r.source+"\\s*$"),/^$/,!1]];t.exports=function(t,e,n,i){var r,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(!t.md.options.html)return!1;if(60!==t.src.charCodeAt(l))return!1;for(c=t.src.slice(l,u),r=0;r1?arguments[1]:void 0)}}),n("9c6c")("includes")},6821:function(t,e,n){var i=n("626a"),r=n("be13");t.exports=function(t){return i(r(t))}},"68bf":function(t,e,n){var i=n("5cf4"),r=n("b326"),o=n("aee1");function s(t,e){return i(t)||r(t,e)||o()}t.exports=s},"69a8":function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},"6a99":function(t,e,n){var i=n("d3f4");t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},"6ab5":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("c5f6"),n("2b0e")),c=n("8716"),l=n("dde5"),u=n("d882");e["a"]=a["a"].extend({name:"QItem",mixins:[c["a"]],props:{active:Boolean,dark:Boolean,clickable:Boolean,dense:Boolean,insetLevel:Number,tabindex:[String,Number],tag:{type:String,default:"div"},focused:Boolean,manualFocus:Boolean},computed:{isClickable:function(){return!0!==this.disable&&(!0===this.clickable||!0===this.hasRouterLink||"a"===this.tag||"label"===this.tag)},classes:function(){var t;return t={"q-item--clickable q-link cursor-pointer":this.isClickable,"q-focusable q-hoverable":!0===this.isClickable&&!1===this.manualFocus,"q-manual-focusable":!0===this.isClickable&&!0===this.manualFocus,"q-manual-focusable--focused":!0===this.isClickable&&!0===this.focused,"q-item--dense":this.dense,"q-item--dark":this.dark,"q-item--active":this.active},s()(t,this.activeClass,!0===this.active&&!0!==this.hasRouterLink&&void 0!==this.activeClass),s()(t,"disabled",this.disable),t},style:function(){if(void 0!==this.insetLevel)return{paddingLeft:16+56*this.insetLevel+"px"}}},methods:{__getContent:function(t){var e=[].concat(Object(l["a"])(this,"default"));return!0===this.isClickable&&e.unshift(t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"})),e},__onClick:function(t){!0===this.isClickable&&(!0!==t.qKeyEvent&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),this.$emit("click",t))},__onKeyup:function(t){if(13===t.keyCode&&!0===this.isClickable){Object(u["h"])(t),t.qKeyEvent=!0;var e=new MouseEvent("click",t);e.qKeyEvent=!0,this.$el.dispatchEvent(e)}this.$emit("keyup",t)}},render:function(t){var e={staticClass:"q-item q-item-type row no-wrap",class:this.classes,style:this.style},n=!0===this.hasRouterLink?"nativeOn":"on";return e[n]=r()({},this.$listeners,{click:this.__onClick,keyup:this.__onKeyup}),!0===this.isClickable&&(e.attrs={tabindex:this.tabindex||"0"}),!0===this.hasRouterLink?(e.tag="a",e.props=this.routerLinkProps,t("router-link",e,this.__getContent(t))):t(this.tag,e,this.__getContent(t))}})},"6ac5":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QToolbarTitle",props:{shrink:Boolean},render:function(t){return t("div",{staticClass:"q-toolbar__title ellipsis",class:!0===this.shrink?"col-shrink":null,on:this.$listeners},Object(r["a"])(this,"default"))}})},"6b54":function(t,e,n){"use strict";n("3846");var i=n("cb7c"),r=n("0bfb"),o=n("9e1e"),s="toString",a=/./[s],c=function(t){n("2aba")(RegExp.prototype,s,t,!0)};n("79e5")(function(){return"/a/b"!=a.call({source:"a",flags:"b"})})?c(function(){var t=i(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?r.call(t):void 0)}):a.name!=s&&c(function(){return a.call(this)})},"6e00":function(t,e,n){"use strict";for(var i=n("0068").isSpace,r=[],o=0;o<256;o++)r.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(t){r[t.charCodeAt(0)]=1}),t.exports=function(t,e){var n,o=t.pos,s=t.posMax;if(92!==t.src.charCodeAt(o))return!1;if(o++,o=0)&&s(e,t,n,!0===e.qKeyEvent)},keyup:function(e){!0===n.enabled&&13===e.keyCode&&!0!==e.qKeyEvent&&s(e,t,n,!0)}};a(n,e),t.__qripple&&(t.__qripple_old=t.__qripple),t.__qripple=n,t.addEventListener("click",n.click),t.addEventListener("keyup",n.keyup)},update:function(t,e){void 0!==t.__qripple&&a(t.__qripple,e)},unbind:function(t){var e=t.__qripple_old||t.__qripple;void 0!==e&&(void 0!==e.abort&&e.abort(),t.removeEventListener("click",e.click),t.removeEventListener("keyup",e.keyup),delete t[t.__qripple_old?"__qripple_old":"__qripple"])}}},7333:function(t,e,n){"use strict";var i=n("0d58"),r=n("2621"),o=n("52a7"),s=n("4bf8"),a=n("626a"),c=Object.assign;t.exports=!c||n("79e5")(function(){var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach(function(t){e[t]=t}),7!=c({},t)[n]||Object.keys(c({},e)).join("")!=i})?function(t,e){var n=s(t),c=arguments.length,l=1,u=r.f,h=o.f;while(c>l){var d,f=a(arguments[l++]),p=u?i(f).concat(u(f)):i(f),m=p.length,v=0;while(m>v)h.call(f,d=p[v++])&&(n[d]=f[d])}return n}:c},7460:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("7f7f"),n("c5f6"),n("2b0e")),c=n("1732"),l=n("0016"),u=n("3d69"),h=n("d882"),d=n("dde5");e["a"]=a["a"].extend({name:"QTab",mixins:[u["a"]],inject:{tabs:{default:function(){console.error("QTab/QRouteTab components need to be child of QTabsBar")}},__activateTab:{}},props:{icon:String,label:[Number,String],alert:[Boolean,String],name:{type:[Number,String],default:function(){return Object(c["a"])()}},noCaps:Boolean,tabindex:[String,Number],disable:Boolean},computed:{isActive:function(){return this.tabs.current===this.name},classes:function(){var t;return t={},s()(t,"q-tab--".concat(this.isActive?"":"in","active"),!0),s()(t,"text-".concat(this.tabs.activeColor),this.isActive&&this.tabs.activeColor),s()(t,"bg-".concat(this.tabs.activeBgColor),this.isActive&&this.tabs.activeBgColor),s()(t,"q-tab--full",this.icon&&this.label&&!this.tabs.inlineLabel),s()(t,"q-tab--no-caps",!0===this.noCaps||!0===this.tabs.noCaps),s()(t,"q-focusable q-hoverable cursor-pointer",!this.disable),s()(t,"disabled",this.disable),t},computedTabIndex:function(){return!0===this.disable||!0===this.isActive?-1:this.tabindex||0}},methods:{activate:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),!0!==this.disable&&(void 0!==this.$listeners.click&&this.$emit("click",t),this.__activateTab(this.name))},__onKeyup:function(t){13===t.keyCode&&this.activate(t,!0)},__getContent:function(t){var e=this.tabs.narrowIndicator,n=[],i=t("div",{staticClass:"q-tab__indicator",class:this.tabs.indicatorClass});void 0!==this.icon&&n.push(t(l["a"],{staticClass:"q-tab__icon",props:{name:this.icon}})),void 0!==this.label&&n.push(t("div",{staticClass:"q-tab__label"},[this.label])),!1!==this.alert&&n.push(t("div",{staticClass:"q-tab__alert",class:!0!==this.alert?"text-".concat(this.alert):null})),e&&n.push(i);var r=[t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"}),t("div",{staticClass:"q-tab__content flex-center relative-position no-pointer-events non-selectable",class:!0===this.tabs.inlineLabel?"row no-wrap q-tab__content--inline":"column"},n.concat(Object(d["a"])(this,"default")))];return!e&&r.push(i),r},__render:function(t,e,n){var i=s()({staticClass:"q-tab relative-position self-stretch flex flex-center text-center",class:this.classes,attrs:{tabindex:this.computedTabIndex,role:"tab","aria-selected":this.isActive},directives:!1!==this.ripple&&!0===this.disable?null:[{name:"ripple",value:this.ripple}]},"div"===e?"on":"nativeOn",r()({input:h["g"]},this.$listeners,{click:this.activate,keyup:this.__onKeyup}));return void 0!==n&&(i.props=n),t(e,i,this.__getContent(t))}},render:function(t){return this.__render(t,"div")}})},"746a":function(t,e,n){"use strict";t.exports=function(t,e,n){function i(t){return t.trim().split(" ",2)[0]===e}function r(t,n,i,r,o){return 1===t[n].nesting&&t[n].attrPush(["class",e]),o.renderToken(t,n,i,r,o)}n=n||{};var o=3,s=n.marker||":",a=s.charCodeAt(0),c=s.length,l=n.validate||i,u=n.render||r;function h(t,n,i,r){var u,h,d,f,p,m,v,g,_=!1,b=t.bMarks[n]+t.tShift[n],y=t.eMarks[n];if(a!==t.src.charCodeAt(b))return!1;for(u=b+1;u<=y;u++)if(s[(u-b)%c]!==t.src[u])break;if(d=Math.floor((u-b)/c),d=i)break;if(b=t.bMarks[h]+t.tShift[h],y=t.eMarks[h],b=4)){for(u=b+1;u<=y;u++)if(s[(u-b)%c]!==t.src[u])break;if(!(Math.floor((u-b)/c)1?arguments[1]:void 0)}}),n("9c6c")(o)},7562:function(t,e,n){"use strict";e["a"]={props:{transitionShow:{type:String,default:"fade"},transitionHide:{type:String,default:"fade"}},data:function(){return{transitionState:this.showing}},watch:{showing:function(t){var e=this;this.transitionShow!==this.transitionHide&&this.$nextTick(function(){e.transitionState=t})}},computed:{transition:function(){return"q-transition--"+(!0===this.transitionState?this.transitionHide:this.transitionShow)}}}},"75c3":function(t,e,n){"use strict";var i=n("d882"),r=n("a8c6"),o=n("2248");function s(t){var e=!0!==t.horizontal&&!0!==t.vertical,n={all:!0===e||!0===t.horizontal&&!0===t.vertical};return!0!==t.horizontal&&!0!==e||(n.horizontal=!0),!0!==t.vertical&&!0!==e||(n.vertical=!0),n}function a(t,e,n){var r,o=Object(i["e"])(t),s=o.left-e.event.x,a=o.top-e.event.y,c=Math.abs(s),l=Math.abs(a);return r=e.direction.horizontal&&!e.direction.vertical?s<0?"left":"right":!e.direction.horizontal&&e.direction.vertical?a<0?"up":"down":c>=l?s<0?"left":"right":a<0?"up":"down",{evt:t,position:o,direction:r,isFirst:e.event.isFirst,isFinal:!0===n,isMouse:e.event.mouse,duration:(new Date).getTime()-e.event.time,distance:{x:c,y:l},offset:{x:s,y:a},delta:{x:o.left-e.event.lastX,y:o.top-e.event.lastY}}}function c(t,e){return!(!t.direction.horizontal||!t.direction.vertical)||(t.direction.horizontal&&!t.direction.vertical?Math.abs(e.delta.x)>0:!t.direction.horizontal&&t.direction.vertical?Math.abs(e.delta.y)>0:void 0)}e["a"]={name:"touch-pan",bind:function(t,e){var n=!0===e.modifiers.mouse,l=!0!==e.modifiers.mouseMightPrevent&&!0!==e.modifiers.mousePrevent,u=!0!==i["d"].hasPassive||{passive:l,capture:!0},h=!0!==e.modifiers.mightPrevent&&!0!==e.modifiers.prevent,d=i["d"][!0===h?"passive":"notPassive"];function f(t,r){n&&r?(e.modifiers.mouseStop&&Object(i["g"])(t),e.modifiers.mousePrevent&&Object(i["f"])(t)):(e.modifiers.stop&&Object(i["g"])(t),e.modifiers.prevent&&Object(i["f"])(t))}var p={handler:e.value,direction:s(e.modifiers),mouseStart:function(t){Object(i["c"])(t)&&(document.addEventListener("mousemove",p.move,u),document.addEventListener("mouseup",p.mouseEnd,u),p.start(t,!0))},mouseEnd:function(t){document.removeEventListener("mousemove",p.move,u),document.removeEventListener("mouseup",p.mouseEnd,u),p.end(t)},start:function(e,n){Object(r["a"])(p),!0!==n&&Object(r["b"])(t,e,p);var o=Object(i["e"])(e);p.event={x:o.left,y:o.top,time:(new Date).getTime(),mouse:!0===n,detected:!1,abort:!1,isFirst:!0,isFinal:!1,lastX:o.left,lastY:o.top}},move:function(t){if(void 0!==p.event&&!0!==p.event.abort)if(!0!==p.event.detected){var n=Object(i["e"])(t),r=Math.abs(n.left-p.event.x),s=Math.abs(n.top-p.event.y);r!==s&&(p.event.detected=!0,!1!==p.direction.all||!1!==p.event.mouse&&!0===e.modifiers.mouseAllDir||(p.event.abort=p.direction.vertical?r>s:r=0,o=r&&i.regeneratorRuntime;if(i.regeneratorRuntime=void 0,t.exports=n("f9d7"),r)i.regeneratorRuntime=o;else try{delete i.regeneratorRuntime}catch(s){i.regeneratorRuntime=void 0}},7696:function(t,e,n){"use strict";var i=n("4883"),r=[["table",n("80d3"),["paragraph","reference"]],["code",n("9c12e")],["fence",n("bf2b"),["paragraph","reference","blockquote","list"]],["blockquote",n("e80e"),["paragraph","reference","blockquote","list"]],["hr",n("fdfe"),["paragraph","reference","blockquote","list"]],["list",n("4b3e"),["paragraph","reference","blockquote"]],["reference",n("d670")],["heading",n("0758"),["paragraph","reference","blockquote"]],["lheading",n("199e")],["html_block",n("5fbd"),["paragraph","reference","blockquote"]],["paragraph",n("44a8")]];function o(){this.ruler=new i;for(var t=0;t=n)break;if(t.sCount[a]=l){t.line=n;break}for(r=0;r0&&void 0!==arguments[0]&&arguments[0],e=this.$route,n=this.$router.resolve(this.to,e,this.append),i=n.href,o=n.location,s=n.route,a=void 0!==s.redirectedFrom,c=!0===this.exact?h:d,l={name:this.name,selected:t,exact:this.exact,priorityMatched:s.matched.length,priorityHref:i.length};c(e,s)&&this.__activateRoute(r()({},l,{redirected:a})),!0===a&&c(e,r()({path:s.redirectedFrom},o))&&this.__activateRoute(l),this.isActive&&this.__activateRoute()}},mounted:function(){void 0!==this.$router&&this.__checkActivation()},beforeDestroy:function(){this.__activateRoute({remove:!0,name:this.name})},render:function(t){return this.__render(t,"router-link",this.routerLinkProps)}})},"790f":function(t,e,n){},7937:function(t,e,n){"use strict";n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r}),n.d(e,"c",function(){return o}),n.d(e,"d",function(){return s});function i(t){return t.charAt(0).toUpperCase()+t.slice(1)}function r(t,e,n){return n<=e?e:Math.min(n,Math.max(e,t))}function o(t,e,n){if(n<=e)return e;var i=n-e+1,r=e+(t-e)%i;return r1&&void 0!==arguments[1]?arguments[1]:2,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"0",i=""+t;return i.length>=e?i:new Array(e-i.length+1).join(n)+i}},"79e5":function(t,e){t.exports=function(t){try{return!!t()}catch(e){return!0}}},"7a56":function(t,e,n){"use strict";var i=n("7726"),r=n("86cc"),o=n("9e1e"),s=n("2b4c")("species");t.exports=function(t){var e=i[t];o&&e&&!e[s]&&r.f(e,s,{configurable:!0,get:function(){return this}})}},"7ba6":function(t,e,n){"use strict";var i=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;function r(t,e){var n,r,o,s=t.posMax,a=t.pos;if(94!==t.src.charCodeAt(a))return!1;if(e)return!1;if(a+2>=s)return!1;t.pos=a+1;while(t.post&&(this.model.min=t),this.model.max>t&&(this.model.max=t)}},computed:{ratioMin:function(){return!0===this.active?this.curMinRatio:this.modelMinRatio},ratioMax:function(){return!0===this.active?this.curMaxRatio:this.modelMaxRatio},modelMinRatio:function(){return(this.model.min-this.min)/(this.max-this.min)},modelMaxRatio:function(){return(this.model.max-this.min)/(this.max-this.min)},trackStyle:function(){var t;return t={},r()(t,this.horizProp,100*this.ratioMin+"%"),r()(t,"width",100*(this.ratioMax-this.ratioMin)+"%"),t},minThumbStyle:function(){var t;return t={},r()(t,this.horizProp,100*this.ratioMin+"%"),r()(t,"z-index","min"===this.__nextFocus?2:void 0),t},maxThumbStyle:function(){return r()({},this.horizProp,100*this.ratioMax+"%")},minThumbClass:function(){return!1===this.preventFocus&&"min"===this.focus?"q-slider--focus":null},maxThumbClass:function(){return!1===this.preventFocus&&"max"===this.focus?"q-slider--focus":null},events:function(){var t=this;if(!0===this.editable){if(!0===this.$q.platform.is.mobile)return{click:this.__mobileClick};var e={mousedown:this.__activate};return!0===this.dragOnlyRange&&Object.assign(e,{focus:function(){t.__focus("both")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}),e}},minEvents:function(){var t=this;if(this.editable&&!this.$q.platform.is.mobile&&!0!==this.dragOnlyRange)return{focus:function(){t.__focus("min")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}},maxEvents:function(){var t=this;if(this.editable&&!this.$q.platform.is.mobile&&!0!==this.dragOnlyRange)return{focus:function(){t.__focus("max")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}},minPinClass:function(){var t=this.leftLabelColor||this.labelColor;if(t)return"text-".concat(t)},maxPinClass:function(){var t=this.rightLabelColor||this.labelColor;if(t)return"text-".concat(t)},minLabel:function(){return void 0!==this.leftLabelValue?this.leftLabelValue:this.model.min},maxLabel:function(){return void 0!==this.rightLabelValue?this.rightLabelValue:this.model.max}},methods:{__updateValue:function(t){this.model.min===this.value.min&&this.model.max===this.value.max||(this.$emit("input",this.model),!0===t&&this.$emit("change",this.model))},__getDragging:function(t){var e,n=this.$el.getBoundingClientRect(),i=n.left,r=n.width,o=this.dragOnlyRange?0:this.$refs.minThumb.offsetWidth/(2*r),s=this.max-this.min,a={left:i,width:r,valueMin:this.model.min,valueMax:this.model.max,ratioMin:(this.value.min-this.min)/s,ratioMax:(this.value.max-this.min)/s},l=Object(c["c"])(t,a,this.$q.lang.rtl);return!0!==this.dragOnlyRange&&l1&&void 0!==arguments[1]?arguments[1]:this.dragging,i=Object(c["c"])(t,n,this.$q.lang.rtl),r=Object(c["b"])(i,this.min,this.max,this.step,this.decimals);switch(n.type){case h.MIN:i<=n.ratioMax?(e={minR:i,maxR:n.ratioMax,min:r,max:n.valueMax},this.__nextFocus="min"):(e={minR:n.ratioMax,maxR:i,min:n.valueMax,max:r},this.__nextFocus="max");break;case h.MAX:i>=n.ratioMin?(e={minR:n.ratioMin,maxR:i,min:n.valueMin,max:r},this.__nextFocus="max"):(e={minR:i,maxR:n.ratioMin,min:r,max:n.valueMin},this.__nextFocus="min");break;case h.RANGE:var o=i-n.offsetRatio,s=Object(u["a"])(n.ratioMin+o,0,1-n.rangeRatio),a=r-n.offsetModel,l=Object(u["a"])(n.valueMin+a,this.min,this.max-n.rangeValue);e={minR:s,maxR:s+n.rangeRatio,min:parseFloat(l.toFixed(this.decimals)),max:parseFloat((l+n.rangeValue).toFixed(this.decimals))};break}if(this.model={min:e.min,max:e.max},!0!==this.snap||0===this.step)this.curMinRatio=e.minR,this.curMaxRatio=e.maxR;else{var d=this.max-this.min;this.curMinRatio=(this.model.min-this.min)/d,this.curMaxRatio=(this.model.max-this.min)/d}},__focus:function(t){this.focus=t},__keydown:function(t){if([34,37,40,33,39,38].includes(t.keyCode)){Object(l["h"])(t);var e=([34,33].includes(t.keyCode)?10:1)*this.computedStep,n=[34,37,40].includes(t.keyCode)?-e:e;if(this.dragOnlyRange){var i=this.dragOnlyRange?this.model.max-this.model.min:0;this.model.min=Object(u["a"])(parseFloat((this.model.min+n).toFixed(this.decimals)),this.min,this.max-i),this.model.max=parseFloat((this.model.min+i).toFixed(this.decimals))}else{var r=this.focus;this.model[r]=Object(u["a"])(parseFloat((this.model[r]+n).toFixed(this.decimals)),"min"===r?this.min:this.model.min,"max"===r?this.max:this.model.max)}this.__updateValue()}},__getThumb:function(t,e){return t("div",{ref:e+"Thumb",staticClass:"q-slider__thumb-container absolute non-selectable",style:this[e+"ThumbStyle"],class:this[e+"ThumbClass"],on:this[e+"Events"],attrs:{tabindex:!0!==this.dragOnlyRange?this.computedTabindex:null}},[t("svg",{staticClass:"q-slider__thumb absolute",attrs:{width:"21",height:"21"}},[t("circle",{attrs:{cx:"10.5",cy:"10.5",r:"7.875"}})]),!0===this.label||!0===this.labelAlways?t("div",{staticClass:"q-slider__pin absolute flex flex-center",class:this[e+"PinClass"]},[t("div",{staticClass:"q-slider__pin-value-marker"},[t("div",{staticClass:"q-slider__pin-value-marker-bg"}),t("div",{staticClass:"q-slider__pin-value-marker-text"},[this[e+"Label"]])])]):null,t("div",{staticClass:"q-slider__focus-ring"})])}},render:function(t){return t("div",{staticClass:"q-slider",attrs:{role:"slider","aria-valuemin":this.min,"aria-valuemax":this.max,"data-step":this.step,"aria-disabled":this.disable,tabindex:this.dragOnlyRange&&!this.$q.platform.is.mobile?this.computedTabindex:null},class:this.classes,on:this.events,directives:this.editable?[{name:"touch-pan",value:this.__pan,modifiers:{horizontal:!0,prevent:!0,stop:!0,mouse:!0,mouseAllDir:!0,mouseStop:!0}}]:null},[t("div",{staticClass:"q-slider__track-container absolute overflow-hidden"},[t("div",{staticClass:"q-slider__track absolute-full",style:this.trackStyle}),!0===this.markers?t("div",{staticClass:"q-slider__track-markers absolute-full fit",style:this.markerStyle}):null]),this.__getThumb(t,"min"),this.__getThumb(t,"max")])}})},"7ca0":function(t,e){t.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},"7cbe":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("f751"),n("7f7f"),n("6762"),n("2fdb"),n("c5f6"),n("2b0e")),s=n("24e8"),a=n("4e73"),c=n("c474"),l=n("dde5");e["a"]=o["a"].extend({name:"QPopupProxy",mixins:[c["a"]],props:{breakpoint:{type:[String,Number],default:450}},data:function(){var t=parseInt(this.breakpoint,10);return{type:this.$q.screen.width"+o(t[e].content)+""},s.code_block=function(t,e,n,i,r){var s=t[e];return""+o(t[e].content)+"\n"},s.fence=function(t,e,n,i,s){var a,c,l,u,h=t[e],d=h.info?r(h.info).trim():"",f="";return d&&(f=d.split(/\s+/g)[0]),a=n.highlight&&n.highlight(h.content,f)||o(h.content),0===a.indexOf(""+a+"\n"):"
"+a+"
\n"},s.image=function(t,e,n,i,r){var o=t[e];return o.attrs[o.attrIndex("alt")][1]=r.renderInlineAsText(o.children,n,i),r.renderToken(t,e,n)},s.hardbreak=function(t,e,n){return n.xhtmlOut?"
\n":"
\n"},s.softbreak=function(t,e,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},s.text=function(t,e){return o(t[e].content)},s.html_block=function(t,e){return t[e].content},s.html_inline=function(t,e){return t[e].content},a.prototype.renderAttrs=function(t){var e,n,i;if(!t.attrs)return"";for(i="",e=0,n=t.attrs.length;e\n":">",r)},a.prototype.renderInline=function(t,e,n){for(var i,r="",o=this.rules,s=0,a=t.length;s=n)return c;if(o=t.charCodeAt(e),34!==o&&39!==o&&40!==o)return c;e++,40===o&&(o=41);while(en)return!1;if(h=e+1,t.sCount[h]=4)return!1;if(l=t.bMarks[h]+t.tShift[h],l>=t.eMarks[h])return!1;if(a=t.src.charCodeAt(l++),124!==a&&45!==a&&58!==a)return!1;while(l=4)return!1;if(d=o(c.replace(/^\||\|$/g,"")),f=d.length,f>m.length)return!1;if(s)return!0;for(p=t.push("table_open","table",1),p.map=g=[e,0],p=t.push("thead_open","thead",1),p.map=[e,e+1],p=t.push("tr_open","tr",1),p.map=[e,e+1],u=0;u=4)break;for(d=o(c.replace(/^\||\|$/g,"")),p=t.push("tr_open","tr",1),u=0;u=k)return!1;for(g=h,f=t.helpers.parseLinkDestination(n.src,h,n.posMax),f.ok&&(y=n.md.normalizeLink(f.str),n.md.validateLink(y)?h=f.pos:y=""),g=h;h=0&&(a=n.src.charCodeAt(h-1),32===a&&(f=r(n.src,h,n.posMax),f.ok)))for(_=f.width,b=f.height,h=f.pos;h=k||41!==n.src.charCodeAt(h))return n.pos=w,!1;h++}else{if("undefined"===typeof n.env.references)return!1;for(;h=0?c=n.src.slice(g,h++):h=l+1):h=l+1,c||(c=n.src.slice(u,l)),d=n.env.references[t.utils.normalizeReference(c)],!d)return n.pos=w,!1;y=d.href,p=d.title}if(!o){n.pos=u,n.posMax=l;var x=new n.md.inline.State(n.src.slice(u,l),n.md,n.env,v=[]);if(x.md.inline.tokenize(x),e&&e.autofill&&""===_&&""===b)try{var C=i(y);_=C.width,b=C.height}catch(S){}m=n.push("image","img",0),m.attrs=s=[["src",y],["alt",""]],m.children=v,p&&s.push(["title",p]),""!==_&&s.push(["width",_]),""!==b&&s.push(["height",b])}return n.pos=h,n.posMax=k,!0}}t.exports=function(t,e){t.inline.ruler.before("emphasis","image",o(t,e))}},"834f":function(t,e,n){"use strict";var i=n("096b"),r=n("0068").isSpace;function o(t,e,n,i){var o,s,a,c,l,u,h,d;for(this.src=t,this.md=e,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.parentType="root",this.level=0,this.result="",s=this.src,d=!1,a=c=u=h=0,l=s.length;c0&&this.level++,this.tokens.push(r),r},o.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]},o.prototype.skipEmptyLines=function(t){for(var e=this.lineMax;te)if(!r(this.src.charCodeAt(--t)))return t+1;return t},o.prototype.skipChars=function(t,e){for(var n=this.src.length;tn)if(e!==this.src.charCodeAt(--t))return t+1;return t},o.prototype.getLines=function(t,e,n,i){var o,s,a,c,l,u,h,d=t;if(t>=e)return"";for(u=new Array(e-t),o=0;dn?new Array(s-n+1).join(" ")+this.src.slice(c,l):this.src.slice(c,l)}return u.join("")},o.prototype.Token=i,t.exports=o},8378:function(t,e){var n=t.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},"838d":function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r,o=t.delimiters,s=t.delimiters.length;for(e=0;e=0){if(r=o[n],r.open&&r.marker===i.marker&&r.end<0&&r.level===i.level){var a=(r.close||i.open)&&"undefined"!==typeof r.length&&"undefined"!==typeof i.length&&(r.length+i.length)%3===0;if(!a){i.jump=e-n,i.open=!1,r.end=e,r.jump=0;break}}n-=r.jump+1}}}},8449:function(t,e,n){"use strict";n("386b")("anchor",function(t){return function(e){return t(this,"a","name",e)}})},"84f2":function(t,e){t.exports={}},8572:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("c5f6"),n("2b0e")),c=n("0016"),l=n("0d59"),u=(n("7514"),n("551c"),n("ac6a"),n("cadf"),n("5df3"),n("8621")),h={props:{value:{},error:{type:Boolean,default:null},errorMessage:String,noErrorIcon:Boolean,rules:Array,lazyRules:Boolean},data:function(){return{isDirty:!1,innerError:!1,innerErrorMessage:void 0}},watch:{value:function(t){void 0!==this.rules&&(!0===this.lazyRules&&!1===this.isDirty||this.validate(t))},focused:function(t){!1===t&&this.__triggerValidation()}},computed:{hasError:function(){return!0===this.error||!0===this.innerError},computedErrorMessage:function(){return"string"===typeof this.errorMessage&&this.errorMessage.length>0?this.errorMessage:this.innerErrorMessage}},mounted:function(){this.validateIndex=0,void 0===this.focused&&this.$el.addEventListener("focusout",this.__triggerValidation)},beforeDestroy:function(){void 0===this.focused&&this.$el.removeEventListener("focusout",this.__triggerValidation)},methods:{resetValidation:function(){this.validateIndex++,this.innerLoading=!1,this.isDirty=!1,this.innerError=!1,this.innerErrorMessage=void 0},validate:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.value;if(!this.rules||0===this.rules.length)return!0;this.validateIndex++,!0!==this.innerLoading&&!0!==this.lazyRules&&(this.isDirty=!0);for(var n=function(e,n){t.innerError!==e&&(t.innerError=e);var i=n||void 0;t.innerErrorMessage!==i&&(t.innerErrorMessage=i),!1!==t.innerLoading&&(t.innerLoading=!1)},i=[],r=0;r0},computedCounter:function(){if(!1!==this.counter){var t="string"===typeof this.value||"number"===typeof this.value?(""+this.value).length:!0===Array.isArray(this.value)?this.value.length:0,e=void 0!==this.maxlength?this.maxlength:this.maxValues;return t+(void 0!==e?" / "+e:"")}},floatingLabel:function(){return!0===this.hasError||!0===this.stackLabel||!0===this.focused||(void 0!==this.inputValue&&!0===this.hideSelected?this.inputValue.length>0:!0===this.hasValue)||void 0!==this.displayValue&&null!==this.displayValue&&(""+this.displayValue).length>0},shouldRenderBottom:function(){return!0===this.bottomSlots||void 0!==this.hint||void 0!==this.rules||!0===this.counter||null!==this.error},classes:function(){var t;return t={},s()(t,this.fieldClass,void 0!==this.fieldClass),s()(t,"q-field--".concat(this.styleType),!0),s()(t,"q-field--rounded",this.rounded),s()(t,"q-field--square",this.square),s()(t,"q-field--focused",!0===this.focused||!0===this.hasError),s()(t,"q-field--float",this.floatingLabel),s()(t,"q-field--labeled",void 0!==this.label),s()(t,"q-field--dense",this.dense),s()(t,"q-field--item-aligned q-item-type",this.itemAligned),s()(t,"q-field--dark",this.dark),s()(t,"q-field--auto-height",void 0===this.__getControl),s()(t,"q-field--with-bottom",!0!==this.hideBottomSpace&&!0===this.shouldRenderBottom),s()(t,"q-field--error",this.hasError),s()(t,"q-field--readonly",this.readonly),s()(t,"q-field--disabled",this.disable),t},styleType:function(){return!0===this.filled?"filled":!0===this.outlined?"outlined":!0===this.borderless?"borderless":this.standout?"standout":"standard"},contentClass:function(){var t=[];if(!0===this.hasError)t.push("text-negative");else{if("string"===typeof this.standout&&this.standout.length>0&&!0===this.focused)return this.standout;void 0!==this.color&&t.push("text-"+this.color)}return void 0!==this.bgColor&&t.push("bg-".concat(this.bgColor)),t}},methods:{focus:function(){if(void 0===this.showPopup||!0===this.$q.platform.is.desktop){var t=this.$refs.target;void 0!==t&&(t.matches("[tabindex]")||(t=t.querySelector("[tabindex]")),null!==t&&t.focus())}else this.showPopup()},blur:function(){var t=document.activeElement;this.$el.contains(t)&&t.blur()},__getContent:function(t){var e=[];return void 0!==this.$scopedSlots.prepend&&e.push(t("div",{staticClass:"q-field__prepend q-field__marginal row no-wrap items-center",key:"prepend"},this.$scopedSlots.prepend())),e.push(t("div",{staticClass:"q-field__control-container col relative-position row no-wrap q-anchor--skip"},this.__getControlContainer(t))),!0===this.hasError&&!1===this.noErrorIcon&&e.push(this.__getInnerAppendNode(t,"error",[t(c["a"],{props:{name:this.$q.iconSet.field.error,color:"negative"}})])),!0!==this.loading&&!0!==this.innerLoading||e.push(this.__getInnerAppendNode(t,"inner-loading-append",void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(l["a"],{props:{color:this.color}})])),!0===this.clearable&&!0===this.hasValue&&!0===this.editable&&e.push(this.__getInnerAppendNode(t,"inner-clearable-append",[t(c["a"],{staticClass:"cursor-pointer",props:{name:this.clearIcon||this.$q.iconSet.field.clear},on:{click:this.__clearValue}})])),void 0!==this.$scopedSlots.append&&e.push(t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center",key:"append"},this.$scopedSlots.append())),void 0!==this.__getInnerAppend&&e.push(this.__getInnerAppendNode(t,"inner-append",this.__getInnerAppend(t))),void 0!==this.__getPopup&&e.push(this.__getPopup(t)),e},__getControlContainer:function(t){var e=[];return void 0!==this.prefix&&null!==this.prefix&&e.push(t("div",{staticClass:"q-field__prefix no-pointer-events row items-center"},[this.prefix])),void 0!==this.__getControl?e.push(this.__getControl(t)):void 0!==this.$scopedSlots.rawControl?e.push(this.$scopedSlots.rawControl()):void 0!==this.$scopedSlots.control&&e.push(t("div",{ref:"target",staticClass:"q-field__native row",attrs:r()({},this.$attrs,{autofocus:this.autofocus})},this.$scopedSlots.control())),void 0!==this.label&&e.push(t("div",{staticClass:"q-field__label no-pointer-events absolute ellipsis"},[this.label])),void 0!==this.suffix&&null!==this.suffix&&e.push(t("div",{staticClass:"q-field__suffix no-pointer-events row items-center"},[this.suffix])),e.concat(void 0!==this.__getDefaultSlot?this.__getDefaultSlot(t):Object(d["a"])(this,"default"))},__getBottom:function(t){var e,n;!0===this.hasError?void 0!==this.computedErrorMessage?(e=[t("div",[this.computedErrorMessage])],n=this.computedErrorMessage):(e=Object(d["a"])(this,"error"),n="q--slot-error"):!0===this.hideHint&&!0!==this.focused||(void 0!==this.hint?(e=[t("div",[this.hint])],n=this.hint):(e=Object(d["a"])(this,"hint"),n="q--slot-hint"));var i=!0===this.counter||void 0!==this.$scopedSlots.counter;if(!0!==this.hideBottomSpace||!1!==i||void 0!==e){var r=t("div",{key:n,staticClass:"q-field__messages col"},e);return t("div",{staticClass:"q-field__bottom row items-start q-field__bottom--"+(!0!==this.hideBottomSpace?"animated":"stale")},[!0===this.hideBottomSpace?r:t("transition",{props:{name:"q-transition--field-message"}},[r]),!0===i?t("div",{staticClass:"q-field__counter"},void 0!==this.$scopedSlots.counter?this.$scopedSlots.counter():[this.computedCounter]):null])}},__getInnerAppendNode:function(t,e,n){return t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center q-anchor--skip",key:e},n)},__onControlFocusin:function(t){!0===this.editable&&!1===this.focused&&(this.focused=!0,void 0!==this.$listeners.focus&&this.$emit("focus",t))},__onControlFocusout:function(t){var e=this;setTimeout(function(){(!0!==document.hasFocus()||void 0!==e.$refs&&void 0!==e.$refs.control&&!1===e.$refs.control.contains(document.activeElement))&&!0===e.focused&&(e.focused=!1,void 0!==e.$listeners.blur&&e.$emit("blur",t))})},__clearValue:function(t){Object(f["g"])(t),this.$emit("input",null)}},render:function(t){return void 0!==this.__onPreRender&&this.__onPreRender(),void 0!==this.__onPostRender&&this.$nextTick(this.__onPostRender),t("div",{staticClass:"q-field row no-wrap items-start",class:this.classes},[void 0!==this.$scopedSlots.before?t("div",{staticClass:"q-field__before q-field__marginal row no-wrap items-center"},this.$scopedSlots.before()):null,t("div",{staticClass:"q-field__inner relative-position col self-stretch column justify-center"},[t("div",{ref:"control",staticClass:"q-field__control relative-position row no-wrap",class:this.contentClass,attrs:{tabindex:-1},on:this.controlEvents},this.__getContent(t)),!0===this.shouldRenderBottom?this.__getBottom(t):null]),void 0!==this.$scopedSlots.after?t("div",{staticClass:"q-field__after q-field__marginal row no-wrap items-center"},this.$scopedSlots.after()):null])},created:function(){void 0!==this.__onPreRender&&this.__onPreRender(),this.controlEvents=void 0!==this.__getControlEvents?this.__getControlEvents():{focus:this.focus,focusin:this.__onControlFocusin,focusout:this.__onControlFocusout}},mounted:function(){!0===this.autofocus&&setTimeout(this.focus)}})},85727:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("469d"),o=n("e788"),s={},a=n("aa8a");a.forEach(function(t){s[t]=n("cd50")("./"+t)});var c=131072;function l(t,e){var n=o(t,e);if(n in s){var i=s[n].calculate(t,e);if(!1!==i)return i.type=n,i}throw new TypeError("Unsupported file type")}function u(t,n){i.open(t,"r",function(t,r){if(t)return n(t);var o=i.fstatSync(r).size,s=Math.min(o,c),a=new e(s);i.read(r,a,0,s,0,function(t){if(t)return n(t);i.close(r,function(t){n(t,a)})})})}function h(t){var n=i.openSync(t,"r"),r=i.fstatSync(n).size,o=Math.min(r,c),s=new e(o);return i.readSync(n,s,0,o,0),i.closeSync(n),s}t.exports=function(t,e){if("string"!==typeof t)throw new TypeError("Input must be file name");var n=r.resolve(t);if("function"!==typeof e){var i=h(n);return l(i,n)}u(n,function(t,i){if(t)return e(t);var r;try{r=l(i,n)}catch(o){t=o}e(t,r)})}}).call(this,n("9cd4").Buffer)},"85fc":function(t,e,n){"use strict";n("c5f6");var i=n("d882");e["a"]={props:{value:{required:!0},val:{},trueValue:{default:!0},falseValue:{default:!1},label:String,leftLabel:Boolean,color:String,keepColor:Boolean,dark:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return this.modelIsArray?this.index>-1:this.value===this.trueValue},isFalse:function(){return this.modelIsArray?-1===this.index:this.value===this.falseValue},index:function(){if(!0===this.modelIsArray)return this.value.indexOf(this.val)},modelIsArray:function(){return Array.isArray(this.value)},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0}},methods:{toggle:function(t){var e;(void 0!==t&&Object(i["h"])(t),!0!==this.disable)&&(!0===this.modelIsArray?!0===this.isTrue?(e=this.value.slice(),e.splice(this.index,1)):e=this.value.concat(this.val):e=!0===this.isTrue?this.toggleIndeterminate?this.indeterminateValue:this.falseValue:!0===this.isFalse?this.trueValue:this.falseValue,this.$emit("input",e))},__keyDown:function(t){13!==t.keyCode&&32!==t.keyCode||this.toggle(t)}}}},8621:function(t,e,n){"use strict";n.d(e,"a",function(){return c});var i=/^#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?$/,r=/^#[0-9a-fA-F]{4}([0-9a-fA-F]{4})?$/,o=/^#([0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/,s=/^rgb\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5])\)$/,a=/^rgba\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/,c={date:function(t){return/^-?[\d]+\/[0-1]\d\/[0-3]\d$/.test(t)},time:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d$/.test(t)},fulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d:[0-5]\d$/.test(t)},timeOrFulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/.test(t)},hexColor:function(t){return i.test(t)},hexaColor:function(t){return r.test(t)},hexOrHexaColor:function(t){return o.test(t)},rgbColor:function(t){return s.test(t)},rgbaColor:function(t){return a.test(t)},rgbOrRgbaColor:function(t){return s.test(t)||a.test(t)},hexOrRgbColor:function(t){return i.test(t)||s.test(t)},hexaOrRgbaColor:function(t){return r.test(t)||a.test(t)},anyColor:function(t){return o.test(t)||s.test(t)||a.test(t)}}},"86cc":function(t,e,n){var i=n("cb7c"),r=n("c69a"),o=n("6a99"),s=Object.defineProperty;e.f=n("9e1e")?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(a){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},8716:function(t,e,n){"use strict";n.d(e,"a",function(){return r});n("a481");var i={to:[String,Object],exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,disable:Boolean},r={props:i,computed:{hasRouterLink:function(){return!0!==this.disable&&void 0!==this.to&&null!==this.to&&""!==this.to},routerLinkProps:function(){return{to:this.to,exact:this.exact,append:this.append,replace:this.replace,activeClass:this.activeClass||"q-router-link--active",exactActiveClass:this.exactActiveClass||"q-router-link--exact-active",event:!0===this.disable?"":void 0}}}}},"8a31":function(t,e,n){"use strict";t.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},"8b97":function(t,e,n){var i=n("d3f4"),r=n("cb7c"),o=function(t,e){if(r(t),!i(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,i){try{i=n("9b43")(Function.call,n("11e9").f(Object.prototype,"__proto__").set,2),i(t,[]),e=!(t instanceof Array)}catch(r){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:i(t,n),t}}({},!1):void 0),check:o}},"8c4f":function(t,e,n){"use strict"; +function i(t){var e=Number(t.version.split(".")[0]);if(e>=2)t.mixin({beforeCreate:i});else{var n=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[i].concat(t.init):i,n.call(this,t)}}function i(){var t=this.$options;t.store?this.$store="function"===typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}n.d(e,"b",function(){return O});var r="undefined"!==typeof window&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function o(t){r&&(t._devtoolHook=r,r.emit("vuex:init",t),r.on("vuex:travel-to-state",function(e){t.replaceState(e)}),t.subscribe(function(t,e){r.emit("vuex:mutation",t,e)}))}function s(t,e){Object.keys(t).forEach(function(n){return e(t[n],n)})}function a(t){return null!==t&&"object"===typeof t}function c(t){return t&&"function"===typeof t.then}var l=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"===typeof n?n():n)||{}},u={namespaced:{configurable:!0}};u.namespaced.get=function(){return!!this._rawModule.namespaced},l.prototype.addChild=function(t,e){this._children[t]=e},l.prototype.removeChild=function(t){delete this._children[t]},l.prototype.getChild=function(t){return this._children[t]},l.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},l.prototype.forEachChild=function(t){s(this._children,t)},l.prototype.forEachGetter=function(t){this._rawModule.getters&&s(this._rawModule.getters,t)},l.prototype.forEachAction=function(t){this._rawModule.actions&&s(this._rawModule.actions,t)},l.prototype.forEachMutation=function(t){this._rawModule.mutations&&s(this._rawModule.mutations,t)},Object.defineProperties(l.prototype,u);var h=function(t){this.register([],t,!1)};function d(t,e,n){if(e.update(n),n.modules)for(var i in n.modules){if(!e.getChild(i))return void 0;d(t.concat(i),e.getChild(i),n.modules[i])}}h.prototype.get=function(t){return t.reduce(function(t,e){return t.getChild(e)},this.root)},h.prototype.getNamespace=function(t){var e=this.root;return t.reduce(function(t,n){return e=e.getChild(n),t+(e.namespaced?n+"/":"")},"")},h.prototype.update=function(t){d([],this.root,t)},h.prototype.register=function(t,e,n){var i=this;void 0===n&&(n=!0);var r=new l(e,n);if(0===t.length)this.root=r;else{var o=this.get(t.slice(0,-1));o.addChild(t[t.length-1],r)}e.modules&&s(e.modules,function(e,r){i.register(t.concat(r),e,n)})},h.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];e.getChild(n).runtime&&e.removeChild(n)};var f;var p=function(t){var e=this;void 0===t&&(t={}),!f&&"undefined"!==typeof window&&window.Vue&&q(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var i=t.strict;void 0===i&&(i=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new h(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new f;var r=this,s=this,a=s.dispatch,c=s.commit;this.dispatch=function(t,e){return a.call(r,t,e)},this.commit=function(t,e,n){return c.call(r,t,e,n)},this.strict=i;var l=this._modules.root.state;b(this,l,[],this._modules.root),_(this,l),n.forEach(function(t){return t(e)});var u=void 0!==t.devtools?t.devtools:f.config.devtools;u&&o(this)},m={state:{configurable:!0}};function v(t,e){return e.indexOf(t)<0&&e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function g(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;b(t,n,[],t._modules.root,!0),_(t,n,e)}function _(t,e,n){var i=t._vm;t.getters={};var r=t._wrappedGetters,o={};s(r,function(e,n){o[n]=function(){return e(t)},Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})});var a=f.config.silent;f.config.silent=!0,t._vm=new f({data:{$$state:e},computed:o}),f.config.silent=a,t.strict&&S(t),i&&(n&&t._withCommit(function(){i._data.$$state=null}),f.nextTick(function(){return i.$destroy()}))}function b(t,e,n,i,r){var o=!n.length,s=t._modules.getNamespace(n);if(i.namespaced&&(t._modulesNamespaceMap[s]=i),!o&&!r){var a=A(e,n.slice(0,-1)),c=n[n.length-1];t._withCommit(function(){f.set(a,c,i.state)})}var l=i.context=y(t,s,n);i.forEachMutation(function(e,n){var i=s+n;k(t,i,e,l)}),i.forEachAction(function(e,n){var i=e.root?n:s+n,r=e.handler||e;x(t,i,r,l)}),i.forEachGetter(function(e,n){var i=s+n;C(t,i,e,l)}),i.forEachChild(function(i,o){b(t,e,n.concat(o),i,r)})}function y(t,e,n){var i=""===e,r={dispatch:i?t.dispatch:function(n,i,r){var o=E(n,i,r),s=o.payload,a=o.options,c=o.type;return a&&a.root||(c=e+c),t.dispatch(c,s)},commit:i?t.commit:function(n,i,r){var o=E(n,i,r),s=o.payload,a=o.options,c=o.type;a&&a.root||(c=e+c),t.commit(c,s,a)}};return Object.defineProperties(r,{getters:{get:i?function(){return t.getters}:function(){return w(t,e)}},state:{get:function(){return A(t.state,n)}}}),r}function w(t,e){var n={},i=e.length;return Object.keys(t.getters).forEach(function(r){if(r.slice(0,i)===e){var o=r.slice(i);Object.defineProperty(n,o,{get:function(){return t.getters[r]},enumerable:!0})}}),n}function k(t,e,n,i){var r=t._mutations[e]||(t._mutations[e]=[]);r.push(function(e){n.call(t,i.state,e)})}function x(t,e,n,i){var r=t._actions[e]||(t._actions[e]=[]);r.push(function(e,r){var o=n.call(t,{dispatch:i.dispatch,commit:i.commit,getters:i.getters,state:i.state,rootGetters:t.getters,rootState:t.state},e,r);return c(o)||(o=Promise.resolve(o)),t._devtoolHook?o.catch(function(e){throw t._devtoolHook.emit("vuex:error",e),e}):o})}function C(t,e,n,i){t._wrappedGetters[e]||(t._wrappedGetters[e]=function(t){return n(i.state,i.getters,t.state,t.getters)})}function S(t){t._vm.$watch(function(){return this._data.$$state},function(){0},{deep:!0,sync:!0})}function A(t,e){return e.length?e.reduce(function(t,e){return t[e]},t):t}function E(t,e,n){return a(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function q(t){f&&t===f||(f=t,i(f))}m.state.get=function(){return this._vm._data.$$state},m.state.set=function(t){0},p.prototype.commit=function(t,e,n){var i=this,r=E(t,e,n),o=r.type,s=r.payload,a=(r.options,{type:o,payload:s}),c=this._mutations[o];c&&(this._withCommit(function(){c.forEach(function(t){t(s)})}),this._subscribers.forEach(function(t){return t(a,i.state)}))},p.prototype.dispatch=function(t,e){var n=this,i=E(t,e),r=i.type,o=i.payload,s={type:r,payload:o},a=this._actions[r];if(a){try{this._actionSubscribers.filter(function(t){return t.before}).forEach(function(t){return t.before(s,n.state)})}catch(l){0}var c=a.length>1?Promise.all(a.map(function(t){return t(o)})):a[0](o);return c.then(function(t){try{n._actionSubscribers.filter(function(t){return t.after}).forEach(function(t){return t.after(s,n.state)})}catch(l){0}return t})}},p.prototype.subscribe=function(t){return v(t,this._subscribers)},p.prototype.subscribeAction=function(t){var e="function"===typeof t?{before:t}:t;return v(e,this._actionSubscribers)},p.prototype.watch=function(t,e,n){var i=this;return this._watcherVM.$watch(function(){return t(i.state,i.getters)},e,n)},p.prototype.replaceState=function(t){var e=this;this._withCommit(function(){e._vm._data.$$state=t})},p.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"===typeof t&&(t=[t]),this._modules.register(t,e),b(this,this.state,t,this._modules.get(t),n.preserveState),_(this,this.state)},p.prototype.unregisterModule=function(t){var e=this;"string"===typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var n=A(e.state,t.slice(0,-1));f.delete(n,t[t.length-1])}),g(this)},p.prototype.hotUpdate=function(t){this._modules.update(t),g(this,!0)},p.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(p.prototype,m);var T=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var i=j(this.$store,"mapState",t);if(!i)return;e=i.context.state,n=i.context.getters}return"function"===typeof r?r.call(this,e,n):e[r]},n[i].vuex=!0}),n}),$=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var i=this.$store.commit;if(t){var o=j(this.$store,"mapMutations",t);if(!o)return;i=o.context.commit}return"function"===typeof r?r.apply(this,[i].concat(e)):i.apply(this.$store,[r].concat(e))}}),n}),O=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;r=t+r,n[i]=function(){if(!t||j(this.$store,"mapGetters",t))return this.$store.getters[r]},n[i].vuex=!0}),n}),D=I(function(t,e){var n={};return M(e).forEach(function(e){var i=e.key,r=e.val;n[i]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var i=this.$store.dispatch;if(t){var o=j(this.$store,"mapActions",t);if(!o)return;i=o.context.dispatch}return"function"===typeof r?r.apply(this,[i].concat(e)):i.apply(this.$store,[r].concat(e))}}),n}),L=function(t){return{mapState:T.bind(null,t),mapGetters:O.bind(null,t),mapMutations:$.bind(null,t),mapActions:D.bind(null,t)}};function M(t){return Array.isArray(t)?t.map(function(t){return{key:t,val:t}}):Object.keys(t).map(function(e){return{key:e,val:t[e]}})}function I(t){return function(e,n){return"string"!==typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function j(t,e,n){var i=t._modulesNamespaceMap[n];return i}var B={Store:p,install:q,version:"3.1.0",mapState:T,mapMutations:$,mapGetters:O,mapActions:D,createNamespacedHelpers:L};e["a"]=B},"2fdb":function(t,e,n){"use strict";var i=n("5ca1"),r=n("d2c8"),o="includes";i(i.P+i.F*n("5147")(o),"String",{includes:function(t){return!!~r(this,t,o).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},"30c0":function(t,e,n){"use strict";function i(t,e,n){var i,r=e,o={ok:!1,pos:e,value:""};i=t.charCodeAt(e);while(e=48&&i<=57||37===i)i=t.charCodeAt(++e);return o.ok=!0,o.pos=e,o.value=t.slice(r,e),o}t.exports=function(t,e,n){var r,o={ok:!1,pos:0,width:"",height:""};if(e>=n)return o;if(r=t.charCodeAt(e),61!==r)return o;if(e++,r=t.charCodeAt(e),120!==r&&(r<48||r>57))return o;var s=i(t,e,n);if(e=s.pos,r=t.charCodeAt(e),120!==r)return o;e++;var a=i(t,e,n);return e=a.pos,o.width=s.value,o.height=a.value,o.pos=e,o.ok=!0,o}},"31f4":function(t,e){t.exports=function(t,e,n){var i=void 0===n;switch(e.length){case 0:return i?t():t.call(n);case 1:return i?t(e[0]):t.call(n,e[0]);case 2:return i?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return i?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return i?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},"32e9":function(t,e,n){var i=n("86cc"),r=n("4630");t.exports=n("9e1e")?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},"33a4":function(t,e,n){var i=n("84f2"),r=n("2b4c")("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(i.Array===t||o[r]===t)}},"33d5":function(t,e){},3408:function(t,e,n){"use strict";t.exports=function(t){var e;t.inlineMode?(e=new t.Token("inline","",0),e.content=t.src,e.map=[0,1],e.children=[],t.tokens.push(e)):t.md.block.parse(t.src,t.md,t.env,t.tokens)}},"362d":function(t,e,n){"use strict";var i=n("fa38"),r=n("aa43"),o=n("00bd"),s=n("48cc"),a=n("38c8");t.exports=function(t,e){var n={defs:i,shortcuts:r,enabled:[]},c=a(t.utils.assign({},n,e||{}));t.renderer.rules.emoji=o,t.core.ruler.push("emoji",s(t,c.defs,c.shortcuts,c.scanRE,c.replaceRE))}},"377c":function(t,e,n){"use strict";t.exports=function(t,e,n,i){n=n||0;var r=i?"BE":"LE",o=t["readUInt"+e+r];return o.call(t,n)}},3786:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("dde5");e["a"]=i["a"].extend({name:"QRadio",props:{value:{required:!0},val:{required:!0},label:String,leftLabel:Boolean,color:String,keepColor:Boolean,dark:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return this.value===this.val},classes:function(){return{disabled:this.disable,"q-radio--dark":this.dark,"q-radio--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-radio__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0}},methods:{set:function(t){void 0!==t&&Object(r["h"])(t),!0!==this.disable&&!0!==this.isTrue&&this.$emit("input",this.val)},__keyDown:function(t){13!==t.keyCode&&32!==t.keyCode||this.set(t)}},render:function(t){return t("div",{staticClass:"q-radio cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.set,keydown:this.__keyDown}},[t("div",{staticClass:"q-radio__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-radio__native q-ma-none q-pa-none invisible",attrs:{type:"checkbox"},on:{change:this.set}}):null,t("div",{staticClass:"q-radio__bg absolute"},[t("div",{staticClass:"q-radio__outer-circle absolute-full"}),t("div",{staticClass:"q-radio__inner-circle absolute-full"})])]),void 0!==this.label||void 0!==this.$scopedSlots.default?t("div",{staticClass:"q-radio__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(o["a"])(this,"default"))):null])}})},3846:function(t,e,n){n("9e1e")&&"g"!=/./g.flags&&n("86cc").f(RegExp.prototype,"flags",{configurable:!0,get:n("0bfb")})},"386b":function(t,e,n){var i=n("5ca1"),r=n("79e5"),o=n("be13"),s=/"/g,a=function(t,e,n,i){var r=String(o(t)),a="<"+e;return""!==n&&(a+=" "+n+'="'+String(i).replace(s,""")+'"'),a+">"+r+""};t.exports=function(t,e){var n={};n[t]=e(a),i(i.P+i.F*r(function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}),"String",n)}},"38c8":function(t,e,n){"use strict";function i(t){return t.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}t.exports=function(t){var e,n=t.defs;t.enabled.length&&(n=Object.keys(n).reduce(function(e,i){return t.enabled.indexOf(i)>=0&&(e[i]=n[i]),e},{})),e=Object.keys(t.shortcuts).reduce(function(e,i){return n[i]?Array.isArray(t.shortcuts[i])?(t.shortcuts[i].forEach(function(t){e[t]=i}),e):(e[t.shortcuts[i]]=i,e):e},{});var r=Object.keys(n).map(function(t){return":"+t+":"}).concat(Object.keys(e)).sort().reverse().map(function(t){return i(t)}).join("|"),o=RegExp(r),s=RegExp(r,"g");return{defs:n,shortcuts:e,scanRE:o,replaceRE:s}}},"38fd":function(t,e,n){var i=n("69a8"),r=n("4bf8"),o=n("613b")("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},"3b2b":function(t,e,n){var i=n("7726"),r=n("5dbc"),o=n("86cc").f,s=n("9093").f,a=n("aae3"),c=n("0bfb"),l=i.RegExp,u=l,h=l.prototype,d=/a/g,f=/a/g,p=new l(d)!==d;if(n("9e1e")&&(!p||n("79e5")(function(){return f[n("2b4c")("match")]=!1,l(d)!=d||l(f)==f||"/a/i"!=l(d,"i")}))){l=function(t,e){var n=this instanceof l,i=a(t),o=void 0===e;return!n&&i&&t.constructor===l&&o?t:r(p?new u(i&&!o?t.source:t,e):u((i=t instanceof l)?t.source:t,i&&o?c.call(t):e),n?this:h,l)};for(var m=function(t){t in l||o(l,t,{configurable:!0,get:function(){return u[t]},set:function(e){u[t]=e}})},v=s(u),g=0;v.length>g;)m(v[g++]);h.constructor=l,l.prototype=h,n("2aba")(i,"RegExp",l)}n("7a56")("RegExp")},"3c93":function(t,e,n){var i=n("adc8");function r(t){for(var e=1;e=0&&32===t.pending.charCodeAt(n)?n>=1&&32===t.pending.charCodeAt(n-1)?(t.pending=t.pending.replace(/ +$/,""),t.push("hardbreak","br",0)):(t.pending=t.pending.slice(0,-1),t.push("softbreak","br",0)):t.push("softbreak","br",0)),o++;while(o0&&(clearTimeout(this.bufferTimer),this.bufferTimer=void 0,this.buffer.length=0),this.bufferRoute=this.$route,void 0!==t&&(!0===t.remove?this.buffer=this.buffer.filter(function(e){return e.name!==t.name}):this.buffer.push(t)),void 0===this.bufferTimer&&(this.bufferTimer=setTimeout(function(){for(var t=[],n=0;ni:this.$refs.content.scrollWidth>n;this.scrollable!==r&&(this.scrollable=r),!0===r&&this.$nextTick(function(){return e.__updateArrows()});var o=(!0===this.vertical?i:n)0&&(this.$refs.content[!0===this.vertical?"scrollTop":"scrollLeft"]+=m,this.__updateArrows())}},__updateArrows:function(){var t=this.$refs.content,e=t.getBoundingClientRect(),n=!0===this.vertical?t.scrollTop:t.scrollLeft;this.leftArrow=n>0,this.rightArrow=!0===this.vertical?n+e.height+5=t)&&(r=!0,n=t),e[!0===this.vertical?"scrollTop":"scrollLeft"]=n,this.__updateArrows(),r}},created:function(){this.buffer=[]},mounted:function(){if(!0===this.topIndicator){var t=Object({NODE_ENV:"production",CLIENT:!0,SERVER:!1,DEV:!1,PROD:!0,MODE:"spa",VUE_ROUTER_MODE:"hash",VUE_ROUTER_BASE:"",APP_URL:"undefined"});!0!==t.PROD&&console.info("\n\n[Quasar] QTabs info: please rename top-indicator to switch-indicator prop")}},beforeDestroy:function(){clearTimeout(this.bufferTimer),clearTimeout(this.animateTimer)},render:function(t){return t("div",{staticClass:"q-tabs row no-wrap items-center",class:this.classes,on:r()({input:c["g"]},this.$listeners),attrs:{role:"tablist"}},[t(a["a"],{on:{resize:this.__updateContainer}}),t(s["a"],{staticClass:"q-tabs__arrow q-tabs__arrow--left q-tab__icon",class:!0===this.leftArrow?"":"q-tabs__arrow--faded",props:{name:this.leftIcon||(!0===this.vertical?this.$q.iconSet.tabs.up:this.$q.iconSet.tabs.left)},nativeOn:{mousedown:this.__scrollToStart,touchstart:this.__scrollToStart,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll}}),t("div",{ref:"content",staticClass:"q-tabs__content row no-wrap items-center",class:this.alignClass},Object(l["a"])(this,"default")),t(s["a"],{staticClass:"q-tabs__arrow q-tabs__arrow--right q-tab__icon",class:!0===this.rightArrow?"":"q-tabs__arrow--faded",props:{name:this.rightIcon||(!0===this.vertical?this.$q.iconSet.tabs.down:this.$q.iconSet.tabs.right)},nativeOn:{mousedown:this.__scrollToEnd,touchstart:this.__scrollToEnd,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll}})])}})},"43e0":function(t,e,n){"use strict";t.exports=function(t){var e="";return e+=t.protocol||"",e+=t.slashes?"//":"",e+=t.auth?t.auth+"@":"",t.hostname&&-1!==t.hostname.indexOf(":")?e+="["+t.hostname+"]":e+=t.hostname||"",e+=t.port?":"+t.port:"",e+=t.pathname||"",e+=t.search||"",e+=t.hash||"",e}},"44a8":function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,o,s,a,c=e+1,l=t.md.block.ruler.getRules("paragraph"),u=t.lineMax;for(a=t.parentType,t.parentType="paragraph";c3)&&!(t.sCount[c]<0)){for(i=!1,r=0,o=l.length;r0?i:n)(t)}},4630:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"469d":function(t,e,n){(function(t){function n(t,e){for(var n=0,i=t.length-1;i>=0;i--){var r=t[i];"."===r?t.splice(i,1):".."===r?(t.splice(i,1),n++):n&&(t.splice(i,1),n--)}if(e)for(;n--;n)t.unshift("..");return t}var i=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,r=function(t){return i.exec(t).slice(1)};function o(t,e){if(t.filter)return t.filter(e);for(var n=[],i=0;i=-1&&!i;r--){var s=r>=0?arguments[r]:t.cwd();if("string"!==typeof s)throw new TypeError("Arguments to path.resolve must be strings");s&&(e=s+"/"+e,i="/"===s.charAt(0))}return e=n(o(e.split("/"),function(t){return!!t}),!i).join("/"),(i?"/":"")+e||"."},e.normalize=function(t){var i=e.isAbsolute(t),r="/"===s(t,-1);return t=n(o(t.split("/"),function(t){return!!t}),!i).join("/"),t||i||(t="."),t&&r&&(t+="/"),(i?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(o(t,function(t,e){if("string"!==typeof t)throw new TypeError("Arguments to path.join must be strings");return t}).join("/"))},e.relative=function(t,n){function i(t){for(var e=0;e=0;n--)if(""!==t[n])break;return e>n?[]:t.slice(e,n-e+1)}t=e.resolve(t).substr(1),n=e.resolve(n).substr(1);for(var r=i(t.split("/")),o=i(n.split("/")),s=Math.min(r.length,o.length),a=s,c=0;c0&&!a.test(u[r-1]))return;if(r+i.lengthc&&(s=new o("text","",0),s.content=t.slice(c,r),l.push(s)),s=new o("emoji","",0),s.markup=h,s.content=e[h],l.push(s),c=r+i.length}),c=0;e--)a=s[e],"link_open"!==a.type&&"link_close"!==a.type||"auto"===a.info&&(u-=a.nesting),"text"===a.type&&0===u&&i.test(a.content)&&(l[n].children=s=o(s,e,c(a.content,a.level,t.Token)))}}},4917:function(t,e,n){"use strict";var i=n("cb7c"),r=n("9def"),o=n("0390"),s=n("5f1b");n("214f")("match",1,function(t,e,n,a){return[function(n){var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},function(t){var e=a(n,t,this);if(e.done)return e.value;var c=i(t),l=String(this);if(!c.global)return s(c,l);var u=c.unicode;c.lastIndex=0;var h,d=[],f=0;while(null!==(h=s(c,l))){var p=String(h[0]);d[f]=p,""===p&&(c.lastIndex=o(l,r(c.lastIndex),u)),f++}return 0===f?null:d}]})},"497d":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QList",props:{bordered:Boolean,dense:Boolean,separator:Boolean,dark:Boolean,padding:Boolean},computed:{classes:function(){return{"q-list--bordered":this.bordered,"q-list--dense":this.dense,"q-list--separator":this.separator,"q-list--dark":this.dark,"q-list--padding":this.padding}}},render:function(t){return t("div",{staticClass:"q-list",class:this.classes,on:this.$listeners},Object(r["a"])(this,"default"))}})},4983:function(t,e,n){"use strict";n("f751"),n("c5f6");var i=n("2b0e"),r=n("7937"),o=n("d882"),s=n("0831"),a=n("dde5"),c=n("b6d5"),l=n("edca"),u=n("75c3");e["a"]=i["a"].extend({name:"QScrollArea",directives:{TouchPan:u["a"]},props:{thumbStyle:{type:Object,default:function(){return{}}},contentStyle:{type:Object,default:function(){return{}}},contentActiveStyle:{type:Object,default:function(){return{}}},delay:{type:[String,Number],default:1e3},horizontal:Boolean},data:function(){return{active:!1,hover:!1,containerWidth:0,containerHeight:0,scrollPosition:0,scrollSize:0}},computed:{thumbHidden:function(){return this.scrollSize<=this.containerSize||!this.active&&!this.hover},thumbSize:function(){return Math.round(Object(r["a"])(this.containerSize*this.containerSize/this.scrollSize,50,this.containerSize))},style:function(){var t=this.scrollPercentage*(this.containerSize-this.thumbSize);return Object.assign({},this.thumbStyle,!0===this.horizontal?{left:"".concat(t,"px"),width:"".concat(this.thumbSize,"px")}:{top:"".concat(t,"px"),height:"".concat(this.thumbSize,"px")})},mainStyle:function(){return!0===this.thumbHidden?this.contentStyle:this.contentActiveStyle},scrollPercentage:function(){var t=Object(r["a"])(this.scrollPosition/(this.scrollSize-this.containerSize),0,1);return Math.round(1e4*t)/1e4},direction:function(){return this.horizontal?"right":"down"},containerSize:function(){return!0===this.horizontal?this.containerWidth:this.containerHeight},dirProps:function(){return!0===this.horizontal?{el:"scrollLeft",wheel:"x"}:{el:"scrollTop",wheel:"y"}},thumbClass:function(){return"q-scrollarea__thumb--".concat(!0===this.horizontal?"h absolute-bottom":"v absolute-right")+(!0===this.thumbHidden?" q-scrollarea__thumb--invisible":"")}},methods:{setScrollPosition:function(t,e){!0===this.horizontal?Object(s["g"])(this.$refs.target,t,e):Object(s["h"])(this.$refs.target,t,e)},__updateContainer:function(t){var e=t.height,n=t.width;this.containerWidth!==n&&(this.containerWidth=n,this.__setActive(!0,!0)),this.containerHeight!==e&&(this.containerHeight=e,this.__setActive(!0,!0))},__updateScroll:function(t){var e=t.position;this.scrollPosition!==e&&(this.scrollPosition=e,this.__setActive(!0,!0))},__updateScrollSize:function(t){var e=t.height,n=t.width;this.horizontal?this.scrollSize!==n&&(this.scrollSize=n,this.__setActive(!0,!0)):this.scrollSize!==e&&(this.scrollSize=e,this.__setActive(!0,!0))},__panThumb:function(t){t.isFirst&&(this.refPos=this.scrollPosition,this.__setActive(!0,!0)),t.isFinal&&this.__setActive(!1);var e=(this.scrollSize-this.containerSize)/(this.containerSize-this.thumbSize),n=this.horizontal?t.distance.x:t.distance.y,i=this.refPos+(t.direction===this.direction?1:-1)*n*e;this.__setScroll(i)},__panContainer:function(t){t.isFirst&&(this.refPos=this.scrollPosition,this.__setActive(!0,!0)),t.isFinal&&this.__setActive(!1);var e=this.horizontal?t.distance.x:t.distance.y,n=this.refPos+(t.direction===this.direction?-1:1)*e;this.__setScroll(n),n>0&&n+this.containerSize0&&e[this.dirProps.el]+this.containerSizeb;b++)if(v=e?_(s(p=t[b])[0],p[1]):_(t[b]),v===l||v===u)return v}else for(m=g.call(t);!(p=m.next()).done;)if(v=r(m,_,p.value,e),v===l||v===u)return v};e.BREAK=l,e.RETURN=u},"4a94":function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,o,s,a,c=t.pos,l=t.src.charCodeAt(c);if(96!==l)return!1;n=c,c++,i=t.posMax;while(c=s)return-1;if(n=t.src.charCodeAt(o++),n<48||n>57)return-1;for(;;){if(o>=s)return-1;if(n=t.src.charCodeAt(o++),!(n>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-r>=10)return-1}return o=4)return!1;if(i&&"paragraph"===t.parentType&&t.tShift[e]>=t.blkIndent&&(I=!0),(T=o(t,e))>=0){if(f=!0,O=t.bMarks[e]+t.tShift[e],b=Number(t.src.substr(O,T-O-1)),I&&1!==b)return!1}else{if(!((T=r(t,e))>=0))return!1;f=!1}if(I&&t.skipSpaces(T)>=t.eMarks[e])return!1;if(_=t.src.charCodeAt(T-1),i)return!0;g=t.tokens.length,f?(M=t.push("ordered_list_open","ol",1),1!==b&&(M.attrs=[["start",b]])):M=t.push("bullet_list_open","ul",1),M.map=v=[e,0],M.markup=String.fromCharCode(_),w=e,$=!1,L=t.md.block.ruler.getRules("list"),S=t.parentType,t.parentType="list";while(w=y?1:k-d,h>4&&(h=1),u=d+h,M=t.push("list_item_open","li",1),M.markup=String.fromCharCode(_),M.map=p=[e,0],x=t.blkIndent,E=t.tight,A=t.tShift[e],C=t.sCount[e],t.blkIndent=u,t.tight=!0,t.tShift[e]=c-t.bMarks[e],t.sCount[e]=k,c>=y&&t.isEmpty(e+1)?t.line=Math.min(t.line+2,n):t.md.block.tokenize(t,e,n,!0),t.tight&&!$||(j=!1),$=t.line-e>1&&t.isEmpty(t.line-1),t.blkIndent=x,t.tShift[e]=A,t.sCount[e]=C,t.tight=E,M=t.push("list_item_close","li",-1),M.markup=String.fromCharCode(_),w=e=t.line,p[1]=w,c=t.bMarks[e],w>=n)break;if(t.sCount[w]=o)break}else t.pending+=t.src[t.pos++]}t.pending&&t.pushPending()},s.prototype.parse=function(t,e,n,i){var r,o,s,a=new this.State(t,e,n,i);for(this.tokenize(a),o=this.ruler2.getRules(""),s=o.length,r=0;rthis.containerHeight?Object(l["e"])():0;this.scrollbarWidth!==t&&(this.scrollbarWidth=t)}}}})},"4dd6":function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},"4e73":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("8449"),n("2b0e")),s=n("c474"),a=n("7ee0"),c=n("9e62"),l=n("7562"),u=n("d882"),h=n("0967"),d=!0!==u["d"].hasPassive||{passive:!1,capture:!0},f={name:"click-outside",bind:function(t,e){var n=e.value,i=e.arg,r={trigger:n,handler:function(e){var n=e&&e.target;if(n&&n!==document.body){if(t.contains(n))return;if(void 0!==i)for(var o=0;o^`|~",r=t.utils.lib.ucmicro.P.source,o=t.utils.lib.ucmicro.Z.source;function s(t,e,n,i){var r,o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(l+2>=u)return!1;if(42!==t.src.charCodeAt(l++))return!1;if(91!==t.src.charCodeAt(l++))return!1;for(a=l;l=0;s--)if(_=l[s],"text"===_.type&&(f=0,h=_.content,p.lastIndex=0,d=[],g.test(h))){while(m=p.exec(h))(m.index>0||m[1].length>0)&&(u=new t.Token("text","",0),u.content=h.slice(f,m.index+m[1].length),d.push(u)),u=new t.Token("abbr_open","abbr",1),u.attrs=[["title",t.env.abbreviations[":"+m[2]]]],d.push(u),u=new t.Token("text","",0),u.content=m[2],d.push(u),u=new t.Token("abbr_close","abbr",-1),d.push(u),p.lastIndex-=m[3].length,f=p.lastIndex;d.length&&(f1&&o.call(s[0],n,function(){for(u=1;u'+'').concat(n,"")+""}return""}},"52a7":function(t,e){e.f={}.propertyIsEnumerable},"54b4":function(t,e,n){"use strict";n("f751");var i=n("3c93"),r=n.n(i),o=(n("c5f6"),n("2b0e")),s=n("6ab5"),a=n("033f"),c=n("e208"),l=n("0016"),u=n("dde5"),h=o["a"].extend({name:"QSlideTransition",props:{appear:Boolean,duration:{type:Number,default:300}},methods:{__begin:function(t,e,n){t.style.overflowY="hidden",void 0!==e&&(t.style.height="".concat(e,"px")),t.style.transition="height ".concat(this.duration,"ms cubic-bezier(.25, .8, .50, 1)"),this.animating=!0,this.done=n},__end:function(t,e){t.style.overflowY=null,t.style.height=null,t.style.transition=null,this.__cleanup(),e!==this.lastEvent&&this.$emit(e)},__cleanup:function(){this.done&&this.done(),this.done=null,this.animating=!1,clearTimeout(this.timer),this.el.removeEventListener("transitionend",this.animListener),this.animListener=null}},beforeDestroy:function(){this.animating&&this.__cleanup()},render:function(t){var e=this;return t("transition",{props:{css:!1,appear:this.appear},on:{enter:function(t,n){var i=0;e.el=t,!0===e.animating?(e.__cleanup(),i=t.offsetHeight===t.scrollHeight?0:void 0):e.lastEvent="hide",e.__begin(t,i,n),e.timer=setTimeout(function(){t.style.height="".concat(t.scrollHeight,"px"),e.animListener=function(){e.__end(t,"show")},t.addEventListener("transitionend",e.animListener)},100)},leave:function(t,n){var i;e.el=t,!0===e.animating?e.__cleanup():(e.lastEvent="show",i=t.scrollHeight),e.__begin(t,i,n),e.timer=setTimeout(function(){t.style.height=0,e.animListener=function(){e.__end(t,"hide")},t.addEventListener("transitionend",e.animListener)},100)}}},Object(u["a"])(this,"default"))}}),d=n("eb85"),f=n("8716"),p=n("7ee0"),m=n("d882"),v="q:expansion-item:close";e["a"]=o["a"].extend({name:"QExpansionItem",mixins:[f["a"],p["a"]],props:{icon:String,label:String,labelLines:[Number,String],caption:String,captionLines:[Number,String],dark:Boolean,dense:Boolean,expandIcon:String,expandIconClass:String,duration:Number,headerInsetLevel:Number,contentInsetLevel:Number,expandSeparator:Boolean,defaultOpened:Boolean,expandIconToggle:Boolean,switchToggleSide:Boolean,denseToggle:Boolean,group:String,popup:Boolean,headerStyle:[Array,String,Object],headerClass:[Array,String,Object]},watch:{showing:function(t){t&&this.group&&this.$root.$emit(v,this)}},computed:{classes:function(){return"q-expansion-item--".concat(!0===this.showing?"expanded":"collapsed")+" q-expansion-item--".concat(!0===this.popup?"popup":"standard")},contentStyle:function(){if(void 0!==this.contentInsetLevel)return{paddingLeft:56*this.contentInsetLevel+"px"}},isClickable:function(){return!0===this.hasRouterLink||!0!==this.expandIconToggle},expansionIcon:function(){return this.expandIcon||(this.denseToggle?this.$q.iconSet.expansionItem.denseIcon:this.$q.iconSet.expansionItem.icon)},activeToggleIcon:function(){return!0!==this.disable&&(!0===this.hasRouterLink||!0===this.expandIconToggle)}},methods:{__onHeaderClick:function(t){!0!==this.hasRouterLink&&this.toggle(t),this.$emit("click",t)},__toggleIconKeyboard:function(t){13===t.keyCode&&this.__toggleIcon(t,!0)},__toggleIcon:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),this.toggle(t),Object(m["h"])(t)},__eventHandler:function(t){this.group&&this!==t&&t.group===this.group&&this.hide()},__getToggleIcon:function(t){return t(a["a"],{staticClass:"cursor-pointer".concat(!0===this.denseToggle&&!0===this.switchToggleSide?" items-end":""),class:this.expandIconClass,props:{side:!0!==this.switchToggleSide,avatar:this.switchToggleSide},on:!0===this.activeToggleIcon?{click:this.__toggleIcon,keyup:this.__toggleIconKeyboard}:void 0},[t(l["a"],{staticClass:"q-expansion-item__toggle-icon q-focusable",class:{"rotate-180":this.showing,invisible:this.disable},props:{name:this.expansionIcon},attrs:!0===this.activeToggleIcon?{tabindex:0}:void 0},[t("div",{staticClass:"q-focus-helper q-focus-helper--round",attrs:{tabindex:-1},ref:"blurTarget"})])])},__getHeader:function(t){var e;void 0!==this.$scopedSlots.header?e=[].concat(this.$scopedSlots.header()):(e=[t(a["a"],[t(c["a"],{props:{lines:this.labelLines}},[this.label||""]),this.caption?t(c["a"],{props:{lines:this.captionLines,caption:!0}},[this.caption]):null])],this.icon&&e[!0===this.switchToggleSide?"push":"unshift"](t(a["a"],{props:{side:!0===this.switchToggleSide,avatar:!0!==this.switchToggleSide}},[t(l["a"],{props:{name:this.icon}})]))),e[!0===this.switchToggleSide?"unshift":"push"](this.__getToggleIcon(t));var n={ref:"item",style:this.headerStyle,class:this.headerClass,props:{dark:this.dark,disable:this.disable,dense:this.dense,insetLevel:this.headerInsetLevel}};if(!0===this.isClickable){var i=!0===this.hasRouterLink?"nativeOn":"on";n.props.clickable=!0,n[i]=r()({},this.$listeners,{click:this.__onHeaderClick}),!0===this.hasRouterLink&&Object.assign(n.props,this.routerLinkProps)}return t(s["a"],n,e)},__getContent:function(t){var e=[this.__getHeader(t),t(h,{props:{duration:this.duration}},[t("div",{staticClass:"q-expansion-item__content relative-position",style:this.contentStyle,directives:[{name:"show",value:this.showing}]},Object(u["a"])(this,"default"))])];return this.expandSeparator&&e.push(t(d["a"],{staticClass:"q-expansion-item__border q-expansion-item__border--top absolute-top",props:{dark:this.dark}}),t(d["a"],{staticClass:"q-expansion-item__border q-expansion-item__border--bottom absolute-bottom",props:{dark:this.dark}})),e}},render:function(t){return t("div",{staticClass:"q-expansion-item q-item-type",class:this.classes},[t("div",{staticClass:"q-expansion-item__container relative-position"},this.__getContent(t))])},created:function(){this.$root.$on(v,this.__eventHandler),!0===this.value?this.showing=!0:!0===this.defaultOpened&&(this.$emit("input",!0),this.showing=!0)},beforeDestroy:function(){this.$root.$off(v,this.__eventHandler)}})},"54e1":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QBanner",props:{inlineActions:Boolean,dense:Boolean,rounded:Boolean},render:function(t){var e=Object(r["a"])(this,"action");return t("div",{staticClass:"q-banner row items-center",class:{"q-banner--top-padding":void 0!==e&&!this.inlineActions,"q-banner--dense":this.dense,"rounded-borders":this.rounded},on:this.$listeners},[t("div",{staticClass:"q-banner__avatar col-auto row items-center"},Object(r["a"])(this,"avatar")),t("div",{staticClass:"q-banner__content col text-body2"},Object(r["a"])(this,"default")),void 0!==e?t("div",{staticClass:"q-banner__actions row items-center justify-end",class:this.inlineActions?"col-auto":"col-all"},e):null])}})},"54f6":function(t,e,n){"use strict";var i=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;function r(t,e){var n,r,o,s=t.posMax,a=t.pos;if(126!==t.src.charCodeAt(a))return!1;if(e)return!1;if(a+2>=s)return!1;t.pos=a+1;while(t.poso)s(n[o++]);t._c=[],t._n=!1,e&&!t._h&&I(t)})}},I=function(t){g.call(c,function(){var e,n,i,r=t._v,o=j(t);if(o&&(e=y(function(){T?S.emit("unhandledRejection",r,t):(n=c.onunhandledrejection)?n({promise:t,reason:r}):(i=c.console)&&i.error&&i.error("Unhandled promise rejection",r)}),t._h=T||j(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},j=function(t){return 1!==t._h&&0===(t._a||t._c).length},B=function(t){g.call(c,function(){var e;T?S.emit("rejectionHandled",t):(e=c.onrejectionhandled)&&e({promise:t,reason:t._v})})},F=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),M(e,!0))},P=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw C("Promise can't be resolved itself");(e=L(t))?_(function(){var i={_w:n,_d:!1};try{e.call(t,l(P,i,1),l(F,i,1))}catch(r){F.call(i,r)}}):(n._v=t,n._s=1,M(n,!1))}catch(i){F.call({_w:n,_d:!1},i)}}};D||(q=function(t){p(this,q,x,"_h"),f(t),i.call(this);try{t(l(P,this,1),l(F,this,1))}catch(e){F.call(this,e)}},i=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n("dcbc")(q.prototype,{then:function(t,e){var n=O(v(this,q));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?S.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&M(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new i;this.promise=t,this.resolve=l(P,t,1),this.reject=l(F,t,1)},b.f=O=function(t){return t===q||t===s?new o(t):r(t)}),h(h.G+h.W+h.F*!D,{Promise:q}),n("7f20")(q,x),n("7a56")(x),s=n("8378")[x],h(h.S+h.F*!D,x,{reject:function(t){var e=O(this),n=e.reject;return n(t),e.promise}}),h(h.S+h.F*(a||!D),x,{resolve:function(t){return k(a&&this===s?q:this,t)}}),h(h.S+h.F*!(D&&n("5cc5")(function(t){q.all(t)["catch"]($)})),x,{all:function(t){var e=this,n=O(e),i=n.resolve,r=n.reject,o=y(function(){var n=[],o=0,s=1;m(t,!1,function(t){var a=o++,c=!1;n.push(void 0),s++,e.resolve(t).then(function(t){c||(c=!0,n[a]=t,--s||i(n))},r)}),--s||i(n)});return o.e&&r(o.v),n.promise},race:function(t){var e=this,n=O(e),i=n.reject,r=y(function(){m(t,!1,function(t){e.resolve(t).then(n.resolve,i)})});return r.e&&i(r.v),n.promise}})},5537:function(t,e,n){var i=n("8378"),r=n("7726"),o="__core-js_shared__",s=r[o]||(r[o]={});(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n("2d00")?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},"55dd":function(t,e,n){"use strict";var i=n("5ca1"),r=n("d8e8"),o=n("4bf8"),s=n("79e5"),a=[].sort,c=[1,2,3];i(i.P+i.F*(s(function(){c.sort(void 0)})||!s(function(){c.sort(null)})||!n("2f21")(a)),"Array",{sort:function(t){return void 0===t?a.call(o(this)):a.call(o(this),r(t))}})},"565b":function(t,e,n){"use strict";e.parseLinkLabel=n("df56"),e.parseLinkDestination=n("e4ca"),e.parseLinkTitle=n("7d91")},5694:function(t,e,n){"use strict";n.d(e,"d",function(){return c}),n.d(e,"c",function(){return l}),n.d(e,"b",function(){return u}),n.d(e,"a",function(){return h});n("6762"),n("28a5");var i=n("adc8"),r=n.n(i),o=(n("c5f6"),n("7937")),s=n("d882"),a=n("75c3"),c=[34,37,40,33,39,38];function l(t,e,n){var i=Object(s["e"])(t),r=Object(o["a"])((i.left-e.left)/e.width,0,1);return n?1-r:r}function u(t,e,n,i,r){var s=e+t*(n-e);if(i>0){var a=(s-e)%i;s+=(Math.abs(a)>=i/2?(a<0?-1:1)*i:0)-a}return r>0&&(s=parseFloat(s.toFixed(r))),Object(o["a"])(s,e,n)}var h={directives:{TouchPan:a["a"]},props:{min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1,validator:function(t){return t>=0}},color:String,labelColor:String,dark:Boolean,dense:Boolean,label:Boolean,labelAlways:Boolean,markers:Boolean,snap:Boolean,disable:Boolean,readonly:Boolean,tabindex:[String,Number]},data:function(){return{active:!1,preventFocus:!1,focus:!1}},computed:{classes:function(){var t;return t={},r()(t,"text-".concat(this.color),this.color),r()(t,"q-slider--".concat(this.active?"":"in","active"),!0),r()(t,"disabled",this.disable),r()(t,"q-slider--editable",this.editable),r()(t,"q-slider--focus","both"===this.focus),r()(t,"q-slider--label",this.label||this.labelAlways),r()(t,"q-slider--label-always",this.labelAlways),r()(t,"q-slider--dark",this.dark),r()(t,"q-slider--dense",this.dense),t},editable:function(){return!this.disable&&!this.readonly},decimals:function(){return(String(this.step).trim("0").split(".")[1]||"").length},computedStep:function(){return 0===this.step?1:this.step},markerStyle:function(){return{backgroundSize:100*this.computedStep/(this.max-this.min)+"% 2px"}},computedTabindex:function(){return!0===this.editable?this.tabindex||0:-1},horizProp:function(){return!0===this.$q.lang.rtl?"right":"left"}},methods:{__pan:function(t){t.isFinal?(this.dragging&&(this.__updatePosition(t.evt),this.__updateValue(!0),this.dragging=!1),this.active=!1):t.isFirst?(this.dragging=this.__getDragging(t.evt),this.__updatePosition(t.evt),this.active=!0):(this.__updatePosition(t.evt),this.__updateValue())},__blur:function(){this.focus=!1},__activate:function(t){this.__updatePosition(t,this.__getDragging(t)),this.preventFocus=!0,this.active=!0,document.addEventListener("mouseup",this.__deactivate,!0)},__deactivate:function(){this.preventFocus=!1,this.active=!1,this.__updateValue(!0),this.__blur(),document.removeEventListener("mouseup",this.__deactivate,!0)},__mobileClick:function(t){this.__updatePosition(t,this.__getDragging(t)),this.__updateValue(!0)},__keyup:function(t){c.includes(t.keyCode)&&this.__updateValue(!0)}},beforeDestroy:function(){document.removeEventListener("mouseup",this.__deactivate,!0)}}},5706:function(t,e,n){"use strict";var i="[a-zA-Z_:][a-zA-Z0-9:._-]*",r="[^\"'=<>`\\x00-\\x20]+",o="'[^']*'",s='"[^"]*"',a="(?:"+r+"|"+o+"|"+s+")",c="(?:\\s+"+i+"(?:\\s*=\\s*"+a+")?)",l="<[A-Za-z][A-Za-z0-9\\-]*"+c+"*\\s*\\/?>",u="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",h="\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e",d="<[?].*?[?]>",f="]*>",p="",m=new RegExp("^(?:"+l+"|"+u+"|"+h+"|"+d+"|"+f+"|"+p+")"),v=new RegExp("^(?:"+l+"|"+u+")");t.exports.HTML_TAG_RE=m,t.exports.HTML_OPEN_CLOSE_TAG_RE=v},"573e":function(t,e,n){},"582c":function(t,e,n){"use strict";var i=n("0967");e["a"]={__history:[],add:function(){},remove:function(){},install:function(t,e){var n=this;if(!i["c"]&&t.platform.is.cordova){this.add=function(t){n.__history.push(t)},this.remove=function(t){var e=n.__history.indexOf(t);e>=0&&n.__history.splice(e,1)};var r=void 0===e.cordova||!1!==e.cordova.backButtonExit;document.addEventListener("deviceready",function(){document.addEventListener("backbutton",function(){n.__history.length?n.__history.pop().handler():r&&"#/"===window.location.hash?navigator.app.exitApp():window.history.back()},!1)})}}}},"58a8":function(t,e,n){"use strict";n("6762"),n("2fdb"),n("c5f6");var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QBadge",props:{color:String,textColor:String,floating:Boolean,transparent:Boolean,multiLine:Boolean,label:[Number,String],align:{type:String,validator:function(t){return["top","middle","bottom"].includes(t)}}},computed:{style:function(){if(void 0!==this.align)return{verticalAlign:this.align}},classes:function(){return"q-badge flex inline items-center no-wrap"+" q-badge--".concat(!0===this.multiLine?"multi":"single","-line")+(void 0!==this.color?" bg-".concat(this.color):"")+(void 0!==this.textColor?" text-".concat(this.textColor):"")+(!0===this.floating?" q-badge--floating":"")+(!0===this.transparent?" q-badge--transparent":"")}},render:function(t){return t("div",{style:this.style,class:this.classes,on:this.$listeners},void 0!==this.label?[this.label]:Object(r["a"])(this,"default"))}})},"5b54":function(t,e,n){"use strict";var i=n("bd68"),r=n("0068").has,o=n("0068").isValidEntityCode,s=n("0068").fromCodePoint,a=/^&#((?:x[a-f0-9]{1,8}|[0-9]{1,8}));/i,c=/^&([a-z][a-z0-9]{1,31});/i;t.exports=function(t,e){var n,l,u,h=t.pos,d=t.posMax;if(38!==t.src.charCodeAt(h))return!1;if(h+1=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},"5eda":function(t,e,n){var i=n("5ca1"),r=n("8378"),o=n("79e5");t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],s={};s[t]=e(n),i(i.S+i.F*o(function(){n(1)}),"Object",s)}},"5f1b":function(t,e,n){"use strict";var i=n("23c6"),r=RegExp.prototype.exec;t.exports=function(t,e){var n=t.exec;if("function"===typeof n){var o=n.call(t,e);if("object"!==typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==i(t))throw new TypeError("RegExp#exec called on incompatible receiver");return r.call(t,e)}},"5fbd":function(t,e,n){"use strict";var i=n("e1f3"),r=n("5706").HTML_OPEN_CLOSE_TAG_RE,o=[[/^<(script|pre|style)(?=(\s|>|$))/i,/<\/(script|pre|style)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(r.source+"\\s*$"),/^$/,!1]];t.exports=function(t,e,n,i){var r,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(!t.md.options.html)return!1;if(60!==t.src.charCodeAt(l))return!1;for(c=t.src.slice(l,u),r=0;r1?arguments[1]:void 0)}}),n("9c6c")("includes")},6821:function(t,e,n){var i=n("626a"),r=n("be13");t.exports=function(t){return i(r(t))}},"68bf":function(t,e,n){var i=n("5cf4"),r=n("b326"),o=n("aee1");function s(t,e){return i(t)||r(t,e)||o()}t.exports=s},"69a8":function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},"6a99":function(t,e,n){var i=n("d3f4");t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},"6ab5":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("c5f6"),n("2b0e")),c=n("8716"),l=n("dde5"),u=n("d882");e["a"]=a["a"].extend({name:"QItem",mixins:[c["a"]],props:{active:Boolean,dark:Boolean,clickable:Boolean,dense:Boolean,insetLevel:Number,tabindex:[String,Number],tag:{type:String,default:"div"},focused:Boolean,manualFocus:Boolean},computed:{isClickable:function(){return!0!==this.disable&&(!0===this.clickable||!0===this.hasRouterLink||"a"===this.tag||"label"===this.tag)},classes:function(){var t;return t={"q-item--clickable q-link cursor-pointer":this.isClickable,"q-focusable q-hoverable":!0===this.isClickable&&!1===this.manualFocus,"q-manual-focusable":!0===this.isClickable&&!0===this.manualFocus,"q-manual-focusable--focused":!0===this.isClickable&&!0===this.focused,"q-item--dense":this.dense,"q-item--dark":this.dark,"q-item--active":this.active},s()(t,this.activeClass,!0===this.active&&!0!==this.hasRouterLink&&void 0!==this.activeClass),s()(t,"disabled",this.disable),t},style:function(){if(void 0!==this.insetLevel)return{paddingLeft:16+56*this.insetLevel+"px"}}},methods:{__getContent:function(t){var e=[].concat(Object(l["a"])(this,"default"));return!0===this.isClickable&&e.unshift(t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"})),e},__onClick:function(t){!0===this.isClickable&&(!0!==t.qKeyEvent&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),this.$emit("click",t))},__onKeyup:function(t){if(13===t.keyCode&&!0===this.isClickable){Object(u["h"])(t),t.qKeyEvent=!0;var e=new MouseEvent("click",t);e.qKeyEvent=!0,this.$el.dispatchEvent(e)}this.$emit("keyup",t)}},render:function(t){var e={staticClass:"q-item q-item-type row no-wrap",class:this.classes,style:this.style},n=!0===this.hasRouterLink?"nativeOn":"on";return e[n]=r()({},this.$listeners,{click:this.__onClick,keyup:this.__onKeyup}),!0===this.isClickable&&(e.attrs={tabindex:this.tabindex||"0"}),!0===this.hasRouterLink?(e.tag="a",e.props=this.routerLinkProps,t("router-link",e,this.__getContent(t))):t(this.tag,e,this.__getContent(t))}})},"6ac5":function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QToolbarTitle",props:{shrink:Boolean},render:function(t){return t("div",{staticClass:"q-toolbar__title ellipsis",class:!0===this.shrink?"col-shrink":null,on:this.$listeners},Object(r["a"])(this,"default"))}})},"6b54":function(t,e,n){"use strict";n("3846");var i=n("cb7c"),r=n("0bfb"),o=n("9e1e"),s="toString",a=/./[s],c=function(t){n("2aba")(RegExp.prototype,s,t,!0)};n("79e5")(function(){return"/a/b"!=a.call({source:"a",flags:"b"})})?c(function(){var t=i(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?r.call(t):void 0)}):a.name!=s&&c(function(){return a.call(this)})},"6e00":function(t,e,n){"use strict";for(var i=n("0068").isSpace,r=[],o=0;o<256;o++)r.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(t){r[t.charCodeAt(0)]=1}),t.exports=function(t,e){var n,o=t.pos,s=t.posMax;if(92!==t.src.charCodeAt(o))return!1;if(o++,o=0)&&s(e,t,n,!0===e.qKeyEvent)},keyup:function(e){!0===n.enabled&&13===e.keyCode&&!0!==e.qKeyEvent&&s(e,t,n,!0)}};a(n,e),t.__qripple&&(t.__qripple_old=t.__qripple),t.__qripple=n,t.addEventListener("click",n.click),t.addEventListener("keyup",n.keyup)},update:function(t,e){void 0!==t.__qripple&&a(t.__qripple,e)},unbind:function(t){var e=t.__qripple_old||t.__qripple;void 0!==e&&(void 0!==e.abort&&e.abort(),t.removeEventListener("click",e.click),t.removeEventListener("keyup",e.keyup),delete t[t.__qripple_old?"__qripple_old":"__qripple"])}}},7333:function(t,e,n){"use strict";var i=n("0d58"),r=n("2621"),o=n("52a7"),s=n("4bf8"),a=n("626a"),c=Object.assign;t.exports=!c||n("79e5")(function(){var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach(function(t){e[t]=t}),7!=c({},t)[n]||Object.keys(c({},e)).join("")!=i})?function(t,e){var n=s(t),c=arguments.length,l=1,u=r.f,h=o.f;while(c>l){var d,f=a(arguments[l++]),p=u?i(f).concat(u(f)):i(f),m=p.length,v=0;while(m>v)h.call(f,d=p[v++])&&(n[d]=f[d])}return n}:c},7460:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("7f7f"),n("c5f6"),n("2b0e")),c=n("1732"),l=n("0016"),u=n("3d69"),h=n("d882"),d=n("dde5");e["a"]=a["a"].extend({name:"QTab",mixins:[u["a"]],inject:{tabs:{default:function(){console.error("QTab/QRouteTab components need to be child of QTabsBar")}},__activateTab:{}},props:{icon:String,label:[Number,String],alert:[Boolean,String],name:{type:[Number,String],default:function(){return Object(c["a"])()}},noCaps:Boolean,tabindex:[String,Number],disable:Boolean},computed:{isActive:function(){return this.tabs.current===this.name},classes:function(){var t;return t={},s()(t,"q-tab--".concat(this.isActive?"":"in","active"),!0),s()(t,"text-".concat(this.tabs.activeColor),this.isActive&&this.tabs.activeColor),s()(t,"bg-".concat(this.tabs.activeBgColor),this.isActive&&this.tabs.activeBgColor),s()(t,"q-tab--full",this.icon&&this.label&&!this.tabs.inlineLabel),s()(t,"q-tab--no-caps",!0===this.noCaps||!0===this.tabs.noCaps),s()(t,"q-focusable q-hoverable cursor-pointer",!this.disable),s()(t,"disabled",this.disable),t},computedTabIndex:function(){return!0===this.disable||!0===this.isActive?-1:this.tabindex||0}},methods:{activate:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),!0!==this.disable&&(void 0!==this.$listeners.click&&this.$emit("click",t),this.__activateTab(this.name))},__onKeyup:function(t){13===t.keyCode&&this.activate(t,!0)},__getContent:function(t){var e=this.tabs.narrowIndicator,n=[],i=t("div",{staticClass:"q-tab__indicator",class:this.tabs.indicatorClass});void 0!==this.icon&&n.push(t(l["a"],{staticClass:"q-tab__icon",props:{name:this.icon}})),void 0!==this.label&&n.push(t("div",{staticClass:"q-tab__label"},[this.label])),!1!==this.alert&&n.push(t("div",{staticClass:"q-tab__alert",class:!0!==this.alert?"text-".concat(this.alert):null})),e&&n.push(i);var r=[t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"}),t("div",{staticClass:"q-tab__content flex-center relative-position no-pointer-events non-selectable",class:!0===this.tabs.inlineLabel?"row no-wrap q-tab__content--inline":"column"},n.concat(Object(d["a"])(this,"default")))];return!e&&r.push(i),r},__render:function(t,e,n){var i=s()({staticClass:"q-tab relative-position self-stretch flex flex-center text-center",class:this.classes,attrs:{tabindex:this.computedTabIndex,role:"tab","aria-selected":this.isActive},directives:!1!==this.ripple&&!0===this.disable?null:[{name:"ripple",value:this.ripple}]},"div"===e?"on":"nativeOn",r()({input:h["g"]},this.$listeners,{click:this.activate,keyup:this.__onKeyup}));return void 0!==n&&(i.props=n),t(e,i,this.__getContent(t))}},render:function(t){return this.__render(t,"div")}})},"746a":function(t,e,n){"use strict";t.exports=function(t,e,n){function i(t){return t.trim().split(" ",2)[0]===e}function r(t,n,i,r,o){return 1===t[n].nesting&&t[n].attrPush(["class",e]),o.renderToken(t,n,i,r,o)}n=n||{};var o=3,s=n.marker||":",a=s.charCodeAt(0),c=s.length,l=n.validate||i,u=n.render||r;function h(t,n,i,r){var u,h,d,f,p,m,v,g,_=!1,b=t.bMarks[n]+t.tShift[n],y=t.eMarks[n];if(a!==t.src.charCodeAt(b))return!1;for(u=b+1;u<=y;u++)if(s[(u-b)%c]!==t.src[u])break;if(d=Math.floor((u-b)/c),d=i)break;if(b=t.bMarks[h]+t.tShift[h],y=t.eMarks[h],b=4)){for(u=b+1;u<=y;u++)if(s[(u-b)%c]!==t.src[u])break;if(!(Math.floor((u-b)/c)1?arguments[1]:void 0)}}),n("9c6c")(o)},7562:function(t,e,n){"use strict";e["a"]={props:{transitionShow:{type:String,default:"fade"},transitionHide:{type:String,default:"fade"}},data:function(){return{transitionState:this.showing}},watch:{showing:function(t){var e=this;this.transitionShow!==this.transitionHide&&this.$nextTick(function(){e.transitionState=t})}},computed:{transition:function(){return"q-transition--"+(!0===this.transitionState?this.transitionHide:this.transitionShow)}}}},"75c3":function(t,e,n){"use strict";var i=n("d882"),r=n("a8c6"),o=n("2248");function s(t){var e=!0!==t.horizontal&&!0!==t.vertical,n={all:!0===e||!0===t.horizontal&&!0===t.vertical};return!0!==t.horizontal&&!0!==e||(n.horizontal=!0),!0!==t.vertical&&!0!==e||(n.vertical=!0),n}function a(t,e,n){var r,o=Object(i["e"])(t),s=o.left-e.event.x,a=o.top-e.event.y,c=Math.abs(s),l=Math.abs(a);return r=e.direction.horizontal&&!e.direction.vertical?s<0?"left":"right":!e.direction.horizontal&&e.direction.vertical?a<0?"up":"down":c>=l?s<0?"left":"right":a<0?"up":"down",{evt:t,position:o,direction:r,isFirst:e.event.isFirst,isFinal:!0===n,isMouse:e.event.mouse,duration:(new Date).getTime()-e.event.time,distance:{x:c,y:l},offset:{x:s,y:a},delta:{x:o.left-e.event.lastX,y:o.top-e.event.lastY}}}function c(t,e){return!(!t.direction.horizontal||!t.direction.vertical)||(t.direction.horizontal&&!t.direction.vertical?Math.abs(e.delta.x)>0:!t.direction.horizontal&&t.direction.vertical?Math.abs(e.delta.y)>0:void 0)}e["a"]={name:"touch-pan",bind:function(t,e){var n=!0===e.modifiers.mouse,l=!0!==e.modifiers.mouseMightPrevent&&!0!==e.modifiers.mousePrevent,u=!0!==i["d"].hasPassive||{passive:l,capture:!0},h=!0!==e.modifiers.mightPrevent&&!0!==e.modifiers.prevent,d=i["d"][!0===h?"passive":"notPassive"];function f(t,r){n&&r?(e.modifiers.mouseStop&&Object(i["g"])(t),e.modifiers.mousePrevent&&Object(i["f"])(t)):(e.modifiers.stop&&Object(i["g"])(t),e.modifiers.prevent&&Object(i["f"])(t))}var p={handler:e.value,direction:s(e.modifiers),mouseStart:function(t){Object(i["c"])(t)&&(document.addEventListener("mousemove",p.move,u),document.addEventListener("mouseup",p.mouseEnd,u),p.start(t,!0))},mouseEnd:function(t){document.removeEventListener("mousemove",p.move,u),document.removeEventListener("mouseup",p.mouseEnd,u),p.end(t)},start:function(e,n){Object(r["a"])(p),!0!==n&&Object(r["b"])(t,e,p);var o=Object(i["e"])(e);p.event={x:o.left,y:o.top,time:(new Date).getTime(),mouse:!0===n,detected:!1,abort:!1,isFirst:!0,isFinal:!1,lastX:o.left,lastY:o.top}},move:function(t){if(void 0!==p.event&&!0!==p.event.abort)if(!0!==p.event.detected){var n=Object(i["e"])(t),r=Math.abs(n.left-p.event.x),s=Math.abs(n.top-p.event.y);r!==s&&(p.event.detected=!0,!1!==p.direction.all||!1!==p.event.mouse&&!0===e.modifiers.mouseAllDir||(p.event.abort=p.direction.vertical?r>s:r=0,o=r&&i.regeneratorRuntime;if(i.regeneratorRuntime=void 0,t.exports=n("f9d7"),r)i.regeneratorRuntime=o;else try{delete i.regeneratorRuntime}catch(s){i.regeneratorRuntime=void 0}},7696:function(t,e,n){"use strict";var i=n("4883"),r=[["table",n("80d3"),["paragraph","reference"]],["code",n("9c12e")],["fence",n("bf2b"),["paragraph","reference","blockquote","list"]],["blockquote",n("e80e"),["paragraph","reference","blockquote","list"]],["hr",n("fdfe"),["paragraph","reference","blockquote","list"]],["list",n("4b3e"),["paragraph","reference","blockquote"]],["reference",n("d670")],["heading",n("0758"),["paragraph","reference","blockquote"]],["lheading",n("199e")],["html_block",n("5fbd"),["paragraph","reference","blockquote"]],["paragraph",n("44a8")]];function o(){this.ruler=new i;for(var t=0;t=n)break;if(t.sCount[a]=l){t.line=n;break}for(r=0;r0&&void 0!==arguments[0]&&arguments[0],e=this.$route,n=this.$router.resolve(this.to,e,this.append),i=n.href,o=n.location,s=n.route,a=void 0!==s.redirectedFrom,c=!0===this.exact?h:d,l={name:this.name,selected:t,exact:this.exact,priorityMatched:s.matched.length,priorityHref:i.length};c(e,s)&&this.__activateRoute(r()({},l,{redirected:a})),!0===a&&c(e,r()({path:s.redirectedFrom},o))&&this.__activateRoute(l),this.isActive&&this.__activateRoute()}},mounted:function(){void 0!==this.$router&&this.__checkActivation()},beforeDestroy:function(){this.__activateRoute({remove:!0,name:this.name})},render:function(t){return this.__render(t,"router-link",this.routerLinkProps)}})},"790f":function(t,e,n){},7937:function(t,e,n){"use strict";n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r}),n.d(e,"c",function(){return o}),n.d(e,"d",function(){return s});function i(t){return t.charAt(0).toUpperCase()+t.slice(1)}function r(t,e,n){return n<=e?e:Math.min(n,Math.max(e,t))}function o(t,e,n){if(n<=e)return e;var i=n-e+1,r=e+(t-e)%i;return r1&&void 0!==arguments[1]?arguments[1]:2,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"0",i=""+t;return i.length>=e?i:new Array(e-i.length+1).join(n)+i}},"79e5":function(t,e){t.exports=function(t){try{return!!t()}catch(e){return!0}}},"7a56":function(t,e,n){"use strict";var i=n("7726"),r=n("86cc"),o=n("9e1e"),s=n("2b4c")("species");t.exports=function(t){var e=i[t];o&&e&&!e[s]&&r.f(e,s,{configurable:!0,get:function(){return this}})}},"7ba6":function(t,e,n){"use strict";var i=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;function r(t,e){var n,r,o,s=t.posMax,a=t.pos;if(94!==t.src.charCodeAt(a))return!1;if(e)return!1;if(a+2>=s)return!1;t.pos=a+1;while(t.post&&(this.model.min=t),this.model.max>t&&(this.model.max=t)}},computed:{ratioMin:function(){return!0===this.active?this.curMinRatio:this.modelMinRatio},ratioMax:function(){return!0===this.active?this.curMaxRatio:this.modelMaxRatio},modelMinRatio:function(){return(this.model.min-this.min)/(this.max-this.min)},modelMaxRatio:function(){return(this.model.max-this.min)/(this.max-this.min)},trackStyle:function(){var t;return t={},r()(t,this.horizProp,100*this.ratioMin+"%"),r()(t,"width",100*(this.ratioMax-this.ratioMin)+"%"),t},minThumbStyle:function(){var t;return t={},r()(t,this.horizProp,100*this.ratioMin+"%"),r()(t,"z-index","min"===this.__nextFocus?2:void 0),t},maxThumbStyle:function(){return r()({},this.horizProp,100*this.ratioMax+"%")},minThumbClass:function(){return!1===this.preventFocus&&"min"===this.focus?"q-slider--focus":null},maxThumbClass:function(){return!1===this.preventFocus&&"max"===this.focus?"q-slider--focus":null},events:function(){var t=this;if(!0===this.editable){if(!0===this.$q.platform.is.mobile)return{click:this.__mobileClick};var e={mousedown:this.__activate};return!0===this.dragOnlyRange&&Object.assign(e,{focus:function(){t.__focus("both")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}),e}},minEvents:function(){var t=this;if(this.editable&&!this.$q.platform.is.mobile&&!0!==this.dragOnlyRange)return{focus:function(){t.__focus("min")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}},maxEvents:function(){var t=this;if(this.editable&&!this.$q.platform.is.mobile&&!0!==this.dragOnlyRange)return{focus:function(){t.__focus("max")},blur:this.__blur,keydown:this.__keydown,keyup:this.__keyup}},minPinClass:function(){var t=this.leftLabelColor||this.labelColor;if(t)return"text-".concat(t)},maxPinClass:function(){var t=this.rightLabelColor||this.labelColor;if(t)return"text-".concat(t)},minLabel:function(){return void 0!==this.leftLabelValue?this.leftLabelValue:this.model.min},maxLabel:function(){return void 0!==this.rightLabelValue?this.rightLabelValue:this.model.max}},methods:{__updateValue:function(t){this.model.min===this.value.min&&this.model.max===this.value.max||(this.$emit("input",this.model),!0===t&&this.$emit("change",this.model))},__getDragging:function(t){var e,n=this.$el.getBoundingClientRect(),i=n.left,r=n.width,o=this.dragOnlyRange?0:this.$refs.minThumb.offsetWidth/(2*r),s=this.max-this.min,a={left:i,width:r,valueMin:this.model.min,valueMax:this.model.max,ratioMin:(this.value.min-this.min)/s,ratioMax:(this.value.max-this.min)/s},l=Object(c["c"])(t,a,this.$q.lang.rtl);return!0!==this.dragOnlyRange&&l1&&void 0!==arguments[1]?arguments[1]:this.dragging,i=Object(c["c"])(t,n,this.$q.lang.rtl),r=Object(c["b"])(i,this.min,this.max,this.step,this.decimals);switch(n.type){case h.MIN:i<=n.ratioMax?(e={minR:i,maxR:n.ratioMax,min:r,max:n.valueMax},this.__nextFocus="min"):(e={minR:n.ratioMax,maxR:i,min:n.valueMax,max:r},this.__nextFocus="max");break;case h.MAX:i>=n.ratioMin?(e={minR:n.ratioMin,maxR:i,min:n.valueMin,max:r},this.__nextFocus="max"):(e={minR:i,maxR:n.ratioMin,min:r,max:n.valueMin},this.__nextFocus="min");break;case h.RANGE:var o=i-n.offsetRatio,s=Object(u["a"])(n.ratioMin+o,0,1-n.rangeRatio),a=r-n.offsetModel,l=Object(u["a"])(n.valueMin+a,this.min,this.max-n.rangeValue);e={minR:s,maxR:s+n.rangeRatio,min:parseFloat(l.toFixed(this.decimals)),max:parseFloat((l+n.rangeValue).toFixed(this.decimals))};break}if(this.model={min:e.min,max:e.max},!0!==this.snap||0===this.step)this.curMinRatio=e.minR,this.curMaxRatio=e.maxR;else{var d=this.max-this.min;this.curMinRatio=(this.model.min-this.min)/d,this.curMaxRatio=(this.model.max-this.min)/d}},__focus:function(t){this.focus=t},__keydown:function(t){if([34,37,40,33,39,38].includes(t.keyCode)){Object(l["h"])(t);var e=([34,33].includes(t.keyCode)?10:1)*this.computedStep,n=[34,37,40].includes(t.keyCode)?-e:e;if(this.dragOnlyRange){var i=this.dragOnlyRange?this.model.max-this.model.min:0;this.model.min=Object(u["a"])(parseFloat((this.model.min+n).toFixed(this.decimals)),this.min,this.max-i),this.model.max=parseFloat((this.model.min+i).toFixed(this.decimals))}else{var r=this.focus;this.model[r]=Object(u["a"])(parseFloat((this.model[r]+n).toFixed(this.decimals)),"min"===r?this.min:this.model.min,"max"===r?this.max:this.model.max)}this.__updateValue()}},__getThumb:function(t,e){return t("div",{ref:e+"Thumb",staticClass:"q-slider__thumb-container absolute non-selectable",style:this[e+"ThumbStyle"],class:this[e+"ThumbClass"],on:this[e+"Events"],attrs:{tabindex:!0!==this.dragOnlyRange?this.computedTabindex:null}},[t("svg",{staticClass:"q-slider__thumb absolute",attrs:{width:"21",height:"21"}},[t("circle",{attrs:{cx:"10.5",cy:"10.5",r:"7.875"}})]),!0===this.label||!0===this.labelAlways?t("div",{staticClass:"q-slider__pin absolute flex flex-center",class:this[e+"PinClass"]},[t("div",{staticClass:"q-slider__pin-value-marker"},[t("div",{staticClass:"q-slider__pin-value-marker-bg"}),t("div",{staticClass:"q-slider__pin-value-marker-text"},[this[e+"Label"]])])]):null,t("div",{staticClass:"q-slider__focus-ring"})])}},render:function(t){return t("div",{staticClass:"q-slider",attrs:{role:"slider","aria-valuemin":this.min,"aria-valuemax":this.max,"data-step":this.step,"aria-disabled":this.disable,tabindex:this.dragOnlyRange&&!this.$q.platform.is.mobile?this.computedTabindex:null},class:this.classes,on:this.events,directives:this.editable?[{name:"touch-pan",value:this.__pan,modifiers:{horizontal:!0,prevent:!0,stop:!0,mouse:!0,mouseAllDir:!0,mouseStop:!0}}]:null},[t("div",{staticClass:"q-slider__track-container absolute overflow-hidden"},[t("div",{staticClass:"q-slider__track absolute-full",style:this.trackStyle}),!0===this.markers?t("div",{staticClass:"q-slider__track-markers absolute-full fit",style:this.markerStyle}):null]),this.__getThumb(t,"min"),this.__getThumb(t,"max")])}})},"7ca0":function(t,e){t.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},"7cbe":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("f751"),n("7f7f"),n("6762"),n("2fdb"),n("c5f6"),n("2b0e")),s=n("24e8"),a=n("4e73"),c=n("c474"),l=n("dde5");e["a"]=o["a"].extend({name:"QPopupProxy",mixins:[c["a"]],props:{breakpoint:{type:[String,Number],default:450}},data:function(){var t=parseInt(this.breakpoint,10);return{type:this.$q.screen.width"+o(t[e].content)+""},s.code_block=function(t,e,n,i,r){var s=t[e];return""+o(t[e].content)+"\n"},s.fence=function(t,e,n,i,s){var a,c,l,u,h=t[e],d=h.info?r(h.info).trim():"",f="";return d&&(f=d.split(/\s+/g)[0]),a=n.highlight&&n.highlight(h.content,f)||o(h.content),0===a.indexOf(""+a+"\n"):"
"+a+"
\n"},s.image=function(t,e,n,i,r){var o=t[e];return o.attrs[o.attrIndex("alt")][1]=r.renderInlineAsText(o.children,n,i),r.renderToken(t,e,n)},s.hardbreak=function(t,e,n){return n.xhtmlOut?"
\n":"
\n"},s.softbreak=function(t,e,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},s.text=function(t,e){return o(t[e].content)},s.html_block=function(t,e){return t[e].content},s.html_inline=function(t,e){return t[e].content},a.prototype.renderAttrs=function(t){var e,n,i;if(!t.attrs)return"";for(i="",e=0,n=t.attrs.length;e\n":">",r)},a.prototype.renderInline=function(t,e,n){for(var i,r="",o=this.rules,s=0,a=t.length;s=n)return c;if(o=t.charCodeAt(e),34!==o&&39!==o&&40!==o)return c;e++,40===o&&(o=41);while(en)return!1;if(h=e+1,t.sCount[h]=4)return!1;if(l=t.bMarks[h]+t.tShift[h],l>=t.eMarks[h])return!1;if(a=t.src.charCodeAt(l++),124!==a&&45!==a&&58!==a)return!1;while(l=4)return!1;if(d=o(c.replace(/^\||\|$/g,"")),f=d.length,f>m.length)return!1;if(s)return!0;for(p=t.push("table_open","table",1),p.map=g=[e,0],p=t.push("thead_open","thead",1),p.map=[e,e+1],p=t.push("tr_open","tr",1),p.map=[e,e+1],u=0;u=4)break;for(d=o(c.replace(/^\||\|$/g,"")),p=t.push("tr_open","tr",1),u=0;u=k)return!1;for(g=h,f=t.helpers.parseLinkDestination(n.src,h,n.posMax),f.ok&&(y=n.md.normalizeLink(f.str),n.md.validateLink(y)?h=f.pos:y=""),g=h;h=0&&(a=n.src.charCodeAt(h-1),32===a&&(f=r(n.src,h,n.posMax),f.ok)))for(_=f.width,b=f.height,h=f.pos;h=k||41!==n.src.charCodeAt(h))return n.pos=w,!1;h++}else{if("undefined"===typeof n.env.references)return!1;for(;h=0?c=n.src.slice(g,h++):h=l+1):h=l+1,c||(c=n.src.slice(u,l)),d=n.env.references[t.utils.normalizeReference(c)],!d)return n.pos=w,!1;y=d.href,p=d.title}if(!o){n.pos=u,n.posMax=l;var x=new n.md.inline.State(n.src.slice(u,l),n.md,n.env,v=[]);if(x.md.inline.tokenize(x),e&&e.autofill&&""===_&&""===b)try{var C=i(y);_=C.width,b=C.height}catch(S){}m=n.push("image","img",0),m.attrs=s=[["src",y],["alt",""]],m.children=v,p&&s.push(["title",p]),""!==_&&s.push(["width",_]),""!==b&&s.push(["height",b])}return n.pos=h,n.posMax=k,!0}}t.exports=function(t,e){t.inline.ruler.before("emphasis","image",o(t,e))}},"834f":function(t,e,n){"use strict";var i=n("096b"),r=n("0068").isSpace;function o(t,e,n,i){var o,s,a,c,l,u,h,d;for(this.src=t,this.md=e,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.parentType="root",this.level=0,this.result="",s=this.src,d=!1,a=c=u=h=0,l=s.length;c0&&this.level++,this.tokens.push(r),r},o.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]},o.prototype.skipEmptyLines=function(t){for(var e=this.lineMax;te)if(!r(this.src.charCodeAt(--t)))return t+1;return t},o.prototype.skipChars=function(t,e){for(var n=this.src.length;tn)if(e!==this.src.charCodeAt(--t))return t+1;return t},o.prototype.getLines=function(t,e,n,i){var o,s,a,c,l,u,h,d=t;if(t>=e)return"";for(u=new Array(e-t),o=0;dn?new Array(s-n+1).join(" ")+this.src.slice(c,l):this.src.slice(c,l)}return u.join("")},o.prototype.Token=i,t.exports=o},8378:function(t,e){var n=t.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},"838d":function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r,o=t.delimiters,s=t.delimiters.length;for(e=0;e=0){if(r=o[n],r.open&&r.marker===i.marker&&r.end<0&&r.level===i.level){var a=(r.close||i.open)&&"undefined"!==typeof r.length&&"undefined"!==typeof i.length&&(r.length+i.length)%3===0;if(!a){i.jump=e-n,i.open=!1,r.end=e,r.jump=0;break}}n-=r.jump+1}}}},8449:function(t,e,n){"use strict";n("386b")("anchor",function(t){return function(e){return t(this,"a","name",e)}})},"84f2":function(t,e){t.exports={}},8572:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=n("adc8"),s=n.n(o),a=(n("c5f6"),n("2b0e")),c=n("0016"),l=n("0d59"),u=(n("7514"),n("551c"),n("ac6a"),n("cadf"),n("5df3"),n("8621")),h={props:{value:{},error:{type:Boolean,default:null},errorMessage:String,noErrorIcon:Boolean,rules:Array,lazyRules:Boolean},data:function(){return{isDirty:!1,innerError:!1,innerErrorMessage:void 0}},watch:{value:function(t){void 0!==this.rules&&(!0===this.lazyRules&&!1===this.isDirty||this.validate(t))},focused:function(t){!1===t&&this.__triggerValidation()}},computed:{hasError:function(){return!0===this.error||!0===this.innerError},computedErrorMessage:function(){return"string"===typeof this.errorMessage&&this.errorMessage.length>0?this.errorMessage:this.innerErrorMessage}},mounted:function(){this.validateIndex=0,void 0===this.focused&&this.$el.addEventListener("focusout",this.__triggerValidation)},beforeDestroy:function(){void 0===this.focused&&this.$el.removeEventListener("focusout",this.__triggerValidation)},methods:{resetValidation:function(){this.validateIndex++,this.innerLoading=!1,this.isDirty=!1,this.innerError=!1,this.innerErrorMessage=void 0},validate:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.value;if(!this.rules||0===this.rules.length)return!0;this.validateIndex++,!0!==this.innerLoading&&!0!==this.lazyRules&&(this.isDirty=!0);for(var n=function(e,n){t.innerError!==e&&(t.innerError=e);var i=n||void 0;t.innerErrorMessage!==i&&(t.innerErrorMessage=i),!1!==t.innerLoading&&(t.innerLoading=!1)},i=[],r=0;r0},computedCounter:function(){if(!1!==this.counter){var t="string"===typeof this.value||"number"===typeof this.value?(""+this.value).length:!0===Array.isArray(this.value)?this.value.length:0,e=void 0!==this.maxlength?this.maxlength:this.maxValues;return t+(void 0!==e?" / "+e:"")}},floatingLabel:function(){return!0===this.hasError||!0===this.stackLabel||!0===this.focused||(void 0!==this.inputValue&&!0===this.hideSelected?this.inputValue.length>0:!0===this.hasValue)||void 0!==this.displayValue&&null!==this.displayValue&&(""+this.displayValue).length>0},shouldRenderBottom:function(){return!0===this.bottomSlots||void 0!==this.hint||void 0!==this.rules||!0===this.counter||null!==this.error},classes:function(){var t;return t={},s()(t,this.fieldClass,void 0!==this.fieldClass),s()(t,"q-field--".concat(this.styleType),!0),s()(t,"q-field--rounded",this.rounded),s()(t,"q-field--square",this.square),s()(t,"q-field--focused",!0===this.focused||!0===this.hasError),s()(t,"q-field--float",this.floatingLabel),s()(t,"q-field--labeled",void 0!==this.label),s()(t,"q-field--dense",this.dense),s()(t,"q-field--item-aligned q-item-type",this.itemAligned),s()(t,"q-field--dark",this.dark),s()(t,"q-field--auto-height",void 0===this.__getControl),s()(t,"q-field--with-bottom",!0!==this.hideBottomSpace&&!0===this.shouldRenderBottom),s()(t,"q-field--error",this.hasError),s()(t,"q-field--readonly",this.readonly),s()(t,"q-field--disabled",this.disable),t},styleType:function(){return!0===this.filled?"filled":!0===this.outlined?"outlined":!0===this.borderless?"borderless":this.standout?"standout":"standard"},contentClass:function(){var t=[];if(!0===this.hasError)t.push("text-negative");else{if("string"===typeof this.standout&&this.standout.length>0&&!0===this.focused)return this.standout;void 0!==this.color&&t.push("text-"+this.color)}return void 0!==this.bgColor&&t.push("bg-".concat(this.bgColor)),t}},methods:{focus:function(){if(void 0===this.showPopup||!0===this.$q.platform.is.desktop){var t=this.$refs.target;void 0!==t&&(t.matches("[tabindex]")||(t=t.querySelector("[tabindex]")),null!==t&&t.focus())}else this.showPopup()},blur:function(){var t=document.activeElement;this.$el.contains(t)&&t.blur()},__getContent:function(t){var e=[];return void 0!==this.$scopedSlots.prepend&&e.push(t("div",{staticClass:"q-field__prepend q-field__marginal row no-wrap items-center",key:"prepend"},this.$scopedSlots.prepend())),e.push(t("div",{staticClass:"q-field__control-container col relative-position row no-wrap q-anchor--skip"},this.__getControlContainer(t))),!0===this.hasError&&!1===this.noErrorIcon&&e.push(this.__getInnerAppendNode(t,"error",[t(c["a"],{props:{name:this.$q.iconSet.field.error,color:"negative"}})])),!0!==this.loading&&!0!==this.innerLoading||e.push(this.__getInnerAppendNode(t,"inner-loading-append",void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(l["a"],{props:{color:this.color}})])),!0===this.clearable&&!0===this.hasValue&&!0===this.editable&&e.push(this.__getInnerAppendNode(t,"inner-clearable-append",[t(c["a"],{staticClass:"cursor-pointer",props:{name:this.clearIcon||this.$q.iconSet.field.clear},on:{click:this.__clearValue}})])),void 0!==this.$scopedSlots.append&&e.push(t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center",key:"append"},this.$scopedSlots.append())),void 0!==this.__getInnerAppend&&e.push(this.__getInnerAppendNode(t,"inner-append",this.__getInnerAppend(t))),void 0!==this.__getPopup&&e.push(this.__getPopup(t)),e},__getControlContainer:function(t){var e=[];return void 0!==this.prefix&&null!==this.prefix&&e.push(t("div",{staticClass:"q-field__prefix no-pointer-events row items-center"},[this.prefix])),void 0!==this.__getControl?e.push(this.__getControl(t)):void 0!==this.$scopedSlots.rawControl?e.push(this.$scopedSlots.rawControl()):void 0!==this.$scopedSlots.control&&e.push(t("div",{ref:"target",staticClass:"q-field__native row",attrs:r()({},this.$attrs,{autofocus:this.autofocus})},this.$scopedSlots.control())),void 0!==this.label&&e.push(t("div",{staticClass:"q-field__label no-pointer-events absolute ellipsis"},[this.label])),void 0!==this.suffix&&null!==this.suffix&&e.push(t("div",{staticClass:"q-field__suffix no-pointer-events row items-center"},[this.suffix])),e.concat(void 0!==this.__getDefaultSlot?this.__getDefaultSlot(t):Object(d["a"])(this,"default"))},__getBottom:function(t){var e,n;!0===this.hasError?void 0!==this.computedErrorMessage?(e=[t("div",[this.computedErrorMessage])],n=this.computedErrorMessage):(e=Object(d["a"])(this,"error"),n="q--slot-error"):!0===this.hideHint&&!0!==this.focused||(void 0!==this.hint?(e=[t("div",[this.hint])],n=this.hint):(e=Object(d["a"])(this,"hint"),n="q--slot-hint"));var i=!0===this.counter||void 0!==this.$scopedSlots.counter;if(!0!==this.hideBottomSpace||!1!==i||void 0!==e){var r=t("div",{key:n,staticClass:"q-field__messages col"},e);return t("div",{staticClass:"q-field__bottom row items-start q-field__bottom--"+(!0!==this.hideBottomSpace?"animated":"stale")},[!0===this.hideBottomSpace?r:t("transition",{props:{name:"q-transition--field-message"}},[r]),!0===i?t("div",{staticClass:"q-field__counter"},void 0!==this.$scopedSlots.counter?this.$scopedSlots.counter():[this.computedCounter]):null])}},__getInnerAppendNode:function(t,e,n){return t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center q-anchor--skip",key:e},n)},__onControlFocusin:function(t){!0===this.editable&&!1===this.focused&&(this.focused=!0,void 0!==this.$listeners.focus&&this.$emit("focus",t))},__onControlFocusout:function(t){var e=this;setTimeout(function(){(!0!==document.hasFocus()||void 0!==e.$refs&&void 0!==e.$refs.control&&!1===e.$refs.control.contains(document.activeElement))&&!0===e.focused&&(e.focused=!1,void 0!==e.$listeners.blur&&e.$emit("blur",t))})},__clearValue:function(t){Object(f["g"])(t),this.$emit("input",null)}},render:function(t){return void 0!==this.__onPreRender&&this.__onPreRender(),void 0!==this.__onPostRender&&this.$nextTick(this.__onPostRender),t("div",{staticClass:"q-field row no-wrap items-start",class:this.classes},[void 0!==this.$scopedSlots.before?t("div",{staticClass:"q-field__before q-field__marginal row no-wrap items-center"},this.$scopedSlots.before()):null,t("div",{staticClass:"q-field__inner relative-position col self-stretch column justify-center"},[t("div",{ref:"control",staticClass:"q-field__control relative-position row no-wrap",class:this.contentClass,attrs:{tabindex:-1},on:this.controlEvents},this.__getContent(t)),!0===this.shouldRenderBottom?this.__getBottom(t):null]),void 0!==this.$scopedSlots.after?t("div",{staticClass:"q-field__after q-field__marginal row no-wrap items-center"},this.$scopedSlots.after()):null])},created:function(){void 0!==this.__onPreRender&&this.__onPreRender(),this.controlEvents=void 0!==this.__getControlEvents?this.__getControlEvents():{focus:this.focus,focusin:this.__onControlFocusin,focusout:this.__onControlFocusout}},mounted:function(){!0===this.autofocus&&setTimeout(this.focus)}})},85727:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("469d"),o=n("e788"),s={},a=n("aa8a");a.forEach(function(t){s[t]=n("cd50")("./"+t)});var c=131072;function l(t,e){var n=o(t,e);if(n in s){var i=s[n].calculate(t,e);if(!1!==i)return i.type=n,i}throw new TypeError("Unsupported file type")}function u(t,n){i.open(t,"r",function(t,r){if(t)return n(t);var o=i.fstatSync(r).size,s=Math.min(o,c),a=new e(s);i.read(r,a,0,s,0,function(t){if(t)return n(t);i.close(r,function(t){n(t,a)})})})}function h(t){var n=i.openSync(t,"r"),r=i.fstatSync(n).size,o=Math.min(r,c),s=new e(o);return i.readSync(n,s,0,o,0),i.closeSync(n),s}t.exports=function(t,e){if("string"!==typeof t)throw new TypeError("Input must be file name");var n=r.resolve(t);if("function"!==typeof e){var i=h(n);return l(i,n)}u(n,function(t,i){if(t)return e(t);var r;try{r=l(i,n)}catch(o){t=o}e(t,r)})}}).call(this,n("9cd4").Buffer)},"85fc":function(t,e,n){"use strict";n("c5f6");var i=n("d882");e["a"]={props:{value:{required:!0},val:{},trueValue:{default:!0},falseValue:{default:!1},label:String,leftLabel:Boolean,color:String,keepColor:Boolean,dark:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return this.modelIsArray?this.index>-1:this.value===this.trueValue},isFalse:function(){return this.modelIsArray?-1===this.index:this.value===this.falseValue},index:function(){if(!0===this.modelIsArray)return this.value.indexOf(this.val)},modelIsArray:function(){return Array.isArray(this.value)},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0}},methods:{toggle:function(t){var e;(void 0!==t&&Object(i["h"])(t),!0!==this.disable)&&(!0===this.modelIsArray?!0===this.isTrue?(e=this.value.slice(),e.splice(this.index,1)):e=this.value.concat(this.val):e=!0===this.isTrue?this.toggleIndeterminate?this.indeterminateValue:this.falseValue:!0===this.isFalse?this.trueValue:this.falseValue,this.$emit("input",e))},__keyDown:function(t){13!==t.keyCode&&32!==t.keyCode||this.toggle(t)}}}},8621:function(t,e,n){"use strict";n.d(e,"a",function(){return c});var i=/^#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?$/,r=/^#[0-9a-fA-F]{4}([0-9a-fA-F]{4})?$/,o=/^#([0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/,s=/^rgb\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5])\)$/,a=/^rgba\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/,c={date:function(t){return/^-?[\d]+\/[0-1]\d\/[0-3]\d$/.test(t)},time:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d$/.test(t)},fulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d:[0-5]\d$/.test(t)},timeOrFulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/.test(t)},hexColor:function(t){return i.test(t)},hexaColor:function(t){return r.test(t)},hexOrHexaColor:function(t){return o.test(t)},rgbColor:function(t){return s.test(t)},rgbaColor:function(t){return a.test(t)},rgbOrRgbaColor:function(t){return s.test(t)||a.test(t)},hexOrRgbColor:function(t){return i.test(t)||s.test(t)},hexaOrRgbaColor:function(t){return r.test(t)||a.test(t)},anyColor:function(t){return o.test(t)||s.test(t)||a.test(t)}}},"86cc":function(t,e,n){var i=n("cb7c"),r=n("c69a"),o=n("6a99"),s=Object.defineProperty;e.f=n("9e1e")?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(a){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},8716:function(t,e,n){"use strict";n.d(e,"a",function(){return r});n("a481");var i={to:[String,Object],exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,disable:Boolean},r={props:i,computed:{hasRouterLink:function(){return!0!==this.disable&&void 0!==this.to&&null!==this.to&&""!==this.to},routerLinkProps:function(){return{to:this.to,exact:this.exact,append:this.append,replace:this.replace,activeClass:this.activeClass||"q-router-link--active",exactActiveClass:this.exactActiveClass||"q-router-link--exact-active",event:!0===this.disable?"":void 0}}}}},"8a31":function(t,e,n){"use strict";t.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},"8b97":function(t,e,n){var i=n("d3f4"),r=n("cb7c"),o=function(t,e){if(r(t),!i(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,i){try{i=n("9b43")(Function.call,n("11e9").f(Object.prototype,"__proto__").set,2),i(t,[]),e=!(t instanceof Array)}catch(r){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:i(t,n),t}}({},!1):void 0),check:o}},"8c4f":function(t,e,n){"use strict"; /*! * vue-router v3.0.6 * (c) 2019 Evan You * @license MIT - */function i(t,e){0}function r(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,i=e.children,r=e.parent,s=e.data;s.routerView=!0;var c=r.$createElement,l=n.name,u=r.$route,h=r._routerViewCache||(r._routerViewCache={}),d=0,f=!1;while(r&&r._routerRoot!==r){var p=r.$vnode&&r.$vnode.data;p&&(p.routerView&&d++,p.keepAlive&&r._inactive&&(f=!0)),r=r.$parent}if(s.routerViewDepth=d,f)return c(h[l],s,i);var m=u.matched[d];if(!m)return h[l]=null,c();var v=h[l]=m.components[l];s.registerRouteInstance=function(t,e){var n=m.instances[l];(e&&n!==t||!e&&n===t)&&(m.instances[l]=e)},(s.hook||(s.hook={})).prepatch=function(t,e){m.instances[l]=e.componentInstance},s.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==m.instances[l]&&(m.instances[l]=t.componentInstance)};var g=s.props=a(u,m.props&&m.props[l]);if(g){g=s.props=o({},g);var _=s.attrs=s.attrs||{};for(var b in g)v.props&&b in v.props||(_[b]=g[b],delete g[b])}return c(v,s,i)}};function a(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}var c=/[!'()*]/g,l=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,h=function(t){return encodeURIComponent(t).replace(c,l).replace(u,",")},d=decodeURIComponent;function f(t,e,n){void 0===e&&(e={});var i,r=n||p;try{i=r(t||"")}catch(s){i={}}for(var o in e)i[o]=e[o];return i}function p(t){var e={};return t=t.trim().replace(/^(\?|#|&)/,""),t?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=d(n.shift()),r=n.length>0?d(n.join("=")):null;void 0===e[i]?e[i]=r:Array.isArray(e[i])?e[i].push(r):e[i]=[e[i],r]}),e):e}function m(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return h(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(h(e)):i.push(h(e)+"="+h(t)))}),i.join("&")}return h(e)+"="+h(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function g(t,e,n,i){var r=i&&i.options.stringifyQuery,o=e.query||{};try{o=_(o)}catch(a){}var s={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:w(e,r),matched:t?y(t):[]};return n&&(s.redirectedFrom=w(n,r)),Object.freeze(s)}function _(t){if(Array.isArray(t))return t.map(_);if(t&&"object"===typeof t){var e={};for(var n in t)e[n]=_(t[n]);return e}return t}var b=g(null,{path:"/"});function y(t){var e=[];while(t)e.unshift(t),t=t.parent;return e}function w(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var r=t.hash;void 0===r&&(r="");var o=e||m;return(n||"/")+o(i)+r}function k(t,e){return e===b?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&x(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&x(t.query,e.query)&&x(t.params,e.params)))}function x(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),i=Object.keys(e);return n.length===i.length&&n.every(function(n){var i=t[n],r=e[n];return"object"===typeof i&&"object"===typeof r?x(i,r):String(i)===String(r)})}function C(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&S(t.query,e.query)}function S(t,e){for(var n in e)if(!(n in t))return!1;return!0}var A,E=[String,Object],q=[String,Array],T={name:"RouterLink",props:{to:{type:E,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:q,default:"click"}},render:function(t){var e=this,n=this.$router,i=this.$route,r=n.resolve(this.to,i,this.append),s=r.location,a=r.route,c=r.href,l={},u=n.options.linkActiveClass,h=n.options.linkExactActiveClass,d=null==u?"router-link-active":u,f=null==h?"router-link-exact-active":h,p=null==this.activeClass?d:this.activeClass,m=null==this.exactActiveClass?f:this.exactActiveClass,v=s.path?g(null,s,null,n):a;l[m]=k(i,v),l[p]=this.exact?l[m]:C(i,v);var _=function(t){O(t)&&(e.replace?n.replace(s):n.push(s))},b={click:O};Array.isArray(this.event)?this.event.forEach(function(t){b[t]=_}):b[this.event]=_;var y={class:l};if("a"===this.tag)y.on=b,y.attrs={href:c};else{var w=D(this.$slots.default);if(w){w.isStatic=!1;var x=w.data=o({},w.data);x.on=b;var S=w.data.attrs=o({},w.data.attrs);S.href=c}else y.on=b}return t(this.tag,y,this.$slots.default)}};function O(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function D(t){if(t)for(var e,n=0;n=0&&(e=t.slice(i),t=t.slice(0,i));var r=t.indexOf("?");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{path:t,query:n,hash:e}}function j(t){return t.replace(/\/\//g,"/")}var B=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},F=it,P=V,R=U,z=G,N=nt,H=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function V(t,e){var n,i=[],r=0,o=0,s="",a=e&&e.delimiter||"/";while(null!=(n=H.exec(t))){var c=n[0],l=n[1],u=n.index;if(s+=t.slice(o,u),o=u+c.length,l)s+=l[1];else{var h=t[o],d=n[2],f=n[3],p=n[4],m=n[5],v=n[6],g=n[7];s&&(i.push(s),s="");var _=null!=d&&null!=h&&h!==d,b="+"===v||"*"===v,y="?"===v||"*"===v,w=n[2]||a,k=p||m;i.push({name:f||r++,prefix:d||"",delimiter:w,optional:y,repeat:b,partial:_,asterisk:!!g,pattern:k?Z(k):g?".*":"[^"+Q(w)+"]+?"})}}return o-1&&(a.params[d]=n.params[d]);if(l)return a.path=ot(l.path,a.params,'named route "'+c+'"'),u(l,a,s)}else if(a.path){a.params={};for(var f=0;f=t.length?n():t[r]?e(t[r],function(){i(r+1)}):i(r+1)};i(0)}function Mt(t){return function(e,n,i){var o=!1,s=0,a=null;It(t,function(t,e,n,c){if("function"===typeof t&&void 0===t.cid){o=!0,s++;var l,u=Pt(function(e){Ft(e)&&(e=e.default),t.resolved="function"===typeof e?e:A.extend(e),n.components[c]=e,s--,s<=0&&i()}),h=Pt(function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=r(t)?t:new Error(e),i(a))});try{l=t(u,h)}catch(f){h(f)}if(l)if("function"===typeof l.then)l.then(u,h);else{var d=l.component;d&&"function"===typeof d.then&&d.then(u,h)}}}),o||i()}}function It(t,e){return jt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function jt(t){return Array.prototype.concat.apply([],t)}var Bt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Ft(t){return t.__esModule||Bt&&"Module"===t[Symbol.toStringTag]}function Pt(t){var e=!1;return function(){var n=[],i=arguments.length;while(i--)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var Rt=function(t,e){this.router=t,this.base=zt(e),this.current=b,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function zt(t){if(!t)if(L){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function Nt(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,i))+t.slice(i):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function ie(t){var e=window.location.href,n=e.indexOf("#"),i=n>=0?e.slice(0,n):e;return i+"#"+t}function re(t){St?Dt(ie(t)):window.location.hash=t}function oe(t){St?$t(ie(t)):window.location.replace(ie(t))}var se=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){e.index=n,e.updateRoute(i)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Rt),ae=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!St&&!1!==t.fallback,this.fallback&&(e="hash"),L||(e="abstract"),this.mode=e,e){case"history":this.history=new Kt(this,t.base);break;case"hash":this.history=new Jt(this,t.base,this.fallback);break;case"abstract":this.history=new se(this,t.base);break;default:0}},ce={currentRoute:{configurable:!0}};function le(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function ue(t,e,n){var i="hash"===n?"#"+e:e;return t?j(t+"/"+i):i}ae.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},ce.currentRoute.get=function(){return this.history&&this.history.current},ae.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)}),!this.app){this.app=t;var n=this.history;if(n instanceof Kt)n.transitionTo(n.getCurrentLocation());else if(n instanceof Jt){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},ae.prototype.beforeEach=function(t){return le(this.beforeHooks,t)},ae.prototype.beforeResolve=function(t){return le(this.resolveHooks,t)},ae.prototype.afterEach=function(t){return le(this.afterHooks,t)},ae.prototype.onReady=function(t,e){this.history.onReady(t,e)},ae.prototype.onError=function(t){this.history.onError(t)},ae.prototype.push=function(t,e,n){this.history.push(t,e,n)},ae.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},ae.prototype.go=function(t){this.history.go(t)},ae.prototype.back=function(){this.go(-1)},ae.prototype.forward=function(){this.go(1)},ae.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},ae.prototype.resolve=function(t,e,n){e=e||this.history.current;var i=ut(t,e,n,this),r=this.match(i,e),o=r.redirectedFrom||r.fullPath,s=this.history.base,a=ue(s,o,this.mode);return{location:i,route:r,href:a,normalizedTo:i,resolved:r}},ae.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==b&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(ae.prototype,ce),ae.install=$,ae.version="3.0.6",L&&window.Vue&&window.Vue.use(ae),e["a"]=ae},"8e72":function(t,e,n){var i=n("00f0"),r=n("b6b4"),o=n("51215");function s(t){return i(t)||r(t)||o()}t.exports=s},"8f37":function(t,e,n){"use strict";var i={};function r(t){var e,n,r=i[t];if(r)return r;for(r=i[t]=[],e=0;e<128;e++)n=String.fromCharCode(e),r.push(n);for(e=0;e=55296&&c<=57343?"���":String.fromCharCode(c),e+=6):240===(248&r)&&e+91114111?l+="����":(c-=65536,l+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),e+=9):l+="�";return l})}o.defaultChars=";/?:@&=+$,#",o.componentChars="",t.exports=o},"8f8e":function(t,e,n){"use strict";var i=n("2b0e"),r=n("85fc"),o=n("dde5");e["a"]=i["a"].extend({name:"QCheckbox",mixins:[r["a"]],props:{toggleIndeterminate:Boolean,indeterminateValue:{default:null}},computed:{isIndeterminate:function(){return void 0===this.value||this.value===this.indeterminateValue},classes:function(){return{disabled:this.disable,"q-checkbox--dark":this.dark,"q-checkbox--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-checkbox__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.isIndeterminate?"q-checkbox__inner--indeterminate"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0}},render:function(t){return t("div",{staticClass:"q-checkbox cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.toggle,keydown:this.__keyDown}},[t("div",{staticClass:"q-checkbox__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-checkbox__native q-ma-none q-pa-none invisible",attrs:{type:"checkbox"},on:{change:this.toggle}}):null,t("div",{staticClass:"q-checkbox__bg absolute"},[t("svg",{staticClass:"q-checkbox__check fit absolute-full",attrs:{viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:"none",d:"M1.73,12.91 8.1,19.28 22.79,4.59"}})]),t("div",{staticClass:"q-checkbox__check-indet absolute"})])]),void 0!==this.label||void 0!==this.$scopedSlots.default?t("div",{staticClass:"q-checkbox__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(o["a"])(this,"default"))):null])}})},9093:function(t,e,n){var i=n("ce10"),r=n("e11e").concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},"922c":function(t,e,n){"use strict";t.exports.tokenize=function(t,e){var n,i,r,o,s,a=t.pos,c=t.src.charCodeAt(a);if(e)return!1;if(126!==c)return!1;if(i=t.scanDelims(t.pos,!0),o=i.length,s=String.fromCharCode(c),o<2)return!1;for(o%2&&(r=t.push("text","",0),r.content=s,o--),n=0;n=b)return!1;for(v=u,d=t.md.helpers.parseLinkDestination(t.src,u,t.posMax),d.ok&&(g=t.md.normalizeLink(d.str),t.md.validateLink(g)?u=d.pos:g=""),v=u;u=b||41!==t.src.charCodeAt(u))return t.pos=_,!1;u++}else{if("undefined"===typeof t.env.references)return!1;if(u=0?a=t.src.slice(v,u++):u=c+1):u=c+1,a||(a=t.src.slice(l,c)),h=t.env.references[i(a)],!h)return t.pos=_,!1;g=h.href,f=h.title}return e||(s=t.src.slice(l,c),t.md.inline.parse(s,t.md,t.env,m=[]),p=t.push("image","img",0),p.attrs=n=[["src",g],["alt",""]],p.children=m,p.content=s,f&&n.push(["title",f])),t.pos=u,t.posMax=b,!0}},9334:function(t,e,n){e.nextTick=function(t){setTimeout(t,0)},e.platform=e.arch=e.execPath=e.title="browser",e.pid=1,e.browser=!0,e.env={},e.argv=[],e.binding=function(t){throw new Error("No such module. (Possibly not yet loaded)")},function(){var t,i="/";e.cwd=function(){return i},e.chdir=function(e){t||(t=n("469d")),i=t.resolve(e,i)}}(),e.exit=e.kill=e.umask=e.dlopen=e.uptime=e.memoryUsage=e.uvCounters=function(){},e.features={}},"93d9":function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(i){"object"===typeof window&&(n=window)}t.exports=n},9564:function(t,e,n){"use strict";var i=n("2b0e"),r=n("85fc"),o=n("0016"),s=n("dde5");e["a"]=i["a"].extend({name:"QToggle",mixins:[r["a"]],props:{icon:String,checkedIcon:String,uncheckedIcon:String},computed:{classes:function(){return{disabled:this.disable,"q-toggle--dark":this.dark,"q-toggle--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-toggle__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0},computedIcon:function(){return(!0===this.isTrue?this.checkedIcon:this.uncheckedIcon)||this.icon}},render:function(t){return t("div",{staticClass:"q-toggle cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.toggle,keydown:this.__keyDown}},[t("div",{staticClass:"q-toggle__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-toggle__native absolute q-ma-none q-pa-none invisible",attrs:{type:"toggle"},on:{change:this.toggle}}):null,t("div",{staticClass:"q-toggle__track"}),t("div",{staticClass:"q-toggle__thumb-container absolute"},[t("div",{staticClass:"q-toggle__thumb row flex-center"},void 0!==this.computedIcon?[t(o["a"],{props:{name:this.computedIcon}})]:null)])]),t("div",{staticClass:"q-toggle__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(s["a"])(this,"default")))])}})},"96cf":function(t,e,n){var i=function(t){"use strict";var e,n=Object.prototype,i=n.hasOwnProperty,r="function"===typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",s=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function c(t,e,n,i){var r=e&&e.prototype instanceof m?e:m,o=Object.create(r.prototype),s=new q(i||[]);return o._invoke=C(t,n,s),o}function l(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}t.wrap=c;var u="suspendedStart",h="suspendedYield",d="executing",f="completed",p={};function m(){}function v(){}function g(){}var _={};_[o]=function(){return this};var b=Object.getPrototypeOf,y=b&&b(b(T([])));y&&y!==n&&i.call(y,o)&&(_=y);var w=g.prototype=m.prototype=Object.create(_);function k(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function x(t){function e(n,r,o,s){var a=l(t[n],t,r);if("throw"!==a.type){var c=a.arg,u=c.value;return u&&"object"===typeof u&&i.call(u,"__await")?Promise.resolve(u.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(u).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function r(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=r}function C(t,e,n){var i=u;return function(r,o){if(i===d)throw new Error("Generator is already running");if(i===f){if("throw"===r)throw o;return O()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=S(s,n);if(a){if(a===p)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===u)throw i=f,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=d;var c=l(t,e,n);if("normal"===c.type){if(i=n.done?f:h,c.arg===p)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=f,n.method="throw",n.arg=c.arg)}}}function S(t,n){var i=t.iterator[n.method];if(i===e){if(n.delegate=null,"throw"===n.method){if(t.iterator["return"]&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method))return p;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return p}var r=l(i,t.iterator,n.arg);if("throw"===r.type)return n.method="throw",n.arg=r.arg,n.delegate=null,p;var o=r.arg;return o?o.done?(n[t.resultName]=o.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,p):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,p)}function A(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function E(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function q(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function T(t){if(t){var n=t[o];if(n)return n.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var r=-1,s=function n(){while(++r=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return r("end");if(s.tryLoc<=this.prev){var c=i.call(s,"catchLoc"),l=i.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),E(n),p}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;E(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,i){return this.delegate={iterator:T(t),resultName:n,nextLoc:i},"next"===this.method&&(this.arg=e),p}},t}(t.exports);try{regeneratorRuntime=i}catch(r){Function("r","regeneratorRuntime = r")(i)}},9898:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("d263"),n("c5f6"),n("2b0e")),s=n("b6d5"),a=n("0909"),c=n("dde5"),l=n("d882");e["a"]=o["a"].extend({name:"QHeader",mixins:[a["a"]],inject:{layout:{default:function(){console.error("QHeader needs to be child of QLayout")}}},props:{value:{type:Boolean,default:!0},reveal:Boolean,revealOffset:{type:Number,default:250},bordered:Boolean,elevated:Boolean},data:function(){return{size:0,revealed:!0}},watch:{value:function(t){this.__update("space",t),this.__updateLocal("revealed",!0),this.layout.__animate()},offset:function(t){this.__update("offset",t)},reveal:function(t){!1===t&&this.__updateLocal("revealed",this.value)},revealed:function(t){this.layout.__animate(),this.$emit("reveal",t)},"layout.scroll":function(t){!0===this.reveal&&this.__updateLocal("revealed","up"===t.direction||t.position<=this.revealOffset||t.position-t.inflexionPosition<100)}},computed:{fixed:function(){return!0===this.reveal||this.layout.view.indexOf("H")>-1||!0===this.layout.container},offset:function(){if(!0!==this.canRender||!0!==this.value)return 0;if(!0===this.fixed)return!0===this.revealed?this.size:0;var t=this.size-this.layout.scroll.position;return t>0?t:0},classes:function(){return(!0===this.fixed?"fixed":"absolute")+"-top"+(!0===this.bordered?" q-header--bordered":"")+(!0!==this.canRender||!0!==this.value||!0===this.fixed&&!0!==this.revealed?" q-header--hidden":"")},style:function(){var t=this.layout.rows.top,e={};return"l"===t[0]&&!0===this.layout.left.space&&(e[this.$q.lang.rtl?"right":"left"]="".concat(this.layout.left.size,"px")),"r"===t[2]&&!0===this.layout.right.space&&(e[this.$q.lang.rtl?"left":"right"]="".concat(this.layout.right.size,"px")),e}},render:function(t){var e=[t(s["a"],{props:{debounce:0},on:{resize:this.__onResize}})].concat(Object(c["a"])(this,"default"));return!0===this.elevated&&e.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("header",{staticClass:"q-header q-layout__section--marginal q-layout__section--animate",class:this.classes,style:this.style,on:r()({},this.$listeners,{input:l["g"]})},e)},created:function(){this.layout.instances.header=this,this.__update("space",this.value),this.__update("offset",this.offset)},beforeDestroy:function(){this.layout.instances.header===this&&(this.layout.instances.header=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},methods:{__onResize:function(t){var e=t.height;this.__updateLocal("size",e),this.__update("size",e)},__update:function(t,e){this.layout.header[t]!==e&&(this.layout.header[t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}}})},9921:function(t,e,n){"use strict";var i=n("0068").arrayReplaceAt;function r(t){return/^\s]/i.test(t)}function o(t){return/^<\/a\s*>/i.test(t)}t.exports=function(t){var e,n,s,a,c,l,u,h,d,f,p,m,v,g,_,b,y,w=t.tokens;if(t.md.options.linkify)for(n=0,s=w.length;n=0;e--)if(l=a[e],"link_close"!==l.type){if("html_inline"===l.type&&(r(l.content)&&v>0&&v--,o(l.content)&&v++),!(v>0)&&"text"===l.type&&t.md.linkify.test(l.content)){for(d=l.content,y=t.md.linkify.match(d),u=[],m=l.level,p=0,h=0;hp&&(c=new t.Token("text","",0),c.content=d.slice(p,f),c.level=m,u.push(c)),c=new t.Token("link_open","a",1),c.attrs=[["href",_]],c.level=m++,c.markup="linkify",c.info="auto",u.push(c),c=new t.Token("text","",0),c.content=b,c.level=m,u.push(c),c=new t.Token("link_close","a",-1),c.level=--m,c.markup="linkify",c.info="auto",u.push(c),p=y[h].lastIndex);p=4))break;i++,r=i}return t.line=r,o=t.push("code_block","code",0),o.content=t.getLines(e,r,4+t.blkIndent,!0),o.map=[e,t.line],!0}},"9c40":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("6762"),n("2fdb"),n("a481"),n("c5f6"),n("2b0e")),s=n("0016"),a=n("0d59"),c=n("99b6"),l=n("3d69"),u={xs:8,sm:10,md:14,lg:20,xl:24},h={mixins:[l["a"],c["a"]],props:{type:String,to:[Object,String],replace:Boolean,label:[Number,String],icon:String,iconRight:String,round:Boolean,outline:Boolean,flat:Boolean,unelevated:Boolean,rounded:Boolean,push:Boolean,glossy:Boolean,size:String,fab:Boolean,fabMini:Boolean,color:String,textColor:String,noCaps:Boolean,noWrap:Boolean,dense:Boolean,tabindex:[Number,String],align:{default:"center"},stack:Boolean,stretch:Boolean,loading:{type:Boolean,default:null},disable:Boolean},computed:{style:function(){if(this.size&&!this.fab&&!this.fabMini)return{fontSize:this.size in u?"".concat(u[this.size],"px"):this.size}},isRound:function(){return!0===this.round||!0===this.fab||!0===this.fabMini},isDisabled:function(){return!0===this.disable||!0===this.loading},computedTabIndex:function(){return!0===this.isDisabled?-1:this.tabindex||0},hasRouterLink:function(){return!0!==this.disable&&void 0!==this.to&&null!==this.to&&""!==this.to},isLink:function(){return"a"===this.type||!0===this.hasRouterLink},design:function(){return!0===this.flat?"flat":!0===this.outline?"outline":!0===this.push?"push":!0===this.unelevated?"unelevated":"standard"},attrs:function(){var t={tabindex:this.computedTabIndex};return"a"!==this.type&&(t.type=this.type||"button"),!0===this.hasRouterLink&&(t.href=this.$router.resolve(this.to).href),!0===this.isDisabled&&(t.disabled=!0),t},classes:function(){var t;return void 0!==this.color?t=!0===this.flat||!0===this.outline?"text-".concat(this.textColor||this.color):"bg-".concat(this.color," text-").concat(this.textColor||"white"):this.textColor&&(t="text-".concat(this.textColor)),"q-btn--".concat(this.design," q-btn--").concat(!0===this.isRound?"round":"rectangle")+(void 0!==t?" "+t:"")+(!0!==this.isDisabled?" q-focusable q-hoverable":" disabled")+(!0===this.fab?" q-btn--fab":!0===this.fabMini?" q-btn--fab-mini":"")+(!0===this.noCaps?" q-btn--no-uppercase":"")+(!0===this.rounded?" q-btn--rounded":"")+(!0===this.dense?" q-btn--dense":"")+(!0===this.stretch?" no-border-radius self-stretch":"")+(!0===this.glossy?" glossy":"")},innerClasses:function(){return this.alignClass+(!0===this.stack?" column":" row")+(!0===this.noWrap?" no-wrap text-no-wrap":"")+(!0===this.loading?" q-btn__content--hidden":"")}}},d=n("dde5"),f=n("d882");e["a"]=o["a"].extend({name:"QBtn",mixins:[h],props:{percentage:Number,darkPercentage:Boolean},computed:{hasLabel:function(){return void 0!==this.label&&null!==this.label&&""!==this.label}},methods:{click:function(t){var e=this;if(!0!==this.pressed){if(void 0!==t){if("submit"===this.type&&(document.activeElement!==document.body&&!1===this.$el.contains(document.activeElement)||!0===this.$q.platform.is.ie&&t.clientX<0))return Object(f["h"])(t),void this.$el.focus();if(!0!==t.qKeyEvent&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),!0===t.defaultPrevented)return;!0===this.hasRouterLink&&Object(f["h"])(t)}var n=function(){e.$router[!0===e.replace?"replace":"push"](e.to)};this.$emit("click",t,n),!0===this.hasRouterLink&&!1!==t.navigate&&n()}},__onKeydown:function(t){!0===[13,32].includes(t.keyCode)&&(this.$el.focus(),Object(f["h"])(t),!0!==this.pressed&&(this.pressed=!0,this.$el.classList.add("q-btn--active"),document.addEventListener("keyup",this.__onKeyupAbort))),this.$emit("keydown",t)},__onKeyup:function(t){if(!0===[13,32].includes(t.keyCode)){this.__onKeyupAbort();var e=new MouseEvent("click",t);e.qKeyEvent=!0,!0===t.defaultPrevented&&e.preventDefault(),this.$el.dispatchEvent(e),Object(f["h"])(t),t.qKeyEvent=!0}this.$emit("keyup",t)},__onKeyupAbort:function(){this.pressed=!1,document.removeEventListener("keyup",this.__onKeyupAbort),this.$el&&this.$el.classList.remove("q-btn--active")}},beforeDestroy:function(){document.removeEventListener("keyup",this.__onKeyupAbort)},render:function(t){var e=[].concat(Object(d["a"])(this,"default")),n={staticClass:"q-btn inline q-btn-item non-selectable",class:this.classes,style:this.style,attrs:this.attrs};return!1===this.isDisabled&&(n.on=r()({},this.$listeners,{click:this.click,keydown:this.__onKeydown,keyup:this.__onKeyup}),!1!==this.ripple&&(n.directives=[{name:"ripple",value:this.ripple,modifiers:{center:this.isRound}}])),!0===this.hasLabel&&e.unshift(t("div",[this.label])),void 0!==this.icon&&e.unshift(t(s["a"],{props:{name:this.icon,left:!1===this.stack&&!0===this.hasLabel}})),void 0!==this.iconRight&&!1===this.isRound&&e.push(t(s["a"],{props:{name:this.iconRight,right:!1===this.stack&&!0===this.hasLabel}})),t(this.isLink?"a":"button",n,[t("div",{staticClass:"q-focus-helper",ref:"blurTarget",attrs:{tabindex:-1}}),!0===this.loading&&void 0!==this.percentage?t("div",{staticClass:"q-btn__progress absolute-full",class:this.darkPercentage?"q-btn__progress--dark":null,style:{transform:"scale3d(".concat(this.percentage/100,",1,1)")}}):null,t("div",{staticClass:"q-btn__content text-center col items-center q-anchor--skip",class:this.innerClasses},e),null!==this.loading?t("transition",{props:{name:"q-transition--fade"}},!0===this.loading?[t("div",{key:"loading",staticClass:"absolute-full flex flex-center"},void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(a["a"])])]:void 0):null])}})},"9c6c":function(t,e,n){var i=n("2b4c")("unscopables"),r=Array.prototype;void 0==r[i]&&n("32e9")(r,i,{}),t.exports=function(t){r[i][t]=!0}},"9c80":function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(e){return{e:!0,v:e}}}},"9cd4":function(t,e,n){"use strict";(function(t){ + */function i(t,e){0}function r(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,i=e.children,r=e.parent,s=e.data;s.routerView=!0;var c=r.$createElement,l=n.name,u=r.$route,h=r._routerViewCache||(r._routerViewCache={}),d=0,f=!1;while(r&&r._routerRoot!==r){var p=r.$vnode&&r.$vnode.data;p&&(p.routerView&&d++,p.keepAlive&&r._inactive&&(f=!0)),r=r.$parent}if(s.routerViewDepth=d,f)return c(h[l],s,i);var m=u.matched[d];if(!m)return h[l]=null,c();var v=h[l]=m.components[l];s.registerRouteInstance=function(t,e){var n=m.instances[l];(e&&n!==t||!e&&n===t)&&(m.instances[l]=e)},(s.hook||(s.hook={})).prepatch=function(t,e){m.instances[l]=e.componentInstance},s.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==m.instances[l]&&(m.instances[l]=t.componentInstance)};var g=s.props=a(u,m.props&&m.props[l]);if(g){g=s.props=o({},g);var _=s.attrs=s.attrs||{};for(var b in g)v.props&&b in v.props||(_[b]=g[b],delete g[b])}return c(v,s,i)}};function a(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}var c=/[!'()*]/g,l=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,h=function(t){return encodeURIComponent(t).replace(c,l).replace(u,",")},d=decodeURIComponent;function f(t,e,n){void 0===e&&(e={});var i,r=n||p;try{i=r(t||"")}catch(s){i={}}for(var o in e)i[o]=e[o];return i}function p(t){var e={};return t=t.trim().replace(/^(\?|#|&)/,""),t?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=d(n.shift()),r=n.length>0?d(n.join("=")):null;void 0===e[i]?e[i]=r:Array.isArray(e[i])?e[i].push(r):e[i]=[e[i],r]}),e):e}function m(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return h(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(h(e)):i.push(h(e)+"="+h(t)))}),i.join("&")}return h(e)+"="+h(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function g(t,e,n,i){var r=i&&i.options.stringifyQuery,o=e.query||{};try{o=_(o)}catch(a){}var s={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:w(e,r),matched:t?y(t):[]};return n&&(s.redirectedFrom=w(n,r)),Object.freeze(s)}function _(t){if(Array.isArray(t))return t.map(_);if(t&&"object"===typeof t){var e={};for(var n in t)e[n]=_(t[n]);return e}return t}var b=g(null,{path:"/"});function y(t){var e=[];while(t)e.unshift(t),t=t.parent;return e}function w(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var r=t.hash;void 0===r&&(r="");var o=e||m;return(n||"/")+o(i)+r}function k(t,e){return e===b?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&x(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&x(t.query,e.query)&&x(t.params,e.params)))}function x(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),i=Object.keys(e);return n.length===i.length&&n.every(function(n){var i=t[n],r=e[n];return"object"===typeof i&&"object"===typeof r?x(i,r):String(i)===String(r)})}function C(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&S(t.query,e.query)}function S(t,e){for(var n in e)if(!(n in t))return!1;return!0}var A,E=[String,Object],q=[String,Array],T={name:"RouterLink",props:{to:{type:E,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:q,default:"click"}},render:function(t){var e=this,n=this.$router,i=this.$route,r=n.resolve(this.to,i,this.append),s=r.location,a=r.route,c=r.href,l={},u=n.options.linkActiveClass,h=n.options.linkExactActiveClass,d=null==u?"router-link-active":u,f=null==h?"router-link-exact-active":h,p=null==this.activeClass?d:this.activeClass,m=null==this.exactActiveClass?f:this.exactActiveClass,v=s.path?g(null,s,null,n):a;l[m]=k(i,v),l[p]=this.exact?l[m]:C(i,v);var _=function(t){$(t)&&(e.replace?n.replace(s):n.push(s))},b={click:$};Array.isArray(this.event)?this.event.forEach(function(t){b[t]=_}):b[this.event]=_;var y={class:l};if("a"===this.tag)y.on=b,y.attrs={href:c};else{var w=O(this.$slots.default);if(w){w.isStatic=!1;var x=w.data=o({},w.data);x.on=b;var S=w.data.attrs=o({},w.data.attrs);S.href=c}else y.on=b}return t(this.tag,y,this.$slots.default)}};function $(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function O(t){if(t)for(var e,n=0;n=0&&(e=t.slice(i),t=t.slice(0,i));var r=t.indexOf("?");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{path:t,query:n,hash:e}}function j(t){return t.replace(/\/\//g,"/")}var B=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},F=it,P=V,R=U,z=G,N=nt,H=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function V(t,e){var n,i=[],r=0,o=0,s="",a=e&&e.delimiter||"/";while(null!=(n=H.exec(t))){var c=n[0],l=n[1],u=n.index;if(s+=t.slice(o,u),o=u+c.length,l)s+=l[1];else{var h=t[o],d=n[2],f=n[3],p=n[4],m=n[5],v=n[6],g=n[7];s&&(i.push(s),s="");var _=null!=d&&null!=h&&h!==d,b="+"===v||"*"===v,y="?"===v||"*"===v,w=n[2]||a,k=p||m;i.push({name:f||r++,prefix:d||"",delimiter:w,optional:y,repeat:b,partial:_,asterisk:!!g,pattern:k?Z(k):g?".*":"[^"+Q(w)+"]+?"})}}return o-1&&(a.params[d]=n.params[d]);if(l)return a.path=ot(l.path,a.params,'named route "'+c+'"'),u(l,a,s)}else if(a.path){a.params={};for(var f=0;f=t.length?n():t[r]?e(t[r],function(){i(r+1)}):i(r+1)};i(0)}function Mt(t){return function(e,n,i){var o=!1,s=0,a=null;It(t,function(t,e,n,c){if("function"===typeof t&&void 0===t.cid){o=!0,s++;var l,u=Pt(function(e){Ft(e)&&(e=e.default),t.resolved="function"===typeof e?e:A.extend(e),n.components[c]=e,s--,s<=0&&i()}),h=Pt(function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=r(t)?t:new Error(e),i(a))});try{l=t(u,h)}catch(f){h(f)}if(l)if("function"===typeof l.then)l.then(u,h);else{var d=l.component;d&&"function"===typeof d.then&&d.then(u,h)}}}),o||i()}}function It(t,e){return jt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function jt(t){return Array.prototype.concat.apply([],t)}var Bt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Ft(t){return t.__esModule||Bt&&"Module"===t[Symbol.toStringTag]}function Pt(t){var e=!1;return function(){var n=[],i=arguments.length;while(i--)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var Rt=function(t,e){this.router=t,this.base=zt(e),this.current=b,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function zt(t){if(!t)if(L){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function Nt(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,i))+t.slice(i):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function ie(t){var e=window.location.href,n=e.indexOf("#"),i=n>=0?e.slice(0,n):e;return i+"#"+t}function re(t){St?Ot(ie(t)):window.location.hash=t}function oe(t){St?Dt(ie(t)):window.location.replace(ie(t))}var se=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){e.index=n,e.updateRoute(i)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Rt),ae=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!St&&!1!==t.fallback,this.fallback&&(e="hash"),L||(e="abstract"),this.mode=e,e){case"history":this.history=new Kt(this,t.base);break;case"hash":this.history=new Jt(this,t.base,this.fallback);break;case"abstract":this.history=new se(this,t.base);break;default:0}},ce={currentRoute:{configurable:!0}};function le(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function ue(t,e,n){var i="hash"===n?"#"+e:e;return t?j(t+"/"+i):i}ae.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},ce.currentRoute.get=function(){return this.history&&this.history.current},ae.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)}),!this.app){this.app=t;var n=this.history;if(n instanceof Kt)n.transitionTo(n.getCurrentLocation());else if(n instanceof Jt){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},ae.prototype.beforeEach=function(t){return le(this.beforeHooks,t)},ae.prototype.beforeResolve=function(t){return le(this.resolveHooks,t)},ae.prototype.afterEach=function(t){return le(this.afterHooks,t)},ae.prototype.onReady=function(t,e){this.history.onReady(t,e)},ae.prototype.onError=function(t){this.history.onError(t)},ae.prototype.push=function(t,e,n){this.history.push(t,e,n)},ae.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},ae.prototype.go=function(t){this.history.go(t)},ae.prototype.back=function(){this.go(-1)},ae.prototype.forward=function(){this.go(1)},ae.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},ae.prototype.resolve=function(t,e,n){e=e||this.history.current;var i=ut(t,e,n,this),r=this.match(i,e),o=r.redirectedFrom||r.fullPath,s=this.history.base,a=ue(s,o,this.mode);return{location:i,route:r,href:a,normalizedTo:i,resolved:r}},ae.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==b&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(ae.prototype,ce),ae.install=D,ae.version="3.0.6",L&&window.Vue&&window.Vue.use(ae),e["a"]=ae},"8e72":function(t,e,n){var i=n("00f0"),r=n("b6b4"),o=n("51215");function s(t){return i(t)||r(t)||o()}t.exports=s},"8f37":function(t,e,n){"use strict";var i={};function r(t){var e,n,r=i[t];if(r)return r;for(r=i[t]=[],e=0;e<128;e++)n=String.fromCharCode(e),r.push(n);for(e=0;e=55296&&c<=57343?"���":String.fromCharCode(c),e+=6):240===(248&r)&&e+91114111?l+="����":(c-=65536,l+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),e+=9):l+="�";return l})}o.defaultChars=";/?:@&=+$,#",o.componentChars="",t.exports=o},"8f8e":function(t,e,n){"use strict";var i=n("2b0e"),r=n("85fc"),o=n("dde5");e["a"]=i["a"].extend({name:"QCheckbox",mixins:[r["a"]],props:{toggleIndeterminate:Boolean,indeterminateValue:{default:null}},computed:{isIndeterminate:function(){return void 0===this.value||this.value===this.indeterminateValue},classes:function(){return{disabled:this.disable,"q-checkbox--dark":this.dark,"q-checkbox--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-checkbox__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.isIndeterminate?"q-checkbox__inner--indeterminate"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0}},render:function(t){return t("div",{staticClass:"q-checkbox cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.toggle,keydown:this.__keyDown}},[t("div",{staticClass:"q-checkbox__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-checkbox__native q-ma-none q-pa-none invisible",attrs:{type:"checkbox"},on:{change:this.toggle}}):null,t("div",{staticClass:"q-checkbox__bg absolute"},[t("svg",{staticClass:"q-checkbox__check fit absolute-full",attrs:{viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:"none",d:"M1.73,12.91 8.1,19.28 22.79,4.59"}})]),t("div",{staticClass:"q-checkbox__check-indet absolute"})])]),void 0!==this.label||void 0!==this.$scopedSlots.default?t("div",{staticClass:"q-checkbox__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(o["a"])(this,"default"))):null])}})},9093:function(t,e,n){var i=n("ce10"),r=n("e11e").concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},"922c":function(t,e,n){"use strict";t.exports.tokenize=function(t,e){var n,i,r,o,s,a=t.pos,c=t.src.charCodeAt(a);if(e)return!1;if(126!==c)return!1;if(i=t.scanDelims(t.pos,!0),o=i.length,s=String.fromCharCode(c),o<2)return!1;for(o%2&&(r=t.push("text","",0),r.content=s,o--),n=0;n=b)return!1;for(v=u,d=t.md.helpers.parseLinkDestination(t.src,u,t.posMax),d.ok&&(g=t.md.normalizeLink(d.str),t.md.validateLink(g)?u=d.pos:g=""),v=u;u=b||41!==t.src.charCodeAt(u))return t.pos=_,!1;u++}else{if("undefined"===typeof t.env.references)return!1;if(u=0?a=t.src.slice(v,u++):u=c+1):u=c+1,a||(a=t.src.slice(l,c)),h=t.env.references[i(a)],!h)return t.pos=_,!1;g=h.href,f=h.title}return e||(s=t.src.slice(l,c),t.md.inline.parse(s,t.md,t.env,m=[]),p=t.push("image","img",0),p.attrs=n=[["src",g],["alt",""]],p.children=m,p.content=s,f&&n.push(["title",f])),t.pos=u,t.posMax=b,!0}},9334:function(t,e,n){e.nextTick=function(t){setTimeout(t,0)},e.platform=e.arch=e.execPath=e.title="browser",e.pid=1,e.browser=!0,e.env={},e.argv=[],e.binding=function(t){throw new Error("No such module. (Possibly not yet loaded)")},function(){var t,i="/";e.cwd=function(){return i},e.chdir=function(e){t||(t=n("469d")),i=t.resolve(e,i)}}(),e.exit=e.kill=e.umask=e.dlopen=e.uptime=e.memoryUsage=e.uvCounters=function(){},e.features={}},"93d9":function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(i){"object"===typeof window&&(n=window)}t.exports=n},9564:function(t,e,n){"use strict";var i=n("2b0e"),r=n("85fc"),o=n("0016"),s=n("dde5");e["a"]=i["a"].extend({name:"QToggle",mixins:[r["a"]],props:{icon:String,checkedIcon:String,uncheckedIcon:String},computed:{classes:function(){return{disabled:this.disable,"q-toggle--dark":this.dark,"q-toggle--dense":this.dense,reverse:this.leftLabel}},innerClass:function(){return!0===this.isTrue?"q-toggle__inner--active"+(void 0!==this.color?" text-"+this.color:""):!0===this.keepColor&&void 0!==this.color?"text-"+this.color:void 0},computedIcon:function(){return(!0===this.isTrue?this.checkedIcon:this.uncheckedIcon)||this.icon}},render:function(t){return t("div",{staticClass:"q-toggle cursor-pointer no-outline row inline no-wrap items-center",class:this.classes,attrs:{tabindex:this.computedTabindex},on:{click:this.toggle,keydown:this.__keyDown}},[t("div",{staticClass:"q-toggle__inner relative-position",class:this.innerClass},[!0!==this.disable?t("input",{staticClass:"q-toggle__native absolute q-ma-none q-pa-none invisible",attrs:{type:"toggle"},on:{change:this.toggle}}):null,t("div",{staticClass:"q-toggle__track"}),t("div",{staticClass:"q-toggle__thumb-container absolute"},[t("div",{staticClass:"q-toggle__thumb row flex-center"},void 0!==this.computedIcon?[t(o["a"],{props:{name:this.computedIcon}})]:null)])]),t("div",{staticClass:"q-toggle__label q-anchor--skip"},(void 0!==this.label?[this.label]:[]).concat(Object(s["a"])(this,"default")))])}})},"96cf":function(t,e,n){var i=function(t){"use strict";var e,n=Object.prototype,i=n.hasOwnProperty,r="function"===typeof Symbol?Symbol:{},o=r.iterator||"@@iterator",s=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function c(t,e,n,i){var r=e&&e.prototype instanceof m?e:m,o=Object.create(r.prototype),s=new q(i||[]);return o._invoke=C(t,n,s),o}function l(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}t.wrap=c;var u="suspendedStart",h="suspendedYield",d="executing",f="completed",p={};function m(){}function v(){}function g(){}var _={};_[o]=function(){return this};var b=Object.getPrototypeOf,y=b&&b(b(T([])));y&&y!==n&&i.call(y,o)&&(_=y);var w=g.prototype=m.prototype=Object.create(_);function k(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function x(t){function e(n,r,o,s){var a=l(t[n],t,r);if("throw"!==a.type){var c=a.arg,u=c.value;return u&&"object"===typeof u&&i.call(u,"__await")?Promise.resolve(u.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(u).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function r(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=r}function C(t,e,n){var i=u;return function(r,o){if(i===d)throw new Error("Generator is already running");if(i===f){if("throw"===r)throw o;return $()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=S(s,n);if(a){if(a===p)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===u)throw i=f,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=d;var c=l(t,e,n);if("normal"===c.type){if(i=n.done?f:h,c.arg===p)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=f,n.method="throw",n.arg=c.arg)}}}function S(t,n){var i=t.iterator[n.method];if(i===e){if(n.delegate=null,"throw"===n.method){if(t.iterator["return"]&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method))return p;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return p}var r=l(i,t.iterator,n.arg);if("throw"===r.type)return n.method="throw",n.arg=r.arg,n.delegate=null,p;var o=r.arg;return o?o.done?(n[t.resultName]=o.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,p):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,p)}function A(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function E(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function q(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function T(t){if(t){var n=t[o];if(n)return n.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var r=-1,s=function n(){while(++r=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return r("end");if(s.tryLoc<=this.prev){var c=i.call(s,"catchLoc"),l=i.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),E(n),p}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;E(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,i){return this.delegate={iterator:T(t),resultName:n,nextLoc:i},"next"===this.method&&(this.arg=e),p}},t}(t.exports);try{regeneratorRuntime=i}catch(r){Function("r","regeneratorRuntime = r")(i)}},9898:function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("d263"),n("c5f6"),n("2b0e")),s=n("b6d5"),a=n("0909"),c=n("dde5"),l=n("d882");e["a"]=o["a"].extend({name:"QHeader",mixins:[a["a"]],inject:{layout:{default:function(){console.error("QHeader needs to be child of QLayout")}}},props:{value:{type:Boolean,default:!0},reveal:Boolean,revealOffset:{type:Number,default:250},bordered:Boolean,elevated:Boolean},data:function(){return{size:0,revealed:!0}},watch:{value:function(t){this.__update("space",t),this.__updateLocal("revealed",!0),this.layout.__animate()},offset:function(t){this.__update("offset",t)},reveal:function(t){!1===t&&this.__updateLocal("revealed",this.value)},revealed:function(t){this.layout.__animate(),this.$emit("reveal",t)},"layout.scroll":function(t){!0===this.reveal&&this.__updateLocal("revealed","up"===t.direction||t.position<=this.revealOffset||t.position-t.inflexionPosition<100)}},computed:{fixed:function(){return!0===this.reveal||this.layout.view.indexOf("H")>-1||!0===this.layout.container},offset:function(){if(!0!==this.canRender||!0!==this.value)return 0;if(!0===this.fixed)return!0===this.revealed?this.size:0;var t=this.size-this.layout.scroll.position;return t>0?t:0},classes:function(){return(!0===this.fixed?"fixed":"absolute")+"-top"+(!0===this.bordered?" q-header--bordered":"")+(!0!==this.canRender||!0!==this.value||!0===this.fixed&&!0!==this.revealed?" q-header--hidden":"")},style:function(){var t=this.layout.rows.top,e={};return"l"===t[0]&&!0===this.layout.left.space&&(e[this.$q.lang.rtl?"right":"left"]="".concat(this.layout.left.size,"px")),"r"===t[2]&&!0===this.layout.right.space&&(e[this.$q.lang.rtl?"left":"right"]="".concat(this.layout.right.size,"px")),e}},render:function(t){var e=[t(s["a"],{props:{debounce:0},on:{resize:this.__onResize}})].concat(Object(c["a"])(this,"default"));return!0===this.elevated&&e.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("header",{staticClass:"q-header q-layout__section--marginal q-layout__section--animate",class:this.classes,style:this.style,on:r()({},this.$listeners,{input:l["g"]})},e)},created:function(){this.layout.instances.header=this,this.__update("space",this.value),this.__update("offset",this.offset)},beforeDestroy:function(){this.layout.instances.header===this&&(this.layout.instances.header=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},methods:{__onResize:function(t){var e=t.height;this.__updateLocal("size",e),this.__update("size",e)},__update:function(t,e){this.layout.header[t]!==e&&(this.layout.header[t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}}})},9921:function(t,e,n){"use strict";var i=n("0068").arrayReplaceAt;function r(t){return/^\s]/i.test(t)}function o(t){return/^<\/a\s*>/i.test(t)}t.exports=function(t){var e,n,s,a,c,l,u,h,d,f,p,m,v,g,_,b,y,w=t.tokens;if(t.md.options.linkify)for(n=0,s=w.length;n=0;e--)if(l=a[e],"link_close"!==l.type){if("html_inline"===l.type&&(r(l.content)&&v>0&&v--,o(l.content)&&v++),!(v>0)&&"text"===l.type&&t.md.linkify.test(l.content)){for(d=l.content,y=t.md.linkify.match(d),u=[],m=l.level,p=0,h=0;hp&&(c=new t.Token("text","",0),c.content=d.slice(p,f),c.level=m,u.push(c)),c=new t.Token("link_open","a",1),c.attrs=[["href",_]],c.level=m++,c.markup="linkify",c.info="auto",u.push(c),c=new t.Token("text","",0),c.content=b,c.level=m,u.push(c),c=new t.Token("link_close","a",-1),c.level=--m,c.markup="linkify",c.info="auto",u.push(c),p=y[h].lastIndex);p=4))break;i++,r=i}return t.line=r,o=t.push("code_block","code",0),o.content=t.getLines(e,r,4+t.blkIndent,!0),o.map=[e,t.line],!0}},"9c40":function(t,e,n){"use strict";var i=n("3c93"),r=n.n(i),o=(n("6762"),n("2fdb"),n("a481"),n("c5f6"),n("2b0e")),s=n("0016"),a=n("0d59"),c=n("99b6"),l=n("3d69"),u={xs:8,sm:10,md:14,lg:20,xl:24},h={mixins:[l["a"],c["a"]],props:{type:String,to:[Object,String],replace:Boolean,label:[Number,String],icon:String,iconRight:String,round:Boolean,outline:Boolean,flat:Boolean,unelevated:Boolean,rounded:Boolean,push:Boolean,glossy:Boolean,size:String,fab:Boolean,fabMini:Boolean,color:String,textColor:String,noCaps:Boolean,noWrap:Boolean,dense:Boolean,tabindex:[Number,String],align:{default:"center"},stack:Boolean,stretch:Boolean,loading:{type:Boolean,default:null},disable:Boolean},computed:{style:function(){if(this.size&&!this.fab&&!this.fabMini)return{fontSize:this.size in u?"".concat(u[this.size],"px"):this.size}},isRound:function(){return!0===this.round||!0===this.fab||!0===this.fabMini},isDisabled:function(){return!0===this.disable||!0===this.loading},computedTabIndex:function(){return!0===this.isDisabled?-1:this.tabindex||0},hasRouterLink:function(){return!0!==this.disable&&void 0!==this.to&&null!==this.to&&""!==this.to},isLink:function(){return"a"===this.type||!0===this.hasRouterLink},design:function(){return!0===this.flat?"flat":!0===this.outline?"outline":!0===this.push?"push":!0===this.unelevated?"unelevated":"standard"},attrs:function(){var t={tabindex:this.computedTabIndex};return"a"!==this.type&&(t.type=this.type||"button"),!0===this.hasRouterLink&&(t.href=this.$router.resolve(this.to).href),!0===this.isDisabled&&(t.disabled=!0),t},classes:function(){var t;return void 0!==this.color?t=!0===this.flat||!0===this.outline?"text-".concat(this.textColor||this.color):"bg-".concat(this.color," text-").concat(this.textColor||"white"):this.textColor&&(t="text-".concat(this.textColor)),"q-btn--".concat(this.design," q-btn--").concat(!0===this.isRound?"round":"rectangle")+(void 0!==t?" "+t:"")+(!0!==this.isDisabled?" q-focusable q-hoverable":" disabled")+(!0===this.fab?" q-btn--fab":!0===this.fabMini?" q-btn--fab-mini":"")+(!0===this.noCaps?" q-btn--no-uppercase":"")+(!0===this.rounded?" q-btn--rounded":"")+(!0===this.dense?" q-btn--dense":"")+(!0===this.stretch?" no-border-radius self-stretch":"")+(!0===this.glossy?" glossy":"")},innerClasses:function(){return this.alignClass+(!0===this.stack?" column":" row")+(!0===this.noWrap?" no-wrap text-no-wrap":"")+(!0===this.loading?" q-btn__content--hidden":"")}}},d=n("dde5"),f=n("d882");e["a"]=o["a"].extend({name:"QBtn",mixins:[h],props:{percentage:Number,darkPercentage:Boolean},computed:{hasLabel:function(){return void 0!==this.label&&null!==this.label&&""!==this.label}},methods:{click:function(t){var e=this;if(!0!==this.pressed){if(void 0!==t){if("submit"===this.type&&(document.activeElement!==document.body&&!1===this.$el.contains(document.activeElement)||!0===this.$q.platform.is.ie&&t.clientX<0))return Object(f["h"])(t),void this.$el.focus();if(!0!==t.qKeyEvent&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),!0===t.defaultPrevented)return;!0===this.hasRouterLink&&Object(f["h"])(t)}var n=function(){e.$router[!0===e.replace?"replace":"push"](e.to)};this.$emit("click",t,n),!0===this.hasRouterLink&&!1!==t.navigate&&n()}},__onKeydown:function(t){!0===[13,32].includes(t.keyCode)&&(this.$el.focus(),Object(f["h"])(t),!0!==this.pressed&&(this.pressed=!0,this.$el.classList.add("q-btn--active"),document.addEventListener("keyup",this.__onKeyupAbort))),this.$emit("keydown",t)},__onKeyup:function(t){if(!0===[13,32].includes(t.keyCode)){this.__onKeyupAbort();var e=new MouseEvent("click",t);e.qKeyEvent=!0,!0===t.defaultPrevented&&e.preventDefault(),this.$el.dispatchEvent(e),Object(f["h"])(t),t.qKeyEvent=!0}this.$emit("keyup",t)},__onKeyupAbort:function(){this.pressed=!1,document.removeEventListener("keyup",this.__onKeyupAbort),this.$el&&this.$el.classList.remove("q-btn--active")}},beforeDestroy:function(){document.removeEventListener("keyup",this.__onKeyupAbort)},render:function(t){var e=[].concat(Object(d["a"])(this,"default")),n={staticClass:"q-btn inline q-btn-item non-selectable",class:this.classes,style:this.style,attrs:this.attrs};return!1===this.isDisabled&&(n.on=r()({},this.$listeners,{click:this.click,keydown:this.__onKeydown,keyup:this.__onKeyup}),!1!==this.ripple&&(n.directives=[{name:"ripple",value:this.ripple,modifiers:{center:this.isRound}}])),!0===this.hasLabel&&e.unshift(t("div",[this.label])),void 0!==this.icon&&e.unshift(t(s["a"],{props:{name:this.icon,left:!1===this.stack&&!0===this.hasLabel}})),void 0!==this.iconRight&&!1===this.isRound&&e.push(t(s["a"],{props:{name:this.iconRight,right:!1===this.stack&&!0===this.hasLabel}})),t(this.isLink?"a":"button",n,[t("div",{staticClass:"q-focus-helper",ref:"blurTarget",attrs:{tabindex:-1}}),!0===this.loading&&void 0!==this.percentage?t("div",{staticClass:"q-btn__progress absolute-full",class:this.darkPercentage?"q-btn__progress--dark":null,style:{transform:"scale3d(".concat(this.percentage/100,",1,1)")}}):null,t("div",{staticClass:"q-btn__content text-center col items-center q-anchor--skip",class:this.innerClasses},e),null!==this.loading?t("transition",{props:{name:"q-transition--fade"}},!0===this.loading?[t("div",{key:"loading",staticClass:"absolute-full flex flex-center"},void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(a["a"])])]:void 0):null])}})},"9c6c":function(t,e,n){var i=n("2b4c")("unscopables"),r=Array.prototype;void 0==r[i]&&n("32e9")(r,i,{}),t.exports=function(t){r[i][t]=!0}},"9c80":function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(e){return{e:!0,v:e}}}},"9cd4":function(t,e,n){"use strict";(function(t){ /*! * The buffer module from node.js, for the browser. * * @author Feross Aboukhadijeh * @license MIT */ -var i=n("f37a"),r=n("9f8d"),o=n("4dd6");function s(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"===typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(e){return!1}}function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function c(t,e){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function b(t){return+t!=t&&(t=0),l.alloc(+t)}function y(t,e){if(l.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return Z(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return J(t).length;default:if(i)return Z(t).length;e=(""+e).toLowerCase(),i=!0}}function w(t,e,n){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return B(this,e,n);case"utf8":case"utf-8":return $(this,e,n);case"ascii":return I(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return D(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,e,n);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}function k(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function x(t,e,n,i,r){if(0===t.length)return-1;if("string"===typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(r)return-1;n=t.length-1}else if(n<0){if(!r)return-1;n=0}if("string"===typeof e&&(e=l.from(e,i)),l.isBuffer(e))return 0===e.length?-1:C(t,e,n,i,r);if("number"===typeof e)return e&=255,l.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):C(t,[e],n,i,r);throw new TypeError("val must be string, number or Buffer")}function C(t,e,n,i,r){var o,s=1,a=t.length,c=e.length;if(void 0!==i&&(i=String(i).toLowerCase(),"ucs2"===i||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(t.length<2||e.length<2)return-1;s=2,a/=2,c/=2,n/=2}function l(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(r){var u=-1;for(o=n;oa&&(n=a-c),o=n;o>=0;o--){for(var h=!0,d=0;dr&&(i=r)):i=r;var o=e.length;if(o%2!==0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var s=0;s239?4:l>223?3:l>191?2:1;if(r+h<=n)switch(h){case 1:l<128&&(u=l);break;case 2:o=t[r+1],128===(192&o)&&(c=(31&l)<<6|63&o,c>127&&(u=c));break;case 3:o=t[r+1],s=t[r+2],128===(192&o)&&128===(192&s)&&(c=(15&l)<<12|(63&o)<<6|63&s,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:o=t[r+1],s=t[r+2],a=t[r+3],128===(192&o)&&128===(192&s)&&128===(192&a)&&(c=(15&l)<<18|(63&o)<<12|(63&s)<<6|63&a,c>65535&&c<1114112&&(u=c))}null===u?(u=65533,h=1):u>65535&&(u-=65536,i.push(u>>>10&1023|55296),u=56320|1023&u),i.push(u),r+=h}return M(i)}e.Buffer=l,e.SlowBuffer=b,e.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:s(),e.kMaxLength=a(),l.poolSize=8192,l._augment=function(t){return t.__proto__=l.prototype,t},l.from=function(t,e,n){return u(null,t,e,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!==typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(t,e,n){return d(null,t,e,n)},l.allocUnsafe=function(t){return f(null,t)},l.allocUnsafeSlow=function(t){return f(null,t)},l.isBuffer=function(t){return!(null==t||!t._isBuffer)},l.compare=function(t,e){if(!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,i=e.length,r=0,o=Math.min(n,i);r0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),""},l.prototype.compare=function(t,e,n,i,r){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),e<0||n>t.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&e>=n)return 0;if(i>=r)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,i>>>=0,r>>>=0,this===t)return 0;for(var o=r-i,s=n-e,a=Math.min(o,s),c=this.slice(i,r),u=t.slice(e,n),h=0;hr)&&(n=r),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return S(this,t,e,n);case"utf8":case"utf-8":return A(this,t,e,n);case"ascii":return E(this,t,e,n);case"latin1":case"binary":return q(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var L=4096;function M(t){var e=t.length;if(e<=L)return String.fromCharCode.apply(String,t);var n="",i=0;while(ii)&&(n=i);for(var r="",o=e;on)throw new RangeError("Trying to access beyond buffer length")}function R(t,e,n,i,r,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>r||et.length)throw new RangeError("Index out of range")}function z(t,e,n,i){e<0&&(e=65535+e+1);for(var r=0,o=Math.min(t.length-n,2);r>>8*(i?r:1-r)}function N(t,e,n,i){e<0&&(e=4294967295+e+1);for(var r=0,o=Math.min(t.length-n,4);r>>8*(i?r:3-r)&255}function H(t,e,n,i,r,o){if(n+i>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function V(t,e,n,i,o){return o||H(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),r.write(t,e,n,i,23,4),n+4}function U(t,e,n,i,o){return o||H(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),r.write(t,e,n,i,52,8),n+8}l.prototype.slice=function(t,e){var n,i=this.length;if(t=~~t,e=void 0===e?i:~~e,t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e0&&(r*=256))i+=this[t+--e]*r;return i},l.prototype.readUInt8=function(t,e){return e||P(t,1,this.length),this[t]},l.prototype.readUInt16LE=function(t,e){return e||P(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUInt16BE=function(t,e){return e||P(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUInt32LE=function(t,e){return e||P(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUInt32BE=function(t,e){return e||P(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=this[t],r=1,o=0;while(++o=r&&(i-=Math.pow(2,8*e)),i},l.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=e,r=1,o=this[t+--i];while(i>0&&(r*=256))o+=this[t+--i]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return e||P(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){e||P(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){e||P(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return e||P(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return e||P(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!1,52,8)},l.prototype.writeUIntLE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){var r=Math.pow(2,8*n)-1;R(this,t,e,n,r,0)}var o=1,s=0;this[e]=255&t;while(++s=0&&(s*=256))this[e+o]=t/s&255;return e+n},l.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,255,0),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):N(this,t,e,!0),e+4},l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=0,s=1,a=0;this[e]=255&t;while(++o>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=n-1,s=1,a=0;this[e+o]=255&t;while(--o>=0&&(s*=256))t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,127,-128),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):N(this,t,e,!0),e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeFloatLE=function(t,e,n){return V(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return V(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return U(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return U(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,i){if(n||(n=0),i||0===i||(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e=0;--r)t[r+e]=this[r+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(r=0;r>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"===typeof t)for(o=e;o55295&&n<57344){if(!r){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===i){(e-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(e-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function K(t){for(var e=[],n=0;n>8,r=n%256,o.push(r),o.push(i)}return o}function J(t){return i.toByteArray(W(t))}function tt(t,e,n,i){for(var r=0;r=e.length||r>=t.length)break;e[r+n]=t[r]}return r}function et(t){return t!==t}}).call(this,n("93d9"))},"9def":function(t,e,n){var i=n("4588"),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},"9e1e":function(t,e,n){t.exports=!n("79e5")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"9e62":function(t,e,n){"use strict";var i=n("2c75");e["a"]={inheritAttrs:!1,props:{contentClass:[Array,String,Object],contentStyle:[Array,String,Object]},methods:{__showPortal:function(){void 0!==this.__portal&&!0!==this.__portal.showing&&(document.body.appendChild(this.__portal.$el),this.__portal.showing=!0)},__hidePortal:function(){void 0!==this.__portal&&!0===this.__portal.showing&&(this.__portal.$el.remove(),this.__portal.showing=!1)}},render:function(){void 0!==this.__portal&&this.__portal.$forceUpdate()},beforeMount:function(){var t=this,e={inheritAttrs:!1,render:function(e){return t.__render(e)},components:this.$options.components,directives:this.$options.directives};void 0!==this.__onPortalClose&&(e.methods={__qClosePopup:this.__onPortalClose});var n=this.__onPortalCreated;void 0!==n&&(e.created=function(){n(this)}),this.__portal=Object(i["b"])(this,e).$mount()},beforeDestroy:function(){this.__portal.$destroy(),this.__portal.$el.remove(),this.__portal=void 0}}},"9f8d":function(t,e){e.read=function(t,e,n,i,r){var o,s,a=8*r-i-1,c=(1<>1,u=-7,h=n?r-1:0,d=n?-1:1,f=t[e+h];for(h+=d,o=f&(1<<-u)-1,f>>=-u,u+=a;u>0;o=256*o+t[e+h],h+=d,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=i;u>0;s=256*s+t[e+h],h+=d,u-=8);if(0===o)o=1-l;else{if(o===c)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,i),o-=l}return(f?-1:1)*s*Math.pow(2,o-i)},e.write=function(t,e,n,i,r,o){var s,a,c,l=8*o-r-1,u=(1<>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:o-1,p=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-s))<1&&(s--,c*=2),e+=s+h>=1?d/c:d*Math.pow(2,1-h),e*c>=2&&(s++,c/=2),s+h>=u?(a=0,s=u):s+h>=1?(a=(e*c-1)*Math.pow(2,r),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,r),s=0));r>=8;t[n+f]=255&a,f+=p,a/=256,r-=8);for(s=s<0;t[n+f]=255&s,f+=p,s/=256,l-=8);t[n+f-p]|=128*m}},a124:function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r=t.tokens;for(n=0,i=r.length;n-1&&r.splice(e,1)}}}},a370:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCardSection",render:function(t){return t("div",{staticClass:"q-card__section",on:this.$listeners},Object(r["a"])(this,"default"))}})},a481:function(t,e,n){"use strict";var i=n("cb7c"),r=n("4bf8"),o=n("9def"),s=n("4588"),a=n("0390"),c=n("5f1b"),l=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(t){return void 0===t?t:String(t)};n("214f")("replace",2,function(t,e,n,m){return[function(i,r){var o=t(this),s=void 0==i?void 0:i[e];return void 0!==s?s.call(i,o,r):n.call(String(o),i,r)},function(t,e){var r=m(n,t,this,e);if(r.done)return r.value;var h=i(t),d=String(this),f="function"===typeof e;f||(e=String(e));var g=h.global;if(g){var _=h.unicode;h.lastIndex=0}var b=[];while(1){var y=c(h,d);if(null===y)break;if(b.push(y),!g)break;var w=String(y[0]);""===w&&(h.lastIndex=a(d,o(h.lastIndex),_))}for(var k="",x=0,C=0;C=x&&(k+=d.slice(x,A)+D,x=A+S.length)}return k+d.slice(x)}];function v(t,e,i,o,s,a){var c=i+t.length,l=o.length,u=f;return void 0!==s&&(s=r(s),u=d),n.call(a,u,function(n,r){var a;switch(r.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,i);case"'":return e.slice(c);case"<":a=s[r.slice(1,-1)];break;default:var u=+r;if(0===u)return n;if(u>l){var d=h(u/10);return 0===d?n:d<=l?void 0===o[d-1]?r.charAt(1):o[d-1]+r.charAt(1):n}a=o[u-1]}return void 0===a?"":a})}})},a5b8:function(t,e,n){"use strict";var i=n("d8e8");function r(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=i(e),this.reject=i(n)}t.exports.f=function(t){return new r(t)}},a7bc:function(t,e){t.exports=/[\0-\x1F\x7F-\x9F]/},a8c6:function(t,e,n){"use strict";function i(t,e,n){var i=e.target;n.touchTargetObserver=new MutationObserver(function(){!1===t.contains(i)&&n.end(e)}),n.touchTargetObserver.observe(t,{childList:!0,subtree:!0})}function r(t){void 0!==t.touchTargetObserver&&(t.touchTargetObserver.disconnect(),t.touchTargetObserver=void 0)}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r})},a915:function(t,e,n){"use strict";var i=n("4883"),r=[["normalize",n("4c26")],["block",n("3408")],["inline",n("a124")],["linkify",n("9921")],["replacements",n("bb4a")],["smartquotes",n("af30")]];function o(){this.ruler=new i;for(var t=0;t:(",">:-("],blush:[':")',':-")'],broken_heart:["c)if("center"===o.vertical)t.top=e[o.vertical]>c/2?c-n.bottom:0,t.maxHeight=Math.min(n.bottom,c);else if(e[o.vertical]>c/2){var u=Math.min(c,"center"===r.vertical?e.center:r.vertical===o.vertical?e.bottom:e.top);t.maxHeight=Math.min(n.bottom,u),t.top=Math.max(0,u-t.maxHeight)}else t.top="center"===r.vertical?e.center:r.vertical===o.vertical?e.top:e.bottom,t.maxHeight=Math.min(n.bottom,c-t.top);if(t.left<0||t.left+n.right>l)if(t.maxWidth=Math.min(n.right,l),"middle"===o.horizontal)t.left=e[o.horizontal]>l/2?l-n.right:0;else if(e[o.horizontal]>l/2){var h=Math.min(l,"middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.right:e.left);t.maxWidth=Math.min(n.right,h),t.left=Math.max(0,h-t.maxWidth)}else t.left="middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.left:e.right,t.maxWidth=Math.min(n.right,l-t.left)}},ac6a:function(t,e,n){for(var i=n("cadf"),r=n("0d58"),o=n("2aba"),s=n("7726"),a=n("32e9"),c=n("84f2"),l=n("2b4c"),u=l("iterator"),h=l("toStringTag"),d=c.Array,f={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=r(f),m=0;m1?arguments[1]:void 0,i=r(e.length),c=void 0===n?i:Math.min(r(n),i),l=String(t);return a?a.call(e,l,c):e.slice(c-l.length,c)===l}})},af30:function(t,e,n){"use strict";var i=n("0068").isWhiteSpace,r=n("0068").isPunctChar,o=n("0068").isMdAsciiPunct,s=/['"]/,a=/['"]/g,c="’";function l(t,e,n){return t.substr(0,e)+n+t.substr(e+1)}function u(t,e){var n,s,u,h,d,f,p,m,v,g,_,b,y,w,k,x,C,S,A,E,q;for(A=[],n=0;n=0;C--)if(A[C].level<=p)break;if(A.length=C+1,"text"===s.type){u=s.content,d=0,f=u.length;t:while(d=0)v=u.charCodeAt(h.index-1);else for(C=n-1;C>=0;C--){if("softbreak"===t[C].type||"hardbreak"===t[C].type)break;if("text"===t[C].type){v=t[C].content.charCodeAt(t[C].content.length-1);break}}if(g=32,d=48&&v<=57&&(x=k=!1),k&&x&&(k=!1,x=b),k||x){if(x)for(C=A.length-1;C>=0;C--){if(m=A[C],A[C].level=0;e--)"inline"===t.tokens[e].type&&s.test(t.tokens[e].content)&&u(t.tokens[e].children,t)}},b05d:function(t,e,n){"use strict";n("7f7f"),n("cadf"),n("456d"),n("ac6a"),n("7514"),n("6b54"),n("aef6"),n("f559"),n("6762"),n("2fdb"),n("c5f6"),n("7cdf"),n("f751");var i=n("0967");function r(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),i=1;i=0?r=s:(r=i+s,r<0&&(r=0));while(rn.length)&&(e=n.length),e-=t.length;var i=n.indexOf(t,e);return-1!==i&&i===e}),!1===i["c"]&&("function"!==typeof Element.prototype.matches&&(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.webkitMatchesSelector||function(t){var e=this,n=(e.document||e.ownerDocument).querySelectorAll(t),i=0;while(n[i]&&n[i]!==e)++i;return Boolean(n[i])}),"function"!==typeof Element.prototype.closest&&(Element.prototype.closest=function(t){var e=this;while(e&&1===e.nodeType){if(e.matches(t))return e;e=e.parentNode}return null}),function(t){t.forEach(function(t){t.hasOwnProperty("remove")||Object.defineProperty(t,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})})}([Element.prototype,CharacterData.prototype,DocumentType.prototype])),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null==this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),i=n.length>>>0,r=arguments[1],o=0;o=i.sm,n.gt.sm=e>=i.md,n.gt.md=e>=i.lg,n.gt.lg=e>=i.xl,n.lt.sm=ei.xl},u={},h=16;this.setSizes=function(t){l.forEach(function(e){void 0!==t[e]&&(u[e]=t[e])})},this.setDebounce=function(t){h=t};var d=function(){var t=getComputedStyle(document.body);t.getPropertyValue("--q-size-sm")&&l.forEach(function(e){n.sizes[e]=parseInt(t.getPropertyValue("--q-size-".concat(e)),10)}),n.setSizes=function(t){l.forEach(function(e){t[e]&&(n.sizes[e]=t[e])}),o(!0)},n.setDebounce=function(t){var e=function(){o()};r&&window.removeEventListener("resize",r,a["d"].passive),r=t>0?Object(c["a"])(e,t):e,window.addEventListener("resize",r,a["d"].passive)},n.setDebounce(h),Object.keys(u).length>0?(n.setSizes(u),u=void 0):o()};!0===i["b"]?e.takeover.push(d):d(),s["a"].util.defineReactive(t,"screen",this)}else t.screen=this}},h=n("582c"),d=n("ec5d"),f=n("bc78");function p(t){return!0===t.ios?"ios":!0===t.android?"android":!0===t.winphone?"winphone":void 0}function m(t,e){var n=t.is,i=t.has,r=t.within,o=[n.desktop?"desktop":"mobile",i.touch?"touch":"no-touch"];if(!0===n.mobile){var s=p(n);void 0!==s&&o.push("platform-"+s)}return!0===n.cordova?(o.push("cordova"),!0!==n.ios||void 0!==e.cordova&&!1===e.cordova.iosStatusBarPadding||o.push("q-ios-padding")):!0===n.electron&&o.push("electron"),!0===r.iframe&&o.push("within-iframe"),o}function v(t,e){var n=m(t,e);!0===t.is.ie&&11===t.is.versionNumber?n.forEach(function(t){return document.body.classList.add(t)}):document.body.classList.add.apply(document.body.classList,n),!0===t.is.ios&&document.body.addEventListener("touchstart",function(){})}function g(t){for(var e in t)Object(f["g"])(e,t[e])}var _={install:function(t,e,n){!0!==i["c"]?(n.brand&&g(n.brand),v(t.platform,n)):e.server.push(function(t,e){var i=m(t.platform,n),r=e.ssr.setBodyClasses;"function"===typeof r?r(i):e.ssr.Q_BODY_CLASSES=i.join(" ")})}},b={name:"material-icons",type:{positive:"check_circle",negative:"warning",info:"info",warning:"priority_high"},arrow:{up:"arrow_upward",right:"arrow_forward",down:"arrow_downward",left:"arrow_back",dropdown:"arrow_drop_down"},chevron:{left:"chevron_left",right:"chevron_right"},colorPicker:{spectrum:"gradient",tune:"tune",palette:"style"},pullToRefresh:{icon:"refresh"},carousel:{left:"chevron_left",right:"chevron_right",navigationIcon:"lens",thumbnails:"view_carousel"},chip:{remove:"cancel",selected:"check"},datetime:{arrowLeft:"chevron_left",arrowRight:"chevron_right",now:"access_time",today:"today"},editor:{bold:"format_bold",italic:"format_italic",strikethrough:"strikethrough_s",underline:"format_underlined",unorderedList:"format_list_bulleted",orderedList:"format_list_numbered",subscript:"vertical_align_bottom",superscript:"vertical_align_top",hyperlink:"link",toggleFullscreen:"fullscreen",quote:"format_quote",left:"format_align_left",center:"format_align_center",right:"format_align_right",justify:"format_align_justify",print:"print",outdent:"format_indent_decrease",indent:"format_indent_increase",removeFormat:"format_clear",formatting:"text_format",fontSize:"format_size",align:"format_align_left",hr:"remove",undo:"undo",redo:"redo",header:"format_size",code:"code",size:"format_size",font:"font_download"},expansionItem:{icon:"keyboard_arrow_down",denseIcon:"arrow_drop_down"},fab:{icon:"add",activeIcon:"close"},field:{clear:"cancel",error:"error"},pagination:{first:"first_page",prev:"keyboard_arrow_left",next:"keyboard_arrow_right",last:"last_page"},rating:{icon:"grade"},stepper:{done:"check",active:"edit",error:"warning"},tabs:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down"},table:{arrowUp:"arrow_upward",warning:"warning",prevPage:"chevron_left",nextPage:"chevron_right"},tree:{icon:"play_arrow"},uploader:{done:"done",clear:"clear",add:"add_box",upload:"cloud_upload",removeQueue:"clear_all",removeUploaded:"done_all"}},y={__installed:!1,install:function(t,e){var n=this;this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b;e.set=n.set,!0===i["c"]||void 0!==t.iconSet?t.iconSet=e:s["a"].util.defineReactive(t,"iconSet",e),n.name=e.name,n.def=e},this.set(e)}},w={server:[],takeover:[]},k={version:o["a"]},x=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.__installed){this.__installed=!0;var n=e.config||{};if(i["a"].install(k,w),_.install(k,w,n),u.install(k,w),h["a"].install(k,n),d["a"].install(k,w,e.lang),y.install(k,e.iconSet),!0===i["c"]?t.mixin({beforeCreate:function(){this.$q=this.$root.$options.$q}}):t.prototype.$q=k,e.components&&Object.keys(e.components).forEach(function(n){var i=e.components[n];"function"===typeof i&&t.component(i.options.name,i)}),e.directives&&Object.keys(e.directives).forEach(function(n){var i=e.directives[n];void 0!==i.name&&void 0!==i.unbind&&t.directive(i.name,i)}),e.plugins){var r={$q:k,queues:w,cfg:n};Object.keys(e.plugins).forEach(function(t){var n=e.plugins[t];"function"===typeof n.install&&n!==i["a"]&&n!==u&&n.install(r)})}}},C=n("3c93"),S=n.n(C),A={mounted:function(){var t=this;w.takeover.forEach(function(e){e(t.$q)})}},E=function(t){if(t.ssr){var e=S()({},k);Object.assign(t.ssr,{Q_HEAD_TAGS:"",Q_BODY_ATTRS:"",Q_BODY_TAGS:""}),w.server.forEach(function(n){n(e,t)}),t.app.$q=e}else{var n=t.app.mixins||[];n.includes(A)||(t.app.mixins=n.concat(A))}};e["a"]={version:o["a"],install:x,lang:d["a"],iconSet:y,ssrUpdate:E}},b0bf:function(t,e,n){"use strict";var i=/]+[^>]*>/;function r(t){return i.test(t)}var o={root:/]+>/,width:/(^|\s)width\s*=\s*"(.+?)"/i,height:/(^|\s)height\s*=\s*"(.+?)"/i,viewbox:/(^|\s)viewbox\s*=\s*"(.+?)"/i};function s(t){var e=1;if(t&&t[2]){var n=t[2].split(/\s/g);4===n.length&&(n=n.map(function(t){return parseInt(t,10)}),e=(n[2]-n[0])/(n[3]-n[1]))}return e}function a(t){var e=t.toString().replace(/[\r\n\s]+/g," "),n=e.match(o.root),i=n&&n[0];if(i){var r=i.match(o.width),a=i.match(o.height),c=i.match(o.viewbox),l=s(c);return{width:parseInt(r&&r[2],10)||0,height:parseInt(a&&a[2],10)||0,ratio:l}}}function c(t){var e=a(t),n=e.width,i=e.height,r=e.ratio;if(n&&i)return{width:n,height:i};if(n)return{width:n,height:Math.floor(n/r)};if(i)return{width:Math.floor(i*r),height:i};throw new TypeError("invalid svg")}t.exports={detect:r,calculate:c}},b0c5:function(t,e,n){"use strict";var i=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:i!==/./.exec},{exec:i})},b117:function(t,e,n){"use strict";t.exports=function(t){var e={};e.src_Any=n("cbc7").source,e.src_Cc=n("a7bc").source,e.src_Z=n("4fc2").source,e.src_P=n("7ca0").source,e.src_ZPCc=[e.src_Z,e.src_P,e.src_Cc].join("|"),e.src_ZCc=[e.src_Z,e.src_Cc].join("|");var i="[><|]";return e.src_pseudo_letter="(?:(?!"+i+"|"+e.src_ZPCc+")"+e.src_Any+")",e.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",e.src_auth="(?:(?:(?!"+e.src_ZCc+"|[@/\\[\\]()]).)+@)?",e.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",e.src_host_terminator="(?=$|"+i+"|"+e.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+e.src_ZPCc+"))",e.src_path="(?:[/?#](?:(?!"+e.src_ZCc+"|"+i+"|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+e.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+e.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+e.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+e.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+e.src_ZCc+"|[']).)+\\'|\\'(?="+e.src_pseudo_letter+"|[-]).|\\.{2,3}[a-zA-Z0-9%/]|\\.(?!"+e.src_ZCc+"|[.]).|"+(t&&t["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+e.src_ZCc+").|\\!(?!"+e.src_ZCc+"|[!]).|\\?(?!"+e.src_ZCc+"|[?]).)+|\\/)?",e.src_email_name='[\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]+',e.src_xn="xn--[a-z0-9\\-]{1,59}",e.src_domain_root="(?:"+e.src_xn+"|"+e.src_pseudo_letter+"{1,63})",e.src_domain="(?:"+e.src_xn+"|(?:"+e.src_pseudo_letter+")|(?:"+e.src_pseudo_letter+"(?:-|"+e.src_pseudo_letter+"){0,61}"+e.src_pseudo_letter+"))",e.src_host="(?:(?:(?:(?:"+e.src_domain+")\\.)*"+e.src_domain+"))",e.tpl_host_fuzzy="(?:"+e.src_ip4+"|(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%)))",e.tpl_host_no_ip_fuzzy="(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%))",e.src_host_strict=e.src_host+e.src_host_terminator,e.tpl_host_fuzzy_strict=e.tpl_host_fuzzy+e.src_host_terminator,e.src_host_port_strict=e.src_host+e.src_port+e.src_host_terminator,e.tpl_host_port_fuzzy_strict=e.tpl_host_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_port_no_ip_fuzzy_strict=e.tpl_host_no_ip_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+e.src_ZPCc+"|>|$))",e.tpl_email_fuzzy="(^|"+i+"|\\(|"+e.src_ZCc+")("+e.src_email_name+"@"+e.tpl_host_fuzzy_strict+")",e.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_fuzzy_strict+e.src_path+")",e.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_no_ip_fuzzy_strict+e.src_path+")",e}},b326:function(t,e){function n(t,e){var n=[],i=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done);i=!0)if(n.push(s.value),e&&n.length===e)break}catch(c){r=!0,o=c}finally{try{i||null==a["return"]||a["return"]()}finally{if(r)throw o}}return n}t.exports=n},b498:function(t,e,n){"use strict";n("f751"),n("28a5"),n("aef6"),n("c5f6");var i=n("adc8"),r=n.n(i),o=(n("f559"),n("6762"),n("2fdb"),n("2b0e")),s=n("8621"),a=function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:250,i=!1;return function(){if(i)return e;i=!0;for(var r=arguments.length,o=new Array(r),s=0;si.sensitivity[0]&&(i.event.dir=s<0?"up":"down"),i.direction.horizontal&&o>a&&a<100&&c>i.sensitivity[0]&&(i.event.dir=r<0?"left":"right"),i.direction.up&&oi.sensitivity[0]&&(i.event.dir="up"),i.direction.down&&o0&&o<100&&l>i.sensitivity[0]&&(i.event.dir="down"),i.direction.left&&o>a&&r<0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="left"),i.direction.right&&o>a&&r>0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="right"),!1!==i.event.dir?(document.body.classList.add("no-pointer-events"),Object(v["h"])(t),Object(g["a"])(),i.handler({evt:t,direction:i.event.dir,duration:e,distance:{x:o,y:a}})):i.event.abort=!0}}else Object(v["h"])(t)},end:function(t){void 0!==i.event&&(Object(m["a"])(i),!1===i.event.abort&&!1!==i.event.dir&&(document.body.classList.remove("no-pointer-events"),Object(v["h"])(t)),i.event=void 0)}};t.__qtouchswipe&&(t.__qtouchswipe_old=t.__qtouchswipe),t.__qtouchswipe=i,!0===n&&t.addEventListener("mousedown",i.mouseStart),t.addEventListener("touchstart",i.start,v["d"].notPassive),t.addEventListener("touchmove",i.move,v["d"].notPassive),t.addEventListener("touchcancel",i.end),t.addEventListener("touchend",i.end)},update:function(t,e){e.oldValue!==e.value&&(t.__qtouchswipe.handler=e.value)},unbind:function(t,e){var n=t.__qtouchswipe_old||t.__qtouchswipe;void 0!==n&&(Object(m["a"])(n),document.body.classList.remove("no-pointer-events"),!0===e.modifiers.mouse&&(t.removeEventListener("mousedown",n.mouseStart),document.removeEventListener("mousemove",n.move,!0),document.removeEventListener("mouseup",n.mouseEnd,!0)),t.removeEventListener("touchstart",n.start,v["d"].notPassive),t.removeEventListener("touchmove",n.move,v["d"].notPassive),t.removeEventListener("touchcancel",n.end),t.removeEventListener("touchend",n.end),delete t[t.__qtouchswipe_old?"__qtouchswipe_old":"__qtouchswipe"])}},w=n("dde5"),k=o["a"].extend({name:"QTabPanelWrapper",render:function(t){return t("div",{staticClass:"q-panel scroll",attrs:{role:"tabpanel"},on:{input:v["g"]}},Object(w["a"])(this,"default"))}}),x={directives:{TouchSwipe:y},props:{value:{required:!0},animated:Boolean,infinite:Boolean,swipeable:Boolean,transitionPrev:{type:String,default:"slide-right"},transitionNext:{type:String,default:"slide-left"},keepAlive:Boolean},data:function(){return{panelIndex:null,panelTransition:null}},computed:{panelDirectives:function(){if(this.swipeable)return[{name:"touch-swipe",value:this.__swipe,modifiers:{horizontal:!0,mouse:!0}}]},contentKey:function(){return"string"===typeof this.value||"number"===typeof this.value?this.value:String(this.value)}},watch:{value:function(t,e){var n=this,i=!0===this.__isValidPanelName(t)?this.__getPanelIndex(t):-1;!0!==this.__forcedPanelTransition&&this.__updatePanelTransition(-1===i?0:i1&&void 0!==arguments[1]?arguments[1]:this.panelIndex,i=n+t,r=this.panels;while(i>-1&&i0&&-1!==n&&n!==r.length&&this.__go(t,-1===t?r.length:-1)},__swipe:function(t){this.__go((!0===this.$q.lang.rtl?-1:1)*("left"===t.direction?1:-1))},__updatePanelIndex:function(){var t=this.__getPanelIndex(this.value);return this.panelIndex!==t&&(this.panelIndex=t),!0},__getPanelContent:function(t){if(0!==this.panels.length){var e=this.__isValidPanelName(this.value)&&this.__updatePanelIndex()&&this.panels[this.panelIndex],n=!0===this.keepAlive?[t("keep-alive",[t(k,{key:this.contentKey},[e])])]:[t("div",{staticClass:"q-panel scroll",key:this.contentKey,attrs:{role:"tabpanel"},on:{input:v["g"]}},[e])];return!0===this.animated?[t("transition",{props:{name:this.panelTransition}},n)]:n}}},render:function(t){return this.panels=void 0!==this.$scopedSlots.default?this.$scopedSlots.default():[],this.__render(t)}},C={props:{name:{required:!0},disable:Boolean}},S=o["a"].extend({name:"QTabPanels",mixins:[x],methods:{__render:function(t){return t("div",{staticClass:"q-tab-panels q-panel-parent",directives:this.panelDirectives,on:this.$listeners},this.__getPanelContent(t))}}}),A=o["a"].extend({name:"QTabPanel",mixins:[C],render:function(t){return t("div",{staticClass:"q-tab-panel",on:this.$listeners},Object(w["a"])(this,"default"))}}),E=["rgb(255,204,204)","rgb(255,230,204)","rgb(255,255,204)","rgb(204,255,204)","rgb(204,255,230)","rgb(204,255,255)","rgb(204,230,255)","rgb(204,204,255)","rgb(230,204,255)","rgb(255,204,255)","rgb(255,153,153)","rgb(255,204,153)","rgb(255,255,153)","rgb(153,255,153)","rgb(153,255,204)","rgb(153,255,255)","rgb(153,204,255)","rgb(153,153,255)","rgb(204,153,255)","rgb(255,153,255)","rgb(255,102,102)","rgb(255,179,102)","rgb(255,255,102)","rgb(102,255,102)","rgb(102,255,179)","rgb(102,255,255)","rgb(102,179,255)","rgb(102,102,255)","rgb(179,102,255)","rgb(255,102,255)","rgb(255,51,51)","rgb(255,153,51)","rgb(255,255,51)","rgb(51,255,51)","rgb(51,255,153)","rgb(51,255,255)","rgb(51,153,255)","rgb(51,51,255)","rgb(153,51,255)","rgb(255,51,255)","rgb(255,0,0)","rgb(255,128,0)","rgb(255,255,0)","rgb(0,255,0)","rgb(0,255,128)","rgb(0,255,255)","rgb(0,128,255)","rgb(0,0,255)","rgb(128,0,255)","rgb(255,0,255)","rgb(245,0,0)","rgb(245,123,0)","rgb(245,245,0)","rgb(0,245,0)","rgb(0,245,123)","rgb(0,245,245)","rgb(0,123,245)","rgb(0,0,245)","rgb(123,0,245)","rgb(245,0,245)","rgb(214,0,0)","rgb(214,108,0)","rgb(214,214,0)","rgb(0,214,0)","rgb(0,214,108)","rgb(0,214,214)","rgb(0,108,214)","rgb(0,0,214)","rgb(108,0,214)","rgb(214,0,214)","rgb(163,0,0)","rgb(163,82,0)","rgb(163,163,0)","rgb(0,163,0)","rgb(0,163,82)","rgb(0,163,163)","rgb(0,82,163)","rgb(0,0,163)","rgb(82,0,163)","rgb(163,0,163)","rgb(92,0,0)","rgb(92,46,0)","rgb(92,92,0)","rgb(0,92,0)","rgb(0,92,46)","rgb(0,92,92)","rgb(0,46,92)","rgb(0,0,92)","rgb(46,0,92)","rgb(92,0,92)","rgb(255,255,255)","rgb(205,205,205)","rgb(178,178,178)","rgb(153,153,153)","rgb(127,127,127)","rgb(102,102,102)","rgb(76,76,76)","rgb(51,51,51)","rgb(25,25,25)","rgb(0,0,0)"];e["a"]=o["a"].extend({name:"QColor",directives:{TouchPan:l["a"]},props:{value:String,defaultValue:String,defaultView:{type:String,default:"spectrum",validator:function(t){return["spectrum","tune","palette"]}},formatModel:{type:String,default:"auto",validator:function(t){return["auto","hex","rgb","hexa","rgba"].includes(t)}},noHeader:Boolean,noFooter:Boolean,disable:Boolean,readonly:Boolean,dark:Boolean},data:function(){return{topView:"auto"===this.formatModel?void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")?"hex":"rgb":this.formatModel.startsWith("hex")?"hex":"rgb",view:this.defaultView,model:this.__parseModel(this.value||this.defaultValue)}},watch:{value:function(t){var e=this.__parseModel(t||this.defaultValue);e.hex!==this.model.hex&&(this.model=e)},defaultValue:function(t){if(!this.value&&t){var e=this.__parseModel(t);e.hex!==this.model.hex&&(this.model=e)}}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},forceHex:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("hex")>-1},forceAlpha:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1},isHex:function(){return void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")},isOutputHex:function(){return null!==this.forceHex?this.forceHex:this.isHex},hasAlpha:function(){return null!==this.forceAlpha?this.forceAlpha:void 0!==this.model.a},currentBgColor:function(){return{backgroundColor:this.model.rgb||"#000"}},headerClass:function(){var t=void 0!==this.model.a&&this.model.a<65||Object(c["c"])(this.model)>.4;return"q-color-picker__header-content--".concat(t?"light":"dark")},spectrumStyle:function(){return{background:"hsl(".concat(this.model.h,",100%,50%)")}},spectrumPointerStyle:function(){return r()({top:"".concat(100-this.model.v,"%")},this.$q.lang.rtl?"right":"left","".concat(this.model.s,"%"))},inputsArray:function(){var t=["r","g","b"];return!0===this.hasAlpha&&t.push("a"),t}},created:function(){this.__spectrumChange=a(this.__spectrumChange,20)},render:function(t){var e=[this.__getContent(t)];return!0!==this.noHeader&&e.unshift(this.__getHeader(t)),!0!==this.noFooter&&e.push(this.__getFooter(t)),t("div",{staticClass:"q-color-picker",class:{disabled:this.disable,"q-color-picker--dark":this.dark}},e)},methods:{__getHeader:function(t){var e=this;return t("div",{staticClass:"q-color-picker__header relative-position overflow-hidden"},[t("div",{staticClass:"q-color-picker__header-bg absolute-full"}),t("div",{staticClass:"q-color-picker__header-content absolute-full",class:this.headerClass,style:this.currentBgColor},[t(d["a"],{props:{value:this.topView,dense:!0,align:"justify"},on:{input:function(t){e.topView=t}}},[t(f["a"],{props:{label:"HEX"+(!0===this.hasAlpha?"A":""),name:"hex",ripple:!1}}),t(f["a"],{props:{label:"RGB"+(!0===this.hasAlpha?"A":""),name:"rgb",ripple:!1}})]),t("div",{staticClass:"q-color-picker__header-banner row flex-center no-wrap"},[t("input",{staticClass:"fit",domProps:{value:this.model[this.topView]},attrs:this.editable?null:{readonly:!0},on:{input:function(t){e.__updateErrorIcon(!0===e.__onEditorChange(t))},blur:function(t){!0===e.__onEditorChange(t,!0)&&e.$forceUpdate(),e.__updateErrorIcon(!1)}}}),t(h["a"],{ref:"errorIcon",staticClass:"q-color-picker__error-icon absolute no-pointer-events",props:{name:this.$q.iconSet.type.negative}})])])])},__getContent:function(t){return t(S,{props:{value:this.view,animated:!0}},[t(A,{staticClass:"q-color-picker__spectrum-tab",props:{name:"spectrum"}},this.__getSpectrumTab(t)),t(A,{staticClass:"q-pa-md q-color-picker__tune-tab",props:{name:"tune"}},this.__getTuneTab(t)),t(A,{staticClass:"q-pa-sm q-color-picker__palette-tab",props:{name:"palette"}},this.__getPaletteTab(t))])},__getFooter:function(t){var e=this;return t(d["a"],{staticClass:"q-color-picker__footer",props:{value:this.view,dense:!0,align:"justify"},on:{input:function(t){e.view=t}}},[t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.spectrum,name:"spectrum",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.tune,name:"tune",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.palette,name:"palette",ripple:!1}})])},__getSpectrumTab:function(t){var e=this;return[t("div",{ref:"spectrum",staticClass:"q-color-picker__spectrum non-selectable relative-position cursor-pointer",style:this.spectrumStyle,class:{readonly:!this.editable},on:this.editable?{click:this.__spectrumClick}:null,directives:this.editable?[{name:"touch-pan",modifiers:{prevent:!0,stop:!0,mouse:!0,mousePrevent:!0,mouseStop:!0},value:this.__spectrumPan}]:null},[t("div",{style:{paddingBottom:"100%"}}),t("div",{staticClass:"q-color-picker__spectrum-white absolute-full"}),t("div",{staticClass:"q-color-picker__spectrum-black absolute-full"}),t("div",{staticClass:"absolute",style:this.spectrumPointerStyle},[void 0!==this.model.hex?t("div",{staticClass:"q-color-picker__spectrum-circle"}):null])]),t("div",{staticClass:"q-color-picker__sliders"},[t("div",{staticClass:"q-color-picker__hue q-mx-sm non-selectable"},[t(u["a"],{props:{value:this.model.h,min:0,max:360,fillHandleAlways:!0,readonly:!this.editable},on:{input:this.__onHueChange,dragend:function(t){return e.__onHueChange(t,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"q-mx-sm q-color-picker__alpha non-selectable"},[t(u["a"],{props:{value:this.model.a,min:0,max:100,fillHandleAlways:!0,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)},dragend:function(t){return e.__onNumericChange({target:{value:t}},"a",100,!0)}}})]):null])]},__getTuneTab:function(t){var e=this;return[t("div",{staticClass:"row items-center no-wrap"},[t("div",["R"]),t(u["a"],{props:{value:this.model.r,min:0,max:255,color:"red",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"r",255)}}}),t("input",{domProps:{value:this.model.r},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"r",255)},blur:function(t){return e.__onNumericChange(t,"r",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["G"]),t(u["a"],{props:{value:this.model.g,min:0,max:255,color:"green",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"g",255)}}}),t("input",{domProps:{value:this.model.g},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"g",255)},blur:function(t){return e.__onNumericChange(t,"g",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["B"]),t(u["a"],{props:{value:this.model.b,min:0,max:255,color:"blue",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"b",255)}}}),t("input",{domProps:{value:this.model.b},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"b",255)},blur:function(t){return e.__onNumericChange(t,"b",255,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"row items-center no-wrap"},[t("div",["A"]),t(u["a"],{props:{value:this.model.a,color:"grey",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)}}}),t("input",{domProps:{value:this.model.a},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"a",100)},blur:function(t){return e.__onNumericChange(t,"a",100,!0)}}})]):null]},__getPaletteTab:function(t){var e=this;return[t("div",{staticClass:"row items-center",class:this.editable?"cursor-pointer":null},E.map(function(n){return t("div",{staticClass:"q-color-picker__cube col-auto",style:{backgroundColor:n},on:e.editable?{click:function(){e.__onPalettePick(n)}}:null})}))]},__onSpectrumChange:function(t,e,n){var i=this.$refs.spectrum;if(void 0!==i){var r=i.clientWidth,o=i.clientHeight,s=i.getBoundingClientRect(),a=Math.min(r,Math.max(0,t-s.left));this.$q.lang.rtl&&(a=r-a);var l=Math.min(o,Math.max(0,e-s.top)),u=Math.round(100*a/r),h=Math.round(100*Math.max(0,Math.min(1,-l/o+1))),d=Object(c["b"])({h:this.model.h,s:u,v:h,a:!0===this.hasAlpha?this.model.a:void 0});this.model.s=u,this.model.v=h,this.__update(d,n)}},__onHueChange:function(t,e){t=Math.round(t);var n=Object(c["b"])({h:t,s:this.model.s,v:this.model.v,a:!0===this.hasAlpha?this.model.a:void 0});this.model.h=t,this.__update(n,e)},__onNumericChange:function(t,e,n,i){if(/^[0-9]+$/.test(t.target.value)){var r=Math.floor(Number(t.target.value));if(r<0||r>n)i&&this.$forceUpdate();else{var o={r:"r"===e?r:this.model.r,g:"g"===e?r:this.model.g,b:"b"===e?r:this.model.b,a:!0===this.hasAlpha?"a"===e?r:this.model.a:void 0};if("a"!==e){var s=Object(c["e"])(o);this.model.h=s.h,this.model.s=s.s,this.model.v=s.v}if(this.__update(o,i),!0!==i&&void 0!==t.target.selectionEnd){var a=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(a,a)})}}}else i&&this.$forceUpdate()},__onEditorChange:function(t,e){var n,i=t.target.value;if("hex"===this.topView){if(i.length!==(!0===this.hasAlpha?9:7)||!/^#[0-9A-Fa-f]+$/.test(i))return!0;n=Object(c["a"])(i)}else{var r;if(!i.endsWith(")"))return!0;if(!0!==this.hasAlpha&&i.startsWith("rgb(")){if(r=i.substring(4,i.length-1).split(",").map(function(t){return parseInt(t,10)}),3!==r.length||!/^rgb\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3}\)$/.test(i))return!0}else{if(!0!==this.hasAlpha||!i.startsWith("rgba("))return!0;if(r=i.substring(5,i.length-1).split(","),4!==r.length||!/^rgba\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/.test(i))return!0;for(var o=0;o<3;o++){var s=parseInt(r[o],10);if(s<0||s>255)return!0;r[o]=s}var a=parseFloat(r[3]);if(a<0||a>1)return!0;r[3]=a}if(r[0]<0||r[0]>255||r[1]<0||r[1]>255||r[2]<0||r[2]>255||!0===this.hasAlpha&&(r[3]<0||r[3]>1))return!0;n={r:r[0],g:r[1],b:r[2],a:!0===this.hasAlpha?100*r[3]:void 0}}var l=Object(c["e"])(n);if(this.model.h=l.h,this.model.s=l.s,this.model.v=l.v,this.__update(n,e),!0!==e){var u=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(u,u)})}},__onPalettePick:function(t){var e=t.substring(4,t.length-1).split(","),n={r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:this.model.a},i=Object(c["e"])(n);this.model.h=i.h,this.model.s=i.s,this.model.v=i.v,this.__update(n,!0)},__update:function(t,e){this.model.hex=Object(c["d"])(t),this.model.rgb=Object(c["f"])(t),this.model.r=t.r,this.model.g=t.g,this.model.b=t.b,this.model.a=t.a;var n=this.model[!0===this.isOutputHex?"hex":"rgb"];this.$emit("input",n),e&&n!==this.value&&this.$emit("change",n)},__updateErrorIcon:function(t){this.$refs.errorIcon.$el.style.opacity=t?1:0},__parseModel:function(t){var e=void 0!==this.forceAlpha?this.forceAlpha:"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1;if(null===t||void 0===t||""===t||!0!==s["a"].anyColor(t))return{h:0,s:0,v:0,r:0,g:0,b:0,a:!0===e?100:void 0,hex:void 0,rgb:void 0};var n=Object(c["h"])(t);return!0===e&&void 0===n.a&&(n.a=100),n.hex=Object(c["d"])(n),n.rgb=Object(c["f"])(n),Object.assign(n,Object(c["e"])(n))},__spectrumPan:function(t){t.isFinal?this.__onSpectrumChange(t.position.left,t.position.top,!0):this.__spectrumChange(t)},__spectrumChange:function(t){this.__onSpectrumChange(t.position.left,t.position.top)},__spectrumClick:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset,!0)}}})},b6b4:function(t,e){function n(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}t.exports=n},b6d5:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("0909"),s=n("0967");e["a"]=i["a"].extend({name:"QResizeObserver",mixins:[o["a"]],props:{debounce:{type:[String,Number],default:100}},data:function(){return this.hasObserver?{}:{url:this.$q.platform.is.ie?null:"about:blank"}},methods:{trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__onResize():this.timer||(this.timer=setTimeout(this.__onResize,this.debounce))},__onResize:function(){if(this.timer=null,this.$el&&this.$el.parentNode){var t=this.$el.parentNode,e={width:t.offsetWidth,height:t.offsetHeight};e.width===this.size.width&&e.height===this.size.height||(this.size=e,this.$emit("resize",this.size))}}},render:function(t){var e=this;if(!1!==this.canRender&&!0!==this.hasObserver)return t("object",{style:this.style,attrs:{tabindex:-1,type:"text/html",data:this.url,"aria-hidden":!0},on:{load:function(){e.$el.contentDocument.defaultView.addEventListener("resize",e.trigger,r["d"].passive),e.trigger(!0)}}})},beforeCreate:function(){this.size={width:-1,height:-1},!0!==s["c"]&&(this.hasObserver="undefined"!==typeof ResizeObserver,!0!==this.hasObserver&&(this.style="".concat(this.$q.platform.is.ie?"visibility:hidden;":"","display:block;position:absolute;top:0;left:0;right:0;bottom:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1;")))},mounted:function(){if(!0===this.hasObserver)return this.observer=new ResizeObserver(this.trigger),void this.observer.observe(this.$el.parentNode);this.trigger(!0),this.$q.platform.is.ie&&(this.url="about:blank")},beforeDestroy:function(){clearTimeout(this.timer),!0!==this.hasObserver?this.$el.contentDocument&&this.$el.contentDocument.defaultView.removeEventListener("resize",this.trigger,r["d"].passive):this.$el.parentNode&&this.observer.unobserve(this.$el.parentNode)}})},baca:function(t,e,n){"use strict";function i(t){switch(t){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}t.exports=function(t,e){var n=t.pos;while(n=0;e--)n=t[e],"text"!==n.type||i||(n.content=n.content.replace(o,a)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function l(t){var e,n,r=0;for(e=t.length-1;e>=0;e--)n=t[e],"text"!==n.type||r||i.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---([^-]|$)/gm,"$1—$2").replace(/(^|\s)--(\s|$)/gm,"$1–$2").replace(/(^|[^-\s])--([^-\s]|$)/gm,"$1–$2")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&(r.test(t.tokens[e].content)&&c(t.tokens[e].children),i.test(t.tokens[e].content)&&l(t.tokens[e].children))}},bc78:function(t,e,n){"use strict";n.d(e,"d",function(){return i}),n.d(e,"f",function(){return r}),n.d(e,"h",function(){return o}),n.d(e,"a",function(){return s}),n.d(e,"b",function(){return a}),n.d(e,"e",function(){return c}),n.d(e,"c",function(){return d}),n.d(e,"g",function(){return f});n("28a5"),n("f559"),n("a481"),n("6b54");function i(t){var e=t.r,n=t.g,i=t.b,r=t.a,o=void 0!==r;if(e=Math.round(e),n=Math.round(n),i=Math.round(i),e>255||n>255||i>255||o&&r>100)throw new TypeError("Expected 3 numbers below 256 (and optionally one below 100)");return r=o?(256|Math.round(255*r/100)).toString(16).slice(1):"","#"+(i|n<<8|e<<16|1<<24).toString(16).slice(1)+r}function r(t){var e=t.r,n=t.g,i=t.b,r=t.a;return"rgb".concat(void 0!==r?"a":"","(").concat(e,",").concat(n,",").concat(i).concat(void 0!==r?","+r/100:"",")")}function o(t){if("string"!==typeof t)throw new TypeError("Expected a string");if(t=t.replace(/ /g,""),t.startsWith("#"))return s(t);var e=t.substring(t.indexOf("(")+1,t.length-1).split(",");return{r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:void 0!==e[3]?100*parseFloat(e[3]):void 0}}function s(t){if("string"!==typeof t)throw new TypeError("Expected a string");t=t.replace(/^#/,""),3===t.length?t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]:4===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]+t[3]+t[3]);var e=parseInt(t,16);return t.length>6?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:Math.round((255&e)/2.55)}:{r:e>>16,g:e>>8&255,b:255&e}}function a(t){var e,n,i,r,o,s,a,c,l=t.h,u=t.s,h=t.v,d=t.a;switch(u/=100,h/=100,l/=360,r=Math.floor(6*l),o=6*l-r,s=h*(1-u),a=h*(1-o*u),c=h*(1-(1-o)*u),r%6){case 0:e=h,n=c,i=s;break;case 1:e=a,n=h,i=s;break;case 2:e=s,n=h,i=c;break;case 3:e=s,n=a,i=h;break;case 4:e=c,n=s,i=h;break;case 5:e=h,n=s,i=a;break}return{r:Math.round(255*e),g:Math.round(255*n),b:Math.round(255*i),a:d}}function c(t){var e,n=t.r,i=t.g,r=t.b,o=t.a,s=Math.max(n,i,r),a=Math.min(n,i,r),c=s-a,l=0===s?0:c/s,u=s/255;switch(s){case a:e=0;break;case n:e=i-r+c*(i2&&void 0!==arguments[2]?arguments[2]:document.body;if("string"!==typeof t)throw new TypeError("Expected a string as color");if("string"!==typeof e)throw new TypeError("Expected a string as value");if(!(n instanceof Element))throw new TypeError("Expected a DOM element");switch(n.style.setProperty("--q-color-".concat(t),e),t){case"negative":case"warning":n.style.setProperty("--q-color-".concat(t,"-l"),h(e,46));break;case"light":n.style.setProperty("--q-color-".concat(t,"-d"),h(e,-10))}}},bcaa:function(t,e,n){var i=n("cb7c"),r=n("d3f4"),o=n("a5b8");t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t),s=n.resolve;return s(e),n.promise}},bd4c:function(t,e,n){"use strict";n.d(e,"b",function(){return v});n("4917"),n("a481"),n("28a5");var i=n("68bf"),r=n.n(i),o=(n("cadf"),n("456d"),n("ac6a"),n("5ff7")),s=n("7937"),a=n("ec5d"),c=864e5,l=36e5,u=6e4,h=/\[((?:[^\]\\]|\\]|\\)*)\]|d{1,4}|M{1,4}|m{1,2}|w{1,2}|Qo|Do|D{1,4}|YY(?:YY)?|H{1,2}|h{1,2}|s{1,2}|S{1,3}|Z{1,2}|a{1,2}|[AQExX]/g;function d(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=t>0?"-":"+",i=Math.abs(t),r=Math.floor(i/60),o=i%60;return n+Object(s["d"])(r)+e+Object(s["d"])(o)}function f(t,e){var n=new Date(t.getFullYear(),e,0,0,0,0,0),i=n.getDate();t.setMonth(e-1,Math.min(i,t.getDate()))}function p(t,e,n){var i=new Date(t),r=n?1:-1;return Object.keys(e).forEach(function(t){if("month"!==t){var n="year"===t?"FullYear":Object(s["b"])("days"===t?"date":t);i["set".concat(n)](i["get".concat(n)]()+r*e[t])}else f(i,i.getMonth()+1+r*e.month)}),i}function m(t){if("number"===typeof t)return!0;var e=Date.parse(t);return!1===isNaN(e)}function v(t){var e=t,n=e.split("/").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),i=r()(n,3),o=i[0],s=i[1],a=i[2];return(a<1||a>new Date(o,s,0).getDate())&&(a=null),(s>12||0===s)&&(s=s%12||12),null!==o&&null!==s&&null!==a||(e=null,null!==o&&null===s&&(s=1)),{year:o,month:s,day:a,value:e}}function g(t){var e=t.split(":").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),n=r()(e,3),i=n[0],o=n[1],s=n[2];return{hour:null===i?null:i%24,minute:null===o?null:o%60,second:null===s?null:s%60}}function _(t,e){return C(new Date,t,e)}function b(t){var e=new Date(t).getDay();return 0===e?7:e}function y(t){var e=new Date(t.getFullYear(),t.getMonth(),t.getDate());e.setDate(e.getDate()-(e.getDay()+6)%7+3);var n=new Date(e.getFullYear(),0,4);n.setDate(n.getDate()-(n.getDay()+6)%7+3);var i=e.getTimezoneOffset()-n.getTimezoneOffset();e.setHours(e.getHours()-i);var r=(e-n)/(7*c);return 1+Math.floor(r)}function w(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=new Date(e).getTime(),o=new Date(n).getTime(),s=new Date(t).getTime();return i.inclusiveFrom&&r--,i.inclusiveTo&&o++,s>r&&s1?n-1:0),r=1;r1?n-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:"days",i=new Date(t),r=new Date(e);switch(n){case"years":return i.getFullYear()-r.getFullYear();case"months":return 12*(i.getFullYear()-r.getFullYear())+i.getMonth()-r.getMonth();case"days":return T(S(i,"day"),S(r,"day"),c);case"hours":return T(S(i,"hour"),S(r,"hour"),l);case"minutes":return T(S(i,"minute"),S(r,"minute"),u);case"seconds":return T(S(i,"second"),S(r,"second"),1e3)}}function D(t){return O(t,S(t,"year"),"days")+1}function $(t){return Object(o["a"])(t)?"date":"number"===typeof t?"number":"string"}function L(t,e,n){if(t||0===t)switch(e){case"date":return t;case"number":return t.getTime();default:return P(t,n)}}function M(t,e,n){var i=new Date(t);if(e){var r=new Date(e);if(io)return o}return i}function I(t,e,n){var i=new Date(t),r=new Date(e);if(void 0===n)return i.getTime()===r.getTime();switch(n){case"second":if(i.getSeconds()!==r.getSeconds())return!1;case"minute":if(i.getMinutes()!==r.getMinutes())return!1;case"hour":if(i.getHours()!==r.getHours())return!1;case"day":if(i.getDate()!==r.getDate())return!1;case"month":if(i.getMonth()!==r.getMonth())return!1;case"year":if(i.getFullYear()!==r.getFullYear())return!1;break;default:throw new Error("date isSameDate unknown unit ".concat(n))}return!0}function j(t){return new Date(t.getFullYear(),t.getMonth()+1,0).getDate()}function B(t){if(t>=11&&t<=13)return"".concat(t,"th");switch(t%10){case 1:return"".concat(t,"st");case 2:return"".concat(t,"nd");case 3:return"".concat(t,"rd")}return"".concat(t,"th")}var F={YY:function(t){return Object(s["d"])(t.getFullYear(),4).substr(2)},YYYY:function(t){return Object(s["d"])(t.getFullYear(),4)},M:function(t){return t.getMonth()+1},MM:function(t){return Object(s["d"])(t.getMonth()+1)},MMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNamesShort||a["a"].props.date.monthsShort)[t.getMonth()]},MMMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNames||a["a"].props.date.months)[t.getMonth()]},Q:function(t){return Math.ceil((t.getMonth()+1)/3)},Qo:function(t){return B(this.Q(t))},D:function(t){return t.getDate()},Do:function(t){return B(t.getDate())},DD:function(t){return Object(s["d"])(t.getDate())},DDD:function(t){return D(t)},DDDD:function(t){return Object(s["d"])(D(t),3)},d:function(t){return t.getDay()},dd:function(t){return this.dddd(t).slice(0,2)},ddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNamesShort||a["a"].props.date.daysShort)[t.getDay()]},dddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNames||a["a"].props.date.days)[t.getDay()]},E:function(t){return t.getDay()||7},w:function(t){return y(t)},ww:function(t){return Object(s["d"])(y(t))},H:function(t){return t.getHours()},HH:function(t){return Object(s["d"])(t.getHours())},h:function(t){var e=t.getHours();return 0===e?12:e>12?e%12:e},hh:function(t){return Object(s["d"])(this.h(t))},m:function(t){return t.getMinutes()},mm:function(t){return Object(s["d"])(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return Object(s["d"])(t.getSeconds())},S:function(t){return Math.floor(t.getMilliseconds()/100)},SS:function(t){return Object(s["d"])(Math.floor(t.getMilliseconds()/10))},SSS:function(t){return Object(s["d"])(t.getMilliseconds(),3)},A:function(t){return this.H(t)<12?"AM":"PM"},a:function(t){return this.H(t)<12?"am":"pm"},aa:function(t){return this.H(t)<12?"a.m.":"p.m."},Z:function(t){return d(t.getTimezoneOffset(),":")},ZZ:function(t){return d(t.getTimezoneOffset())},X:function(t){return Math.floor(t.getTime()/1e3)},x:function(t){return t.getTime()}};function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"YYYY-MM-DDTHH:mm:ss.SSSZ",n=arguments.length>2?arguments[2]:void 0;if((0===t||t)&&t!==1/0&&t!==-1/0){var i=new Date(t);if(!isNaN(i))return e.replace(h,function(t,e){return t in F?F[t](i,n):void 0===e?t:e.split("\\]").join("]")})}}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return t.match(h)}function z(t){return Object(o["a"])(t)?new Date(t.getTime()):t}e["a"]={isValid:m,splitDate:v,splitTime:g,buildDate:_,getDayOfWeek:b,getWeekOfYear:y,isBetweenDates:w,addToDate:k,subtractFromDate:x,adjustDate:C,startOfDate:S,endOfDate:A,getMaxDate:E,getMinDate:q,getDateDiff:O,getDayOfYear:D,inferDateFormat:$,convertDateToFormat:L,getDateBetween:M,isSameDate:I,daysInMonth:j,formatter:F,formatDate:P,matchFormat:R,clone:z}},bd68:function(t,e,n){"use strict";t.exports=n("f0f2")},be03:function(t,e){var n=!0,i=!1,r=!1;function o(t,e,n){var i=t.attrIndex(e),r=[e,n];i<0?t.attrPush(r):t.attrs[i]=r}function s(t,e){for(var n=t[e].level-1,i=e-1;i>=0;i--)if(t[i].level===n)return i;return-1}function a(t,e){return f(t[e])&&p(t[e-1])&&m(t[e-2])&&v(t[e])}function c(t,e){if(t.children.unshift(l(t,e)),t.children[1].content=t.children[1].content.slice(3),t.content=t.content.slice(3),i)if(r){t.children.pop();var n="task-item-"+Math.ceil(1e7*Math.random()-1e3);t.children[0].content=t.children[0].content.slice(0,-1)+' id="'+n+'">',t.children.push(d(t.content,n,e))}else t.children.unshift(u(e)),t.children.push(h(e))}function l(t,e){var i=new e("html_inline","",0),r=n?' disabled="" ':"";return 0===t.content.indexOf("[ ] ")?i.content='
\n':'
\n')+'
\n
    \n'}function a(){return"
\n
\n"}function c(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),'
  • '}function l(){return"
  • \n"}function u(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),'
    ↩︎'}t.exports=function(t){var e=t.helpers.parseLinkLabel,n=t.utils.isSpace;function h(t,e,i,r){var o,s,a,c,l,u,h,d,f,p,m,v=t.bMarks[e]+t.tShift[e],g=t.eMarks[e];if(v+4>g)return!1;if(91!==t.src.charCodeAt(v))return!1;if(94!==t.src.charCodeAt(v+1))return!1;for(l=v+2;l=g||58!==t.src.charCodeAt(++l))return!1;if(r)return!0;l++,t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.refs||(t.env.footnotes.refs={}),u=t.src.slice(v+2,l-2),t.env.footnotes.refs[":"+u]=-1,h=new t.Token("footnote_reference_open","",1),h.meta={label:u},h.level=t.level++,t.tokens.push(h),o=t.bMarks[e],s=t.tShift[e],a=t.sCount[e],c=t.parentType,m=l,d=f=t.sCount[e]+l-(t.bMarks[e]+t.tShift[e]);while(l=c)&&(94===t.src.charCodeAt(l)&&(91===t.src.charCodeAt(l+1)&&(i=l+2,r=e(t,l+1),!(r<0)&&(n||(t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.list||(t.env.footnotes.list=[]),o=t.env.footnotes.list.length,t.md.inline.parse(t.src.slice(i,r),t.md,t.env,a=[]),s=t.push("footnote_ref","",0),s.meta={id:o},t.env.footnotes.list[o]={tokens:a}),t.pos=r+1,t.posMax=c,!0))))}function f(t,e){var n,i,r,o,s,a=t.posMax,c=t.pos;if(c+3>a)return!1;if(!t.env.footnotes||!t.env.footnotes.refs)return!1;if(91!==t.src.charCodeAt(c))return!1;if(94!==t.src.charCodeAt(c+1))return!1;for(i=c+2;i=a)&&(i++,n=t.src.slice(c+2,i-1),"undefined"!==typeof t.env.footnotes.refs[":"+n]&&(e||(t.env.footnotes.list||(t.env.footnotes.list=[]),t.env.footnotes.refs[":"+n]<0?(r=t.env.footnotes.list.length,t.env.footnotes.list[r]={label:n,count:0},t.env.footnotes.refs[":"+n]=r):r=t.env.footnotes.refs[":"+n],o=t.env.footnotes.list[r].count,t.env.footnotes.list[r].count++,s=t.push("footnote_ref","",0),s.meta={id:r,subId:o,label:n}),t.pos=i,t.posMax=a,!0)))}function p(t){var e,n,i,r,o,s,a,c,l,u,h=!1,d={};if(t.env.footnotes&&(t.tokens=t.tokens.filter(function(t){return"footnote_reference_open"===t.type?(h=!0,l=[],u=t.meta.label,!1):"footnote_reference_close"===t.type?(h=!1,d[":"+u]=l,!1):(h&&l.push(t),!h)}),t.env.footnotes.list)){for(s=t.env.footnotes.list,a=new t.Token("footnote_block_open","",1),t.tokens.push(a),e=0,n=s.length;e0?s[e].count:1,i=0;i=4)return!1;if(62!==t.src.charCodeAt(A++))return!1;if(r)return!0;c=f=t.sCount[e]+A-(t.bMarks[e]+t.tShift[e]),32===t.src.charCodeAt(A)?(A++,c++,f++,o=!1,y=!0):9===t.src.charCodeAt(A)?(y=!0,(t.bsCount[e]+f)%4===3?(A++,c++,f++,o=!1):o=!0):y=!1,p=[t.bMarks[e]],t.bMarks[e]=A;while(A=E,_=[t.sCount[e]],t.sCount[e]=f-c,b=[t.tShift[e]],t.tShift[e]=A-t.bMarks[e],k=t.md.block.ruler.getRules("blockquote"),g=t.parentType,t.parentType="blockquote",C=!1,d=e+1;d=E)break;if(62!==t.src.charCodeAt(A++)||C){if(u)break;for(w=!1,a=0,l=k.length;a=E,m.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(y?1:0),_.push(t.sCount[d]),t.sCount[d]=f-c,b.push(t.tShift[d]),t.tShift[d]=A-t.bMarks[d]}}for(v=t.blkIndent,t.blkIndent=0,x=t.push("blockquote_open","blockquote",1),x.markup=">",x.map=h=[e,0],t.md.block.tokenize(t,e,d),x=t.push("blockquote_close","blockquote",-1),x.markup=">",t.lineMax=S,t.parentType=g,h[1]=t.line,a=0;a2&&void 0!==arguments[2]?arguments[2]:{};return this.setTextColor(t,this.setBackgroundColor(e,n))},setBackgroundColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{"background-color":"".concat(t),"border-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"bg-"+n,!0))}return e},setTextColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{color:"".concat(t),"caret-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"text-"+n,!0))}return e}}}),h=(n("7514"),n("20d6"),n("c5f6"),{scroller:{value:{type:String,required:!0},items:{type:Array,required:!0},height:{type:[Number,String],required:!0},dense:Boolean,disabledItems:Array,disable:Boolean},base:{value:[String,Array],borderColor:{type:String,default:"#ccc"},barColor:{type:String,default:"#ccc"},color:{type:String,default:"white"},backgroundColor:{type:String,default:"primary"},innerColor:{type:String,default:"primary"},innerBackgroundColor:{type:String,default:"white"},dense:Boolean,disable:Boolean,roundedBorders:Boolean,noBorder:Boolean,noHeader:Boolean,noFooter:Boolean,noShadow:Boolean},locale:{locale:{type:String,default:"en-us"}},date:{minDate:String,maxDate:String,dates:Array,disabledDates:Array,disabledYears:{type:Array,default:function(){return[]}},disabledMonths:{type:Array,default:function(){return[]}},disabledDays:{type:Array,default:function(){return[]}},shortYearLabel:Boolean,shortMonthLabel:Boolean,shortDayLabel:Boolean,showMonthLabel:Boolean,showWeekdayLabel:Boolean,noDays:Boolean,noMonths:Boolean,noYears:Boolean},time:{minuteInterval:{type:[String,Number],default:1},hourInterval:{type:[String,Number],default:1},shortTimeLabel:Boolean,disabledHours:{type:Array,default:function(){return[]}},disabledMinutes:{type:Array,default:function(){return[]}},noMinutes:Boolean,noHours:Boolean,hours:Array,minutes:Array,minTime:{type:String,default:"00:00"},maxTime:{type:String,default:"24:00"}},timeRange:{displaySeparator:{type:String,default:" - "},startMinuteInterval:{type:[String,Number],default:1},startHourInterval:{type:[String,Number],default:1},startShortTimeLabel:Boolean,startDisabledHours:{type:Array,default:function(){return[]}},startDisabledMinutes:{type:Array,default:function(){return[]}},startNoMinutes:Boolean,startNoHours:Boolean,startHours:Array,startMinutes:Array,startMinTime:{type:String,default:"00:00"},startMaxTime:{type:String,default:"24:00"},endMinuteInterval:{type:[String,Number],default:1},endHourInterval:{type:[String,Number],default:1},endShortTimeLabel:Boolean,endDisabledHours:{type:Array,default:function(){return[]}},endDisabledMinutes:{type:Array,default:function(){return[]}},endNoMinutes:Boolean,endNoHours:Boolean,endHours:Array,endMinutes:Array,endMinTime:{type:String,default:"00:00"},endMaxTime:{type:String,default:"24:00"}},dateRange:{displaySeparator:{type:String,default:" - "},startMinDate:String,startMaxDate:String,startDates:Array,startDisabledDates:Array,startDisabledYears:{type:Array,default:function(){return[]}},startDisabledMonths:{type:Array,default:function(){return[]}},startDisabledDays:{type:Array,default:function(){return[]}},startShortYearLabel:Boolean,startShortMonthLabel:Boolean,startShortDayLabel:Boolean,startShowMonthLabel:Boolean,startShowWeekdayLabel:Boolean,startNoDays:Boolean,startNoMonth:Boolean,startNoYears:Boolean,endMinDate:String,endMaxDate:String,endDates:Array,endDisabledDates:Array,endDisabledYears:{type:Array,default:function(){return[]}},endDisabledMonths:{type:Array,default:function(){return[]}},endDisabledDays:{type:Array,default:function(){return[]}},endShortYearLabel:Boolean,endShortMonthLabel:Boolean,endShortDayLabel:Boolean,endShowMonthLabel:Boolean,endShowWeekdayLabel:Boolean,endNoDays:Boolean,endNoMonth:Boolean,endNoYears:Boolean}}),d=n("1c16"),f=n("9c40"),p=n("0831"),m=p["a"].getScrollPosition,v=p["a"].setScrollPosition,g=26,_=21,b=o["a"].extend({name:"scroller-base",directives:{Resize:s},mixins:[u],props:r()({},h.scroller),data:function(){return{noScrollEvent:!1,columnPadding:{},padding:0}},mounted:function(){this.adjustColumnPadding(),this.updatePosition()},computed:{},watch:{height:function(){this.adjustColumnPadding(!0)},value:function(){this.updatePosition()},items:function(){this.adjustColumnPadding(!0),this.updatePosition()},dense:function(){this.adjustColumnPadding(!0),this.updatePosition()}},methods:{move:function(t){if(!1===this.noScrollEvent&&(1===t||-1===t)&&!0!==this.disable&&this.canScroll(t)){var e=".q-scroller__item--selected".concat(this.dense?"--dense":""),n=this.$el.querySelector(e);n&&n.classList.remove(e);var i=n?n.clientHeight:this.dense?_:g,r=m(this.$el)+i*t;return v(this.$el,r,50),!0}return!1},onResize:function(){this.adjustColumnPadding(!0)},canScroll:function(t){return!!(this.items&&this.items.length>1)&&(1===t?this.value!==this.items[this.items.length-1].value:this.value!==this.items[0].value)},adjustColumnPadding:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this,n=function(t){e.columnPadding={height:"".concat(t,"px")}},i=function(){var t=e.dense?_:g,i=e.height||e.$el.clientHeight;e.padding=i/2-t/2,!isNaN(e.padding)&&e.padding>0&&n(e.padding)};t?i():this.$nextTick(function(){i()})},wheelEvent:function(t){this.move(t.wheelDeltaY<0?1:-1)&&this.$emit(this.value),t.preventDefault()},getItemIndex:function(t){return this.items.findIndex(function(e){return e.value===t})},getItemIndexFromEvent:function(t){var e=t.target.scrollTop,n=this.dense?_:g;return Math.floor(e/n)},scrollEvent:Object(d["a"])(function(t){if(!this.noScrollEvent){var e=this.getItemIndexFromEvent(t),n=this.items[e].value;if(this.isDisabled(n))return;this.$emit("input",n)}},250),clickEvent:function(t){!0!==this.disable&&!1===t.disabled&&this.$emit("input",t.value)},isDisabled:function(t){return!0===this.disable||this.items.find(function(e){return e.value===t}).disabled},updatePosition:function(){var t=this,e=this;this.noScrollEvent=!0,setTimeout(function(){var n=".q-scroller__item--selected".concat(e.dense?"--dense":""),i=e.$el.querySelector(n);i&&setTimeout(function(){var n=i.offsetTop-t.padding;v(e.$el,n,150),e.noScrollEvent=!1},150)},10)},__renderItem:function(t,e){var n=this;return t(f["a"],{staticClass:"q-scroller__item".concat(this.dense?"--dense":""," justify-center align-center"),class:{"q-scroller__item--selected":!this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled":!this.dense&&(!0===this.disable||!0===e.disabled),"q-scroller__item--selected--dense":this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled--dense":this.dense&&(!0===this.disable||!0===e.disabled)},key:e.item,props:{flat:!0,dense:!0,"no-wrap":!0,label:void 0!==e.display?e.display:void 0!==e.value?e.value:void 0,disable:!0===this.disable||!0===e.disabled,icon:void 0!==e.icon?e.icon:void 0,"icon-right":void 0!==e.iconRight?e.iconRight:void 0,"no-caps":void 0!==e.noCaps?e.noCaps:void 0,align:void 0!==e.align?e.align:void 0},on:{click:function(){return n.clickEvent(e)}}})},__renderPadding:function(t){return t("div",{staticClass:"q-scroller__padding",style:this.columnPadding})}},render:function(t){var e=this;return t("div",this.setBothColors(this.color,this.backgroundColor,{staticClass:"q-scroller-base text-center col scroll no-scrollbars",style:{height:"".concat(this.height,"px")},directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],on:{mousewheel:function(t){return e.wheelEvent(t)},scroll:function(t){return e.scrollEvent(t)}}}),[this.__renderPadding(t),this.items.map(function(n){return e.__renderItem(t,n)}),this.__renderPadding(t)])}}),y=o["a"].extend({name:"q-scroller",directives:{Resize:s},mixins:[u],props:r()({},h.base,{items:{type:Array,required:!0}}),data:function(){return{headerFooterHeight:100,bodyHeight:100}},mounted:function(){this.adjustBodyHeight()},computed:{},watch:{noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){this.$emit("input",this.value)},onResize:function(){this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.value):[this.value])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])},__renderScroller:function(t){var e=this;return t(b,{props:{value:this.value,items:this.items,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){return e.$emit("input",t)}}})},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),style:{height:"".concat(this.bodyHeight,"px")}}),[this.__renderScroller(t)])}},render:function(t){return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),[this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)])}}),w=(n("ac6a"),n("6762"),n("2fdb"),n("8e72")),k=n.n(w),x=o["a"].extend({name:"time-base",props:r()({},h.base,h.locale,{height:[Number,String],hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),C=n("b6d5"),S=(n("ff57"),n("bd4c")),A=/^(\d{4})-(\d{1,2})(-(\d{1,2}))?([^\d]+(\d{1,2}))?(:(\d{1,2}))?(:(\d{1,2}))?$/,E=[0,31,28,31,30,31,30,31,31,30,31,30,31],q=[0,31,29,31,30,31,30,31,31,30,31,30,31],T=31,O={date:"",time:"",year:0,month:0,day:0,weekday:0,hour:0,minute:0,doy:0,workweek:0,hasDay:!1,hasTime:!1,past:!1,current:!1,future:!1};function D(t,e){return JSON.stringify(t)===JSON.stringify(e)}function $(t){var e=A.exec(t);return e?{date:t,time:"",year:parseInt(e[1]),month:parseInt(e[2]),day:parseInt(e[4])||1,hour:parseInt(e[6])||0,minute:parseInt(e[8])||0,weekday:0,doy:0,workweek:0,hasDay:!!e[4],hasTime:!(!e[6]||!e[8]),past:!1,current:!1,future:!1}:null}function L(t){return M({date:"",time:"",year:t.getFullYear(),month:t.getMonth()+1,day:t.getDate(),weekday:t.getDay(),hour:t.getHours(),minute:t.getMinutes(),doy:0,workweek:0,hasDay:!0,hasTime:!0,past:!1,current:!0,future:!1})}function M(t){return t.time=H(t),t.date=N(t),t.weekday=B(t),t.doy=I(t),t.workweek=j(t),t}function I(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getDayOfYear(e)}}function j(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getWeekOfYear(e)}}function B(t){if(t.hasDay){var e=new Date(t.date+" 00:00");return S["a"].getDayOfWeek(e)}return t.weekday}function F(t){return t%4===0&&t%100!==0||t%400===0}function P(t,e){return F(t)?q[e]:E[e]}function R(t){return r()({},t)}function z(t,e){var n=String(t);while(n.length0&&(e/=parseInt(this.minuteInterval)),k()(Array(e)).map(function(t,e){return e}).map(function(e){return e*=t.minuteInterval?parseInt(t.minuteInterval):1,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledMinutesList.includes(e)}})},hoursList:function(){var t=this,e=!0===this.hour24Format?24:12;return k()(Array(e)).map(function(t,e){return e}).map(function(e){return e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledHoursList.includes(e)}})},displayTime:function(){return!1===this.timestamp.hasTime?"":this.noMinutes?z(this.hour,2)+"h":this.noHours?":"+z(this.minute,2):this.timeFormatter(this.timestamp,this.shortTimeLabel)},timeFormatter:function(){var t={timeZone:"UTC",hour12:!this.hour24Format,hour:"2-digit",minute:"2-digit"},e={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric",minute:"2-digit"},n={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric"};return V(this.locale,function(i,r){return r?0===i.minute?n:e:t})}},watch:{value:function(){this.splitTime()},ampmIndex:function(){var t=R(this.timestamp);this.ampm=this.amPmLabels[this.ampmIndex],this.timestamp.hour=parseInt(this.hour),1===this.ampmIndex&&!1===this.hour24Format&&(this.timestamp.hour=parseInt(this.hour)+12),D(t,this.timestamp)||this.emitValue()},hour:function(){var t=R(this.timestamp);!0===this.hour24Format?this.timestamp.hour=parseInt(this.hour):0===this.ampmIndex?this.timestamp.hour=parseInt(this.hour):1===this.ampmIndex&&(this.timestamp.hour=parseInt(this.hour)+12),D(t,this.timestamp)||this.emitValue()},minute:function(){var t=R(this.timestamp);this.timestamp.minute=parseInt(this.minute),D(t,this.timestamp)||this.emitValue()},ampm:function(){var t=this;this.ampmIndex=this.amPmLabels.findIndex(function(e){return e===t.ampm})},hour24Format:function(){var t=R(this.timestamp);!0===this.hour24Format?this.hour=z(this.timestamp.hour,2):this.timestamp.hour>12?(this.hour=z(this.timestamp.hour-12,2),this.ampmIndex=1):(this.hour=z(this.timestamp.hour,2),this.ampmIndex=0),D(t,this.timestamp)||this.emitValue()},disabledMinutes:function(){this.handleDisabledLists()},disabledHours:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[z(this.timestamp.hour,2),z(this.timestamp.minute,2)].join(":"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.height||t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledMinutesList=[],this.disabledHoursList=[],this.disabledMinutes.forEach(function(e){return t.disabledMinutesList.push(z(parseInt(e),2))}),this.disabledHours.forEach(function(e){return t.disabledHoursList.push(z(parseInt(e),2))})},splitTime:function(){var t=L(new Date),e=N(t)+" "+(this.value?this.value:H(t));this.timestamp=$(e),this.timestamp.minute=Math.floor(this.timestamp.minute/this.minuteInterval)*this.minuteInterval,this.ampmIndex=this.timestamp.hour>12&&this.timestamp.minute>0?1:0,this.fromTimestamp()},fromTimestamp:function(){this.minute=z(this.timestamp.minute,2),this.hour=z(this.timestamp.hour,2),!1===this.hour24Format&&1===this.ampmIndex&&(this.hour=z(this.timestamp.hour-12,2))},__renderHoursScroller:function(t){var e=this;return t(b,{props:{value:this.hour,items:this.hoursList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.hour=t}}})},__renderMinutesScroller:function(t){var e=this;return t(b,{props:{value:this.minute,items:this.minutesList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.minute=t}}})},__renderAmPmScroller:function(t){var e=this;return t(b,{props:{value:this.ampm,items:this.ampmList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.ampm=t}}})},__renderScrollers:function(t){return[!0!==this.noHours&&this.__renderHoursScroller(t),!0!==this.noMinutes&&this.__renderMinutesScroller(t),!1===this.hour24Format&&this.__renderAmPmScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayTime])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Y=(n("28a5"),x.extend({name:"q-time-range-scroller",mixins:[u],props:r()({},h.timeRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startTime:"",endTime:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QTimeRangeScroller - value (v-model) must to be an array of times"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QTimeRangeScroller - value (v-model) must contain 2 array elements"),this.splitTime(),this.adjustBodyHeight()},computed:{displayTime:function(){return void 0!==this.startTime&&void 0!==this.endTime?this.$refs.startTime&&this.$refs.endTime?this.$refs.startTime.displayTime+this.displaySeparator+this.$refs.endTime.displayTime:"".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime):""}},watch:{value:function(){this.splitTime()},startTime:function(){this.emitValue()},endTime:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startTime,this.endTime]):"string"===this.type&&this.$emit("input","".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitTime:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidTime(t)&&this.isValidTime(e))return this.startTime=t,this.endTime=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidTime(i)&&this.isValidTime(r))return this.startTime=i,this.endTime=r,void(this.type="string")}}console.error("QTimeRangeScroller: invalid time format - '".concat(this.value,"'"))},isValidTime:function(t){var e=t.split(":");if(2===e.length){var n=parseInt(e[0]),i=parseInt(e[1]);if(n>=0&&n<24&&i>=0&&i<60)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startTime.getTimestamp(),this.$refs.endTime.getTimestamp()]):[this.displayTime])},__renderStartTime:function(t){var e=this;return t(U,{ref:"startTime",staticClass:"col-6",props:{value:this.startTime,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.amPmLabels,minuteInterval:this.startMinuteInterval,hourInterval:this.startHourInterval,shortTimeLabel:this.startShortTimeLabel,disabledHours:this.startDisabledHours,disabledMinutes:this.startDisbaledMinutes,noMinutes:this.startNoMinutes,noHours:this.startNoHours,hours:this.startHours,minutes:this.startMinutes,minTime:this.startMinTime,maxTime:this.startMaxTime,height:this.bodyHeight},on:{input:function(t){e.startTime=t}}})},__renderEndTime:function(t){var e=this;return t(U,{ref:"endTime",staticClass:"col-6",props:{value:this.endTime,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.endMinuteInterval,hourInterval:this.endHourInterval,shortTimeLabel:this.endShortTimeLabel,disabledHours:this.endDisabledHours,disabledMinutes:this.endDisbaledMinutes,noMinutes:this.endNoMinutes,noHours:this.endNoHours,hours:this.endHours,minutes:this.endMinutes,minTime:this.endMinTime,maxTime:this.endMaxTime,height:this.bodyHeight},on:{input:function(t){e.endTime=t}}})},__renderScrollers:function(t){return[this.__renderStartTime(t),this.__renderEndTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-time-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}})),W=o["a"].extend({name:"datetime-base",props:r()({},h.base,h.locale,{hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),G=W.extend({name:"q-date-scroller",mixins:[u],props:r()({},h.date,{showVerticalBar:Boolean}),data:function(){return{headerFooterHeight:100,bodyHeight:100,year:"",month:"",day:"",timestamp:r()({},O),disabledYearsList:[],disabledMonthsList:[],disabledDaysList:[]}},mounted:function(){this.handleDisabledLists(),this.splitDate(),this.adjustBodyHeight()},computed:{daysList:function(){var t=this,e=P(parseInt(this.year),parseInt(this.month));return this.year&&this.month||(e=T),k()(Array(e)).map(function(t,e){return e}).map(function(e){return++e,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledDays.includes(e)}})},monthsList:function(){var t=this;return k()(Array(12)).map(function(t,e){return e}).map(function(e){++e;var n=!0===t.showMonthLabel?t.monthNameLabel(e):void 0;return e=e<10?"0"+e:""+e,{display:n,value:e,disabled:t.disabledMonths.includes(e)}})},yearsList:function(){var t=this,e=0,n=0;if(this.minDate&&this.maxDate)e=parseInt(e),n=parseInt(n);else{var i=new Date,r=i.getFullYear();e=r-5,n=r+5}var o=[],s=e;while(s<=n)o.push(z(s,4)),++s;return o.map(function(e){return{value:e,disabled:t.disabledYears.includes(e)}})},displayDate:function(){return console.log("displayDate"),this.year&&this.month&&this.day?!1===this.timestamp.hasDay?"":!0===this.noDays&&!0===this.noMonths?this.yearFormatter(this.timestamp,this.shortYearLabel):!0===this.noDays&&!0===this.noYears?this.monthFormatter(this.timestamp,this.shortMonthLabel):!0===this.noMonths&&!0===this.noYears?this.dayFormatter(this.timestamp,this.shortDayLabel):this.dateFormatter(this.timestamp):""},dateFormatter:function(){console.log("dateFormatter");var t=this.shortYearLabel?"2-digit":"numeric",e=this.shortMonthLabel?"numeric":"2-digit",n=this.shortDayLabel?"numeric":"2-digit",i={timeZone:"UTC",year:t,month:e,day:n};return V(this.locale,function(t,e){return i})},dayFormatter:function(){var t={timeZone:"UTC",day:"numeric"};return V(this.locale,function(e,n){return t})},weekdayFormatter:function(){var t={timeZone:"UTC",weekday:"long"},e={timeZone:"UTC",weekday:"short"};return V(this.locale,function(n,i){return i?e:t})},monthFormatter:function(){var t={timeZone:"UTC",month:"long"},e={timeZone:"UTC",month:"short"};return V(this.locale,function(n,i){return i?e:t})},yearFormatter:function(){var t={timeZone:"UTC",year:"long"},e={timeZone:"UTC",year:"short"};return V(this.locale,function(n,i){return i?e:t})},yearMonthDayFormatter:function(){var t={timeZone:"UTC",year:"numeric",month:"short",day:"numeric"};return V(this.locale,function(e,n){return t})}},watch:{value:function(){this.splitDate()},year:function(){this.toTimestamp()},month:function(t,e){if(this.day>28){var n=parseInt(t),i=parseInt(e),r=parseInt(this.year),o=P(r,i),s=P(r,n);o>s&&(this.day=z(s,2))}this.toTimestamp()},day:function(){this.toTimestamp()},disabledDays:function(){this.handleDisabledLists()},disabledMonths:function(){this.handleDisabledLists()},disabledYears:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[this.year,this.month,this.day].join("-"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledDaysList=[],this.disabledMonthsList=[],this.disabledYearsList=[],this.disabledDays.forEach(function(e){return t.disabledDaysList.push(z(parseInt(e),2))}),this.disabledMonths.forEach(function(e){return t.disabledMonthsList.push(z(parseInt(e),2))}),this.disabledYears.forEach(function(e){return t.disabledYearsList.push(z(parseInt(e),4))})},splitDate:function(){var t=L(new Date),e=(this.value?this.value:N(t))+" 00:00";this.timestamp=$(e),this.fromTimestamp()},fromTimestamp:function(){this.day=z(this.timestamp.day,2),this.month=z(this.timestamp.month,2),this.year=z(this.timestamp.year,4)},toTimestamp:function(){var t=R(this.timestamp);this.timestamp.day=parseInt(this.day),this.timestamp.month=parseInt(this.month),this.timestamp.year=parseInt(this.year),D(t,this.timestamp)||this.emitValue()},monthNameLabel:function(t){var e=L(new Date),n=N(e)+" 00:00",i=$(n);return i.day=1,i.month=parseInt(t),this.monthFormatter(i,this.shortMonthLabel)},__renderYearsScroller:function(t){var e=this;return t(b,{props:{value:this.year,items:this.yearsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.year=t}}})},__renderMonthsScroller:function(t){var e=this;return t(b,{props:{value:this.month,items:this.monthsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.month=t}}})},__renderDaysScroller:function(t){var e=this;return t(b,{props:{value:this.day,items:this.daysList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.day=t}}})},__renderScrollers:function(t){return[!0!==this.noYears&&this.__renderYearsScroller(t),!0!==this.noMonths&&this.__renderMonthsScroller(t),!0!==this.noDays&&this.__renderDaysScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDate])},__renderFooterButton:function(t){var e=this;return t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e?e(this.timestamp):[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Q=W.extend({name:"q-date-range-scroller",mixins:[u],props:r()({},h.dateRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startDate:"",endDate:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QDateRangeScroller - value (v-model) must to be an array of dates"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QDateRangeScroller - value (v-model) must contain 2 array elements"),this.splitDate(),this.adjustBodyHeight()},computed:{displayDate:function(){return void 0!==this.startDate&&void 0!==this.endDate?this.$refs.startDate&&this.$refs.endDate?this.$refs.startDate.displayDate+this.displaySeparator+this.$refs.endDate.displayDate:"".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate):""}},watch:{value:function(){this.splitDate()},startDate:function(){this.emitValue()},endDate:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startDate,this.endDate]):"string"===this.type&&this.$emit("input","".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDate:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidDate(t)&&this.isValidDate(e))return this.startDate=t,this.endDate=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidDate(i)&&this.isValidDate(r))return this.startDate=i,this.endDate=r,void(this.type="string")}}console.error("QDateRangeScroller: invalid date format - '".concat(this.value,"'"))},isValidDate:function(t){var e=t.split("-");if(3===e.length){var n=parseInt(e[0]),i=parseInt(e[1]),r=parseInt(e[2]),o=P(n,i);if(0!==n&&i>0&&i<=12&&r>0&&r<=o)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startDate.getTimestamp(),this.$refs.endDate.getTimestamp()]):[this.displayDate])},__renderStartDate:function(t){var e=this;return t(G,{ref:"startDate",staticClass:"col-6",props:{value:this.startDate,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.startMinDate,maxDate:this.startMaxDate,dates:this.startDates,disabledDate:this.startDisabledDates,disabledYears:this.startDisabledYears,disabledMonths:this.startDisabledMonths,disabledDays:this.startDisabledDays,shortYearLabel:this.startShortYearLabel,shortMonthLabel:this.startShortMonthLabel,shortDayLabel:this.startShortDayLabel,showMonthLabel:this.startShowMonthLabel,showWeekdayLabel:this.startShowWeekdayLabel,noDays:this.startNoDays,noMonths:this.startNoMonths,noYears:this.startNoYears,height:this.bodyHeight},on:{input:function(t){e.startDate=t}}})},__renderEndDate:function(t){var e=this;return t(G,{ref:"endDate",staticClass:"col-6",props:{value:this.endDate,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.endMinDate,maxDate:this.endMaxDate,dates:this.endDates,disabledDate:this.endDisabledDates,disabledYears:this.endDisabledYears,disabledMonths:this.endDisabledMonths,disabledDays:this.endDisabledDays,shortYearLabel:this.endShortYearLabel,shortMonthLabel:this.endShortMonthLabel,shortDayLabel:this.endShortDayLabel,showMonthLabel:this.endShowMonthLabel,showWeekdayLabel:this.endShowWeekdayLabel,noDays:this.endNoDays,noMonths:this.endNoMonths,noYears:this.endNoYears,height:this.bodyHeight},on:{input:function(t){e.endDate=t}}})},__renderScrollers:function(t){return[this.__renderStartDate(t),this.__renderEndDate(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Z=W.extend({name:"q-date-time-scroller",mixins:[u],props:r()({},h.time,h.date),data:function(){return{headerFooterHeight:100,bodyHeight:100,date:"",time:"",timestamp:r()({},O)}},mounted:function(){this.splitDateTime(),this.adjustBodyHeight()},computed:{displayDateTime:function(){return""!==this.date&&""!==this.time?this.$refs.date&&this.$refs.time?this.$refs.date.displayDate+" "+this.$refs.time.displayTime:"".concat(this.date," ").concat(this.time):""}},watch:{value:function(){this.splitDateTime()},date:function(){var t=R(this.timestamp);this.timestamp=$(this.date+" "+this.time),D(t,this.timestamp)||this.emitValue()},time:function(){var t=R(this.timestamp);this.timestamp=$(this.date+" "+this.time),D(t,this.timestamp)||this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){this.$emit("input","".concat(this.timestamp.date))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDateTime:function(){this.timestamp=$(this.value),this.fromTimestamp()},fromTimestamp:function(){this.date=N(this.timestamp),this.time=H(this.timestamp)},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDateTime])},__renderDate:function(t){var e=this;return t(G,{ref:"date",staticClass:"col-6",props:{value:this.date,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.minDate,maxDate:this.maxDate,dates:this.dates,disabledDate:this.disabledDates,disabledYears:this.disabledYears,disabledMonths:this.disabledMonths,disabledDays:this.disabledDays,shortYearLabel:this.shortYearLabel,shortMonthLabel:this.shortMonthLabel,shortDayLabel:this.shortDayLabel,showMonthLabel:this.showMonthLabel,showWeekdayLabel:this.showWeekdayLabel,noYears:this.noYears,noMonths:this.noMonths,noDays:this.noDays,height:this.bodyHeight},on:{input:function(t){e.date=t}}})},__renderTime:function(t){var e=this;return t(U,{ref:"time",staticClass:"col-6",props:{value:this.time,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.minuteInterval,hourInterval:this.hourInterval,shortTimeLabel:this.shortTimeLabel,disabledHours:this.disabledHours,disabledMinutes:this.disbaledMinutes,noMinutes:this.noMinutes,noHours:this.noHours,hours:this.hours,minutes:this.minutes,minTime:this.minTime,maxTime:this.maxTime,height:this.bodyHeight},on:{input:function(t){e.time=t}}})},__renderScrollers:function(t){return[this.__renderDate(t),this.__renderTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-time-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}});e["a"]=function(t){var e=t.Vue;e.component("q-scroller",y),e.component("q-time-scroller",U),e.component("q-time-range-scroller",Y),e.component("q-date-scroller",G),e.component("q-date-range-scroller",Q),e.component("q-date-time-scroller",Z)}},e9ef:function(t,e,n){"use strict";var i="PNG\r\n\n";function r(t){if(i===t.toString("ascii",1,8)){if("IHDR"!==t.toString("ascii",12,16))throw new TypeError("invalid png");return!0}}function o(t){return{width:t.readUInt32BE(16),height:t.readUInt32BE(20)}}t.exports={detect:r,calculate:o}},eb85:function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e");e["a"]=o["a"].extend({name:"QSeparator",props:{dark:Boolean,spaced:Boolean,inset:[Boolean,String],vertical:Boolean,color:String},computed:{classes:function(){var t;return t={},r()(t,"bg-".concat(this.color),this.color),r()(t,"q-separator--dark",this.dark),r()(t,"q-separator--spaced",this.spaced),r()(t,"q-separator--inset",!0===this.inset),r()(t,"q-separator--item-inset","item"===this.inset),r()(t,"q-separator--item-thumbnail-inset","item-thumbnail"===this.inset),r()(t,"q-separator--".concat(this.vertical?"vertical self-stretch":"horizontal col-grow"),!0),t}},render:function(t){return t("hr",{staticClass:"q-separator",class:this.classes})}})},ebd6:function(t,e,n){var i=n("cb7c"),r=n("d8e8"),o=n("2b4c")("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},ec5d:function(t,e,n){"use strict";n("ac6a"),n("cadf"),n("456d");var i=n("2b0e"),r=(n("28a5"),{isoName:"en-us",nativeName:"English (US)",label:{clear:"Clear",ok:"OK",cancel:"Cancel",close:"Close",set:"Set",select:"Select",reset:"Reset",remove:"Remove",update:"Update",create:"Create",search:"Search",filter:"Filter",refresh:"Refresh"},date:{days:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),daysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),firstDayOfWeek:0,format24h:!1},table:{noData:"No data available",noResults:"No matching records found",loading:"Loading...",selectedRecords:function(t){return 1===t?"1 record selected.":(0===t?"No":t)+" records selected."},recordsPerPage:"Records per page:",allRows:"All",pagination:function(t,e,n){return t+"-"+e+" of "+n},columns:"Columns"},editor:{url:"URL",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",underline:"Underline",unorderedList:"Unordered List",orderedList:"Ordered List",subscript:"Subscript",superscript:"Superscript",hyperlink:"Hyperlink",toggleFullscreen:"Toggle Fullscreen",quote:"Quote",left:"Left align",center:"Center align",right:"Right align",justify:"Justify align",print:"Print",outdent:"Decrease indentation",indent:"Increase indentation",removeFormat:"Remove formatting",formatting:"Formatting",fontSize:"Font Size",align:"Align",hr:"Insert Horizontal Rule",undo:"Undo",redo:"Redo",header1:"Header 1",header2:"Header 2",header3:"Header 3",header4:"Header 4",header5:"Header 5",header6:"Header 6",paragraph:"Paragraph",code:"Code",size1:"Very small",size2:"A bit small",size3:"Normal",size4:"Medium-large",size5:"Big",size6:"Very big",size7:"Maximum",defaultFont:"Default Font"},tree:{noNodes:"No nodes available",noResults:"No matching nodes found"}}),o=n("0967");e["a"]={install:function(t,e,n){var s=this;!0===o["c"]&&e.server.push(function(t,e){var n={lang:t.lang.isoName,dir:!0===t.lang.rtl?"rtl":"ltr"},i=e.ssr.setHtmlAttrs;"function"===typeof i?i(n):e.ssr.Q_HTML_ATTRS=Object.keys(n).map(function(t){return"".concat(t,"=").concat(n[t])}).join(" ")}),this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r;if(e.set=s.set,e.getLocale=s.getLocale,e.rtl=e.rtl||!1,!1===o["c"]){var n=document.documentElement;n.setAttribute("dir",e.rtl?"rtl":"ltr"),n.setAttribute("lang",e.isoName)}!0===o["c"]||void 0!==t.lang?t.lang=e:i["a"].util.defineReactive(t,"lang",e),s.isoName=e.isoName,s.nativeName=e.nativeName,s.props=e},this.set(n)},getLocale:function(){if(!0!==o["c"]){var t=navigator.language||navigator.languages[0]||navigator.browserLanguage||navigator.userLanguage||navigator.systemLanguage;return t?t.toLowerCase():void 0}}}},edca:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("0831"),o=n("d882");e["a"]=i["a"].extend({name:"QScrollObserver",props:{debounce:[String,Number],horizontal:Boolean},render:function(){},data:function(){return{pos:0,dir:!0===this.horizontal?"right":"down",dirChanged:!1,dirChangePos:0}},methods:{getPosition:function(){return{position:this.pos,direction:this.dir,directionChanged:this.dirChanged,inflexionPosition:this.dirChangePos}},trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__emit():this.timer||(this.timer=this.debounce?setTimeout(this.__emit,this.debounce):requestAnimationFrame(this.__emit))},__emit:function(){var t=Math.max(0,!0===this.horizontal?Object(r["b"])(this.target):Object(r["c"])(this.target)),e=t-this.pos,n=this.horizontal?e<0?"left":"right":e<0?"up":"down";this.dirChanged=this.dir!==n,this.dirChanged&&(this.dir=n,this.dirChangePos=this.pos),this.timer=null,this.pos=t,this.$emit("scroll",this.getPosition())}},mounted:function(){this.target=Object(r["d"])(this.$el.parentNode),this.target.addEventListener("scroll",this.trigger,o["d"].passive),this.trigger(!0)},beforeDestroy:function(){clearTimeout(this.timer),cancelAnimationFrame(this.timer),this.target.removeEventListener("scroll",this.trigger,o["d"].passive)}})},efe6:function(t,e,n){"use strict";var i=n("d882"),r=n("0831"),o=n("0967"),s=0;function a(t){c(t)&&Object(i["h"])(t)}function c(t){if(t.target===document.body||t.target.classList.contains("q-layout__backdrop"))return!0;for(var e=Object(i["a"])(t),n=t.shiftKey&&!t.deltaX,o=!n&&Math.abs(t.deltaX)<=Math.abs(t.deltaY),s=n||o?t.deltaY:t.deltaX,a=0;a0&&c.scrollTop+c.clientHeight===c.scrollHeight:s<0&&0===c.scrollLeft||s>0&&c.scrollLeft+c.clientWidth===c.scrollWidth}return!0}function l(t){if(s+=t?1:-1,!(s>1)){var e=t?"add":"remove";o["a"].is.mobile?document.body.classList[e]("q-body--prevent-scroll"):o["a"].is.desktop&&window["".concat(e,"EventListener")]("wheel",a,i["d"].notPassive)}}e["a"]={methods:{__preventScroll:function(t){void 0===this.preventedScroll&&!0!==t||t!==this.preventedScroll&&(this.preventedScroll=t,l(t))}}}},f09f:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCard",props:{dark:Boolean,square:Boolean,flat:Boolean,bordered:Boolean},render:function(t){return t("div",{staticClass:"q-card",class:{"q-card--dark":this.dark,"q-card--bordered":this.bordered,"q-card--square no-border-radius":this.square,"q-card--flat no-shadow":this.flat},on:this.$listeners},Object(r["a"])(this,"default"))}})},f0f2:function(t){t.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},f270:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("377c");function o(t){var e=t.toString("hex",0,4);return"49492a00"===e||"4d4d002a"===e}function s(t,n,o){var s=r(t,32,4,o),a=1024,c=i.statSync(n).size;s+a>c&&(a=c-s-10);var l=new e(a),u=i.openSync(n,"r");i.readSync(u,l,0,a,s);var h=l.slice(2);return h}function a(t,e){var n=r(t,16,8,e),i=r(t,16,10,e);return(i<<16)+n}function c(t){if(t.length>24)return t.slice(12)}function l(t,e){var n,i,o,s={};while(t&&t.length){if(n=r(t,16,0,e),i=r(t,16,2,e),o=r(t,32,4,e),0===n)break;1===o&&3===i&&(s[n]=a(t,e)),t=c(t)}return s}function u(t){var e=t.toString("ascii",0,2);return"II"===e?"LE":"MM"===e?"BE":void 0}function h(t,e){if(!e)throw new TypeError("Tiff doesn't support buffer");var n="BE"===u(t),i=s(t,e,n),r=l(i,n),o=r[256],a=r[257];if(!o||!a)throw new TypeError("Invalid Tiff, missing tags");return{width:o,height:a}}t.exports={detect:o,calculate:h}}).call(this,n("9cd4").Buffer)},f2cc:function(t,e,n){"use strict";n("f751"),n("d263"),n("c5f6"),n("6762"),n("2fdb");var i=n("2b0e"),r=n("75c3"),o=n("7937"),s=n("7ee0"),a=n("efe6"),c=n("dde5"),l=150;e["a"]=i["a"].extend({name:"QDrawer",inject:{layout:{default:function(){console.error("QDrawer needs to be child of QLayout")}}},mixins:[s["a"],a["a"]],directives:{TouchPan:r["a"]},props:{overlay:Boolean,side:{type:String,default:"left",validator:function(t){return["left","right"].includes(t)}},width:{type:Number,default:300},mini:Boolean,miniWidth:{type:Number,default:57},breakpoint:{type:Number,default:1023},behavior:{type:String,validator:function(t){return["default","desktop","mobile"].includes(t)},default:"default"},bordered:Boolean,elevated:Boolean,persistent:Boolean,showIfAbove:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array],noSwipeOpen:Boolean,noSwipeClose:Boolean},data:function(){var t=this,e=!0===this.showIfAbove||void 0===this.value||this.value,n="mobile"!==this.behavior&&this.breakpoint=this.layout.width,largeScreenState:e,mobileOpened:!1}},watch:{belowBreakpoint:function(t){!0!==this.mobileOpened&&(!0===t?(!1===this.overlay&&(this.largeScreenState=this.showing),this.hide(!1)):!1===this.overlay&&this[this.largeScreenState?"show":"hide"](!1))},side:function(t,e){this.layout[e].space=!1,this.layout[e].offset=0},behavior:function(t){this.__updateLocal("belowBreakpoint","mobile"===t||"desktop"!==t&&this.breakpoint>=this.layout.width)},breakpoint:function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&t>=this.layout.width)},"layout.width":function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&this.breakpoint>=t)},"layout.scrollbarWidth":function(){this.applyPosition(!0===this.showing?0:void 0)},offset:function(t){this.__update("offset",t)},onLayout:function(t){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",t),this.__update("space",t)},$route:function(){!0===this.persistent||!0!==this.mobileOpened&&!0!==this.onScreenOverlay||this.hide()},rightSide:function(){this.applyPosition()},size:function(t){this.applyPosition(),this.__update("size",t)},"$q.lang.rtl":function(){this.applyPosition()},mini:function(){!0===this.value&&(this.__animateMini(),this.layout.__animate())}},computed:{rightSide:function(){return"right"===this.side},offset:function(){return!0===this.showing&&!1===this.mobileOpened&&!1===this.overlay?this.size:0},size:function(){return!0===this.isMini?this.miniWidth:this.width},fixed:function(){return!0===this.overlay||this.layout.view.indexOf(this.rightSide?"R":"L")>-1},onLayout:function(){return!0===this.showing&&!1===this.mobileView&&!1===this.overlay},onScreenOverlay:function(){return!0===this.showing&&!1===this.mobileView&&!0===this.overlay},backdropClass:function(){return!1===this.showing?"no-pointer-events":null},mobileView:function(){return!0===this.belowBreakpoint||!0===this.mobileOpened},headerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.top[2]:"l"===this.layout.rows.top[0]},footerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.bottom[2]:"l"===this.layout.rows.bottom[0]},aboveStyle:function(){var t={};return!0===this.layout.header.space&&!1===this.headerSlot&&(!0===this.fixed?t.top="".concat(this.layout.header.offset,"px"):!0===this.layout.header.space&&(t.top="".concat(this.layout.header.size,"px"))),!0===this.layout.footer.space&&!1===this.footerSlot&&(!0===this.fixed?t.bottom="".concat(this.layout.footer.offset,"px"):!0===this.layout.footer.space&&(t.bottom="".concat(this.layout.footer.size,"px"))),t},style:function(){var t={width:"".concat(this.size,"px")};return!0===this.mobileView?t:Object.assign(t,this.aboveStyle)},classes:function(){return"q-drawer--".concat(this.side)+(!0===this.bordered?" q-drawer--bordered":"")+(!0===this.mobileView?" fixed q-drawer--on-top q-drawer--mobile q-drawer--top-padding":" q-drawer--".concat(!0===this.isMini?"mini":"standard")+(!0===this.fixed||!0!==this.onLayout?" fixed":"")+(!0===this.overlay?" q-drawer--on-top":"")+(!0===this.headerSlot?" q-drawer--top-padding":""))},stateDirection:function(){return(!0===this.$q.lang.rtl?-1:1)*(!0===this.rightSide?1:-1)},isMini:function(){return!0===this.mini&&!0!==this.mobileView},onNativeEvents:function(){var t=this;if(!0!==this.mobileView)return{"!click":function(e){t.$emit("click",e)},mouseover:function(e){t.$emit("mouseover",e)},mouseout:function(e){t.$emit("mouseout",e)}}}},methods:{applyPosition:function(t){var e=this;void 0===t?this.$nextTick(function(){t=!0===e.showing?0:e.size,e.applyPosition(e.stateDirection*t)}):void 0!==this.$refs.content&&(!0!==this.layout.container||!0!==this.rightSide||!0!==this.mobileView&&Math.abs(t)!==this.size||(t+=this.stateDirection*this.layout.scrollbarWidth),this.$refs.content.style.transform="translate3d(".concat(t,"px, 0, 0)"))},applyBackdrop:function(t){void 0!==this.$refs.backdrop&&(this.$refs.backdrop.style.backgroundColor=this.lastBackdropBg="rgba(0,0,0,".concat(.4*t,")"))},__setScrollable:function(t){!0!==this.layout.container&&document.body.classList[!0===t?"add":"remove"]("q-body--drawer-toggle")},__animateMini:function(){var t=this;void 0!==this.timerMini?clearTimeout(this.timerMini):void 0!==this.$el&&this.$el.classList.add("q-drawer--mini-animate"),this.timerMini=setTimeout(function(){void 0!==t.$el&&t.$el.classList.remove("q-drawer--mini-animate"),t.timerMini=void 0},150)},__openByTouch:function(t){var e=this.size,n=Object(o["a"])(t.distance.x,0,e);if(!0===t.isFinal){var i=this.$refs.content,r=n>=Math.min(75,e);return i.classList.remove("no-transition"),void(!0===r?this.show():(this.layout.__animate(),this.applyBackdrop(0),this.applyPosition(this.stateDirection*e),i.classList.remove("q-drawer--delimiter")))}if(this.applyPosition((!0===this.$q.lang.rtl?!this.rightSide:this.rightSide)?Math.max(e-n,0):Math.min(0,n-e)),this.applyBackdrop(Object(o["a"])(n/e,0,1)),!0===t.isFirst){var s=this.$refs.content;s.classList.add("no-transition"),s.classList.add("q-drawer--delimiter")}},__closeByTouch:function(t){var e=this.size,n=t.direction===this.side,i=(!0===this.$q.lang.rtl?!n:n)?Object(o["a"])(t.distance.x,0,e):0;if(!0===t.isFinal){var r=Math.abs(i)0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),this.applyPosition(0);var n=this.layout.instances[!0===this.rightSide?"left":"right"];void 0!==n&&!0===n.mobileOpened&&n.hide(!1),!0===this.belowBreakpoint?(this.mobileOpened=!0,this.applyBackdrop(1),!0!==this.layout.container&&this.__preventScroll(!0)):this.__setScrollable(!0),clearTimeout(this.timer),this.timer=setTimeout(function(){t.__setScrollable(!1),t.$emit("show",e)},l)},__hide:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),!0===this.mobileOpened&&(this.mobileOpened=!1),this.applyPosition(this.stateDirection*this.size),this.applyBackdrop(0),this.__cleanup(),clearTimeout(this.timer),this.timer=setTimeout(function(){t.$emit("hide",e)},l)},__cleanup:function(){this.__preventScroll(!1),this.__setScrollable(!1)},__update:function(t,e){this.layout[this.side][t]!==e&&(this.layout[this.side][t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}},created:function(){this.layout.instances[this.side]=this,this.__update("size",this.size),this.__update("space",this.onLayout),this.__update("offset",this.offset)},mounted:function(){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",this.onLayout),this.applyPosition(!0===this.showing?0:void 0)},beforeDestroy:function(){clearTimeout(this.timer),clearTimeout(this.timerMini),!0===this.showing&&this.__cleanup(),this.layout.instances[this.side]===this&&(this.layout.instances[this.side]=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},render:function(t){var e=[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__closeByTouch}],n=[!0!==this.noSwipeOpen&&!0===this.belowBreakpoint?t("div",{staticClass:"q-drawer__opener fixed-".concat(this.side),directives:[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__openByTouch}]}):null,!0===this.mobileView?t("div",{ref:"backdrop",staticClass:"fullscreen q-drawer__backdrop q-layout__section--animate",class:this.backdropClass,style:void 0!==this.lastBackdropBg?{backgroundColor:this.lastBackdropBg}:null,on:{click:this.hide},directives:e}):null],i=[t("div",{staticClass:"q-drawer__content fit "+(!0===this.layout.container?"overflow-auto":"scroll"),class:this.contentClass,style:this.contentStyle},!0===this.isMini&&void 0!==this.$scopedSlots.mini?this.$scopedSlots.mini():Object(c["a"])(this,"default"))];return!0===this.elevated&&!0===this.showing&&i.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("div",{staticClass:"q-drawer-container"},n.concat([t("aside",{ref:"content",staticClass:"q-drawer q-layout__section--animate",class:this.classes,style:this.style,on:this.onNativeEvents,directives:!0===this.mobileView&&!0!==this.noSwipeClose?e:void 0},i)]))}})},f303:function(t,e,n){"use strict";n.d(e,"a",function(){return i});n("cadf"),n("456d"),n("ac6a");function i(t,e){var n=t.style;Object.keys(e).forEach(function(t){n[t]=e[t]})}},f37a:function(t,e,n){"use strict";e.byteLength=u,e.toByteArray=d,e.fromByteArray=m;for(var i=[],r=[],o="undefined"!==typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",a=0,c=s.length;a0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");-1===n&&(n=e);var i=n===e?0:4-n%4;return[n,i]}function u(t){var e=l(t),n=e[0],i=e[1];return 3*(n+i)/4-i}function h(t,e,n){return 3*(e+n)/4-n}function d(t){for(var e,n=l(t),i=n[0],s=n[1],a=new o(h(t,i,s)),c=0,u=s>0?i-4:i,d=0;d>16&255,a[c++]=e>>8&255,a[c++]=255&e;return 2===s&&(e=r[t.charCodeAt(d)]<<2|r[t.charCodeAt(d+1)]>>4,a[c++]=255&e),1===s&&(e=r[t.charCodeAt(d)]<<10|r[t.charCodeAt(d+1)]<<4|r[t.charCodeAt(d+2)]>>2,a[c++]=e>>8&255,a[c++]=255&e),a}function f(t){return i[t>>18&63]+i[t>>12&63]+i[t>>6&63]+i[63&t]}function p(t,e,n){for(var i,r=[],o=e;oc?c:a+s));return 1===r?(e=t[n-1],o.push(i[e>>2]+i[e<<4&63]+"==")):2===r&&(e=(t[n-2]<<8)+t[n-1],o.push(i[e>>10]+i[e>>4&63]+i[e<<2&63]+"=")),o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},f44b:function(t,e){function n(t,e,n,i,r,o,s){try{var a=t[o](s),c=a.value}catch(l){return void n(l)}a.done?e(c):Promise.resolve(c).then(i,r)}function i(t){return function(){var e=this,i=arguments;return new Promise(function(r,o){var s=t.apply(e,i);function a(t){n(s,r,o,a,c,"next",t)}function c(t){n(s,r,o,a,c,"throw",t)}a(void 0)})}}t.exports=i},f559:function(t,e,n){"use strict";var i=n("5ca1"),r=n("9def"),o=n("d2c8"),s="startsWith",a=""[s];i(i.P+i.F*n("5147")(s),"String",{startsWith:function(t){var e=o(this,t,s),n=r(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),i=String(t);return a?a.call(e,i,n):e.slice(n,n+i.length)===i}})},f605:function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},f751:function(t,e,n){var i=n("5ca1");i(i.S+i.F,"Object",{assign:n("7333")})},f9d7:function(t,e){!function(e){"use strict";var n,i=Object.prototype,r=i.hasOwnProperty,o="function"===typeof Symbol?Symbol:{},s=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag",l="object"===typeof t,u=e.regeneratorRuntime;if(u)l&&(t.exports=u);else{u=e.regeneratorRuntime=l?t.exports:{},u.wrap=y;var h="suspendedStart",d="suspendedYield",f="executing",p="completed",m={},v={};v[s]=function(){return this};var g=Object.getPrototypeOf,_=g&&g(g($([])));_&&_!==i&&r.call(_,s)&&(v=_);var b=C.prototype=k.prototype=Object.create(v);x.prototype=b.constructor=C,C.constructor=x,C[c]=x.displayName="GeneratorFunction",u.isGeneratorFunction=function(t){var e="function"===typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},u.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,C):(t.__proto__=C,c in t||(t[c]="GeneratorFunction")),t.prototype=Object.create(b),t},u.awrap=function(t){return{__await:t}},S(A.prototype),A.prototype[a]=function(){return this},u.AsyncIterator=A,u.async=function(t,e,n,i){var r=new A(y(t,e,n,i));return u.isGeneratorFunction(e)?r:r.next().then(function(t){return t.done?t.value:r.next()})},S(b),b[c]="Generator",b[s]=function(){return this},b.toString=function(){return"[object Generator]"},u.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){while(e.length){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},u.values=$,D.prototype={constructor:D,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method="next",this.arg=n,this.tryEntries.forEach(O),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function i(i,r){return a.type="throw",a.arg=t,e.next=i,r&&(e.method="next",e.arg=n),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var c=r.call(s,"catchLoc"),l=r.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),O(n),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;O(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,i){return this.delegate={iterator:$(t),resultName:e,nextLoc:i},"next"===this.method&&(this.arg=n),m}}}function y(t,e,n,i){var r=e&&e.prototype instanceof k?e:k,o=Object.create(r.prototype),s=new D(i||[]);return o._invoke=E(t,n,s),o}function w(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}function k(){}function x(){}function C(){}function S(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function A(t){function e(n,i,o,s){var a=w(t[n],t,i);if("throw"!==a.type){var c=a.arg,l=c.value;return l&&"object"===typeof l&&r.call(l,"__await")?Promise.resolve(l.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(l).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function i(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=i}function E(t,e,n){var i=h;return function(r,o){if(i===f)throw new Error("Generator is already running");if(i===p){if("throw"===r)throw o;return L()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=q(s,n);if(a){if(a===m)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===h)throw i=p,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var c=w(t,e,n);if("normal"===c.type){if(i=n.done?p:d,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=p,n.method="throw",n.arg=c.arg)}}}function q(t,e){var i=t.iterator[e.method];if(i===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,q(t,e),"throw"===e.method))return m;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var r=w(i,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,m;var o=r.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,m):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,m)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function O(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function D(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function $(t){if(t){var e=t[s];if(e)return e.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function e(){while(++i=3&&":"===t[e-3]?0:e>=3&&"/"===t[e-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(t,e,n){var i=t.slice(e);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function m(t){t.__index__=-1,t.__text_cache__=""}function v(t){return function(e,n){var i=e.slice(n);return t.test(i)?i.match(t)[0].length:0}}function g(){return function(t,e){e.normalize(t)}}function _(t){var e=t.re=n("b117")(t.__opts__),i=t.__tlds__.slice();function r(t){return t.replace("%TLDS%",e.src_tlds)}t.onCompile(),t.__tlds_replaced__||i.push(f),i.push(e.src_xn),e.src_tlds=i.join("|"),e.email_fuzzy=RegExp(r(e.tpl_email_fuzzy),"i"),e.link_fuzzy=RegExp(r(e.tpl_link_fuzzy),"i"),e.link_no_ip_fuzzy=RegExp(r(e.tpl_link_no_ip_fuzzy),"i"),e.host_fuzzy_test=RegExp(r(e.tpl_host_fuzzy_test),"i");var u=[];function h(t,e){throw new Error('(LinkifyIt) Invalid schema "'+t+'": '+e)}t.__compiled__={},Object.keys(t.__schemas__).forEach(function(e){var n=t.__schemas__[e];if(null!==n){var i={validate:null,link:null};if(t.__compiled__[e]=i,s(n))return a(n.validate)?i.validate=v(n.validate):c(n.validate)?i.validate=n.validate:h(e,n),void(c(n.normalize)?i.normalize=n.normalize:n.normalize?h(e,n):i.normalize=g());o(n)?u.push(e):h(e,n)}}),u.forEach(function(e){t.__compiled__[t.__schemas__[e]]&&(t.__compiled__[e].validate=t.__compiled__[t.__schemas__[e]].validate,t.__compiled__[e].normalize=t.__compiled__[t.__schemas__[e]].normalize)}),t.__compiled__[""]={validate:null,normalize:g()};var d=Object.keys(t.__compiled__).filter(function(e){return e.length>0&&t.__compiled__[e]}).map(l).join("|");t.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","i"),t.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","ig"),t.re.pretest=RegExp("("+t.re.schema_test.source+")|("+t.re.host_fuzzy_test.source+")|@","i"),m(t)}function b(t,e){var n=t.__index__,i=t.__last_index__,r=t.__text_cache__.slice(n,i);this.schema=t.__schema__.toLowerCase(),this.index=n+e,this.lastIndex=i+e,this.raw=r,this.text=r,this.url=r}function y(t,e){var n=new b(t,e);return t.__compiled__[n.schema].normalize(n,t),n}function w(t,e){if(!(this instanceof w))return new w(t,e);e||h(t)&&(e=t,t={}),this.__opts__=i({},u,e),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=i({},d,t),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},_(this)}w.prototype.add=function(t,e){return this.__schemas__[t]=e,_(this),this},w.prototype.set=function(t){return this.__opts__=i(this.__opts__,t),this},w.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var e,n,i,r,o,s,a,c,l;if(this.re.schema_test.test(t)){a=this.re.schema_search,a.lastIndex=0;while(null!==(e=a.exec(t)))if(r=this.testSchemaAt(t,e[2],a.lastIndex),r){this.__schema__=e[2],this.__index__=e.index+e[1].length,this.__last_index__=e.index+e[0].length+r;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=t.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c=0&&null!==(i=t.match(this.re.email_fuzzy))&&(o=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=s))),this.__index__>=0},w.prototype.pretest=function(t){return this.re.pretest.test(t)},w.prototype.testSchemaAt=function(t,e,n){return this.__compiled__[e.toLowerCase()]?this.__compiled__[e.toLowerCase()].validate(t,n,this):0},w.prototype.match=function(t){var e=0,n=[];this.__index__>=0&&this.__text_cache__===t&&(n.push(y(this,e)),e=this.__last_index__);var i=e?t.slice(e):t;while(this.test(i))n.push(y(this,e)),i=i.slice(this.__last_index__),e+=this.__last_index__;return n.length?n:null},w.prototype.tlds=function(t,e){return t=Array.isArray(t)?t:[t],e?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(t,e,n){return t!==n[e-1]}).reverse(),_(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,_(this),this)},w.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"!==t.schema||/^mailto:/i.test(t.url)||(t.url="mailto:"+t.url)},w.prototype.onCompile=function(){},t.exports=w},fdef:function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},fdfe:function(t,e,n){"use strict";var i=n("0068").isSpace;t.exports=function(t,e,n,r){var o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(o=t.src.charCodeAt(l++),42!==o&&45!==o&&95!==o)return!1;s=1;while(l=o?-1:(i=t.src.charCodeAt(r++),126!==i&&58!==i?-1:(n=t.skipSpaces(r),r===n?-1:n>=o?-1:r))}function i(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n=0;if(m=r+1,m>=o)return!1;if(t.isEmpty(m)&&(m++,m>=o))return!1;if(t.sCount[m]1&&t.isEmpty(t.line-1),t.tShift[l]=w,t.sCount[l]=y,t.tight=k,t.parentType=b,t.blkIndent=_,t.ddIndent=g,A=t.push("dd_close","dd",-1),h[1]=m=t.line,m>=o)break t;if(t.sCount[m]=o)break;if(u=m,t.isEmpty(u))break;if(t.sCount[u]=o)break;if(t.isEmpty(l)&&l++,l>=o)break;if(t.sCount[l]=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function b(t){return+t!=t&&(t=0),l.alloc(+t)}function y(t,e){if(l.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return Z(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return J(t).length;default:if(i)return Z(t).length;e=(""+e).toLowerCase(),i=!0}}function w(t,e,n){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return B(this,e,n);case"utf8":case"utf-8":return D(this,e,n);case"ascii":return I(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return O(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,e,n);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}function k(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function x(t,e,n,i,r){if(0===t.length)return-1;if("string"===typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(r)return-1;n=t.length-1}else if(n<0){if(!r)return-1;n=0}if("string"===typeof e&&(e=l.from(e,i)),l.isBuffer(e))return 0===e.length?-1:C(t,e,n,i,r);if("number"===typeof e)return e&=255,l.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):C(t,[e],n,i,r);throw new TypeError("val must be string, number or Buffer")}function C(t,e,n,i,r){var o,s=1,a=t.length,c=e.length;if(void 0!==i&&(i=String(i).toLowerCase(),"ucs2"===i||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(t.length<2||e.length<2)return-1;s=2,a/=2,c/=2,n/=2}function l(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(r){var u=-1;for(o=n;oa&&(n=a-c),o=n;o>=0;o--){for(var h=!0,d=0;dr&&(i=r)):i=r;var o=e.length;if(o%2!==0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var s=0;s239?4:l>223?3:l>191?2:1;if(r+h<=n)switch(h){case 1:l<128&&(u=l);break;case 2:o=t[r+1],128===(192&o)&&(c=(31&l)<<6|63&o,c>127&&(u=c));break;case 3:o=t[r+1],s=t[r+2],128===(192&o)&&128===(192&s)&&(c=(15&l)<<12|(63&o)<<6|63&s,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:o=t[r+1],s=t[r+2],a=t[r+3],128===(192&o)&&128===(192&s)&&128===(192&a)&&(c=(15&l)<<18|(63&o)<<12|(63&s)<<6|63&a,c>65535&&c<1114112&&(u=c))}null===u?(u=65533,h=1):u>65535&&(u-=65536,i.push(u>>>10&1023|55296),u=56320|1023&u),i.push(u),r+=h}return M(i)}e.Buffer=l,e.SlowBuffer=b,e.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:s(),e.kMaxLength=a(),l.poolSize=8192,l._augment=function(t){return t.__proto__=l.prototype,t},l.from=function(t,e,n){return u(null,t,e,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!==typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(t,e,n){return d(null,t,e,n)},l.allocUnsafe=function(t){return f(null,t)},l.allocUnsafeSlow=function(t){return f(null,t)},l.isBuffer=function(t){return!(null==t||!t._isBuffer)},l.compare=function(t,e){if(!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,i=e.length,r=0,o=Math.min(n,i);r0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),""},l.prototype.compare=function(t,e,n,i,r){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),e<0||n>t.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&e>=n)return 0;if(i>=r)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,i>>>=0,r>>>=0,this===t)return 0;for(var o=r-i,s=n-e,a=Math.min(o,s),c=this.slice(i,r),u=t.slice(e,n),h=0;hr)&&(n=r),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return S(this,t,e,n);case"utf8":case"utf-8":return A(this,t,e,n);case"ascii":return E(this,t,e,n);case"latin1":case"binary":return q(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var L=4096;function M(t){var e=t.length;if(e<=L)return String.fromCharCode.apply(String,t);var n="",i=0;while(ii)&&(n=i);for(var r="",o=e;on)throw new RangeError("Trying to access beyond buffer length")}function R(t,e,n,i,r,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>r||et.length)throw new RangeError("Index out of range")}function z(t,e,n,i){e<0&&(e=65535+e+1);for(var r=0,o=Math.min(t.length-n,2);r>>8*(i?r:1-r)}function N(t,e,n,i){e<0&&(e=4294967295+e+1);for(var r=0,o=Math.min(t.length-n,4);r>>8*(i?r:3-r)&255}function H(t,e,n,i,r,o){if(n+i>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function V(t,e,n,i,o){return o||H(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),r.write(t,e,n,i,23,4),n+4}function U(t,e,n,i,o){return o||H(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),r.write(t,e,n,i,52,8),n+8}l.prototype.slice=function(t,e){var n,i=this.length;if(t=~~t,e=void 0===e?i:~~e,t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e0&&(r*=256))i+=this[t+--e]*r;return i},l.prototype.readUInt8=function(t,e){return e||P(t,1,this.length),this[t]},l.prototype.readUInt16LE=function(t,e){return e||P(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUInt16BE=function(t,e){return e||P(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUInt32LE=function(t,e){return e||P(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUInt32BE=function(t,e){return e||P(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=this[t],r=1,o=0;while(++o=r&&(i-=Math.pow(2,8*e)),i},l.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=e,r=1,o=this[t+--i];while(i>0&&(r*=256))o+=this[t+--i]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return e||P(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){e||P(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){e||P(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return e||P(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return e||P(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!1,52,8)},l.prototype.writeUIntLE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){var r=Math.pow(2,8*n)-1;R(this,t,e,n,r,0)}var o=1,s=0;this[e]=255&t;while(++s=0&&(s*=256))this[e+o]=t/s&255;return e+n},l.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,255,0),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):N(this,t,e,!0),e+4},l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=0,s=1,a=0;this[e]=255&t;while(++o>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=n-1,s=1,a=0;this[e+o]=255&t;while(--o>=0&&(s*=256))t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,127,-128),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):N(this,t,e,!0),e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeFloatLE=function(t,e,n){return V(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return V(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return U(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return U(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,i){if(n||(n=0),i||0===i||(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e=0;--r)t[r+e]=this[r+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(r=0;r>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"===typeof t)for(o=e;o55295&&n<57344){if(!r){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===i){(e-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(e-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function K(t){for(var e=[],n=0;n>8,r=n%256,o.push(r),o.push(i)}return o}function J(t){return i.toByteArray(W(t))}function tt(t,e,n,i){for(var r=0;r=e.length||r>=t.length)break;e[r+n]=t[r]}return r}function et(t){return t!==t}}).call(this,n("93d9"))},"9def":function(t,e,n){var i=n("4588"),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},"9e1e":function(t,e,n){t.exports=!n("79e5")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"9e62":function(t,e,n){"use strict";var i=n("2c75");e["a"]={inheritAttrs:!1,props:{contentClass:[Array,String,Object],contentStyle:[Array,String,Object]},methods:{__showPortal:function(){void 0!==this.__portal&&!0!==this.__portal.showing&&(document.body.appendChild(this.__portal.$el),this.__portal.showing=!0)},__hidePortal:function(){void 0!==this.__portal&&!0===this.__portal.showing&&(this.__portal.$el.remove(),this.__portal.showing=!1)}},render:function(){void 0!==this.__portal&&this.__portal.$forceUpdate()},beforeMount:function(){var t=this,e={inheritAttrs:!1,render:function(e){return t.__render(e)},components:this.$options.components,directives:this.$options.directives};void 0!==this.__onPortalClose&&(e.methods={__qClosePopup:this.__onPortalClose});var n=this.__onPortalCreated;void 0!==n&&(e.created=function(){n(this)}),this.__portal=Object(i["b"])(this,e).$mount()},beforeDestroy:function(){this.__portal.$destroy(),this.__portal.$el.remove(),this.__portal=void 0}}},"9f8d":function(t,e){e.read=function(t,e,n,i,r){var o,s,a=8*r-i-1,c=(1<>1,u=-7,h=n?r-1:0,d=n?-1:1,f=t[e+h];for(h+=d,o=f&(1<<-u)-1,f>>=-u,u+=a;u>0;o=256*o+t[e+h],h+=d,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=i;u>0;s=256*s+t[e+h],h+=d,u-=8);if(0===o)o=1-l;else{if(o===c)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,i),o-=l}return(f?-1:1)*s*Math.pow(2,o-i)},e.write=function(t,e,n,i,r,o){var s,a,c,l=8*o-r-1,u=(1<>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:o-1,p=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-s))<1&&(s--,c*=2),e+=s+h>=1?d/c:d*Math.pow(2,1-h),e*c>=2&&(s++,c/=2),s+h>=u?(a=0,s=u):s+h>=1?(a=(e*c-1)*Math.pow(2,r),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,r),s=0));r>=8;t[n+f]=255&a,f+=p,a/=256,r-=8);for(s=s<0;t[n+f]=255&s,f+=p,s/=256,l-=8);t[n+f-p]|=128*m}},a124:function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r=t.tokens;for(n=0,i=r.length;n-1&&r.splice(e,1)}}}},a370:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCardSection",render:function(t){return t("div",{staticClass:"q-card__section",on:this.$listeners},Object(r["a"])(this,"default"))}})},a481:function(t,e,n){"use strict";var i=n("cb7c"),r=n("4bf8"),o=n("9def"),s=n("4588"),a=n("0390"),c=n("5f1b"),l=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(t){return void 0===t?t:String(t)};n("214f")("replace",2,function(t,e,n,m){return[function(i,r){var o=t(this),s=void 0==i?void 0:i[e];return void 0!==s?s.call(i,o,r):n.call(String(o),i,r)},function(t,e){var r=m(n,t,this,e);if(r.done)return r.value;var h=i(t),d=String(this),f="function"===typeof e;f||(e=String(e));var g=h.global;if(g){var _=h.unicode;h.lastIndex=0}var b=[];while(1){var y=c(h,d);if(null===y)break;if(b.push(y),!g)break;var w=String(y[0]);""===w&&(h.lastIndex=a(d,o(h.lastIndex),_))}for(var k="",x=0,C=0;C=x&&(k+=d.slice(x,A)+O,x=A+S.length)}return k+d.slice(x)}];function v(t,e,i,o,s,a){var c=i+t.length,l=o.length,u=f;return void 0!==s&&(s=r(s),u=d),n.call(a,u,function(n,r){var a;switch(r.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,i);case"'":return e.slice(c);case"<":a=s[r.slice(1,-1)];break;default:var u=+r;if(0===u)return n;if(u>l){var d=h(u/10);return 0===d?n:d<=l?void 0===o[d-1]?r.charAt(1):o[d-1]+r.charAt(1):n}a=o[u-1]}return void 0===a?"":a})}})},a5b8:function(t,e,n){"use strict";var i=n("d8e8");function r(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=i(e),this.reject=i(n)}t.exports.f=function(t){return new r(t)}},a7bc:function(t,e){t.exports=/[\0-\x1F\x7F-\x9F]/},a8c6:function(t,e,n){"use strict";function i(t,e,n){var i=e.target;n.touchTargetObserver=new MutationObserver(function(){!1===t.contains(i)&&n.end(e)}),n.touchTargetObserver.observe(t,{childList:!0,subtree:!0})}function r(t){void 0!==t.touchTargetObserver&&(t.touchTargetObserver.disconnect(),t.touchTargetObserver=void 0)}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r})},a915:function(t,e,n){"use strict";var i=n("4883"),r=[["normalize",n("4c26")],["block",n("3408")],["inline",n("a124")],["linkify",n("9921")],["replacements",n("bb4a")],["smartquotes",n("af30")]];function o(){this.ruler=new i;for(var t=0;t:(",">:-("],blush:[':")',':-")'],broken_heart:["c)if("center"===o.vertical)t.top=e[o.vertical]>c/2?c-n.bottom:0,t.maxHeight=Math.min(n.bottom,c);else if(e[o.vertical]>c/2){var u=Math.min(c,"center"===r.vertical?e.center:r.vertical===o.vertical?e.bottom:e.top);t.maxHeight=Math.min(n.bottom,u),t.top=Math.max(0,u-t.maxHeight)}else t.top="center"===r.vertical?e.center:r.vertical===o.vertical?e.top:e.bottom,t.maxHeight=Math.min(n.bottom,c-t.top);if(t.left<0||t.left+n.right>l)if(t.maxWidth=Math.min(n.right,l),"middle"===o.horizontal)t.left=e[o.horizontal]>l/2?l-n.right:0;else if(e[o.horizontal]>l/2){var h=Math.min(l,"middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.right:e.left);t.maxWidth=Math.min(n.right,h),t.left=Math.max(0,h-t.maxWidth)}else t.left="middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.left:e.right,t.maxWidth=Math.min(n.right,l-t.left)}},ac6a:function(t,e,n){for(var i=n("cadf"),r=n("0d58"),o=n("2aba"),s=n("7726"),a=n("32e9"),c=n("84f2"),l=n("2b4c"),u=l("iterator"),h=l("toStringTag"),d=c.Array,f={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=r(f),m=0;m1?arguments[1]:void 0,i=r(e.length),c=void 0===n?i:Math.min(r(n),i),l=String(t);return a?a.call(e,l,c):e.slice(c-l.length,c)===l}})},af30:function(t,e,n){"use strict";var i=n("0068").isWhiteSpace,r=n("0068").isPunctChar,o=n("0068").isMdAsciiPunct,s=/['"]/,a=/['"]/g,c="’";function l(t,e,n){return t.substr(0,e)+n+t.substr(e+1)}function u(t,e){var n,s,u,h,d,f,p,m,v,g,_,b,y,w,k,x,C,S,A,E,q;for(A=[],n=0;n=0;C--)if(A[C].level<=p)break;if(A.length=C+1,"text"===s.type){u=s.content,d=0,f=u.length;t:while(d=0)v=u.charCodeAt(h.index-1);else for(C=n-1;C>=0;C--){if("softbreak"===t[C].type||"hardbreak"===t[C].type)break;if("text"===t[C].type){v=t[C].content.charCodeAt(t[C].content.length-1);break}}if(g=32,d=48&&v<=57&&(x=k=!1),k&&x&&(k=!1,x=b),k||x){if(x)for(C=A.length-1;C>=0;C--){if(m=A[C],A[C].level=0;e--)"inline"===t.tokens[e].type&&s.test(t.tokens[e].content)&&u(t.tokens[e].children,t)}},b05d:function(t,e,n){"use strict";n("7f7f"),n("cadf"),n("456d"),n("ac6a"),n("7514"),n("6b54"),n("aef6"),n("f559"),n("6762"),n("2fdb"),n("c5f6"),n("7cdf"),n("f751");var i=n("0967");function r(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),i=1;i=0?r=s:(r=i+s,r<0&&(r=0));while(rn.length)&&(e=n.length),e-=t.length;var i=n.indexOf(t,e);return-1!==i&&i===e}),!1===i["c"]&&("function"!==typeof Element.prototype.matches&&(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.webkitMatchesSelector||function(t){var e=this,n=(e.document||e.ownerDocument).querySelectorAll(t),i=0;while(n[i]&&n[i]!==e)++i;return Boolean(n[i])}),"function"!==typeof Element.prototype.closest&&(Element.prototype.closest=function(t){var e=this;while(e&&1===e.nodeType){if(e.matches(t))return e;e=e.parentNode}return null}),function(t){t.forEach(function(t){t.hasOwnProperty("remove")||Object.defineProperty(t,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})})}([Element.prototype,CharacterData.prototype,DocumentType.prototype])),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null==this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),i=n.length>>>0,r=arguments[1],o=0;o=i.sm,n.gt.sm=e>=i.md,n.gt.md=e>=i.lg,n.gt.lg=e>=i.xl,n.lt.sm=ei.xl},u={},h=16;this.setSizes=function(t){l.forEach(function(e){void 0!==t[e]&&(u[e]=t[e])})},this.setDebounce=function(t){h=t};var d=function(){var t=getComputedStyle(document.body);t.getPropertyValue("--q-size-sm")&&l.forEach(function(e){n.sizes[e]=parseInt(t.getPropertyValue("--q-size-".concat(e)),10)}),n.setSizes=function(t){l.forEach(function(e){t[e]&&(n.sizes[e]=t[e])}),o(!0)},n.setDebounce=function(t){var e=function(){o()};r&&window.removeEventListener("resize",r,a["d"].passive),r=t>0?Object(c["a"])(e,t):e,window.addEventListener("resize",r,a["d"].passive)},n.setDebounce(h),Object.keys(u).length>0?(n.setSizes(u),u=void 0):o()};!0===i["b"]?e.takeover.push(d):d(),s["a"].util.defineReactive(t,"screen",this)}else t.screen=this}},h=n("582c"),d=n("ec5d"),f=n("bc78");function p(t){return!0===t.ios?"ios":!0===t.android?"android":!0===t.winphone?"winphone":void 0}function m(t,e){var n=t.is,i=t.has,r=t.within,o=[n.desktop?"desktop":"mobile",i.touch?"touch":"no-touch"];if(!0===n.mobile){var s=p(n);void 0!==s&&o.push("platform-"+s)}return!0===n.cordova?(o.push("cordova"),!0!==n.ios||void 0!==e.cordova&&!1===e.cordova.iosStatusBarPadding||o.push("q-ios-padding")):!0===n.electron&&o.push("electron"),!0===r.iframe&&o.push("within-iframe"),o}function v(t,e){var n=m(t,e);!0===t.is.ie&&11===t.is.versionNumber?n.forEach(function(t){return document.body.classList.add(t)}):document.body.classList.add.apply(document.body.classList,n),!0===t.is.ios&&document.body.addEventListener("touchstart",function(){})}function g(t){for(var e in t)Object(f["g"])(e,t[e])}var _={install:function(t,e,n){!0!==i["c"]?(n.brand&&g(n.brand),v(t.platform,n)):e.server.push(function(t,e){var i=m(t.platform,n),r=e.ssr.setBodyClasses;"function"===typeof r?r(i):e.ssr.Q_BODY_CLASSES=i.join(" ")})}},b={name:"material-icons",type:{positive:"check_circle",negative:"warning",info:"info",warning:"priority_high"},arrow:{up:"arrow_upward",right:"arrow_forward",down:"arrow_downward",left:"arrow_back",dropdown:"arrow_drop_down"},chevron:{left:"chevron_left",right:"chevron_right"},colorPicker:{spectrum:"gradient",tune:"tune",palette:"style"},pullToRefresh:{icon:"refresh"},carousel:{left:"chevron_left",right:"chevron_right",navigationIcon:"lens",thumbnails:"view_carousel"},chip:{remove:"cancel",selected:"check"},datetime:{arrowLeft:"chevron_left",arrowRight:"chevron_right",now:"access_time",today:"today"},editor:{bold:"format_bold",italic:"format_italic",strikethrough:"strikethrough_s",underline:"format_underlined",unorderedList:"format_list_bulleted",orderedList:"format_list_numbered",subscript:"vertical_align_bottom",superscript:"vertical_align_top",hyperlink:"link",toggleFullscreen:"fullscreen",quote:"format_quote",left:"format_align_left",center:"format_align_center",right:"format_align_right",justify:"format_align_justify",print:"print",outdent:"format_indent_decrease",indent:"format_indent_increase",removeFormat:"format_clear",formatting:"text_format",fontSize:"format_size",align:"format_align_left",hr:"remove",undo:"undo",redo:"redo",header:"format_size",code:"code",size:"format_size",font:"font_download"},expansionItem:{icon:"keyboard_arrow_down",denseIcon:"arrow_drop_down"},fab:{icon:"add",activeIcon:"close"},field:{clear:"cancel",error:"error"},pagination:{first:"first_page",prev:"keyboard_arrow_left",next:"keyboard_arrow_right",last:"last_page"},rating:{icon:"grade"},stepper:{done:"check",active:"edit",error:"warning"},tabs:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down"},table:{arrowUp:"arrow_upward",warning:"warning",prevPage:"chevron_left",nextPage:"chevron_right"},tree:{icon:"play_arrow"},uploader:{done:"done",clear:"clear",add:"add_box",upload:"cloud_upload",removeQueue:"clear_all",removeUploaded:"done_all"}},y={__installed:!1,install:function(t,e){var n=this;this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b;e.set=n.set,!0===i["c"]||void 0!==t.iconSet?t.iconSet=e:s["a"].util.defineReactive(t,"iconSet",e),n.name=e.name,n.def=e},this.set(e)}},w={server:[],takeover:[]},k={version:o["a"]},x=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.__installed){this.__installed=!0;var n=e.config||{};if(i["a"].install(k,w),_.install(k,w,n),u.install(k,w),h["a"].install(k,n),d["a"].install(k,w,e.lang),y.install(k,e.iconSet),!0===i["c"]?t.mixin({beforeCreate:function(){this.$q=this.$root.$options.$q}}):t.prototype.$q=k,e.components&&Object.keys(e.components).forEach(function(n){var i=e.components[n];"function"===typeof i&&t.component(i.options.name,i)}),e.directives&&Object.keys(e.directives).forEach(function(n){var i=e.directives[n];void 0!==i.name&&void 0!==i.unbind&&t.directive(i.name,i)}),e.plugins){var r={$q:k,queues:w,cfg:n};Object.keys(e.plugins).forEach(function(t){var n=e.plugins[t];"function"===typeof n.install&&n!==i["a"]&&n!==u&&n.install(r)})}}},C=n("3c93"),S=n.n(C),A={mounted:function(){var t=this;w.takeover.forEach(function(e){e(t.$q)})}},E=function(t){if(t.ssr){var e=S()({},k);Object.assign(t.ssr,{Q_HEAD_TAGS:"",Q_BODY_ATTRS:"",Q_BODY_TAGS:""}),w.server.forEach(function(n){n(e,t)}),t.app.$q=e}else{var n=t.app.mixins||[];n.includes(A)||(t.app.mixins=n.concat(A))}};e["a"]={version:o["a"],install:x,lang:d["a"],iconSet:y,ssrUpdate:E}},b0bf:function(t,e,n){"use strict";var i=/]+[^>]*>/;function r(t){return i.test(t)}var o={root:/]+>/,width:/(^|\s)width\s*=\s*"(.+?)"/i,height:/(^|\s)height\s*=\s*"(.+?)"/i,viewbox:/(^|\s)viewbox\s*=\s*"(.+?)"/i};function s(t){var e=1;if(t&&t[2]){var n=t[2].split(/\s/g);4===n.length&&(n=n.map(function(t){return parseInt(t,10)}),e=(n[2]-n[0])/(n[3]-n[1]))}return e}function a(t){var e=t.toString().replace(/[\r\n\s]+/g," "),n=e.match(o.root),i=n&&n[0];if(i){var r=i.match(o.width),a=i.match(o.height),c=i.match(o.viewbox),l=s(c);return{width:parseInt(r&&r[2],10)||0,height:parseInt(a&&a[2],10)||0,ratio:l}}}function c(t){var e=a(t),n=e.width,i=e.height,r=e.ratio;if(n&&i)return{width:n,height:i};if(n)return{width:n,height:Math.floor(n/r)};if(i)return{width:Math.floor(i*r),height:i};throw new TypeError("invalid svg")}t.exports={detect:r,calculate:c}},b0c5:function(t,e,n){"use strict";var i=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:i!==/./.exec},{exec:i})},b117:function(t,e,n){"use strict";t.exports=function(t){var e={};e.src_Any=n("cbc7").source,e.src_Cc=n("a7bc").source,e.src_Z=n("4fc2").source,e.src_P=n("7ca0").source,e.src_ZPCc=[e.src_Z,e.src_P,e.src_Cc].join("|"),e.src_ZCc=[e.src_Z,e.src_Cc].join("|");var i="[><|]";return e.src_pseudo_letter="(?:(?!"+i+"|"+e.src_ZPCc+")"+e.src_Any+")",e.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",e.src_auth="(?:(?:(?!"+e.src_ZCc+"|[@/\\[\\]()]).)+@)?",e.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",e.src_host_terminator="(?=$|"+i+"|"+e.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+e.src_ZPCc+"))",e.src_path="(?:[/?#](?:(?!"+e.src_ZCc+"|"+i+"|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+e.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+e.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+e.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+e.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+e.src_ZCc+"|[']).)+\\'|\\'(?="+e.src_pseudo_letter+"|[-]).|\\.{2,3}[a-zA-Z0-9%/]|\\.(?!"+e.src_ZCc+"|[.]).|"+(t&&t["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+e.src_ZCc+").|\\!(?!"+e.src_ZCc+"|[!]).|\\?(?!"+e.src_ZCc+"|[?]).)+|\\/)?",e.src_email_name='[\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]+',e.src_xn="xn--[a-z0-9\\-]{1,59}",e.src_domain_root="(?:"+e.src_xn+"|"+e.src_pseudo_letter+"{1,63})",e.src_domain="(?:"+e.src_xn+"|(?:"+e.src_pseudo_letter+")|(?:"+e.src_pseudo_letter+"(?:-|"+e.src_pseudo_letter+"){0,61}"+e.src_pseudo_letter+"))",e.src_host="(?:(?:(?:(?:"+e.src_domain+")\\.)*"+e.src_domain+"))",e.tpl_host_fuzzy="(?:"+e.src_ip4+"|(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%)))",e.tpl_host_no_ip_fuzzy="(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%))",e.src_host_strict=e.src_host+e.src_host_terminator,e.tpl_host_fuzzy_strict=e.tpl_host_fuzzy+e.src_host_terminator,e.src_host_port_strict=e.src_host+e.src_port+e.src_host_terminator,e.tpl_host_port_fuzzy_strict=e.tpl_host_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_port_no_ip_fuzzy_strict=e.tpl_host_no_ip_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+e.src_ZPCc+"|>|$))",e.tpl_email_fuzzy="(^|"+i+"|\\(|"+e.src_ZCc+")("+e.src_email_name+"@"+e.tpl_host_fuzzy_strict+")",e.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_fuzzy_strict+e.src_path+")",e.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_no_ip_fuzzy_strict+e.src_path+")",e}},b326:function(t,e){function n(t,e){var n=[],i=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done);i=!0)if(n.push(s.value),e&&n.length===e)break}catch(c){r=!0,o=c}finally{try{i||null==a["return"]||a["return"]()}finally{if(r)throw o}}return n}t.exports=n},b498:function(t,e,n){"use strict";n("f751"),n("28a5"),n("aef6"),n("c5f6");var i=n("adc8"),r=n.n(i),o=(n("f559"),n("6762"),n("2fdb"),n("2b0e")),s=n("8621"),a=function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:250,i=!1;return function(){if(i)return e;i=!0;for(var r=arguments.length,o=new Array(r),s=0;si.sensitivity[0]&&(i.event.dir=s<0?"up":"down"),i.direction.horizontal&&o>a&&a<100&&c>i.sensitivity[0]&&(i.event.dir=r<0?"left":"right"),i.direction.up&&oi.sensitivity[0]&&(i.event.dir="up"),i.direction.down&&o0&&o<100&&l>i.sensitivity[0]&&(i.event.dir="down"),i.direction.left&&o>a&&r<0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="left"),i.direction.right&&o>a&&r>0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="right"),!1!==i.event.dir?(document.body.classList.add("no-pointer-events"),Object(v["h"])(t),Object(g["a"])(),i.handler({evt:t,direction:i.event.dir,duration:e,distance:{x:o,y:a}})):i.event.abort=!0}}else Object(v["h"])(t)},end:function(t){void 0!==i.event&&(Object(m["a"])(i),!1===i.event.abort&&!1!==i.event.dir&&(document.body.classList.remove("no-pointer-events"),Object(v["h"])(t)),i.event=void 0)}};t.__qtouchswipe&&(t.__qtouchswipe_old=t.__qtouchswipe),t.__qtouchswipe=i,!0===n&&t.addEventListener("mousedown",i.mouseStart),t.addEventListener("touchstart",i.start,v["d"].notPassive),t.addEventListener("touchmove",i.move,v["d"].notPassive),t.addEventListener("touchcancel",i.end),t.addEventListener("touchend",i.end)},update:function(t,e){e.oldValue!==e.value&&(t.__qtouchswipe.handler=e.value)},unbind:function(t,e){var n=t.__qtouchswipe_old||t.__qtouchswipe;void 0!==n&&(Object(m["a"])(n),document.body.classList.remove("no-pointer-events"),!0===e.modifiers.mouse&&(t.removeEventListener("mousedown",n.mouseStart),document.removeEventListener("mousemove",n.move,!0),document.removeEventListener("mouseup",n.mouseEnd,!0)),t.removeEventListener("touchstart",n.start,v["d"].notPassive),t.removeEventListener("touchmove",n.move,v["d"].notPassive),t.removeEventListener("touchcancel",n.end),t.removeEventListener("touchend",n.end),delete t[t.__qtouchswipe_old?"__qtouchswipe_old":"__qtouchswipe"])}},w=n("dde5"),k=o["a"].extend({name:"QTabPanelWrapper",render:function(t){return t("div",{staticClass:"q-panel scroll",attrs:{role:"tabpanel"},on:{input:v["g"]}},Object(w["a"])(this,"default"))}}),x={directives:{TouchSwipe:y},props:{value:{required:!0},animated:Boolean,infinite:Boolean,swipeable:Boolean,transitionPrev:{type:String,default:"slide-right"},transitionNext:{type:String,default:"slide-left"},keepAlive:Boolean},data:function(){return{panelIndex:null,panelTransition:null}},computed:{panelDirectives:function(){if(this.swipeable)return[{name:"touch-swipe",value:this.__swipe,modifiers:{horizontal:!0,mouse:!0}}]},contentKey:function(){return"string"===typeof this.value||"number"===typeof this.value?this.value:String(this.value)}},watch:{value:function(t,e){var n=this,i=!0===this.__isValidPanelName(t)?this.__getPanelIndex(t):-1;!0!==this.__forcedPanelTransition&&this.__updatePanelTransition(-1===i?0:i1&&void 0!==arguments[1]?arguments[1]:this.panelIndex,i=n+t,r=this.panels;while(i>-1&&i0&&-1!==n&&n!==r.length&&this.__go(t,-1===t?r.length:-1)},__swipe:function(t){this.__go((!0===this.$q.lang.rtl?-1:1)*("left"===t.direction?1:-1))},__updatePanelIndex:function(){var t=this.__getPanelIndex(this.value);return this.panelIndex!==t&&(this.panelIndex=t),!0},__getPanelContent:function(t){if(0!==this.panels.length){var e=this.__isValidPanelName(this.value)&&this.__updatePanelIndex()&&this.panels[this.panelIndex],n=!0===this.keepAlive?[t("keep-alive",[t(k,{key:this.contentKey},[e])])]:[t("div",{staticClass:"q-panel scroll",key:this.contentKey,attrs:{role:"tabpanel"},on:{input:v["g"]}},[e])];return!0===this.animated?[t("transition",{props:{name:this.panelTransition}},n)]:n}}},render:function(t){return this.panels=void 0!==this.$scopedSlots.default?this.$scopedSlots.default():[],this.__render(t)}},C={props:{name:{required:!0},disable:Boolean}},S=o["a"].extend({name:"QTabPanels",mixins:[x],methods:{__render:function(t){return t("div",{staticClass:"q-tab-panels q-panel-parent",directives:this.panelDirectives,on:this.$listeners},this.__getPanelContent(t))}}}),A=o["a"].extend({name:"QTabPanel",mixins:[C],render:function(t){return t("div",{staticClass:"q-tab-panel",on:this.$listeners},Object(w["a"])(this,"default"))}}),E=["rgb(255,204,204)","rgb(255,230,204)","rgb(255,255,204)","rgb(204,255,204)","rgb(204,255,230)","rgb(204,255,255)","rgb(204,230,255)","rgb(204,204,255)","rgb(230,204,255)","rgb(255,204,255)","rgb(255,153,153)","rgb(255,204,153)","rgb(255,255,153)","rgb(153,255,153)","rgb(153,255,204)","rgb(153,255,255)","rgb(153,204,255)","rgb(153,153,255)","rgb(204,153,255)","rgb(255,153,255)","rgb(255,102,102)","rgb(255,179,102)","rgb(255,255,102)","rgb(102,255,102)","rgb(102,255,179)","rgb(102,255,255)","rgb(102,179,255)","rgb(102,102,255)","rgb(179,102,255)","rgb(255,102,255)","rgb(255,51,51)","rgb(255,153,51)","rgb(255,255,51)","rgb(51,255,51)","rgb(51,255,153)","rgb(51,255,255)","rgb(51,153,255)","rgb(51,51,255)","rgb(153,51,255)","rgb(255,51,255)","rgb(255,0,0)","rgb(255,128,0)","rgb(255,255,0)","rgb(0,255,0)","rgb(0,255,128)","rgb(0,255,255)","rgb(0,128,255)","rgb(0,0,255)","rgb(128,0,255)","rgb(255,0,255)","rgb(245,0,0)","rgb(245,123,0)","rgb(245,245,0)","rgb(0,245,0)","rgb(0,245,123)","rgb(0,245,245)","rgb(0,123,245)","rgb(0,0,245)","rgb(123,0,245)","rgb(245,0,245)","rgb(214,0,0)","rgb(214,108,0)","rgb(214,214,0)","rgb(0,214,0)","rgb(0,214,108)","rgb(0,214,214)","rgb(0,108,214)","rgb(0,0,214)","rgb(108,0,214)","rgb(214,0,214)","rgb(163,0,0)","rgb(163,82,0)","rgb(163,163,0)","rgb(0,163,0)","rgb(0,163,82)","rgb(0,163,163)","rgb(0,82,163)","rgb(0,0,163)","rgb(82,0,163)","rgb(163,0,163)","rgb(92,0,0)","rgb(92,46,0)","rgb(92,92,0)","rgb(0,92,0)","rgb(0,92,46)","rgb(0,92,92)","rgb(0,46,92)","rgb(0,0,92)","rgb(46,0,92)","rgb(92,0,92)","rgb(255,255,255)","rgb(205,205,205)","rgb(178,178,178)","rgb(153,153,153)","rgb(127,127,127)","rgb(102,102,102)","rgb(76,76,76)","rgb(51,51,51)","rgb(25,25,25)","rgb(0,0,0)"];e["a"]=o["a"].extend({name:"QColor",directives:{TouchPan:l["a"]},props:{value:String,defaultValue:String,defaultView:{type:String,default:"spectrum",validator:function(t){return["spectrum","tune","palette"]}},formatModel:{type:String,default:"auto",validator:function(t){return["auto","hex","rgb","hexa","rgba"].includes(t)}},noHeader:Boolean,noFooter:Boolean,disable:Boolean,readonly:Boolean,dark:Boolean},data:function(){return{topView:"auto"===this.formatModel?void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")?"hex":"rgb":this.formatModel.startsWith("hex")?"hex":"rgb",view:this.defaultView,model:this.__parseModel(this.value||this.defaultValue)}},watch:{value:function(t){var e=this.__parseModel(t||this.defaultValue);e.hex!==this.model.hex&&(this.model=e)},defaultValue:function(t){if(!this.value&&t){var e=this.__parseModel(t);e.hex!==this.model.hex&&(this.model=e)}}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},forceHex:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("hex")>-1},forceAlpha:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1},isHex:function(){return void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")},isOutputHex:function(){return null!==this.forceHex?this.forceHex:this.isHex},hasAlpha:function(){return null!==this.forceAlpha?this.forceAlpha:void 0!==this.model.a},currentBgColor:function(){return{backgroundColor:this.model.rgb||"#000"}},headerClass:function(){var t=void 0!==this.model.a&&this.model.a<65||Object(c["c"])(this.model)>.4;return"q-color-picker__header-content--".concat(t?"light":"dark")},spectrumStyle:function(){return{background:"hsl(".concat(this.model.h,",100%,50%)")}},spectrumPointerStyle:function(){return r()({top:"".concat(100-this.model.v,"%")},this.$q.lang.rtl?"right":"left","".concat(this.model.s,"%"))},inputsArray:function(){var t=["r","g","b"];return!0===this.hasAlpha&&t.push("a"),t}},created:function(){this.__spectrumChange=a(this.__spectrumChange,20)},render:function(t){var e=[this.__getContent(t)];return!0!==this.noHeader&&e.unshift(this.__getHeader(t)),!0!==this.noFooter&&e.push(this.__getFooter(t)),t("div",{staticClass:"q-color-picker",class:{disabled:this.disable,"q-color-picker--dark":this.dark}},e)},methods:{__getHeader:function(t){var e=this;return t("div",{staticClass:"q-color-picker__header relative-position overflow-hidden"},[t("div",{staticClass:"q-color-picker__header-bg absolute-full"}),t("div",{staticClass:"q-color-picker__header-content absolute-full",class:this.headerClass,style:this.currentBgColor},[t(d["a"],{props:{value:this.topView,dense:!0,align:"justify"},on:{input:function(t){e.topView=t}}},[t(f["a"],{props:{label:"HEX"+(!0===this.hasAlpha?"A":""),name:"hex",ripple:!1}}),t(f["a"],{props:{label:"RGB"+(!0===this.hasAlpha?"A":""),name:"rgb",ripple:!1}})]),t("div",{staticClass:"q-color-picker__header-banner row flex-center no-wrap"},[t("input",{staticClass:"fit",domProps:{value:this.model[this.topView]},attrs:this.editable?null:{readonly:!0},on:{input:function(t){e.__updateErrorIcon(!0===e.__onEditorChange(t))},blur:function(t){!0===e.__onEditorChange(t,!0)&&e.$forceUpdate(),e.__updateErrorIcon(!1)}}}),t(h["a"],{ref:"errorIcon",staticClass:"q-color-picker__error-icon absolute no-pointer-events",props:{name:this.$q.iconSet.type.negative}})])])])},__getContent:function(t){return t(S,{props:{value:this.view,animated:!0}},[t(A,{staticClass:"q-color-picker__spectrum-tab",props:{name:"spectrum"}},this.__getSpectrumTab(t)),t(A,{staticClass:"q-pa-md q-color-picker__tune-tab",props:{name:"tune"}},this.__getTuneTab(t)),t(A,{staticClass:"q-pa-sm q-color-picker__palette-tab",props:{name:"palette"}},this.__getPaletteTab(t))])},__getFooter:function(t){var e=this;return t(d["a"],{staticClass:"q-color-picker__footer",props:{value:this.view,dense:!0,align:"justify"},on:{input:function(t){e.view=t}}},[t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.spectrum,name:"spectrum",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.tune,name:"tune",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.palette,name:"palette",ripple:!1}})])},__getSpectrumTab:function(t){var e=this;return[t("div",{ref:"spectrum",staticClass:"q-color-picker__spectrum non-selectable relative-position cursor-pointer",style:this.spectrumStyle,class:{readonly:!this.editable},on:this.editable?{click:this.__spectrumClick}:null,directives:this.editable?[{name:"touch-pan",modifiers:{prevent:!0,stop:!0,mouse:!0,mousePrevent:!0,mouseStop:!0},value:this.__spectrumPan}]:null},[t("div",{style:{paddingBottom:"100%"}}),t("div",{staticClass:"q-color-picker__spectrum-white absolute-full"}),t("div",{staticClass:"q-color-picker__spectrum-black absolute-full"}),t("div",{staticClass:"absolute",style:this.spectrumPointerStyle},[void 0!==this.model.hex?t("div",{staticClass:"q-color-picker__spectrum-circle"}):null])]),t("div",{staticClass:"q-color-picker__sliders"},[t("div",{staticClass:"q-color-picker__hue q-mx-sm non-selectable"},[t(u["a"],{props:{value:this.model.h,min:0,max:360,fillHandleAlways:!0,readonly:!this.editable},on:{input:this.__onHueChange,dragend:function(t){return e.__onHueChange(t,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"q-mx-sm q-color-picker__alpha non-selectable"},[t(u["a"],{props:{value:this.model.a,min:0,max:100,fillHandleAlways:!0,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)},dragend:function(t){return e.__onNumericChange({target:{value:t}},"a",100,!0)}}})]):null])]},__getTuneTab:function(t){var e=this;return[t("div",{staticClass:"row items-center no-wrap"},[t("div",["R"]),t(u["a"],{props:{value:this.model.r,min:0,max:255,color:"red",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"r",255)}}}),t("input",{domProps:{value:this.model.r},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"r",255)},blur:function(t){return e.__onNumericChange(t,"r",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["G"]),t(u["a"],{props:{value:this.model.g,min:0,max:255,color:"green",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"g",255)}}}),t("input",{domProps:{value:this.model.g},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"g",255)},blur:function(t){return e.__onNumericChange(t,"g",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["B"]),t(u["a"],{props:{value:this.model.b,min:0,max:255,color:"blue",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"b",255)}}}),t("input",{domProps:{value:this.model.b},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"b",255)},blur:function(t){return e.__onNumericChange(t,"b",255,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"row items-center no-wrap"},[t("div",["A"]),t(u["a"],{props:{value:this.model.a,color:"grey",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)}}}),t("input",{domProps:{value:this.model.a},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"a",100)},blur:function(t){return e.__onNumericChange(t,"a",100,!0)}}})]):null]},__getPaletteTab:function(t){var e=this;return[t("div",{staticClass:"row items-center",class:this.editable?"cursor-pointer":null},E.map(function(n){return t("div",{staticClass:"q-color-picker__cube col-auto",style:{backgroundColor:n},on:e.editable?{click:function(){e.__onPalettePick(n)}}:null})}))]},__onSpectrumChange:function(t,e,n){var i=this.$refs.spectrum;if(void 0!==i){var r=i.clientWidth,o=i.clientHeight,s=i.getBoundingClientRect(),a=Math.min(r,Math.max(0,t-s.left));this.$q.lang.rtl&&(a=r-a);var l=Math.min(o,Math.max(0,e-s.top)),u=Math.round(100*a/r),h=Math.round(100*Math.max(0,Math.min(1,-l/o+1))),d=Object(c["b"])({h:this.model.h,s:u,v:h,a:!0===this.hasAlpha?this.model.a:void 0});this.model.s=u,this.model.v=h,this.__update(d,n)}},__onHueChange:function(t,e){t=Math.round(t);var n=Object(c["b"])({h:t,s:this.model.s,v:this.model.v,a:!0===this.hasAlpha?this.model.a:void 0});this.model.h=t,this.__update(n,e)},__onNumericChange:function(t,e,n,i){if(/^[0-9]+$/.test(t.target.value)){var r=Math.floor(Number(t.target.value));if(r<0||r>n)i&&this.$forceUpdate();else{var o={r:"r"===e?r:this.model.r,g:"g"===e?r:this.model.g,b:"b"===e?r:this.model.b,a:!0===this.hasAlpha?"a"===e?r:this.model.a:void 0};if("a"!==e){var s=Object(c["e"])(o);this.model.h=s.h,this.model.s=s.s,this.model.v=s.v}if(this.__update(o,i),!0!==i&&void 0!==t.target.selectionEnd){var a=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(a,a)})}}}else i&&this.$forceUpdate()},__onEditorChange:function(t,e){var n,i=t.target.value;if("hex"===this.topView){if(i.length!==(!0===this.hasAlpha?9:7)||!/^#[0-9A-Fa-f]+$/.test(i))return!0;n=Object(c["a"])(i)}else{var r;if(!i.endsWith(")"))return!0;if(!0!==this.hasAlpha&&i.startsWith("rgb(")){if(r=i.substring(4,i.length-1).split(",").map(function(t){return parseInt(t,10)}),3!==r.length||!/^rgb\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3}\)$/.test(i))return!0}else{if(!0!==this.hasAlpha||!i.startsWith("rgba("))return!0;if(r=i.substring(5,i.length-1).split(","),4!==r.length||!/^rgba\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/.test(i))return!0;for(var o=0;o<3;o++){var s=parseInt(r[o],10);if(s<0||s>255)return!0;r[o]=s}var a=parseFloat(r[3]);if(a<0||a>1)return!0;r[3]=a}if(r[0]<0||r[0]>255||r[1]<0||r[1]>255||r[2]<0||r[2]>255||!0===this.hasAlpha&&(r[3]<0||r[3]>1))return!0;n={r:r[0],g:r[1],b:r[2],a:!0===this.hasAlpha?100*r[3]:void 0}}var l=Object(c["e"])(n);if(this.model.h=l.h,this.model.s=l.s,this.model.v=l.v,this.__update(n,e),!0!==e){var u=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(u,u)})}},__onPalettePick:function(t){var e=t.substring(4,t.length-1).split(","),n={r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:this.model.a},i=Object(c["e"])(n);this.model.h=i.h,this.model.s=i.s,this.model.v=i.v,this.__update(n,!0)},__update:function(t,e){this.model.hex=Object(c["d"])(t),this.model.rgb=Object(c["f"])(t),this.model.r=t.r,this.model.g=t.g,this.model.b=t.b,this.model.a=t.a;var n=this.model[!0===this.isOutputHex?"hex":"rgb"];this.$emit("input",n),e&&n!==this.value&&this.$emit("change",n)},__updateErrorIcon:function(t){this.$refs.errorIcon.$el.style.opacity=t?1:0},__parseModel:function(t){var e=void 0!==this.forceAlpha?this.forceAlpha:"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1;if(null===t||void 0===t||""===t||!0!==s["a"].anyColor(t))return{h:0,s:0,v:0,r:0,g:0,b:0,a:!0===e?100:void 0,hex:void 0,rgb:void 0};var n=Object(c["h"])(t);return!0===e&&void 0===n.a&&(n.a=100),n.hex=Object(c["d"])(n),n.rgb=Object(c["f"])(n),Object.assign(n,Object(c["e"])(n))},__spectrumPan:function(t){t.isFinal?this.__onSpectrumChange(t.position.left,t.position.top,!0):this.__spectrumChange(t)},__spectrumChange:function(t){this.__onSpectrumChange(t.position.left,t.position.top)},__spectrumClick:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset,!0)}}})},b6b4:function(t,e){function n(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}t.exports=n},b6d5:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("0909"),s=n("0967");e["a"]=i["a"].extend({name:"QResizeObserver",mixins:[o["a"]],props:{debounce:{type:[String,Number],default:100}},data:function(){return this.hasObserver?{}:{url:this.$q.platform.is.ie?null:"about:blank"}},methods:{trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__onResize():this.timer||(this.timer=setTimeout(this.__onResize,this.debounce))},__onResize:function(){if(this.timer=null,this.$el&&this.$el.parentNode){var t=this.$el.parentNode,e={width:t.offsetWidth,height:t.offsetHeight};e.width===this.size.width&&e.height===this.size.height||(this.size=e,this.$emit("resize",this.size))}}},render:function(t){var e=this;if(!1!==this.canRender&&!0!==this.hasObserver)return t("object",{style:this.style,attrs:{tabindex:-1,type:"text/html",data:this.url,"aria-hidden":!0},on:{load:function(){e.$el.contentDocument.defaultView.addEventListener("resize",e.trigger,r["d"].passive),e.trigger(!0)}}})},beforeCreate:function(){this.size={width:-1,height:-1},!0!==s["c"]&&(this.hasObserver="undefined"!==typeof ResizeObserver,!0!==this.hasObserver&&(this.style="".concat(this.$q.platform.is.ie?"visibility:hidden;":"","display:block;position:absolute;top:0;left:0;right:0;bottom:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1;")))},mounted:function(){if(!0===this.hasObserver)return this.observer=new ResizeObserver(this.trigger),void this.observer.observe(this.$el.parentNode);this.trigger(!0),this.$q.platform.is.ie&&(this.url="about:blank")},beforeDestroy:function(){clearTimeout(this.timer),!0!==this.hasObserver?this.$el.contentDocument&&this.$el.contentDocument.defaultView.removeEventListener("resize",this.trigger,r["d"].passive):this.$el.parentNode&&this.observer.unobserve(this.$el.parentNode)}})},baca:function(t,e,n){"use strict";function i(t){switch(t){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}t.exports=function(t,e){var n=t.pos;while(n=0;e--)n=t[e],"text"!==n.type||i||(n.content=n.content.replace(o,a)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function l(t){var e,n,r=0;for(e=t.length-1;e>=0;e--)n=t[e],"text"!==n.type||r||i.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---([^-]|$)/gm,"$1—$2").replace(/(^|\s)--(\s|$)/gm,"$1–$2").replace(/(^|[^-\s])--([^-\s]|$)/gm,"$1–$2")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&(r.test(t.tokens[e].content)&&c(t.tokens[e].children),i.test(t.tokens[e].content)&&l(t.tokens[e].children))}},bc78:function(t,e,n){"use strict";n.d(e,"d",function(){return i}),n.d(e,"f",function(){return r}),n.d(e,"h",function(){return o}),n.d(e,"a",function(){return s}),n.d(e,"b",function(){return a}),n.d(e,"e",function(){return c}),n.d(e,"c",function(){return d}),n.d(e,"g",function(){return f});n("28a5"),n("f559"),n("a481"),n("6b54");function i(t){var e=t.r,n=t.g,i=t.b,r=t.a,o=void 0!==r;if(e=Math.round(e),n=Math.round(n),i=Math.round(i),e>255||n>255||i>255||o&&r>100)throw new TypeError("Expected 3 numbers below 256 (and optionally one below 100)");return r=o?(256|Math.round(255*r/100)).toString(16).slice(1):"","#"+(i|n<<8|e<<16|1<<24).toString(16).slice(1)+r}function r(t){var e=t.r,n=t.g,i=t.b,r=t.a;return"rgb".concat(void 0!==r?"a":"","(").concat(e,",").concat(n,",").concat(i).concat(void 0!==r?","+r/100:"",")")}function o(t){if("string"!==typeof t)throw new TypeError("Expected a string");if(t=t.replace(/ /g,""),t.startsWith("#"))return s(t);var e=t.substring(t.indexOf("(")+1,t.length-1).split(",");return{r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:void 0!==e[3]?100*parseFloat(e[3]):void 0}}function s(t){if("string"!==typeof t)throw new TypeError("Expected a string");t=t.replace(/^#/,""),3===t.length?t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]:4===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]+t[3]+t[3]);var e=parseInt(t,16);return t.length>6?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:Math.round((255&e)/2.55)}:{r:e>>16,g:e>>8&255,b:255&e}}function a(t){var e,n,i,r,o,s,a,c,l=t.h,u=t.s,h=t.v,d=t.a;switch(u/=100,h/=100,l/=360,r=Math.floor(6*l),o=6*l-r,s=h*(1-u),a=h*(1-o*u),c=h*(1-(1-o)*u),r%6){case 0:e=h,n=c,i=s;break;case 1:e=a,n=h,i=s;break;case 2:e=s,n=h,i=c;break;case 3:e=s,n=a,i=h;break;case 4:e=c,n=s,i=h;break;case 5:e=h,n=s,i=a;break}return{r:Math.round(255*e),g:Math.round(255*n),b:Math.round(255*i),a:d}}function c(t){var e,n=t.r,i=t.g,r=t.b,o=t.a,s=Math.max(n,i,r),a=Math.min(n,i,r),c=s-a,l=0===s?0:c/s,u=s/255;switch(s){case a:e=0;break;case n:e=i-r+c*(i2&&void 0!==arguments[2]?arguments[2]:document.body;if("string"!==typeof t)throw new TypeError("Expected a string as color");if("string"!==typeof e)throw new TypeError("Expected a string as value");if(!(n instanceof Element))throw new TypeError("Expected a DOM element");switch(n.style.setProperty("--q-color-".concat(t),e),t){case"negative":case"warning":n.style.setProperty("--q-color-".concat(t,"-l"),h(e,46));break;case"light":n.style.setProperty("--q-color-".concat(t,"-d"),h(e,-10))}}},bcaa:function(t,e,n){var i=n("cb7c"),r=n("d3f4"),o=n("a5b8");t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t),s=n.resolve;return s(e),n.promise}},bd4c:function(t,e,n){"use strict";n.d(e,"b",function(){return v});n("4917"),n("a481"),n("28a5");var i=n("68bf"),r=n.n(i),o=(n("cadf"),n("456d"),n("ac6a"),n("5ff7")),s=n("7937"),a=n("ec5d"),c=864e5,l=36e5,u=6e4,h=/\[((?:[^\]\\]|\\]|\\)*)\]|d{1,4}|M{1,4}|m{1,2}|w{1,2}|Qo|Do|D{1,4}|YY(?:YY)?|H{1,2}|h{1,2}|s{1,2}|S{1,3}|Z{1,2}|a{1,2}|[AQExX]/g;function d(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=t>0?"-":"+",i=Math.abs(t),r=Math.floor(i/60),o=i%60;return n+Object(s["d"])(r)+e+Object(s["d"])(o)}function f(t,e){var n=new Date(t.getFullYear(),e,0,0,0,0,0),i=n.getDate();t.setMonth(e-1,Math.min(i,t.getDate()))}function p(t,e,n){var i=new Date(t),r=n?1:-1;return Object.keys(e).forEach(function(t){if("month"!==t){var n="year"===t?"FullYear":Object(s["b"])("days"===t?"date":t);i["set".concat(n)](i["get".concat(n)]()+r*e[t])}else f(i,i.getMonth()+1+r*e.month)}),i}function m(t){if("number"===typeof t)return!0;var e=Date.parse(t);return!1===isNaN(e)}function v(t){var e=t,n=e.split("/").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),i=r()(n,3),o=i[0],s=i[1],a=i[2];return(a<1||a>new Date(o,s,0).getDate())&&(a=null),(s>12||0===s)&&(s=s%12||12),null!==o&&null!==s&&null!==a||(e=null,null!==o&&null===s&&(s=1)),{year:o,month:s,day:a,value:e}}function g(t){var e=t.split(":").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),n=r()(e,3),i=n[0],o=n[1],s=n[2];return{hour:null===i?null:i%24,minute:null===o?null:o%60,second:null===s?null:s%60}}function _(t,e){return C(new Date,t,e)}function b(t){var e=new Date(t).getDay();return 0===e?7:e}function y(t){var e=new Date(t.getFullYear(),t.getMonth(),t.getDate());e.setDate(e.getDate()-(e.getDay()+6)%7+3);var n=new Date(e.getFullYear(),0,4);n.setDate(n.getDate()-(n.getDay()+6)%7+3);var i=e.getTimezoneOffset()-n.getTimezoneOffset();e.setHours(e.getHours()-i);var r=(e-n)/(7*c);return 1+Math.floor(r)}function w(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=new Date(e).getTime(),o=new Date(n).getTime(),s=new Date(t).getTime();return i.inclusiveFrom&&r--,i.inclusiveTo&&o++,s>r&&s1?n-1:0),r=1;r1?n-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:"days",i=new Date(t),r=new Date(e);switch(n){case"years":return i.getFullYear()-r.getFullYear();case"months":return 12*(i.getFullYear()-r.getFullYear())+i.getMonth()-r.getMonth();case"days":return T(S(i,"day"),S(r,"day"),c);case"hours":return T(S(i,"hour"),S(r,"hour"),l);case"minutes":return T(S(i,"minute"),S(r,"minute"),u);case"seconds":return T(S(i,"second"),S(r,"second"),1e3)}}function O(t){return $(t,S(t,"year"),"days")+1}function D(t){return Object(o["a"])(t)?"date":"number"===typeof t?"number":"string"}function L(t,e,n){if(t||0===t)switch(e){case"date":return t;case"number":return t.getTime();default:return P(t,n)}}function M(t,e,n){var i=new Date(t);if(e){var r=new Date(e);if(io)return o}return i}function I(t,e,n){var i=new Date(t),r=new Date(e);if(void 0===n)return i.getTime()===r.getTime();switch(n){case"second":if(i.getSeconds()!==r.getSeconds())return!1;case"minute":if(i.getMinutes()!==r.getMinutes())return!1;case"hour":if(i.getHours()!==r.getHours())return!1;case"day":if(i.getDate()!==r.getDate())return!1;case"month":if(i.getMonth()!==r.getMonth())return!1;case"year":if(i.getFullYear()!==r.getFullYear())return!1;break;default:throw new Error("date isSameDate unknown unit ".concat(n))}return!0}function j(t){return new Date(t.getFullYear(),t.getMonth()+1,0).getDate()}function B(t){if(t>=11&&t<=13)return"".concat(t,"th");switch(t%10){case 1:return"".concat(t,"st");case 2:return"".concat(t,"nd");case 3:return"".concat(t,"rd")}return"".concat(t,"th")}var F={YY:function(t){return Object(s["d"])(t.getFullYear(),4).substr(2)},YYYY:function(t){return Object(s["d"])(t.getFullYear(),4)},M:function(t){return t.getMonth()+1},MM:function(t){return Object(s["d"])(t.getMonth()+1)},MMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNamesShort||a["a"].props.date.monthsShort)[t.getMonth()]},MMMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNames||a["a"].props.date.months)[t.getMonth()]},Q:function(t){return Math.ceil((t.getMonth()+1)/3)},Qo:function(t){return B(this.Q(t))},D:function(t){return t.getDate()},Do:function(t){return B(t.getDate())},DD:function(t){return Object(s["d"])(t.getDate())},DDD:function(t){return O(t)},DDDD:function(t){return Object(s["d"])(O(t),3)},d:function(t){return t.getDay()},dd:function(t){return this.dddd(t).slice(0,2)},ddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNamesShort||a["a"].props.date.daysShort)[t.getDay()]},dddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNames||a["a"].props.date.days)[t.getDay()]},E:function(t){return t.getDay()||7},w:function(t){return y(t)},ww:function(t){return Object(s["d"])(y(t))},H:function(t){return t.getHours()},HH:function(t){return Object(s["d"])(t.getHours())},h:function(t){var e=t.getHours();return 0===e?12:e>12?e%12:e},hh:function(t){return Object(s["d"])(this.h(t))},m:function(t){return t.getMinutes()},mm:function(t){return Object(s["d"])(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return Object(s["d"])(t.getSeconds())},S:function(t){return Math.floor(t.getMilliseconds()/100)},SS:function(t){return Object(s["d"])(Math.floor(t.getMilliseconds()/10))},SSS:function(t){return Object(s["d"])(t.getMilliseconds(),3)},A:function(t){return this.H(t)<12?"AM":"PM"},a:function(t){return this.H(t)<12?"am":"pm"},aa:function(t){return this.H(t)<12?"a.m.":"p.m."},Z:function(t){return d(t.getTimezoneOffset(),":")},ZZ:function(t){return d(t.getTimezoneOffset())},X:function(t){return Math.floor(t.getTime()/1e3)},x:function(t){return t.getTime()}};function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"YYYY-MM-DDTHH:mm:ss.SSSZ",n=arguments.length>2?arguments[2]:void 0;if((0===t||t)&&t!==1/0&&t!==-1/0){var i=new Date(t);if(!isNaN(i))return e.replace(h,function(t,e){return t in F?F[t](i,n):void 0===e?t:e.split("\\]").join("]")})}}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return t.match(h)}function z(t){return Object(o["a"])(t)?new Date(t.getTime()):t}e["a"]={isValid:m,splitDate:v,splitTime:g,buildDate:_,getDayOfWeek:b,getWeekOfYear:y,isBetweenDates:w,addToDate:k,subtractFromDate:x,adjustDate:C,startOfDate:S,endOfDate:A,getMaxDate:E,getMinDate:q,getDateDiff:$,getDayOfYear:O,inferDateFormat:D,convertDateToFormat:L,getDateBetween:M,isSameDate:I,daysInMonth:j,formatter:F,formatDate:P,matchFormat:R,clone:z}},bd68:function(t,e,n){"use strict";t.exports=n("f0f2")},be03:function(t,e){var n=!0,i=!1,r=!1;function o(t,e,n){var i=t.attrIndex(e),r=[e,n];i<0?t.attrPush(r):t.attrs[i]=r}function s(t,e){for(var n=t[e].level-1,i=e-1;i>=0;i--)if(t[i].level===n)return i;return-1}function a(t,e){return f(t[e])&&p(t[e-1])&&m(t[e-2])&&v(t[e])}function c(t,e){if(t.children.unshift(l(t,e)),t.children[1].content=t.children[1].content.slice(3),t.content=t.content.slice(3),i)if(r){t.children.pop();var n="task-item-"+Math.ceil(1e7*Math.random()-1e3);t.children[0].content=t.children[0].content.slice(0,-1)+' id="'+n+'">',t.children.push(d(t.content,n,e))}else t.children.unshift(u(e)),t.children.push(h(e))}function l(t,e){var i=new e("html_inline","",0),r=n?' disabled="" ':"";return 0===t.content.indexOf("[ ] ")?i.content='
    \n':'
    \n')+'
    \n
      \n'}function a(){return"
    \n
    \n"}function c(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),'
  • '}function l(){return"
  • \n"}function u(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),' ↩︎'}t.exports=function(t){var e=t.helpers.parseLinkLabel,n=t.utils.isSpace;function h(t,e,i,r){var o,s,a,c,l,u,h,d,f,p,m,v=t.bMarks[e]+t.tShift[e],g=t.eMarks[e];if(v+4>g)return!1;if(91!==t.src.charCodeAt(v))return!1;if(94!==t.src.charCodeAt(v+1))return!1;for(l=v+2;l=g||58!==t.src.charCodeAt(++l))return!1;if(r)return!0;l++,t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.refs||(t.env.footnotes.refs={}),u=t.src.slice(v+2,l-2),t.env.footnotes.refs[":"+u]=-1,h=new t.Token("footnote_reference_open","",1),h.meta={label:u},h.level=t.level++,t.tokens.push(h),o=t.bMarks[e],s=t.tShift[e],a=t.sCount[e],c=t.parentType,m=l,d=f=t.sCount[e]+l-(t.bMarks[e]+t.tShift[e]);while(l=c)&&(94===t.src.charCodeAt(l)&&(91===t.src.charCodeAt(l+1)&&(i=l+2,r=e(t,l+1),!(r<0)&&(n||(t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.list||(t.env.footnotes.list=[]),o=t.env.footnotes.list.length,t.md.inline.parse(t.src.slice(i,r),t.md,t.env,a=[]),s=t.push("footnote_ref","",0),s.meta={id:o},t.env.footnotes.list[o]={tokens:a}),t.pos=r+1,t.posMax=c,!0))))}function f(t,e){var n,i,r,o,s,a=t.posMax,c=t.pos;if(c+3>a)return!1;if(!t.env.footnotes||!t.env.footnotes.refs)return!1;if(91!==t.src.charCodeAt(c))return!1;if(94!==t.src.charCodeAt(c+1))return!1;for(i=c+2;i=a)&&(i++,n=t.src.slice(c+2,i-1),"undefined"!==typeof t.env.footnotes.refs[":"+n]&&(e||(t.env.footnotes.list||(t.env.footnotes.list=[]),t.env.footnotes.refs[":"+n]<0?(r=t.env.footnotes.list.length,t.env.footnotes.list[r]={label:n,count:0},t.env.footnotes.refs[":"+n]=r):r=t.env.footnotes.refs[":"+n],o=t.env.footnotes.list[r].count,t.env.footnotes.list[r].count++,s=t.push("footnote_ref","",0),s.meta={id:r,subId:o,label:n}),t.pos=i,t.posMax=a,!0)))}function p(t){var e,n,i,r,o,s,a,c,l,u,h=!1,d={};if(t.env.footnotes&&(t.tokens=t.tokens.filter(function(t){return"footnote_reference_open"===t.type?(h=!0,l=[],u=t.meta.label,!1):"footnote_reference_close"===t.type?(h=!1,d[":"+u]=l,!1):(h&&l.push(t),!h)}),t.env.footnotes.list)){for(s=t.env.footnotes.list,a=new t.Token("footnote_block_open","",1),t.tokens.push(a),e=0,n=s.length;e0?s[e].count:1,i=0;i=4)return!1;if(62!==t.src.charCodeAt(A++))return!1;if(r)return!0;c=f=t.sCount[e]+A-(t.bMarks[e]+t.tShift[e]),32===t.src.charCodeAt(A)?(A++,c++,f++,o=!1,y=!0):9===t.src.charCodeAt(A)?(y=!0,(t.bsCount[e]+f)%4===3?(A++,c++,f++,o=!1):o=!0):y=!1,p=[t.bMarks[e]],t.bMarks[e]=A;while(A=E,_=[t.sCount[e]],t.sCount[e]=f-c,b=[t.tShift[e]],t.tShift[e]=A-t.bMarks[e],k=t.md.block.ruler.getRules("blockquote"),g=t.parentType,t.parentType="blockquote",C=!1,d=e+1;d=E)break;if(62!==t.src.charCodeAt(A++)||C){if(u)break;for(w=!1,a=0,l=k.length;a=E,m.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(y?1:0),_.push(t.sCount[d]),t.sCount[d]=f-c,b.push(t.tShift[d]),t.tShift[d]=A-t.bMarks[d]}}for(v=t.blkIndent,t.blkIndent=0,x=t.push("blockquote_open","blockquote",1),x.markup=">",x.map=h=[e,0],t.md.block.tokenize(t,e,d),x=t.push("blockquote_close","blockquote",-1),x.markup=">",t.lineMax=S,t.parentType=g,h[1]=t.line,a=0;a2&&void 0!==arguments[2]?arguments[2]:{};return this.setTextColor(t,this.setBackgroundColor(e,n))},setBackgroundColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{"background-color":"".concat(t),"border-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"bg-"+n,!0))}return e},setTextColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{color:"".concat(t),"caret-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"text-"+n,!0))}return e}}}),h=(n("7514"),n("20d6"),n("c5f6"),{scroller:{value:{type:String,required:!0},items:{type:Array,required:!0},height:{type:[Number,String],required:!0},dense:Boolean,disabledItems:Array,disable:Boolean},base:{value:[String,Array],borderColor:{type:String,default:"#ccc"},barColor:{type:String,default:"#ccc"},color:{type:String,default:"white"},backgroundColor:{type:String,default:"primary"},innerColor:{type:String,default:"primary"},innerBackgroundColor:{type:String,default:"white"},dense:Boolean,disable:Boolean,roundedBorders:Boolean,noBorder:Boolean,noHeader:Boolean,noFooter:Boolean,noShadow:Boolean},locale:{locale:{type:String,default:"en-us"}},date:{minDate:String,maxDate:String,dates:Array,disabledDates:Array,disabledYears:{type:Array,default:function(){return[]}},disabledMonths:{type:Array,default:function(){return[]}},disabledDays:{type:Array,default:function(){return[]}},shortYearLabel:Boolean,shortMonthLabel:Boolean,shortDayLabel:Boolean,showMonthLabel:Boolean,showWeekdayLabel:Boolean,noDays:Boolean,noMonths:Boolean,noYears:Boolean},time:{minuteInterval:{type:[String,Number],default:1},hourInterval:{type:[String,Number],default:1},shortTimeLabel:Boolean,disabledHours:{type:Array,default:function(){return[]}},disabledMinutes:{type:Array,default:function(){return[]}},noMinutes:Boolean,noHours:Boolean,hours:Array,minutes:Array,minTime:{type:String,default:"00:00"},maxTime:{type:String,default:"24:00"}},timeRange:{displaySeparator:{type:String,default:" - "},startMinuteInterval:{type:[String,Number],default:1},startHourInterval:{type:[String,Number],default:1},startShortTimeLabel:Boolean,startDisabledHours:{type:Array,default:function(){return[]}},startDisabledMinutes:{type:Array,default:function(){return[]}},startNoMinutes:Boolean,startNoHours:Boolean,startHours:Array,startMinutes:Array,startMinTime:{type:String,default:"00:00"},startMaxTime:{type:String,default:"24:00"},endMinuteInterval:{type:[String,Number],default:1},endHourInterval:{type:[String,Number],default:1},endShortTimeLabel:Boolean,endDisabledHours:{type:Array,default:function(){return[]}},endDisabledMinutes:{type:Array,default:function(){return[]}},endNoMinutes:Boolean,endNoHours:Boolean,endHours:Array,endMinutes:Array,endMinTime:{type:String,default:"00:00"},endMaxTime:{type:String,default:"24:00"}},dateRange:{displaySeparator:{type:String,default:" - "},startMinDate:String,startMaxDate:String,startDates:Array,startDisabledDates:Array,startDisabledYears:{type:Array,default:function(){return[]}},startDisabledMonths:{type:Array,default:function(){return[]}},startDisabledDays:{type:Array,default:function(){return[]}},startShortYearLabel:Boolean,startShortMonthLabel:Boolean,startShortDayLabel:Boolean,startShowMonthLabel:Boolean,startShowWeekdayLabel:Boolean,startNoDays:Boolean,startNoMonth:Boolean,startNoYears:Boolean,endMinDate:String,endMaxDate:String,endDates:Array,endDisabledDates:Array,endDisabledYears:{type:Array,default:function(){return[]}},endDisabledMonths:{type:Array,default:function(){return[]}},endDisabledDays:{type:Array,default:function(){return[]}},endShortYearLabel:Boolean,endShortMonthLabel:Boolean,endShortDayLabel:Boolean,endShowMonthLabel:Boolean,endShowWeekdayLabel:Boolean,endNoDays:Boolean,endNoMonth:Boolean,endNoYears:Boolean}}),d=n("1c16"),f=n("9c40"),p=n("0831"),m=p["a"].getScrollPosition,v=p["a"].setScrollPosition,g=26,_=21,b=o["a"].extend({name:"scroller-base",directives:{Resize:s},mixins:[u],props:r()({},h.scroller),data:function(){return{noScrollEvent:!1,columnPadding:{},padding:0}},mounted:function(){this.adjustColumnPadding(),this.updatePosition()},computed:{},watch:{height:function(){this.adjustColumnPadding(!0)},value:function(){this.updatePosition()},items:function(){this.adjustColumnPadding(!0),this.updatePosition()},dense:function(){this.adjustColumnPadding(!0),this.updatePosition()}},methods:{move:function(t){if(!1===this.noScrollEvent&&(1===t||-1===t)&&!0!==this.disable&&this.canScroll(t)){var e=".q-scroller__item--selected".concat(this.dense?"--dense":""),n=this.$el.querySelector(e);n&&n.classList.remove(e);var i=n?n.clientHeight:this.dense?_:g,r=m(this.$el)+i*t;return v(this.$el,r,50),!0}return!1},onResize:function(){this.adjustColumnPadding(!0)},canScroll:function(t){return!!(this.items&&this.items.length>1)&&(1===t?this.value!==this.items[this.items.length-1].value:this.value!==this.items[0].value)},adjustColumnPadding:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this,n=function(t){e.columnPadding={height:"".concat(t,"px")}},i=function(){var t=e.dense?_:g,i=e.height||e.$el.clientHeight;e.padding=i/2-t/2,!isNaN(e.padding)&&e.padding>0&&n(e.padding)};t?i():this.$nextTick(function(){i()})},wheelEvent:function(t){this.move(t.wheelDeltaY<0?1:-1)&&this.$emit(this.value),t.preventDefault()},getItemIndex:function(t){return this.items.findIndex(function(e){return e.value===t})},getItemIndexFromEvent:function(t){var e=t.target.scrollTop,n=this.dense?_:g;return Math.floor(e/n)},scrollEvent:Object(d["a"])(function(t){if(!this.noScrollEvent){var e=this.getItemIndexFromEvent(t),n=this.items[e].value;if(this.isDisabled(n))return;this.$emit("input",n)}},250),clickEvent:function(t){!0!==this.disable&&!1===t.disabled&&this.$emit("input",t.value)},isDisabled:function(t){return!0===this.disable||this.items.find(function(e){return e.value===t}).disabled},updatePosition:function(){var t=this,e=this;this.noScrollEvent=!0,setTimeout(function(){var n=".q-scroller__item--selected".concat(e.dense?"--dense":""),i=e.$el.querySelector(n);i&&setTimeout(function(){var n=i.offsetTop-t.padding;v(e.$el,n,150),e.noScrollEvent=!1},150)},10)},__renderItem:function(t,e){var n=this;return t(f["a"],{staticClass:"q-scroller__item".concat(this.dense?"--dense":""," justify-center align-center"),class:{"q-scroller__item--selected":!this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled":!this.dense&&(!0===this.disable||!0===e.disabled),"q-scroller__item--selected--dense":this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled--dense":this.dense&&(!0===this.disable||!0===e.disabled)},key:e.item,props:{flat:!0,dense:!0,"no-wrap":!0,label:void 0!==e.display?e.display:void 0!==e.value?e.value:void 0,disable:!0===this.disable||!0===e.disabled,icon:void 0!==e.icon?e.icon:void 0,"icon-right":void 0!==e.iconRight?e.iconRight:void 0,"no-caps":void 0!==e.noCaps?e.noCaps:void 0,align:void 0!==e.align?e.align:void 0},on:{click:function(){return n.clickEvent(e)}}})},__renderPadding:function(t){return t("div",{staticClass:"q-scroller__padding",style:this.columnPadding})}},render:function(t){var e=this;return t("div",this.setBothColors(this.color,this.backgroundColor,{staticClass:"q-scroller-base text-center col scroll no-scrollbars",style:{height:"".concat(this.height,"px")},directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],on:{mousewheel:function(t){return e.wheelEvent(t)},scroll:function(t){return e.scrollEvent(t)}}}),[this.__renderPadding(t),this.items.map(function(n){return e.__renderItem(t,n)}),this.__renderPadding(t)])}}),y=o["a"].extend({name:"q-scroller",directives:{Resize:s},mixins:[u],props:r()({},h.base,{items:{type:Array,required:!0}}),data:function(){return{headerFooterHeight:100,bodyHeight:100}},mounted:function(){this.adjustBodyHeight()},computed:{},watch:{noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{canMovePrevious:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(-1)},canMoveNext:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(1)},previous:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(-1)},next:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(1)},getItemIndex:function(t){return this.$refs.scroller?this.$refs.scroller.getItemIndex(t):-1},getCurrentIndex:function(){return this.getItemIndex(this.value)},onResize:function(){this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.value):[this.value])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])},__renderScroller:function(t){var e=this;return t(b,{ref:"scroller",props:{value:this.value,items:this.items,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){return e.$emit("input",t)}}})},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),style:{height:"".concat(this.bodyHeight,"px")}}),[this.__renderScroller(t)])}},render:function(t){return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),[this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)])}}),w=(n("ac6a"),n("6762"),n("2fdb"),n("8e72")),k=n.n(w),x=o["a"].extend({name:"time-base",props:r()({},h.base,h.locale,{height:[Number,String],hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),C=n("b6d5"),S=(n("ff57"),n("bd4c")),A=/^(\d{4})-(\d{1,2})(-(\d{1,2}))?([^\d]+(\d{1,2}))?(:(\d{1,2}))?(:(\d{1,2}))?$/,E=[0,31,28,31,30,31,30,31,31,30,31,30,31],q=[0,31,29,31,30,31,30,31,31,30,31,30,31],T=31,$={date:"",time:"",year:0,month:0,day:0,weekday:0,hour:0,minute:0,doy:0,workweek:0,hasDay:!1,hasTime:!1,past:!1,current:!1,future:!1};function O(t,e){return JSON.stringify(t)===JSON.stringify(e)}function D(t){var e=A.exec(t);return e?{date:t,time:"",year:parseInt(e[1]),month:parseInt(e[2]),day:parseInt(e[4])||1,hour:parseInt(e[6])||0,minute:parseInt(e[8])||0,weekday:0,doy:0,workweek:0,hasDay:!!e[4],hasTime:!(!e[6]||!e[8]),past:!1,current:!1,future:!1}:null}function L(t){return M({date:"",time:"",year:t.getFullYear(),month:t.getMonth()+1,day:t.getDate(),weekday:t.getDay(),hour:t.getHours(),minute:t.getMinutes(),doy:0,workweek:0,hasDay:!0,hasTime:!0,past:!1,current:!0,future:!1})}function M(t){return t.time=H(t),t.date=N(t),t.weekday=B(t),t.doy=I(t),t.workweek=j(t),t}function I(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getDayOfYear(e)}}function j(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getWeekOfYear(e)}}function B(t){if(t.hasDay){var e=new Date(t.date+" 00:00");return S["a"].getDayOfWeek(e)}return t.weekday}function F(t){return t%4===0&&t%100!==0||t%400===0}function P(t,e){return F(t)?q[e]:E[e]}function R(t){return r()({},t)}function z(t,e){var n=String(t);while(n.length0&&(e/=parseInt(this.minuteInterval)),k()(Array(e)).map(function(t,e){return e}).map(function(e){return e*=t.minuteInterval?parseInt(t.minuteInterval):1,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledMinutesList.includes(e)}})},hoursList:function(){var t=this,e=!0===this.hour24Format?24:12;return k()(Array(e)).map(function(t,e){return e}).map(function(e){return e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledHoursList.includes(e)}})},displayTime:function(){return!1===this.timestamp.hasTime?"":this.noMinutes?z(this.hour,2)+"h":this.noHours?":"+z(this.minute,2):this.timeFormatter(this.timestamp,this.shortTimeLabel)},timeFormatter:function(){var t={timeZone:"UTC",hour12:!this.hour24Format,hour:"2-digit",minute:"2-digit"},e={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric",minute:"2-digit"},n={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric"};return V(this.locale,function(i,r){return r?0===i.minute?n:e:t})}},watch:{value:function(){this.splitTime()},ampmIndex:function(){var t=R(this.timestamp);this.ampm=this.amPmLabels[this.ampmIndex],this.timestamp.hour=parseInt(this.hour),1===this.ampmIndex&&!1===this.hour24Format&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},hour:function(){var t=R(this.timestamp);!0===this.hour24Format?this.timestamp.hour=parseInt(this.hour):0===this.ampmIndex?this.timestamp.hour=parseInt(this.hour):1===this.ampmIndex&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},minute:function(){var t=R(this.timestamp);this.timestamp.minute=parseInt(this.minute),O(t,this.timestamp)||this.emitValue()},ampm:function(){var t=this;this.ampmIndex=this.amPmLabels.findIndex(function(e){return e===t.ampm})},hour24Format:function(){var t=R(this.timestamp);!0===this.hour24Format?this.hour=z(this.timestamp.hour,2):this.timestamp.hour>12?(this.hour=z(this.timestamp.hour-12,2),this.ampmIndex=1):(this.hour=z(this.timestamp.hour,2),this.ampmIndex=0),O(t,this.timestamp)||this.emitValue()},disabledMinutes:function(){this.handleDisabledLists()},disabledHours:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[z(this.timestamp.hour,2),z(this.timestamp.minute,2)].join(":"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.height||t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledMinutesList=[],this.disabledHoursList=[],this.disabledMinutes.forEach(function(e){return t.disabledMinutesList.push(z(parseInt(e),2))}),this.disabledHours.forEach(function(e){return t.disabledHoursList.push(z(parseInt(e),2))})},splitTime:function(){var t=L(new Date),e=N(t)+" "+(this.value?this.value:H(t));this.timestamp=D(e),this.timestamp.minute=Math.floor(this.timestamp.minute/this.minuteInterval)*this.minuteInterval,this.ampmIndex=this.timestamp.hour>12&&this.timestamp.minute>0?1:0,this.fromTimestamp()},fromTimestamp:function(){this.minute=z(this.timestamp.minute,2),this.hour=z(this.timestamp.hour,2),!1===this.hour24Format&&1===this.ampmIndex&&(this.hour=z(this.timestamp.hour-12,2))},__renderHoursScroller:function(t){var e=this;return t(b,{props:{value:this.hour,items:this.hoursList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.hour=t}}})},__renderMinutesScroller:function(t){var e=this;return t(b,{props:{value:this.minute,items:this.minutesList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.minute=t}}})},__renderAmPmScroller:function(t){var e=this;return t(b,{props:{value:this.ampm,items:this.ampmList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.ampm=t}}})},__renderScrollers:function(t){return[!0!==this.noHours&&this.__renderHoursScroller(t),!0!==this.noMinutes&&this.__renderMinutesScroller(t),!1===this.hour24Format&&this.__renderAmPmScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayTime])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Y=(n("28a5"),x.extend({name:"q-time-range-scroller",mixins:[u],props:r()({},h.timeRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startTime:"",endTime:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QTimeRangeScroller - value (v-model) must to be an array of times"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QTimeRangeScroller - value (v-model) must contain 2 array elements"),this.splitTime(),this.adjustBodyHeight()},computed:{displayTime:function(){return void 0!==this.startTime&&void 0!==this.endTime?this.$refs.startTime&&this.$refs.endTime?this.$refs.startTime.displayTime+this.displaySeparator+this.$refs.endTime.displayTime:"".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime):""}},watch:{value:function(){this.splitTime()},startTime:function(){this.emitValue()},endTime:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startTime,this.endTime]):"string"===this.type&&this.$emit("input","".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitTime:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidTime(t)&&this.isValidTime(e))return this.startTime=t,this.endTime=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidTime(i)&&this.isValidTime(r))return this.startTime=i,this.endTime=r,void(this.type="string")}}console.error("QTimeRangeScroller: invalid time format - '".concat(this.value,"'"))},isValidTime:function(t){var e=t.split(":");if(2===e.length){var n=parseInt(e[0]),i=parseInt(e[1]);if(n>=0&&n<24&&i>=0&&i<60)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startTime.getTimestamp(),this.$refs.endTime.getTimestamp()]):[this.displayTime])},__renderStartTime:function(t){var e=this;return t(U,{ref:"startTime",staticClass:"col-6",props:{value:this.startTime,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.amPmLabels,minuteInterval:this.startMinuteInterval,hourInterval:this.startHourInterval,shortTimeLabel:this.startShortTimeLabel,disabledHours:this.startDisabledHours,disabledMinutes:this.startDisbaledMinutes,noMinutes:this.startNoMinutes,noHours:this.startNoHours,hours:this.startHours,minutes:this.startMinutes,minTime:this.startMinTime,maxTime:this.startMaxTime,height:this.bodyHeight},on:{input:function(t){e.startTime=t}}})},__renderEndTime:function(t){var e=this;return t(U,{ref:"endTime",staticClass:"col-6",props:{value:this.endTime,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.endMinuteInterval,hourInterval:this.endHourInterval,shortTimeLabel:this.endShortTimeLabel,disabledHours:this.endDisabledHours,disabledMinutes:this.endDisbaledMinutes,noMinutes:this.endNoMinutes,noHours:this.endNoHours,hours:this.endHours,minutes:this.endMinutes,minTime:this.endMinTime,maxTime:this.endMaxTime,height:this.bodyHeight},on:{input:function(t){e.endTime=t}}})},__renderScrollers:function(t){return[this.__renderStartTime(t),this.__renderEndTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-time-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}})),W=o["a"].extend({name:"datetime-base",props:r()({},h.base,h.locale,{hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),G=W.extend({name:"q-date-scroller",mixins:[u],props:r()({},h.date,{showVerticalBar:Boolean}),data:function(){return{headerFooterHeight:100,bodyHeight:100,year:"",month:"",day:"",timestamp:r()({},$),disabledYearsList:[],disabledMonthsList:[],disabledDaysList:[]}},mounted:function(){this.handleDisabledLists(),this.splitDate(),this.adjustBodyHeight()},computed:{daysList:function(){var t=this,e=P(parseInt(this.year),parseInt(this.month));return this.year&&this.month||(e=T),k()(Array(e)).map(function(t,e){return e}).map(function(e){return++e,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledDays.includes(e)}})},monthsList:function(){var t=this;return k()(Array(12)).map(function(t,e){return e}).map(function(e){++e;var n=!0===t.showMonthLabel?t.monthNameLabel(e):void 0;return e=e<10?"0"+e:""+e,{display:n,value:e,disabled:t.disabledMonths.includes(e)}})},yearsList:function(){var t=this,e=0,n=0;if(this.minDate&&this.maxDate)e=parseInt(e),n=parseInt(n);else{var i=new Date,r=i.getFullYear();e=r-5,n=r+5}var o=[],s=e;while(s<=n)o.push(z(s,4)),++s;return o.map(function(e){return{value:e,disabled:t.disabledYears.includes(e)}})},displayDate:function(){return console.log("displayDate"),this.year&&this.month&&this.day?!1===this.timestamp.hasDay?"":!0===this.noDays&&!0===this.noMonths?this.yearFormatter(this.timestamp,this.shortYearLabel):!0===this.noDays&&!0===this.noYears?this.monthFormatter(this.timestamp,this.shortMonthLabel):!0===this.noMonths&&!0===this.noYears?this.dayFormatter(this.timestamp,this.shortDayLabel):this.dateFormatter(this.timestamp):""},dateFormatter:function(){console.log("dateFormatter");var t=this.shortYearLabel?"2-digit":"numeric",e=this.shortMonthLabel?"numeric":"2-digit",n=this.shortDayLabel?"numeric":"2-digit",i={timeZone:"UTC",year:t,month:e,day:n};return V(this.locale,function(t,e){return i})},dayFormatter:function(){var t={timeZone:"UTC",day:"numeric"};return V(this.locale,function(e,n){return t})},weekdayFormatter:function(){var t={timeZone:"UTC",weekday:"long"},e={timeZone:"UTC",weekday:"short"};return V(this.locale,function(n,i){return i?e:t})},monthFormatter:function(){var t={timeZone:"UTC",month:"long"},e={timeZone:"UTC",month:"short"};return V(this.locale,function(n,i){return i?e:t})},yearFormatter:function(){var t={timeZone:"UTC",year:"long"},e={timeZone:"UTC",year:"short"};return V(this.locale,function(n,i){return i?e:t})},yearMonthDayFormatter:function(){var t={timeZone:"UTC",year:"numeric",month:"short",day:"numeric"};return V(this.locale,function(e,n){return t})}},watch:{value:function(){this.splitDate()},year:function(){this.toTimestamp()},month:function(t,e){if(this.day>28){var n=parseInt(t),i=parseInt(e),r=parseInt(this.year),o=P(r,i),s=P(r,n);o>s&&(this.day=z(s,2))}this.toTimestamp()},day:function(){this.toTimestamp()},disabledDays:function(){this.handleDisabledLists()},disabledMonths:function(){this.handleDisabledLists()},disabledYears:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[this.year,this.month,this.day].join("-"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledDaysList=[],this.disabledMonthsList=[],this.disabledYearsList=[],this.disabledDays.forEach(function(e){return t.disabledDaysList.push(z(parseInt(e),2))}),this.disabledMonths.forEach(function(e){return t.disabledMonthsList.push(z(parseInt(e),2))}),this.disabledYears.forEach(function(e){return t.disabledYearsList.push(z(parseInt(e),4))})},splitDate:function(){var t=L(new Date),e=(this.value?this.value:N(t))+" 00:00";this.timestamp=D(e),this.fromTimestamp()},fromTimestamp:function(){this.day=z(this.timestamp.day,2),this.month=z(this.timestamp.month,2),this.year=z(this.timestamp.year,4)},toTimestamp:function(){var t=R(this.timestamp);this.timestamp.day=parseInt(this.day),this.timestamp.month=parseInt(this.month),this.timestamp.year=parseInt(this.year),O(t,this.timestamp)||this.emitValue()},monthNameLabel:function(t){var e=L(new Date),n=N(e)+" 00:00",i=D(n);return i.day=1,i.month=parseInt(t),this.monthFormatter(i,this.shortMonthLabel)},__renderYearsScroller:function(t){var e=this;return t(b,{props:{value:this.year,items:this.yearsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.year=t}}})},__renderMonthsScroller:function(t){var e=this;return t(b,{props:{value:this.month,items:this.monthsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.month=t}}})},__renderDaysScroller:function(t){var e=this;return t(b,{props:{value:this.day,items:this.daysList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.day=t}}})},__renderScrollers:function(t){return[!0!==this.noYears&&this.__renderYearsScroller(t),!0!==this.noMonths&&this.__renderMonthsScroller(t),!0!==this.noDays&&this.__renderDaysScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDate])},__renderFooterButton:function(t){var e=this;return t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e?e(this.timestamp):[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Q=W.extend({name:"q-date-range-scroller",mixins:[u],props:r()({},h.dateRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startDate:"",endDate:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QDateRangeScroller - value (v-model) must to be an array of dates"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QDateRangeScroller - value (v-model) must contain 2 array elements"),this.splitDate(),this.adjustBodyHeight()},computed:{displayDate:function(){return void 0!==this.startDate&&void 0!==this.endDate?this.$refs.startDate&&this.$refs.endDate?this.$refs.startDate.displayDate+this.displaySeparator+this.$refs.endDate.displayDate:"".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate):""}},watch:{value:function(){this.splitDate()},startDate:function(){this.emitValue()},endDate:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startDate,this.endDate]):"string"===this.type&&this.$emit("input","".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDate:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidDate(t)&&this.isValidDate(e))return this.startDate=t,this.endDate=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidDate(i)&&this.isValidDate(r))return this.startDate=i,this.endDate=r,void(this.type="string")}}console.error("QDateRangeScroller: invalid date format - '".concat(this.value,"'"))},isValidDate:function(t){var e=t.split("-");if(3===e.length){var n=parseInt(e[0]),i=parseInt(e[1]),r=parseInt(e[2]),o=P(n,i);if(0!==n&&i>0&&i<=12&&r>0&&r<=o)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startDate.getTimestamp(),this.$refs.endDate.getTimestamp()]):[this.displayDate])},__renderStartDate:function(t){var e=this;return t(G,{ref:"startDate",staticClass:"col-6",props:{value:this.startDate,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.startMinDate,maxDate:this.startMaxDate,dates:this.startDates,disabledDate:this.startDisabledDates,disabledYears:this.startDisabledYears,disabledMonths:this.startDisabledMonths,disabledDays:this.startDisabledDays,shortYearLabel:this.startShortYearLabel,shortMonthLabel:this.startShortMonthLabel,shortDayLabel:this.startShortDayLabel,showMonthLabel:this.startShowMonthLabel,showWeekdayLabel:this.startShowWeekdayLabel,noDays:this.startNoDays,noMonths:this.startNoMonths,noYears:this.startNoYears,height:this.bodyHeight},on:{input:function(t){e.startDate=t}}})},__renderEndDate:function(t){var e=this;return t(G,{ref:"endDate",staticClass:"col-6",props:{value:this.endDate,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.endMinDate,maxDate:this.endMaxDate,dates:this.endDates,disabledDate:this.endDisabledDates,disabledYears:this.endDisabledYears,disabledMonths:this.endDisabledMonths,disabledDays:this.endDisabledDays,shortYearLabel:this.endShortYearLabel,shortMonthLabel:this.endShortMonthLabel,shortDayLabel:this.endShortDayLabel,showMonthLabel:this.endShowMonthLabel,showWeekdayLabel:this.endShowWeekdayLabel,noDays:this.endNoDays,noMonths:this.endNoMonths,noYears:this.endNoYears,height:this.bodyHeight},on:{input:function(t){e.endDate=t}}})},__renderScrollers:function(t){return[this.__renderStartDate(t),this.__renderEndDate(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Z=W.extend({name:"q-date-time-scroller",mixins:[u],props:r()({},h.time,h.date),data:function(){return{headerFooterHeight:100,bodyHeight:100,date:"",time:"",timestamp:r()({},$)}},mounted:function(){this.splitDateTime(),this.adjustBodyHeight()},computed:{displayDateTime:function(){return""!==this.date&&""!==this.time?this.$refs.date&&this.$refs.time?this.$refs.date.displayDate+" "+this.$refs.time.displayTime:"".concat(this.date," ").concat(this.time):""}},watch:{value:function(){this.splitDateTime()},date:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},time:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){this.$emit("input","".concat(this.timestamp.date))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDateTime:function(){this.timestamp=D(this.value),this.fromTimestamp()},fromTimestamp:function(){this.date=N(this.timestamp),this.time=H(this.timestamp)},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDateTime])},__renderDate:function(t){var e=this;return t(G,{ref:"date",staticClass:"col-6",props:{value:this.date,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.minDate,maxDate:this.maxDate,dates:this.dates,disabledDate:this.disabledDates,disabledYears:this.disabledYears,disabledMonths:this.disabledMonths,disabledDays:this.disabledDays,shortYearLabel:this.shortYearLabel,shortMonthLabel:this.shortMonthLabel,shortDayLabel:this.shortDayLabel,showMonthLabel:this.showMonthLabel,showWeekdayLabel:this.showWeekdayLabel,noYears:this.noYears,noMonths:this.noMonths,noDays:this.noDays,height:this.bodyHeight},on:{input:function(t){e.date=t}}})},__renderTime:function(t){var e=this;return t(U,{ref:"time",staticClass:"col-6",props:{value:this.time,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.minuteInterval,hourInterval:this.hourInterval,shortTimeLabel:this.shortTimeLabel,disabledHours:this.disabledHours,disabledMinutes:this.disbaledMinutes,noMinutes:this.noMinutes,noHours:this.noHours,hours:this.hours,minutes:this.minutes,minTime:this.minTime,maxTime:this.maxTime,height:this.bodyHeight},on:{input:function(t){e.time=t}}})},__renderScrollers:function(t){return[this.__renderDate(t),this.__renderTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-time-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}});e["a"]=function(t){var e=t.Vue;e.component("q-scroller",y),e.component("q-time-scroller",U),e.component("q-time-range-scroller",Y),e.component("q-date-scroller",G),e.component("q-date-range-scroller",Q),e.component("q-date-time-scroller",Z)}},e9ef:function(t,e,n){"use strict";var i="PNG\r\n\n";function r(t){if(i===t.toString("ascii",1,8)){if("IHDR"!==t.toString("ascii",12,16))throw new TypeError("invalid png");return!0}}function o(t){return{width:t.readUInt32BE(16),height:t.readUInt32BE(20)}}t.exports={detect:r,calculate:o}},eb85:function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e");e["a"]=o["a"].extend({name:"QSeparator",props:{dark:Boolean,spaced:Boolean,inset:[Boolean,String],vertical:Boolean,color:String},computed:{classes:function(){var t;return t={},r()(t,"bg-".concat(this.color),this.color),r()(t,"q-separator--dark",this.dark),r()(t,"q-separator--spaced",this.spaced),r()(t,"q-separator--inset",!0===this.inset),r()(t,"q-separator--item-inset","item"===this.inset),r()(t,"q-separator--item-thumbnail-inset","item-thumbnail"===this.inset),r()(t,"q-separator--".concat(this.vertical?"vertical self-stretch":"horizontal col-grow"),!0),t}},render:function(t){return t("hr",{staticClass:"q-separator",class:this.classes})}})},ebd6:function(t,e,n){var i=n("cb7c"),r=n("d8e8"),o=n("2b4c")("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},ec5d:function(t,e,n){"use strict";n("ac6a"),n("cadf"),n("456d");var i=n("2b0e"),r=(n("28a5"),{isoName:"en-us",nativeName:"English (US)",label:{clear:"Clear",ok:"OK",cancel:"Cancel",close:"Close",set:"Set",select:"Select",reset:"Reset",remove:"Remove",update:"Update",create:"Create",search:"Search",filter:"Filter",refresh:"Refresh"},date:{days:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),daysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),firstDayOfWeek:0,format24h:!1},table:{noData:"No data available",noResults:"No matching records found",loading:"Loading...",selectedRecords:function(t){return 1===t?"1 record selected.":(0===t?"No":t)+" records selected."},recordsPerPage:"Records per page:",allRows:"All",pagination:function(t,e,n){return t+"-"+e+" of "+n},columns:"Columns"},editor:{url:"URL",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",underline:"Underline",unorderedList:"Unordered List",orderedList:"Ordered List",subscript:"Subscript",superscript:"Superscript",hyperlink:"Hyperlink",toggleFullscreen:"Toggle Fullscreen",quote:"Quote",left:"Left align",center:"Center align",right:"Right align",justify:"Justify align",print:"Print",outdent:"Decrease indentation",indent:"Increase indentation",removeFormat:"Remove formatting",formatting:"Formatting",fontSize:"Font Size",align:"Align",hr:"Insert Horizontal Rule",undo:"Undo",redo:"Redo",header1:"Header 1",header2:"Header 2",header3:"Header 3",header4:"Header 4",header5:"Header 5",header6:"Header 6",paragraph:"Paragraph",code:"Code",size1:"Very small",size2:"A bit small",size3:"Normal",size4:"Medium-large",size5:"Big",size6:"Very big",size7:"Maximum",defaultFont:"Default Font"},tree:{noNodes:"No nodes available",noResults:"No matching nodes found"}}),o=n("0967");e["a"]={install:function(t,e,n){var s=this;!0===o["c"]&&e.server.push(function(t,e){var n={lang:t.lang.isoName,dir:!0===t.lang.rtl?"rtl":"ltr"},i=e.ssr.setHtmlAttrs;"function"===typeof i?i(n):e.ssr.Q_HTML_ATTRS=Object.keys(n).map(function(t){return"".concat(t,"=").concat(n[t])}).join(" ")}),this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r;if(e.set=s.set,e.getLocale=s.getLocale,e.rtl=e.rtl||!1,!1===o["c"]){var n=document.documentElement;n.setAttribute("dir",e.rtl?"rtl":"ltr"),n.setAttribute("lang",e.isoName)}!0===o["c"]||void 0!==t.lang?t.lang=e:i["a"].util.defineReactive(t,"lang",e),s.isoName=e.isoName,s.nativeName=e.nativeName,s.props=e},this.set(n)},getLocale:function(){if(!0!==o["c"]){var t=navigator.language||navigator.languages[0]||navigator.browserLanguage||navigator.userLanguage||navigator.systemLanguage;return t?t.toLowerCase():void 0}}}},edca:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("0831"),o=n("d882");e["a"]=i["a"].extend({name:"QScrollObserver",props:{debounce:[String,Number],horizontal:Boolean},render:function(){},data:function(){return{pos:0,dir:!0===this.horizontal?"right":"down",dirChanged:!1,dirChangePos:0}},methods:{getPosition:function(){return{position:this.pos,direction:this.dir,directionChanged:this.dirChanged,inflexionPosition:this.dirChangePos}},trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__emit():this.timer||(this.timer=this.debounce?setTimeout(this.__emit,this.debounce):requestAnimationFrame(this.__emit))},__emit:function(){var t=Math.max(0,!0===this.horizontal?Object(r["b"])(this.target):Object(r["c"])(this.target)),e=t-this.pos,n=this.horizontal?e<0?"left":"right":e<0?"up":"down";this.dirChanged=this.dir!==n,this.dirChanged&&(this.dir=n,this.dirChangePos=this.pos),this.timer=null,this.pos=t,this.$emit("scroll",this.getPosition())}},mounted:function(){this.target=Object(r["d"])(this.$el.parentNode),this.target.addEventListener("scroll",this.trigger,o["d"].passive),this.trigger(!0)},beforeDestroy:function(){clearTimeout(this.timer),cancelAnimationFrame(this.timer),this.target.removeEventListener("scroll",this.trigger,o["d"].passive)}})},efe6:function(t,e,n){"use strict";var i=n("d882"),r=n("0831"),o=n("0967"),s=0;function a(t){c(t)&&Object(i["h"])(t)}function c(t){if(t.target===document.body||t.target.classList.contains("q-layout__backdrop"))return!0;for(var e=Object(i["a"])(t),n=t.shiftKey&&!t.deltaX,o=!n&&Math.abs(t.deltaX)<=Math.abs(t.deltaY),s=n||o?t.deltaY:t.deltaX,a=0;a0&&c.scrollTop+c.clientHeight===c.scrollHeight:s<0&&0===c.scrollLeft||s>0&&c.scrollLeft+c.clientWidth===c.scrollWidth}return!0}function l(t){if(s+=t?1:-1,!(s>1)){var e=t?"add":"remove";o["a"].is.mobile?document.body.classList[e]("q-body--prevent-scroll"):o["a"].is.desktop&&window["".concat(e,"EventListener")]("wheel",a,i["d"].notPassive)}}e["a"]={methods:{__preventScroll:function(t){void 0===this.preventedScroll&&!0!==t||t!==this.preventedScroll&&(this.preventedScroll=t,l(t))}}}},f09f:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCard",props:{dark:Boolean,square:Boolean,flat:Boolean,bordered:Boolean},render:function(t){return t("div",{staticClass:"q-card",class:{"q-card--dark":this.dark,"q-card--bordered":this.bordered,"q-card--square no-border-radius":this.square,"q-card--flat no-shadow":this.flat},on:this.$listeners},Object(r["a"])(this,"default"))}})},f0f2:function(t){t.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},f270:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("377c");function o(t){var e=t.toString("hex",0,4);return"49492a00"===e||"4d4d002a"===e}function s(t,n,o){var s=r(t,32,4,o),a=1024,c=i.statSync(n).size;s+a>c&&(a=c-s-10);var l=new e(a),u=i.openSync(n,"r");i.readSync(u,l,0,a,s);var h=l.slice(2);return h}function a(t,e){var n=r(t,16,8,e),i=r(t,16,10,e);return(i<<16)+n}function c(t){if(t.length>24)return t.slice(12)}function l(t,e){var n,i,o,s={};while(t&&t.length){if(n=r(t,16,0,e),i=r(t,16,2,e),o=r(t,32,4,e),0===n)break;1===o&&3===i&&(s[n]=a(t,e)),t=c(t)}return s}function u(t){var e=t.toString("ascii",0,2);return"II"===e?"LE":"MM"===e?"BE":void 0}function h(t,e){if(!e)throw new TypeError("Tiff doesn't support buffer");var n="BE"===u(t),i=s(t,e,n),r=l(i,n),o=r[256],a=r[257];if(!o||!a)throw new TypeError("Invalid Tiff, missing tags");return{width:o,height:a}}t.exports={detect:o,calculate:h}}).call(this,n("9cd4").Buffer)},f2cc:function(t,e,n){"use strict";n("f751"),n("d263"),n("c5f6"),n("6762"),n("2fdb");var i=n("2b0e"),r=n("75c3"),o=n("7937"),s=n("7ee0"),a=n("efe6"),c=n("dde5"),l=150;e["a"]=i["a"].extend({name:"QDrawer",inject:{layout:{default:function(){console.error("QDrawer needs to be child of QLayout")}}},mixins:[s["a"],a["a"]],directives:{TouchPan:r["a"]},props:{overlay:Boolean,side:{type:String,default:"left",validator:function(t){return["left","right"].includes(t)}},width:{type:Number,default:300},mini:Boolean,miniWidth:{type:Number,default:57},breakpoint:{type:Number,default:1023},behavior:{type:String,validator:function(t){return["default","desktop","mobile"].includes(t)},default:"default"},bordered:Boolean,elevated:Boolean,persistent:Boolean,showIfAbove:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array],noSwipeOpen:Boolean,noSwipeClose:Boolean},data:function(){var t=this,e=!0===this.showIfAbove||void 0===this.value||this.value,n="mobile"!==this.behavior&&this.breakpoint=this.layout.width,largeScreenState:e,mobileOpened:!1}},watch:{belowBreakpoint:function(t){!0!==this.mobileOpened&&(!0===t?(!1===this.overlay&&(this.largeScreenState=this.showing),this.hide(!1)):!1===this.overlay&&this[this.largeScreenState?"show":"hide"](!1))},side:function(t,e){this.layout[e].space=!1,this.layout[e].offset=0},behavior:function(t){this.__updateLocal("belowBreakpoint","mobile"===t||"desktop"!==t&&this.breakpoint>=this.layout.width)},breakpoint:function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&t>=this.layout.width)},"layout.width":function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&this.breakpoint>=t)},"layout.scrollbarWidth":function(){this.applyPosition(!0===this.showing?0:void 0)},offset:function(t){this.__update("offset",t)},onLayout:function(t){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",t),this.__update("space",t)},$route:function(){!0===this.persistent||!0!==this.mobileOpened&&!0!==this.onScreenOverlay||this.hide()},rightSide:function(){this.applyPosition()},size:function(t){this.applyPosition(),this.__update("size",t)},"$q.lang.rtl":function(){this.applyPosition()},mini:function(){!0===this.value&&(this.__animateMini(),this.layout.__animate())}},computed:{rightSide:function(){return"right"===this.side},offset:function(){return!0===this.showing&&!1===this.mobileOpened&&!1===this.overlay?this.size:0},size:function(){return!0===this.isMini?this.miniWidth:this.width},fixed:function(){return!0===this.overlay||this.layout.view.indexOf(this.rightSide?"R":"L")>-1},onLayout:function(){return!0===this.showing&&!1===this.mobileView&&!1===this.overlay},onScreenOverlay:function(){return!0===this.showing&&!1===this.mobileView&&!0===this.overlay},backdropClass:function(){return!1===this.showing?"no-pointer-events":null},mobileView:function(){return!0===this.belowBreakpoint||!0===this.mobileOpened},headerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.top[2]:"l"===this.layout.rows.top[0]},footerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.bottom[2]:"l"===this.layout.rows.bottom[0]},aboveStyle:function(){var t={};return!0===this.layout.header.space&&!1===this.headerSlot&&(!0===this.fixed?t.top="".concat(this.layout.header.offset,"px"):!0===this.layout.header.space&&(t.top="".concat(this.layout.header.size,"px"))),!0===this.layout.footer.space&&!1===this.footerSlot&&(!0===this.fixed?t.bottom="".concat(this.layout.footer.offset,"px"):!0===this.layout.footer.space&&(t.bottom="".concat(this.layout.footer.size,"px"))),t},style:function(){var t={width:"".concat(this.size,"px")};return!0===this.mobileView?t:Object.assign(t,this.aboveStyle)},classes:function(){return"q-drawer--".concat(this.side)+(!0===this.bordered?" q-drawer--bordered":"")+(!0===this.mobileView?" fixed q-drawer--on-top q-drawer--mobile q-drawer--top-padding":" q-drawer--".concat(!0===this.isMini?"mini":"standard")+(!0===this.fixed||!0!==this.onLayout?" fixed":"")+(!0===this.overlay?" q-drawer--on-top":"")+(!0===this.headerSlot?" q-drawer--top-padding":""))},stateDirection:function(){return(!0===this.$q.lang.rtl?-1:1)*(!0===this.rightSide?1:-1)},isMini:function(){return!0===this.mini&&!0!==this.mobileView},onNativeEvents:function(){var t=this;if(!0!==this.mobileView)return{"!click":function(e){t.$emit("click",e)},mouseover:function(e){t.$emit("mouseover",e)},mouseout:function(e){t.$emit("mouseout",e)}}}},methods:{applyPosition:function(t){var e=this;void 0===t?this.$nextTick(function(){t=!0===e.showing?0:e.size,e.applyPosition(e.stateDirection*t)}):void 0!==this.$refs.content&&(!0!==this.layout.container||!0!==this.rightSide||!0!==this.mobileView&&Math.abs(t)!==this.size||(t+=this.stateDirection*this.layout.scrollbarWidth),this.$refs.content.style.transform="translate3d(".concat(t,"px, 0, 0)"))},applyBackdrop:function(t){void 0!==this.$refs.backdrop&&(this.$refs.backdrop.style.backgroundColor=this.lastBackdropBg="rgba(0,0,0,".concat(.4*t,")"))},__setScrollable:function(t){!0!==this.layout.container&&document.body.classList[!0===t?"add":"remove"]("q-body--drawer-toggle")},__animateMini:function(){var t=this;void 0!==this.timerMini?clearTimeout(this.timerMini):void 0!==this.$el&&this.$el.classList.add("q-drawer--mini-animate"),this.timerMini=setTimeout(function(){void 0!==t.$el&&t.$el.classList.remove("q-drawer--mini-animate"),t.timerMini=void 0},150)},__openByTouch:function(t){var e=this.size,n=Object(o["a"])(t.distance.x,0,e);if(!0===t.isFinal){var i=this.$refs.content,r=n>=Math.min(75,e);return i.classList.remove("no-transition"),void(!0===r?this.show():(this.layout.__animate(),this.applyBackdrop(0),this.applyPosition(this.stateDirection*e),i.classList.remove("q-drawer--delimiter")))}if(this.applyPosition((!0===this.$q.lang.rtl?!this.rightSide:this.rightSide)?Math.max(e-n,0):Math.min(0,n-e)),this.applyBackdrop(Object(o["a"])(n/e,0,1)),!0===t.isFirst){var s=this.$refs.content;s.classList.add("no-transition"),s.classList.add("q-drawer--delimiter")}},__closeByTouch:function(t){var e=this.size,n=t.direction===this.side,i=(!0===this.$q.lang.rtl?!n:n)?Object(o["a"])(t.distance.x,0,e):0;if(!0===t.isFinal){var r=Math.abs(i)0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),this.applyPosition(0);var n=this.layout.instances[!0===this.rightSide?"left":"right"];void 0!==n&&!0===n.mobileOpened&&n.hide(!1),!0===this.belowBreakpoint?(this.mobileOpened=!0,this.applyBackdrop(1),!0!==this.layout.container&&this.__preventScroll(!0)):this.__setScrollable(!0),clearTimeout(this.timer),this.timer=setTimeout(function(){t.__setScrollable(!1),t.$emit("show",e)},l)},__hide:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),!0===this.mobileOpened&&(this.mobileOpened=!1),this.applyPosition(this.stateDirection*this.size),this.applyBackdrop(0),this.__cleanup(),clearTimeout(this.timer),this.timer=setTimeout(function(){t.$emit("hide",e)},l)},__cleanup:function(){this.__preventScroll(!1),this.__setScrollable(!1)},__update:function(t,e){this.layout[this.side][t]!==e&&(this.layout[this.side][t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}},created:function(){this.layout.instances[this.side]=this,this.__update("size",this.size),this.__update("space",this.onLayout),this.__update("offset",this.offset)},mounted:function(){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",this.onLayout),this.applyPosition(!0===this.showing?0:void 0)},beforeDestroy:function(){clearTimeout(this.timer),clearTimeout(this.timerMini),!0===this.showing&&this.__cleanup(),this.layout.instances[this.side]===this&&(this.layout.instances[this.side]=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},render:function(t){var e=[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__closeByTouch}],n=[!0!==this.noSwipeOpen&&!0===this.belowBreakpoint?t("div",{staticClass:"q-drawer__opener fixed-".concat(this.side),directives:[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__openByTouch}]}):null,!0===this.mobileView?t("div",{ref:"backdrop",staticClass:"fullscreen q-drawer__backdrop q-layout__section--animate",class:this.backdropClass,style:void 0!==this.lastBackdropBg?{backgroundColor:this.lastBackdropBg}:null,on:{click:this.hide},directives:e}):null],i=[t("div",{staticClass:"q-drawer__content fit "+(!0===this.layout.container?"overflow-auto":"scroll"),class:this.contentClass,style:this.contentStyle},!0===this.isMini&&void 0!==this.$scopedSlots.mini?this.$scopedSlots.mini():Object(c["a"])(this,"default"))];return!0===this.elevated&&!0===this.showing&&i.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("div",{staticClass:"q-drawer-container"},n.concat([t("aside",{ref:"content",staticClass:"q-drawer q-layout__section--animate",class:this.classes,style:this.style,on:this.onNativeEvents,directives:!0===this.mobileView&&!0!==this.noSwipeClose?e:void 0},i)]))}})},f303:function(t,e,n){"use strict";n.d(e,"a",function(){return i});n("cadf"),n("456d"),n("ac6a");function i(t,e){var n=t.style;Object.keys(e).forEach(function(t){n[t]=e[t]})}},f37a:function(t,e,n){"use strict";e.byteLength=u,e.toByteArray=d,e.fromByteArray=m;for(var i=[],r=[],o="undefined"!==typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",a=0,c=s.length;a0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");-1===n&&(n=e);var i=n===e?0:4-n%4;return[n,i]}function u(t){var e=l(t),n=e[0],i=e[1];return 3*(n+i)/4-i}function h(t,e,n){return 3*(e+n)/4-n}function d(t){for(var e,n=l(t),i=n[0],s=n[1],a=new o(h(t,i,s)),c=0,u=s>0?i-4:i,d=0;d>16&255,a[c++]=e>>8&255,a[c++]=255&e;return 2===s&&(e=r[t.charCodeAt(d)]<<2|r[t.charCodeAt(d+1)]>>4,a[c++]=255&e),1===s&&(e=r[t.charCodeAt(d)]<<10|r[t.charCodeAt(d+1)]<<4|r[t.charCodeAt(d+2)]>>2,a[c++]=e>>8&255,a[c++]=255&e),a}function f(t){return i[t>>18&63]+i[t>>12&63]+i[t>>6&63]+i[63&t]}function p(t,e,n){for(var i,r=[],o=e;oc?c:a+s));return 1===r?(e=t[n-1],o.push(i[e>>2]+i[e<<4&63]+"==")):2===r&&(e=(t[n-2]<<8)+t[n-1],o.push(i[e>>10]+i[e>>4&63]+i[e<<2&63]+"=")),o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},f44b:function(t,e){function n(t,e,n,i,r,o,s){try{var a=t[o](s),c=a.value}catch(l){return void n(l)}a.done?e(c):Promise.resolve(c).then(i,r)}function i(t){return function(){var e=this,i=arguments;return new Promise(function(r,o){var s=t.apply(e,i);function a(t){n(s,r,o,a,c,"next",t)}function c(t){n(s,r,o,a,c,"throw",t)}a(void 0)})}}t.exports=i},f559:function(t,e,n){"use strict";var i=n("5ca1"),r=n("9def"),o=n("d2c8"),s="startsWith",a=""[s];i(i.P+i.F*n("5147")(s),"String",{startsWith:function(t){var e=o(this,t,s),n=r(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),i=String(t);return a?a.call(e,i,n):e.slice(n,n+i.length)===i}})},f605:function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},f751:function(t,e,n){var i=n("5ca1");i(i.S+i.F,"Object",{assign:n("7333")})},f9d7:function(t,e){!function(e){"use strict";var n,i=Object.prototype,r=i.hasOwnProperty,o="function"===typeof Symbol?Symbol:{},s=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag",l="object"===typeof t,u=e.regeneratorRuntime;if(u)l&&(t.exports=u);else{u=e.regeneratorRuntime=l?t.exports:{},u.wrap=y;var h="suspendedStart",d="suspendedYield",f="executing",p="completed",m={},v={};v[s]=function(){return this};var g=Object.getPrototypeOf,_=g&&g(g(D([])));_&&_!==i&&r.call(_,s)&&(v=_);var b=C.prototype=k.prototype=Object.create(v);x.prototype=b.constructor=C,C.constructor=x,C[c]=x.displayName="GeneratorFunction",u.isGeneratorFunction=function(t){var e="function"===typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},u.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,C):(t.__proto__=C,c in t||(t[c]="GeneratorFunction")),t.prototype=Object.create(b),t},u.awrap=function(t){return{__await:t}},S(A.prototype),A.prototype[a]=function(){return this},u.AsyncIterator=A,u.async=function(t,e,n,i){var r=new A(y(t,e,n,i));return u.isGeneratorFunction(e)?r:r.next().then(function(t){return t.done?t.value:r.next()})},S(b),b[c]="Generator",b[s]=function(){return this},b.toString=function(){return"[object Generator]"},u.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){while(e.length){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},u.values=D,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method="next",this.arg=n,this.tryEntries.forEach($),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function i(i,r){return a.type="throw",a.arg=t,e.next=i,r&&(e.method="next",e.arg=n),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var c=r.call(s,"catchLoc"),l=r.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),$(n),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;$(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,i){return this.delegate={iterator:D(t),resultName:e,nextLoc:i},"next"===this.method&&(this.arg=n),m}}}function y(t,e,n,i){var r=e&&e.prototype instanceof k?e:k,o=Object.create(r.prototype),s=new O(i||[]);return o._invoke=E(t,n,s),o}function w(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}function k(){}function x(){}function C(){}function S(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function A(t){function e(n,i,o,s){var a=w(t[n],t,i);if("throw"!==a.type){var c=a.arg,l=c.value;return l&&"object"===typeof l&&r.call(l,"__await")?Promise.resolve(l.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(l).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function i(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=i}function E(t,e,n){var i=h;return function(r,o){if(i===f)throw new Error("Generator is already running");if(i===p){if("throw"===r)throw o;return L()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=q(s,n);if(a){if(a===m)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===h)throw i=p,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var c=w(t,e,n);if("normal"===c.type){if(i=n.done?p:d,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=p,n.method="throw",n.arg=c.arg)}}}function q(t,e){var i=t.iterator[e.method];if(i===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,q(t,e),"throw"===e.method))return m;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var r=w(i,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,m;var o=r.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,m):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,m)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function $(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function D(t){if(t){var e=t[s];if(e)return e.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function e(){while(++i=3&&":"===t[e-3]?0:e>=3&&"/"===t[e-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(t,e,n){var i=t.slice(e);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function m(t){t.__index__=-1,t.__text_cache__=""}function v(t){return function(e,n){var i=e.slice(n);return t.test(i)?i.match(t)[0].length:0}}function g(){return function(t,e){e.normalize(t)}}function _(t){var e=t.re=n("b117")(t.__opts__),i=t.__tlds__.slice();function r(t){return t.replace("%TLDS%",e.src_tlds)}t.onCompile(),t.__tlds_replaced__||i.push(f),i.push(e.src_xn),e.src_tlds=i.join("|"),e.email_fuzzy=RegExp(r(e.tpl_email_fuzzy),"i"),e.link_fuzzy=RegExp(r(e.tpl_link_fuzzy),"i"),e.link_no_ip_fuzzy=RegExp(r(e.tpl_link_no_ip_fuzzy),"i"),e.host_fuzzy_test=RegExp(r(e.tpl_host_fuzzy_test),"i");var u=[];function h(t,e){throw new Error('(LinkifyIt) Invalid schema "'+t+'": '+e)}t.__compiled__={},Object.keys(t.__schemas__).forEach(function(e){var n=t.__schemas__[e];if(null!==n){var i={validate:null,link:null};if(t.__compiled__[e]=i,s(n))return a(n.validate)?i.validate=v(n.validate):c(n.validate)?i.validate=n.validate:h(e,n),void(c(n.normalize)?i.normalize=n.normalize:n.normalize?h(e,n):i.normalize=g());o(n)?u.push(e):h(e,n)}}),u.forEach(function(e){t.__compiled__[t.__schemas__[e]]&&(t.__compiled__[e].validate=t.__compiled__[t.__schemas__[e]].validate,t.__compiled__[e].normalize=t.__compiled__[t.__schemas__[e]].normalize)}),t.__compiled__[""]={validate:null,normalize:g()};var d=Object.keys(t.__compiled__).filter(function(e){return e.length>0&&t.__compiled__[e]}).map(l).join("|");t.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","i"),t.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","ig"),t.re.pretest=RegExp("("+t.re.schema_test.source+")|("+t.re.host_fuzzy_test.source+")|@","i"),m(t)}function b(t,e){var n=t.__index__,i=t.__last_index__,r=t.__text_cache__.slice(n,i);this.schema=t.__schema__.toLowerCase(),this.index=n+e,this.lastIndex=i+e,this.raw=r,this.text=r,this.url=r}function y(t,e){var n=new b(t,e);return t.__compiled__[n.schema].normalize(n,t),n}function w(t,e){if(!(this instanceof w))return new w(t,e);e||h(t)&&(e=t,t={}),this.__opts__=i({},u,e),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=i({},d,t),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},_(this)}w.prototype.add=function(t,e){return this.__schemas__[t]=e,_(this),this},w.prototype.set=function(t){return this.__opts__=i(this.__opts__,t),this},w.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var e,n,i,r,o,s,a,c,l;if(this.re.schema_test.test(t)){a=this.re.schema_search,a.lastIndex=0;while(null!==(e=a.exec(t)))if(r=this.testSchemaAt(t,e[2],a.lastIndex),r){this.__schema__=e[2],this.__index__=e.index+e[1].length,this.__last_index__=e.index+e[0].length+r;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=t.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c=0&&null!==(i=t.match(this.re.email_fuzzy))&&(o=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=s))),this.__index__>=0},w.prototype.pretest=function(t){return this.re.pretest.test(t)},w.prototype.testSchemaAt=function(t,e,n){return this.__compiled__[e.toLowerCase()]?this.__compiled__[e.toLowerCase()].validate(t,n,this):0},w.prototype.match=function(t){var e=0,n=[];this.__index__>=0&&this.__text_cache__===t&&(n.push(y(this,e)),e=this.__last_index__);var i=e?t.slice(e):t;while(this.test(i))n.push(y(this,e)),i=i.slice(this.__last_index__),e+=this.__last_index__;return n.length?n:null},w.prototype.tlds=function(t,e){return t=Array.isArray(t)?t:[t],e?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(t,e,n){return t!==n[e-1]}).reverse(),_(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,_(this),this)},w.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"!==t.schema||/^mailto:/i.test(t.url)||(t.url="mailto:"+t.url)},w.prototype.onCompile=function(){},t.exports=w},fdef:function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},fdfe:function(t,e,n){"use strict";var i=n("0068").isSpace;t.exports=function(t,e,n,r){var o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(o=t.src.charCodeAt(l++),42!==o&&45!==o&&95!==o)return!1;s=1;while(l=o?-1:(i=t.src.charCodeAt(r++),126!==i&&58!==i?-1:(n=t.skipSpaces(r),r===n?-1:n>=o?-1:r))}function i(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n=0;if(m=r+1,m>=o)return!1;if(t.isEmpty(m)&&(m++,m>=o))return!1;if(t.sCount[m]1&&t.isEmpty(t.line-1),t.tShift[l]=w,t.sCount[l]=y,t.tight=k,t.parentType=b,t.blkIndent=_,t.ddIndent=g,A=t.push("dd_close","dd",-1),h[1]=m=t.line,m>=o)break t;if(t.sCount[m]=o)break;if(u=m,t.isEmpty(u))break;if(t.sCount[u]=o)break;if(t.isEmpty(l)&&l++,l>=o)break;if(t.sCount[l] Date: Mon, 13 May 2019 16:30:52 +0100 Subject: [PATCH 5/8] feat(QScroller): 'footer' slot is now scoped with current value --- src/component/QScroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/QScroller.js b/src/component/QScroller.js index 8495348..8bd77f9 100644 --- a/src/component/QScroller.js +++ b/src/component/QScroller.js @@ -160,7 +160,7 @@ export default Vue.extend({ class: { 'shadow-up-20': this.noShadow === false } - }, slot || [ + }, slot ? slot(this.value) : [ this.__renderFooterButton(h) ]) }, From 95cf3bf1df6b65635af360a6963a533a5d69bb7d Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 16:32:16 +0100 Subject: [PATCH 6/8] chore: code clean up --- src/boot/qscroller.js | 1 - src/index.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/boot/qscroller.js b/src/boot/qscroller.js index 866c8a5..cb74ab9 100644 --- a/src/boot/qscroller.js +++ b/src/boot/qscroller.js @@ -1,4 +1,3 @@ -// import QDateTimeScroller from '@quasar/quasar-app-extension-qdatetimescroller/src/component/QDateTimeScroller' import QScroller from '@quasar/quasar-app-extension-qscroller/src/component/QScroller' import QTimeScroller from '@quasar/quasar-app-extension-qscroller/src/component/QTimeScroller' import QTimeRangeScroller from '@quasar/quasar-app-extension-qscroller/src/component/QTimeRangeScroller' diff --git a/src/index.js b/src/index.js index 35f79b8..14e4d8a 100644 --- a/src/index.js +++ b/src/index.js @@ -8,7 +8,7 @@ const extendQuasarConf = function (conf) { // make sure qscroller boot file is registered conf.boot.push('~@quasar/quasar-app-extension-qscroller/src/boot/qscroller.js') - console.log(` App Extension (qdatetimescroller) Info: 'Adding qscroller boot reference to your quasar.conf.js'`) + console.log(` App Extension (qscroller) Info: 'Adding qscroller boot reference to your quasar.conf.js'`) // make sure qscroller css goes through webpack to avoid ssr issues conf.css.push('~@quasar/quasar-app-extension-qscroller/src/component/scroller-all.styl') From ce0c27a7a6759414a2fd2760db83f0e3ddc51481 Mon Sep 17 00:00:00 2001 From: Jeff Galbraith Date: Mon, 13 May 2019 16:33:02 +0100 Subject: [PATCH 7/8] chore: update demo --- docs/index.html | 2 +- docs/js/{runtime.8658ed30.js => runtime.af8c40ed.js} | 0 docs/js/{vendor.a573ce0a.js => vendor.cfba3506.js} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename docs/js/{runtime.8658ed30.js => runtime.af8c40ed.js} (100%) rename docs/js/{vendor.a573ce0a.js => vendor.cfba3506.js} (79%) diff --git a/docs/index.html b/docs/index.html index aabb6a7..9e8d1a8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -QScroller demo app
    \ No newline at end of file +QScroller demo app
    \ No newline at end of file diff --git a/docs/js/runtime.8658ed30.js b/docs/js/runtime.af8c40ed.js similarity index 100% rename from docs/js/runtime.8658ed30.js rename to docs/js/runtime.af8c40ed.js diff --git a/docs/js/vendor.a573ce0a.js b/docs/js/vendor.cfba3506.js similarity index 79% rename from docs/js/vendor.a573ce0a.js rename to docs/js/vendor.cfba3506.js index aca118d..6fe290e 100644 --- a/docs/js/vendor.a573ce0a.js +++ b/docs/js/vendor.cfba3506.js @@ -22,4 +22,4 @@ function i(t){var e=Number(t.version.split(".")[0]);if(e>=2)t.mixin({beforeCreat * @author Feross Aboukhadijeh * @license MIT */ -var i=n("f37a"),r=n("9f8d"),o=n("4dd6");function s(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"===typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(e){return!1}}function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function c(t,e){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function b(t){return+t!=t&&(t=0),l.alloc(+t)}function y(t,e){if(l.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return Z(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return J(t).length;default:if(i)return Z(t).length;e=(""+e).toLowerCase(),i=!0}}function w(t,e,n){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return B(this,e,n);case"utf8":case"utf-8":return D(this,e,n);case"ascii":return I(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return O(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,e,n);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}function k(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function x(t,e,n,i,r){if(0===t.length)return-1;if("string"===typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(r)return-1;n=t.length-1}else if(n<0){if(!r)return-1;n=0}if("string"===typeof e&&(e=l.from(e,i)),l.isBuffer(e))return 0===e.length?-1:C(t,e,n,i,r);if("number"===typeof e)return e&=255,l.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):C(t,[e],n,i,r);throw new TypeError("val must be string, number or Buffer")}function C(t,e,n,i,r){var o,s=1,a=t.length,c=e.length;if(void 0!==i&&(i=String(i).toLowerCase(),"ucs2"===i||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(t.length<2||e.length<2)return-1;s=2,a/=2,c/=2,n/=2}function l(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(r){var u=-1;for(o=n;oa&&(n=a-c),o=n;o>=0;o--){for(var h=!0,d=0;dr&&(i=r)):i=r;var o=e.length;if(o%2!==0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var s=0;s239?4:l>223?3:l>191?2:1;if(r+h<=n)switch(h){case 1:l<128&&(u=l);break;case 2:o=t[r+1],128===(192&o)&&(c=(31&l)<<6|63&o,c>127&&(u=c));break;case 3:o=t[r+1],s=t[r+2],128===(192&o)&&128===(192&s)&&(c=(15&l)<<12|(63&o)<<6|63&s,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:o=t[r+1],s=t[r+2],a=t[r+3],128===(192&o)&&128===(192&s)&&128===(192&a)&&(c=(15&l)<<18|(63&o)<<12|(63&s)<<6|63&a,c>65535&&c<1114112&&(u=c))}null===u?(u=65533,h=1):u>65535&&(u-=65536,i.push(u>>>10&1023|55296),u=56320|1023&u),i.push(u),r+=h}return M(i)}e.Buffer=l,e.SlowBuffer=b,e.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:s(),e.kMaxLength=a(),l.poolSize=8192,l._augment=function(t){return t.__proto__=l.prototype,t},l.from=function(t,e,n){return u(null,t,e,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!==typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(t,e,n){return d(null,t,e,n)},l.allocUnsafe=function(t){return f(null,t)},l.allocUnsafeSlow=function(t){return f(null,t)},l.isBuffer=function(t){return!(null==t||!t._isBuffer)},l.compare=function(t,e){if(!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,i=e.length,r=0,o=Math.min(n,i);r0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),""},l.prototype.compare=function(t,e,n,i,r){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),e<0||n>t.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&e>=n)return 0;if(i>=r)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,i>>>=0,r>>>=0,this===t)return 0;for(var o=r-i,s=n-e,a=Math.min(o,s),c=this.slice(i,r),u=t.slice(e,n),h=0;hr)&&(n=r),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return S(this,t,e,n);case"utf8":case"utf-8":return A(this,t,e,n);case"ascii":return E(this,t,e,n);case"latin1":case"binary":return q(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var L=4096;function M(t){var e=t.length;if(e<=L)return String.fromCharCode.apply(String,t);var n="",i=0;while(ii)&&(n=i);for(var r="",o=e;on)throw new RangeError("Trying to access beyond buffer length")}function R(t,e,n,i,r,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>r||et.length)throw new RangeError("Index out of range")}function z(t,e,n,i){e<0&&(e=65535+e+1);for(var r=0,o=Math.min(t.length-n,2);r>>8*(i?r:1-r)}function N(t,e,n,i){e<0&&(e=4294967295+e+1);for(var r=0,o=Math.min(t.length-n,4);r>>8*(i?r:3-r)&255}function H(t,e,n,i,r,o){if(n+i>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function V(t,e,n,i,o){return o||H(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),r.write(t,e,n,i,23,4),n+4}function U(t,e,n,i,o){return o||H(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),r.write(t,e,n,i,52,8),n+8}l.prototype.slice=function(t,e){var n,i=this.length;if(t=~~t,e=void 0===e?i:~~e,t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e0&&(r*=256))i+=this[t+--e]*r;return i},l.prototype.readUInt8=function(t,e){return e||P(t,1,this.length),this[t]},l.prototype.readUInt16LE=function(t,e){return e||P(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUInt16BE=function(t,e){return e||P(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUInt32LE=function(t,e){return e||P(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUInt32BE=function(t,e){return e||P(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=this[t],r=1,o=0;while(++o=r&&(i-=Math.pow(2,8*e)),i},l.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=e,r=1,o=this[t+--i];while(i>0&&(r*=256))o+=this[t+--i]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return e||P(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){e||P(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){e||P(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return e||P(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return e||P(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!1,52,8)},l.prototype.writeUIntLE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){var r=Math.pow(2,8*n)-1;R(this,t,e,n,r,0)}var o=1,s=0;this[e]=255&t;while(++s=0&&(s*=256))this[e+o]=t/s&255;return e+n},l.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,255,0),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):N(this,t,e,!0),e+4},l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=0,s=1,a=0;this[e]=255&t;while(++o>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=n-1,s=1,a=0;this[e+o]=255&t;while(--o>=0&&(s*=256))t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,127,-128),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):N(this,t,e,!0),e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeFloatLE=function(t,e,n){return V(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return V(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return U(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return U(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,i){if(n||(n=0),i||0===i||(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e=0;--r)t[r+e]=this[r+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(r=0;r>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"===typeof t)for(o=e;o55295&&n<57344){if(!r){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===i){(e-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(e-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function K(t){for(var e=[],n=0;n>8,r=n%256,o.push(r),o.push(i)}return o}function J(t){return i.toByteArray(W(t))}function tt(t,e,n,i){for(var r=0;r=e.length||r>=t.length)break;e[r+n]=t[r]}return r}function et(t){return t!==t}}).call(this,n("93d9"))},"9def":function(t,e,n){var i=n("4588"),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},"9e1e":function(t,e,n){t.exports=!n("79e5")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"9e62":function(t,e,n){"use strict";var i=n("2c75");e["a"]={inheritAttrs:!1,props:{contentClass:[Array,String,Object],contentStyle:[Array,String,Object]},methods:{__showPortal:function(){void 0!==this.__portal&&!0!==this.__portal.showing&&(document.body.appendChild(this.__portal.$el),this.__portal.showing=!0)},__hidePortal:function(){void 0!==this.__portal&&!0===this.__portal.showing&&(this.__portal.$el.remove(),this.__portal.showing=!1)}},render:function(){void 0!==this.__portal&&this.__portal.$forceUpdate()},beforeMount:function(){var t=this,e={inheritAttrs:!1,render:function(e){return t.__render(e)},components:this.$options.components,directives:this.$options.directives};void 0!==this.__onPortalClose&&(e.methods={__qClosePopup:this.__onPortalClose});var n=this.__onPortalCreated;void 0!==n&&(e.created=function(){n(this)}),this.__portal=Object(i["b"])(this,e).$mount()},beforeDestroy:function(){this.__portal.$destroy(),this.__portal.$el.remove(),this.__portal=void 0}}},"9f8d":function(t,e){e.read=function(t,e,n,i,r){var o,s,a=8*r-i-1,c=(1<>1,u=-7,h=n?r-1:0,d=n?-1:1,f=t[e+h];for(h+=d,o=f&(1<<-u)-1,f>>=-u,u+=a;u>0;o=256*o+t[e+h],h+=d,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=i;u>0;s=256*s+t[e+h],h+=d,u-=8);if(0===o)o=1-l;else{if(o===c)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,i),o-=l}return(f?-1:1)*s*Math.pow(2,o-i)},e.write=function(t,e,n,i,r,o){var s,a,c,l=8*o-r-1,u=(1<>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:o-1,p=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-s))<1&&(s--,c*=2),e+=s+h>=1?d/c:d*Math.pow(2,1-h),e*c>=2&&(s++,c/=2),s+h>=u?(a=0,s=u):s+h>=1?(a=(e*c-1)*Math.pow(2,r),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,r),s=0));r>=8;t[n+f]=255&a,f+=p,a/=256,r-=8);for(s=s<0;t[n+f]=255&s,f+=p,s/=256,l-=8);t[n+f-p]|=128*m}},a124:function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r=t.tokens;for(n=0,i=r.length;n-1&&r.splice(e,1)}}}},a370:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCardSection",render:function(t){return t("div",{staticClass:"q-card__section",on:this.$listeners},Object(r["a"])(this,"default"))}})},a481:function(t,e,n){"use strict";var i=n("cb7c"),r=n("4bf8"),o=n("9def"),s=n("4588"),a=n("0390"),c=n("5f1b"),l=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(t){return void 0===t?t:String(t)};n("214f")("replace",2,function(t,e,n,m){return[function(i,r){var o=t(this),s=void 0==i?void 0:i[e];return void 0!==s?s.call(i,o,r):n.call(String(o),i,r)},function(t,e){var r=m(n,t,this,e);if(r.done)return r.value;var h=i(t),d=String(this),f="function"===typeof e;f||(e=String(e));var g=h.global;if(g){var _=h.unicode;h.lastIndex=0}var b=[];while(1){var y=c(h,d);if(null===y)break;if(b.push(y),!g)break;var w=String(y[0]);""===w&&(h.lastIndex=a(d,o(h.lastIndex),_))}for(var k="",x=0,C=0;C=x&&(k+=d.slice(x,A)+O,x=A+S.length)}return k+d.slice(x)}];function v(t,e,i,o,s,a){var c=i+t.length,l=o.length,u=f;return void 0!==s&&(s=r(s),u=d),n.call(a,u,function(n,r){var a;switch(r.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,i);case"'":return e.slice(c);case"<":a=s[r.slice(1,-1)];break;default:var u=+r;if(0===u)return n;if(u>l){var d=h(u/10);return 0===d?n:d<=l?void 0===o[d-1]?r.charAt(1):o[d-1]+r.charAt(1):n}a=o[u-1]}return void 0===a?"":a})}})},a5b8:function(t,e,n){"use strict";var i=n("d8e8");function r(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=i(e),this.reject=i(n)}t.exports.f=function(t){return new r(t)}},a7bc:function(t,e){t.exports=/[\0-\x1F\x7F-\x9F]/},a8c6:function(t,e,n){"use strict";function i(t,e,n){var i=e.target;n.touchTargetObserver=new MutationObserver(function(){!1===t.contains(i)&&n.end(e)}),n.touchTargetObserver.observe(t,{childList:!0,subtree:!0})}function r(t){void 0!==t.touchTargetObserver&&(t.touchTargetObserver.disconnect(),t.touchTargetObserver=void 0)}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r})},a915:function(t,e,n){"use strict";var i=n("4883"),r=[["normalize",n("4c26")],["block",n("3408")],["inline",n("a124")],["linkify",n("9921")],["replacements",n("bb4a")],["smartquotes",n("af30")]];function o(){this.ruler=new i;for(var t=0;t:(",">:-("],blush:[':")',':-")'],broken_heart:["c)if("center"===o.vertical)t.top=e[o.vertical]>c/2?c-n.bottom:0,t.maxHeight=Math.min(n.bottom,c);else if(e[o.vertical]>c/2){var u=Math.min(c,"center"===r.vertical?e.center:r.vertical===o.vertical?e.bottom:e.top);t.maxHeight=Math.min(n.bottom,u),t.top=Math.max(0,u-t.maxHeight)}else t.top="center"===r.vertical?e.center:r.vertical===o.vertical?e.top:e.bottom,t.maxHeight=Math.min(n.bottom,c-t.top);if(t.left<0||t.left+n.right>l)if(t.maxWidth=Math.min(n.right,l),"middle"===o.horizontal)t.left=e[o.horizontal]>l/2?l-n.right:0;else if(e[o.horizontal]>l/2){var h=Math.min(l,"middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.right:e.left);t.maxWidth=Math.min(n.right,h),t.left=Math.max(0,h-t.maxWidth)}else t.left="middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.left:e.right,t.maxWidth=Math.min(n.right,l-t.left)}},ac6a:function(t,e,n){for(var i=n("cadf"),r=n("0d58"),o=n("2aba"),s=n("7726"),a=n("32e9"),c=n("84f2"),l=n("2b4c"),u=l("iterator"),h=l("toStringTag"),d=c.Array,f={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=r(f),m=0;m1?arguments[1]:void 0,i=r(e.length),c=void 0===n?i:Math.min(r(n),i),l=String(t);return a?a.call(e,l,c):e.slice(c-l.length,c)===l}})},af30:function(t,e,n){"use strict";var i=n("0068").isWhiteSpace,r=n("0068").isPunctChar,o=n("0068").isMdAsciiPunct,s=/['"]/,a=/['"]/g,c="’";function l(t,e,n){return t.substr(0,e)+n+t.substr(e+1)}function u(t,e){var n,s,u,h,d,f,p,m,v,g,_,b,y,w,k,x,C,S,A,E,q;for(A=[],n=0;n=0;C--)if(A[C].level<=p)break;if(A.length=C+1,"text"===s.type){u=s.content,d=0,f=u.length;t:while(d=0)v=u.charCodeAt(h.index-1);else for(C=n-1;C>=0;C--){if("softbreak"===t[C].type||"hardbreak"===t[C].type)break;if("text"===t[C].type){v=t[C].content.charCodeAt(t[C].content.length-1);break}}if(g=32,d=48&&v<=57&&(x=k=!1),k&&x&&(k=!1,x=b),k||x){if(x)for(C=A.length-1;C>=0;C--){if(m=A[C],A[C].level=0;e--)"inline"===t.tokens[e].type&&s.test(t.tokens[e].content)&&u(t.tokens[e].children,t)}},b05d:function(t,e,n){"use strict";n("7f7f"),n("cadf"),n("456d"),n("ac6a"),n("7514"),n("6b54"),n("aef6"),n("f559"),n("6762"),n("2fdb"),n("c5f6"),n("7cdf"),n("f751");var i=n("0967");function r(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),i=1;i=0?r=s:(r=i+s,r<0&&(r=0));while(rn.length)&&(e=n.length),e-=t.length;var i=n.indexOf(t,e);return-1!==i&&i===e}),!1===i["c"]&&("function"!==typeof Element.prototype.matches&&(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.webkitMatchesSelector||function(t){var e=this,n=(e.document||e.ownerDocument).querySelectorAll(t),i=0;while(n[i]&&n[i]!==e)++i;return Boolean(n[i])}),"function"!==typeof Element.prototype.closest&&(Element.prototype.closest=function(t){var e=this;while(e&&1===e.nodeType){if(e.matches(t))return e;e=e.parentNode}return null}),function(t){t.forEach(function(t){t.hasOwnProperty("remove")||Object.defineProperty(t,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})})}([Element.prototype,CharacterData.prototype,DocumentType.prototype])),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null==this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),i=n.length>>>0,r=arguments[1],o=0;o=i.sm,n.gt.sm=e>=i.md,n.gt.md=e>=i.lg,n.gt.lg=e>=i.xl,n.lt.sm=ei.xl},u={},h=16;this.setSizes=function(t){l.forEach(function(e){void 0!==t[e]&&(u[e]=t[e])})},this.setDebounce=function(t){h=t};var d=function(){var t=getComputedStyle(document.body);t.getPropertyValue("--q-size-sm")&&l.forEach(function(e){n.sizes[e]=parseInt(t.getPropertyValue("--q-size-".concat(e)),10)}),n.setSizes=function(t){l.forEach(function(e){t[e]&&(n.sizes[e]=t[e])}),o(!0)},n.setDebounce=function(t){var e=function(){o()};r&&window.removeEventListener("resize",r,a["d"].passive),r=t>0?Object(c["a"])(e,t):e,window.addEventListener("resize",r,a["d"].passive)},n.setDebounce(h),Object.keys(u).length>0?(n.setSizes(u),u=void 0):o()};!0===i["b"]?e.takeover.push(d):d(),s["a"].util.defineReactive(t,"screen",this)}else t.screen=this}},h=n("582c"),d=n("ec5d"),f=n("bc78");function p(t){return!0===t.ios?"ios":!0===t.android?"android":!0===t.winphone?"winphone":void 0}function m(t,e){var n=t.is,i=t.has,r=t.within,o=[n.desktop?"desktop":"mobile",i.touch?"touch":"no-touch"];if(!0===n.mobile){var s=p(n);void 0!==s&&o.push("platform-"+s)}return!0===n.cordova?(o.push("cordova"),!0!==n.ios||void 0!==e.cordova&&!1===e.cordova.iosStatusBarPadding||o.push("q-ios-padding")):!0===n.electron&&o.push("electron"),!0===r.iframe&&o.push("within-iframe"),o}function v(t,e){var n=m(t,e);!0===t.is.ie&&11===t.is.versionNumber?n.forEach(function(t){return document.body.classList.add(t)}):document.body.classList.add.apply(document.body.classList,n),!0===t.is.ios&&document.body.addEventListener("touchstart",function(){})}function g(t){for(var e in t)Object(f["g"])(e,t[e])}var _={install:function(t,e,n){!0!==i["c"]?(n.brand&&g(n.brand),v(t.platform,n)):e.server.push(function(t,e){var i=m(t.platform,n),r=e.ssr.setBodyClasses;"function"===typeof r?r(i):e.ssr.Q_BODY_CLASSES=i.join(" ")})}},b={name:"material-icons",type:{positive:"check_circle",negative:"warning",info:"info",warning:"priority_high"},arrow:{up:"arrow_upward",right:"arrow_forward",down:"arrow_downward",left:"arrow_back",dropdown:"arrow_drop_down"},chevron:{left:"chevron_left",right:"chevron_right"},colorPicker:{spectrum:"gradient",tune:"tune",palette:"style"},pullToRefresh:{icon:"refresh"},carousel:{left:"chevron_left",right:"chevron_right",navigationIcon:"lens",thumbnails:"view_carousel"},chip:{remove:"cancel",selected:"check"},datetime:{arrowLeft:"chevron_left",arrowRight:"chevron_right",now:"access_time",today:"today"},editor:{bold:"format_bold",italic:"format_italic",strikethrough:"strikethrough_s",underline:"format_underlined",unorderedList:"format_list_bulleted",orderedList:"format_list_numbered",subscript:"vertical_align_bottom",superscript:"vertical_align_top",hyperlink:"link",toggleFullscreen:"fullscreen",quote:"format_quote",left:"format_align_left",center:"format_align_center",right:"format_align_right",justify:"format_align_justify",print:"print",outdent:"format_indent_decrease",indent:"format_indent_increase",removeFormat:"format_clear",formatting:"text_format",fontSize:"format_size",align:"format_align_left",hr:"remove",undo:"undo",redo:"redo",header:"format_size",code:"code",size:"format_size",font:"font_download"},expansionItem:{icon:"keyboard_arrow_down",denseIcon:"arrow_drop_down"},fab:{icon:"add",activeIcon:"close"},field:{clear:"cancel",error:"error"},pagination:{first:"first_page",prev:"keyboard_arrow_left",next:"keyboard_arrow_right",last:"last_page"},rating:{icon:"grade"},stepper:{done:"check",active:"edit",error:"warning"},tabs:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down"},table:{arrowUp:"arrow_upward",warning:"warning",prevPage:"chevron_left",nextPage:"chevron_right"},tree:{icon:"play_arrow"},uploader:{done:"done",clear:"clear",add:"add_box",upload:"cloud_upload",removeQueue:"clear_all",removeUploaded:"done_all"}},y={__installed:!1,install:function(t,e){var n=this;this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b;e.set=n.set,!0===i["c"]||void 0!==t.iconSet?t.iconSet=e:s["a"].util.defineReactive(t,"iconSet",e),n.name=e.name,n.def=e},this.set(e)}},w={server:[],takeover:[]},k={version:o["a"]},x=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.__installed){this.__installed=!0;var n=e.config||{};if(i["a"].install(k,w),_.install(k,w,n),u.install(k,w),h["a"].install(k,n),d["a"].install(k,w,e.lang),y.install(k,e.iconSet),!0===i["c"]?t.mixin({beforeCreate:function(){this.$q=this.$root.$options.$q}}):t.prototype.$q=k,e.components&&Object.keys(e.components).forEach(function(n){var i=e.components[n];"function"===typeof i&&t.component(i.options.name,i)}),e.directives&&Object.keys(e.directives).forEach(function(n){var i=e.directives[n];void 0!==i.name&&void 0!==i.unbind&&t.directive(i.name,i)}),e.plugins){var r={$q:k,queues:w,cfg:n};Object.keys(e.plugins).forEach(function(t){var n=e.plugins[t];"function"===typeof n.install&&n!==i["a"]&&n!==u&&n.install(r)})}}},C=n("3c93"),S=n.n(C),A={mounted:function(){var t=this;w.takeover.forEach(function(e){e(t.$q)})}},E=function(t){if(t.ssr){var e=S()({},k);Object.assign(t.ssr,{Q_HEAD_TAGS:"",Q_BODY_ATTRS:"",Q_BODY_TAGS:""}),w.server.forEach(function(n){n(e,t)}),t.app.$q=e}else{var n=t.app.mixins||[];n.includes(A)||(t.app.mixins=n.concat(A))}};e["a"]={version:o["a"],install:x,lang:d["a"],iconSet:y,ssrUpdate:E}},b0bf:function(t,e,n){"use strict";var i=/]+[^>]*>/;function r(t){return i.test(t)}var o={root:/]+>/,width:/(^|\s)width\s*=\s*"(.+?)"/i,height:/(^|\s)height\s*=\s*"(.+?)"/i,viewbox:/(^|\s)viewbox\s*=\s*"(.+?)"/i};function s(t){var e=1;if(t&&t[2]){var n=t[2].split(/\s/g);4===n.length&&(n=n.map(function(t){return parseInt(t,10)}),e=(n[2]-n[0])/(n[3]-n[1]))}return e}function a(t){var e=t.toString().replace(/[\r\n\s]+/g," "),n=e.match(o.root),i=n&&n[0];if(i){var r=i.match(o.width),a=i.match(o.height),c=i.match(o.viewbox),l=s(c);return{width:parseInt(r&&r[2],10)||0,height:parseInt(a&&a[2],10)||0,ratio:l}}}function c(t){var e=a(t),n=e.width,i=e.height,r=e.ratio;if(n&&i)return{width:n,height:i};if(n)return{width:n,height:Math.floor(n/r)};if(i)return{width:Math.floor(i*r),height:i};throw new TypeError("invalid svg")}t.exports={detect:r,calculate:c}},b0c5:function(t,e,n){"use strict";var i=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:i!==/./.exec},{exec:i})},b117:function(t,e,n){"use strict";t.exports=function(t){var e={};e.src_Any=n("cbc7").source,e.src_Cc=n("a7bc").source,e.src_Z=n("4fc2").source,e.src_P=n("7ca0").source,e.src_ZPCc=[e.src_Z,e.src_P,e.src_Cc].join("|"),e.src_ZCc=[e.src_Z,e.src_Cc].join("|");var i="[><|]";return e.src_pseudo_letter="(?:(?!"+i+"|"+e.src_ZPCc+")"+e.src_Any+")",e.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",e.src_auth="(?:(?:(?!"+e.src_ZCc+"|[@/\\[\\]()]).)+@)?",e.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",e.src_host_terminator="(?=$|"+i+"|"+e.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+e.src_ZPCc+"))",e.src_path="(?:[/?#](?:(?!"+e.src_ZCc+"|"+i+"|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+e.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+e.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+e.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+e.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+e.src_ZCc+"|[']).)+\\'|\\'(?="+e.src_pseudo_letter+"|[-]).|\\.{2,3}[a-zA-Z0-9%/]|\\.(?!"+e.src_ZCc+"|[.]).|"+(t&&t["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+e.src_ZCc+").|\\!(?!"+e.src_ZCc+"|[!]).|\\?(?!"+e.src_ZCc+"|[?]).)+|\\/)?",e.src_email_name='[\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]+',e.src_xn="xn--[a-z0-9\\-]{1,59}",e.src_domain_root="(?:"+e.src_xn+"|"+e.src_pseudo_letter+"{1,63})",e.src_domain="(?:"+e.src_xn+"|(?:"+e.src_pseudo_letter+")|(?:"+e.src_pseudo_letter+"(?:-|"+e.src_pseudo_letter+"){0,61}"+e.src_pseudo_letter+"))",e.src_host="(?:(?:(?:(?:"+e.src_domain+")\\.)*"+e.src_domain+"))",e.tpl_host_fuzzy="(?:"+e.src_ip4+"|(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%)))",e.tpl_host_no_ip_fuzzy="(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%))",e.src_host_strict=e.src_host+e.src_host_terminator,e.tpl_host_fuzzy_strict=e.tpl_host_fuzzy+e.src_host_terminator,e.src_host_port_strict=e.src_host+e.src_port+e.src_host_terminator,e.tpl_host_port_fuzzy_strict=e.tpl_host_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_port_no_ip_fuzzy_strict=e.tpl_host_no_ip_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+e.src_ZPCc+"|>|$))",e.tpl_email_fuzzy="(^|"+i+"|\\(|"+e.src_ZCc+")("+e.src_email_name+"@"+e.tpl_host_fuzzy_strict+")",e.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_fuzzy_strict+e.src_path+")",e.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_no_ip_fuzzy_strict+e.src_path+")",e}},b326:function(t,e){function n(t,e){var n=[],i=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done);i=!0)if(n.push(s.value),e&&n.length===e)break}catch(c){r=!0,o=c}finally{try{i||null==a["return"]||a["return"]()}finally{if(r)throw o}}return n}t.exports=n},b498:function(t,e,n){"use strict";n("f751"),n("28a5"),n("aef6"),n("c5f6");var i=n("adc8"),r=n.n(i),o=(n("f559"),n("6762"),n("2fdb"),n("2b0e")),s=n("8621"),a=function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:250,i=!1;return function(){if(i)return e;i=!0;for(var r=arguments.length,o=new Array(r),s=0;si.sensitivity[0]&&(i.event.dir=s<0?"up":"down"),i.direction.horizontal&&o>a&&a<100&&c>i.sensitivity[0]&&(i.event.dir=r<0?"left":"right"),i.direction.up&&oi.sensitivity[0]&&(i.event.dir="up"),i.direction.down&&o0&&o<100&&l>i.sensitivity[0]&&(i.event.dir="down"),i.direction.left&&o>a&&r<0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="left"),i.direction.right&&o>a&&r>0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="right"),!1!==i.event.dir?(document.body.classList.add("no-pointer-events"),Object(v["h"])(t),Object(g["a"])(),i.handler({evt:t,direction:i.event.dir,duration:e,distance:{x:o,y:a}})):i.event.abort=!0}}else Object(v["h"])(t)},end:function(t){void 0!==i.event&&(Object(m["a"])(i),!1===i.event.abort&&!1!==i.event.dir&&(document.body.classList.remove("no-pointer-events"),Object(v["h"])(t)),i.event=void 0)}};t.__qtouchswipe&&(t.__qtouchswipe_old=t.__qtouchswipe),t.__qtouchswipe=i,!0===n&&t.addEventListener("mousedown",i.mouseStart),t.addEventListener("touchstart",i.start,v["d"].notPassive),t.addEventListener("touchmove",i.move,v["d"].notPassive),t.addEventListener("touchcancel",i.end),t.addEventListener("touchend",i.end)},update:function(t,e){e.oldValue!==e.value&&(t.__qtouchswipe.handler=e.value)},unbind:function(t,e){var n=t.__qtouchswipe_old||t.__qtouchswipe;void 0!==n&&(Object(m["a"])(n),document.body.classList.remove("no-pointer-events"),!0===e.modifiers.mouse&&(t.removeEventListener("mousedown",n.mouseStart),document.removeEventListener("mousemove",n.move,!0),document.removeEventListener("mouseup",n.mouseEnd,!0)),t.removeEventListener("touchstart",n.start,v["d"].notPassive),t.removeEventListener("touchmove",n.move,v["d"].notPassive),t.removeEventListener("touchcancel",n.end),t.removeEventListener("touchend",n.end),delete t[t.__qtouchswipe_old?"__qtouchswipe_old":"__qtouchswipe"])}},w=n("dde5"),k=o["a"].extend({name:"QTabPanelWrapper",render:function(t){return t("div",{staticClass:"q-panel scroll",attrs:{role:"tabpanel"},on:{input:v["g"]}},Object(w["a"])(this,"default"))}}),x={directives:{TouchSwipe:y},props:{value:{required:!0},animated:Boolean,infinite:Boolean,swipeable:Boolean,transitionPrev:{type:String,default:"slide-right"},transitionNext:{type:String,default:"slide-left"},keepAlive:Boolean},data:function(){return{panelIndex:null,panelTransition:null}},computed:{panelDirectives:function(){if(this.swipeable)return[{name:"touch-swipe",value:this.__swipe,modifiers:{horizontal:!0,mouse:!0}}]},contentKey:function(){return"string"===typeof this.value||"number"===typeof this.value?this.value:String(this.value)}},watch:{value:function(t,e){var n=this,i=!0===this.__isValidPanelName(t)?this.__getPanelIndex(t):-1;!0!==this.__forcedPanelTransition&&this.__updatePanelTransition(-1===i?0:i1&&void 0!==arguments[1]?arguments[1]:this.panelIndex,i=n+t,r=this.panels;while(i>-1&&i0&&-1!==n&&n!==r.length&&this.__go(t,-1===t?r.length:-1)},__swipe:function(t){this.__go((!0===this.$q.lang.rtl?-1:1)*("left"===t.direction?1:-1))},__updatePanelIndex:function(){var t=this.__getPanelIndex(this.value);return this.panelIndex!==t&&(this.panelIndex=t),!0},__getPanelContent:function(t){if(0!==this.panels.length){var e=this.__isValidPanelName(this.value)&&this.__updatePanelIndex()&&this.panels[this.panelIndex],n=!0===this.keepAlive?[t("keep-alive",[t(k,{key:this.contentKey},[e])])]:[t("div",{staticClass:"q-panel scroll",key:this.contentKey,attrs:{role:"tabpanel"},on:{input:v["g"]}},[e])];return!0===this.animated?[t("transition",{props:{name:this.panelTransition}},n)]:n}}},render:function(t){return this.panels=void 0!==this.$scopedSlots.default?this.$scopedSlots.default():[],this.__render(t)}},C={props:{name:{required:!0},disable:Boolean}},S=o["a"].extend({name:"QTabPanels",mixins:[x],methods:{__render:function(t){return t("div",{staticClass:"q-tab-panels q-panel-parent",directives:this.panelDirectives,on:this.$listeners},this.__getPanelContent(t))}}}),A=o["a"].extend({name:"QTabPanel",mixins:[C],render:function(t){return t("div",{staticClass:"q-tab-panel",on:this.$listeners},Object(w["a"])(this,"default"))}}),E=["rgb(255,204,204)","rgb(255,230,204)","rgb(255,255,204)","rgb(204,255,204)","rgb(204,255,230)","rgb(204,255,255)","rgb(204,230,255)","rgb(204,204,255)","rgb(230,204,255)","rgb(255,204,255)","rgb(255,153,153)","rgb(255,204,153)","rgb(255,255,153)","rgb(153,255,153)","rgb(153,255,204)","rgb(153,255,255)","rgb(153,204,255)","rgb(153,153,255)","rgb(204,153,255)","rgb(255,153,255)","rgb(255,102,102)","rgb(255,179,102)","rgb(255,255,102)","rgb(102,255,102)","rgb(102,255,179)","rgb(102,255,255)","rgb(102,179,255)","rgb(102,102,255)","rgb(179,102,255)","rgb(255,102,255)","rgb(255,51,51)","rgb(255,153,51)","rgb(255,255,51)","rgb(51,255,51)","rgb(51,255,153)","rgb(51,255,255)","rgb(51,153,255)","rgb(51,51,255)","rgb(153,51,255)","rgb(255,51,255)","rgb(255,0,0)","rgb(255,128,0)","rgb(255,255,0)","rgb(0,255,0)","rgb(0,255,128)","rgb(0,255,255)","rgb(0,128,255)","rgb(0,0,255)","rgb(128,0,255)","rgb(255,0,255)","rgb(245,0,0)","rgb(245,123,0)","rgb(245,245,0)","rgb(0,245,0)","rgb(0,245,123)","rgb(0,245,245)","rgb(0,123,245)","rgb(0,0,245)","rgb(123,0,245)","rgb(245,0,245)","rgb(214,0,0)","rgb(214,108,0)","rgb(214,214,0)","rgb(0,214,0)","rgb(0,214,108)","rgb(0,214,214)","rgb(0,108,214)","rgb(0,0,214)","rgb(108,0,214)","rgb(214,0,214)","rgb(163,0,0)","rgb(163,82,0)","rgb(163,163,0)","rgb(0,163,0)","rgb(0,163,82)","rgb(0,163,163)","rgb(0,82,163)","rgb(0,0,163)","rgb(82,0,163)","rgb(163,0,163)","rgb(92,0,0)","rgb(92,46,0)","rgb(92,92,0)","rgb(0,92,0)","rgb(0,92,46)","rgb(0,92,92)","rgb(0,46,92)","rgb(0,0,92)","rgb(46,0,92)","rgb(92,0,92)","rgb(255,255,255)","rgb(205,205,205)","rgb(178,178,178)","rgb(153,153,153)","rgb(127,127,127)","rgb(102,102,102)","rgb(76,76,76)","rgb(51,51,51)","rgb(25,25,25)","rgb(0,0,0)"];e["a"]=o["a"].extend({name:"QColor",directives:{TouchPan:l["a"]},props:{value:String,defaultValue:String,defaultView:{type:String,default:"spectrum",validator:function(t){return["spectrum","tune","palette"]}},formatModel:{type:String,default:"auto",validator:function(t){return["auto","hex","rgb","hexa","rgba"].includes(t)}},noHeader:Boolean,noFooter:Boolean,disable:Boolean,readonly:Boolean,dark:Boolean},data:function(){return{topView:"auto"===this.formatModel?void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")?"hex":"rgb":this.formatModel.startsWith("hex")?"hex":"rgb",view:this.defaultView,model:this.__parseModel(this.value||this.defaultValue)}},watch:{value:function(t){var e=this.__parseModel(t||this.defaultValue);e.hex!==this.model.hex&&(this.model=e)},defaultValue:function(t){if(!this.value&&t){var e=this.__parseModel(t);e.hex!==this.model.hex&&(this.model=e)}}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},forceHex:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("hex")>-1},forceAlpha:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1},isHex:function(){return void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")},isOutputHex:function(){return null!==this.forceHex?this.forceHex:this.isHex},hasAlpha:function(){return null!==this.forceAlpha?this.forceAlpha:void 0!==this.model.a},currentBgColor:function(){return{backgroundColor:this.model.rgb||"#000"}},headerClass:function(){var t=void 0!==this.model.a&&this.model.a<65||Object(c["c"])(this.model)>.4;return"q-color-picker__header-content--".concat(t?"light":"dark")},spectrumStyle:function(){return{background:"hsl(".concat(this.model.h,",100%,50%)")}},spectrumPointerStyle:function(){return r()({top:"".concat(100-this.model.v,"%")},this.$q.lang.rtl?"right":"left","".concat(this.model.s,"%"))},inputsArray:function(){var t=["r","g","b"];return!0===this.hasAlpha&&t.push("a"),t}},created:function(){this.__spectrumChange=a(this.__spectrumChange,20)},render:function(t){var e=[this.__getContent(t)];return!0!==this.noHeader&&e.unshift(this.__getHeader(t)),!0!==this.noFooter&&e.push(this.__getFooter(t)),t("div",{staticClass:"q-color-picker",class:{disabled:this.disable,"q-color-picker--dark":this.dark}},e)},methods:{__getHeader:function(t){var e=this;return t("div",{staticClass:"q-color-picker__header relative-position overflow-hidden"},[t("div",{staticClass:"q-color-picker__header-bg absolute-full"}),t("div",{staticClass:"q-color-picker__header-content absolute-full",class:this.headerClass,style:this.currentBgColor},[t(d["a"],{props:{value:this.topView,dense:!0,align:"justify"},on:{input:function(t){e.topView=t}}},[t(f["a"],{props:{label:"HEX"+(!0===this.hasAlpha?"A":""),name:"hex",ripple:!1}}),t(f["a"],{props:{label:"RGB"+(!0===this.hasAlpha?"A":""),name:"rgb",ripple:!1}})]),t("div",{staticClass:"q-color-picker__header-banner row flex-center no-wrap"},[t("input",{staticClass:"fit",domProps:{value:this.model[this.topView]},attrs:this.editable?null:{readonly:!0},on:{input:function(t){e.__updateErrorIcon(!0===e.__onEditorChange(t))},blur:function(t){!0===e.__onEditorChange(t,!0)&&e.$forceUpdate(),e.__updateErrorIcon(!1)}}}),t(h["a"],{ref:"errorIcon",staticClass:"q-color-picker__error-icon absolute no-pointer-events",props:{name:this.$q.iconSet.type.negative}})])])])},__getContent:function(t){return t(S,{props:{value:this.view,animated:!0}},[t(A,{staticClass:"q-color-picker__spectrum-tab",props:{name:"spectrum"}},this.__getSpectrumTab(t)),t(A,{staticClass:"q-pa-md q-color-picker__tune-tab",props:{name:"tune"}},this.__getTuneTab(t)),t(A,{staticClass:"q-pa-sm q-color-picker__palette-tab",props:{name:"palette"}},this.__getPaletteTab(t))])},__getFooter:function(t){var e=this;return t(d["a"],{staticClass:"q-color-picker__footer",props:{value:this.view,dense:!0,align:"justify"},on:{input:function(t){e.view=t}}},[t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.spectrum,name:"spectrum",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.tune,name:"tune",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.palette,name:"palette",ripple:!1}})])},__getSpectrumTab:function(t){var e=this;return[t("div",{ref:"spectrum",staticClass:"q-color-picker__spectrum non-selectable relative-position cursor-pointer",style:this.spectrumStyle,class:{readonly:!this.editable},on:this.editable?{click:this.__spectrumClick}:null,directives:this.editable?[{name:"touch-pan",modifiers:{prevent:!0,stop:!0,mouse:!0,mousePrevent:!0,mouseStop:!0},value:this.__spectrumPan}]:null},[t("div",{style:{paddingBottom:"100%"}}),t("div",{staticClass:"q-color-picker__spectrum-white absolute-full"}),t("div",{staticClass:"q-color-picker__spectrum-black absolute-full"}),t("div",{staticClass:"absolute",style:this.spectrumPointerStyle},[void 0!==this.model.hex?t("div",{staticClass:"q-color-picker__spectrum-circle"}):null])]),t("div",{staticClass:"q-color-picker__sliders"},[t("div",{staticClass:"q-color-picker__hue q-mx-sm non-selectable"},[t(u["a"],{props:{value:this.model.h,min:0,max:360,fillHandleAlways:!0,readonly:!this.editable},on:{input:this.__onHueChange,dragend:function(t){return e.__onHueChange(t,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"q-mx-sm q-color-picker__alpha non-selectable"},[t(u["a"],{props:{value:this.model.a,min:0,max:100,fillHandleAlways:!0,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)},dragend:function(t){return e.__onNumericChange({target:{value:t}},"a",100,!0)}}})]):null])]},__getTuneTab:function(t){var e=this;return[t("div",{staticClass:"row items-center no-wrap"},[t("div",["R"]),t(u["a"],{props:{value:this.model.r,min:0,max:255,color:"red",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"r",255)}}}),t("input",{domProps:{value:this.model.r},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"r",255)},blur:function(t){return e.__onNumericChange(t,"r",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["G"]),t(u["a"],{props:{value:this.model.g,min:0,max:255,color:"green",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"g",255)}}}),t("input",{domProps:{value:this.model.g},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"g",255)},blur:function(t){return e.__onNumericChange(t,"g",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["B"]),t(u["a"],{props:{value:this.model.b,min:0,max:255,color:"blue",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"b",255)}}}),t("input",{domProps:{value:this.model.b},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"b",255)},blur:function(t){return e.__onNumericChange(t,"b",255,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"row items-center no-wrap"},[t("div",["A"]),t(u["a"],{props:{value:this.model.a,color:"grey",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)}}}),t("input",{domProps:{value:this.model.a},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"a",100)},blur:function(t){return e.__onNumericChange(t,"a",100,!0)}}})]):null]},__getPaletteTab:function(t){var e=this;return[t("div",{staticClass:"row items-center",class:this.editable?"cursor-pointer":null},E.map(function(n){return t("div",{staticClass:"q-color-picker__cube col-auto",style:{backgroundColor:n},on:e.editable?{click:function(){e.__onPalettePick(n)}}:null})}))]},__onSpectrumChange:function(t,e,n){var i=this.$refs.spectrum;if(void 0!==i){var r=i.clientWidth,o=i.clientHeight,s=i.getBoundingClientRect(),a=Math.min(r,Math.max(0,t-s.left));this.$q.lang.rtl&&(a=r-a);var l=Math.min(o,Math.max(0,e-s.top)),u=Math.round(100*a/r),h=Math.round(100*Math.max(0,Math.min(1,-l/o+1))),d=Object(c["b"])({h:this.model.h,s:u,v:h,a:!0===this.hasAlpha?this.model.a:void 0});this.model.s=u,this.model.v=h,this.__update(d,n)}},__onHueChange:function(t,e){t=Math.round(t);var n=Object(c["b"])({h:t,s:this.model.s,v:this.model.v,a:!0===this.hasAlpha?this.model.a:void 0});this.model.h=t,this.__update(n,e)},__onNumericChange:function(t,e,n,i){if(/^[0-9]+$/.test(t.target.value)){var r=Math.floor(Number(t.target.value));if(r<0||r>n)i&&this.$forceUpdate();else{var o={r:"r"===e?r:this.model.r,g:"g"===e?r:this.model.g,b:"b"===e?r:this.model.b,a:!0===this.hasAlpha?"a"===e?r:this.model.a:void 0};if("a"!==e){var s=Object(c["e"])(o);this.model.h=s.h,this.model.s=s.s,this.model.v=s.v}if(this.__update(o,i),!0!==i&&void 0!==t.target.selectionEnd){var a=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(a,a)})}}}else i&&this.$forceUpdate()},__onEditorChange:function(t,e){var n,i=t.target.value;if("hex"===this.topView){if(i.length!==(!0===this.hasAlpha?9:7)||!/^#[0-9A-Fa-f]+$/.test(i))return!0;n=Object(c["a"])(i)}else{var r;if(!i.endsWith(")"))return!0;if(!0!==this.hasAlpha&&i.startsWith("rgb(")){if(r=i.substring(4,i.length-1).split(",").map(function(t){return parseInt(t,10)}),3!==r.length||!/^rgb\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3}\)$/.test(i))return!0}else{if(!0!==this.hasAlpha||!i.startsWith("rgba("))return!0;if(r=i.substring(5,i.length-1).split(","),4!==r.length||!/^rgba\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/.test(i))return!0;for(var o=0;o<3;o++){var s=parseInt(r[o],10);if(s<0||s>255)return!0;r[o]=s}var a=parseFloat(r[3]);if(a<0||a>1)return!0;r[3]=a}if(r[0]<0||r[0]>255||r[1]<0||r[1]>255||r[2]<0||r[2]>255||!0===this.hasAlpha&&(r[3]<0||r[3]>1))return!0;n={r:r[0],g:r[1],b:r[2],a:!0===this.hasAlpha?100*r[3]:void 0}}var l=Object(c["e"])(n);if(this.model.h=l.h,this.model.s=l.s,this.model.v=l.v,this.__update(n,e),!0!==e){var u=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(u,u)})}},__onPalettePick:function(t){var e=t.substring(4,t.length-1).split(","),n={r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:this.model.a},i=Object(c["e"])(n);this.model.h=i.h,this.model.s=i.s,this.model.v=i.v,this.__update(n,!0)},__update:function(t,e){this.model.hex=Object(c["d"])(t),this.model.rgb=Object(c["f"])(t),this.model.r=t.r,this.model.g=t.g,this.model.b=t.b,this.model.a=t.a;var n=this.model[!0===this.isOutputHex?"hex":"rgb"];this.$emit("input",n),e&&n!==this.value&&this.$emit("change",n)},__updateErrorIcon:function(t){this.$refs.errorIcon.$el.style.opacity=t?1:0},__parseModel:function(t){var e=void 0!==this.forceAlpha?this.forceAlpha:"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1;if(null===t||void 0===t||""===t||!0!==s["a"].anyColor(t))return{h:0,s:0,v:0,r:0,g:0,b:0,a:!0===e?100:void 0,hex:void 0,rgb:void 0};var n=Object(c["h"])(t);return!0===e&&void 0===n.a&&(n.a=100),n.hex=Object(c["d"])(n),n.rgb=Object(c["f"])(n),Object.assign(n,Object(c["e"])(n))},__spectrumPan:function(t){t.isFinal?this.__onSpectrumChange(t.position.left,t.position.top,!0):this.__spectrumChange(t)},__spectrumChange:function(t){this.__onSpectrumChange(t.position.left,t.position.top)},__spectrumClick:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset,!0)}}})},b6b4:function(t,e){function n(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}t.exports=n},b6d5:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("0909"),s=n("0967");e["a"]=i["a"].extend({name:"QResizeObserver",mixins:[o["a"]],props:{debounce:{type:[String,Number],default:100}},data:function(){return this.hasObserver?{}:{url:this.$q.platform.is.ie?null:"about:blank"}},methods:{trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__onResize():this.timer||(this.timer=setTimeout(this.__onResize,this.debounce))},__onResize:function(){if(this.timer=null,this.$el&&this.$el.parentNode){var t=this.$el.parentNode,e={width:t.offsetWidth,height:t.offsetHeight};e.width===this.size.width&&e.height===this.size.height||(this.size=e,this.$emit("resize",this.size))}}},render:function(t){var e=this;if(!1!==this.canRender&&!0!==this.hasObserver)return t("object",{style:this.style,attrs:{tabindex:-1,type:"text/html",data:this.url,"aria-hidden":!0},on:{load:function(){e.$el.contentDocument.defaultView.addEventListener("resize",e.trigger,r["d"].passive),e.trigger(!0)}}})},beforeCreate:function(){this.size={width:-1,height:-1},!0!==s["c"]&&(this.hasObserver="undefined"!==typeof ResizeObserver,!0!==this.hasObserver&&(this.style="".concat(this.$q.platform.is.ie?"visibility:hidden;":"","display:block;position:absolute;top:0;left:0;right:0;bottom:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1;")))},mounted:function(){if(!0===this.hasObserver)return this.observer=new ResizeObserver(this.trigger),void this.observer.observe(this.$el.parentNode);this.trigger(!0),this.$q.platform.is.ie&&(this.url="about:blank")},beforeDestroy:function(){clearTimeout(this.timer),!0!==this.hasObserver?this.$el.contentDocument&&this.$el.contentDocument.defaultView.removeEventListener("resize",this.trigger,r["d"].passive):this.$el.parentNode&&this.observer.unobserve(this.$el.parentNode)}})},baca:function(t,e,n){"use strict";function i(t){switch(t){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}t.exports=function(t,e){var n=t.pos;while(n=0;e--)n=t[e],"text"!==n.type||i||(n.content=n.content.replace(o,a)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function l(t){var e,n,r=0;for(e=t.length-1;e>=0;e--)n=t[e],"text"!==n.type||r||i.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---([^-]|$)/gm,"$1—$2").replace(/(^|\s)--(\s|$)/gm,"$1–$2").replace(/(^|[^-\s])--([^-\s]|$)/gm,"$1–$2")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&(r.test(t.tokens[e].content)&&c(t.tokens[e].children),i.test(t.tokens[e].content)&&l(t.tokens[e].children))}},bc78:function(t,e,n){"use strict";n.d(e,"d",function(){return i}),n.d(e,"f",function(){return r}),n.d(e,"h",function(){return o}),n.d(e,"a",function(){return s}),n.d(e,"b",function(){return a}),n.d(e,"e",function(){return c}),n.d(e,"c",function(){return d}),n.d(e,"g",function(){return f});n("28a5"),n("f559"),n("a481"),n("6b54");function i(t){var e=t.r,n=t.g,i=t.b,r=t.a,o=void 0!==r;if(e=Math.round(e),n=Math.round(n),i=Math.round(i),e>255||n>255||i>255||o&&r>100)throw new TypeError("Expected 3 numbers below 256 (and optionally one below 100)");return r=o?(256|Math.round(255*r/100)).toString(16).slice(1):"","#"+(i|n<<8|e<<16|1<<24).toString(16).slice(1)+r}function r(t){var e=t.r,n=t.g,i=t.b,r=t.a;return"rgb".concat(void 0!==r?"a":"","(").concat(e,",").concat(n,",").concat(i).concat(void 0!==r?","+r/100:"",")")}function o(t){if("string"!==typeof t)throw new TypeError("Expected a string");if(t=t.replace(/ /g,""),t.startsWith("#"))return s(t);var e=t.substring(t.indexOf("(")+1,t.length-1).split(",");return{r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:void 0!==e[3]?100*parseFloat(e[3]):void 0}}function s(t){if("string"!==typeof t)throw new TypeError("Expected a string");t=t.replace(/^#/,""),3===t.length?t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]:4===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]+t[3]+t[3]);var e=parseInt(t,16);return t.length>6?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:Math.round((255&e)/2.55)}:{r:e>>16,g:e>>8&255,b:255&e}}function a(t){var e,n,i,r,o,s,a,c,l=t.h,u=t.s,h=t.v,d=t.a;switch(u/=100,h/=100,l/=360,r=Math.floor(6*l),o=6*l-r,s=h*(1-u),a=h*(1-o*u),c=h*(1-(1-o)*u),r%6){case 0:e=h,n=c,i=s;break;case 1:e=a,n=h,i=s;break;case 2:e=s,n=h,i=c;break;case 3:e=s,n=a,i=h;break;case 4:e=c,n=s,i=h;break;case 5:e=h,n=s,i=a;break}return{r:Math.round(255*e),g:Math.round(255*n),b:Math.round(255*i),a:d}}function c(t){var e,n=t.r,i=t.g,r=t.b,o=t.a,s=Math.max(n,i,r),a=Math.min(n,i,r),c=s-a,l=0===s?0:c/s,u=s/255;switch(s){case a:e=0;break;case n:e=i-r+c*(i2&&void 0!==arguments[2]?arguments[2]:document.body;if("string"!==typeof t)throw new TypeError("Expected a string as color");if("string"!==typeof e)throw new TypeError("Expected a string as value");if(!(n instanceof Element))throw new TypeError("Expected a DOM element");switch(n.style.setProperty("--q-color-".concat(t),e),t){case"negative":case"warning":n.style.setProperty("--q-color-".concat(t,"-l"),h(e,46));break;case"light":n.style.setProperty("--q-color-".concat(t,"-d"),h(e,-10))}}},bcaa:function(t,e,n){var i=n("cb7c"),r=n("d3f4"),o=n("a5b8");t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t),s=n.resolve;return s(e),n.promise}},bd4c:function(t,e,n){"use strict";n.d(e,"b",function(){return v});n("4917"),n("a481"),n("28a5");var i=n("68bf"),r=n.n(i),o=(n("cadf"),n("456d"),n("ac6a"),n("5ff7")),s=n("7937"),a=n("ec5d"),c=864e5,l=36e5,u=6e4,h=/\[((?:[^\]\\]|\\]|\\)*)\]|d{1,4}|M{1,4}|m{1,2}|w{1,2}|Qo|Do|D{1,4}|YY(?:YY)?|H{1,2}|h{1,2}|s{1,2}|S{1,3}|Z{1,2}|a{1,2}|[AQExX]/g;function d(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=t>0?"-":"+",i=Math.abs(t),r=Math.floor(i/60),o=i%60;return n+Object(s["d"])(r)+e+Object(s["d"])(o)}function f(t,e){var n=new Date(t.getFullYear(),e,0,0,0,0,0),i=n.getDate();t.setMonth(e-1,Math.min(i,t.getDate()))}function p(t,e,n){var i=new Date(t),r=n?1:-1;return Object.keys(e).forEach(function(t){if("month"!==t){var n="year"===t?"FullYear":Object(s["b"])("days"===t?"date":t);i["set".concat(n)](i["get".concat(n)]()+r*e[t])}else f(i,i.getMonth()+1+r*e.month)}),i}function m(t){if("number"===typeof t)return!0;var e=Date.parse(t);return!1===isNaN(e)}function v(t){var e=t,n=e.split("/").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),i=r()(n,3),o=i[0],s=i[1],a=i[2];return(a<1||a>new Date(o,s,0).getDate())&&(a=null),(s>12||0===s)&&(s=s%12||12),null!==o&&null!==s&&null!==a||(e=null,null!==o&&null===s&&(s=1)),{year:o,month:s,day:a,value:e}}function g(t){var e=t.split(":").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),n=r()(e,3),i=n[0],o=n[1],s=n[2];return{hour:null===i?null:i%24,minute:null===o?null:o%60,second:null===s?null:s%60}}function _(t,e){return C(new Date,t,e)}function b(t){var e=new Date(t).getDay();return 0===e?7:e}function y(t){var e=new Date(t.getFullYear(),t.getMonth(),t.getDate());e.setDate(e.getDate()-(e.getDay()+6)%7+3);var n=new Date(e.getFullYear(),0,4);n.setDate(n.getDate()-(n.getDay()+6)%7+3);var i=e.getTimezoneOffset()-n.getTimezoneOffset();e.setHours(e.getHours()-i);var r=(e-n)/(7*c);return 1+Math.floor(r)}function w(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=new Date(e).getTime(),o=new Date(n).getTime(),s=new Date(t).getTime();return i.inclusiveFrom&&r--,i.inclusiveTo&&o++,s>r&&s1?n-1:0),r=1;r1?n-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:"days",i=new Date(t),r=new Date(e);switch(n){case"years":return i.getFullYear()-r.getFullYear();case"months":return 12*(i.getFullYear()-r.getFullYear())+i.getMonth()-r.getMonth();case"days":return T(S(i,"day"),S(r,"day"),c);case"hours":return T(S(i,"hour"),S(r,"hour"),l);case"minutes":return T(S(i,"minute"),S(r,"minute"),u);case"seconds":return T(S(i,"second"),S(r,"second"),1e3)}}function O(t){return $(t,S(t,"year"),"days")+1}function D(t){return Object(o["a"])(t)?"date":"number"===typeof t?"number":"string"}function L(t,e,n){if(t||0===t)switch(e){case"date":return t;case"number":return t.getTime();default:return P(t,n)}}function M(t,e,n){var i=new Date(t);if(e){var r=new Date(e);if(io)return o}return i}function I(t,e,n){var i=new Date(t),r=new Date(e);if(void 0===n)return i.getTime()===r.getTime();switch(n){case"second":if(i.getSeconds()!==r.getSeconds())return!1;case"minute":if(i.getMinutes()!==r.getMinutes())return!1;case"hour":if(i.getHours()!==r.getHours())return!1;case"day":if(i.getDate()!==r.getDate())return!1;case"month":if(i.getMonth()!==r.getMonth())return!1;case"year":if(i.getFullYear()!==r.getFullYear())return!1;break;default:throw new Error("date isSameDate unknown unit ".concat(n))}return!0}function j(t){return new Date(t.getFullYear(),t.getMonth()+1,0).getDate()}function B(t){if(t>=11&&t<=13)return"".concat(t,"th");switch(t%10){case 1:return"".concat(t,"st");case 2:return"".concat(t,"nd");case 3:return"".concat(t,"rd")}return"".concat(t,"th")}var F={YY:function(t){return Object(s["d"])(t.getFullYear(),4).substr(2)},YYYY:function(t){return Object(s["d"])(t.getFullYear(),4)},M:function(t){return t.getMonth()+1},MM:function(t){return Object(s["d"])(t.getMonth()+1)},MMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNamesShort||a["a"].props.date.monthsShort)[t.getMonth()]},MMMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNames||a["a"].props.date.months)[t.getMonth()]},Q:function(t){return Math.ceil((t.getMonth()+1)/3)},Qo:function(t){return B(this.Q(t))},D:function(t){return t.getDate()},Do:function(t){return B(t.getDate())},DD:function(t){return Object(s["d"])(t.getDate())},DDD:function(t){return O(t)},DDDD:function(t){return Object(s["d"])(O(t),3)},d:function(t){return t.getDay()},dd:function(t){return this.dddd(t).slice(0,2)},ddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNamesShort||a["a"].props.date.daysShort)[t.getDay()]},dddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNames||a["a"].props.date.days)[t.getDay()]},E:function(t){return t.getDay()||7},w:function(t){return y(t)},ww:function(t){return Object(s["d"])(y(t))},H:function(t){return t.getHours()},HH:function(t){return Object(s["d"])(t.getHours())},h:function(t){var e=t.getHours();return 0===e?12:e>12?e%12:e},hh:function(t){return Object(s["d"])(this.h(t))},m:function(t){return t.getMinutes()},mm:function(t){return Object(s["d"])(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return Object(s["d"])(t.getSeconds())},S:function(t){return Math.floor(t.getMilliseconds()/100)},SS:function(t){return Object(s["d"])(Math.floor(t.getMilliseconds()/10))},SSS:function(t){return Object(s["d"])(t.getMilliseconds(),3)},A:function(t){return this.H(t)<12?"AM":"PM"},a:function(t){return this.H(t)<12?"am":"pm"},aa:function(t){return this.H(t)<12?"a.m.":"p.m."},Z:function(t){return d(t.getTimezoneOffset(),":")},ZZ:function(t){return d(t.getTimezoneOffset())},X:function(t){return Math.floor(t.getTime()/1e3)},x:function(t){return t.getTime()}};function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"YYYY-MM-DDTHH:mm:ss.SSSZ",n=arguments.length>2?arguments[2]:void 0;if((0===t||t)&&t!==1/0&&t!==-1/0){var i=new Date(t);if(!isNaN(i))return e.replace(h,function(t,e){return t in F?F[t](i,n):void 0===e?t:e.split("\\]").join("]")})}}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return t.match(h)}function z(t){return Object(o["a"])(t)?new Date(t.getTime()):t}e["a"]={isValid:m,splitDate:v,splitTime:g,buildDate:_,getDayOfWeek:b,getWeekOfYear:y,isBetweenDates:w,addToDate:k,subtractFromDate:x,adjustDate:C,startOfDate:S,endOfDate:A,getMaxDate:E,getMinDate:q,getDateDiff:$,getDayOfYear:O,inferDateFormat:D,convertDateToFormat:L,getDateBetween:M,isSameDate:I,daysInMonth:j,formatter:F,formatDate:P,matchFormat:R,clone:z}},bd68:function(t,e,n){"use strict";t.exports=n("f0f2")},be03:function(t,e){var n=!0,i=!1,r=!1;function o(t,e,n){var i=t.attrIndex(e),r=[e,n];i<0?t.attrPush(r):t.attrs[i]=r}function s(t,e){for(var n=t[e].level-1,i=e-1;i>=0;i--)if(t[i].level===n)return i;return-1}function a(t,e){return f(t[e])&&p(t[e-1])&&m(t[e-2])&&v(t[e])}function c(t,e){if(t.children.unshift(l(t,e)),t.children[1].content=t.children[1].content.slice(3),t.content=t.content.slice(3),i)if(r){t.children.pop();var n="task-item-"+Math.ceil(1e7*Math.random()-1e3);t.children[0].content=t.children[0].content.slice(0,-1)+' id="'+n+'">',t.children.push(d(t.content,n,e))}else t.children.unshift(u(e)),t.children.push(h(e))}function l(t,e){var i=new e("html_inline","",0),r=n?' disabled="" ':"";return 0===t.content.indexOf("[ ] ")?i.content='
    \n':'
    \n')+'
    \n
      \n'}function a(){return"
    \n
    \n"}function c(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),'
  • '}function l(){return"
  • \n"}function u(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),' ↩︎'}t.exports=function(t){var e=t.helpers.parseLinkLabel,n=t.utils.isSpace;function h(t,e,i,r){var o,s,a,c,l,u,h,d,f,p,m,v=t.bMarks[e]+t.tShift[e],g=t.eMarks[e];if(v+4>g)return!1;if(91!==t.src.charCodeAt(v))return!1;if(94!==t.src.charCodeAt(v+1))return!1;for(l=v+2;l=g||58!==t.src.charCodeAt(++l))return!1;if(r)return!0;l++,t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.refs||(t.env.footnotes.refs={}),u=t.src.slice(v+2,l-2),t.env.footnotes.refs[":"+u]=-1,h=new t.Token("footnote_reference_open","",1),h.meta={label:u},h.level=t.level++,t.tokens.push(h),o=t.bMarks[e],s=t.tShift[e],a=t.sCount[e],c=t.parentType,m=l,d=f=t.sCount[e]+l-(t.bMarks[e]+t.tShift[e]);while(l=c)&&(94===t.src.charCodeAt(l)&&(91===t.src.charCodeAt(l+1)&&(i=l+2,r=e(t,l+1),!(r<0)&&(n||(t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.list||(t.env.footnotes.list=[]),o=t.env.footnotes.list.length,t.md.inline.parse(t.src.slice(i,r),t.md,t.env,a=[]),s=t.push("footnote_ref","",0),s.meta={id:o},t.env.footnotes.list[o]={tokens:a}),t.pos=r+1,t.posMax=c,!0))))}function f(t,e){var n,i,r,o,s,a=t.posMax,c=t.pos;if(c+3>a)return!1;if(!t.env.footnotes||!t.env.footnotes.refs)return!1;if(91!==t.src.charCodeAt(c))return!1;if(94!==t.src.charCodeAt(c+1))return!1;for(i=c+2;i=a)&&(i++,n=t.src.slice(c+2,i-1),"undefined"!==typeof t.env.footnotes.refs[":"+n]&&(e||(t.env.footnotes.list||(t.env.footnotes.list=[]),t.env.footnotes.refs[":"+n]<0?(r=t.env.footnotes.list.length,t.env.footnotes.list[r]={label:n,count:0},t.env.footnotes.refs[":"+n]=r):r=t.env.footnotes.refs[":"+n],o=t.env.footnotes.list[r].count,t.env.footnotes.list[r].count++,s=t.push("footnote_ref","",0),s.meta={id:r,subId:o,label:n}),t.pos=i,t.posMax=a,!0)))}function p(t){var e,n,i,r,o,s,a,c,l,u,h=!1,d={};if(t.env.footnotes&&(t.tokens=t.tokens.filter(function(t){return"footnote_reference_open"===t.type?(h=!0,l=[],u=t.meta.label,!1):"footnote_reference_close"===t.type?(h=!1,d[":"+u]=l,!1):(h&&l.push(t),!h)}),t.env.footnotes.list)){for(s=t.env.footnotes.list,a=new t.Token("footnote_block_open","",1),t.tokens.push(a),e=0,n=s.length;e0?s[e].count:1,i=0;i=4)return!1;if(62!==t.src.charCodeAt(A++))return!1;if(r)return!0;c=f=t.sCount[e]+A-(t.bMarks[e]+t.tShift[e]),32===t.src.charCodeAt(A)?(A++,c++,f++,o=!1,y=!0):9===t.src.charCodeAt(A)?(y=!0,(t.bsCount[e]+f)%4===3?(A++,c++,f++,o=!1):o=!0):y=!1,p=[t.bMarks[e]],t.bMarks[e]=A;while(A=E,_=[t.sCount[e]],t.sCount[e]=f-c,b=[t.tShift[e]],t.tShift[e]=A-t.bMarks[e],k=t.md.block.ruler.getRules("blockquote"),g=t.parentType,t.parentType="blockquote",C=!1,d=e+1;d=E)break;if(62!==t.src.charCodeAt(A++)||C){if(u)break;for(w=!1,a=0,l=k.length;a=E,m.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(y?1:0),_.push(t.sCount[d]),t.sCount[d]=f-c,b.push(t.tShift[d]),t.tShift[d]=A-t.bMarks[d]}}for(v=t.blkIndent,t.blkIndent=0,x=t.push("blockquote_open","blockquote",1),x.markup=">",x.map=h=[e,0],t.md.block.tokenize(t,e,d),x=t.push("blockquote_close","blockquote",-1),x.markup=">",t.lineMax=S,t.parentType=g,h[1]=t.line,a=0;a2&&void 0!==arguments[2]?arguments[2]:{};return this.setTextColor(t,this.setBackgroundColor(e,n))},setBackgroundColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{"background-color":"".concat(t),"border-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"bg-"+n,!0))}return e},setTextColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{color:"".concat(t),"caret-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"text-"+n,!0))}return e}}}),h=(n("7514"),n("20d6"),n("c5f6"),{scroller:{value:{type:String,required:!0},items:{type:Array,required:!0},height:{type:[Number,String],required:!0},dense:Boolean,disabledItems:Array,disable:Boolean},base:{value:[String,Array],borderColor:{type:String,default:"#ccc"},barColor:{type:String,default:"#ccc"},color:{type:String,default:"white"},backgroundColor:{type:String,default:"primary"},innerColor:{type:String,default:"primary"},innerBackgroundColor:{type:String,default:"white"},dense:Boolean,disable:Boolean,roundedBorders:Boolean,noBorder:Boolean,noHeader:Boolean,noFooter:Boolean,noShadow:Boolean},locale:{locale:{type:String,default:"en-us"}},date:{minDate:String,maxDate:String,dates:Array,disabledDates:Array,disabledYears:{type:Array,default:function(){return[]}},disabledMonths:{type:Array,default:function(){return[]}},disabledDays:{type:Array,default:function(){return[]}},shortYearLabel:Boolean,shortMonthLabel:Boolean,shortDayLabel:Boolean,showMonthLabel:Boolean,showWeekdayLabel:Boolean,noDays:Boolean,noMonths:Boolean,noYears:Boolean},time:{minuteInterval:{type:[String,Number],default:1},hourInterval:{type:[String,Number],default:1},shortTimeLabel:Boolean,disabledHours:{type:Array,default:function(){return[]}},disabledMinutes:{type:Array,default:function(){return[]}},noMinutes:Boolean,noHours:Boolean,hours:Array,minutes:Array,minTime:{type:String,default:"00:00"},maxTime:{type:String,default:"24:00"}},timeRange:{displaySeparator:{type:String,default:" - "},startMinuteInterval:{type:[String,Number],default:1},startHourInterval:{type:[String,Number],default:1},startShortTimeLabel:Boolean,startDisabledHours:{type:Array,default:function(){return[]}},startDisabledMinutes:{type:Array,default:function(){return[]}},startNoMinutes:Boolean,startNoHours:Boolean,startHours:Array,startMinutes:Array,startMinTime:{type:String,default:"00:00"},startMaxTime:{type:String,default:"24:00"},endMinuteInterval:{type:[String,Number],default:1},endHourInterval:{type:[String,Number],default:1},endShortTimeLabel:Boolean,endDisabledHours:{type:Array,default:function(){return[]}},endDisabledMinutes:{type:Array,default:function(){return[]}},endNoMinutes:Boolean,endNoHours:Boolean,endHours:Array,endMinutes:Array,endMinTime:{type:String,default:"00:00"},endMaxTime:{type:String,default:"24:00"}},dateRange:{displaySeparator:{type:String,default:" - "},startMinDate:String,startMaxDate:String,startDates:Array,startDisabledDates:Array,startDisabledYears:{type:Array,default:function(){return[]}},startDisabledMonths:{type:Array,default:function(){return[]}},startDisabledDays:{type:Array,default:function(){return[]}},startShortYearLabel:Boolean,startShortMonthLabel:Boolean,startShortDayLabel:Boolean,startShowMonthLabel:Boolean,startShowWeekdayLabel:Boolean,startNoDays:Boolean,startNoMonth:Boolean,startNoYears:Boolean,endMinDate:String,endMaxDate:String,endDates:Array,endDisabledDates:Array,endDisabledYears:{type:Array,default:function(){return[]}},endDisabledMonths:{type:Array,default:function(){return[]}},endDisabledDays:{type:Array,default:function(){return[]}},endShortYearLabel:Boolean,endShortMonthLabel:Boolean,endShortDayLabel:Boolean,endShowMonthLabel:Boolean,endShowWeekdayLabel:Boolean,endNoDays:Boolean,endNoMonth:Boolean,endNoYears:Boolean}}),d=n("1c16"),f=n("9c40"),p=n("0831"),m=p["a"].getScrollPosition,v=p["a"].setScrollPosition,g=26,_=21,b=o["a"].extend({name:"scroller-base",directives:{Resize:s},mixins:[u],props:r()({},h.scroller),data:function(){return{noScrollEvent:!1,columnPadding:{},padding:0}},mounted:function(){this.adjustColumnPadding(),this.updatePosition()},computed:{},watch:{height:function(){this.adjustColumnPadding(!0)},value:function(){this.updatePosition()},items:function(){this.adjustColumnPadding(!0),this.updatePosition()},dense:function(){this.adjustColumnPadding(!0),this.updatePosition()}},methods:{move:function(t){if(!1===this.noScrollEvent&&(1===t||-1===t)&&!0!==this.disable&&this.canScroll(t)){var e=".q-scroller__item--selected".concat(this.dense?"--dense":""),n=this.$el.querySelector(e);n&&n.classList.remove(e);var i=n?n.clientHeight:this.dense?_:g,r=m(this.$el)+i*t;return v(this.$el,r,50),!0}return!1},onResize:function(){this.adjustColumnPadding(!0)},canScroll:function(t){return!!(this.items&&this.items.length>1)&&(1===t?this.value!==this.items[this.items.length-1].value:this.value!==this.items[0].value)},adjustColumnPadding:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this,n=function(t){e.columnPadding={height:"".concat(t,"px")}},i=function(){var t=e.dense?_:g,i=e.height||e.$el.clientHeight;e.padding=i/2-t/2,!isNaN(e.padding)&&e.padding>0&&n(e.padding)};t?i():this.$nextTick(function(){i()})},wheelEvent:function(t){this.move(t.wheelDeltaY<0?1:-1)&&this.$emit(this.value),t.preventDefault()},getItemIndex:function(t){return this.items.findIndex(function(e){return e.value===t})},getItemIndexFromEvent:function(t){var e=t.target.scrollTop,n=this.dense?_:g;return Math.floor(e/n)},scrollEvent:Object(d["a"])(function(t){if(!this.noScrollEvent){var e=this.getItemIndexFromEvent(t),n=this.items[e].value;if(this.isDisabled(n))return;this.$emit("input",n)}},250),clickEvent:function(t){!0!==this.disable&&!1===t.disabled&&this.$emit("input",t.value)},isDisabled:function(t){return!0===this.disable||this.items.find(function(e){return e.value===t}).disabled},updatePosition:function(){var t=this,e=this;this.noScrollEvent=!0,setTimeout(function(){var n=".q-scroller__item--selected".concat(e.dense?"--dense":""),i=e.$el.querySelector(n);i&&setTimeout(function(){var n=i.offsetTop-t.padding;v(e.$el,n,150),e.noScrollEvent=!1},150)},10)},__renderItem:function(t,e){var n=this;return t(f["a"],{staticClass:"q-scroller__item".concat(this.dense?"--dense":""," justify-center align-center"),class:{"q-scroller__item--selected":!this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled":!this.dense&&(!0===this.disable||!0===e.disabled),"q-scroller__item--selected--dense":this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled--dense":this.dense&&(!0===this.disable||!0===e.disabled)},key:e.item,props:{flat:!0,dense:!0,"no-wrap":!0,label:void 0!==e.display?e.display:void 0!==e.value?e.value:void 0,disable:!0===this.disable||!0===e.disabled,icon:void 0!==e.icon?e.icon:void 0,"icon-right":void 0!==e.iconRight?e.iconRight:void 0,"no-caps":void 0!==e.noCaps?e.noCaps:void 0,align:void 0!==e.align?e.align:void 0},on:{click:function(){return n.clickEvent(e)}}})},__renderPadding:function(t){return t("div",{staticClass:"q-scroller__padding",style:this.columnPadding})}},render:function(t){var e=this;return t("div",this.setBothColors(this.color,this.backgroundColor,{staticClass:"q-scroller-base text-center col scroll no-scrollbars",style:{height:"".concat(this.height,"px")},directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],on:{mousewheel:function(t){return e.wheelEvent(t)},scroll:function(t){return e.scrollEvent(t)}}}),[this.__renderPadding(t),this.items.map(function(n){return e.__renderItem(t,n)}),this.__renderPadding(t)])}}),y=o["a"].extend({name:"q-scroller",directives:{Resize:s},mixins:[u],props:r()({},h.base,{items:{type:Array,required:!0}}),data:function(){return{headerFooterHeight:100,bodyHeight:100}},mounted:function(){this.adjustBodyHeight()},computed:{},watch:{noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{canMovePrevious:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(-1)},canMoveNext:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(1)},previous:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(-1)},next:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(1)},getItemIndex:function(t){return this.$refs.scroller?this.$refs.scroller.getItemIndex(t):-1},getCurrentIndex:function(){return this.getItemIndex(this.value)},onResize:function(){this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.value):[this.value])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])},__renderScroller:function(t){var e=this;return t(b,{ref:"scroller",props:{value:this.value,items:this.items,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){return e.$emit("input",t)}}})},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),style:{height:"".concat(this.bodyHeight,"px")}}),[this.__renderScroller(t)])}},render:function(t){return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),[this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)])}}),w=(n("ac6a"),n("6762"),n("2fdb"),n("8e72")),k=n.n(w),x=o["a"].extend({name:"time-base",props:r()({},h.base,h.locale,{height:[Number,String],hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),C=n("b6d5"),S=(n("ff57"),n("bd4c")),A=/^(\d{4})-(\d{1,2})(-(\d{1,2}))?([^\d]+(\d{1,2}))?(:(\d{1,2}))?(:(\d{1,2}))?$/,E=[0,31,28,31,30,31,30,31,31,30,31,30,31],q=[0,31,29,31,30,31,30,31,31,30,31,30,31],T=31,$={date:"",time:"",year:0,month:0,day:0,weekday:0,hour:0,minute:0,doy:0,workweek:0,hasDay:!1,hasTime:!1,past:!1,current:!1,future:!1};function O(t,e){return JSON.stringify(t)===JSON.stringify(e)}function D(t){var e=A.exec(t);return e?{date:t,time:"",year:parseInt(e[1]),month:parseInt(e[2]),day:parseInt(e[4])||1,hour:parseInt(e[6])||0,minute:parseInt(e[8])||0,weekday:0,doy:0,workweek:0,hasDay:!!e[4],hasTime:!(!e[6]||!e[8]),past:!1,current:!1,future:!1}:null}function L(t){return M({date:"",time:"",year:t.getFullYear(),month:t.getMonth()+1,day:t.getDate(),weekday:t.getDay(),hour:t.getHours(),minute:t.getMinutes(),doy:0,workweek:0,hasDay:!0,hasTime:!0,past:!1,current:!0,future:!1})}function M(t){return t.time=H(t),t.date=N(t),t.weekday=B(t),t.doy=I(t),t.workweek=j(t),t}function I(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getDayOfYear(e)}}function j(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getWeekOfYear(e)}}function B(t){if(t.hasDay){var e=new Date(t.date+" 00:00");return S["a"].getDayOfWeek(e)}return t.weekday}function F(t){return t%4===0&&t%100!==0||t%400===0}function P(t,e){return F(t)?q[e]:E[e]}function R(t){return r()({},t)}function z(t,e){var n=String(t);while(n.length0&&(e/=parseInt(this.minuteInterval)),k()(Array(e)).map(function(t,e){return e}).map(function(e){return e*=t.minuteInterval?parseInt(t.minuteInterval):1,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledMinutesList.includes(e)}})},hoursList:function(){var t=this,e=!0===this.hour24Format?24:12;return k()(Array(e)).map(function(t,e){return e}).map(function(e){return e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledHoursList.includes(e)}})},displayTime:function(){return!1===this.timestamp.hasTime?"":this.noMinutes?z(this.hour,2)+"h":this.noHours?":"+z(this.minute,2):this.timeFormatter(this.timestamp,this.shortTimeLabel)},timeFormatter:function(){var t={timeZone:"UTC",hour12:!this.hour24Format,hour:"2-digit",minute:"2-digit"},e={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric",minute:"2-digit"},n={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric"};return V(this.locale,function(i,r){return r?0===i.minute?n:e:t})}},watch:{value:function(){this.splitTime()},ampmIndex:function(){var t=R(this.timestamp);this.ampm=this.amPmLabels[this.ampmIndex],this.timestamp.hour=parseInt(this.hour),1===this.ampmIndex&&!1===this.hour24Format&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},hour:function(){var t=R(this.timestamp);!0===this.hour24Format?this.timestamp.hour=parseInt(this.hour):0===this.ampmIndex?this.timestamp.hour=parseInt(this.hour):1===this.ampmIndex&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},minute:function(){var t=R(this.timestamp);this.timestamp.minute=parseInt(this.minute),O(t,this.timestamp)||this.emitValue()},ampm:function(){var t=this;this.ampmIndex=this.amPmLabels.findIndex(function(e){return e===t.ampm})},hour24Format:function(){var t=R(this.timestamp);!0===this.hour24Format?this.hour=z(this.timestamp.hour,2):this.timestamp.hour>12?(this.hour=z(this.timestamp.hour-12,2),this.ampmIndex=1):(this.hour=z(this.timestamp.hour,2),this.ampmIndex=0),O(t,this.timestamp)||this.emitValue()},disabledMinutes:function(){this.handleDisabledLists()},disabledHours:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[z(this.timestamp.hour,2),z(this.timestamp.minute,2)].join(":"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.height||t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledMinutesList=[],this.disabledHoursList=[],this.disabledMinutes.forEach(function(e){return t.disabledMinutesList.push(z(parseInt(e),2))}),this.disabledHours.forEach(function(e){return t.disabledHoursList.push(z(parseInt(e),2))})},splitTime:function(){var t=L(new Date),e=N(t)+" "+(this.value?this.value:H(t));this.timestamp=D(e),this.timestamp.minute=Math.floor(this.timestamp.minute/this.minuteInterval)*this.minuteInterval,this.ampmIndex=this.timestamp.hour>12&&this.timestamp.minute>0?1:0,this.fromTimestamp()},fromTimestamp:function(){this.minute=z(this.timestamp.minute,2),this.hour=z(this.timestamp.hour,2),!1===this.hour24Format&&1===this.ampmIndex&&(this.hour=z(this.timestamp.hour-12,2))},__renderHoursScroller:function(t){var e=this;return t(b,{props:{value:this.hour,items:this.hoursList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.hour=t}}})},__renderMinutesScroller:function(t){var e=this;return t(b,{props:{value:this.minute,items:this.minutesList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.minute=t}}})},__renderAmPmScroller:function(t){var e=this;return t(b,{props:{value:this.ampm,items:this.ampmList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.ampm=t}}})},__renderScrollers:function(t){return[!0!==this.noHours&&this.__renderHoursScroller(t),!0!==this.noMinutes&&this.__renderMinutesScroller(t),!1===this.hour24Format&&this.__renderAmPmScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayTime])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Y=(n("28a5"),x.extend({name:"q-time-range-scroller",mixins:[u],props:r()({},h.timeRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startTime:"",endTime:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QTimeRangeScroller - value (v-model) must to be an array of times"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QTimeRangeScroller - value (v-model) must contain 2 array elements"),this.splitTime(),this.adjustBodyHeight()},computed:{displayTime:function(){return void 0!==this.startTime&&void 0!==this.endTime?this.$refs.startTime&&this.$refs.endTime?this.$refs.startTime.displayTime+this.displaySeparator+this.$refs.endTime.displayTime:"".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime):""}},watch:{value:function(){this.splitTime()},startTime:function(){this.emitValue()},endTime:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startTime,this.endTime]):"string"===this.type&&this.$emit("input","".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitTime:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidTime(t)&&this.isValidTime(e))return this.startTime=t,this.endTime=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidTime(i)&&this.isValidTime(r))return this.startTime=i,this.endTime=r,void(this.type="string")}}console.error("QTimeRangeScroller: invalid time format - '".concat(this.value,"'"))},isValidTime:function(t){var e=t.split(":");if(2===e.length){var n=parseInt(e[0]),i=parseInt(e[1]);if(n>=0&&n<24&&i>=0&&i<60)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startTime.getTimestamp(),this.$refs.endTime.getTimestamp()]):[this.displayTime])},__renderStartTime:function(t){var e=this;return t(U,{ref:"startTime",staticClass:"col-6",props:{value:this.startTime,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.amPmLabels,minuteInterval:this.startMinuteInterval,hourInterval:this.startHourInterval,shortTimeLabel:this.startShortTimeLabel,disabledHours:this.startDisabledHours,disabledMinutes:this.startDisbaledMinutes,noMinutes:this.startNoMinutes,noHours:this.startNoHours,hours:this.startHours,minutes:this.startMinutes,minTime:this.startMinTime,maxTime:this.startMaxTime,height:this.bodyHeight},on:{input:function(t){e.startTime=t}}})},__renderEndTime:function(t){var e=this;return t(U,{ref:"endTime",staticClass:"col-6",props:{value:this.endTime,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.endMinuteInterval,hourInterval:this.endHourInterval,shortTimeLabel:this.endShortTimeLabel,disabledHours:this.endDisabledHours,disabledMinutes:this.endDisbaledMinutes,noMinutes:this.endNoMinutes,noHours:this.endNoHours,hours:this.endHours,minutes:this.endMinutes,minTime:this.endMinTime,maxTime:this.endMaxTime,height:this.bodyHeight},on:{input:function(t){e.endTime=t}}})},__renderScrollers:function(t){return[this.__renderStartTime(t),this.__renderEndTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-time-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}})),W=o["a"].extend({name:"datetime-base",props:r()({},h.base,h.locale,{hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),G=W.extend({name:"q-date-scroller",mixins:[u],props:r()({},h.date,{showVerticalBar:Boolean}),data:function(){return{headerFooterHeight:100,bodyHeight:100,year:"",month:"",day:"",timestamp:r()({},$),disabledYearsList:[],disabledMonthsList:[],disabledDaysList:[]}},mounted:function(){this.handleDisabledLists(),this.splitDate(),this.adjustBodyHeight()},computed:{daysList:function(){var t=this,e=P(parseInt(this.year),parseInt(this.month));return this.year&&this.month||(e=T),k()(Array(e)).map(function(t,e){return e}).map(function(e){return++e,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledDays.includes(e)}})},monthsList:function(){var t=this;return k()(Array(12)).map(function(t,e){return e}).map(function(e){++e;var n=!0===t.showMonthLabel?t.monthNameLabel(e):void 0;return e=e<10?"0"+e:""+e,{display:n,value:e,disabled:t.disabledMonths.includes(e)}})},yearsList:function(){var t=this,e=0,n=0;if(this.minDate&&this.maxDate)e=parseInt(e),n=parseInt(n);else{var i=new Date,r=i.getFullYear();e=r-5,n=r+5}var o=[],s=e;while(s<=n)o.push(z(s,4)),++s;return o.map(function(e){return{value:e,disabled:t.disabledYears.includes(e)}})},displayDate:function(){return console.log("displayDate"),this.year&&this.month&&this.day?!1===this.timestamp.hasDay?"":!0===this.noDays&&!0===this.noMonths?this.yearFormatter(this.timestamp,this.shortYearLabel):!0===this.noDays&&!0===this.noYears?this.monthFormatter(this.timestamp,this.shortMonthLabel):!0===this.noMonths&&!0===this.noYears?this.dayFormatter(this.timestamp,this.shortDayLabel):this.dateFormatter(this.timestamp):""},dateFormatter:function(){console.log("dateFormatter");var t=this.shortYearLabel?"2-digit":"numeric",e=this.shortMonthLabel?"numeric":"2-digit",n=this.shortDayLabel?"numeric":"2-digit",i={timeZone:"UTC",year:t,month:e,day:n};return V(this.locale,function(t,e){return i})},dayFormatter:function(){var t={timeZone:"UTC",day:"numeric"};return V(this.locale,function(e,n){return t})},weekdayFormatter:function(){var t={timeZone:"UTC",weekday:"long"},e={timeZone:"UTC",weekday:"short"};return V(this.locale,function(n,i){return i?e:t})},monthFormatter:function(){var t={timeZone:"UTC",month:"long"},e={timeZone:"UTC",month:"short"};return V(this.locale,function(n,i){return i?e:t})},yearFormatter:function(){var t={timeZone:"UTC",year:"long"},e={timeZone:"UTC",year:"short"};return V(this.locale,function(n,i){return i?e:t})},yearMonthDayFormatter:function(){var t={timeZone:"UTC",year:"numeric",month:"short",day:"numeric"};return V(this.locale,function(e,n){return t})}},watch:{value:function(){this.splitDate()},year:function(){this.toTimestamp()},month:function(t,e){if(this.day>28){var n=parseInt(t),i=parseInt(e),r=parseInt(this.year),o=P(r,i),s=P(r,n);o>s&&(this.day=z(s,2))}this.toTimestamp()},day:function(){this.toTimestamp()},disabledDays:function(){this.handleDisabledLists()},disabledMonths:function(){this.handleDisabledLists()},disabledYears:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[this.year,this.month,this.day].join("-"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledDaysList=[],this.disabledMonthsList=[],this.disabledYearsList=[],this.disabledDays.forEach(function(e){return t.disabledDaysList.push(z(parseInt(e),2))}),this.disabledMonths.forEach(function(e){return t.disabledMonthsList.push(z(parseInt(e),2))}),this.disabledYears.forEach(function(e){return t.disabledYearsList.push(z(parseInt(e),4))})},splitDate:function(){var t=L(new Date),e=(this.value?this.value:N(t))+" 00:00";this.timestamp=D(e),this.fromTimestamp()},fromTimestamp:function(){this.day=z(this.timestamp.day,2),this.month=z(this.timestamp.month,2),this.year=z(this.timestamp.year,4)},toTimestamp:function(){var t=R(this.timestamp);this.timestamp.day=parseInt(this.day),this.timestamp.month=parseInt(this.month),this.timestamp.year=parseInt(this.year),O(t,this.timestamp)||this.emitValue()},monthNameLabel:function(t){var e=L(new Date),n=N(e)+" 00:00",i=D(n);return i.day=1,i.month=parseInt(t),this.monthFormatter(i,this.shortMonthLabel)},__renderYearsScroller:function(t){var e=this;return t(b,{props:{value:this.year,items:this.yearsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.year=t}}})},__renderMonthsScroller:function(t){var e=this;return t(b,{props:{value:this.month,items:this.monthsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.month=t}}})},__renderDaysScroller:function(t){var e=this;return t(b,{props:{value:this.day,items:this.daysList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.day=t}}})},__renderScrollers:function(t){return[!0!==this.noYears&&this.__renderYearsScroller(t),!0!==this.noMonths&&this.__renderMonthsScroller(t),!0!==this.noDays&&this.__renderDaysScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDate])},__renderFooterButton:function(t){var e=this;return t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e?e(this.timestamp):[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Q=W.extend({name:"q-date-range-scroller",mixins:[u],props:r()({},h.dateRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startDate:"",endDate:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QDateRangeScroller - value (v-model) must to be an array of dates"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QDateRangeScroller - value (v-model) must contain 2 array elements"),this.splitDate(),this.adjustBodyHeight()},computed:{displayDate:function(){return void 0!==this.startDate&&void 0!==this.endDate?this.$refs.startDate&&this.$refs.endDate?this.$refs.startDate.displayDate+this.displaySeparator+this.$refs.endDate.displayDate:"".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate):""}},watch:{value:function(){this.splitDate()},startDate:function(){this.emitValue()},endDate:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startDate,this.endDate]):"string"===this.type&&this.$emit("input","".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDate:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidDate(t)&&this.isValidDate(e))return this.startDate=t,this.endDate=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidDate(i)&&this.isValidDate(r))return this.startDate=i,this.endDate=r,void(this.type="string")}}console.error("QDateRangeScroller: invalid date format - '".concat(this.value,"'"))},isValidDate:function(t){var e=t.split("-");if(3===e.length){var n=parseInt(e[0]),i=parseInt(e[1]),r=parseInt(e[2]),o=P(n,i);if(0!==n&&i>0&&i<=12&&r>0&&r<=o)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startDate.getTimestamp(),this.$refs.endDate.getTimestamp()]):[this.displayDate])},__renderStartDate:function(t){var e=this;return t(G,{ref:"startDate",staticClass:"col-6",props:{value:this.startDate,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.startMinDate,maxDate:this.startMaxDate,dates:this.startDates,disabledDate:this.startDisabledDates,disabledYears:this.startDisabledYears,disabledMonths:this.startDisabledMonths,disabledDays:this.startDisabledDays,shortYearLabel:this.startShortYearLabel,shortMonthLabel:this.startShortMonthLabel,shortDayLabel:this.startShortDayLabel,showMonthLabel:this.startShowMonthLabel,showWeekdayLabel:this.startShowWeekdayLabel,noDays:this.startNoDays,noMonths:this.startNoMonths,noYears:this.startNoYears,height:this.bodyHeight},on:{input:function(t){e.startDate=t}}})},__renderEndDate:function(t){var e=this;return t(G,{ref:"endDate",staticClass:"col-6",props:{value:this.endDate,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.endMinDate,maxDate:this.endMaxDate,dates:this.endDates,disabledDate:this.endDisabledDates,disabledYears:this.endDisabledYears,disabledMonths:this.endDisabledMonths,disabledDays:this.endDisabledDays,shortYearLabel:this.endShortYearLabel,shortMonthLabel:this.endShortMonthLabel,shortDayLabel:this.endShortDayLabel,showMonthLabel:this.endShowMonthLabel,showWeekdayLabel:this.endShowWeekdayLabel,noDays:this.endNoDays,noMonths:this.endNoMonths,noYears:this.endNoYears,height:this.bodyHeight},on:{input:function(t){e.endDate=t}}})},__renderScrollers:function(t){return[this.__renderStartDate(t),this.__renderEndDate(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Z=W.extend({name:"q-date-time-scroller",mixins:[u],props:r()({},h.time,h.date),data:function(){return{headerFooterHeight:100,bodyHeight:100,date:"",time:"",timestamp:r()({},$)}},mounted:function(){this.splitDateTime(),this.adjustBodyHeight()},computed:{displayDateTime:function(){return""!==this.date&&""!==this.time?this.$refs.date&&this.$refs.time?this.$refs.date.displayDate+" "+this.$refs.time.displayTime:"".concat(this.date," ").concat(this.time):""}},watch:{value:function(){this.splitDateTime()},date:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},time:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){this.$emit("input","".concat(this.timestamp.date))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDateTime:function(){this.timestamp=D(this.value),this.fromTimestamp()},fromTimestamp:function(){this.date=N(this.timestamp),this.time=H(this.timestamp)},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDateTime])},__renderDate:function(t){var e=this;return t(G,{ref:"date",staticClass:"col-6",props:{value:this.date,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.minDate,maxDate:this.maxDate,dates:this.dates,disabledDate:this.disabledDates,disabledYears:this.disabledYears,disabledMonths:this.disabledMonths,disabledDays:this.disabledDays,shortYearLabel:this.shortYearLabel,shortMonthLabel:this.shortMonthLabel,shortDayLabel:this.shortDayLabel,showMonthLabel:this.showMonthLabel,showWeekdayLabel:this.showWeekdayLabel,noYears:this.noYears,noMonths:this.noMonths,noDays:this.noDays,height:this.bodyHeight},on:{input:function(t){e.date=t}}})},__renderTime:function(t){var e=this;return t(U,{ref:"time",staticClass:"col-6",props:{value:this.time,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.minuteInterval,hourInterval:this.hourInterval,shortTimeLabel:this.shortTimeLabel,disabledHours:this.disabledHours,disabledMinutes:this.disbaledMinutes,noMinutes:this.noMinutes,noHours:this.noHours,hours:this.hours,minutes:this.minutes,minTime:this.minTime,maxTime:this.maxTime,height:this.bodyHeight},on:{input:function(t){e.time=t}}})},__renderScrollers:function(t){return[this.__renderDate(t),this.__renderTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-time-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}});e["a"]=function(t){var e=t.Vue;e.component("q-scroller",y),e.component("q-time-scroller",U),e.component("q-time-range-scroller",Y),e.component("q-date-scroller",G),e.component("q-date-range-scroller",Q),e.component("q-date-time-scroller",Z)}},e9ef:function(t,e,n){"use strict";var i="PNG\r\n\n";function r(t){if(i===t.toString("ascii",1,8)){if("IHDR"!==t.toString("ascii",12,16))throw new TypeError("invalid png");return!0}}function o(t){return{width:t.readUInt32BE(16),height:t.readUInt32BE(20)}}t.exports={detect:r,calculate:o}},eb85:function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e");e["a"]=o["a"].extend({name:"QSeparator",props:{dark:Boolean,spaced:Boolean,inset:[Boolean,String],vertical:Boolean,color:String},computed:{classes:function(){var t;return t={},r()(t,"bg-".concat(this.color),this.color),r()(t,"q-separator--dark",this.dark),r()(t,"q-separator--spaced",this.spaced),r()(t,"q-separator--inset",!0===this.inset),r()(t,"q-separator--item-inset","item"===this.inset),r()(t,"q-separator--item-thumbnail-inset","item-thumbnail"===this.inset),r()(t,"q-separator--".concat(this.vertical?"vertical self-stretch":"horizontal col-grow"),!0),t}},render:function(t){return t("hr",{staticClass:"q-separator",class:this.classes})}})},ebd6:function(t,e,n){var i=n("cb7c"),r=n("d8e8"),o=n("2b4c")("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},ec5d:function(t,e,n){"use strict";n("ac6a"),n("cadf"),n("456d");var i=n("2b0e"),r=(n("28a5"),{isoName:"en-us",nativeName:"English (US)",label:{clear:"Clear",ok:"OK",cancel:"Cancel",close:"Close",set:"Set",select:"Select",reset:"Reset",remove:"Remove",update:"Update",create:"Create",search:"Search",filter:"Filter",refresh:"Refresh"},date:{days:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),daysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),firstDayOfWeek:0,format24h:!1},table:{noData:"No data available",noResults:"No matching records found",loading:"Loading...",selectedRecords:function(t){return 1===t?"1 record selected.":(0===t?"No":t)+" records selected."},recordsPerPage:"Records per page:",allRows:"All",pagination:function(t,e,n){return t+"-"+e+" of "+n},columns:"Columns"},editor:{url:"URL",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",underline:"Underline",unorderedList:"Unordered List",orderedList:"Ordered List",subscript:"Subscript",superscript:"Superscript",hyperlink:"Hyperlink",toggleFullscreen:"Toggle Fullscreen",quote:"Quote",left:"Left align",center:"Center align",right:"Right align",justify:"Justify align",print:"Print",outdent:"Decrease indentation",indent:"Increase indentation",removeFormat:"Remove formatting",formatting:"Formatting",fontSize:"Font Size",align:"Align",hr:"Insert Horizontal Rule",undo:"Undo",redo:"Redo",header1:"Header 1",header2:"Header 2",header3:"Header 3",header4:"Header 4",header5:"Header 5",header6:"Header 6",paragraph:"Paragraph",code:"Code",size1:"Very small",size2:"A bit small",size3:"Normal",size4:"Medium-large",size5:"Big",size6:"Very big",size7:"Maximum",defaultFont:"Default Font"},tree:{noNodes:"No nodes available",noResults:"No matching nodes found"}}),o=n("0967");e["a"]={install:function(t,e,n){var s=this;!0===o["c"]&&e.server.push(function(t,e){var n={lang:t.lang.isoName,dir:!0===t.lang.rtl?"rtl":"ltr"},i=e.ssr.setHtmlAttrs;"function"===typeof i?i(n):e.ssr.Q_HTML_ATTRS=Object.keys(n).map(function(t){return"".concat(t,"=").concat(n[t])}).join(" ")}),this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r;if(e.set=s.set,e.getLocale=s.getLocale,e.rtl=e.rtl||!1,!1===o["c"]){var n=document.documentElement;n.setAttribute("dir",e.rtl?"rtl":"ltr"),n.setAttribute("lang",e.isoName)}!0===o["c"]||void 0!==t.lang?t.lang=e:i["a"].util.defineReactive(t,"lang",e),s.isoName=e.isoName,s.nativeName=e.nativeName,s.props=e},this.set(n)},getLocale:function(){if(!0!==o["c"]){var t=navigator.language||navigator.languages[0]||navigator.browserLanguage||navigator.userLanguage||navigator.systemLanguage;return t?t.toLowerCase():void 0}}}},edca:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("0831"),o=n("d882");e["a"]=i["a"].extend({name:"QScrollObserver",props:{debounce:[String,Number],horizontal:Boolean},render:function(){},data:function(){return{pos:0,dir:!0===this.horizontal?"right":"down",dirChanged:!1,dirChangePos:0}},methods:{getPosition:function(){return{position:this.pos,direction:this.dir,directionChanged:this.dirChanged,inflexionPosition:this.dirChangePos}},trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__emit():this.timer||(this.timer=this.debounce?setTimeout(this.__emit,this.debounce):requestAnimationFrame(this.__emit))},__emit:function(){var t=Math.max(0,!0===this.horizontal?Object(r["b"])(this.target):Object(r["c"])(this.target)),e=t-this.pos,n=this.horizontal?e<0?"left":"right":e<0?"up":"down";this.dirChanged=this.dir!==n,this.dirChanged&&(this.dir=n,this.dirChangePos=this.pos),this.timer=null,this.pos=t,this.$emit("scroll",this.getPosition())}},mounted:function(){this.target=Object(r["d"])(this.$el.parentNode),this.target.addEventListener("scroll",this.trigger,o["d"].passive),this.trigger(!0)},beforeDestroy:function(){clearTimeout(this.timer),cancelAnimationFrame(this.timer),this.target.removeEventListener("scroll",this.trigger,o["d"].passive)}})},efe6:function(t,e,n){"use strict";var i=n("d882"),r=n("0831"),o=n("0967"),s=0;function a(t){c(t)&&Object(i["h"])(t)}function c(t){if(t.target===document.body||t.target.classList.contains("q-layout__backdrop"))return!0;for(var e=Object(i["a"])(t),n=t.shiftKey&&!t.deltaX,o=!n&&Math.abs(t.deltaX)<=Math.abs(t.deltaY),s=n||o?t.deltaY:t.deltaX,a=0;a0&&c.scrollTop+c.clientHeight===c.scrollHeight:s<0&&0===c.scrollLeft||s>0&&c.scrollLeft+c.clientWidth===c.scrollWidth}return!0}function l(t){if(s+=t?1:-1,!(s>1)){var e=t?"add":"remove";o["a"].is.mobile?document.body.classList[e]("q-body--prevent-scroll"):o["a"].is.desktop&&window["".concat(e,"EventListener")]("wheel",a,i["d"].notPassive)}}e["a"]={methods:{__preventScroll:function(t){void 0===this.preventedScroll&&!0!==t||t!==this.preventedScroll&&(this.preventedScroll=t,l(t))}}}},f09f:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCard",props:{dark:Boolean,square:Boolean,flat:Boolean,bordered:Boolean},render:function(t){return t("div",{staticClass:"q-card",class:{"q-card--dark":this.dark,"q-card--bordered":this.bordered,"q-card--square no-border-radius":this.square,"q-card--flat no-shadow":this.flat},on:this.$listeners},Object(r["a"])(this,"default"))}})},f0f2:function(t){t.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},f270:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("377c");function o(t){var e=t.toString("hex",0,4);return"49492a00"===e||"4d4d002a"===e}function s(t,n,o){var s=r(t,32,4,o),a=1024,c=i.statSync(n).size;s+a>c&&(a=c-s-10);var l=new e(a),u=i.openSync(n,"r");i.readSync(u,l,0,a,s);var h=l.slice(2);return h}function a(t,e){var n=r(t,16,8,e),i=r(t,16,10,e);return(i<<16)+n}function c(t){if(t.length>24)return t.slice(12)}function l(t,e){var n,i,o,s={};while(t&&t.length){if(n=r(t,16,0,e),i=r(t,16,2,e),o=r(t,32,4,e),0===n)break;1===o&&3===i&&(s[n]=a(t,e)),t=c(t)}return s}function u(t){var e=t.toString("ascii",0,2);return"II"===e?"LE":"MM"===e?"BE":void 0}function h(t,e){if(!e)throw new TypeError("Tiff doesn't support buffer");var n="BE"===u(t),i=s(t,e,n),r=l(i,n),o=r[256],a=r[257];if(!o||!a)throw new TypeError("Invalid Tiff, missing tags");return{width:o,height:a}}t.exports={detect:o,calculate:h}}).call(this,n("9cd4").Buffer)},f2cc:function(t,e,n){"use strict";n("f751"),n("d263"),n("c5f6"),n("6762"),n("2fdb");var i=n("2b0e"),r=n("75c3"),o=n("7937"),s=n("7ee0"),a=n("efe6"),c=n("dde5"),l=150;e["a"]=i["a"].extend({name:"QDrawer",inject:{layout:{default:function(){console.error("QDrawer needs to be child of QLayout")}}},mixins:[s["a"],a["a"]],directives:{TouchPan:r["a"]},props:{overlay:Boolean,side:{type:String,default:"left",validator:function(t){return["left","right"].includes(t)}},width:{type:Number,default:300},mini:Boolean,miniWidth:{type:Number,default:57},breakpoint:{type:Number,default:1023},behavior:{type:String,validator:function(t){return["default","desktop","mobile"].includes(t)},default:"default"},bordered:Boolean,elevated:Boolean,persistent:Boolean,showIfAbove:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array],noSwipeOpen:Boolean,noSwipeClose:Boolean},data:function(){var t=this,e=!0===this.showIfAbove||void 0===this.value||this.value,n="mobile"!==this.behavior&&this.breakpoint=this.layout.width,largeScreenState:e,mobileOpened:!1}},watch:{belowBreakpoint:function(t){!0!==this.mobileOpened&&(!0===t?(!1===this.overlay&&(this.largeScreenState=this.showing),this.hide(!1)):!1===this.overlay&&this[this.largeScreenState?"show":"hide"](!1))},side:function(t,e){this.layout[e].space=!1,this.layout[e].offset=0},behavior:function(t){this.__updateLocal("belowBreakpoint","mobile"===t||"desktop"!==t&&this.breakpoint>=this.layout.width)},breakpoint:function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&t>=this.layout.width)},"layout.width":function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&this.breakpoint>=t)},"layout.scrollbarWidth":function(){this.applyPosition(!0===this.showing?0:void 0)},offset:function(t){this.__update("offset",t)},onLayout:function(t){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",t),this.__update("space",t)},$route:function(){!0===this.persistent||!0!==this.mobileOpened&&!0!==this.onScreenOverlay||this.hide()},rightSide:function(){this.applyPosition()},size:function(t){this.applyPosition(),this.__update("size",t)},"$q.lang.rtl":function(){this.applyPosition()},mini:function(){!0===this.value&&(this.__animateMini(),this.layout.__animate())}},computed:{rightSide:function(){return"right"===this.side},offset:function(){return!0===this.showing&&!1===this.mobileOpened&&!1===this.overlay?this.size:0},size:function(){return!0===this.isMini?this.miniWidth:this.width},fixed:function(){return!0===this.overlay||this.layout.view.indexOf(this.rightSide?"R":"L")>-1},onLayout:function(){return!0===this.showing&&!1===this.mobileView&&!1===this.overlay},onScreenOverlay:function(){return!0===this.showing&&!1===this.mobileView&&!0===this.overlay},backdropClass:function(){return!1===this.showing?"no-pointer-events":null},mobileView:function(){return!0===this.belowBreakpoint||!0===this.mobileOpened},headerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.top[2]:"l"===this.layout.rows.top[0]},footerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.bottom[2]:"l"===this.layout.rows.bottom[0]},aboveStyle:function(){var t={};return!0===this.layout.header.space&&!1===this.headerSlot&&(!0===this.fixed?t.top="".concat(this.layout.header.offset,"px"):!0===this.layout.header.space&&(t.top="".concat(this.layout.header.size,"px"))),!0===this.layout.footer.space&&!1===this.footerSlot&&(!0===this.fixed?t.bottom="".concat(this.layout.footer.offset,"px"):!0===this.layout.footer.space&&(t.bottom="".concat(this.layout.footer.size,"px"))),t},style:function(){var t={width:"".concat(this.size,"px")};return!0===this.mobileView?t:Object.assign(t,this.aboveStyle)},classes:function(){return"q-drawer--".concat(this.side)+(!0===this.bordered?" q-drawer--bordered":"")+(!0===this.mobileView?" fixed q-drawer--on-top q-drawer--mobile q-drawer--top-padding":" q-drawer--".concat(!0===this.isMini?"mini":"standard")+(!0===this.fixed||!0!==this.onLayout?" fixed":"")+(!0===this.overlay?" q-drawer--on-top":"")+(!0===this.headerSlot?" q-drawer--top-padding":""))},stateDirection:function(){return(!0===this.$q.lang.rtl?-1:1)*(!0===this.rightSide?1:-1)},isMini:function(){return!0===this.mini&&!0!==this.mobileView},onNativeEvents:function(){var t=this;if(!0!==this.mobileView)return{"!click":function(e){t.$emit("click",e)},mouseover:function(e){t.$emit("mouseover",e)},mouseout:function(e){t.$emit("mouseout",e)}}}},methods:{applyPosition:function(t){var e=this;void 0===t?this.$nextTick(function(){t=!0===e.showing?0:e.size,e.applyPosition(e.stateDirection*t)}):void 0!==this.$refs.content&&(!0!==this.layout.container||!0!==this.rightSide||!0!==this.mobileView&&Math.abs(t)!==this.size||(t+=this.stateDirection*this.layout.scrollbarWidth),this.$refs.content.style.transform="translate3d(".concat(t,"px, 0, 0)"))},applyBackdrop:function(t){void 0!==this.$refs.backdrop&&(this.$refs.backdrop.style.backgroundColor=this.lastBackdropBg="rgba(0,0,0,".concat(.4*t,")"))},__setScrollable:function(t){!0!==this.layout.container&&document.body.classList[!0===t?"add":"remove"]("q-body--drawer-toggle")},__animateMini:function(){var t=this;void 0!==this.timerMini?clearTimeout(this.timerMini):void 0!==this.$el&&this.$el.classList.add("q-drawer--mini-animate"),this.timerMini=setTimeout(function(){void 0!==t.$el&&t.$el.classList.remove("q-drawer--mini-animate"),t.timerMini=void 0},150)},__openByTouch:function(t){var e=this.size,n=Object(o["a"])(t.distance.x,0,e);if(!0===t.isFinal){var i=this.$refs.content,r=n>=Math.min(75,e);return i.classList.remove("no-transition"),void(!0===r?this.show():(this.layout.__animate(),this.applyBackdrop(0),this.applyPosition(this.stateDirection*e),i.classList.remove("q-drawer--delimiter")))}if(this.applyPosition((!0===this.$q.lang.rtl?!this.rightSide:this.rightSide)?Math.max(e-n,0):Math.min(0,n-e)),this.applyBackdrop(Object(o["a"])(n/e,0,1)),!0===t.isFirst){var s=this.$refs.content;s.classList.add("no-transition"),s.classList.add("q-drawer--delimiter")}},__closeByTouch:function(t){var e=this.size,n=t.direction===this.side,i=(!0===this.$q.lang.rtl?!n:n)?Object(o["a"])(t.distance.x,0,e):0;if(!0===t.isFinal){var r=Math.abs(i)0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),this.applyPosition(0);var n=this.layout.instances[!0===this.rightSide?"left":"right"];void 0!==n&&!0===n.mobileOpened&&n.hide(!1),!0===this.belowBreakpoint?(this.mobileOpened=!0,this.applyBackdrop(1),!0!==this.layout.container&&this.__preventScroll(!0)):this.__setScrollable(!0),clearTimeout(this.timer),this.timer=setTimeout(function(){t.__setScrollable(!1),t.$emit("show",e)},l)},__hide:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),!0===this.mobileOpened&&(this.mobileOpened=!1),this.applyPosition(this.stateDirection*this.size),this.applyBackdrop(0),this.__cleanup(),clearTimeout(this.timer),this.timer=setTimeout(function(){t.$emit("hide",e)},l)},__cleanup:function(){this.__preventScroll(!1),this.__setScrollable(!1)},__update:function(t,e){this.layout[this.side][t]!==e&&(this.layout[this.side][t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}},created:function(){this.layout.instances[this.side]=this,this.__update("size",this.size),this.__update("space",this.onLayout),this.__update("offset",this.offset)},mounted:function(){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",this.onLayout),this.applyPosition(!0===this.showing?0:void 0)},beforeDestroy:function(){clearTimeout(this.timer),clearTimeout(this.timerMini),!0===this.showing&&this.__cleanup(),this.layout.instances[this.side]===this&&(this.layout.instances[this.side]=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},render:function(t){var e=[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__closeByTouch}],n=[!0!==this.noSwipeOpen&&!0===this.belowBreakpoint?t("div",{staticClass:"q-drawer__opener fixed-".concat(this.side),directives:[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__openByTouch}]}):null,!0===this.mobileView?t("div",{ref:"backdrop",staticClass:"fullscreen q-drawer__backdrop q-layout__section--animate",class:this.backdropClass,style:void 0!==this.lastBackdropBg?{backgroundColor:this.lastBackdropBg}:null,on:{click:this.hide},directives:e}):null],i=[t("div",{staticClass:"q-drawer__content fit "+(!0===this.layout.container?"overflow-auto":"scroll"),class:this.contentClass,style:this.contentStyle},!0===this.isMini&&void 0!==this.$scopedSlots.mini?this.$scopedSlots.mini():Object(c["a"])(this,"default"))];return!0===this.elevated&&!0===this.showing&&i.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("div",{staticClass:"q-drawer-container"},n.concat([t("aside",{ref:"content",staticClass:"q-drawer q-layout__section--animate",class:this.classes,style:this.style,on:this.onNativeEvents,directives:!0===this.mobileView&&!0!==this.noSwipeClose?e:void 0},i)]))}})},f303:function(t,e,n){"use strict";n.d(e,"a",function(){return i});n("cadf"),n("456d"),n("ac6a");function i(t,e){var n=t.style;Object.keys(e).forEach(function(t){n[t]=e[t]})}},f37a:function(t,e,n){"use strict";e.byteLength=u,e.toByteArray=d,e.fromByteArray=m;for(var i=[],r=[],o="undefined"!==typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",a=0,c=s.length;a0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");-1===n&&(n=e);var i=n===e?0:4-n%4;return[n,i]}function u(t){var e=l(t),n=e[0],i=e[1];return 3*(n+i)/4-i}function h(t,e,n){return 3*(e+n)/4-n}function d(t){for(var e,n=l(t),i=n[0],s=n[1],a=new o(h(t,i,s)),c=0,u=s>0?i-4:i,d=0;d>16&255,a[c++]=e>>8&255,a[c++]=255&e;return 2===s&&(e=r[t.charCodeAt(d)]<<2|r[t.charCodeAt(d+1)]>>4,a[c++]=255&e),1===s&&(e=r[t.charCodeAt(d)]<<10|r[t.charCodeAt(d+1)]<<4|r[t.charCodeAt(d+2)]>>2,a[c++]=e>>8&255,a[c++]=255&e),a}function f(t){return i[t>>18&63]+i[t>>12&63]+i[t>>6&63]+i[63&t]}function p(t,e,n){for(var i,r=[],o=e;oc?c:a+s));return 1===r?(e=t[n-1],o.push(i[e>>2]+i[e<<4&63]+"==")):2===r&&(e=(t[n-2]<<8)+t[n-1],o.push(i[e>>10]+i[e>>4&63]+i[e<<2&63]+"=")),o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},f44b:function(t,e){function n(t,e,n,i,r,o,s){try{var a=t[o](s),c=a.value}catch(l){return void n(l)}a.done?e(c):Promise.resolve(c).then(i,r)}function i(t){return function(){var e=this,i=arguments;return new Promise(function(r,o){var s=t.apply(e,i);function a(t){n(s,r,o,a,c,"next",t)}function c(t){n(s,r,o,a,c,"throw",t)}a(void 0)})}}t.exports=i},f559:function(t,e,n){"use strict";var i=n("5ca1"),r=n("9def"),o=n("d2c8"),s="startsWith",a=""[s];i(i.P+i.F*n("5147")(s),"String",{startsWith:function(t){var e=o(this,t,s),n=r(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),i=String(t);return a?a.call(e,i,n):e.slice(n,n+i.length)===i}})},f605:function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},f751:function(t,e,n){var i=n("5ca1");i(i.S+i.F,"Object",{assign:n("7333")})},f9d7:function(t,e){!function(e){"use strict";var n,i=Object.prototype,r=i.hasOwnProperty,o="function"===typeof Symbol?Symbol:{},s=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag",l="object"===typeof t,u=e.regeneratorRuntime;if(u)l&&(t.exports=u);else{u=e.regeneratorRuntime=l?t.exports:{},u.wrap=y;var h="suspendedStart",d="suspendedYield",f="executing",p="completed",m={},v={};v[s]=function(){return this};var g=Object.getPrototypeOf,_=g&&g(g(D([])));_&&_!==i&&r.call(_,s)&&(v=_);var b=C.prototype=k.prototype=Object.create(v);x.prototype=b.constructor=C,C.constructor=x,C[c]=x.displayName="GeneratorFunction",u.isGeneratorFunction=function(t){var e="function"===typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},u.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,C):(t.__proto__=C,c in t||(t[c]="GeneratorFunction")),t.prototype=Object.create(b),t},u.awrap=function(t){return{__await:t}},S(A.prototype),A.prototype[a]=function(){return this},u.AsyncIterator=A,u.async=function(t,e,n,i){var r=new A(y(t,e,n,i));return u.isGeneratorFunction(e)?r:r.next().then(function(t){return t.done?t.value:r.next()})},S(b),b[c]="Generator",b[s]=function(){return this},b.toString=function(){return"[object Generator]"},u.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){while(e.length){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},u.values=D,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method="next",this.arg=n,this.tryEntries.forEach($),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function i(i,r){return a.type="throw",a.arg=t,e.next=i,r&&(e.method="next",e.arg=n),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var c=r.call(s,"catchLoc"),l=r.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),$(n),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;$(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,i){return this.delegate={iterator:D(t),resultName:e,nextLoc:i},"next"===this.method&&(this.arg=n),m}}}function y(t,e,n,i){var r=e&&e.prototype instanceof k?e:k,o=Object.create(r.prototype),s=new O(i||[]);return o._invoke=E(t,n,s),o}function w(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}function k(){}function x(){}function C(){}function S(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function A(t){function e(n,i,o,s){var a=w(t[n],t,i);if("throw"!==a.type){var c=a.arg,l=c.value;return l&&"object"===typeof l&&r.call(l,"__await")?Promise.resolve(l.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(l).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function i(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=i}function E(t,e,n){var i=h;return function(r,o){if(i===f)throw new Error("Generator is already running");if(i===p){if("throw"===r)throw o;return L()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=q(s,n);if(a){if(a===m)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===h)throw i=p,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var c=w(t,e,n);if("normal"===c.type){if(i=n.done?p:d,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=p,n.method="throw",n.arg=c.arg)}}}function q(t,e){var i=t.iterator[e.method];if(i===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,q(t,e),"throw"===e.method))return m;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var r=w(i,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,m;var o=r.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,m):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,m)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function $(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function D(t){if(t){var e=t[s];if(e)return e.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function e(){while(++i=3&&":"===t[e-3]?0:e>=3&&"/"===t[e-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(t,e,n){var i=t.slice(e);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function m(t){t.__index__=-1,t.__text_cache__=""}function v(t){return function(e,n){var i=e.slice(n);return t.test(i)?i.match(t)[0].length:0}}function g(){return function(t,e){e.normalize(t)}}function _(t){var e=t.re=n("b117")(t.__opts__),i=t.__tlds__.slice();function r(t){return t.replace("%TLDS%",e.src_tlds)}t.onCompile(),t.__tlds_replaced__||i.push(f),i.push(e.src_xn),e.src_tlds=i.join("|"),e.email_fuzzy=RegExp(r(e.tpl_email_fuzzy),"i"),e.link_fuzzy=RegExp(r(e.tpl_link_fuzzy),"i"),e.link_no_ip_fuzzy=RegExp(r(e.tpl_link_no_ip_fuzzy),"i"),e.host_fuzzy_test=RegExp(r(e.tpl_host_fuzzy_test),"i");var u=[];function h(t,e){throw new Error('(LinkifyIt) Invalid schema "'+t+'": '+e)}t.__compiled__={},Object.keys(t.__schemas__).forEach(function(e){var n=t.__schemas__[e];if(null!==n){var i={validate:null,link:null};if(t.__compiled__[e]=i,s(n))return a(n.validate)?i.validate=v(n.validate):c(n.validate)?i.validate=n.validate:h(e,n),void(c(n.normalize)?i.normalize=n.normalize:n.normalize?h(e,n):i.normalize=g());o(n)?u.push(e):h(e,n)}}),u.forEach(function(e){t.__compiled__[t.__schemas__[e]]&&(t.__compiled__[e].validate=t.__compiled__[t.__schemas__[e]].validate,t.__compiled__[e].normalize=t.__compiled__[t.__schemas__[e]].normalize)}),t.__compiled__[""]={validate:null,normalize:g()};var d=Object.keys(t.__compiled__).filter(function(e){return e.length>0&&t.__compiled__[e]}).map(l).join("|");t.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","i"),t.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","ig"),t.re.pretest=RegExp("("+t.re.schema_test.source+")|("+t.re.host_fuzzy_test.source+")|@","i"),m(t)}function b(t,e){var n=t.__index__,i=t.__last_index__,r=t.__text_cache__.slice(n,i);this.schema=t.__schema__.toLowerCase(),this.index=n+e,this.lastIndex=i+e,this.raw=r,this.text=r,this.url=r}function y(t,e){var n=new b(t,e);return t.__compiled__[n.schema].normalize(n,t),n}function w(t,e){if(!(this instanceof w))return new w(t,e);e||h(t)&&(e=t,t={}),this.__opts__=i({},u,e),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=i({},d,t),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},_(this)}w.prototype.add=function(t,e){return this.__schemas__[t]=e,_(this),this},w.prototype.set=function(t){return this.__opts__=i(this.__opts__,t),this},w.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var e,n,i,r,o,s,a,c,l;if(this.re.schema_test.test(t)){a=this.re.schema_search,a.lastIndex=0;while(null!==(e=a.exec(t)))if(r=this.testSchemaAt(t,e[2],a.lastIndex),r){this.__schema__=e[2],this.__index__=e.index+e[1].length,this.__last_index__=e.index+e[0].length+r;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=t.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c=0&&null!==(i=t.match(this.re.email_fuzzy))&&(o=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=s))),this.__index__>=0},w.prototype.pretest=function(t){return this.re.pretest.test(t)},w.prototype.testSchemaAt=function(t,e,n){return this.__compiled__[e.toLowerCase()]?this.__compiled__[e.toLowerCase()].validate(t,n,this):0},w.prototype.match=function(t){var e=0,n=[];this.__index__>=0&&this.__text_cache__===t&&(n.push(y(this,e)),e=this.__last_index__);var i=e?t.slice(e):t;while(this.test(i))n.push(y(this,e)),i=i.slice(this.__last_index__),e+=this.__last_index__;return n.length?n:null},w.prototype.tlds=function(t,e){return t=Array.isArray(t)?t:[t],e?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(t,e,n){return t!==n[e-1]}).reverse(),_(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,_(this),this)},w.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"!==t.schema||/^mailto:/i.test(t.url)||(t.url="mailto:"+t.url)},w.prototype.onCompile=function(){},t.exports=w},fdef:function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},fdfe:function(t,e,n){"use strict";var i=n("0068").isSpace;t.exports=function(t,e,n,r){var o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(o=t.src.charCodeAt(l++),42!==o&&45!==o&&95!==o)return!1;s=1;while(l=o?-1:(i=t.src.charCodeAt(r++),126!==i&&58!==i?-1:(n=t.skipSpaces(r),r===n?-1:n>=o?-1:r))}function i(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n=0;if(m=r+1,m>=o)return!1;if(t.isEmpty(m)&&(m++,m>=o))return!1;if(t.sCount[m]1&&t.isEmpty(t.line-1),t.tShift[l]=w,t.sCount[l]=y,t.tight=k,t.parentType=b,t.blkIndent=_,t.ddIndent=g,A=t.push("dd_close","dd",-1),h[1]=m=t.line,m>=o)break t;if(t.sCount[m]=o)break;if(u=m,t.isEmpty(u))break;if(t.sCount[u]=o)break;if(t.isEmpty(l)&&l++,l>=o)break;if(t.sCount[l]=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function b(t){return+t!=t&&(t=0),l.alloc(+t)}function y(t,e){if(l.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return Z(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return J(t).length;default:if(i)return Z(t).length;e=(""+e).toLowerCase(),i=!0}}function w(t,e,n){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return B(this,e,n);case"utf8":case"utf-8":return D(this,e,n);case"ascii":return I(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return O(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,e,n);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}function k(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function x(t,e,n,i,r){if(0===t.length)return-1;if("string"===typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(r)return-1;n=t.length-1}else if(n<0){if(!r)return-1;n=0}if("string"===typeof e&&(e=l.from(e,i)),l.isBuffer(e))return 0===e.length?-1:C(t,e,n,i,r);if("number"===typeof e)return e&=255,l.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):C(t,[e],n,i,r);throw new TypeError("val must be string, number or Buffer")}function C(t,e,n,i,r){var o,s=1,a=t.length,c=e.length;if(void 0!==i&&(i=String(i).toLowerCase(),"ucs2"===i||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(t.length<2||e.length<2)return-1;s=2,a/=2,c/=2,n/=2}function l(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(r){var u=-1;for(o=n;oa&&(n=a-c),o=n;o>=0;o--){for(var h=!0,d=0;dr&&(i=r)):i=r;var o=e.length;if(o%2!==0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var s=0;s239?4:l>223?3:l>191?2:1;if(r+h<=n)switch(h){case 1:l<128&&(u=l);break;case 2:o=t[r+1],128===(192&o)&&(c=(31&l)<<6|63&o,c>127&&(u=c));break;case 3:o=t[r+1],s=t[r+2],128===(192&o)&&128===(192&s)&&(c=(15&l)<<12|(63&o)<<6|63&s,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:o=t[r+1],s=t[r+2],a=t[r+3],128===(192&o)&&128===(192&s)&&128===(192&a)&&(c=(15&l)<<18|(63&o)<<12|(63&s)<<6|63&a,c>65535&&c<1114112&&(u=c))}null===u?(u=65533,h=1):u>65535&&(u-=65536,i.push(u>>>10&1023|55296),u=56320|1023&u),i.push(u),r+=h}return M(i)}e.Buffer=l,e.SlowBuffer=b,e.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:s(),e.kMaxLength=a(),l.poolSize=8192,l._augment=function(t){return t.__proto__=l.prototype,t},l.from=function(t,e,n){return u(null,t,e,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!==typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(t,e,n){return d(null,t,e,n)},l.allocUnsafe=function(t){return f(null,t)},l.allocUnsafeSlow=function(t){return f(null,t)},l.isBuffer=function(t){return!(null==t||!t._isBuffer)},l.compare=function(t,e){if(!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,i=e.length,r=0,o=Math.min(n,i);r0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),""},l.prototype.compare=function(t,e,n,i,r){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),e<0||n>t.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&e>=n)return 0;if(i>=r)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,i>>>=0,r>>>=0,this===t)return 0;for(var o=r-i,s=n-e,a=Math.min(o,s),c=this.slice(i,r),u=t.slice(e,n),h=0;hr)&&(n=r),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return S(this,t,e,n);case"utf8":case"utf-8":return A(this,t,e,n);case"ascii":return E(this,t,e,n);case"latin1":case"binary":return q(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var L=4096;function M(t){var e=t.length;if(e<=L)return String.fromCharCode.apply(String,t);var n="",i=0;while(ii)&&(n=i);for(var r="",o=e;on)throw new RangeError("Trying to access beyond buffer length")}function R(t,e,n,i,r,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>r||et.length)throw new RangeError("Index out of range")}function z(t,e,n,i){e<0&&(e=65535+e+1);for(var r=0,o=Math.min(t.length-n,2);r>>8*(i?r:1-r)}function N(t,e,n,i){e<0&&(e=4294967295+e+1);for(var r=0,o=Math.min(t.length-n,4);r>>8*(i?r:3-r)&255}function H(t,e,n,i,r,o){if(n+i>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function V(t,e,n,i,o){return o||H(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),r.write(t,e,n,i,23,4),n+4}function U(t,e,n,i,o){return o||H(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),r.write(t,e,n,i,52,8),n+8}l.prototype.slice=function(t,e){var n,i=this.length;if(t=~~t,e=void 0===e?i:~~e,t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e0&&(r*=256))i+=this[t+--e]*r;return i},l.prototype.readUInt8=function(t,e){return e||P(t,1,this.length),this[t]},l.prototype.readUInt16LE=function(t,e){return e||P(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUInt16BE=function(t,e){return e||P(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUInt32LE=function(t,e){return e||P(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUInt32BE=function(t,e){return e||P(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=this[t],r=1,o=0;while(++o=r&&(i-=Math.pow(2,8*e)),i},l.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);var i=e,r=1,o=this[t+--i];while(i>0&&(r*=256))o+=this[t+--i]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return e||P(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){e||P(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){e||P(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return e||P(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return e||P(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return e||P(t,4,this.length),r.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return e||P(t,8,this.length),r.read(this,t,!1,52,8)},l.prototype.writeUIntLE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){var r=Math.pow(2,8*n)-1;R(this,t,e,n,r,0)}var o=1,s=0;this[e]=255&t;while(++s=0&&(s*=256))this[e+o]=t/s&255;return e+n},l.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,255,0),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):N(this,t,e,!0),e+4},l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=0,s=1,a=0;this[e]=255&t;while(++o>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);R(this,t,e,n,r-1,-r)}var o=n-1,s=1,a=0;this[e+o]=255&t;while(--o>=0&&(s*=256))t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,1,127,-128),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):z(this,t,e,!0),e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):z(this,t,e,!1),e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):N(this,t,e,!0),e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||R(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},l.prototype.writeFloatLE=function(t,e,n){return V(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return V(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return U(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return U(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,i){if(n||(n=0),i||0===i||(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e=0;--r)t[r+e]=this[r+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(r=0;r>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"===typeof t)for(o=e;o55295&&n<57344){if(!r){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===i){(e-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(e-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function K(t){for(var e=[],n=0;n>8,r=n%256,o.push(r),o.push(i)}return o}function J(t){return i.toByteArray(W(t))}function tt(t,e,n,i){for(var r=0;r=e.length||r>=t.length)break;e[r+n]=t[r]}return r}function et(t){return t!==t}}).call(this,n("93d9"))},"9def":function(t,e,n){var i=n("4588"),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},"9e1e":function(t,e,n){t.exports=!n("79e5")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"9e62":function(t,e,n){"use strict";var i=n("2c75");e["a"]={inheritAttrs:!1,props:{contentClass:[Array,String,Object],contentStyle:[Array,String,Object]},methods:{__showPortal:function(){void 0!==this.__portal&&!0!==this.__portal.showing&&(document.body.appendChild(this.__portal.$el),this.__portal.showing=!0)},__hidePortal:function(){void 0!==this.__portal&&!0===this.__portal.showing&&(this.__portal.$el.remove(),this.__portal.showing=!1)}},render:function(){void 0!==this.__portal&&this.__portal.$forceUpdate()},beforeMount:function(){var t=this,e={inheritAttrs:!1,render:function(e){return t.__render(e)},components:this.$options.components,directives:this.$options.directives};void 0!==this.__onPortalClose&&(e.methods={__qClosePopup:this.__onPortalClose});var n=this.__onPortalCreated;void 0!==n&&(e.created=function(){n(this)}),this.__portal=Object(i["b"])(this,e).$mount()},beforeDestroy:function(){this.__portal.$destroy(),this.__portal.$el.remove(),this.__portal=void 0}}},"9f8d":function(t,e){e.read=function(t,e,n,i,r){var o,s,a=8*r-i-1,c=(1<>1,u=-7,h=n?r-1:0,d=n?-1:1,f=t[e+h];for(h+=d,o=f&(1<<-u)-1,f>>=-u,u+=a;u>0;o=256*o+t[e+h],h+=d,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=i;u>0;s=256*s+t[e+h],h+=d,u-=8);if(0===o)o=1-l;else{if(o===c)return s?NaN:1/0*(f?-1:1);s+=Math.pow(2,i),o-=l}return(f?-1:1)*s*Math.pow(2,o-i)},e.write=function(t,e,n,i,r,o){var s,a,c,l=8*o-r-1,u=(1<>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:o-1,p=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-s))<1&&(s--,c*=2),e+=s+h>=1?d/c:d*Math.pow(2,1-h),e*c>=2&&(s++,c/=2),s+h>=u?(a=0,s=u):s+h>=1?(a=(e*c-1)*Math.pow(2,r),s+=h):(a=e*Math.pow(2,h-1)*Math.pow(2,r),s=0));r>=8;t[n+f]=255&a,f+=p,a/=256,r-=8);for(s=s<0;t[n+f]=255&s,f+=p,s/=256,l-=8);t[n+f-p]|=128*m}},a124:function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r=t.tokens;for(n=0,i=r.length;n-1&&r.splice(e,1)}}}},a370:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCardSection",render:function(t){return t("div",{staticClass:"q-card__section",on:this.$listeners},Object(r["a"])(this,"default"))}})},a481:function(t,e,n){"use strict";var i=n("cb7c"),r=n("4bf8"),o=n("9def"),s=n("4588"),a=n("0390"),c=n("5f1b"),l=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(t){return void 0===t?t:String(t)};n("214f")("replace",2,function(t,e,n,m){return[function(i,r){var o=t(this),s=void 0==i?void 0:i[e];return void 0!==s?s.call(i,o,r):n.call(String(o),i,r)},function(t,e){var r=m(n,t,this,e);if(r.done)return r.value;var h=i(t),d=String(this),f="function"===typeof e;f||(e=String(e));var g=h.global;if(g){var _=h.unicode;h.lastIndex=0}var b=[];while(1){var y=c(h,d);if(null===y)break;if(b.push(y),!g)break;var w=String(y[0]);""===w&&(h.lastIndex=a(d,o(h.lastIndex),_))}for(var k="",x=0,C=0;C=x&&(k+=d.slice(x,A)+O,x=A+S.length)}return k+d.slice(x)}];function v(t,e,i,o,s,a){var c=i+t.length,l=o.length,u=f;return void 0!==s&&(s=r(s),u=d),n.call(a,u,function(n,r){var a;switch(r.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,i);case"'":return e.slice(c);case"<":a=s[r.slice(1,-1)];break;default:var u=+r;if(0===u)return n;if(u>l){var d=h(u/10);return 0===d?n:d<=l?void 0===o[d-1]?r.charAt(1):o[d-1]+r.charAt(1):n}a=o[u-1]}return void 0===a?"":a})}})},a5b8:function(t,e,n){"use strict";var i=n("d8e8");function r(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=i(e),this.reject=i(n)}t.exports.f=function(t){return new r(t)}},a7bc:function(t,e){t.exports=/[\0-\x1F\x7F-\x9F]/},a8c6:function(t,e,n){"use strict";function i(t,e,n){var i=e.target;n.touchTargetObserver=new MutationObserver(function(){!1===t.contains(i)&&n.end(e)}),n.touchTargetObserver.observe(t,{childList:!0,subtree:!0})}function r(t){void 0!==t.touchTargetObserver&&(t.touchTargetObserver.disconnect(),t.touchTargetObserver=void 0)}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r})},a915:function(t,e,n){"use strict";var i=n("4883"),r=[["normalize",n("4c26")],["block",n("3408")],["inline",n("a124")],["linkify",n("9921")],["replacements",n("bb4a")],["smartquotes",n("af30")]];function o(){this.ruler=new i;for(var t=0;t:(",">:-("],blush:[':")',':-")'],broken_heart:["c)if("center"===o.vertical)t.top=e[o.vertical]>c/2?c-n.bottom:0,t.maxHeight=Math.min(n.bottom,c);else if(e[o.vertical]>c/2){var u=Math.min(c,"center"===r.vertical?e.center:r.vertical===o.vertical?e.bottom:e.top);t.maxHeight=Math.min(n.bottom,u),t.top=Math.max(0,u-t.maxHeight)}else t.top="center"===r.vertical?e.center:r.vertical===o.vertical?e.top:e.bottom,t.maxHeight=Math.min(n.bottom,c-t.top);if(t.left<0||t.left+n.right>l)if(t.maxWidth=Math.min(n.right,l),"middle"===o.horizontal)t.left=e[o.horizontal]>l/2?l-n.right:0;else if(e[o.horizontal]>l/2){var h=Math.min(l,"middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.right:e.left);t.maxWidth=Math.min(n.right,h),t.left=Math.max(0,h-t.maxWidth)}else t.left="middle"===r.horizontal?e.center:r.horizontal===o.horizontal?e.left:e.right,t.maxWidth=Math.min(n.right,l-t.left)}},ac6a:function(t,e,n){for(var i=n("cadf"),r=n("0d58"),o=n("2aba"),s=n("7726"),a=n("32e9"),c=n("84f2"),l=n("2b4c"),u=l("iterator"),h=l("toStringTag"),d=c.Array,f={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=r(f),m=0;m1?arguments[1]:void 0,i=r(e.length),c=void 0===n?i:Math.min(r(n),i),l=String(t);return a?a.call(e,l,c):e.slice(c-l.length,c)===l}})},af30:function(t,e,n){"use strict";var i=n("0068").isWhiteSpace,r=n("0068").isPunctChar,o=n("0068").isMdAsciiPunct,s=/['"]/,a=/['"]/g,c="’";function l(t,e,n){return t.substr(0,e)+n+t.substr(e+1)}function u(t,e){var n,s,u,h,d,f,p,m,v,g,_,b,y,w,k,x,C,S,A,E,q;for(A=[],n=0;n=0;C--)if(A[C].level<=p)break;if(A.length=C+1,"text"===s.type){u=s.content,d=0,f=u.length;t:while(d=0)v=u.charCodeAt(h.index-1);else for(C=n-1;C>=0;C--){if("softbreak"===t[C].type||"hardbreak"===t[C].type)break;if("text"===t[C].type){v=t[C].content.charCodeAt(t[C].content.length-1);break}}if(g=32,d=48&&v<=57&&(x=k=!1),k&&x&&(k=!1,x=b),k||x){if(x)for(C=A.length-1;C>=0;C--){if(m=A[C],A[C].level=0;e--)"inline"===t.tokens[e].type&&s.test(t.tokens[e].content)&&u(t.tokens[e].children,t)}},b05d:function(t,e,n){"use strict";n("7f7f"),n("cadf"),n("456d"),n("ac6a"),n("7514"),n("6b54"),n("aef6"),n("f559"),n("6762"),n("2fdb"),n("c5f6"),n("7cdf"),n("f751");var i=n("0967");function r(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),i=1;i=0?r=s:(r=i+s,r<0&&(r=0));while(rn.length)&&(e=n.length),e-=t.length;var i=n.indexOf(t,e);return-1!==i&&i===e}),!1===i["c"]&&("function"!==typeof Element.prototype.matches&&(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.webkitMatchesSelector||function(t){var e=this,n=(e.document||e.ownerDocument).querySelectorAll(t),i=0;while(n[i]&&n[i]!==e)++i;return Boolean(n[i])}),"function"!==typeof Element.prototype.closest&&(Element.prototype.closest=function(t){var e=this;while(e&&1===e.nodeType){if(e.matches(t))return e;e=e.parentNode}return null}),function(t){t.forEach(function(t){t.hasOwnProperty("remove")||Object.defineProperty(t,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})})}([Element.prototype,CharacterData.prototype,DocumentType.prototype])),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null==this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),i=n.length>>>0,r=arguments[1],o=0;o=i.sm,n.gt.sm=e>=i.md,n.gt.md=e>=i.lg,n.gt.lg=e>=i.xl,n.lt.sm=ei.xl},u={},h=16;this.setSizes=function(t){l.forEach(function(e){void 0!==t[e]&&(u[e]=t[e])})},this.setDebounce=function(t){h=t};var d=function(){var t=getComputedStyle(document.body);t.getPropertyValue("--q-size-sm")&&l.forEach(function(e){n.sizes[e]=parseInt(t.getPropertyValue("--q-size-".concat(e)),10)}),n.setSizes=function(t){l.forEach(function(e){t[e]&&(n.sizes[e]=t[e])}),o(!0)},n.setDebounce=function(t){var e=function(){o()};r&&window.removeEventListener("resize",r,a["d"].passive),r=t>0?Object(c["a"])(e,t):e,window.addEventListener("resize",r,a["d"].passive)},n.setDebounce(h),Object.keys(u).length>0?(n.setSizes(u),u=void 0):o()};!0===i["b"]?e.takeover.push(d):d(),s["a"].util.defineReactive(t,"screen",this)}else t.screen=this}},h=n("582c"),d=n("ec5d"),f=n("bc78");function p(t){return!0===t.ios?"ios":!0===t.android?"android":!0===t.winphone?"winphone":void 0}function m(t,e){var n=t.is,i=t.has,r=t.within,o=[n.desktop?"desktop":"mobile",i.touch?"touch":"no-touch"];if(!0===n.mobile){var s=p(n);void 0!==s&&o.push("platform-"+s)}return!0===n.cordova?(o.push("cordova"),!0!==n.ios||void 0!==e.cordova&&!1===e.cordova.iosStatusBarPadding||o.push("q-ios-padding")):!0===n.electron&&o.push("electron"),!0===r.iframe&&o.push("within-iframe"),o}function v(t,e){var n=m(t,e);!0===t.is.ie&&11===t.is.versionNumber?n.forEach(function(t){return document.body.classList.add(t)}):document.body.classList.add.apply(document.body.classList,n),!0===t.is.ios&&document.body.addEventListener("touchstart",function(){})}function g(t){for(var e in t)Object(f["g"])(e,t[e])}var _={install:function(t,e,n){!0!==i["c"]?(n.brand&&g(n.brand),v(t.platform,n)):e.server.push(function(t,e){var i=m(t.platform,n),r=e.ssr.setBodyClasses;"function"===typeof r?r(i):e.ssr.Q_BODY_CLASSES=i.join(" ")})}},b={name:"material-icons",type:{positive:"check_circle",negative:"warning",info:"info",warning:"priority_high"},arrow:{up:"arrow_upward",right:"arrow_forward",down:"arrow_downward",left:"arrow_back",dropdown:"arrow_drop_down"},chevron:{left:"chevron_left",right:"chevron_right"},colorPicker:{spectrum:"gradient",tune:"tune",palette:"style"},pullToRefresh:{icon:"refresh"},carousel:{left:"chevron_left",right:"chevron_right",navigationIcon:"lens",thumbnails:"view_carousel"},chip:{remove:"cancel",selected:"check"},datetime:{arrowLeft:"chevron_left",arrowRight:"chevron_right",now:"access_time",today:"today"},editor:{bold:"format_bold",italic:"format_italic",strikethrough:"strikethrough_s",underline:"format_underlined",unorderedList:"format_list_bulleted",orderedList:"format_list_numbered",subscript:"vertical_align_bottom",superscript:"vertical_align_top",hyperlink:"link",toggleFullscreen:"fullscreen",quote:"format_quote",left:"format_align_left",center:"format_align_center",right:"format_align_right",justify:"format_align_justify",print:"print",outdent:"format_indent_decrease",indent:"format_indent_increase",removeFormat:"format_clear",formatting:"text_format",fontSize:"format_size",align:"format_align_left",hr:"remove",undo:"undo",redo:"redo",header:"format_size",code:"code",size:"format_size",font:"font_download"},expansionItem:{icon:"keyboard_arrow_down",denseIcon:"arrow_drop_down"},fab:{icon:"add",activeIcon:"close"},field:{clear:"cancel",error:"error"},pagination:{first:"first_page",prev:"keyboard_arrow_left",next:"keyboard_arrow_right",last:"last_page"},rating:{icon:"grade"},stepper:{done:"check",active:"edit",error:"warning"},tabs:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down"},table:{arrowUp:"arrow_upward",warning:"warning",prevPage:"chevron_left",nextPage:"chevron_right"},tree:{icon:"play_arrow"},uploader:{done:"done",clear:"clear",add:"add_box",upload:"cloud_upload",removeQueue:"clear_all",removeUploaded:"done_all"}},y={__installed:!1,install:function(t,e){var n=this;this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b;e.set=n.set,!0===i["c"]||void 0!==t.iconSet?t.iconSet=e:s["a"].util.defineReactive(t,"iconSet",e),n.name=e.name,n.def=e},this.set(e)}},w={server:[],takeover:[]},k={version:o["a"]},x=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.__installed){this.__installed=!0;var n=e.config||{};if(i["a"].install(k,w),_.install(k,w,n),u.install(k,w),h["a"].install(k,n),d["a"].install(k,w,e.lang),y.install(k,e.iconSet),!0===i["c"]?t.mixin({beforeCreate:function(){this.$q=this.$root.$options.$q}}):t.prototype.$q=k,e.components&&Object.keys(e.components).forEach(function(n){var i=e.components[n];"function"===typeof i&&t.component(i.options.name,i)}),e.directives&&Object.keys(e.directives).forEach(function(n){var i=e.directives[n];void 0!==i.name&&void 0!==i.unbind&&t.directive(i.name,i)}),e.plugins){var r={$q:k,queues:w,cfg:n};Object.keys(e.plugins).forEach(function(t){var n=e.plugins[t];"function"===typeof n.install&&n!==i["a"]&&n!==u&&n.install(r)})}}},C=n("3c93"),S=n.n(C),A={mounted:function(){var t=this;w.takeover.forEach(function(e){e(t.$q)})}},E=function(t){if(t.ssr){var e=S()({},k);Object.assign(t.ssr,{Q_HEAD_TAGS:"",Q_BODY_ATTRS:"",Q_BODY_TAGS:""}),w.server.forEach(function(n){n(e,t)}),t.app.$q=e}else{var n=t.app.mixins||[];n.includes(A)||(t.app.mixins=n.concat(A))}};e["a"]={version:o["a"],install:x,lang:d["a"],iconSet:y,ssrUpdate:E}},b0bf:function(t,e,n){"use strict";var i=/]+[^>]*>/;function r(t){return i.test(t)}var o={root:/]+>/,width:/(^|\s)width\s*=\s*"(.+?)"/i,height:/(^|\s)height\s*=\s*"(.+?)"/i,viewbox:/(^|\s)viewbox\s*=\s*"(.+?)"/i};function s(t){var e=1;if(t&&t[2]){var n=t[2].split(/\s/g);4===n.length&&(n=n.map(function(t){return parseInt(t,10)}),e=(n[2]-n[0])/(n[3]-n[1]))}return e}function a(t){var e=t.toString().replace(/[\r\n\s]+/g," "),n=e.match(o.root),i=n&&n[0];if(i){var r=i.match(o.width),a=i.match(o.height),c=i.match(o.viewbox),l=s(c);return{width:parseInt(r&&r[2],10)||0,height:parseInt(a&&a[2],10)||0,ratio:l}}}function c(t){var e=a(t),n=e.width,i=e.height,r=e.ratio;if(n&&i)return{width:n,height:i};if(n)return{width:n,height:Math.floor(n/r)};if(i)return{width:Math.floor(i*r),height:i};throw new TypeError("invalid svg")}t.exports={detect:r,calculate:c}},b0c5:function(t,e,n){"use strict";var i=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:i!==/./.exec},{exec:i})},b117:function(t,e,n){"use strict";t.exports=function(t){var e={};e.src_Any=n("cbc7").source,e.src_Cc=n("a7bc").source,e.src_Z=n("4fc2").source,e.src_P=n("7ca0").source,e.src_ZPCc=[e.src_Z,e.src_P,e.src_Cc].join("|"),e.src_ZCc=[e.src_Z,e.src_Cc].join("|");var i="[><|]";return e.src_pseudo_letter="(?:(?!"+i+"|"+e.src_ZPCc+")"+e.src_Any+")",e.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",e.src_auth="(?:(?:(?!"+e.src_ZCc+"|[@/\\[\\]()]).)+@)?",e.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",e.src_host_terminator="(?=$|"+i+"|"+e.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+e.src_ZPCc+"))",e.src_path="(?:[/?#](?:(?!"+e.src_ZCc+"|"+i+"|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+e.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+e.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+e.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+e.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+e.src_ZCc+"|[']).)+\\'|\\'(?="+e.src_pseudo_letter+"|[-]).|\\.{2,3}[a-zA-Z0-9%/]|\\.(?!"+e.src_ZCc+"|[.]).|"+(t&&t["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+e.src_ZCc+").|\\!(?!"+e.src_ZCc+"|[!]).|\\?(?!"+e.src_ZCc+"|[?]).)+|\\/)?",e.src_email_name='[\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]+',e.src_xn="xn--[a-z0-9\\-]{1,59}",e.src_domain_root="(?:"+e.src_xn+"|"+e.src_pseudo_letter+"{1,63})",e.src_domain="(?:"+e.src_xn+"|(?:"+e.src_pseudo_letter+")|(?:"+e.src_pseudo_letter+"(?:-|"+e.src_pseudo_letter+"){0,61}"+e.src_pseudo_letter+"))",e.src_host="(?:(?:(?:(?:"+e.src_domain+")\\.)*"+e.src_domain+"))",e.tpl_host_fuzzy="(?:"+e.src_ip4+"|(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%)))",e.tpl_host_no_ip_fuzzy="(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%))",e.src_host_strict=e.src_host+e.src_host_terminator,e.tpl_host_fuzzy_strict=e.tpl_host_fuzzy+e.src_host_terminator,e.src_host_port_strict=e.src_host+e.src_port+e.src_host_terminator,e.tpl_host_port_fuzzy_strict=e.tpl_host_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_port_no_ip_fuzzy_strict=e.tpl_host_no_ip_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+e.src_ZPCc+"|>|$))",e.tpl_email_fuzzy="(^|"+i+"|\\(|"+e.src_ZCc+")("+e.src_email_name+"@"+e.tpl_host_fuzzy_strict+")",e.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_fuzzy_strict+e.src_path+")",e.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_no_ip_fuzzy_strict+e.src_path+")",e}},b326:function(t,e){function n(t,e){var n=[],i=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done);i=!0)if(n.push(s.value),e&&n.length===e)break}catch(c){r=!0,o=c}finally{try{i||null==a["return"]||a["return"]()}finally{if(r)throw o}}return n}t.exports=n},b498:function(t,e,n){"use strict";n("f751"),n("28a5"),n("aef6"),n("c5f6");var i=n("adc8"),r=n.n(i),o=(n("f559"),n("6762"),n("2fdb"),n("2b0e")),s=n("8621"),a=function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:250,i=!1;return function(){if(i)return e;i=!0;for(var r=arguments.length,o=new Array(r),s=0;si.sensitivity[0]&&(i.event.dir=s<0?"up":"down"),i.direction.horizontal&&o>a&&a<100&&c>i.sensitivity[0]&&(i.event.dir=r<0?"left":"right"),i.direction.up&&oi.sensitivity[0]&&(i.event.dir="up"),i.direction.down&&o0&&o<100&&l>i.sensitivity[0]&&(i.event.dir="down"),i.direction.left&&o>a&&r<0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="left"),i.direction.right&&o>a&&r>0&&a<100&&c>i.sensitivity[0]&&(i.event.dir="right"),!1!==i.event.dir?(document.body.classList.add("no-pointer-events"),Object(v["h"])(t),Object(g["a"])(),i.handler({evt:t,direction:i.event.dir,duration:e,distance:{x:o,y:a}})):i.event.abort=!0}}else Object(v["h"])(t)},end:function(t){void 0!==i.event&&(Object(m["a"])(i),!1===i.event.abort&&!1!==i.event.dir&&(document.body.classList.remove("no-pointer-events"),Object(v["h"])(t)),i.event=void 0)}};t.__qtouchswipe&&(t.__qtouchswipe_old=t.__qtouchswipe),t.__qtouchswipe=i,!0===n&&t.addEventListener("mousedown",i.mouseStart),t.addEventListener("touchstart",i.start,v["d"].notPassive),t.addEventListener("touchmove",i.move,v["d"].notPassive),t.addEventListener("touchcancel",i.end),t.addEventListener("touchend",i.end)},update:function(t,e){e.oldValue!==e.value&&(t.__qtouchswipe.handler=e.value)},unbind:function(t,e){var n=t.__qtouchswipe_old||t.__qtouchswipe;void 0!==n&&(Object(m["a"])(n),document.body.classList.remove("no-pointer-events"),!0===e.modifiers.mouse&&(t.removeEventListener("mousedown",n.mouseStart),document.removeEventListener("mousemove",n.move,!0),document.removeEventListener("mouseup",n.mouseEnd,!0)),t.removeEventListener("touchstart",n.start,v["d"].notPassive),t.removeEventListener("touchmove",n.move,v["d"].notPassive),t.removeEventListener("touchcancel",n.end),t.removeEventListener("touchend",n.end),delete t[t.__qtouchswipe_old?"__qtouchswipe_old":"__qtouchswipe"])}},w=n("dde5"),k=o["a"].extend({name:"QTabPanelWrapper",render:function(t){return t("div",{staticClass:"q-panel scroll",attrs:{role:"tabpanel"},on:{input:v["g"]}},Object(w["a"])(this,"default"))}}),x={directives:{TouchSwipe:y},props:{value:{required:!0},animated:Boolean,infinite:Boolean,swipeable:Boolean,transitionPrev:{type:String,default:"slide-right"},transitionNext:{type:String,default:"slide-left"},keepAlive:Boolean},data:function(){return{panelIndex:null,panelTransition:null}},computed:{panelDirectives:function(){if(this.swipeable)return[{name:"touch-swipe",value:this.__swipe,modifiers:{horizontal:!0,mouse:!0}}]},contentKey:function(){return"string"===typeof this.value||"number"===typeof this.value?this.value:String(this.value)}},watch:{value:function(t,e){var n=this,i=!0===this.__isValidPanelName(t)?this.__getPanelIndex(t):-1;!0!==this.__forcedPanelTransition&&this.__updatePanelTransition(-1===i?0:i1&&void 0!==arguments[1]?arguments[1]:this.panelIndex,i=n+t,r=this.panels;while(i>-1&&i0&&-1!==n&&n!==r.length&&this.__go(t,-1===t?r.length:-1)},__swipe:function(t){this.__go((!0===this.$q.lang.rtl?-1:1)*("left"===t.direction?1:-1))},__updatePanelIndex:function(){var t=this.__getPanelIndex(this.value);return this.panelIndex!==t&&(this.panelIndex=t),!0},__getPanelContent:function(t){if(0!==this.panels.length){var e=this.__isValidPanelName(this.value)&&this.__updatePanelIndex()&&this.panels[this.panelIndex],n=!0===this.keepAlive?[t("keep-alive",[t(k,{key:this.contentKey},[e])])]:[t("div",{staticClass:"q-panel scroll",key:this.contentKey,attrs:{role:"tabpanel"},on:{input:v["g"]}},[e])];return!0===this.animated?[t("transition",{props:{name:this.panelTransition}},n)]:n}}},render:function(t){return this.panels=void 0!==this.$scopedSlots.default?this.$scopedSlots.default():[],this.__render(t)}},C={props:{name:{required:!0},disable:Boolean}},S=o["a"].extend({name:"QTabPanels",mixins:[x],methods:{__render:function(t){return t("div",{staticClass:"q-tab-panels q-panel-parent",directives:this.panelDirectives,on:this.$listeners},this.__getPanelContent(t))}}}),A=o["a"].extend({name:"QTabPanel",mixins:[C],render:function(t){return t("div",{staticClass:"q-tab-panel",on:this.$listeners},Object(w["a"])(this,"default"))}}),E=["rgb(255,204,204)","rgb(255,230,204)","rgb(255,255,204)","rgb(204,255,204)","rgb(204,255,230)","rgb(204,255,255)","rgb(204,230,255)","rgb(204,204,255)","rgb(230,204,255)","rgb(255,204,255)","rgb(255,153,153)","rgb(255,204,153)","rgb(255,255,153)","rgb(153,255,153)","rgb(153,255,204)","rgb(153,255,255)","rgb(153,204,255)","rgb(153,153,255)","rgb(204,153,255)","rgb(255,153,255)","rgb(255,102,102)","rgb(255,179,102)","rgb(255,255,102)","rgb(102,255,102)","rgb(102,255,179)","rgb(102,255,255)","rgb(102,179,255)","rgb(102,102,255)","rgb(179,102,255)","rgb(255,102,255)","rgb(255,51,51)","rgb(255,153,51)","rgb(255,255,51)","rgb(51,255,51)","rgb(51,255,153)","rgb(51,255,255)","rgb(51,153,255)","rgb(51,51,255)","rgb(153,51,255)","rgb(255,51,255)","rgb(255,0,0)","rgb(255,128,0)","rgb(255,255,0)","rgb(0,255,0)","rgb(0,255,128)","rgb(0,255,255)","rgb(0,128,255)","rgb(0,0,255)","rgb(128,0,255)","rgb(255,0,255)","rgb(245,0,0)","rgb(245,123,0)","rgb(245,245,0)","rgb(0,245,0)","rgb(0,245,123)","rgb(0,245,245)","rgb(0,123,245)","rgb(0,0,245)","rgb(123,0,245)","rgb(245,0,245)","rgb(214,0,0)","rgb(214,108,0)","rgb(214,214,0)","rgb(0,214,0)","rgb(0,214,108)","rgb(0,214,214)","rgb(0,108,214)","rgb(0,0,214)","rgb(108,0,214)","rgb(214,0,214)","rgb(163,0,0)","rgb(163,82,0)","rgb(163,163,0)","rgb(0,163,0)","rgb(0,163,82)","rgb(0,163,163)","rgb(0,82,163)","rgb(0,0,163)","rgb(82,0,163)","rgb(163,0,163)","rgb(92,0,0)","rgb(92,46,0)","rgb(92,92,0)","rgb(0,92,0)","rgb(0,92,46)","rgb(0,92,92)","rgb(0,46,92)","rgb(0,0,92)","rgb(46,0,92)","rgb(92,0,92)","rgb(255,255,255)","rgb(205,205,205)","rgb(178,178,178)","rgb(153,153,153)","rgb(127,127,127)","rgb(102,102,102)","rgb(76,76,76)","rgb(51,51,51)","rgb(25,25,25)","rgb(0,0,0)"];e["a"]=o["a"].extend({name:"QColor",directives:{TouchPan:l["a"]},props:{value:String,defaultValue:String,defaultView:{type:String,default:"spectrum",validator:function(t){return["spectrum","tune","palette"]}},formatModel:{type:String,default:"auto",validator:function(t){return["auto","hex","rgb","hexa","rgba"].includes(t)}},noHeader:Boolean,noFooter:Boolean,disable:Boolean,readonly:Boolean,dark:Boolean},data:function(){return{topView:"auto"===this.formatModel?void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")?"hex":"rgb":this.formatModel.startsWith("hex")?"hex":"rgb",view:this.defaultView,model:this.__parseModel(this.value||this.defaultValue)}},watch:{value:function(t){var e=this.__parseModel(t||this.defaultValue);e.hex!==this.model.hex&&(this.model=e)},defaultValue:function(t){if(!this.value&&t){var e=this.__parseModel(t);e.hex!==this.model.hex&&(this.model=e)}}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},forceHex:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("hex")>-1},forceAlpha:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1},isHex:function(){return void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")},isOutputHex:function(){return null!==this.forceHex?this.forceHex:this.isHex},hasAlpha:function(){return null!==this.forceAlpha?this.forceAlpha:void 0!==this.model.a},currentBgColor:function(){return{backgroundColor:this.model.rgb||"#000"}},headerClass:function(){var t=void 0!==this.model.a&&this.model.a<65||Object(c["c"])(this.model)>.4;return"q-color-picker__header-content--".concat(t?"light":"dark")},spectrumStyle:function(){return{background:"hsl(".concat(this.model.h,",100%,50%)")}},spectrumPointerStyle:function(){return r()({top:"".concat(100-this.model.v,"%")},this.$q.lang.rtl?"right":"left","".concat(this.model.s,"%"))},inputsArray:function(){var t=["r","g","b"];return!0===this.hasAlpha&&t.push("a"),t}},created:function(){this.__spectrumChange=a(this.__spectrumChange,20)},render:function(t){var e=[this.__getContent(t)];return!0!==this.noHeader&&e.unshift(this.__getHeader(t)),!0!==this.noFooter&&e.push(this.__getFooter(t)),t("div",{staticClass:"q-color-picker",class:{disabled:this.disable,"q-color-picker--dark":this.dark}},e)},methods:{__getHeader:function(t){var e=this;return t("div",{staticClass:"q-color-picker__header relative-position overflow-hidden"},[t("div",{staticClass:"q-color-picker__header-bg absolute-full"}),t("div",{staticClass:"q-color-picker__header-content absolute-full",class:this.headerClass,style:this.currentBgColor},[t(d["a"],{props:{value:this.topView,dense:!0,align:"justify"},on:{input:function(t){e.topView=t}}},[t(f["a"],{props:{label:"HEX"+(!0===this.hasAlpha?"A":""),name:"hex",ripple:!1}}),t(f["a"],{props:{label:"RGB"+(!0===this.hasAlpha?"A":""),name:"rgb",ripple:!1}})]),t("div",{staticClass:"q-color-picker__header-banner row flex-center no-wrap"},[t("input",{staticClass:"fit",domProps:{value:this.model[this.topView]},attrs:this.editable?null:{readonly:!0},on:{input:function(t){e.__updateErrorIcon(!0===e.__onEditorChange(t))},blur:function(t){!0===e.__onEditorChange(t,!0)&&e.$forceUpdate(),e.__updateErrorIcon(!1)}}}),t(h["a"],{ref:"errorIcon",staticClass:"q-color-picker__error-icon absolute no-pointer-events",props:{name:this.$q.iconSet.type.negative}})])])])},__getContent:function(t){return t(S,{props:{value:this.view,animated:!0}},[t(A,{staticClass:"q-color-picker__spectrum-tab",props:{name:"spectrum"}},this.__getSpectrumTab(t)),t(A,{staticClass:"q-pa-md q-color-picker__tune-tab",props:{name:"tune"}},this.__getTuneTab(t)),t(A,{staticClass:"q-pa-sm q-color-picker__palette-tab",props:{name:"palette"}},this.__getPaletteTab(t))])},__getFooter:function(t){var e=this;return t(d["a"],{staticClass:"q-color-picker__footer",props:{value:this.view,dense:!0,align:"justify"},on:{input:function(t){e.view=t}}},[t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.spectrum,name:"spectrum",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.tune,name:"tune",ripple:!1}}),t(f["a"],{props:{icon:this.$q.iconSet.colorPicker.palette,name:"palette",ripple:!1}})])},__getSpectrumTab:function(t){var e=this;return[t("div",{ref:"spectrum",staticClass:"q-color-picker__spectrum non-selectable relative-position cursor-pointer",style:this.spectrumStyle,class:{readonly:!this.editable},on:this.editable?{click:this.__spectrumClick}:null,directives:this.editable?[{name:"touch-pan",modifiers:{prevent:!0,stop:!0,mouse:!0,mousePrevent:!0,mouseStop:!0},value:this.__spectrumPan}]:null},[t("div",{style:{paddingBottom:"100%"}}),t("div",{staticClass:"q-color-picker__spectrum-white absolute-full"}),t("div",{staticClass:"q-color-picker__spectrum-black absolute-full"}),t("div",{staticClass:"absolute",style:this.spectrumPointerStyle},[void 0!==this.model.hex?t("div",{staticClass:"q-color-picker__spectrum-circle"}):null])]),t("div",{staticClass:"q-color-picker__sliders"},[t("div",{staticClass:"q-color-picker__hue q-mx-sm non-selectable"},[t(u["a"],{props:{value:this.model.h,min:0,max:360,fillHandleAlways:!0,readonly:!this.editable},on:{input:this.__onHueChange,dragend:function(t){return e.__onHueChange(t,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"q-mx-sm q-color-picker__alpha non-selectable"},[t(u["a"],{props:{value:this.model.a,min:0,max:100,fillHandleAlways:!0,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)},dragend:function(t){return e.__onNumericChange({target:{value:t}},"a",100,!0)}}})]):null])]},__getTuneTab:function(t){var e=this;return[t("div",{staticClass:"row items-center no-wrap"},[t("div",["R"]),t(u["a"],{props:{value:this.model.r,min:0,max:255,color:"red",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"r",255)}}}),t("input",{domProps:{value:this.model.r},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"r",255)},blur:function(t){return e.__onNumericChange(t,"r",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["G"]),t(u["a"],{props:{value:this.model.g,min:0,max:255,color:"green",dark:this.dark,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"g",255)}}}),t("input",{domProps:{value:this.model.g},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"g",255)},blur:function(t){return e.__onNumericChange(t,"g",255,!0)}}})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["B"]),t(u["a"],{props:{value:this.model.b,min:0,max:255,color:"blue",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"b",255)}}}),t("input",{domProps:{value:this.model.b},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"b",255)},blur:function(t){return e.__onNumericChange(t,"b",255,!0)}}})]),!0===this.hasAlpha?t("div",{staticClass:"row items-center no-wrap"},[t("div",["A"]),t(u["a"],{props:{value:this.model.a,color:"grey",readonly:!this.editable,dark:this.dark},on:{input:function(t){return e.__onNumericChange({target:{value:t}},"a",100)}}}),t("input",{domProps:{value:this.model.a},attrs:{maxlength:3,readonly:!this.editable},on:{input:function(t){return e.__onNumericChange(t,"a",100)},blur:function(t){return e.__onNumericChange(t,"a",100,!0)}}})]):null]},__getPaletteTab:function(t){var e=this;return[t("div",{staticClass:"row items-center",class:this.editable?"cursor-pointer":null},E.map(function(n){return t("div",{staticClass:"q-color-picker__cube col-auto",style:{backgroundColor:n},on:e.editable?{click:function(){e.__onPalettePick(n)}}:null})}))]},__onSpectrumChange:function(t,e,n){var i=this.$refs.spectrum;if(void 0!==i){var r=i.clientWidth,o=i.clientHeight,s=i.getBoundingClientRect(),a=Math.min(r,Math.max(0,t-s.left));this.$q.lang.rtl&&(a=r-a);var l=Math.min(o,Math.max(0,e-s.top)),u=Math.round(100*a/r),h=Math.round(100*Math.max(0,Math.min(1,-l/o+1))),d=Object(c["b"])({h:this.model.h,s:u,v:h,a:!0===this.hasAlpha?this.model.a:void 0});this.model.s=u,this.model.v=h,this.__update(d,n)}},__onHueChange:function(t,e){t=Math.round(t);var n=Object(c["b"])({h:t,s:this.model.s,v:this.model.v,a:!0===this.hasAlpha?this.model.a:void 0});this.model.h=t,this.__update(n,e)},__onNumericChange:function(t,e,n,i){if(/^[0-9]+$/.test(t.target.value)){var r=Math.floor(Number(t.target.value));if(r<0||r>n)i&&this.$forceUpdate();else{var o={r:"r"===e?r:this.model.r,g:"g"===e?r:this.model.g,b:"b"===e?r:this.model.b,a:!0===this.hasAlpha?"a"===e?r:this.model.a:void 0};if("a"!==e){var s=Object(c["e"])(o);this.model.h=s.h,this.model.s=s.s,this.model.v=s.v}if(this.__update(o,i),!0!==i&&void 0!==t.target.selectionEnd){var a=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(a,a)})}}}else i&&this.$forceUpdate()},__onEditorChange:function(t,e){var n,i=t.target.value;if("hex"===this.topView){if(i.length!==(!0===this.hasAlpha?9:7)||!/^#[0-9A-Fa-f]+$/.test(i))return!0;n=Object(c["a"])(i)}else{var r;if(!i.endsWith(")"))return!0;if(!0!==this.hasAlpha&&i.startsWith("rgb(")){if(r=i.substring(4,i.length-1).split(",").map(function(t){return parseInt(t,10)}),3!==r.length||!/^rgb\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3}\)$/.test(i))return!0}else{if(!0!==this.hasAlpha||!i.startsWith("rgba("))return!0;if(r=i.substring(5,i.length-1).split(","),4!==r.length||!/^rgba\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/.test(i))return!0;for(var o=0;o<3;o++){var s=parseInt(r[o],10);if(s<0||s>255)return!0;r[o]=s}var a=parseFloat(r[3]);if(a<0||a>1)return!0;r[3]=a}if(r[0]<0||r[0]>255||r[1]<0||r[1]>255||r[2]<0||r[2]>255||!0===this.hasAlpha&&(r[3]<0||r[3]>1))return!0;n={r:r[0],g:r[1],b:r[2],a:!0===this.hasAlpha?100*r[3]:void 0}}var l=Object(c["e"])(n);if(this.model.h=l.h,this.model.s=l.s,this.model.v=l.v,this.__update(n,e),!0!==e){var u=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(u,u)})}},__onPalettePick:function(t){var e=t.substring(4,t.length-1).split(","),n={r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:this.model.a},i=Object(c["e"])(n);this.model.h=i.h,this.model.s=i.s,this.model.v=i.v,this.__update(n,!0)},__update:function(t,e){this.model.hex=Object(c["d"])(t),this.model.rgb=Object(c["f"])(t),this.model.r=t.r,this.model.g=t.g,this.model.b=t.b,this.model.a=t.a;var n=this.model[!0===this.isOutputHex?"hex":"rgb"];this.$emit("input",n),e&&n!==this.value&&this.$emit("change",n)},__updateErrorIcon:function(t){this.$refs.errorIcon.$el.style.opacity=t?1:0},__parseModel:function(t){var e=void 0!==this.forceAlpha?this.forceAlpha:"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1;if(null===t||void 0===t||""===t||!0!==s["a"].anyColor(t))return{h:0,s:0,v:0,r:0,g:0,b:0,a:!0===e?100:void 0,hex:void 0,rgb:void 0};var n=Object(c["h"])(t);return!0===e&&void 0===n.a&&(n.a=100),n.hex=Object(c["d"])(n),n.rgb=Object(c["f"])(n),Object.assign(n,Object(c["e"])(n))},__spectrumPan:function(t){t.isFinal?this.__onSpectrumChange(t.position.left,t.position.top,!0):this.__spectrumChange(t)},__spectrumChange:function(t){this.__onSpectrumChange(t.position.left,t.position.top)},__spectrumClick:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset,!0)}}})},b6b4:function(t,e){function n(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}t.exports=n},b6d5:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("d882"),o=n("0909"),s=n("0967");e["a"]=i["a"].extend({name:"QResizeObserver",mixins:[o["a"]],props:{debounce:{type:[String,Number],default:100}},data:function(){return this.hasObserver?{}:{url:this.$q.platform.is.ie?null:"about:blank"}},methods:{trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__onResize():this.timer||(this.timer=setTimeout(this.__onResize,this.debounce))},__onResize:function(){if(this.timer=null,this.$el&&this.$el.parentNode){var t=this.$el.parentNode,e={width:t.offsetWidth,height:t.offsetHeight};e.width===this.size.width&&e.height===this.size.height||(this.size=e,this.$emit("resize",this.size))}}},render:function(t){var e=this;if(!1!==this.canRender&&!0!==this.hasObserver)return t("object",{style:this.style,attrs:{tabindex:-1,type:"text/html",data:this.url,"aria-hidden":!0},on:{load:function(){e.$el.contentDocument.defaultView.addEventListener("resize",e.trigger,r["d"].passive),e.trigger(!0)}}})},beforeCreate:function(){this.size={width:-1,height:-1},!0!==s["c"]&&(this.hasObserver="undefined"!==typeof ResizeObserver,!0!==this.hasObserver&&(this.style="".concat(this.$q.platform.is.ie?"visibility:hidden;":"","display:block;position:absolute;top:0;left:0;right:0;bottom:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1;")))},mounted:function(){if(!0===this.hasObserver)return this.observer=new ResizeObserver(this.trigger),void this.observer.observe(this.$el.parentNode);this.trigger(!0),this.$q.platform.is.ie&&(this.url="about:blank")},beforeDestroy:function(){clearTimeout(this.timer),!0!==this.hasObserver?this.$el.contentDocument&&this.$el.contentDocument.defaultView.removeEventListener("resize",this.trigger,r["d"].passive):this.$el.parentNode&&this.observer.unobserve(this.$el.parentNode)}})},baca:function(t,e,n){"use strict";function i(t){switch(t){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}t.exports=function(t,e){var n=t.pos;while(n=0;e--)n=t[e],"text"!==n.type||i||(n.content=n.content.replace(o,a)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function l(t){var e,n,r=0;for(e=t.length-1;e>=0;e--)n=t[e],"text"!==n.type||r||i.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---([^-]|$)/gm,"$1—$2").replace(/(^|\s)--(\s|$)/gm,"$1–$2").replace(/(^|[^-\s])--([^-\s]|$)/gm,"$1–$2")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&(r.test(t.tokens[e].content)&&c(t.tokens[e].children),i.test(t.tokens[e].content)&&l(t.tokens[e].children))}},bc78:function(t,e,n){"use strict";n.d(e,"d",function(){return i}),n.d(e,"f",function(){return r}),n.d(e,"h",function(){return o}),n.d(e,"a",function(){return s}),n.d(e,"b",function(){return a}),n.d(e,"e",function(){return c}),n.d(e,"c",function(){return d}),n.d(e,"g",function(){return f});n("28a5"),n("f559"),n("a481"),n("6b54");function i(t){var e=t.r,n=t.g,i=t.b,r=t.a,o=void 0!==r;if(e=Math.round(e),n=Math.round(n),i=Math.round(i),e>255||n>255||i>255||o&&r>100)throw new TypeError("Expected 3 numbers below 256 (and optionally one below 100)");return r=o?(256|Math.round(255*r/100)).toString(16).slice(1):"","#"+(i|n<<8|e<<16|1<<24).toString(16).slice(1)+r}function r(t){var e=t.r,n=t.g,i=t.b,r=t.a;return"rgb".concat(void 0!==r?"a":"","(").concat(e,",").concat(n,",").concat(i).concat(void 0!==r?","+r/100:"",")")}function o(t){if("string"!==typeof t)throw new TypeError("Expected a string");if(t=t.replace(/ /g,""),t.startsWith("#"))return s(t);var e=t.substring(t.indexOf("(")+1,t.length-1).split(",");return{r:parseInt(e[0],10),g:parseInt(e[1],10),b:parseInt(e[2],10),a:void 0!==e[3]?100*parseFloat(e[3]):void 0}}function s(t){if("string"!==typeof t)throw new TypeError("Expected a string");t=t.replace(/^#/,""),3===t.length?t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]:4===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]+t[3]+t[3]);var e=parseInt(t,16);return t.length>6?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:Math.round((255&e)/2.55)}:{r:e>>16,g:e>>8&255,b:255&e}}function a(t){var e,n,i,r,o,s,a,c,l=t.h,u=t.s,h=t.v,d=t.a;switch(u/=100,h/=100,l/=360,r=Math.floor(6*l),o=6*l-r,s=h*(1-u),a=h*(1-o*u),c=h*(1-(1-o)*u),r%6){case 0:e=h,n=c,i=s;break;case 1:e=a,n=h,i=s;break;case 2:e=s,n=h,i=c;break;case 3:e=s,n=a,i=h;break;case 4:e=c,n=s,i=h;break;case 5:e=h,n=s,i=a;break}return{r:Math.round(255*e),g:Math.round(255*n),b:Math.round(255*i),a:d}}function c(t){var e,n=t.r,i=t.g,r=t.b,o=t.a,s=Math.max(n,i,r),a=Math.min(n,i,r),c=s-a,l=0===s?0:c/s,u=s/255;switch(s){case a:e=0;break;case n:e=i-r+c*(i2&&void 0!==arguments[2]?arguments[2]:document.body;if("string"!==typeof t)throw new TypeError("Expected a string as color");if("string"!==typeof e)throw new TypeError("Expected a string as value");if(!(n instanceof Element))throw new TypeError("Expected a DOM element");switch(n.style.setProperty("--q-color-".concat(t),e),t){case"negative":case"warning":n.style.setProperty("--q-color-".concat(t,"-l"),h(e,46));break;case"light":n.style.setProperty("--q-color-".concat(t,"-d"),h(e,-10))}}},bcaa:function(t,e,n){var i=n("cb7c"),r=n("d3f4"),o=n("a5b8");t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t),s=n.resolve;return s(e),n.promise}},bd4c:function(t,e,n){"use strict";n.d(e,"b",function(){return v});n("4917"),n("a481"),n("28a5");var i=n("68bf"),r=n.n(i),o=(n("cadf"),n("456d"),n("ac6a"),n("5ff7")),s=n("7937"),a=n("ec5d"),c=864e5,l=36e5,u=6e4,h=/\[((?:[^\]\\]|\\]|\\)*)\]|d{1,4}|M{1,4}|m{1,2}|w{1,2}|Qo|Do|D{1,4}|YY(?:YY)?|H{1,2}|h{1,2}|s{1,2}|S{1,3}|Z{1,2}|a{1,2}|[AQExX]/g;function d(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=t>0?"-":"+",i=Math.abs(t),r=Math.floor(i/60),o=i%60;return n+Object(s["d"])(r)+e+Object(s["d"])(o)}function f(t,e){var n=new Date(t.getFullYear(),e,0,0,0,0,0),i=n.getDate();t.setMonth(e-1,Math.min(i,t.getDate()))}function p(t,e,n){var i=new Date(t),r=n?1:-1;return Object.keys(e).forEach(function(t){if("month"!==t){var n="year"===t?"FullYear":Object(s["b"])("days"===t?"date":t);i["set".concat(n)](i["get".concat(n)]()+r*e[t])}else f(i,i.getMonth()+1+r*e.month)}),i}function m(t){if("number"===typeof t)return!0;var e=Date.parse(t);return!1===isNaN(e)}function v(t){var e=t,n=e.split("/").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),i=r()(n,3),o=i[0],s=i[1],a=i[2];return(a<1||a>new Date(o,s,0).getDate())&&(a=null),(s>12||0===s)&&(s=s%12||12),null!==o&&null!==s&&null!==a||(e=null,null!==o&&null===s&&(s=1)),{year:o,month:s,day:a,value:e}}function g(t){var e=t.split(":").concat([null,null,null]).slice(0,3).map(function(t){return parseInt(t,10)}).map(function(t){return!0===isNaN(t)?null:t}),n=r()(e,3),i=n[0],o=n[1],s=n[2];return{hour:null===i?null:i%24,minute:null===o?null:o%60,second:null===s?null:s%60}}function _(t,e){return C(new Date,t,e)}function b(t){var e=new Date(t).getDay();return 0===e?7:e}function y(t){var e=new Date(t.getFullYear(),t.getMonth(),t.getDate());e.setDate(e.getDate()-(e.getDay()+6)%7+3);var n=new Date(e.getFullYear(),0,4);n.setDate(n.getDate()-(n.getDay()+6)%7+3);var i=e.getTimezoneOffset()-n.getTimezoneOffset();e.setHours(e.getHours()-i);var r=(e-n)/(7*c);return 1+Math.floor(r)}function w(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=new Date(e).getTime(),o=new Date(n).getTime(),s=new Date(t).getTime();return i.inclusiveFrom&&r--,i.inclusiveTo&&o++,s>r&&s1?n-1:0),r=1;r1?n-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:"days",i=new Date(t),r=new Date(e);switch(n){case"years":return i.getFullYear()-r.getFullYear();case"months":return 12*(i.getFullYear()-r.getFullYear())+i.getMonth()-r.getMonth();case"days":return T(S(i,"day"),S(r,"day"),c);case"hours":return T(S(i,"hour"),S(r,"hour"),l);case"minutes":return T(S(i,"minute"),S(r,"minute"),u);case"seconds":return T(S(i,"second"),S(r,"second"),1e3)}}function O(t){return $(t,S(t,"year"),"days")+1}function D(t){return Object(o["a"])(t)?"date":"number"===typeof t?"number":"string"}function L(t,e,n){if(t||0===t)switch(e){case"date":return t;case"number":return t.getTime();default:return P(t,n)}}function M(t,e,n){var i=new Date(t);if(e){var r=new Date(e);if(io)return o}return i}function I(t,e,n){var i=new Date(t),r=new Date(e);if(void 0===n)return i.getTime()===r.getTime();switch(n){case"second":if(i.getSeconds()!==r.getSeconds())return!1;case"minute":if(i.getMinutes()!==r.getMinutes())return!1;case"hour":if(i.getHours()!==r.getHours())return!1;case"day":if(i.getDate()!==r.getDate())return!1;case"month":if(i.getMonth()!==r.getMonth())return!1;case"year":if(i.getFullYear()!==r.getFullYear())return!1;break;default:throw new Error("date isSameDate unknown unit ".concat(n))}return!0}function j(t){return new Date(t.getFullYear(),t.getMonth()+1,0).getDate()}function B(t){if(t>=11&&t<=13)return"".concat(t,"th");switch(t%10){case 1:return"".concat(t,"st");case 2:return"".concat(t,"nd");case 3:return"".concat(t,"rd")}return"".concat(t,"th")}var F={YY:function(t){return Object(s["d"])(t.getFullYear(),4).substr(2)},YYYY:function(t){return Object(s["d"])(t.getFullYear(),4)},M:function(t){return t.getMonth()+1},MM:function(t){return Object(s["d"])(t.getMonth()+1)},MMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNamesShort||a["a"].props.date.monthsShort)[t.getMonth()]},MMMM:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.monthNames||a["a"].props.date.months)[t.getMonth()]},Q:function(t){return Math.ceil((t.getMonth()+1)/3)},Qo:function(t){return B(this.Q(t))},D:function(t){return t.getDate()},Do:function(t){return B(t.getDate())},DD:function(t){return Object(s["d"])(t.getDate())},DDD:function(t){return O(t)},DDDD:function(t){return Object(s["d"])(O(t),3)},d:function(t){return t.getDay()},dd:function(t){return this.dddd(t).slice(0,2)},ddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNamesShort||a["a"].props.date.daysShort)[t.getDay()]},dddd:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e.dayNames||a["a"].props.date.days)[t.getDay()]},E:function(t){return t.getDay()||7},w:function(t){return y(t)},ww:function(t){return Object(s["d"])(y(t))},H:function(t){return t.getHours()},HH:function(t){return Object(s["d"])(t.getHours())},h:function(t){var e=t.getHours();return 0===e?12:e>12?e%12:e},hh:function(t){return Object(s["d"])(this.h(t))},m:function(t){return t.getMinutes()},mm:function(t){return Object(s["d"])(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return Object(s["d"])(t.getSeconds())},S:function(t){return Math.floor(t.getMilliseconds()/100)},SS:function(t){return Object(s["d"])(Math.floor(t.getMilliseconds()/10))},SSS:function(t){return Object(s["d"])(t.getMilliseconds(),3)},A:function(t){return this.H(t)<12?"AM":"PM"},a:function(t){return this.H(t)<12?"am":"pm"},aa:function(t){return this.H(t)<12?"a.m.":"p.m."},Z:function(t){return d(t.getTimezoneOffset(),":")},ZZ:function(t){return d(t.getTimezoneOffset())},X:function(t){return Math.floor(t.getTime()/1e3)},x:function(t){return t.getTime()}};function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"YYYY-MM-DDTHH:mm:ss.SSSZ",n=arguments.length>2?arguments[2]:void 0;if((0===t||t)&&t!==1/0&&t!==-1/0){var i=new Date(t);if(!isNaN(i))return e.replace(h,function(t,e){return t in F?F[t](i,n):void 0===e?t:e.split("\\]").join("]")})}}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return t.match(h)}function z(t){return Object(o["a"])(t)?new Date(t.getTime()):t}e["a"]={isValid:m,splitDate:v,splitTime:g,buildDate:_,getDayOfWeek:b,getWeekOfYear:y,isBetweenDates:w,addToDate:k,subtractFromDate:x,adjustDate:C,startOfDate:S,endOfDate:A,getMaxDate:E,getMinDate:q,getDateDiff:$,getDayOfYear:O,inferDateFormat:D,convertDateToFormat:L,getDateBetween:M,isSameDate:I,daysInMonth:j,formatter:F,formatDate:P,matchFormat:R,clone:z}},bd68:function(t,e,n){"use strict";t.exports=n("f0f2")},be03:function(t,e){var n=!0,i=!1,r=!1;function o(t,e,n){var i=t.attrIndex(e),r=[e,n];i<0?t.attrPush(r):t.attrs[i]=r}function s(t,e){for(var n=t[e].level-1,i=e-1;i>=0;i--)if(t[i].level===n)return i;return-1}function a(t,e){return f(t[e])&&p(t[e-1])&&m(t[e-2])&&v(t[e])}function c(t,e){if(t.children.unshift(l(t,e)),t.children[1].content=t.children[1].content.slice(3),t.content=t.content.slice(3),i)if(r){t.children.pop();var n="task-item-"+Math.ceil(1e7*Math.random()-1e3);t.children[0].content=t.children[0].content.slice(0,-1)+' id="'+n+'">',t.children.push(d(t.content,n,e))}else t.children.unshift(u(e)),t.children.push(h(e))}function l(t,e){var i=new e("html_inline","",0),r=n?' disabled="" ':"";return 0===t.content.indexOf("[ ] ")?i.content='
    \n':'
    \n')+'
    \n
      \n'}function a(){return"
    \n
    \n"}function c(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),'
  • '}function l(){return"
  • \n"}function u(t,e,n,i,r){var o=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(o+=":"+t[e].meta.subId),' ↩︎'}t.exports=function(t){var e=t.helpers.parseLinkLabel,n=t.utils.isSpace;function h(t,e,i,r){var o,s,a,c,l,u,h,d,f,p,m,v=t.bMarks[e]+t.tShift[e],g=t.eMarks[e];if(v+4>g)return!1;if(91!==t.src.charCodeAt(v))return!1;if(94!==t.src.charCodeAt(v+1))return!1;for(l=v+2;l=g||58!==t.src.charCodeAt(++l))return!1;if(r)return!0;l++,t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.refs||(t.env.footnotes.refs={}),u=t.src.slice(v+2,l-2),t.env.footnotes.refs[":"+u]=-1,h=new t.Token("footnote_reference_open","",1),h.meta={label:u},h.level=t.level++,t.tokens.push(h),o=t.bMarks[e],s=t.tShift[e],a=t.sCount[e],c=t.parentType,m=l,d=f=t.sCount[e]+l-(t.bMarks[e]+t.tShift[e]);while(l=c)&&(94===t.src.charCodeAt(l)&&(91===t.src.charCodeAt(l+1)&&(i=l+2,r=e(t,l+1),!(r<0)&&(n||(t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.list||(t.env.footnotes.list=[]),o=t.env.footnotes.list.length,t.md.inline.parse(t.src.slice(i,r),t.md,t.env,a=[]),s=t.push("footnote_ref","",0),s.meta={id:o},t.env.footnotes.list[o]={tokens:a}),t.pos=r+1,t.posMax=c,!0))))}function f(t,e){var n,i,r,o,s,a=t.posMax,c=t.pos;if(c+3>a)return!1;if(!t.env.footnotes||!t.env.footnotes.refs)return!1;if(91!==t.src.charCodeAt(c))return!1;if(94!==t.src.charCodeAt(c+1))return!1;for(i=c+2;i=a)&&(i++,n=t.src.slice(c+2,i-1),"undefined"!==typeof t.env.footnotes.refs[":"+n]&&(e||(t.env.footnotes.list||(t.env.footnotes.list=[]),t.env.footnotes.refs[":"+n]<0?(r=t.env.footnotes.list.length,t.env.footnotes.list[r]={label:n,count:0},t.env.footnotes.refs[":"+n]=r):r=t.env.footnotes.refs[":"+n],o=t.env.footnotes.list[r].count,t.env.footnotes.list[r].count++,s=t.push("footnote_ref","",0),s.meta={id:r,subId:o,label:n}),t.pos=i,t.posMax=a,!0)))}function p(t){var e,n,i,r,o,s,a,c,l,u,h=!1,d={};if(t.env.footnotes&&(t.tokens=t.tokens.filter(function(t){return"footnote_reference_open"===t.type?(h=!0,l=[],u=t.meta.label,!1):"footnote_reference_close"===t.type?(h=!1,d[":"+u]=l,!1):(h&&l.push(t),!h)}),t.env.footnotes.list)){for(s=t.env.footnotes.list,a=new t.Token("footnote_block_open","",1),t.tokens.push(a),e=0,n=s.length;e0?s[e].count:1,i=0;i=4)return!1;if(62!==t.src.charCodeAt(A++))return!1;if(r)return!0;c=f=t.sCount[e]+A-(t.bMarks[e]+t.tShift[e]),32===t.src.charCodeAt(A)?(A++,c++,f++,o=!1,y=!0):9===t.src.charCodeAt(A)?(y=!0,(t.bsCount[e]+f)%4===3?(A++,c++,f++,o=!1):o=!0):y=!1,p=[t.bMarks[e]],t.bMarks[e]=A;while(A=E,_=[t.sCount[e]],t.sCount[e]=f-c,b=[t.tShift[e]],t.tShift[e]=A-t.bMarks[e],k=t.md.block.ruler.getRules("blockquote"),g=t.parentType,t.parentType="blockquote",C=!1,d=e+1;d=E)break;if(62!==t.src.charCodeAt(A++)||C){if(u)break;for(w=!1,a=0,l=k.length;a=E,m.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(y?1:0),_.push(t.sCount[d]),t.sCount[d]=f-c,b.push(t.tShift[d]),t.tShift[d]=A-t.bMarks[d]}}for(v=t.blkIndent,t.blkIndent=0,x=t.push("blockquote_open","blockquote",1),x.markup=">",x.map=h=[e,0],t.md.block.tokenize(t,e,d),x=t.push("blockquote_close","blockquote",-1),x.markup=">",t.lineMax=S,t.parentType=g,h[1]=t.line,a=0;a2&&void 0!==arguments[2]?arguments[2]:{};return this.setTextColor(t,this.setBackgroundColor(e,n))},setBackgroundColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{"background-color":"".concat(t),"border-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"bg-"+n,!0))}return e},setTextColor:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(l(t))e.style=r()({},e.style,{color:"".concat(t),"caret-color":"".concat(t)});else if(t){var n=t.toString().trim();e.class=r()({},e.class,c()({},"text-"+n,!0))}return e}}}),h=(n("7514"),n("20d6"),n("c5f6"),{scroller:{value:{type:String,required:!0},items:{type:Array,required:!0},height:{type:[Number,String],required:!0},dense:Boolean,disabledItems:Array,disable:Boolean},base:{value:[String,Array],borderColor:{type:String,default:"#ccc"},barColor:{type:String,default:"#ccc"},color:{type:String,default:"white"},backgroundColor:{type:String,default:"primary"},innerColor:{type:String,default:"primary"},innerBackgroundColor:{type:String,default:"white"},dense:Boolean,disable:Boolean,roundedBorders:Boolean,noBorder:Boolean,noHeader:Boolean,noFooter:Boolean,noShadow:Boolean},locale:{locale:{type:String,default:"en-us"}},date:{minDate:String,maxDate:String,dates:Array,disabledDates:Array,disabledYears:{type:Array,default:function(){return[]}},disabledMonths:{type:Array,default:function(){return[]}},disabledDays:{type:Array,default:function(){return[]}},shortYearLabel:Boolean,shortMonthLabel:Boolean,shortDayLabel:Boolean,showMonthLabel:Boolean,showWeekdayLabel:Boolean,noDays:Boolean,noMonths:Boolean,noYears:Boolean},time:{minuteInterval:{type:[String,Number],default:1},hourInterval:{type:[String,Number],default:1},shortTimeLabel:Boolean,disabledHours:{type:Array,default:function(){return[]}},disabledMinutes:{type:Array,default:function(){return[]}},noMinutes:Boolean,noHours:Boolean,hours:Array,minutes:Array,minTime:{type:String,default:"00:00"},maxTime:{type:String,default:"24:00"}},timeRange:{displaySeparator:{type:String,default:" - "},startMinuteInterval:{type:[String,Number],default:1},startHourInterval:{type:[String,Number],default:1},startShortTimeLabel:Boolean,startDisabledHours:{type:Array,default:function(){return[]}},startDisabledMinutes:{type:Array,default:function(){return[]}},startNoMinutes:Boolean,startNoHours:Boolean,startHours:Array,startMinutes:Array,startMinTime:{type:String,default:"00:00"},startMaxTime:{type:String,default:"24:00"},endMinuteInterval:{type:[String,Number],default:1},endHourInterval:{type:[String,Number],default:1},endShortTimeLabel:Boolean,endDisabledHours:{type:Array,default:function(){return[]}},endDisabledMinutes:{type:Array,default:function(){return[]}},endNoMinutes:Boolean,endNoHours:Boolean,endHours:Array,endMinutes:Array,endMinTime:{type:String,default:"00:00"},endMaxTime:{type:String,default:"24:00"}},dateRange:{displaySeparator:{type:String,default:" - "},startMinDate:String,startMaxDate:String,startDates:Array,startDisabledDates:Array,startDisabledYears:{type:Array,default:function(){return[]}},startDisabledMonths:{type:Array,default:function(){return[]}},startDisabledDays:{type:Array,default:function(){return[]}},startShortYearLabel:Boolean,startShortMonthLabel:Boolean,startShortDayLabel:Boolean,startShowMonthLabel:Boolean,startShowWeekdayLabel:Boolean,startNoDays:Boolean,startNoMonth:Boolean,startNoYears:Boolean,endMinDate:String,endMaxDate:String,endDates:Array,endDisabledDates:Array,endDisabledYears:{type:Array,default:function(){return[]}},endDisabledMonths:{type:Array,default:function(){return[]}},endDisabledDays:{type:Array,default:function(){return[]}},endShortYearLabel:Boolean,endShortMonthLabel:Boolean,endShortDayLabel:Boolean,endShowMonthLabel:Boolean,endShowWeekdayLabel:Boolean,endNoDays:Boolean,endNoMonth:Boolean,endNoYears:Boolean}}),d=n("1c16"),f=n("9c40"),p=n("0831"),m=p["a"].getScrollPosition,v=p["a"].setScrollPosition,g=26,_=21,b=o["a"].extend({name:"scroller-base",directives:{Resize:s},mixins:[u],props:r()({},h.scroller),data:function(){return{noScrollEvent:!1,columnPadding:{},padding:0}},mounted:function(){this.adjustColumnPadding(),this.updatePosition()},computed:{},watch:{height:function(){this.adjustColumnPadding(!0)},value:function(){this.updatePosition()},items:function(){this.adjustColumnPadding(!0),this.updatePosition()},dense:function(){this.adjustColumnPadding(!0),this.updatePosition()}},methods:{move:function(t){if(!1===this.noScrollEvent&&(1===t||-1===t)&&!0!==this.disable&&this.canScroll(t)){var e=".q-scroller__item--selected".concat(this.dense?"--dense":""),n=this.$el.querySelector(e);n&&n.classList.remove(e);var i=n?n.clientHeight:this.dense?_:g,r=m(this.$el)+i*t;return v(this.$el,r,50),!0}return!1},onResize:function(){this.adjustColumnPadding(!0)},canScroll:function(t){return!!(this.items&&this.items.length>1)&&(1===t?this.value!==this.items[this.items.length-1].value:this.value!==this.items[0].value)},adjustColumnPadding:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this,n=function(t){e.columnPadding={height:"".concat(t,"px")}},i=function(){var t=e.dense?_:g,i=e.height||e.$el.clientHeight;e.padding=i/2-t/2,!isNaN(e.padding)&&e.padding>0&&n(e.padding)};t?i():this.$nextTick(function(){i()})},wheelEvent:function(t){this.move(t.wheelDeltaY<0?1:-1)&&this.$emit(this.value),t.preventDefault()},getItemIndex:function(t){return this.items.findIndex(function(e){return e.value===t})},getItemIndexFromEvent:function(t){var e=t.target.scrollTop,n=this.dense?_:g;return Math.floor(e/n)},scrollEvent:Object(d["a"])(function(t){if(!this.noScrollEvent){var e=this.getItemIndexFromEvent(t),n=this.items[e].value;if(this.isDisabled(n))return;this.$emit("input",n)}},250),clickEvent:function(t){!0!==this.disable&&!1===t.disabled&&this.$emit("input",t.value)},isDisabled:function(t){return!0===this.disable||this.items.find(function(e){return e.value===t}).disabled},updatePosition:function(){var t=this,e=this;this.noScrollEvent=!0,setTimeout(function(){var n=".q-scroller__item--selected".concat(e.dense?"--dense":""),i=e.$el.querySelector(n);i&&setTimeout(function(){var n=i.offsetTop-t.padding;v(e.$el,n,150),e.noScrollEvent=!1},150)},10)},__renderItem:function(t,e){var n=this;return t(f["a"],{staticClass:"q-scroller__item".concat(this.dense?"--dense":""," justify-center align-center"),class:{"q-scroller__item--selected":!this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled":!this.dense&&(!0===this.disable||!0===e.disabled),"q-scroller__item--selected--dense":this.dense&&(e.value===this.value||e.display===this.value),"q-scroller__item--disabled--dense":this.dense&&(!0===this.disable||!0===e.disabled)},key:e.item,props:{flat:!0,dense:!0,"no-wrap":!0,label:void 0!==e.display?e.display:void 0!==e.value?e.value:void 0,disable:!0===this.disable||!0===e.disabled,icon:void 0!==e.icon?e.icon:void 0,"icon-right":void 0!==e.iconRight?e.iconRight:void 0,"no-caps":void 0!==e.noCaps?e.noCaps:void 0,align:void 0!==e.align?e.align:void 0},on:{click:function(){return n.clickEvent(e)}}})},__renderPadding:function(t){return t("div",{staticClass:"q-scroller__padding",style:this.columnPadding})}},render:function(t){var e=this;return t("div",this.setBothColors(this.color,this.backgroundColor,{staticClass:"q-scroller-base text-center col scroll no-scrollbars",style:{height:"".concat(this.height,"px")},directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],on:{mousewheel:function(t){return e.wheelEvent(t)},scroll:function(t){return e.scrollEvent(t)}}}),[this.__renderPadding(t),this.items.map(function(n){return e.__renderItem(t,n)}),this.__renderPadding(t)])}}),y=o["a"].extend({name:"q-scroller",directives:{Resize:s},mixins:[u],props:r()({},h.base,{items:{type:Array,required:!0}}),data:function(){return{headerFooterHeight:100,bodyHeight:100}},mounted:function(){this.adjustBodyHeight()},computed:{},watch:{noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{canMovePrevious:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(-1)},canMoveNext:function(){return!!this.$refs.scroller&&this.$refs.scroller.canScroll(1)},previous:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(-1)},next:function(){return!!this.$refs.scroller&&this.$refs.scroller.move(1)},getItemIndex:function(t){return this.$refs.scroller?this.$refs.scroller.getItemIndex(t):-1},getCurrentIndex:function(){return this.getItemIndex(this.value)},onResize:function(){this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.value):[this.value])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e?e(this.value):[this.__renderFooterButton(t)])},__renderScroller:function(t){var e=this;return t(b,{ref:"scroller",props:{value:this.value,items:this.items,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){return e.$emit("input",t)}}})},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),style:{height:"".concat(this.bodyHeight,"px")}}),[this.__renderScroller(t)])}},render:function(t){return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),[this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)])}}),w=(n("ac6a"),n("6762"),n("2fdb"),n("8e72")),k=n.n(w),x=o["a"].extend({name:"time-base",props:r()({},h.base,h.locale,{height:[Number,String],hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),C=n("b6d5"),S=(n("ff57"),n("bd4c")),A=/^(\d{4})-(\d{1,2})(-(\d{1,2}))?([^\d]+(\d{1,2}))?(:(\d{1,2}))?(:(\d{1,2}))?$/,E=[0,31,28,31,30,31,30,31,31,30,31,30,31],q=[0,31,29,31,30,31,30,31,31,30,31,30,31],T=31,$={date:"",time:"",year:0,month:0,day:0,weekday:0,hour:0,minute:0,doy:0,workweek:0,hasDay:!1,hasTime:!1,past:!1,current:!1,future:!1};function O(t,e){return JSON.stringify(t)===JSON.stringify(e)}function D(t){var e=A.exec(t);return e?{date:t,time:"",year:parseInt(e[1]),month:parseInt(e[2]),day:parseInt(e[4])||1,hour:parseInt(e[6])||0,minute:parseInt(e[8])||0,weekday:0,doy:0,workweek:0,hasDay:!!e[4],hasTime:!(!e[6]||!e[8]),past:!1,current:!1,future:!1}:null}function L(t){return M({date:"",time:"",year:t.getFullYear(),month:t.getMonth()+1,day:t.getDate(),weekday:t.getDay(),hour:t.getHours(),minute:t.getMinutes(),doy:0,workweek:0,hasDay:!0,hasTime:!0,past:!1,current:!0,future:!1})}function M(t){return t.time=H(t),t.date=N(t),t.weekday=B(t),t.doy=I(t),t.workweek=j(t),t}function I(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getDayOfYear(e)}}function j(t){if(0!==t.year){var e=new Date(t.date+" 00:00");return S["a"].getWeekOfYear(e)}}function B(t){if(t.hasDay){var e=new Date(t.date+" 00:00");return S["a"].getDayOfWeek(e)}return t.weekday}function F(t){return t%4===0&&t%100!==0||t%400===0}function P(t,e){return F(t)?q[e]:E[e]}function R(t){return r()({},t)}function z(t,e){var n=String(t);while(n.length0&&(e/=parseInt(this.minuteInterval)),k()(Array(e)).map(function(t,e){return e}).map(function(e){return e*=t.minuteInterval?parseInt(t.minuteInterval):1,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledMinutesList.includes(e)}})},hoursList:function(){var t=this,e=!0===this.hour24Format?24:12;return k()(Array(e)).map(function(t,e){return e}).map(function(e){return e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledHoursList.includes(e)}})},displayTime:function(){return!1===this.timestamp.hasTime?"":this.noMinutes?z(this.hour,2)+"h":this.noHours?":"+z(this.minute,2):this.timeFormatter(this.timestamp,this.shortTimeLabel)},timeFormatter:function(){var t={timeZone:"UTC",hour12:!this.hour24Format,hour:"2-digit",minute:"2-digit"},e={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric",minute:"2-digit"},n={timeZone:"UTC",hour12:!this.hour24Format,hour:"numeric"};return V(this.locale,function(i,r){return r?0===i.minute?n:e:t})}},watch:{value:function(){this.splitTime()},ampmIndex:function(){var t=R(this.timestamp);this.ampm=this.amPmLabels[this.ampmIndex],this.timestamp.hour=parseInt(this.hour),1===this.ampmIndex&&!1===this.hour24Format&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},hour:function(){var t=R(this.timestamp);!0===this.hour24Format?this.timestamp.hour=parseInt(this.hour):0===this.ampmIndex?this.timestamp.hour=parseInt(this.hour):1===this.ampmIndex&&(this.timestamp.hour=parseInt(this.hour)+12),O(t,this.timestamp)||this.emitValue()},minute:function(){var t=R(this.timestamp);this.timestamp.minute=parseInt(this.minute),O(t,this.timestamp)||this.emitValue()},ampm:function(){var t=this;this.ampmIndex=this.amPmLabels.findIndex(function(e){return e===t.ampm})},hour24Format:function(){var t=R(this.timestamp);!0===this.hour24Format?this.hour=z(this.timestamp.hour,2):this.timestamp.hour>12?(this.hour=z(this.timestamp.hour-12,2),this.ampmIndex=1):(this.hour=z(this.timestamp.hour,2),this.ampmIndex=0),O(t,this.timestamp)||this.emitValue()},disabledMinutes:function(){this.handleDisabledLists()},disabledHours:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[z(this.timestamp.hour,2),z(this.timestamp.minute,2)].join(":"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.height||t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledMinutesList=[],this.disabledHoursList=[],this.disabledMinutes.forEach(function(e){return t.disabledMinutesList.push(z(parseInt(e),2))}),this.disabledHours.forEach(function(e){return t.disabledHoursList.push(z(parseInt(e),2))})},splitTime:function(){var t=L(new Date),e=N(t)+" "+(this.value?this.value:H(t));this.timestamp=D(e),this.timestamp.minute=Math.floor(this.timestamp.minute/this.minuteInterval)*this.minuteInterval,this.ampmIndex=this.timestamp.hour>12&&this.timestamp.minute>0?1:0,this.fromTimestamp()},fromTimestamp:function(){this.minute=z(this.timestamp.minute,2),this.hour=z(this.timestamp.hour,2),!1===this.hour24Format&&1===this.ampmIndex&&(this.hour=z(this.timestamp.hour-12,2))},__renderHoursScroller:function(t){var e=this;return t(b,{props:{value:this.hour,items:this.hoursList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.hour=t}}})},__renderMinutesScroller:function(t){var e=this;return t(b,{props:{value:this.minute,items:this.minutesList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.minute=t}}})},__renderAmPmScroller:function(t){var e=this;return t(b,{props:{value:this.ampm,items:this.ampmList,height:this.bodyHeight,dense:this.dense,disable:this.disable,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.ampm=t}}})},__renderScrollers:function(t){return[!0!==this.noHours&&this.__renderHoursScroller(t),!0!==this.noMinutes&&this.__renderMinutesScroller(t),!1===this.hour24Format&&this.__renderAmPmScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayTime])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Y=(n("28a5"),x.extend({name:"q-time-range-scroller",mixins:[u],props:r()({},h.timeRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startTime:"",endTime:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QTimeRangeScroller - value (v-model) must to be an array of times"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QTimeRangeScroller - value (v-model) must contain 2 array elements"),this.splitTime(),this.adjustBodyHeight()},computed:{displayTime:function(){return void 0!==this.startTime&&void 0!==this.endTime?this.$refs.startTime&&this.$refs.endTime?this.$refs.startTime.displayTime+this.displaySeparator+this.$refs.endTime.displayTime:"".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime):""}},watch:{value:function(){this.splitTime()},startTime:function(){this.emitValue()},endTime:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startTime,this.endTime]):"string"===this.type&&this.$emit("input","".concat(this.startTime).concat(this.displaySeparator).concat(this.endTime))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitTime:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidTime(t)&&this.isValidTime(e))return this.startTime=t,this.endTime=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidTime(i)&&this.isValidTime(r))return this.startTime=i,this.endTime=r,void(this.type="string")}}console.error("QTimeRangeScroller: invalid time format - '".concat(this.value,"'"))},isValidTime:function(t){var e=t.split(":");if(2===e.length){var n=parseInt(e[0]),i=parseInt(e[1]);if(n>=0&&n<24&&i>=0&&i<60)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startTime.getTimestamp(),this.$refs.endTime.getTimestamp()]):[this.displayTime])},__renderStartTime:function(t){var e=this;return t(U,{ref:"startTime",staticClass:"col-6",props:{value:this.startTime,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.amPmLabels,minuteInterval:this.startMinuteInterval,hourInterval:this.startHourInterval,shortTimeLabel:this.startShortTimeLabel,disabledHours:this.startDisabledHours,disabledMinutes:this.startDisbaledMinutes,noMinutes:this.startNoMinutes,noHours:this.startNoHours,hours:this.startHours,minutes:this.startMinutes,minTime:this.startMinTime,maxTime:this.startMaxTime,height:this.bodyHeight},on:{input:function(t){e.startTime=t}}})},__renderEndTime:function(t){var e=this;return t(U,{ref:"endTime",staticClass:"col-6",props:{value:this.endTime,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.endMinuteInterval,hourInterval:this.endHourInterval,shortTimeLabel:this.endShortTimeLabel,disabledHours:this.endDisabledHours,disabledMinutes:this.endDisbaledMinutes,noMinutes:this.endNoMinutes,noHours:this.endNoHours,hours:this.endHours,minutes:this.endMinutes,minTime:this.endMinTime,maxTime:this.endMaxTime,height:this.bodyHeight},on:{input:function(t){e.endTime=t}}})},__renderScrollers:function(t){return[this.__renderStartTime(t),this.__renderEndTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-time-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}})),W=o["a"].extend({name:"datetime-base",props:r()({},h.base,h.locale,{hour24Format:{type:Boolean,default:!0},amPmLabels:{type:Array,default:function(){return["AM","PM"]},validator:function(t){return Array.isArray(t)&&2===t.length&&"string"===typeof t[0]&&"string"===typeof t[1]}}}),data:function(){return{}},computed:{},methods:{}}),G=W.extend({name:"q-date-scroller",mixins:[u],props:r()({},h.date,{showVerticalBar:Boolean}),data:function(){return{headerFooterHeight:100,bodyHeight:100,year:"",month:"",day:"",timestamp:r()({},$),disabledYearsList:[],disabledMonthsList:[],disabledDaysList:[]}},mounted:function(){this.handleDisabledLists(),this.splitDate(),this.adjustBodyHeight()},computed:{daysList:function(){var t=this,e=P(parseInt(this.year),parseInt(this.month));return this.year&&this.month||(e=T),k()(Array(e)).map(function(t,e){return e}).map(function(e){return++e,e=e<10?"0"+e:""+e,{value:e,disabled:t.disabledDays.includes(e)}})},monthsList:function(){var t=this;return k()(Array(12)).map(function(t,e){return e}).map(function(e){++e;var n=!0===t.showMonthLabel?t.monthNameLabel(e):void 0;return e=e<10?"0"+e:""+e,{display:n,value:e,disabled:t.disabledMonths.includes(e)}})},yearsList:function(){var t=this,e=0,n=0;if(this.minDate&&this.maxDate)e=parseInt(e),n=parseInt(n);else{var i=new Date,r=i.getFullYear();e=r-5,n=r+5}var o=[],s=e;while(s<=n)o.push(z(s,4)),++s;return o.map(function(e){return{value:e,disabled:t.disabledYears.includes(e)}})},displayDate:function(){return console.log("displayDate"),this.year&&this.month&&this.day?!1===this.timestamp.hasDay?"":!0===this.noDays&&!0===this.noMonths?this.yearFormatter(this.timestamp,this.shortYearLabel):!0===this.noDays&&!0===this.noYears?this.monthFormatter(this.timestamp,this.shortMonthLabel):!0===this.noMonths&&!0===this.noYears?this.dayFormatter(this.timestamp,this.shortDayLabel):this.dateFormatter(this.timestamp):""},dateFormatter:function(){console.log("dateFormatter");var t=this.shortYearLabel?"2-digit":"numeric",e=this.shortMonthLabel?"numeric":"2-digit",n=this.shortDayLabel?"numeric":"2-digit",i={timeZone:"UTC",year:t,month:e,day:n};return V(this.locale,function(t,e){return i})},dayFormatter:function(){var t={timeZone:"UTC",day:"numeric"};return V(this.locale,function(e,n){return t})},weekdayFormatter:function(){var t={timeZone:"UTC",weekday:"long"},e={timeZone:"UTC",weekday:"short"};return V(this.locale,function(n,i){return i?e:t})},monthFormatter:function(){var t={timeZone:"UTC",month:"long"},e={timeZone:"UTC",month:"short"};return V(this.locale,function(n,i){return i?e:t})},yearFormatter:function(){var t={timeZone:"UTC",year:"long"},e={timeZone:"UTC",year:"short"};return V(this.locale,function(n,i){return i?e:t})},yearMonthDayFormatter:function(){var t={timeZone:"UTC",year:"numeric",month:"short",day:"numeric"};return V(this.locale,function(e,n){return t})}},watch:{value:function(){this.splitDate()},year:function(){this.toTimestamp()},month:function(t,e){if(this.day>28){var n=parseInt(t),i=parseInt(e),r=parseInt(this.year),o=P(r,i),s=P(r,n);o>s&&(this.day=z(s,2))}this.toTimestamp()},day:function(){this.toTimestamp()},disabledDays:function(){this.handleDisabledLists()},disabledMonths:function(){this.handleDisabledLists()},disabledYears:function(){this.handleDisabledLists()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},height:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{getTimestamp:function(){return this.timestamp},emitValue:function(){this.$emit("input",[this.year,this.month,this.day].join("-"))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},handleDisabledLists:function(){var t=this;this.disabledDaysList=[],this.disabledMonthsList=[],this.disabledYearsList=[],this.disabledDays.forEach(function(e){return t.disabledDaysList.push(z(parseInt(e),2))}),this.disabledMonths.forEach(function(e){return t.disabledMonthsList.push(z(parseInt(e),2))}),this.disabledYears.forEach(function(e){return t.disabledYearsList.push(z(parseInt(e),4))})},splitDate:function(){var t=L(new Date),e=(this.value?this.value:N(t))+" 00:00";this.timestamp=D(e),this.fromTimestamp()},fromTimestamp:function(){this.day=z(this.timestamp.day,2),this.month=z(this.timestamp.month,2),this.year=z(this.timestamp.year,4)},toTimestamp:function(){var t=R(this.timestamp);this.timestamp.day=parseInt(this.day),this.timestamp.month=parseInt(this.month),this.timestamp.year=parseInt(this.year),O(t,this.timestamp)||this.emitValue()},monthNameLabel:function(t){var e=L(new Date),n=N(e)+" 00:00",i=D(n);return i.day=1,i.month=parseInt(t),this.monthFormatter(i,this.shortMonthLabel)},__renderYearsScroller:function(t){var e=this;return t(b,{props:{value:this.year,items:this.yearsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.year=t}}})},__renderMonthsScroller:function(t){var e=this;return t(b,{props:{value:this.month,items:this.monthsList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.month=t}}})},__renderDaysScroller:function(t){var e=this;return t(b,{props:{value:this.day,items:this.daysList,dense:this.dense,disable:this.disable,height:this.bodyHeight,color:this.innerColor,backgroundColor:this.innerBackgroundColor},on:{input:function(t){e.day=t}}})},__renderScrollers:function(t){return[!0!==this.noYears&&this.__renderYearsScroller(t),!0!==this.noMonths&&this.__renderMonthsScroller(t),!0!==this.noDays&&this.__renderDaysScroller(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width"),class:{"q-scroller__vertical-bar":!0===this.showVerticalBar},style:{height:"".concat(this.bodyHeight,"px")}}),this.__renderScrollers(t))},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDate])},__renderFooterButton:function(t){var e=this;return t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e?e(this.timestamp):[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Q=W.extend({name:"q-date-range-scroller",mixins:[u],props:r()({},h.dateRange),data:function(){return{headerFooterHeight:100,bodyHeight:100,startDate:"",endDate:"",type:null}},mounted:function(){Array.isArray(this.value)||"string"===typeof this.value||console.error("QDateRangeScroller - value (v-model) must to be an array of dates"),Array.isArray(this.value)&&2!==this.value.length&&console.error("QDateRangeScroller - value (v-model) must contain 2 array elements"),this.splitDate(),this.adjustBodyHeight()},computed:{displayDate:function(){return void 0!==this.startDate&&void 0!==this.endDate?this.$refs.startDate&&this.$refs.endDate?this.$refs.startDate.displayDate+this.displaySeparator+this.$refs.endDate.displayDate:"".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate):""}},watch:{value:function(){this.splitDate()},startDate:function(){this.emitValue()},endDate:function(){this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){"array"===this.type?this.$emit("input",[this.startDate,this.endDate]):"string"===this.type&&this.$emit("input","".concat(this.startDate).concat(this.displaySeparator).concat(this.endDate))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDate:function(){if(Array.isArray(this.value)){var t=this.value[0].trim(),e=this.value[1].trim();if(this.isValidDate(t)&&this.isValidDate(e))return this.startDate=t,this.endDate=e,void(this.type="array")}else{var n=this.value.split(this.displaySeparator);if(2===n.length){var i=n[0].trim(),r=n[1].trim();if(this.isValidDate(i)&&this.isValidDate(r))return this.startDate=i,this.endDate=r,void(this.type="string")}}console.error("QDateRangeScroller: invalid date format - '".concat(this.value,"'"))},isValidDate:function(t){var e=t.split("-");if(3===e.length){var n=parseInt(e[0]),i=parseInt(e[1]),r=parseInt(e[2]),o=P(n,i);if(0!==n&&i>0&&i<=12&&r>0&&r<=o)return!0}return!1},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e([this.$refs.startDate.getTimestamp(),this.$refs.endDate.getTimestamp()]):[this.displayDate])},__renderStartDate:function(t){var e=this;return t(G,{ref:"startDate",staticClass:"col-6",props:{value:this.startDate,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.startMinDate,maxDate:this.startMaxDate,dates:this.startDates,disabledDate:this.startDisabledDates,disabledYears:this.startDisabledYears,disabledMonths:this.startDisabledMonths,disabledDays:this.startDisabledDays,shortYearLabel:this.startShortYearLabel,shortMonthLabel:this.startShortMonthLabel,shortDayLabel:this.startShortDayLabel,showMonthLabel:this.startShowMonthLabel,showWeekdayLabel:this.startShowWeekdayLabel,noDays:this.startNoDays,noMonths:this.startNoMonths,noYears:this.startNoYears,height:this.bodyHeight},on:{input:function(t){e.startDate=t}}})},__renderEndDate:function(t){var e=this;return t(G,{ref:"endDate",staticClass:"col-6",props:{value:this.endDate,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.endMinDate,maxDate:this.endMaxDate,dates:this.endDates,disabledDate:this.endDisabledDates,disabledYears:this.endDisabledYears,disabledMonths:this.endDisabledMonths,disabledDays:this.endDisabledDays,shortYearLabel:this.endShortYearLabel,shortMonthLabel:this.endShortMonthLabel,shortDayLabel:this.endShortDayLabel,showMonthLabel:this.endShowMonthLabel,showWeekdayLabel:this.endShowWeekdayLabel,noDays:this.endNoDays,noMonths:this.endNoMonths,noYears:this.endNoYears,height:this.bodyHeight},on:{input:function(t){e.endDate=t}}})},__renderScrollers:function(t){return[this.__renderStartDate(t),this.__renderEndDate(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-range-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}}),Z=W.extend({name:"q-date-time-scroller",mixins:[u],props:r()({},h.time,h.date),data:function(){return{headerFooterHeight:100,bodyHeight:100,date:"",time:"",timestamp:r()({},$)}},mounted:function(){this.splitDateTime(),this.adjustBodyHeight()},computed:{displayDateTime:function(){return""!==this.date&&""!==this.time?this.$refs.date&&this.$refs.time?this.$refs.date.displayDate+" "+this.$refs.time.displayTime:"".concat(this.date," ").concat(this.time):""}},watch:{value:function(){this.splitDateTime()},date:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},time:function(){var t=R(this.timestamp);this.timestamp=D(this.date+" "+this.time),O(t,this.timestamp)||this.emitValue()},noHeader:function(){this.adjustBodyHeight()},noFooter:function(){this.adjustBodyHeight()},dense:function(){this.adjustBodyHeight()}},methods:{emitValue:function(){this.$emit("input","".concat(this.timestamp.date))},onResize:function(t){t.height;this.adjustBodyHeight()},adjustBodyHeight:function(){var t=this;void 0!==this.height?this.bodyHeight=this.height:this.$nextTick(function(){var e=t.noHeader?0:t.$refs.header?t.$refs.header.clientHeight:0,n=t.noFooter?0:t.$refs.footer?t.$refs.footer.clientHeight:0;t.headerFooterHeight=e+n;var i=t.$refs.scroller?window.getComputedStyle(t.$refs.scroller,null).getPropertyValue("height"):0;t.bodyHeight=parseInt(i)-t.headerFooterHeight})},splitDateTime:function(){this.timestamp=D(this.value),this.fromTimestamp()},fromTimestamp:function(){this.date=N(this.timestamp),this.time=H(this.timestamp)},__renderHeader:function(t){if(this.noHeader)return"";var e=this.$scopedSlots.header;return t("div",{ref:"header",staticClass:(this.dense?"q-scroller__header--dense":"q-scroller__header")+" flex justify-around items-center full-width ellipsis q-pa-xs",class:{"shadow-20":!1===this.noShadow}},e?e(this.timestamp):[this.displayDateTime])},__renderDate:function(t){var e=this;return t(G,{ref:"date",staticClass:"col-6",props:{value:this.date,locale:this.locale,showVerticalBar:!0,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,minDate:this.minDate,maxDate:this.maxDate,dates:this.dates,disabledDate:this.disabledDates,disabledYears:this.disabledYears,disabledMonths:this.disabledMonths,disabledDays:this.disabledDays,shortYearLabel:this.shortYearLabel,shortMonthLabel:this.shortMonthLabel,shortDayLabel:this.shortDayLabel,showMonthLabel:this.showMonthLabel,showWeekdayLabel:this.showWeekdayLabel,noYears:this.noYears,noMonths:this.noMonths,noDays:this.noDays,height:this.bodyHeight},on:{input:function(t){e.date=t}}})},__renderTime:function(t){var e=this;return t(U,{ref:"time",staticClass:"col-6",props:{value:this.time,locale:this.locale,barColor:this.barColor,color:this.color,backgroundColor:this.backgroundColor,innerColor:this.innerColor,innerBackgroundColor:this.innerBackgroundColor,dense:this.dense,disable:this.disable,noBorder:!0,noHeader:!0,noFooter:!0,hour24Format:this.hour24Format,amPmLabels:this.ampPmLabels,minuteInterval:this.minuteInterval,hourInterval:this.hourInterval,shortTimeLabel:this.shortTimeLabel,disabledHours:this.disabledHours,disabledMinutes:this.disbaledMinutes,noMinutes:this.noMinutes,noHours:this.noHours,hours:this.hours,minutes:this.minutes,minTime:this.minTime,maxTime:this.maxTime,height:this.bodyHeight},on:{input:function(t){e.time=t}}})},__renderScrollers:function(t){return[this.__renderDate(t),this.__renderTime(t)]},__renderBody:function(t){return t("div",this.setBackgroundColor(this.innerBackgroundColor,{staticClass:"q-scroller__body q-scroller__horizontal-bar".concat(this.dense?"--dense":""," row full-width")}),[this.__renderScrollers(t)])},__renderFooterButton:function(t){var e=this;return[t(f["a"],{staticClass:"q-scroller__cancel-btn q-ml-xs",props:{flat:!0,dense:!0,round:!0,icon:"close"},on:{click:function(){e.$emit("close")}}})]},__renderFooter:function(t){if(this.noFooter)return"";var e=this.$slots.footer;return t("div",{ref:"footer",staticClass:(this.dense?"q-scroller__footer--dense":"q-scroller__footer")+" flex justify-around items-center full-width q-pa-xs",class:{"shadow-up-20":!1===this.noShadow}},e||[this.__renderFooterButton(t)])}},render:function(t){var e=[t(C["a"],{props:{debounce:0},on:{resize:this.onResize}})];return t("div",this.setBothColors(this.color,this.backgroundColor,{ref:"scroller",staticClass:"q-date-time-scroller flex",class:{"rounded-borders":!0===this.roundedBorders,"q-scroller--border":!0!==this.noBorder},style:{"--scroller-border-color":this.borderColor,"--scroller-bar-color":this.barColor,overflow:"hidden"}}),e.concat([this.__renderHeader(t),this.__renderBody(t),this.__renderFooter(t)]))}});e["a"]=function(t){var e=t.Vue;e.component("q-scroller",y),e.component("q-time-scroller",U),e.component("q-time-range-scroller",Y),e.component("q-date-scroller",G),e.component("q-date-range-scroller",Q),e.component("q-date-time-scroller",Z)}},e9ef:function(t,e,n){"use strict";var i="PNG\r\n\n";function r(t){if(i===t.toString("ascii",1,8)){if("IHDR"!==t.toString("ascii",12,16))throw new TypeError("invalid png");return!0}}function o(t){return{width:t.readUInt32BE(16),height:t.readUInt32BE(20)}}t.exports={detect:r,calculate:o}},eb85:function(t,e,n){"use strict";var i=n("adc8"),r=n.n(i),o=n("2b0e");e["a"]=o["a"].extend({name:"QSeparator",props:{dark:Boolean,spaced:Boolean,inset:[Boolean,String],vertical:Boolean,color:String},computed:{classes:function(){var t;return t={},r()(t,"bg-".concat(this.color),this.color),r()(t,"q-separator--dark",this.dark),r()(t,"q-separator--spaced",this.spaced),r()(t,"q-separator--inset",!0===this.inset),r()(t,"q-separator--item-inset","item"===this.inset),r()(t,"q-separator--item-thumbnail-inset","item-thumbnail"===this.inset),r()(t,"q-separator--".concat(this.vertical?"vertical self-stretch":"horizontal col-grow"),!0),t}},render:function(t){return t("hr",{staticClass:"q-separator",class:this.classes})}})},ebd6:function(t,e,n){var i=n("cb7c"),r=n("d8e8"),o=n("2b4c")("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},ec5d:function(t,e,n){"use strict";n("ac6a"),n("cadf"),n("456d");var i=n("2b0e"),r=(n("28a5"),{isoName:"en-us",nativeName:"English (US)",label:{clear:"Clear",ok:"OK",cancel:"Cancel",close:"Close",set:"Set",select:"Select",reset:"Reset",remove:"Remove",update:"Update",create:"Create",search:"Search",filter:"Filter",refresh:"Refresh"},date:{days:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),daysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),firstDayOfWeek:0,format24h:!1},table:{noData:"No data available",noResults:"No matching records found",loading:"Loading...",selectedRecords:function(t){return 1===t?"1 record selected.":(0===t?"No":t)+" records selected."},recordsPerPage:"Records per page:",allRows:"All",pagination:function(t,e,n){return t+"-"+e+" of "+n},columns:"Columns"},editor:{url:"URL",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",underline:"Underline",unorderedList:"Unordered List",orderedList:"Ordered List",subscript:"Subscript",superscript:"Superscript",hyperlink:"Hyperlink",toggleFullscreen:"Toggle Fullscreen",quote:"Quote",left:"Left align",center:"Center align",right:"Right align",justify:"Justify align",print:"Print",outdent:"Decrease indentation",indent:"Increase indentation",removeFormat:"Remove formatting",formatting:"Formatting",fontSize:"Font Size",align:"Align",hr:"Insert Horizontal Rule",undo:"Undo",redo:"Redo",header1:"Header 1",header2:"Header 2",header3:"Header 3",header4:"Header 4",header5:"Header 5",header6:"Header 6",paragraph:"Paragraph",code:"Code",size1:"Very small",size2:"A bit small",size3:"Normal",size4:"Medium-large",size5:"Big",size6:"Very big",size7:"Maximum",defaultFont:"Default Font"},tree:{noNodes:"No nodes available",noResults:"No matching nodes found"}}),o=n("0967");e["a"]={install:function(t,e,n){var s=this;!0===o["c"]&&e.server.push(function(t,e){var n={lang:t.lang.isoName,dir:!0===t.lang.rtl?"rtl":"ltr"},i=e.ssr.setHtmlAttrs;"function"===typeof i?i(n):e.ssr.Q_HTML_ATTRS=Object.keys(n).map(function(t){return"".concat(t,"=").concat(n[t])}).join(" ")}),this.set=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r;if(e.set=s.set,e.getLocale=s.getLocale,e.rtl=e.rtl||!1,!1===o["c"]){var n=document.documentElement;n.setAttribute("dir",e.rtl?"rtl":"ltr"),n.setAttribute("lang",e.isoName)}!0===o["c"]||void 0!==t.lang?t.lang=e:i["a"].util.defineReactive(t,"lang",e),s.isoName=e.isoName,s.nativeName=e.nativeName,s.props=e},this.set(n)},getLocale:function(){if(!0!==o["c"]){var t=navigator.language||navigator.languages[0]||navigator.browserLanguage||navigator.userLanguage||navigator.systemLanguage;return t?t.toLowerCase():void 0}}}},edca:function(t,e,n){"use strict";n("c5f6");var i=n("2b0e"),r=n("0831"),o=n("d882");e["a"]=i["a"].extend({name:"QScrollObserver",props:{debounce:[String,Number],horizontal:Boolean},render:function(){},data:function(){return{pos:0,dir:!0===this.horizontal?"right":"down",dirChanged:!1,dirChangePos:0}},methods:{getPosition:function(){return{position:this.pos,direction:this.dir,directionChanged:this.dirChanged,inflexionPosition:this.dirChangePos}},trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__emit():this.timer||(this.timer=this.debounce?setTimeout(this.__emit,this.debounce):requestAnimationFrame(this.__emit))},__emit:function(){var t=Math.max(0,!0===this.horizontal?Object(r["b"])(this.target):Object(r["c"])(this.target)),e=t-this.pos,n=this.horizontal?e<0?"left":"right":e<0?"up":"down";this.dirChanged=this.dir!==n,this.dirChanged&&(this.dir=n,this.dirChangePos=this.pos),this.timer=null,this.pos=t,this.$emit("scroll",this.getPosition())}},mounted:function(){this.target=Object(r["d"])(this.$el.parentNode),this.target.addEventListener("scroll",this.trigger,o["d"].passive),this.trigger(!0)},beforeDestroy:function(){clearTimeout(this.timer),cancelAnimationFrame(this.timer),this.target.removeEventListener("scroll",this.trigger,o["d"].passive)}})},efe6:function(t,e,n){"use strict";var i=n("d882"),r=n("0831"),o=n("0967"),s=0;function a(t){c(t)&&Object(i["h"])(t)}function c(t){if(t.target===document.body||t.target.classList.contains("q-layout__backdrop"))return!0;for(var e=Object(i["a"])(t),n=t.shiftKey&&!t.deltaX,o=!n&&Math.abs(t.deltaX)<=Math.abs(t.deltaY),s=n||o?t.deltaY:t.deltaX,a=0;a0&&c.scrollTop+c.clientHeight===c.scrollHeight:s<0&&0===c.scrollLeft||s>0&&c.scrollLeft+c.clientWidth===c.scrollWidth}return!0}function l(t){if(s+=t?1:-1,!(s>1)){var e=t?"add":"remove";o["a"].is.mobile?document.body.classList[e]("q-body--prevent-scroll"):o["a"].is.desktop&&window["".concat(e,"EventListener")]("wheel",a,i["d"].notPassive)}}e["a"]={methods:{__preventScroll:function(t){void 0===this.preventedScroll&&!0!==t||t!==this.preventedScroll&&(this.preventedScroll=t,l(t))}}}},f09f:function(t,e,n){"use strict";var i=n("2b0e"),r=n("dde5");e["a"]=i["a"].extend({name:"QCard",props:{dark:Boolean,square:Boolean,flat:Boolean,bordered:Boolean},render:function(t){return t("div",{staticClass:"q-card",class:{"q-card--dark":this.dark,"q-card--bordered":this.bordered,"q-card--square no-border-radius":this.square,"q-card--flat no-shadow":this.flat},on:this.$listeners},Object(r["a"])(this,"default"))}})},f0f2:function(t){t.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},f270:function(t,e,n){"use strict";(function(e){var i=n("33d5"),r=n("377c");function o(t){var e=t.toString("hex",0,4);return"49492a00"===e||"4d4d002a"===e}function s(t,n,o){var s=r(t,32,4,o),a=1024,c=i.statSync(n).size;s+a>c&&(a=c-s-10);var l=new e(a),u=i.openSync(n,"r");i.readSync(u,l,0,a,s);var h=l.slice(2);return h}function a(t,e){var n=r(t,16,8,e),i=r(t,16,10,e);return(i<<16)+n}function c(t){if(t.length>24)return t.slice(12)}function l(t,e){var n,i,o,s={};while(t&&t.length){if(n=r(t,16,0,e),i=r(t,16,2,e),o=r(t,32,4,e),0===n)break;1===o&&3===i&&(s[n]=a(t,e)),t=c(t)}return s}function u(t){var e=t.toString("ascii",0,2);return"II"===e?"LE":"MM"===e?"BE":void 0}function h(t,e){if(!e)throw new TypeError("Tiff doesn't support buffer");var n="BE"===u(t),i=s(t,e,n),r=l(i,n),o=r[256],a=r[257];if(!o||!a)throw new TypeError("Invalid Tiff, missing tags");return{width:o,height:a}}t.exports={detect:o,calculate:h}}).call(this,n("9cd4").Buffer)},f2cc:function(t,e,n){"use strict";n("f751"),n("d263"),n("c5f6"),n("6762"),n("2fdb");var i=n("2b0e"),r=n("75c3"),o=n("7937"),s=n("7ee0"),a=n("efe6"),c=n("dde5"),l=150;e["a"]=i["a"].extend({name:"QDrawer",inject:{layout:{default:function(){console.error("QDrawer needs to be child of QLayout")}}},mixins:[s["a"],a["a"]],directives:{TouchPan:r["a"]},props:{overlay:Boolean,side:{type:String,default:"left",validator:function(t){return["left","right"].includes(t)}},width:{type:Number,default:300},mini:Boolean,miniWidth:{type:Number,default:57},breakpoint:{type:Number,default:1023},behavior:{type:String,validator:function(t){return["default","desktop","mobile"].includes(t)},default:"default"},bordered:Boolean,elevated:Boolean,persistent:Boolean,showIfAbove:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array],noSwipeOpen:Boolean,noSwipeClose:Boolean},data:function(){var t=this,e=!0===this.showIfAbove||void 0===this.value||this.value,n="mobile"!==this.behavior&&this.breakpoint=this.layout.width,largeScreenState:e,mobileOpened:!1}},watch:{belowBreakpoint:function(t){!0!==this.mobileOpened&&(!0===t?(!1===this.overlay&&(this.largeScreenState=this.showing),this.hide(!1)):!1===this.overlay&&this[this.largeScreenState?"show":"hide"](!1))},side:function(t,e){this.layout[e].space=!1,this.layout[e].offset=0},behavior:function(t){this.__updateLocal("belowBreakpoint","mobile"===t||"desktop"!==t&&this.breakpoint>=this.layout.width)},breakpoint:function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&t>=this.layout.width)},"layout.width":function(t){this.__updateLocal("belowBreakpoint","mobile"===this.behavior||"desktop"!==this.behavior&&this.breakpoint>=t)},"layout.scrollbarWidth":function(){this.applyPosition(!0===this.showing?0:void 0)},offset:function(t){this.__update("offset",t)},onLayout:function(t){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",t),this.__update("space",t)},$route:function(){!0===this.persistent||!0!==this.mobileOpened&&!0!==this.onScreenOverlay||this.hide()},rightSide:function(){this.applyPosition()},size:function(t){this.applyPosition(),this.__update("size",t)},"$q.lang.rtl":function(){this.applyPosition()},mini:function(){!0===this.value&&(this.__animateMini(),this.layout.__animate())}},computed:{rightSide:function(){return"right"===this.side},offset:function(){return!0===this.showing&&!1===this.mobileOpened&&!1===this.overlay?this.size:0},size:function(){return!0===this.isMini?this.miniWidth:this.width},fixed:function(){return!0===this.overlay||this.layout.view.indexOf(this.rightSide?"R":"L")>-1},onLayout:function(){return!0===this.showing&&!1===this.mobileView&&!1===this.overlay},onScreenOverlay:function(){return!0===this.showing&&!1===this.mobileView&&!0===this.overlay},backdropClass:function(){return!1===this.showing?"no-pointer-events":null},mobileView:function(){return!0===this.belowBreakpoint||!0===this.mobileOpened},headerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.top[2]:"l"===this.layout.rows.top[0]},footerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.bottom[2]:"l"===this.layout.rows.bottom[0]},aboveStyle:function(){var t={};return!0===this.layout.header.space&&!1===this.headerSlot&&(!0===this.fixed?t.top="".concat(this.layout.header.offset,"px"):!0===this.layout.header.space&&(t.top="".concat(this.layout.header.size,"px"))),!0===this.layout.footer.space&&!1===this.footerSlot&&(!0===this.fixed?t.bottom="".concat(this.layout.footer.offset,"px"):!0===this.layout.footer.space&&(t.bottom="".concat(this.layout.footer.size,"px"))),t},style:function(){var t={width:"".concat(this.size,"px")};return!0===this.mobileView?t:Object.assign(t,this.aboveStyle)},classes:function(){return"q-drawer--".concat(this.side)+(!0===this.bordered?" q-drawer--bordered":"")+(!0===this.mobileView?" fixed q-drawer--on-top q-drawer--mobile q-drawer--top-padding":" q-drawer--".concat(!0===this.isMini?"mini":"standard")+(!0===this.fixed||!0!==this.onLayout?" fixed":"")+(!0===this.overlay?" q-drawer--on-top":"")+(!0===this.headerSlot?" q-drawer--top-padding":""))},stateDirection:function(){return(!0===this.$q.lang.rtl?-1:1)*(!0===this.rightSide?1:-1)},isMini:function(){return!0===this.mini&&!0!==this.mobileView},onNativeEvents:function(){var t=this;if(!0!==this.mobileView)return{"!click":function(e){t.$emit("click",e)},mouseover:function(e){t.$emit("mouseover",e)},mouseout:function(e){t.$emit("mouseout",e)}}}},methods:{applyPosition:function(t){var e=this;void 0===t?this.$nextTick(function(){t=!0===e.showing?0:e.size,e.applyPosition(e.stateDirection*t)}):void 0!==this.$refs.content&&(!0!==this.layout.container||!0!==this.rightSide||!0!==this.mobileView&&Math.abs(t)!==this.size||(t+=this.stateDirection*this.layout.scrollbarWidth),this.$refs.content.style.transform="translate3d(".concat(t,"px, 0, 0)"))},applyBackdrop:function(t){void 0!==this.$refs.backdrop&&(this.$refs.backdrop.style.backgroundColor=this.lastBackdropBg="rgba(0,0,0,".concat(.4*t,")"))},__setScrollable:function(t){!0!==this.layout.container&&document.body.classList[!0===t?"add":"remove"]("q-body--drawer-toggle")},__animateMini:function(){var t=this;void 0!==this.timerMini?clearTimeout(this.timerMini):void 0!==this.$el&&this.$el.classList.add("q-drawer--mini-animate"),this.timerMini=setTimeout(function(){void 0!==t.$el&&t.$el.classList.remove("q-drawer--mini-animate"),t.timerMini=void 0},150)},__openByTouch:function(t){var e=this.size,n=Object(o["a"])(t.distance.x,0,e);if(!0===t.isFinal){var i=this.$refs.content,r=n>=Math.min(75,e);return i.classList.remove("no-transition"),void(!0===r?this.show():(this.layout.__animate(),this.applyBackdrop(0),this.applyPosition(this.stateDirection*e),i.classList.remove("q-drawer--delimiter")))}if(this.applyPosition((!0===this.$q.lang.rtl?!this.rightSide:this.rightSide)?Math.max(e-n,0):Math.min(0,n-e)),this.applyBackdrop(Object(o["a"])(n/e,0,1)),!0===t.isFirst){var s=this.$refs.content;s.classList.add("no-transition"),s.classList.add("q-drawer--delimiter")}},__closeByTouch:function(t){var e=this.size,n=t.direction===this.side,i=(!0===this.$q.lang.rtl?!n:n)?Object(o["a"])(t.distance.x,0,e):0;if(!0===t.isFinal){var r=Math.abs(i)0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),this.applyPosition(0);var n=this.layout.instances[!0===this.rightSide?"left":"right"];void 0!==n&&!0===n.mobileOpened&&n.hide(!1),!0===this.belowBreakpoint?(this.mobileOpened=!0,this.applyBackdrop(1),!0!==this.layout.container&&this.__preventScroll(!0)):this.__setScrollable(!0),clearTimeout(this.timer),this.timer=setTimeout(function(){t.__setScrollable(!1),t.$emit("show",e)},l)},__hide:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];!1!==e&&this.layout.__animate(),!0===this.mobileOpened&&(this.mobileOpened=!1),this.applyPosition(this.stateDirection*this.size),this.applyBackdrop(0),this.__cleanup(),clearTimeout(this.timer),this.timer=setTimeout(function(){t.$emit("hide",e)},l)},__cleanup:function(){this.__preventScroll(!1),this.__setScrollable(!1)},__update:function(t,e){this.layout[this.side][t]!==e&&(this.layout[this.side][t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)}},created:function(){this.layout.instances[this.side]=this,this.__update("size",this.size),this.__update("space",this.onLayout),this.__update("offset",this.offset)},mounted:function(){void 0!==this.$listeners["on-layout"]&&this.$emit("on-layout",this.onLayout),this.applyPosition(!0===this.showing?0:void 0)},beforeDestroy:function(){clearTimeout(this.timer),clearTimeout(this.timerMini),!0===this.showing&&this.__cleanup(),this.layout.instances[this.side]===this&&(this.layout.instances[this.side]=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},render:function(t){var e=[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__closeByTouch}],n=[!0!==this.noSwipeOpen&&!0===this.belowBreakpoint?t("div",{staticClass:"q-drawer__opener fixed-".concat(this.side),directives:[{name:"touch-pan",modifiers:{horizontal:!0,mouse:!0,mouseAllDir:!0},value:this.__openByTouch}]}):null,!0===this.mobileView?t("div",{ref:"backdrop",staticClass:"fullscreen q-drawer__backdrop q-layout__section--animate",class:this.backdropClass,style:void 0!==this.lastBackdropBg?{backgroundColor:this.lastBackdropBg}:null,on:{click:this.hide},directives:e}):null],i=[t("div",{staticClass:"q-drawer__content fit "+(!0===this.layout.container?"overflow-auto":"scroll"),class:this.contentClass,style:this.contentStyle},!0===this.isMini&&void 0!==this.$scopedSlots.mini?this.$scopedSlots.mini():Object(c["a"])(this,"default"))];return!0===this.elevated&&!0===this.showing&&i.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("div",{staticClass:"q-drawer-container"},n.concat([t("aside",{ref:"content",staticClass:"q-drawer q-layout__section--animate",class:this.classes,style:this.style,on:this.onNativeEvents,directives:!0===this.mobileView&&!0!==this.noSwipeClose?e:void 0},i)]))}})},f303:function(t,e,n){"use strict";n.d(e,"a",function(){return i});n("cadf"),n("456d"),n("ac6a");function i(t,e){var n=t.style;Object.keys(e).forEach(function(t){n[t]=e[t]})}},f37a:function(t,e,n){"use strict";e.byteLength=u,e.toByteArray=d,e.fromByteArray=m;for(var i=[],r=[],o="undefined"!==typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",a=0,c=s.length;a0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");-1===n&&(n=e);var i=n===e?0:4-n%4;return[n,i]}function u(t){var e=l(t),n=e[0],i=e[1];return 3*(n+i)/4-i}function h(t,e,n){return 3*(e+n)/4-n}function d(t){for(var e,n=l(t),i=n[0],s=n[1],a=new o(h(t,i,s)),c=0,u=s>0?i-4:i,d=0;d>16&255,a[c++]=e>>8&255,a[c++]=255&e;return 2===s&&(e=r[t.charCodeAt(d)]<<2|r[t.charCodeAt(d+1)]>>4,a[c++]=255&e),1===s&&(e=r[t.charCodeAt(d)]<<10|r[t.charCodeAt(d+1)]<<4|r[t.charCodeAt(d+2)]>>2,a[c++]=e>>8&255,a[c++]=255&e),a}function f(t){return i[t>>18&63]+i[t>>12&63]+i[t>>6&63]+i[63&t]}function p(t,e,n){for(var i,r=[],o=e;oc?c:a+s));return 1===r?(e=t[n-1],o.push(i[e>>2]+i[e<<4&63]+"==")):2===r&&(e=(t[n-2]<<8)+t[n-1],o.push(i[e>>10]+i[e>>4&63]+i[e<<2&63]+"=")),o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},f44b:function(t,e){function n(t,e,n,i,r,o,s){try{var a=t[o](s),c=a.value}catch(l){return void n(l)}a.done?e(c):Promise.resolve(c).then(i,r)}function i(t){return function(){var e=this,i=arguments;return new Promise(function(r,o){var s=t.apply(e,i);function a(t){n(s,r,o,a,c,"next",t)}function c(t){n(s,r,o,a,c,"throw",t)}a(void 0)})}}t.exports=i},f559:function(t,e,n){"use strict";var i=n("5ca1"),r=n("9def"),o=n("d2c8"),s="startsWith",a=""[s];i(i.P+i.F*n("5147")(s),"String",{startsWith:function(t){var e=o(this,t,s),n=r(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),i=String(t);return a?a.call(e,i,n):e.slice(n,n+i.length)===i}})},f605:function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},f751:function(t,e,n){var i=n("5ca1");i(i.S+i.F,"Object",{assign:n("7333")})},f9d7:function(t,e){!function(e){"use strict";var n,i=Object.prototype,r=i.hasOwnProperty,o="function"===typeof Symbol?Symbol:{},s=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag",l="object"===typeof t,u=e.regeneratorRuntime;if(u)l&&(t.exports=u);else{u=e.regeneratorRuntime=l?t.exports:{},u.wrap=y;var h="suspendedStart",d="suspendedYield",f="executing",p="completed",m={},v={};v[s]=function(){return this};var g=Object.getPrototypeOf,_=g&&g(g(D([])));_&&_!==i&&r.call(_,s)&&(v=_);var b=C.prototype=k.prototype=Object.create(v);x.prototype=b.constructor=C,C.constructor=x,C[c]=x.displayName="GeneratorFunction",u.isGeneratorFunction=function(t){var e="function"===typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},u.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,C):(t.__proto__=C,c in t||(t[c]="GeneratorFunction")),t.prototype=Object.create(b),t},u.awrap=function(t){return{__await:t}},S(A.prototype),A.prototype[a]=function(){return this},u.AsyncIterator=A,u.async=function(t,e,n,i){var r=new A(y(t,e,n,i));return u.isGeneratorFunction(e)?r:r.next().then(function(t){return t.done?t.value:r.next()})},S(b),b[c]="Generator",b[s]=function(){return this},b.toString=function(){return"[object Generator]"},u.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){while(e.length){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},u.values=D,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method="next",this.arg=n,this.tryEntries.forEach($),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function i(i,r){return a.type="throw",a.arg=t,e.next=i,r&&(e.method="next",e.arg=n),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var s=this.tryEntries[o],a=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var c=r.call(s,"catchLoc"),l=r.call(s,"finallyLoc");if(c&&l){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),$(n),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;$(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,i){return this.delegate={iterator:D(t),resultName:e,nextLoc:i},"next"===this.method&&(this.arg=n),m}}}function y(t,e,n,i){var r=e&&e.prototype instanceof k?e:k,o=Object.create(r.prototype),s=new O(i||[]);return o._invoke=E(t,n,s),o}function w(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(i){return{type:"throw",arg:i}}}function k(){}function x(){}function C(){}function S(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function A(t){function e(n,i,o,s){var a=w(t[n],t,i);if("throw"!==a.type){var c=a.arg,l=c.value;return l&&"object"===typeof l&&r.call(l,"__await")?Promise.resolve(l.__await).then(function(t){e("next",t,o,s)},function(t){e("throw",t,o,s)}):Promise.resolve(l).then(function(t){c.value=t,o(c)},function(t){return e("throw",t,o,s)})}s(a.arg)}var n;function i(t,i){function r(){return new Promise(function(n,r){e(t,i,n,r)})}return n=n?n.then(r,r):r()}this._invoke=i}function E(t,e,n){var i=h;return function(r,o){if(i===f)throw new Error("Generator is already running");if(i===p){if("throw"===r)throw o;return L()}n.method=r,n.arg=o;while(1){var s=n.delegate;if(s){var a=q(s,n);if(a){if(a===m)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===h)throw i=p,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var c=w(t,e,n);if("normal"===c.type){if(i=n.done?p:d,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=p,n.method="throw",n.arg=c.arg)}}}function q(t,e){var i=t.iterator[e.method];if(i===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,q(t,e),"throw"===e.method))return m;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var r=w(i,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,m;var o=r.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,m):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,m)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function $(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function D(t){if(t){var e=t[s];if(e)return e.call(t);if("function"===typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function e(){while(++i=3&&":"===t[e-3]?0:e>=3&&"/"===t[e-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(t,e,n){var i=t.slice(e);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function m(t){t.__index__=-1,t.__text_cache__=""}function v(t){return function(e,n){var i=e.slice(n);return t.test(i)?i.match(t)[0].length:0}}function g(){return function(t,e){e.normalize(t)}}function _(t){var e=t.re=n("b117")(t.__opts__),i=t.__tlds__.slice();function r(t){return t.replace("%TLDS%",e.src_tlds)}t.onCompile(),t.__tlds_replaced__||i.push(f),i.push(e.src_xn),e.src_tlds=i.join("|"),e.email_fuzzy=RegExp(r(e.tpl_email_fuzzy),"i"),e.link_fuzzy=RegExp(r(e.tpl_link_fuzzy),"i"),e.link_no_ip_fuzzy=RegExp(r(e.tpl_link_no_ip_fuzzy),"i"),e.host_fuzzy_test=RegExp(r(e.tpl_host_fuzzy_test),"i");var u=[];function h(t,e){throw new Error('(LinkifyIt) Invalid schema "'+t+'": '+e)}t.__compiled__={},Object.keys(t.__schemas__).forEach(function(e){var n=t.__schemas__[e];if(null!==n){var i={validate:null,link:null};if(t.__compiled__[e]=i,s(n))return a(n.validate)?i.validate=v(n.validate):c(n.validate)?i.validate=n.validate:h(e,n),void(c(n.normalize)?i.normalize=n.normalize:n.normalize?h(e,n):i.normalize=g());o(n)?u.push(e):h(e,n)}}),u.forEach(function(e){t.__compiled__[t.__schemas__[e]]&&(t.__compiled__[e].validate=t.__compiled__[t.__schemas__[e]].validate,t.__compiled__[e].normalize=t.__compiled__[t.__schemas__[e]].normalize)}),t.__compiled__[""]={validate:null,normalize:g()};var d=Object.keys(t.__compiled__).filter(function(e){return e.length>0&&t.__compiled__[e]}).map(l).join("|");t.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","i"),t.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+e.src_ZPCc+"))("+d+")","ig"),t.re.pretest=RegExp("("+t.re.schema_test.source+")|("+t.re.host_fuzzy_test.source+")|@","i"),m(t)}function b(t,e){var n=t.__index__,i=t.__last_index__,r=t.__text_cache__.slice(n,i);this.schema=t.__schema__.toLowerCase(),this.index=n+e,this.lastIndex=i+e,this.raw=r,this.text=r,this.url=r}function y(t,e){var n=new b(t,e);return t.__compiled__[n.schema].normalize(n,t),n}function w(t,e){if(!(this instanceof w))return new w(t,e);e||h(t)&&(e=t,t={}),this.__opts__=i({},u,e),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=i({},d,t),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},_(this)}w.prototype.add=function(t,e){return this.__schemas__[t]=e,_(this),this},w.prototype.set=function(t){return this.__opts__=i(this.__opts__,t),this},w.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var e,n,i,r,o,s,a,c,l;if(this.re.schema_test.test(t)){a=this.re.schema_search,a.lastIndex=0;while(null!==(e=a.exec(t)))if(r=this.testSchemaAt(t,e[2],a.lastIndex),r){this.__schema__=e[2],this.__index__=e.index+e[1].length,this.__last_index__=e.index+e[0].length+r;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=t.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c=0&&null!==(i=t.match(this.re.email_fuzzy))&&(o=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=s))),this.__index__>=0},w.prototype.pretest=function(t){return this.re.pretest.test(t)},w.prototype.testSchemaAt=function(t,e,n){return this.__compiled__[e.toLowerCase()]?this.__compiled__[e.toLowerCase()].validate(t,n,this):0},w.prototype.match=function(t){var e=0,n=[];this.__index__>=0&&this.__text_cache__===t&&(n.push(y(this,e)),e=this.__last_index__);var i=e?t.slice(e):t;while(this.test(i))n.push(y(this,e)),i=i.slice(this.__last_index__),e+=this.__last_index__;return n.length?n:null},w.prototype.tlds=function(t,e){return t=Array.isArray(t)?t:[t],e?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(t,e,n){return t!==n[e-1]}).reverse(),_(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,_(this),this)},w.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"!==t.schema||/^mailto:/i.test(t.url)||(t.url="mailto:"+t.url)},w.prototype.onCompile=function(){},t.exports=w},fdef:function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},fdfe:function(t,e,n){"use strict";var i=n("0068").isSpace;t.exports=function(t,e,n,r){var o,s,a,c,l=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(o=t.src.charCodeAt(l++),42!==o&&45!==o&&95!==o)return!1;s=1;while(l=o?-1:(i=t.src.charCodeAt(r++),126!==i&&58!==i?-1:(n=t.skipSpaces(r),r===n?-1:n>=o?-1:r))}function i(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n=0;if(m=r+1,m>=o)return!1;if(t.isEmpty(m)&&(m++,m>=o))return!1;if(t.sCount[m]1&&t.isEmpty(t.line-1),t.tShift[l]=w,t.sCount[l]=y,t.tight=k,t.parentType=b,t.blkIndent=_,t.ddIndent=g,A=t.push("dd_close","dd",-1),h[1]=m=t.line,m>=o)break t;if(t.sCount[m]=o)break;if(u=m,t.isEmpty(u))break;if(t.sCount[u]=o)break;if(t.isEmpty(l)&&l++,l>=o)break;if(t.sCount[l] Date: Mon, 13 May 2019 16:33:33 +0100 Subject: [PATCH 8/8] chore: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6608f42..689f85d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quasar/quasar-app-extension-qscroller", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "description": "QScroller App Extension", "author": "Hawkeye64 ", "main": "src/index.js",